Skip to content

Commit b8eac9d

Browse files
authored
Fix type query paramter in license.post_start_trial (#4807)
1 parent d1d4932 commit b8eac9d

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
@@ -49,13 +49,6 @@
4949
],
5050
"response": []
5151
},
52-
"license.post_start_trial": {
53-
"request": [
54-
"Request: query parameter 'type_query_string' does not exist in the json spec",
55-
"Request: missing json spec query parameter 'type'"
56-
],
57-
"response": []
58-
},
5952
"msearch": {
6053
"request": [
6154
"Request: query parameter 'allow_no_indices' does not exist in the json spec",

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)