windmill-client 1.241.0 → 1.243.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.241.0',
6
+ VERSION: '1.243.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -15,4 +15,5 @@ export type EditSchedule = {
15
15
  retry?: Retry;
16
16
  no_flow_overlap?: boolean;
17
17
  summary?: string;
18
+ tag?: string;
18
19
  };
@@ -19,4 +19,5 @@ export type NewSchedule = {
19
19
  retry?: Retry;
20
20
  no_flow_overlap?: boolean;
21
21
  summary?: string;
22
+ tag?: string;
22
23
  };
@@ -24,4 +24,5 @@ export type Schedule = {
24
24
  retry?: Retry;
25
25
  summary?: string;
26
26
  no_flow_overlap?: boolean;
27
+ tag?: string;
27
28
  };
@@ -50,7 +50,7 @@ class GroupService {
50
50
  static updateInstanceGroup({ name, requestBody, }) {
51
51
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
52
52
  method: 'POST',
53
- url: '/groups/udpate/{name}',
53
+ url: '/groups/update/{name}',
54
54
  path: {
55
55
  'name': name,
56
56
  },
@@ -79,7 +79,7 @@ class GroupService {
79
79
  */
80
80
  static addUserToInstanceGroup({ name, requestBody, }) {
81
81
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
82
- method: 'DELETE',
82
+ method: 'POST',
83
83
  url: '/groups/adduser/{name}',
84
84
  path: {
85
85
  'name': name,
@@ -95,7 +95,7 @@ class GroupService {
95
95
  */
96
96
  static removeUserFromInstanceGroup({ name, requestBody, }) {
97
97
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
98
- method: 'DELETE',
98
+ method: 'POST',
99
99
  url: '/groups/removeuser/{name}',
100
100
  path: {
101
101
  'name': name,
@@ -112,7 +112,7 @@ export declare class HelpersService {
112
112
  workspace: string;
113
113
  }): CancelablePromise<any>;
114
114
  /**
115
- * List the file keys available in the worspace files storage (S3)
115
+ * List the file keys available in the workspace files storage (S3)
116
116
  * @returns any List of file keys
117
117
  * @throws ApiError
118
118
  */
@@ -99,7 +99,7 @@ class HelpersService {
99
99
  });
100
100
  }
101
101
  /**
102
- * List the file keys available in the worspace files storage (S3)
102
+ * List the file keys available in the workspace files storage (S3)
103
103
  * @returns any List of file keys
104
104
  * @throws ApiError
105
105
  */
@@ -188,7 +188,7 @@ export declare class WorkspaceService {
188
188
  error_handler_extra_args?: ScriptArgs;
189
189
  error_handler_muted_on_cancel?: boolean;
190
190
  large_file_storage?: LargeFileStorage;
191
- git_sync?: WorkspaceGitSync;
191
+ git_sync?: Array<WorkspaceGitSync>;
192
192
  }>;
193
193
  /**
194
194
  * get deploy to
@@ -359,7 +359,7 @@ export declare class WorkspaceService {
359
359
  * Workspace Git sync settings
360
360
  */
361
361
  requestBody: {
362
- git_sync_settings?: WorkspaceGitSync;
362
+ git_sync_settings?: Array<WorkspaceGitSync>;
363
363
  };
364
364
  }): CancelablePromise<any>;
365
365
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.241.0",
4
+ "version": "1.243.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {