windmill-client 1.242.0 → 1.244.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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/models/EditSchedule.d.ts +1 -0
- package/dist/models/NewSchedule.d.ts +1 -0
- package/dist/models/Schedule.d.ts +1 -0
- package/dist/services/HelpersService.d.ts +1 -1
- package/dist/services/HelpersService.js +1 -1
- package/dist/services/OauthService.d.ts +0 -1
- package/dist/services/WorkspaceService.d.ts +2 -2
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
|
@@ -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
|
|
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
|
*/
|
|
@@ -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
|
/**
|