Skip to content

Commit 3aaccbf

Browse files
authored
Fix type query paramter in license.post_start_trial (#4807) (#4813)
(cherry picked from commit b8eac9d) # Conflicts: # output/schema/validation-errors.json
1 parent 9ae30a4 commit 3aaccbf

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -281,13 +281,6 @@
281281
],
282282
"response": []
283283
},
284-
"license.post_start_trial": {
285-
"request": [
286-
"Request: query parameter 'type_query_string' does not exist in the json spec",
287-
"Request: missing json spec query parameter 'type'"
288-
],
289-
"response": []
290-
},
291284
"ml.stop_datafeed": {
292285
"request": [
293286
"Request: missing json spec query parameter 'allow_no_datafeeds'"

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/license/post_start_trial/StartTrialLicenseRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface Request extends RequestBase {
4242
]
4343
query_parameters: {
4444
acknowledge?: boolean
45-
type_query_string?: string
45+
type?: string
4646
/**
4747
* Period to wait for a connection to the master node.
4848
* @server_default 30s

0 commit comments

Comments
 (0)