windmill-client 1.560.2 → 1.562.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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.560.0',
42
+ VERSION: '1.562.0',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -1493,6 +1493,7 @@ export declare class ResourceService {
1493
1493
  * @param data The data for the request.
1494
1494
  * @param data.workspace
1495
1495
  * @param data.path
1496
+ * @param data.gitSshIdentity
1496
1497
  * @returns unknown git commit hash
1497
1498
  * @throws ApiError
1498
1499
  */
@@ -2995,6 +2995,7 @@ class ResourceService {
2995
2995
  * @param data The data for the request.
2996
2996
  * @param data.workspace
2997
2997
  * @param data.path
2998
+ * @param data.gitSshIdentity
2998
2999
  * @returns unknown git commit hash
2999
3000
  * @throws ApiError
3000
3001
  */
@@ -3005,6 +3006,9 @@ class ResourceService {
3005
3006
  path: {
3006
3007
  workspace: data.workspace,
3007
3008
  path: data.path
3009
+ },
3010
+ query: {
3011
+ git_ssh_identity: data.gitSshIdentity
3008
3012
  }
3009
3013
  });
3010
3014
  }
@@ -3817,6 +3817,7 @@ export type GetResourceValueData = {
3817
3817
  };
3818
3818
  export type GetResourceValueResponse = unknown;
3819
3819
  export type GetGitCommitHashData = {
3820
+ gitSshIdentity?: string;
3820
3821
  path: string;
3821
3822
  workspace: string;
3822
3823
  };
@@ -11332,6 +11333,7 @@ export type $OpenApiTs = {
11332
11333
  '/w/{workspace}/resources/git_commit_hash/{path}': {
11333
11334
  get: {
11334
11335
  req: {
11336
+ gitSshIdentity?: string;
11335
11337
  path: string;
11336
11338
  workspace: string;
11337
11339
  };
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.560.2",
4
+ "version": "1.562.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {