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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +1 -0
- package/dist/services.gen.js +4 -0
- package/dist/types.gen.d.ts +2 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
package/dist/services.gen.js
CHANGED
|
@@ -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
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
};
|