@argent/x-shared 1.32.5 → 1.32.7
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/index.js +2 -2
- package/dist/index.mjs +1048 -1045
- package/dist/onchainRecovery/schema.d.ts +9 -4
- package/package.json +1 -1
|
@@ -143,13 +143,18 @@ export declare const onchainRecoverySchema: z.ZodObject<{
|
|
|
143
143
|
completionTime?: number[] | undefined;
|
|
144
144
|
} | null | undefined;
|
|
145
145
|
}>;
|
|
146
|
-
export declare
|
|
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.
|
|
153
|
+
status: z.ZodNativeEnum<typeof StartOnchainRecoveryErrorStatusEnum>;
|
|
149
154
|
}, "strip", z.ZodTypeAny, {
|
|
150
|
-
status:
|
|
155
|
+
status: StartOnchainRecoveryErrorStatusEnum;
|
|
151
156
|
}, {
|
|
152
|
-
status:
|
|
157
|
+
status: StartOnchainRecoveryErrorStatusEnum;
|
|
153
158
|
}>;
|
|
154
159
|
export type StartOnchainRecovery = z.infer<typeof startOnchainRecoverySchema>;
|
|
155
160
|
export type OnchainRecovery = z.infer<typeof onchainRecoverySchema>;
|