@stigg/react-sdk 7.12.2 → 7.14.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.mts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/stigg-sdk.cjs.js +346 -346
- package/dist/stigg-sdk.esm.js +346 -346
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -521,6 +521,13 @@ type CheckoutLocalization = {
|
|
|
521
521
|
billingPeriod?: BillingPeriod;
|
|
522
522
|
}) => string;
|
|
523
523
|
};
|
|
524
|
+
nextBillingCaption: (params: {
|
|
525
|
+
plan: Plan;
|
|
526
|
+
subscriptionPreview: SubscriptionPreviewV2;
|
|
527
|
+
billingPeriod: BillingPeriod;
|
|
528
|
+
activeSubscription?: Subscription | null;
|
|
529
|
+
promotionCode?: string;
|
|
530
|
+
}) => string;
|
|
524
531
|
};
|
|
525
532
|
|
|
526
533
|
type CheckoutTheme = {
|
package/dist/index.d.ts
CHANGED
|
@@ -521,6 +521,13 @@ type CheckoutLocalization = {
|
|
|
521
521
|
billingPeriod?: BillingPeriod;
|
|
522
522
|
}) => string;
|
|
523
523
|
};
|
|
524
|
+
nextBillingCaption: (params: {
|
|
525
|
+
plan: Plan;
|
|
526
|
+
subscriptionPreview: SubscriptionPreviewV2;
|
|
527
|
+
billingPeriod: BillingPeriod;
|
|
528
|
+
activeSubscription?: Subscription | null;
|
|
529
|
+
promotionCode?: string;
|
|
530
|
+
}) => string;
|
|
524
531
|
};
|
|
525
532
|
|
|
526
533
|
type CheckoutTheme = {
|