@socotra/ec-react-schemas 2.24.1-next.1 → 2.24.1-next.2
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.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
|
+
import { z as z_2 } from 'zod';
|
|
2
3
|
|
|
3
4
|
export declare const AbsoluteEnum: z.ZodEnum<{
|
|
4
5
|
none: "none";
|
|
@@ -5503,8 +5504,8 @@ export declare const InstallmentPreferencesSchema: z.ZodObject<{
|
|
|
5503
5504
|
installmentWeights: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
5504
5505
|
}, z.core.$strip>;
|
|
5505
5506
|
|
|
5506
|
-
declare const installmentPreferencesSchema:
|
|
5507
|
-
cadence:
|
|
5507
|
+
declare const installmentPreferencesSchema: z_2.ZodObject<{
|
|
5508
|
+
cadence: z_2.ZodOptional<z_2.ZodEnum<{
|
|
5508
5509
|
none: "none";
|
|
5509
5510
|
fullPay: "fullPay";
|
|
5510
5511
|
weekly: "weekly";
|
|
@@ -5516,25 +5517,25 @@ declare const installmentPreferencesSchema: z.ZodObject<{
|
|
|
5516
5517
|
thirtyDays: "thirtyDays";
|
|
5517
5518
|
everyNDays: "everyNDays";
|
|
5518
5519
|
}>>;
|
|
5519
|
-
anchorMode:
|
|
5520
|
+
anchorMode: z_2.ZodOptional<z_2.ZodEnum<{
|
|
5520
5521
|
generateDay: "generateDay";
|
|
5521
5522
|
termStartDay: "termStartDay";
|
|
5522
5523
|
dueDay: "dueDay";
|
|
5523
5524
|
}>>;
|
|
5524
|
-
generateLeadDays:
|
|
5525
|
-
dueLeadDays:
|
|
5526
|
-
installmentWeights:
|
|
5527
|
-
maxInstallmentsPerTerm:
|
|
5528
|
-
installmentPlanName:
|
|
5529
|
-
anchorType:
|
|
5525
|
+
generateLeadDays: z_2.ZodOptional<z_2.ZodInt>;
|
|
5526
|
+
dueLeadDays: z_2.ZodOptional<z_2.ZodInt>;
|
|
5527
|
+
installmentWeights: z_2.ZodArray<z_2.ZodNumber>;
|
|
5528
|
+
maxInstallmentsPerTerm: z_2.ZodOptional<z_2.ZodInt>;
|
|
5529
|
+
installmentPlanName: z_2.ZodOptional<z_2.ZodString>;
|
|
5530
|
+
anchorType: z_2.ZodOptional<z_2.ZodEnum<{
|
|
5530
5531
|
none: "none";
|
|
5531
5532
|
dayOfMonth: "dayOfMonth";
|
|
5532
5533
|
anchorTime: "anchorTime";
|
|
5533
5534
|
dayOfWeek: "dayOfWeek";
|
|
5534
5535
|
weekOfMonth: "weekOfMonth";
|
|
5535
5536
|
}>>;
|
|
5536
|
-
dayOfMonth:
|
|
5537
|
-
dayOfWeek:
|
|
5537
|
+
dayOfMonth: z_2.ZodOptional<z_2.ZodInt>;
|
|
5538
|
+
dayOfWeek: z_2.ZodOptional<z_2.ZodEnum<{
|
|
5538
5539
|
monday: "monday";
|
|
5539
5540
|
tuesday: "tuesday";
|
|
5540
5541
|
wednesday: "wednesday";
|
|
@@ -5543,7 +5544,7 @@ declare const installmentPreferencesSchema: z.ZodObject<{
|
|
|
5543
5544
|
saturday: "saturday";
|
|
5544
5545
|
sunday: "sunday";
|
|
5545
5546
|
}>>;
|
|
5546
|
-
weekOfMonth:
|
|
5547
|
+
weekOfMonth: z_2.ZodOptional<z_2.ZodEnum<{
|
|
5547
5548
|
none: "none";
|
|
5548
5549
|
first: "first";
|
|
5549
5550
|
second: "second";
|
|
@@ -5551,9 +5552,9 @@ declare const installmentPreferencesSchema: z.ZodObject<{
|
|
|
5551
5552
|
fourth: "fourth";
|
|
5552
5553
|
fifth: "fifth";
|
|
5553
5554
|
}>>;
|
|
5554
|
-
anchorTime:
|
|
5555
|
-
autopayLeadDays:
|
|
5556
|
-
},
|
|
5555
|
+
anchorTime: z_2.ZodOptional<z_2.ZodISODateTime>;
|
|
5556
|
+
autopayLeadDays: z_2.ZodOptional<z_2.ZodNumber>;
|
|
5557
|
+
}, z_2.core.$strip>;
|
|
5557
5558
|
|
|
5558
5559
|
export declare type InvoiceFeeHandling = z.infer<typeof InvoiceFeeHandlingSchema>;
|
|
5559
5560
|
|