Skip to content

Commit 3fc884e

Browse files
authored
Merge branch 'main' into missing-fields-boolean-prop
2 parents a76e307 + 42592e7 commit 3fc884e

File tree

7 files changed

+53
-14
lines changed

7 files changed

+53
-14
lines changed

output/openapi/elasticsearch-openapi.json

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

output/openapi/elasticsearch-serverless-openapi.json

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

output/schema/schema-serverless.json

Lines changed: 17 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: 17 additions & 3 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 & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/enrich/execute_policy/ExecuteEnrichPolicyResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ import { ExecuteEnrichPolicyStatus } from './types'
2323
export class Response {
2424
body: {
2525
status?: ExecuteEnrichPolicyStatus
26-
task_id?: TaskId
26+
task?: TaskId
2727
}
2828
}

specification/enrich/execute_policy/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919

2020
export class ExecuteEnrichPolicyStatus {
2121
phase: EnrichPolicyPhase
22+
step?: string
2223
}
2324

2425
export enum EnrichPolicyPhase {
2526
SCHEDULED,
2627
RUNNING,
2728
COMPLETE,
28-
FAILED
29+
FAILED,
30+
CANCELLED
2931
}

0 commit comments

Comments
 (0)