Skip to content

Commit df1e896

Browse files
fix(specs): make optional for tasks [skip-bc] (generated)
algolia/api-clients-automation#4095 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 1fa0cc7 commit df1e896

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/ingestion/model/task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export type Task = {
4646
*/
4747
failureThreshold?: number;
4848

49-
action: ActionType;
49+
action?: ActionType;
5050

5151
/**
5252
* Date of the last cursor in RFC 3339 format.

packages/ingestion/model/taskV1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type TaskV1 = {
3737
*/
3838
failureThreshold?: number;
3939

40-
action: ActionType;
40+
action?: ActionType;
4141

4242
/**
4343
* Date of the last cursor in RFC 3339 format.

0 commit comments

Comments
 (0)