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.
@@ -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.265.3',
6
+ VERSION: '1.266.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
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 { WorkspaceGitSync } from './models/WorkspaceGitSync';
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';
@@ -1,4 +1,4 @@
1
- export type WorkspaceGitSync = {
1
+ export type GitRepositorySettings = {
2
2
  script_path: string;
3
3
  git_repo_resource_path: string;
4
4
  use_individual_branch?: boolean;
@@ -0,0 +1,6 @@
1
+ import type { GitRepositorySettings } from './GitRepositorySettings';
2
+ export type WorkspaceGitSyncSettings = {
3
+ include_path?: Array<string>;
4
+ include_type?: Array<'script' | 'flow' | 'app' | 'folder'>;
5
+ repositories?: Array<GitRepositorySettings>;
6
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 { WorkspaceGitSync } from '../models/WorkspaceGitSync';
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?: Array<WorkspaceGitSync>;
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?: Array<WorkspaceGitSync>;
365
+ git_sync_settings?: WorkspaceGitSyncSettings;
366
366
  };
367
367
  }): CancelablePromise<any>;
368
368
  /**
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.265.3",
4
+ "version": "1.266.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {