@b3dotfun/sdk 0.1.65-alpha.3 → 0.1.65-alpha.5
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/cjs/anyspend/react/components/AnySpendCollectorClubPurchase.d.ts +6 -1
- package/dist/cjs/anyspend/react/components/AnySpendCollectorClubPurchase.js +151 -22
- package/dist/cjs/anyspend/react/components/ccShopAbi.d.ts +113 -0
- package/dist/cjs/anyspend/react/components/ccShopAbi.js +63 -0
- package/dist/cjs/global-account/react/stores/useModalStore.d.ts +2 -0
- package/dist/esm/anyspend/react/components/AnySpendCollectorClubPurchase.d.ts +6 -1
- package/dist/esm/anyspend/react/components/AnySpendCollectorClubPurchase.js +152 -23
- package/dist/esm/anyspend/react/components/ccShopAbi.d.ts +113 -0
- package/dist/esm/anyspend/react/components/ccShopAbi.js +60 -0
- package/dist/esm/global-account/react/stores/useModalStore.d.ts +2 -0
- package/dist/types/anyspend/react/components/AnySpendCollectorClubPurchase.d.ts +6 -1
- package/dist/types/anyspend/react/components/ccShopAbi.d.ts +113 -0
- package/dist/types/global-account/react/stores/useModalStore.d.ts +2 -0
- package/package.json +1 -1
- package/src/anyspend/react/components/AnySpendCollectorClubPurchase.tsx +206 -22
- package/src/anyspend/react/components/ccShopAbi.ts +64 -0
- package/src/global-account/react/stores/useModalStore.ts +2 -0
|
@@ -497,6 +497,8 @@ export interface AnySpendCollectorClubPurchaseProps extends BaseModalProps {
|
|
|
497
497
|
forceFiatPayment?: boolean;
|
|
498
498
|
/** Staging environment support */
|
|
499
499
|
isStaging?: boolean;
|
|
500
|
+
/** Optional discount code to apply to the purchase */
|
|
501
|
+
discountCode?: string;
|
|
500
502
|
}
|
|
501
503
|
|
|
502
504
|
/**
|