Skip to content

Commit

Permalink
chore: generated code for commit 7c9cfb9b. [skip ci]
Browse files Browse the repository at this point in the history
algolia/api-clients-automation@7c9cfb9

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Thomas Raffray <Fluf22@users.noreply.github.com>
  • Loading branch information
algolia-bot and Fluf22 committed May 9, 2023
1 parent 5789b24 commit 6f7fbfb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/ingestion/model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export * from './run';
export * from './runListResponse';
export * from './runOutcome';
export * from './runProgress';
export * from './runReasonCode';
export * from './runResponse';
export * from './runSortKeys';
export * from './runStatus';
Expand Down
3 changes: 3 additions & 0 deletions packages/ingestion/model/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import type { RunOutcome } from './runOutcome';
import type { RunProgress } from './runProgress';
import type { RunReasonCode } from './runReasonCode';
import type { RunStatus } from './runStatus';
import type { RunType } from './runType';

Expand Down Expand Up @@ -29,6 +30,8 @@ export type Run = {
*/
reason?: string;

reasonCode?: RunReasonCode;

type: RunType;

/**
Expand Down
12 changes: 12 additions & 0 deletions packages/ingestion/model/runReasonCode.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.

/**
* An identifier that pairs with the outcome reason.
*/
export type RunReasonCode =
| 'critical'
| 'discarded'
| 'internal'
| 'no_events'
| 'ok'
| 'too_many_errors';

0 comments on commit 6f7fbfb

Please sign in to comment.