windmill-cli 1.601.1 → 1.603.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/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +47 -0
- package/esm/src/main.js +1 -1
- package/esm/wasm/py/windmill_parser_wasm_bg.wasm +0 -0
- package/esm/windmill-utils-internal/src/parse/parse-schema.js +29 -3
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +23 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +24 -0
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +24 -0
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
- package/types/windmill-utils-internal/src/parse/parse-schema.d.ts.map +1 -1
package/types/gen/types.gen.d.ts
CHANGED
|
@@ -1306,6 +1306,9 @@ export type Login = {
|
|
|
1306
1306
|
email: string;
|
|
1307
1307
|
password: string;
|
|
1308
1308
|
};
|
|
1309
|
+
export type PasswordResetResponse = {
|
|
1310
|
+
message: string;
|
|
1311
|
+
};
|
|
1309
1312
|
export type EditWorkspaceUser = {
|
|
1310
1313
|
is_admin?: boolean;
|
|
1311
1314
|
operator?: boolean;
|
|
@@ -2661,6 +2664,7 @@ export type DucklakeSettings = {
|
|
|
2661
2664
|
storage?: string;
|
|
2662
2665
|
path: string;
|
|
2663
2666
|
};
|
|
2667
|
+
extra_args?: string;
|
|
2664
2668
|
};
|
|
2665
2669
|
};
|
|
2666
2670
|
};
|
|
@@ -3395,6 +3399,26 @@ export type LoginData = {
|
|
|
3395
3399
|
};
|
|
3396
3400
|
export type LoginResponse = (string);
|
|
3397
3401
|
export type LogoutResponse = (string);
|
|
3402
|
+
export type IsSmtpConfiguredResponse = (boolean);
|
|
3403
|
+
export type RequestPasswordResetData = {
|
|
3404
|
+
/**
|
|
3405
|
+
* email to send password reset link to
|
|
3406
|
+
*/
|
|
3407
|
+
requestBody: {
|
|
3408
|
+
email: string;
|
|
3409
|
+
};
|
|
3410
|
+
};
|
|
3411
|
+
export type RequestPasswordResetResponse = (PasswordResetResponse);
|
|
3412
|
+
export type ResetPasswordData = {
|
|
3413
|
+
/**
|
|
3414
|
+
* token and new password
|
|
3415
|
+
*/
|
|
3416
|
+
requestBody: {
|
|
3417
|
+
token: string;
|
|
3418
|
+
new_password: string;
|
|
3419
|
+
};
|
|
3420
|
+
};
|
|
3421
|
+
export type ResetPasswordResponse = (PasswordResetResponse);
|
|
3398
3422
|
export type GetUserData = {
|
|
3399
3423
|
username: string;
|
|
3400
3424
|
workspace: string;
|