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