@stigg/react-sdk 7.28.0 → 8.0.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/CreditUsageChart-KRL3HX2Z.esm.js +162 -0
- package/dist/{CreditUsageChart-767SG75X.cjs.js → CreditUsageChart-ULIOSUUZ.cjs.js} +19 -19
- package/dist/{chunk-B5FDE2OH.esm.js → chunk-A4LH66R4.esm.js} +10 -10
- package/dist/{chunk-LW3LLUI6.cjs.js → chunk-TVE6DQ7G.cjs.js} +10 -10
- package/dist/index.d.mts +13 -30
- package/dist/index.d.ts +13 -30
- package/dist/stigg-sdk.cjs.js +174 -174
- package/dist/stigg-sdk.esm.js +110 -110
- package/package.json +1 -1
- package/dist/CreditUsageChart-URN6IPYD.esm.js +0 -162
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _stigg_js_client_sdk from '@stigg/js-client-sdk';
|
|
2
|
-
import { Plan, Customer, Subscription, BillingPeriod, BillableFeature, CustomerPortalSubscriptionScheduledUpdateDataFragment, PaywallCurrency, PaywallCalculatedPricePoint, PriceTierFragment, Price, CustomerPortalSubscription, FeatureEntitlementFragment, EntitlementUnionFragment, CreditEntitlementFragment, EntitlementsFallback, SubscriptionAddon, Addon, BillingAddress, SubscriptionBillingInfo, GetCheckoutState, GetCheckoutStateResults, ApplySubscription, ApplySubscriptionResults, CheckoutStatePlan, PreviewSubscription, SubscriptionPreviewV2, SubscriptionPreviewDiscount, SubscriptionPreviewTaxDetails, GetBooleanEntitlement, BooleanEntitlement, GetNumericEntitlement, NumericEntitlement, GetMeteredEntitlement, MeteredEntitlement, GetEnumEntitlement, EnumEntitlement, GetActiveSubscriptions, GetPaywall, GetCustomerPortal, CreditUsageTimeRange, GetCreditUsageInput, CursorPaging, CreditGrantFragment, PageInfoFragment } from '@stigg/js-client-sdk';
|
|
2
|
+
import { Plan, Customer, Subscription, BillingPeriod, BillableFeature, CustomerPortalSubscriptionScheduledUpdateDataFragment, PaywallCurrency, PaywallCalculatedPricePoint, PriceTierFragment, Price, CustomerPortalSubscription, FeatureEntitlementFragment, EntitlementUnionFragment, CreditEntitlementFragment, EntitlementsFallback, SubscriptionAddon, Addon, BillingAddress, SubscriptionBillingInfo, GetCheckoutState, GetCheckoutStateResults, ApplySubscription, ApplySubscriptionResults, CheckoutStatePlan, PreviewSubscription, SubscriptionPreviewV2, SubscriptionPreviewDiscount, SubscriptionPreviewTaxDetails, GetBooleanEntitlement, BooleanEntitlement, GetNumericEntitlement, NumericEntitlement, GetMeteredEntitlement, MeteredEntitlement, GetCreditEntitlement, CreditEntitlement, GetEnumEntitlement, EnumEntitlement, GetActiveSubscriptions, GetPaywall, GetCustomerPortal, CreditUsageTimeRange, GetCreditUsageInput, CursorPaging, CreditGrantFragment, PageInfoFragment } from '@stigg/js-client-sdk';
|
|
3
3
|
export * from '@stigg/js-client-sdk';
|
|
4
4
|
import { FeatureFragment, BillingPeriod as BillingPeriod$1, BillableFeatureInput } from '@stigg/api-client-js/src/generated/sdk';
|
|
5
5
|
import react, { PropsWithChildren, ChangeEvent, ReactNode } from 'react';
|
|
@@ -617,6 +617,11 @@ type TypedGetMeteredEntitlement<T> = Omit<GetMeteredEntitlement, 'featureId'> &
|
|
|
617
617
|
};
|
|
618
618
|
declare function useMeteredEntitlement<T extends string>(params: TypedGetMeteredEntitlement<T>): MeteredEntitlement;
|
|
619
619
|
|
|
620
|
+
type TypedGetCreditEntitlement<T> = Omit<GetCreditEntitlement, 'currencyId'> & {
|
|
621
|
+
currencyId: T;
|
|
622
|
+
};
|
|
623
|
+
declare function useCreditEntitlement<T extends string>(params: TypedGetCreditEntitlement<T>): CreditEntitlement;
|
|
624
|
+
|
|
620
625
|
type TypedGetEnumEntitlement<T> = Omit<GetEnumEntitlement, 'featureId'> & {
|
|
621
626
|
featureId: T;
|
|
622
627
|
};
|
|
@@ -671,42 +676,20 @@ type EnumEntitlementGuardProps = GetEnumEntitlement & {
|
|
|
671
676
|
};
|
|
672
677
|
declare function EnumEntitlementGuard({ noAccessComponent, children, ...rest }: EnumEntitlementGuardProps): JSX.Element;
|
|
673
678
|
|
|
674
|
-
|
|
675
|
-
currentBalance: number;
|
|
676
|
-
currencyId?: string;
|
|
677
|
-
totalConsumed?: number;
|
|
678
|
-
totalGranted?: number;
|
|
679
|
-
displayName?: string;
|
|
680
|
-
units?: {
|
|
681
|
-
singular?: string | null;
|
|
682
|
-
plural?: string | null;
|
|
683
|
-
} | null;
|
|
684
|
-
symbol?: string | null;
|
|
685
|
-
usagePeriodEnd?: Date;
|
|
686
|
-
}
|
|
687
|
-
type OnAddCreditsCallbackFn = (balance: CreditBalanceData) => void | Promise<void>;
|
|
679
|
+
type OnAddCreditsCallbackFn = (entitlement: CreditEntitlement) => void | Promise<void>;
|
|
688
680
|
|
|
689
|
-
|
|
681
|
+
type CreditBalanceProps = {
|
|
690
682
|
currencyId: string;
|
|
691
|
-
}
|
|
692
|
-
declare function useCreditBalance(params: GetCreditBalanceParams): {
|
|
693
|
-
balance: CreditBalanceData | null;
|
|
694
|
-
isLoading: boolean;
|
|
695
|
-
error: Error | null;
|
|
696
|
-
};
|
|
697
|
-
|
|
698
|
-
type CreditBalanceProps = GetCreditBalanceParams & {
|
|
699
683
|
localization?: Partial<CreditBalanceLocalization>;
|
|
700
684
|
decimalPlaces?: number | null;
|
|
701
685
|
showUnits?: boolean;
|
|
702
|
-
showSymbol?: boolean;
|
|
703
686
|
onAddCredits?: OnAddCreditsCallbackFn;
|
|
704
687
|
};
|
|
705
688
|
type CreditBalanceLocalization = {
|
|
706
689
|
title: string;
|
|
707
690
|
addCredits: string;
|
|
708
691
|
};
|
|
709
|
-
declare function CreditBalance({ currencyId, localization, decimalPlaces, showUnits,
|
|
692
|
+
declare function CreditBalance({ currencyId, localization, decimalPlaces, showUnits, onAddCredits, }: CreditBalanceProps): JSX.Element;
|
|
710
693
|
|
|
711
694
|
type CreditUsageChartLocalization = {
|
|
712
695
|
title: string;
|
|
@@ -727,11 +710,11 @@ declare function useCreditUsage(params: GetCreditUsageInput): {
|
|
|
727
710
|
error: Error | null;
|
|
728
711
|
};
|
|
729
712
|
|
|
730
|
-
type CreditUtilizationProps =
|
|
713
|
+
type CreditUtilizationProps = {
|
|
714
|
+
currencyId: string;
|
|
731
715
|
localization?: Partial<CreditUtilizationLocalization>;
|
|
732
716
|
decimalPlaces?: number | null;
|
|
733
717
|
showUnits?: boolean;
|
|
734
|
-
showSymbol?: boolean;
|
|
735
718
|
onAddCredits?: OnAddCreditsCallbackFn;
|
|
736
719
|
};
|
|
737
720
|
type CreditUtilizationLocalization = {
|
|
@@ -739,7 +722,7 @@ type CreditUtilizationLocalization = {
|
|
|
739
722
|
remaining: string;
|
|
740
723
|
addCredits: string;
|
|
741
724
|
};
|
|
742
|
-
declare function CreditUtilization({ currencyId, localization, decimalPlaces, showUnits,
|
|
725
|
+
declare function CreditUtilization({ currencyId, localization, decimalPlaces, showUnits, onAddCredits, }: CreditUtilizationProps): JSX.Element;
|
|
743
726
|
|
|
744
727
|
type CreditGrant = Pick<CreditGrantFragment, 'grantId' | 'amount' | 'comment' | 'currencyId' | 'grantType' | 'consumedAmount' | 'automaticRechargeConfigurationId'> & {
|
|
745
728
|
effectiveAt: string;
|
|
@@ -1003,4 +986,4 @@ declare function StatusChip({ variant, label, className, size, ...props }: Statu
|
|
|
1003
986
|
|
|
1004
987
|
declare const mapCreditGrantStatusToVariant: (status: CreditGrantStatus) => StatusChipVariant;
|
|
1005
988
|
|
|
1006
|
-
export { AddonsList, AutoRechargeStatus, type AutoRechargeStatusLocalization, type AutoRechargeStatusProps, AutomaticRechargeConfig, AutomaticRechargeConfigForm, type AutomaticRechargeConfigFormProps, type AutomaticRechargeConfigLocalization, type AutomaticRechargeConfigProps, type AutomaticRechargeConfiguration, type AutomaticRechargeFormData, type AutomaticRechargeFormErrors, type BillingInformation, BooleanEntitlementGuard, Checkout, type CheckoutContainerProps, type CheckoutLocalization, type CheckoutMockProps, type CheckoutProps, type CheckoutProviderProps, type CheckoutResult, type CheckoutState, CheckoutStepKey, type CheckoutTheme, CreditBalance, type
|
|
989
|
+
export { AddonsList, AutoRechargeStatus, type AutoRechargeStatusLocalization, type AutoRechargeStatusProps, AutomaticRechargeConfig, AutomaticRechargeConfigForm, type AutomaticRechargeConfigFormProps, type AutomaticRechargeConfigLocalization, type AutomaticRechargeConfigProps, type AutomaticRechargeConfiguration, type AutomaticRechargeFormData, type AutomaticRechargeFormErrors, type BillingInformation, BooleanEntitlementGuard, Checkout, type CheckoutContainerProps, type CheckoutLocalization, type CheckoutMockProps, type CheckoutProps, type CheckoutProviderProps, type CheckoutResult, type CheckoutState, CheckoutStepKey, type CheckoutTheme, CreditBalance, type CreditBalanceProps, CreditGrants, type CreditGrantsLocalization, type CreditGrantsProps, CreditUsageChart, CreditUtilization, type CreditUtilizationLocalization, type CreditUtilizationProps, type CurrentPlanParams, type CurrentSubscriptionOverride, type CurrentSubscriptionOverrideFn, CustomerPortal, CustomerPortalIntentionType, type CustomerPortalLocalization, type CustomerPortalProps, CustomerPortalProvider, type CustomerPortalSection, type CustomerPortalTheme, CustomerUsageData, type CustomerUsageDataProps, EmptyState, EnumEntitlementGuard, ErrorState, type FilterEntitlementsFn, type FilterPackageEntitlementsFn, type FontVariant, GenericTable, type GenericTableProps, type GetCreditGrantsParams, type HeadCell, type HorizontalAlignment, InvoicesSection, MeteredEntitlementGuard, type MockCheckoutPreviewCallback, type MockCheckoutStateCallback, NumericEntitlementGuard, type OnAddCreditsCallbackFn, type OnAddonChangeCallback, type OnBeforeStepChangeCallback, type OnBillableFeatureChangeCallback, type OnBuyMoreCallbackFn, type OnCheckoutCompletedParams, type OnCheckoutParams, type OnManageSubscriptionFn, type OnPlanSelectedCallbackFn, type PackageEntitlementsFilterPayload, PaymentDetailsSection, PaywallContainer as Paywall, type PaywallData, type PaywallLocalization, type PaywallPlan, type PaywallContainerProps as PaywallProps, type PixelWidth, type PlanPriceText, Promotions, ProvisionStatus, type SelectDefaultTierIndexFn, type ShouldHidePlanFn, StatusChip, type StatusChipColors, type StatusChipVariant, StiggContext, type StiggContextValue, StiggProvider, type StiggProviderProps, type StiggTheme, SubscribeIntentionType, SubscriptionsOverview, type SubscriptionsOverviewProps, type TableAlignment, type TaxDetailsInput, type TextAlignment, type CustomizedTheme as Theme, type UpdateAutomaticRechargeConfigParams, formatDateOnly, formatDateTime, isCreditEntitlement, isFeatureEntitlement, mapCreditGrantStatusToVariant, useActiveSubscriptions, useAutomaticRechargeForm, useBooleanEntitlement, useCreditEntitlement, useCreditGrants, useCreditUsage, useCustomerPortal, useEnumEntitlement, useMeteredEntitlement, useNumericEntitlement, usePaywall, useStiggContext, useWaitForCheckoutCompleted, validateAutomaticRechargeForm };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _stigg_js_client_sdk from '@stigg/js-client-sdk';
|
|
2
|
-
import { Plan, Customer, Subscription, BillingPeriod, BillableFeature, CustomerPortalSubscriptionScheduledUpdateDataFragment, PaywallCurrency, PaywallCalculatedPricePoint, PriceTierFragment, Price, CustomerPortalSubscription, FeatureEntitlementFragment, EntitlementUnionFragment, CreditEntitlementFragment, EntitlementsFallback, SubscriptionAddon, Addon, BillingAddress, SubscriptionBillingInfo, GetCheckoutState, GetCheckoutStateResults, ApplySubscription, ApplySubscriptionResults, CheckoutStatePlan, PreviewSubscription, SubscriptionPreviewV2, SubscriptionPreviewDiscount, SubscriptionPreviewTaxDetails, GetBooleanEntitlement, BooleanEntitlement, GetNumericEntitlement, NumericEntitlement, GetMeteredEntitlement, MeteredEntitlement, GetEnumEntitlement, EnumEntitlement, GetActiveSubscriptions, GetPaywall, GetCustomerPortal, CreditUsageTimeRange, GetCreditUsageInput, CursorPaging, CreditGrantFragment, PageInfoFragment } from '@stigg/js-client-sdk';
|
|
2
|
+
import { Plan, Customer, Subscription, BillingPeriod, BillableFeature, CustomerPortalSubscriptionScheduledUpdateDataFragment, PaywallCurrency, PaywallCalculatedPricePoint, PriceTierFragment, Price, CustomerPortalSubscription, FeatureEntitlementFragment, EntitlementUnionFragment, CreditEntitlementFragment, EntitlementsFallback, SubscriptionAddon, Addon, BillingAddress, SubscriptionBillingInfo, GetCheckoutState, GetCheckoutStateResults, ApplySubscription, ApplySubscriptionResults, CheckoutStatePlan, PreviewSubscription, SubscriptionPreviewV2, SubscriptionPreviewDiscount, SubscriptionPreviewTaxDetails, GetBooleanEntitlement, BooleanEntitlement, GetNumericEntitlement, NumericEntitlement, GetMeteredEntitlement, MeteredEntitlement, GetCreditEntitlement, CreditEntitlement, GetEnumEntitlement, EnumEntitlement, GetActiveSubscriptions, GetPaywall, GetCustomerPortal, CreditUsageTimeRange, GetCreditUsageInput, CursorPaging, CreditGrantFragment, PageInfoFragment } from '@stigg/js-client-sdk';
|
|
3
3
|
export * from '@stigg/js-client-sdk';
|
|
4
4
|
import { FeatureFragment, BillingPeriod as BillingPeriod$1, BillableFeatureInput } from '@stigg/api-client-js/src/generated/sdk';
|
|
5
5
|
import react, { PropsWithChildren, ChangeEvent, ReactNode } from 'react';
|
|
@@ -617,6 +617,11 @@ type TypedGetMeteredEntitlement<T> = Omit<GetMeteredEntitlement, 'featureId'> &
|
|
|
617
617
|
};
|
|
618
618
|
declare function useMeteredEntitlement<T extends string>(params: TypedGetMeteredEntitlement<T>): MeteredEntitlement;
|
|
619
619
|
|
|
620
|
+
type TypedGetCreditEntitlement<T> = Omit<GetCreditEntitlement, 'currencyId'> & {
|
|
621
|
+
currencyId: T;
|
|
622
|
+
};
|
|
623
|
+
declare function useCreditEntitlement<T extends string>(params: TypedGetCreditEntitlement<T>): CreditEntitlement;
|
|
624
|
+
|
|
620
625
|
type TypedGetEnumEntitlement<T> = Omit<GetEnumEntitlement, 'featureId'> & {
|
|
621
626
|
featureId: T;
|
|
622
627
|
};
|
|
@@ -671,42 +676,20 @@ type EnumEntitlementGuardProps = GetEnumEntitlement & {
|
|
|
671
676
|
};
|
|
672
677
|
declare function EnumEntitlementGuard({ noAccessComponent, children, ...rest }: EnumEntitlementGuardProps): JSX.Element;
|
|
673
678
|
|
|
674
|
-
|
|
675
|
-
currentBalance: number;
|
|
676
|
-
currencyId?: string;
|
|
677
|
-
totalConsumed?: number;
|
|
678
|
-
totalGranted?: number;
|
|
679
|
-
displayName?: string;
|
|
680
|
-
units?: {
|
|
681
|
-
singular?: string | null;
|
|
682
|
-
plural?: string | null;
|
|
683
|
-
} | null;
|
|
684
|
-
symbol?: string | null;
|
|
685
|
-
usagePeriodEnd?: Date;
|
|
686
|
-
}
|
|
687
|
-
type OnAddCreditsCallbackFn = (balance: CreditBalanceData) => void | Promise<void>;
|
|
679
|
+
type OnAddCreditsCallbackFn = (entitlement: CreditEntitlement) => void | Promise<void>;
|
|
688
680
|
|
|
689
|
-
|
|
681
|
+
type CreditBalanceProps = {
|
|
690
682
|
currencyId: string;
|
|
691
|
-
}
|
|
692
|
-
declare function useCreditBalance(params: GetCreditBalanceParams): {
|
|
693
|
-
balance: CreditBalanceData | null;
|
|
694
|
-
isLoading: boolean;
|
|
695
|
-
error: Error | null;
|
|
696
|
-
};
|
|
697
|
-
|
|
698
|
-
type CreditBalanceProps = GetCreditBalanceParams & {
|
|
699
683
|
localization?: Partial<CreditBalanceLocalization>;
|
|
700
684
|
decimalPlaces?: number | null;
|
|
701
685
|
showUnits?: boolean;
|
|
702
|
-
showSymbol?: boolean;
|
|
703
686
|
onAddCredits?: OnAddCreditsCallbackFn;
|
|
704
687
|
};
|
|
705
688
|
type CreditBalanceLocalization = {
|
|
706
689
|
title: string;
|
|
707
690
|
addCredits: string;
|
|
708
691
|
};
|
|
709
|
-
declare function CreditBalance({ currencyId, localization, decimalPlaces, showUnits,
|
|
692
|
+
declare function CreditBalance({ currencyId, localization, decimalPlaces, showUnits, onAddCredits, }: CreditBalanceProps): JSX.Element;
|
|
710
693
|
|
|
711
694
|
type CreditUsageChartLocalization = {
|
|
712
695
|
title: string;
|
|
@@ -727,11 +710,11 @@ declare function useCreditUsage(params: GetCreditUsageInput): {
|
|
|
727
710
|
error: Error | null;
|
|
728
711
|
};
|
|
729
712
|
|
|
730
|
-
type CreditUtilizationProps =
|
|
713
|
+
type CreditUtilizationProps = {
|
|
714
|
+
currencyId: string;
|
|
731
715
|
localization?: Partial<CreditUtilizationLocalization>;
|
|
732
716
|
decimalPlaces?: number | null;
|
|
733
717
|
showUnits?: boolean;
|
|
734
|
-
showSymbol?: boolean;
|
|
735
718
|
onAddCredits?: OnAddCreditsCallbackFn;
|
|
736
719
|
};
|
|
737
720
|
type CreditUtilizationLocalization = {
|
|
@@ -739,7 +722,7 @@ type CreditUtilizationLocalization = {
|
|
|
739
722
|
remaining: string;
|
|
740
723
|
addCredits: string;
|
|
741
724
|
};
|
|
742
|
-
declare function CreditUtilization({ currencyId, localization, decimalPlaces, showUnits,
|
|
725
|
+
declare function CreditUtilization({ currencyId, localization, decimalPlaces, showUnits, onAddCredits, }: CreditUtilizationProps): JSX.Element;
|
|
743
726
|
|
|
744
727
|
type CreditGrant = Pick<CreditGrantFragment, 'grantId' | 'amount' | 'comment' | 'currencyId' | 'grantType' | 'consumedAmount' | 'automaticRechargeConfigurationId'> & {
|
|
745
728
|
effectiveAt: string;
|
|
@@ -1003,4 +986,4 @@ declare function StatusChip({ variant, label, className, size, ...props }: Statu
|
|
|
1003
986
|
|
|
1004
987
|
declare const mapCreditGrantStatusToVariant: (status: CreditGrantStatus) => StatusChipVariant;
|
|
1005
988
|
|
|
1006
|
-
export { AddonsList, AutoRechargeStatus, type AutoRechargeStatusLocalization, type AutoRechargeStatusProps, AutomaticRechargeConfig, AutomaticRechargeConfigForm, type AutomaticRechargeConfigFormProps, type AutomaticRechargeConfigLocalization, type AutomaticRechargeConfigProps, type AutomaticRechargeConfiguration, type AutomaticRechargeFormData, type AutomaticRechargeFormErrors, type BillingInformation, BooleanEntitlementGuard, Checkout, type CheckoutContainerProps, type CheckoutLocalization, type CheckoutMockProps, type CheckoutProps, type CheckoutProviderProps, type CheckoutResult, type CheckoutState, CheckoutStepKey, type CheckoutTheme, CreditBalance, type
|
|
989
|
+
export { AddonsList, AutoRechargeStatus, type AutoRechargeStatusLocalization, type AutoRechargeStatusProps, AutomaticRechargeConfig, AutomaticRechargeConfigForm, type AutomaticRechargeConfigFormProps, type AutomaticRechargeConfigLocalization, type AutomaticRechargeConfigProps, type AutomaticRechargeConfiguration, type AutomaticRechargeFormData, type AutomaticRechargeFormErrors, type BillingInformation, BooleanEntitlementGuard, Checkout, type CheckoutContainerProps, type CheckoutLocalization, type CheckoutMockProps, type CheckoutProps, type CheckoutProviderProps, type CheckoutResult, type CheckoutState, CheckoutStepKey, type CheckoutTheme, CreditBalance, type CreditBalanceProps, CreditGrants, type CreditGrantsLocalization, type CreditGrantsProps, CreditUsageChart, CreditUtilization, type CreditUtilizationLocalization, type CreditUtilizationProps, type CurrentPlanParams, type CurrentSubscriptionOverride, type CurrentSubscriptionOverrideFn, CustomerPortal, CustomerPortalIntentionType, type CustomerPortalLocalization, type CustomerPortalProps, CustomerPortalProvider, type CustomerPortalSection, type CustomerPortalTheme, CustomerUsageData, type CustomerUsageDataProps, EmptyState, EnumEntitlementGuard, ErrorState, type FilterEntitlementsFn, type FilterPackageEntitlementsFn, type FontVariant, GenericTable, type GenericTableProps, type GetCreditGrantsParams, type HeadCell, type HorizontalAlignment, InvoicesSection, MeteredEntitlementGuard, type MockCheckoutPreviewCallback, type MockCheckoutStateCallback, NumericEntitlementGuard, type OnAddCreditsCallbackFn, type OnAddonChangeCallback, type OnBeforeStepChangeCallback, type OnBillableFeatureChangeCallback, type OnBuyMoreCallbackFn, type OnCheckoutCompletedParams, type OnCheckoutParams, type OnManageSubscriptionFn, type OnPlanSelectedCallbackFn, type PackageEntitlementsFilterPayload, PaymentDetailsSection, PaywallContainer as Paywall, type PaywallData, type PaywallLocalization, type PaywallPlan, type PaywallContainerProps as PaywallProps, type PixelWidth, type PlanPriceText, Promotions, ProvisionStatus, type SelectDefaultTierIndexFn, type ShouldHidePlanFn, StatusChip, type StatusChipColors, type StatusChipVariant, StiggContext, type StiggContextValue, StiggProvider, type StiggProviderProps, type StiggTheme, SubscribeIntentionType, SubscriptionsOverview, type SubscriptionsOverviewProps, type TableAlignment, type TaxDetailsInput, type TextAlignment, type CustomizedTheme as Theme, type UpdateAutomaticRechargeConfigParams, formatDateOnly, formatDateTime, isCreditEntitlement, isFeatureEntitlement, mapCreditGrantStatusToVariant, useActiveSubscriptions, useAutomaticRechargeForm, useBooleanEntitlement, useCreditEntitlement, useCreditGrants, useCreditUsage, useCustomerPortal, useEnumEntitlement, useMeteredEntitlement, useNumericEntitlement, usePaywall, useStiggContext, useWaitForCheckoutCompleted, validateAutomaticRechargeForm };
|