windmill-cli 1.602.0 → 1.603.1

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.602.0";
25
+ export declare const VERSION = "1.603.1";
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;
@@ -3396,6 +3399,26 @@ export type LoginData = {
3396
3399
  };
3397
3400
  export type LoginResponse = (string);
3398
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);
3399
3422
  export type GetUserData = {
3400
3423
  username: string;
3401
3424
  workspace: string;
@@ -9074,6 +9097,10 @@ export type ExistsWorkersWithTagsData = {
9074
9097
  * comma separated list of tags
9075
9098
  */
9076
9099
  tags: string;
9100
+ /**
9101
+ * workspace to filter tags visibility (required when TAGS_ARE_SENSITIVE is enabled for non-superadmins)
9102
+ */
9103
+ workspace?: string;
9077
9104
  };
9078
9105
  export type ExistsWorkersWithTagsResponse = ({
9079
9106
  [key: string]: (boolean);