Skip to content

Commit

Permalink
See windmill-labs/windmill@3d1f707 from refs/tags/v1.232.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Dec 27, 2023
1 parent 8939834 commit 81d6e3a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion windmill-api/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type OpenAPIConfig = {

export const OpenAPI: OpenAPIConfig = {
BASE: '/api',
VERSION: '1.231.0',
VERSION: '1.232.0',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
TOKEN: undefined,
Expand Down
2 changes: 2 additions & 0 deletions windmill-api/models/EditSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ export type EditSchedule = {
on_recovery_extra_args?: ScriptArgs;
ws_error_handler_muted?: boolean;
retry?: Retry;
no_flow_overlap?: boolean;
summary?: string;
};

2 changes: 2 additions & 0 deletions windmill-api/models/NewSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,7 @@ export type NewSchedule = {
on_recovery_extra_args?: ScriptArgs;
ws_error_handler_muted?: boolean;
retry?: Retry;
no_flow_overlap?: boolean;
summary?: string;
};

2 changes: 2 additions & 0 deletions windmill-api/models/Schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ export type Schedule = {
on_recovery_extra_args?: ScriptArgs;
ws_error_handler_muted?: boolean;
retry?: Retry;
summary?: string;
no_flow_overlap?: boolean;
};

0 comments on commit 81d6e3a

Please sign in to comment.