Skip to content

Commit d2c86e8

Browse files
committed
Fix request body
1 parent ac34fa5 commit d2c86e8

File tree

4 files changed

+40
-17
lines changed

4 files changed

+40
-17
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 22 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

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

specification/search_application/render_query/SearchApplicationsRenderQueryRequest.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
import { Dictionary } from '@spec_utils/Dictionary'
20+
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
1921
import { RequestBase } from '@_types/Base'
2022
import { Name } from '@_types/common'
21-
import { SearchApplicationParameters } from '../_types/SearchApplicationParameters'
2223

2324
/**
2425
* Render a search application query.
@@ -41,6 +42,7 @@ export interface Request extends RequestBase {
4142
/**
4243
* Contains parameters for a search application.
4344
*/
44-
/** @codegen_name search_application */
45-
body: SearchApplicationParameters
45+
body: {
46+
params?: Dictionary<string, UserDefinedValue>
47+
}
4648
}

0 commit comments

Comments
 (0)