Skip to content

Commit c31f5ef

Browse files
add failure_store enum to bulk responses (#3732) (#3733)
(cherry picked from commit 3bdce16) Co-authored-by: Laurent Saint-Félix <[email protected]>
1 parent 7e67f5e commit c31f5ef

File tree

3 files changed

+54
-10
lines changed

3 files changed

+54
-10
lines changed

output/schema/schema.json

+43-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_global/bulk/types.ts

+8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export class ResponseItem {
4848
* The HTTP status code returned for the operation.
4949
*/
5050
status: integer
51+
failure_store?: FailureStoreStatus
5152
/**
5253
* Additional information about the failed operation.
5354
* The property is returned only for failed operations.
@@ -82,6 +83,13 @@ export class ResponseItem {
8283
get?: InlineGet<Dictionary<string, UserDefinedValue>>
8384
}
8485

86+
export enum FailureStoreStatus {
87+
not_applicable_or_unknown,
88+
used,
89+
not_enabled,
90+
failed
91+
}
92+
8593
export enum OperationType {
8694
index,
8795
create,

0 commit comments

Comments
 (0)