Skip to content

Commit

Permalink
See windmill-labs/windmill@4e55052 from refs/tags/v1.246.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Jan 17, 2024
1 parent ae3f695 commit 70020f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.246.4',
VERSION: '1.246.5',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
TOKEN: undefined,
Expand Down
2 changes: 1 addition & 1 deletion windmill-api/models/NewScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type NewScript = {
content: string;
schema?: any;
is_template?: boolean;
lock?: Array<string>;
lock?: string;
language: NewScript.language;
kind?: NewScript.kind;
tag?: string;
Expand Down
2 changes: 1 addition & 1 deletion windmill-api/models/RawScriptForDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/* eslint-disable */

export type RawScriptForDependencies = {
content: string;
raw_code: string;
path: string;
language: RawScriptForDependencies.language;
};
Expand Down

0 comments on commit 70020f8

Please sign in to comment.