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.
@@ -22,7 +22,7 @@ import { pull as hubPull } from "./commands/hub/hub.js";
22
22
  import { pull, push } from "./commands/sync/sync.js";
23
23
  import { add as workspaceAdd } from "./commands/workspace/workspace.js";
24
24
  export { flow, app, script, workspace, resource, resourceType, user, variable, hub, folder, schedule, trigger, sync, gitsyncSettings, instance, dev, hubPull, pull, push, workspaceAdd, };
25
- export declare const VERSION = "1.601.1";
25
+ export declare const VERSION = "1.603.0";
26
26
  export { WM_FORK_PREFIX } from "./core/constants.js";
27
27
  declare const command: Command<{
28
28
  workspace?: (import("../deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
@@ -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;