@socotra/ec-react-schemas 2.23.1-next.0 → 2.23.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.
- package/dist/index.d.ts +17 -16
- package/dist/index.es.js +9486 -9777
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v3';
|
|
2
|
+
import { z as z_2 } from 'zod';
|
|
2
3
|
|
|
3
4
|
export declare const AbsoluteEnum: z.ZodEnum<["none", "required", "excluded"]>;
|
|
4
5
|
|
|
@@ -13702,21 +13703,21 @@ export declare const InstallmentPreferencesSchema: z.ZodObject<{
|
|
|
13702
13703
|
autopayLeadDays?: number | undefined;
|
|
13703
13704
|
}>;
|
|
13704
13705
|
|
|
13705
|
-
declare const installmentPreferencesSchema:
|
|
13706
|
-
cadence:
|
|
13707
|
-
anchorMode:
|
|
13708
|
-
generateLeadDays:
|
|
13709
|
-
dueLeadDays:
|
|
13710
|
-
installmentWeights:
|
|
13711
|
-
maxInstallmentsPerTerm:
|
|
13712
|
-
installmentPlanName:
|
|
13713
|
-
anchorType:
|
|
13714
|
-
dayOfMonth:
|
|
13715
|
-
dayOfWeek:
|
|
13716
|
-
weekOfMonth:
|
|
13717
|
-
anchorTime:
|
|
13718
|
-
autopayLeadDays:
|
|
13719
|
-
}, "strip",
|
|
13706
|
+
declare const installmentPreferencesSchema: z_2.ZodObject<{
|
|
13707
|
+
cadence: z_2.ZodOptional<z_2.ZodUnion<[z_2.ZodLiteral<"none">, z_2.ZodLiteral<"fullPay">, z_2.ZodLiteral<"weekly">, z_2.ZodLiteral<"everyOtherWeek">, z_2.ZodLiteral<"monthly">, z_2.ZodLiteral<"quarterly">, z_2.ZodLiteral<"semiannually">, z_2.ZodLiteral<"annually">, z_2.ZodLiteral<"thirtyDays">, z_2.ZodLiteral<"everyNDays">]>>;
|
|
13708
|
+
anchorMode: z_2.ZodOptional<z_2.ZodUnion<[z_2.ZodLiteral<"generateDay">, z_2.ZodLiteral<"termStartDay">, z_2.ZodLiteral<"dueDay">]>>;
|
|
13709
|
+
generateLeadDays: z_2.ZodOptional<z_2.ZodNumber>;
|
|
13710
|
+
dueLeadDays: z_2.ZodOptional<z_2.ZodNumber>;
|
|
13711
|
+
installmentWeights: z_2.ZodArray<z_2.ZodNumber, "many">;
|
|
13712
|
+
maxInstallmentsPerTerm: z_2.ZodOptional<z_2.ZodNumber>;
|
|
13713
|
+
installmentPlanName: z_2.ZodOptional<z_2.ZodString>;
|
|
13714
|
+
anchorType: z_2.ZodOptional<z_2.ZodUnion<[z_2.ZodLiteral<"none">, z_2.ZodLiteral<"dayOfMonth">, z_2.ZodLiteral<"anchorTime">, z_2.ZodLiteral<"dayOfWeek">, z_2.ZodLiteral<"weekOfMonth">]>>;
|
|
13715
|
+
dayOfMonth: z_2.ZodOptional<z_2.ZodNumber>;
|
|
13716
|
+
dayOfWeek: z_2.ZodOptional<z_2.ZodUnion<[z_2.ZodLiteral<"monday">, z_2.ZodLiteral<"tuesday">, z_2.ZodLiteral<"wednesday">, z_2.ZodLiteral<"thursday">, z_2.ZodLiteral<"friday">, z_2.ZodLiteral<"saturday">, z_2.ZodLiteral<"sunday">]>>;
|
|
13717
|
+
weekOfMonth: z_2.ZodOptional<z_2.ZodUnion<[z_2.ZodLiteral<"none">, z_2.ZodLiteral<"first">, z_2.ZodLiteral<"second">, z_2.ZodLiteral<"third">, z_2.ZodLiteral<"fourth">, z_2.ZodLiteral<"fifth">]>>;
|
|
13718
|
+
anchorTime: z_2.ZodOptional<z_2.ZodString>;
|
|
13719
|
+
autopayLeadDays: z_2.ZodOptional<z_2.ZodNumber>;
|
|
13720
|
+
}, "strip", z_2.ZodTypeAny, {
|
|
13720
13721
|
installmentWeights: number[];
|
|
13721
13722
|
dayOfMonth?: number | undefined;
|
|
13722
13723
|
anchorTime?: string | undefined;
|