@socotra/ec-react-utils 2.12.3 → 2.12.4-next.0

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
@@ -40,20 +40,23 @@ declare const advancedFieldSchema_2: z.ZodObject<{
40
40
  shortfallTolerancePlanName: z.ZodOptional<z.ZodString>;
41
41
  billingLevel: z.ZodOptional<z.ZodEnum<["account", "policy"]>>;
42
42
  invoiceDocument: z.ZodOptional<z.ZodString>;
43
+ installmentPlanName: z.ZodOptional<z.ZodString>;
43
44
  }, "strip", z.ZodTypeAny, {
44
45
  billingLevel?: "account" | "policy" | undefined;
45
46
  delinquencyPlanName?: string | undefined;
46
47
  autoRenewalPlanName?: string | undefined;
47
- excessCreditPlanName?: string | undefined;
48
48
  shortfallTolerancePlanName?: string | undefined;
49
+ excessCreditPlanName?: string | undefined;
49
50
  invoiceDocument?: string | undefined;
51
+ installmentPlanName?: string | undefined;
50
52
  }, {
51
53
  billingLevel?: "account" | "policy" | undefined;
52
54
  delinquencyPlanName?: string | undefined;
53
55
  autoRenewalPlanName?: string | undefined;
54
- excessCreditPlanName?: string | undefined;
55
56
  shortfallTolerancePlanName?: string | undefined;
57
+ excessCreditPlanName?: string | undefined;
56
58
  invoiceDocument?: string | undefined;
59
+ installmentPlanName?: string | undefined;
57
60
  }>;
58
61
 
59
62
  declare type AnyObject = {
@@ -311,6 +314,7 @@ export declare const getDefaultAccountFormValues: ({ defaultValues, accountType,
311
314
  shortfallTolerancePlanName: string | undefined;
312
315
  billingLevel: "account" | "policy" | undefined;
313
316
  invoiceDocument: string | undefined;
317
+ installmentPlanName: string | undefined;
314
318
  };
315
319
  saveAsDraft: boolean;
316
320
  };