Skip to content

Commit

Permalink
API generation
Browse files Browse the repository at this point in the history
  • Loading branch information
delvedor committed May 3, 2022
1 parent 603e469 commit 2cc0fd4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/api/types.ts
Expand Up @@ -5634,7 +5634,7 @@ export interface AsyncSearchGetRequest extends RequestBase {
wait_for_completion_timeout?: Time
}

export type AsyncSearchGetResponse<TDocument = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>
export type AsyncSearchGetResponse<TDocument = unknown, AsyncSearchTAggregations = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>

export interface AsyncSearchStatusRequest extends RequestBase {
id: Id
Expand Down Expand Up @@ -5714,7 +5714,7 @@ export interface AsyncSearchSubmitRequest extends RequestBase {
runtime_mappings?: MappingRuntimeFields
}

export type AsyncSearchSubmitResponse<TDocument = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>
export type AsyncSearchSubmitResponse<TDocument = unknown, AsyncSearchTAggregations = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>

export interface AutoscalingAutoscalingPolicy {
roles: string[]
Expand Down
4 changes: 2 additions & 2 deletions src/api/typesWithBodyKey.ts
Expand Up @@ -5734,7 +5734,7 @@ export interface AsyncSearchGetRequest extends RequestBase {
wait_for_completion_timeout?: Time
}

export type AsyncSearchGetResponse<TDocument = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>
export type AsyncSearchGetResponse<TDocument = unknown, AsyncSearchTAggregations = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>

export interface AsyncSearchStatusRequest extends RequestBase {
id: Id
Expand Down Expand Up @@ -5831,7 +5831,7 @@ export interface AsyncSearchSubmitRequest extends RequestBase {
}
}

export type AsyncSearchSubmitResponse<TDocument = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>
export type AsyncSearchSubmitResponse<TDocument = unknown, AsyncSearchTAggregations = unknown> = AsyncSearchAsyncSearchDocumentResponseBase<TDocument, AsyncSearchTAggregations>

export interface AutoscalingAutoscalingPolicy {
roles: string[]
Expand Down

0 comments on commit 2cc0fd4

Please sign in to comment.