windmill-client 1.265.3 → 1.266.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/index.d.ts +2 -1
- package/dist/models/{WorkspaceGitSync.d.ts → GitRepositorySettings.d.ts} +1 -1
- package/dist/models/WorkspaceGitSyncSettings.d.ts +6 -0
- package/dist/models/WorkspaceGitSyncSettings.js +2 -0
- package/dist/services/WorkspaceService.d.ts +3 -3
- package/package.json +1 -1
- /package/dist/models/{WorkspaceGitSync.js → GitRepositorySettings.js} +0 -0
package/dist/core/OpenAPI.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export type { FlowValue } from './models/FlowValue';
|
|
|
41
41
|
export type { Folder } from './models/Folder';
|
|
42
42
|
export type { ForloopFlow } from './models/ForloopFlow';
|
|
43
43
|
export type { GetStarted } from './models/GetStarted';
|
|
44
|
+
export type { GitRepositorySettings } from './models/GitRepositorySettings';
|
|
44
45
|
export { GlobalUserInfo } from './models/GlobalUserInfo';
|
|
45
46
|
export type { Group } from './models/Group';
|
|
46
47
|
export type { HubScriptKind } from './models/HubScriptKind';
|
|
@@ -140,7 +141,7 @@ export type { WindmillLargeFile } from './models/WindmillLargeFile';
|
|
|
140
141
|
export type { WorkerPing } from './models/WorkerPing';
|
|
141
142
|
export type { WorkerTag } from './models/WorkerTag';
|
|
142
143
|
export type { Workspace } from './models/Workspace';
|
|
143
|
-
export type {
|
|
144
|
+
export type { WorkspaceGitSyncSettings } from './models/WorkspaceGitSyncSettings';
|
|
144
145
|
export type { WorkspaceId } from './models/WorkspaceId';
|
|
145
146
|
export type { WorkspaceInvite } from './models/WorkspaceInvite';
|
|
146
147
|
export { AdminService } from './services/AdminService';
|
|
@@ -3,7 +3,7 @@ import type { LargeFileStorage } from '../models/LargeFileStorage';
|
|
|
3
3
|
import type { ScriptArgs } from '../models/ScriptArgs';
|
|
4
4
|
import type { UserWorkspaceList } from '../models/UserWorkspaceList';
|
|
5
5
|
import type { Workspace } from '../models/Workspace';
|
|
6
|
-
import type {
|
|
6
|
+
import type { WorkspaceGitSyncSettings } from '../models/WorkspaceGitSyncSettings';
|
|
7
7
|
import type { WorkspaceInvite } from '../models/WorkspaceInvite';
|
|
8
8
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
9
|
export declare class WorkspaceService {
|
|
@@ -189,7 +189,7 @@ export declare class WorkspaceService {
|
|
|
189
189
|
error_handler_extra_args?: ScriptArgs;
|
|
190
190
|
error_handler_muted_on_cancel?: boolean;
|
|
191
191
|
large_file_storage?: LargeFileStorage;
|
|
192
|
-
git_sync?:
|
|
192
|
+
git_sync?: WorkspaceGitSyncSettings;
|
|
193
193
|
default_app?: string;
|
|
194
194
|
}>;
|
|
195
195
|
/**
|
|
@@ -362,7 +362,7 @@ export declare class WorkspaceService {
|
|
|
362
362
|
* Workspace Git sync settings
|
|
363
363
|
*/
|
|
364
364
|
requestBody: {
|
|
365
|
-
git_sync_settings?:
|
|
365
|
+
git_sync_settings?: WorkspaceGitSyncSettings;
|
|
366
366
|
};
|
|
367
367
|
}): CancelablePromise<any>;
|
|
368
368
|
/**
|
package/package.json
CHANGED
|
File without changes
|