@socotra/ec-react-utils 2.16.3-next.1 → 2.16.3-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 +5 -5
- package/dist/index.es.js +2781 -2785
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -41,12 +41,12 @@ declare const advancedFieldSchema_3: z.ZodObject<{
|
|
|
41
41
|
delinquencyPlanName: z.ZodOptional<z.ZodString>;
|
|
42
42
|
excessCreditPlanName: z.ZodOptional<z.ZodString>;
|
|
43
43
|
shortfallTolerancePlanName: z.ZodOptional<z.ZodString>;
|
|
44
|
-
billingLevel: z.ZodOptional<z.ZodEnum<["account", "policy"]>>;
|
|
44
|
+
billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
|
|
45
45
|
invoiceDocument: z.ZodOptional<z.ZodString>;
|
|
46
46
|
installmentPlanName: z.ZodOptional<z.ZodString>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
installmentPlanName?: string | undefined;
|
|
49
|
-
billingLevel?: "account" | "policy" | undefined;
|
|
49
|
+
billingLevel?: "account" | "inherit" | "policy" | undefined;
|
|
50
50
|
delinquencyPlanName?: string | undefined;
|
|
51
51
|
autoRenewalPlanName?: string | undefined;
|
|
52
52
|
shortfallTolerancePlanName?: string | undefined;
|
|
@@ -54,7 +54,7 @@ declare const advancedFieldSchema_3: z.ZodObject<{
|
|
|
54
54
|
invoiceDocument?: string | undefined;
|
|
55
55
|
}, {
|
|
56
56
|
installmentPlanName?: string | undefined;
|
|
57
|
-
billingLevel?: "account" | "policy" | undefined;
|
|
57
|
+
billingLevel?: "account" | "inherit" | "policy" | undefined;
|
|
58
58
|
delinquencyPlanName?: string | undefined;
|
|
59
59
|
autoRenewalPlanName?: string | undefined;
|
|
60
60
|
shortfallTolerancePlanName?: string | undefined;
|
|
@@ -325,7 +325,7 @@ export declare const getDefaultAccountFormValues: ({ defaultValues, accountType,
|
|
|
325
325
|
delinquencyPlanName: string | undefined;
|
|
326
326
|
excessCreditPlanName: string | undefined;
|
|
327
327
|
shortfallTolerancePlanName: string | undefined;
|
|
328
|
-
billingLevel: "account" | "policy" | undefined;
|
|
328
|
+
billingLevel: "account" | "inherit" | "policy" | undefined;
|
|
329
329
|
invoiceDocument: string | undefined;
|
|
330
330
|
installmentPlanName: string | undefined;
|
|
331
331
|
};
|
|
@@ -398,7 +398,7 @@ export declare const getDefaultPolicyValues: (policy: PolicyResponse, productMod
|
|
|
398
398
|
advanced: {
|
|
399
399
|
billingLevel: "account" | "inherit" | "policy";
|
|
400
400
|
billingTrigger: "accept" | "issue";
|
|
401
|
-
durationBasis: "years" | "months" | "weeks" | "days" | "hours";
|
|
401
|
+
durationBasis: "years" | "months" | "weeks" | "days" | "hours" | "none" | "monthsE360";
|
|
402
402
|
delinquencyPlanName: string | undefined;
|
|
403
403
|
autoRenewalPlanName: string | undefined;
|
|
404
404
|
};
|