@socotra/ec-react-components 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
@@ -74,6 +74,10 @@ declare type BaseProps = {
74
74
  * The invoice documents available for the account
75
75
  */
76
76
  invoiceDocument?: string[];
77
+ /**
78
+ * The installment plans available for the account
79
+ */
80
+ installmentPlans?: string[];
77
81
  };
78
82
  /**
79
83
  * Set to true when the form is submitting to set fields to readonly and disable the submit button
@@ -114,6 +118,13 @@ declare type BaseProps = {
114
118
  seeAdvancedDetails?: string;
115
119
  truthyLabel?: string;
116
120
  falsyLabel?: string;
121
+ autoRenewalPlanName?: string;
122
+ delinquencyPlanName?: string;
123
+ excessCreditPlanName?: string;
124
+ shortfallTolerancePlanName?: string;
125
+ billingLevel?: string;
126
+ invoiceDocument?: string;
127
+ installmentPlanName?: string;
117
128
  };
118
129
  };
119
130