Skip to content

Commit 657ef4e

Browse files
authored
Merge branch 'main' into chore/gradle-8
2 parents 3c1a6be + 6d140a0 commit 657ef4e

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

clients/algoliasearch-client-javascript/packages/ingestion/model/run.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ export type Run = {
2424

2525
outcome?: RunOutcome;
2626

27+
/**
28+
* Explains the result of outcome.
29+
*/
30+
reason?: string;
31+
2732
type: RunType;
2833

2934
/**

specs/bundled/ingestion.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,6 +1196,9 @@ components:
11961196
type: integer
11971197
outcome:
11981198
$ref: '#/components/schemas/RunOutcome'
1199+
reason:
1200+
type: string
1201+
description: Explains the result of outcome.
11991202
type:
12001203
$ref: '#/components/schemas/RunType'
12011204
createdAt:

specs/ingestion/common/schemas/run.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ Run:
4747
type: integer
4848
outcome:
4949
$ref: '#/RunOutcome'
50+
reason:
51+
type: string
52+
description: 'Explains the result of outcome.'
5053
type:
5154
$ref: '#/RunType'
5255
createdAt:

0 commit comments

Comments
 (0)