windmill-client 1.734.0 → 1.735.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.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +19 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -1884,6 +1884,7 @@ export type User = {
|
|
|
1884
1884
|
disabled: boolean;
|
|
1885
1885
|
groups?: Array<(string)>;
|
|
1886
1886
|
folders: Array<(string)>;
|
|
1887
|
+
folders_read: Array<(string)>;
|
|
1887
1888
|
folders_owners: Array<(string)>;
|
|
1888
1889
|
added_via?: (UserSource) | null;
|
|
1889
1890
|
is_service_account?: boolean;
|
|
@@ -7504,6 +7505,7 @@ export type GetLogCleanupStatusResponse = {
|
|
|
7504
7505
|
total_jobs: number;
|
|
7505
7506
|
processed_jobs: number;
|
|
7506
7507
|
s3_deleted: number;
|
|
7508
|
+
s3_not_found?: number;
|
|
7507
7509
|
orphans_scanned: number;
|
|
7508
7510
|
orphans_deleted: number;
|
|
7509
7511
|
errors: number;
|
|
@@ -7912,6 +7914,10 @@ export type CreateAccountData = {
|
|
|
7912
7914
|
* Instance name for built-in providers whose client-credentials token URL is instance-templated; substituted into the fixed-host registry template server-side (client_credentials flow only). The token URL is never caller-supplied.
|
|
7913
7915
|
*/
|
|
7914
7916
|
cc_instance?: string;
|
|
7917
|
+
/**
|
|
7918
|
+
* Bring-your-own token endpoint override (client_credentials flow only). Only honored together with cc_client_id/cc_client_secret and mutually exclusive with cc_instance; ignored/rejected on the shared-instance path.
|
|
7919
|
+
*/
|
|
7920
|
+
cc_token_url?: string;
|
|
7915
7921
|
/**
|
|
7916
7922
|
* MCP server URL for MCP OAuth token refresh
|
|
7917
7923
|
*/
|
|
@@ -7946,6 +7952,10 @@ export type ConnectClientCredentialsData = {
|
|
|
7946
7952
|
* Instance name for built-in providers whose client-credentials token URL is instance-templated; substituted into the fixed-host registry template server-side. The token URL is never caller-supplied.
|
|
7947
7953
|
*/
|
|
7948
7954
|
cc_instance?: string;
|
|
7955
|
+
/**
|
|
7956
|
+
* Bring-your-own token endpoint override. Only honored together with cc_client_id/cc_client_secret and mutually exclusive with cc_instance; rejected on the shared-instance path.
|
|
7957
|
+
*/
|
|
7958
|
+
cc_token_url?: string;
|
|
7949
7959
|
};
|
|
7950
7960
|
workspace: string;
|
|
7951
7961
|
};
|
|
@@ -18074,6 +18084,7 @@ export type $OpenApiTs = {
|
|
|
18074
18084
|
total_jobs: number;
|
|
18075
18085
|
processed_jobs: number;
|
|
18076
18086
|
s3_deleted: number;
|
|
18087
|
+
s3_not_found?: number;
|
|
18077
18088
|
orphans_scanned: number;
|
|
18078
18089
|
orphans_deleted: number;
|
|
18079
18090
|
errors: number;
|
|
@@ -18899,6 +18910,10 @@ export type $OpenApiTs = {
|
|
|
18899
18910
|
* Instance name for built-in providers whose client-credentials token URL is instance-templated; substituted into the fixed-host registry template server-side (client_credentials flow only). The token URL is never caller-supplied.
|
|
18900
18911
|
*/
|
|
18901
18912
|
cc_instance?: string;
|
|
18913
|
+
/**
|
|
18914
|
+
* Bring-your-own token endpoint override (client_credentials flow only). Only honored together with cc_client_id/cc_client_secret and mutually exclusive with cc_instance; ignored/rejected on the shared-instance path.
|
|
18915
|
+
*/
|
|
18916
|
+
cc_token_url?: string;
|
|
18902
18917
|
/**
|
|
18903
18918
|
* MCP server URL for MCP OAuth token refresh
|
|
18904
18919
|
*/
|
|
@@ -18942,6 +18957,10 @@ export type $OpenApiTs = {
|
|
|
18942
18957
|
* Instance name for built-in providers whose client-credentials token URL is instance-templated; substituted into the fixed-host registry template server-side. The token URL is never caller-supplied.
|
|
18943
18958
|
*/
|
|
18944
18959
|
cc_instance?: string;
|
|
18960
|
+
/**
|
|
18961
|
+
* Bring-your-own token endpoint override. Only honored together with cc_client_id/cc_client_secret and mutually exclusive with cc_instance; rejected on the shared-instance path.
|
|
18962
|
+
*/
|
|
18963
|
+
cc_token_url?: string;
|
|
18945
18964
|
};
|
|
18946
18965
|
workspace: string;
|
|
18947
18966
|
};
|
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.
|
|
4
|
+
"version": "1.735.0",
|
|
5
5
|
"author": "Ruben Fiszel",
|
|
6
6
|
"license": "Apache 2.0",
|
|
7
7
|
"homepage": "https://github.com/windmill-labs/windmill/tree/main/typescript-client#readme",
|