@argent/x-shared 1.32.5 → 1.32.6

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.
@@ -143,13 +143,18 @@ export declare const onchainRecoverySchema: z.ZodObject<{
143
143
  completionTime?: number[] | undefined;
144
144
  } | null | undefined;
145
145
  }>;
146
- export declare const startOnchainRecoveryErrorStatusSchema: z.ZodEnum<["undeployedAccount", "notEnoughToPayFees"]>;
146
+ export declare enum StartOnchainRecoveryErrorStatusEnum {
147
+ UNDEPLOYED_ACCOUNT = "undeployedAccount",
148
+ NOT_ENOUGH_TO_PAY_FEES = "notEnoughToPayFees",
149
+ RECOVERY_ALREADY_EXISTS = "recoveryAlreadyExists"
150
+ }
151
+ export declare const startOnchainRecoveryErrorStatusSchema: z.ZodNativeEnum<typeof StartOnchainRecoveryErrorStatusEnum>;
147
152
  export declare const startOnchainRecoveryErrorSchema: z.ZodObject<{
148
- status: z.ZodEnum<["undeployedAccount", "notEnoughToPayFees"]>;
153
+ status: z.ZodNativeEnum<typeof StartOnchainRecoveryErrorStatusEnum>;
149
154
  }, "strip", z.ZodTypeAny, {
150
- status: "undeployedAccount" | "notEnoughToPayFees";
155
+ status: StartOnchainRecoveryErrorStatusEnum;
151
156
  }, {
152
- status: "undeployedAccount" | "notEnoughToPayFees";
157
+ status: StartOnchainRecoveryErrorStatusEnum;
153
158
  }>;
154
159
  export type StartOnchainRecovery = z.infer<typeof startOnchainRecoverySchema>;
155
160
  export type OnchainRecovery = z.infer<typeof onchainRecoverySchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argent/x-shared",
3
- "version": "1.32.5",
3
+ "version": "1.32.6",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/argentlabs/x-shared.git"