@rechargeapps/storefront-client 1.79.0 → 1.81.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.
@@ -1 +1 @@
1
- {"version":3,"file":"bundleData.js","sources":["../../../src/utils/bundleData.ts"],"sourcesContent":["import { PublicBundleData, PriceRule } from '../types/bundleData';\nimport { BaseProduct, BaseProductVariant, BundleData as StorefrontBundleData } from '../types/bundle';\n\nconst mapBundleSettings = (bundleSettings: StorefrontBundleData['bundle_settings']) => {\n const addons = bundleSettings.layout_settings.addons;\n const crossSells = bundleSettings.layout_settings.crossSells;\n const customizationWindow = bundleSettings.customization_window;\n const defaultVariantId = bundleSettings.default_bundle_variant_id;\n const defaultFrequency = bundleSettings.layout_settings.defaultFrequency;\n const addToCartBehavior = bundleSettings.layout_settings.addToCartCallback;\n\n return {\n default_variant_id: defaultVariantId ? String(defaultVariantId) : null,\n is_customizable: bundleSettings.is_customizable,\n price_rule: String(bundleSettings.price_rule).toUpperCase(),\n customization_window: customizationWindow\n ? {\n active_days: customizationWindow,\n disabled_message: bundleSettings.customization_window_disabled_message || '',\n }\n : null,\n addons: addons.collectionId\n ? { collection_id: addons.collectionId, collection_handle: addons.collectionHandle }\n : null,\n cross_sells: crossSells.collectionId\n ? { collection_id: addons.collectionId, collection_handle: addons.collectionHandle }\n : null,\n default_selling_plan_id: defaultFrequency || null,\n collapsible_collections: bundleSettings.layout_settings.collapsibleSections,\n max_quantity_per_variant: bundleSettings.max_quantity_per_variant,\n show_product_variants: bundleSettings.layout_settings.showVariants,\n product_details_modal_enabled: bundleSettings.layout_settings.learnMoreModal,\n addToCartBehavior: {\n type: addToCartBehavior.type === 'none' ? ('cart_page' as const) : addToCartBehavior.type,\n value: addToCartBehavior.value,\n },\n };\n};\n\nconst mapIncentives = (incentives: StorefrontBundleData['incentives']): PublicBundleData['incentives'] => {\n if (incentives.tiered_discounts.length === 0) return null;\n\n return {\n tiered_discounts: incentives.tiered_discounts.map(tieredDiscount => ({\n eligible_charge_types: tieredDiscount.eligible_charge_types,\n eligible_line_item_types: tieredDiscount.eligible_line_item_types,\n external_bundle_product_id: {\n ecommerce: tieredDiscount.external_bundle_product_id.ecommerce,\n },\n lookup_key: tieredDiscount.lookup_key,\n name: tieredDiscount.name,\n status: tieredDiscount.status,\n tiers: tieredDiscount.tiers.map(({ tier }) => ({\n tier: {\n lookup_key: tier.lookup_key,\n discount_type: tier.discount_type,\n discount_value: tier.discount_value,\n condition_quantity_gte: tier.condition_quantity_gte,\n },\n })),\n })),\n };\n};\n\nconst mapSellingPlan = (\n sellingPlan: StorefrontBundleData['selling_plan_groups'][number]['selling_plans'][number]\n): PublicBundleData['selling_plan_groups'][number]['selling_plans'][number] => ({\n id: sellingPlan.id,\n name: sellingPlan.name,\n options: sellingPlan.options.map(option => ({ name: option.name, value: option.value })),\n recurring_deliveries: sellingPlan.recurring_deliveries,\n price_adjustments: sellingPlan.price_adjustments.map(({ value, value_type }) => ({\n value,\n value_type,\n })),\n});\n\nconst mapSellingPlanGroups = (\n sellingPlanGroup: StorefrontBundleData['selling_plan_groups'][number]\n): PublicBundleData['selling_plan_groups'][number] => ({\n name: sellingPlanGroup.name,\n options: sellingPlanGroup.options.map(option => ({ name: option.name, values: option.values })),\n selling_plans: sellingPlanGroup.selling_plans.map(mapSellingPlan),\n});\n\nconst mapBasicVariant = (variant: BaseProductVariant) => ({\n id: String(variant.id),\n title: variant.title,\n price: variant.price,\n compare_at_price: variant.compare_at_price,\n options: variant.options,\n available_for_sale: variant.available,\n});\n\nconst formatFeaturedImage = (featuredImage: BaseProduct['featured_image']): string | null => {\n if (featuredImage == null || typeof featuredImage === 'string') return featuredImage;\n\n if ('src' in featuredImage) return featuredImage['src'];\n\n return null;\n};\n\nconst mapBasicProduct = (product: BaseProduct) => {\n return {\n id: String(product.id),\n title: product.title,\n description: product.description,\n available_for_sale: product.available,\n featured_image: formatFeaturedImage(product.featured_image),\n images: product.images,\n requires_selling_plan: product.requires_selling_plan,\n selling_plan_groups: product.selling_plan_groups.map(mapSellingPlanGroups),\n };\n};\n\nconst mapProduct = (product: StorefrontBundleData['collections'][number]['products'][number]) => {\n const productPlansLookup = productSellingPlansGroupLookup(product.selling_plan_groups);\n\n return {\n ...mapBasicProduct(product),\n handle: product.handle,\n tags: product.tags,\n price_range: { min: product.price_min, max: product.price_max },\n compare_at_price_range: { min: product.compare_at_price_min, max: product.compare_at_price_max },\n options: product.options,\n variants: product.variants.map(variant => ({\n ...mapBasicVariant(variant),\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(\n productPlansLookup[`${sellingPlan.selling_plan_group_id}-${sellingPlan.selling_plan_id}`]\n ),\n })),\n option1: variant.option1,\n option2: variant.option2,\n option3: variant.option3,\n sku: variant.sku || '',\n requires_shipping: variant.requires_shipping,\n taxable: variant.taxable,\n featured_image: formatFeaturedImage(variant.featured_image),\n public_title: variant.public_title,\n requires_selling_plan: variant.requires_selling_plan,\n })),\n };\n};\n\nconst mapBundleVariantRanges = ({\n items_count,\n ranges,\n}: Pick<StorefrontBundleData['bundle_settings']['variants'][number], 'items_count' | 'ranges'>) => {\n if (ranges.length > 0) {\n return ranges.map(({ quantity_max, quantity_min }) => ({ min: quantity_min, max: quantity_max }));\n }\n\n return [{ min: items_count, max: items_count }];\n};\n\nconst productSellingPlansGroupLookup = (sellingPlanGroups: BaseProduct['selling_plan_groups']) =>\n sellingPlanGroups.reduce<\n Record<string, StorefrontBundleData['selling_plan_groups'][number]['selling_plans'][number]>\n >((acc, current) => {\n current.selling_plans.forEach(sellingPlan => {\n const key = `${current.id}-${sellingPlan.id}`;\n acc[key] = sellingPlan;\n });\n\n return acc;\n }, {});\n\nconst mapFilters = (filters: StorefrontBundleData['filters']): PublicBundleData['filters'] => {\n if (!Array.isArray(filters)) return [];\n return filters;\n};\n\nexport function mapOnlineStoreToPublicBundleData(bundleData: StorefrontBundleData): PublicBundleData {\n const bundleSettings = mapBundleSettings(bundleData.bundle_settings);\n const variantsLookup = bundleData.variants.reduce<Record<string, StorefrontBundleData['variants'][number]>>(\n (acc, variant) => {\n acc[variant.id] = variant;\n return acc;\n },\n {}\n );\n\n return {\n id: String(bundleData.id),\n title: bundleData.title,\n description: bundleData.description || null,\n handle: bundleData.handle,\n options: bundleData.options.map(option => ({\n name: option.name,\n position: option.position,\n values: option.values,\n })),\n default_variant_id: bundleSettings.default_variant_id,\n default_selling_plan_id: bundleSettings.default_selling_plan_id\n ? Number(bundleSettings.default_selling_plan_id)\n : null,\n available_for_sale: bundleData.available,\n requires_selling_plan: bundleData.requires_selling_plan,\n bundle_settings: {\n is_customizable: bundleSettings.is_customizable,\n price_rule: bundleSettings.price_rule as PriceRule,\n customization_window: bundleSettings.customization_window,\n max_quantity_per_variant: bundleSettings.max_quantity_per_variant,\n collapsible_collections: bundleSettings.collapsible_collections,\n show_product_variants: bundleSettings.show_product_variants,\n product_details_modal_enabled: bundleSettings.product_details_modal_enabled,\n show_variants_as_individual_products:\n bundleData.bundle_settings.settings.display_variants_as_separate_products_in_list,\n post_add_to_cart_behavior: bundleSettings.addToCartBehavior,\n },\n variants: bundleData.bundle_settings.variants\n .filter(({ enabled }) => enabled)\n .map((item, index) => {\n const variant = variantsLookup[String(item.external_variant_id)];\n\n return {\n id: String(item.external_variant_id),\n title: variant.title,\n price: variant.price,\n compare_at_price: variant.compare_at_price,\n image: variant.image || '',\n available_for_sale: variant.available,\n options: variant.options,\n requires_selling_plan: variant.requires_selling_plan,\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(sellingPlan.selling_plan),\n })),\n ranges: mapBundleVariantRanges(item),\n collections: item.option_sources.map(source => ({\n id: source.option_source_id,\n source_platform: 'shopify',\n min: source.quantity_min || 0,\n max: source.quantity_max,\n position: source.position,\n })),\n default_selections: item.selection_defaults.map(selectionDefault => ({\n quantity: selectionDefault.quantity,\n product: {\n id: String(selectionDefault.product.id),\n handle: selectionDefault.handle,\n title: selectionDefault.product.title,\n description: selectionDefault.product.description,\n images: selectionDefault.product.images,\n },\n variant: {\n id: selectionDefault.external_variant_id,\n title: selectionDefault.variant.title,\n featured_image: formatFeaturedImage(selectionDefault.variant.featured_image),\n sku: selectionDefault.sku || '',\n },\n })),\n position: index,\n };\n }),\n selling_plan_groups: bundleData.selling_plan_groups.map(mapSellingPlanGroups),\n collections: Object.values(bundleData.collections).reduce<PublicBundleData['collections']>((acc, current) => {\n if (!Array.isArray(current.products)) {\n /* If a collection is not published in Online store, it is included \n as _1:{ handle: \"<collection-handle\"} in the collections object.\n We need to skip these collections.\n */\n return acc;\n }\n\n acc[String(current.id)] = {\n id: String(current.id),\n title: current.title,\n handle: current.handle,\n products: current.products.map(mapProduct),\n };\n\n return acc;\n }, {}),\n addons: bundleData.addons.products.length\n ? {\n collection_id: bundleSettings.addons?.collection_id || '',\n collection_handle: bundleSettings.addons?.collection_handle || '',\n products: bundleData.addons.products.map(product => ({\n ...mapBasicProduct(product),\n price_range: { min: product.price, max: product.price },\n compare_at_price_range: { min: product.compare_at_price || 0, max: product.compare_at_price },\n variants: product.variants.map(variant => ({\n ...mapBasicVariant(variant),\n image: variant.image,\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(sellingPlan.selling_plan),\n })),\n })),\n })),\n }\n : null,\n cross_sells: bundleData.cross_sells.products.length\n ? {\n collection_id: bundleSettings.cross_sells?.collection_id || '',\n collection_handle: bundleSettings.cross_sells?.collection_handle || '',\n products: bundleData.cross_sells.products.map(mapProduct),\n }\n : null,\n incentives: mapIncentives(bundleData.incentives),\n filters: mapFilters(bundleData.filters),\n };\n}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"bundleData.js","sources":["../../../src/utils/bundleData.ts"],"sourcesContent":["import { PublicBundleData, PriceRule } from '../types/bundleData';\nimport { BaseProduct, BaseProductVariant, BundleData as StorefrontBundleData } from '../types/bundle';\n\nconst mapBundleSettings = (bundleSettings: StorefrontBundleData['bundle_settings']) => {\n const addons = bundleSettings.layout_settings.addons;\n const crossSells = bundleSettings.layout_settings.crossSells;\n const customizationWindow = bundleSettings.customization_window;\n const defaultVariantId = bundleSettings.default_bundle_variant_id;\n const defaultFrequency = bundleSettings.layout_settings.defaultFrequency;\n const addToCartBehavior = bundleSettings.layout_settings.addToCartCallback;\n\n return {\n default_variant_id: defaultVariantId ? String(defaultVariantId) : null,\n is_customizable: bundleSettings.is_customizable,\n price_rule: String(bundleSettings.price_rule).toUpperCase(),\n customization_window: customizationWindow\n ? {\n active_days: customizationWindow,\n disabled_message: bundleSettings.customization_window_disabled_message || '',\n }\n : null,\n addons: addons.collectionId\n ? { collection_id: addons.collectionId, collection_handle: addons.collectionHandle }\n : null,\n cross_sells: crossSells.collectionId\n ? { collection_id: addons.collectionId, collection_handle: addons.collectionHandle }\n : null,\n default_selling_plan_id: defaultFrequency || null,\n collapsible_collections: bundleSettings.layout_settings.collapsibleSections,\n max_quantity_per_variant: bundleSettings.max_quantity_per_variant,\n show_product_variants: bundleSettings.layout_settings.showVariants,\n product_details_modal_enabled: bundleSettings.layout_settings.learnMoreModal,\n addToCartBehavior: {\n type: addToCartBehavior.type === 'none' ? ('cart_page' as const) : addToCartBehavior.type,\n value: addToCartBehavior.value,\n },\n };\n};\n\nconst mapIncentives = (incentives: StorefrontBundleData['incentives']): PublicBundleData['incentives'] => {\n if (incentives.tiered_discounts.length === 0) return null;\n\n return {\n tiered_discounts: incentives.tiered_discounts,\n };\n};\n\nconst mapSellingPlan = (\n sellingPlan: StorefrontBundleData['selling_plan_groups'][number]['selling_plans'][number]\n): PublicBundleData['selling_plan_groups'][number]['selling_plans'][number] => ({\n id: sellingPlan.id,\n name: sellingPlan.name,\n options: sellingPlan.options.map(option => ({ name: option.name, value: option.value })),\n recurring_deliveries: sellingPlan.recurring_deliveries,\n price_adjustments: sellingPlan.price_adjustments.map(({ value, value_type }) => ({\n value,\n value_type,\n })),\n});\n\nconst mapSellingPlanGroups = (\n sellingPlanGroup: StorefrontBundleData['selling_plan_groups'][number]\n): PublicBundleData['selling_plan_groups'][number] => ({\n name: sellingPlanGroup.name,\n options: sellingPlanGroup.options.map(option => ({ name: option.name, values: option.values })),\n selling_plans: sellingPlanGroup.selling_plans.map(mapSellingPlan),\n});\n\nconst mapBasicVariant = (variant: BaseProductVariant) => ({\n id: String(variant.id),\n title: variant.title,\n price: variant.price,\n compare_at_price: variant.compare_at_price,\n options: variant.options,\n available_for_sale: variant.available,\n});\n\nconst formatFeaturedImage = (featuredImage: BaseProduct['featured_image']): string | null => {\n if (featuredImage == null || typeof featuredImage === 'string') return featuredImage;\n\n if ('src' in featuredImage) return featuredImage['src'];\n\n return null;\n};\n\nconst mapBasicProduct = (product: BaseProduct) => {\n return {\n id: String(product.id),\n title: product.title,\n description: product.description,\n available_for_sale: product.available,\n featured_image: formatFeaturedImage(product.featured_image),\n images: product.images,\n requires_selling_plan: product.requires_selling_plan,\n selling_plan_groups: product.selling_plan_groups.map(mapSellingPlanGroups),\n };\n};\n\nconst mapProduct = (product: StorefrontBundleData['collections'][number]['products'][number]) => {\n const productPlansLookup = productSellingPlansGroupLookup(product.selling_plan_groups);\n\n return {\n ...mapBasicProduct(product),\n handle: product.handle,\n tags: product.tags,\n price_range: { min: product.price_min, max: product.price_max },\n compare_at_price_range: { min: product.compare_at_price_min, max: product.compare_at_price_max },\n options: product.options,\n variants: product.variants.map(variant => ({\n ...mapBasicVariant(variant),\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(\n productPlansLookup[`${sellingPlan.selling_plan_group_id}-${sellingPlan.selling_plan_id}`]\n ),\n })),\n option1: variant.option1,\n option2: variant.option2,\n option3: variant.option3,\n sku: variant.sku || '',\n requires_shipping: variant.requires_shipping,\n taxable: variant.taxable,\n featured_image: formatFeaturedImage(variant.featured_image),\n public_title: variant.public_title,\n requires_selling_plan: variant.requires_selling_plan,\n })),\n };\n};\n\nconst mapBundleVariantRanges = ({\n items_count,\n ranges,\n}: Pick<StorefrontBundleData['bundle_settings']['variants'][number], 'items_count' | 'ranges'>) => {\n if (ranges.length > 0) {\n return ranges.map(({ quantity_max, quantity_min }) => ({ min: quantity_min, max: quantity_max }));\n }\n\n return [{ min: items_count, max: items_count }];\n};\n\nconst productSellingPlansGroupLookup = (sellingPlanGroups: BaseProduct['selling_plan_groups']) =>\n sellingPlanGroups.reduce<\n Record<string, StorefrontBundleData['selling_plan_groups'][number]['selling_plans'][number]>\n >((acc, current) => {\n current.selling_plans.forEach(sellingPlan => {\n const key = `${current.id}-${sellingPlan.id}`;\n acc[key] = sellingPlan;\n });\n\n return acc;\n }, {});\n\nconst mapFilters = (filters: StorefrontBundleData['filters']): PublicBundleData['filters'] => {\n if (!Array.isArray(filters)) return [];\n return filters;\n};\n\nexport function mapOnlineStoreToPublicBundleData(bundleData: StorefrontBundleData): PublicBundleData {\n const bundleSettings = mapBundleSettings(bundleData.bundle_settings);\n const variantsLookup = bundleData.variants.reduce<Record<string, StorefrontBundleData['variants'][number]>>(\n (acc, variant) => {\n acc[variant.id] = variant;\n return acc;\n },\n {}\n );\n\n return {\n id: String(bundleData.id),\n title: bundleData.title,\n description: bundleData.description || null,\n handle: bundleData.handle,\n options: bundleData.options.map(option => ({\n name: option.name,\n position: option.position,\n values: option.values,\n })),\n default_variant_id: bundleSettings.default_variant_id,\n default_selling_plan_id: bundleSettings.default_selling_plan_id\n ? Number(bundleSettings.default_selling_plan_id)\n : null,\n available_for_sale: bundleData.available,\n requires_selling_plan: bundleData.requires_selling_plan,\n bundle_settings: {\n is_customizable: bundleSettings.is_customizable,\n price_rule: bundleSettings.price_rule as PriceRule,\n customization_window: bundleSettings.customization_window,\n max_quantity_per_variant: bundleSettings.max_quantity_per_variant,\n collapsible_collections: bundleSettings.collapsible_collections,\n show_product_variants: bundleSettings.show_product_variants,\n product_details_modal_enabled: bundleSettings.product_details_modal_enabled,\n show_variants_as_individual_products:\n bundleData.bundle_settings.settings.display_variants_as_separate_products_in_list,\n post_add_to_cart_behavior: bundleSettings.addToCartBehavior,\n },\n variants: bundleData.bundle_settings.variants\n .filter(({ enabled }) => enabled)\n .map((item, index) => {\n const variant = variantsLookup[String(item.external_variant_id)];\n\n return {\n id: String(item.external_variant_id),\n title: variant.title,\n price: variant.price,\n compare_at_price: variant.compare_at_price,\n image: variant.image || '',\n available_for_sale: variant.available,\n options: variant.options,\n requires_selling_plan: variant.requires_selling_plan,\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(sellingPlan.selling_plan),\n })),\n ranges: mapBundleVariantRanges(item),\n collections: item.option_sources.map(source => ({\n id: source.option_source_id,\n source_platform: 'shopify',\n min: source.quantity_min || 0,\n max: source.quantity_max,\n position: source.position,\n })),\n default_selections: item.selection_defaults.map(selectionDefault => ({\n quantity: selectionDefault.quantity,\n product: {\n id: String(selectionDefault.product.id),\n handle: selectionDefault.handle,\n title: selectionDefault.product.title,\n description: selectionDefault.product.description,\n images: selectionDefault.product.images,\n },\n variant: {\n id: selectionDefault.external_variant_id,\n title: selectionDefault.variant.title,\n featured_image: formatFeaturedImage(selectionDefault.variant.featured_image),\n sku: selectionDefault.sku || '',\n },\n })),\n position: index,\n };\n }),\n selling_plan_groups: bundleData.selling_plan_groups.map(mapSellingPlanGroups),\n collections: Object.values(bundleData.collections).reduce<PublicBundleData['collections']>((acc, current) => {\n if (!Array.isArray(current.products)) {\n /* If a collection is not published in Online store, it is included \n as _1:{ handle: \"<collection-handle\"} in the collections object.\n We need to skip these collections.\n */\n return acc;\n }\n\n acc[String(current.id)] = {\n id: String(current.id),\n title: current.title,\n handle: current.handle,\n products: current.products.map(mapProduct),\n };\n\n return acc;\n }, {}),\n addons: bundleData.addons.products.length\n ? {\n collection_id: bundleSettings.addons?.collection_id || '',\n collection_handle: bundleSettings.addons?.collection_handle || '',\n products: bundleData.addons.products.map(product => ({\n ...mapBasicProduct(product),\n price_range: { min: product.price, max: product.price },\n compare_at_price_range: { min: product.compare_at_price || 0, max: product.compare_at_price },\n variants: product.variants.map(variant => ({\n ...mapBasicVariant(variant),\n image: variant.image,\n selling_plan_allocations: variant.selling_plan_allocations.map(sellingPlan => ({\n price: sellingPlan.price,\n compare_at_price: sellingPlan.compare_at_price,\n selling_plan: mapSellingPlan(sellingPlan.selling_plan),\n })),\n })),\n })),\n }\n : null,\n cross_sells: bundleData.cross_sells.products.length\n ? {\n collection_id: bundleSettings.cross_sells?.collection_id || '',\n collection_handle: bundleSettings.cross_sells?.collection_handle || '',\n products: bundleData.cross_sells.products.map(mapProduct),\n }\n : null,\n incentives: mapIncentives(bundleData.incentives),\n filters: mapFilters(bundleData.filters),\n };\n}\n"],"names":[],"mappings":"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"}
@@ -47,7 +47,7 @@ async function rechargeApiRequest(method, url, { id, query, data, headers } = {}
47
47
  "X-Recharge-Sdk-Fn": session.internalFnCall,
48
48
  ...appName ? { "X-Recharge-Sdk-App-Name": appName } : {},
49
49
  ...appVersion ? { "X-Recharge-Sdk-App-Version": appVersion } : {},
50
- "X-Recharge-Sdk-Version": "1.79.0",
50
+ "X-Recharge-Sdk-Version": "1.81.0",
51
51
  "X-Request-Id": session.internalRequestId,
52
52
  ...session.tmp_fn_identifier ? { "X-Recharge-Sdk-Fn-Identifier": session.tmp_fn_identifier } : {},
53
53
  ...headers ? headers : {}
package/dist/index.d.ts CHANGED
@@ -547,26 +547,22 @@ interface PaymentMethodListParams extends ListParams<PaymentMethodSortBy> {
547
547
  /** Include deleted payment methods */
548
548
  include_deleted?: boolean;
549
549
  }
550
- /** @internal */
551
550
  interface BaseCardDetails {
552
551
  /** Expiration month (1-12 or '01'-'12') */
553
552
  month: string | number;
554
553
  /** Expiration year (YYYY or YY format) */
555
554
  year: string | number;
556
555
  }
557
- /** @internal */
558
556
  interface CardDetailsFirstNameLastName extends BaseCardDetails {
559
557
  /** First name on the card */
560
558
  first_name: string;
561
559
  /** Last name on the card */
562
560
  last_name: string;
563
561
  }
564
- /** @internal */
565
562
  interface CardDetailsFullName extends BaseCardDetails {
566
563
  /** Full name on the card */
567
564
  full_name: string;
568
565
  }
569
- /** @internal */
570
566
  interface PaymentMethodFormOptions {
571
567
  /** Card holder details */
572
568
  card_details: CardDetailsFirstNameLastName | CardDetailsFullName;
@@ -579,7 +575,6 @@ interface PaymentMethodFormOptions {
579
575
  /** Whether to apply the payment method to all existing subscription addresses, will override address_ids if true */
580
576
  apply_to_all_subscription_addresses?: boolean;
581
577
  }
582
- /** @internal */
583
578
  interface PaymentFormConfig {
584
579
  /** DOM element ID where the card number field will be mounted */
585
580
  numberElementId: string;
@@ -607,19 +602,15 @@ interface PaymentFormConfig {
607
602
  */
608
603
  numberFormat?: 'plainFormat' | 'prettyFormat' | 'maskedFormat';
609
604
  }
610
- /** @internal */
611
605
  interface PaymentFieldEventCallback {
612
606
  (fieldName: spreedly.SpreedlyField, eventType: spreedly.SpreedlyFieldEventType, activeElement: spreedly.SpreedlyField, inputProperties: spreedly.SpreedlyFieldEventInputProperties): void;
613
607
  }
614
- /** @internal */
615
608
  interface PaymentMethodTokenCallback {
616
609
  (token: string, paymentMethod: spreedly.SpreedlyPaymentMethod): void;
617
610
  }
618
- /** @internal */
619
611
  interface PaymentErrorCallback {
620
612
  (errors: spreedly.SpreedlyError[]): void;
621
613
  }
622
- /** @internal */
623
614
  interface PaymentFormEventHandlers {
624
615
  /** Called when the form is ready for input */
625
616
  onReady?: () => void;
@@ -630,7 +621,6 @@ interface PaymentFormEventHandlers {
630
621
  /** Called when validation errors occur */
631
622
  onErrors?: PaymentErrorCallback;
632
623
  }
633
- /** @internal */
634
624
  interface PaymentFormController {
635
625
  /**
636
626
  * Initialize the payment form with the payment script
@@ -705,40 +695,134 @@ interface Addon {
705
695
  type: AddonType;
706
696
  }
707
697
 
708
- interface Incentives {
709
- tiered_discounts: TieredDiscount[];
710
- }
711
- /** Line item types eligible for tiered discounts */
698
+ /**
699
+ * Types for Recharge tiered discount incentives: rules that apply larger discounts
700
+ * when qualifying subscription or one-time line items meet per-tier quantity or
701
+ * line-price thresholds on checkout or recurring charges.
702
+ *
703
+ * Consumers use these shapes with the incentives tiered-discount API and on
704
+ * incentive payloads scoped to a bundle product, a single product, or a collection.
705
+ */
706
+
707
+ /**
708
+ * Which line item kinds a tiered discount may apply to.
709
+ * - `subscription`: recurring subscription items
710
+ * - `onetime`: one-time purchase items
711
+ */
712
712
  type EligibleLineItemType = 'subscription' | 'onetime';
713
- /** Charge types eligible for tiered discounts */
713
+ /**
714
+ * Which charge types a tiered discount may apply to.
715
+ * - `checkout`: first purchase / checkout charge
716
+ * - `recurring`: subsequent subscription charges
717
+ */
714
718
  type EligibleChargeType = 'checkout' | 'recurring';
715
- /** Tiered discount status */
716
- type TieredDiscountStatus = 'draft' | 'unpublished' | 'published' | 'inactive';
717
719
  /**
718
- * Discount tier configuration
720
+ * Lifecycle state of a tiered discount configuration.
721
+ * - `draft`: not yet published
722
+ * - `unpublished`: only active for existing customers
723
+ * - `published`: active for all customers
724
+ * - `inactive`: inactive for all customers
719
725
  */
720
- type Tier = {
726
+ type TieredDiscountStatus = 'draft' | 'unpublished' | 'published' | 'inactive';
727
+ /** @internal Common fields present on every tier row before the quantity vs line-price condition. */
728
+ type TierBase = {
729
+ /** Whether the discount is a percentage or fixed amount. */
721
730
  discount_type: 'percentage' | 'fixed_amount';
731
+ /** Discount value (percentage or currency amount, depending on `discount_type`). */
722
732
  discount_value: number | string;
723
- condition_quantity_gte: number | string;
733
+ /** Stable identifier for this tier within the discount configuration. */
724
734
  lookup_key: string;
725
735
  };
726
736
  /**
727
- * Tiered discount configuration
737
+ * Each tier uses exactly one threshold:
738
+ * either condition quantity greater than or equal to or
739
+ * condition line price greater than or equal to, never both.
740
+ */
741
+ type Tier = TierBase & ({
742
+ condition_quantity_gte: number | string;
743
+ condition_line_price_gte?: never;
744
+ } | {
745
+ condition_line_price_gte: number | string;
746
+ condition_quantity_gte?: never;
747
+ });
748
+ /**
749
+ * A tiered discount definition scoped to a bundle product, a single product, or a
750
+ * collection (via the corresponding optional fields), including eligible charge and
751
+ * line item types and the ordered list of tiers.
728
752
  */
729
753
  interface TieredDiscount {
754
+ /** Incentive config id. */
755
+ id: number;
756
+ /** Created timestamp (ISO 8601). */
757
+ created_at: IsoDateString;
758
+ /** Updated timestamp (ISO 8601). */
759
+ updated_at: IsoDateString;
760
+ /** Shopify automatic discount title used at checkout; may be null. */
761
+ shopify_display_name: string | null;
762
+ /** Charge types (checkout vs recurring) this discount applies to. */
730
763
  eligible_charge_types: EligibleChargeType[];
764
+ /** Line item types (subscription vs onetime) this discount applies to. */
731
765
  eligible_line_item_types: EligibleLineItemType[];
732
- external_bundle_product_id: {
733
- ecommerce: string;
766
+ /**
767
+ * Bundle scope: external bundle product id on the ecommerce platform.
768
+ * Present when the discount targets one bundle product.
769
+ */
770
+ external_bundle_product_id?: {
771
+ ecommerce: string | null;
772
+ };
773
+ /**
774
+ * Single-product scope: external product id on the ecommerce platform.
775
+ * Present when the discount targets one product.
776
+ */
777
+ external_product_id?: {
778
+ ecommerce: string | null;
734
779
  };
780
+ /**
781
+ * Collection scope: Recharge collection id when the discount applies to a collection.
782
+ * Present when the discount targets a collection.
783
+ */
784
+ collection_id?: string | null;
785
+ /** Stable identifier for this tiered discount configuration. */
735
786
  lookup_key: string;
787
+ /** Internal name for the Tiered Discount. */
736
788
  name: string;
789
+ /** Publication and lifecycle state. */
737
790
  status: TieredDiscountStatus;
791
+ /** Ordered tiers as returned by the API (each entry wraps one tier object). */
738
792
  tiers: {
739
793
  tier: Tier;
740
794
  }[];
741
795
  }
796
+ /** Payload (e.g. bundle-data or incentives API) that can embed tiered discount definitions. */
797
+ interface Incentives {
798
+ /** Tiered discount configurations for the current context. */
799
+ tiered_discounts: TieredDiscount[];
800
+ }
801
+ /** Paginated list response for tiered discounts. */
802
+ interface TieredDiscountsResponse {
803
+ /** Cursor for the next page, or `null` if none. */
804
+ next_cursor: string | null;
805
+ /** Cursor for the previous page, or `null` if none. */
806
+ previous_cursor: string | null;
807
+ /** Tiered discounts in this page. */
808
+ tiered_discounts: TieredDiscount[];
809
+ }
810
+ /** Query parameters when listing tiered discounts. */
811
+ interface TieredDiscountsParams {
812
+ /** Restrict to discounts in this status. */
813
+ status?: TieredDiscountStatus;
814
+ /** Filter by external (ecommerce) product id. */
815
+ external_product_id?: string;
816
+ /** Filter by external bundle product id. */
817
+ external_bundle_product_id?: string;
818
+ /** Filter by Recharge collection id. */
819
+ collection_id?: string;
820
+ /** Pagination cursor from a prior response. */
821
+ cursor?: string;
822
+ /** Maximum number of records to return. */
823
+ limit?: number;
824
+ }
825
+
742
826
  interface AddonSettings {
743
827
  collectionHandle: string;
744
828
  collectionId: string;
@@ -3729,6 +3813,8 @@ interface CustomerPortalSettings {
3729
3813
  show_credits: boolean;
3730
3814
  /** Whether recurring order blocking is enabled or not. */
3731
3815
  recurring_order_blocking: boolean;
3816
+ /** Whether the store uses slots or not. */
3817
+ store_uses_slots: boolean;
3732
3818
  /** Subscription related settings */
3733
3819
  subscription: {
3734
3820
  /** Whether the customer can create new subscriptions or not. */
@@ -3991,7 +4077,6 @@ declare function createPaymentMethod(session: Session, createRequest: CreatePaym
3991
4077
  */
3992
4078
  declare function updatePaymentMethod(session: Session, id: string | number, updateRequest: UpdatePaymentMethodRequest): Promise<PaymentMethod>;
3993
4079
  declare function listPaymentMethods(session: Session, query?: PaymentMethodListParams): Promise<PaymentMethodsResponse>;
3994
- /** @internal */
3995
4080
  declare function initFrictionlessPaymentV1(session: Session, rechargePaymentMethodId?: string): Promise<PaymentFormController>;
3996
4081
 
3997
4082
  declare function getPlan(session: Session, id: string | number): Promise<Plan>;
@@ -4069,6 +4154,9 @@ declare function updateSubscriptions(session: Session, addressId: string | numbe
4069
4154
  */
4070
4155
  declare function deleteSubscriptions(session: Session, addressId: string | number, deleteRequestBulk: DeleteSubscriptionsRequest[], query?: DeleteSubscriptionsParams): Promise<void>;
4071
4156
 
4157
+ declare function listTieredDiscounts(session: Session, options?: TieredDiscountsParams): Promise<TieredDiscountsResponse>;
4158
+ declare function getTieredDiscount(session: Session, id: string | number): Promise<TieredDiscount>;
4159
+
4072
4160
  /**
4073
4161
  * @internal
4074
4162
  * @deprecated will be removed in next version
@@ -4081,4 +4169,4 @@ declare const api: {
4081
4169
  };
4082
4170
  declare function initRecharge(opt?: InitOptions): void;
4083
4171
 
4084
- export { type ActivateMembershipRequest, type AddToCartCallbackSettings, type Addon, type AddonProduct, type AddonSettings, type AddonType, type AddonsSection, type Address, type AddressIncludes, type AddressListParams, type AddressListResponse, type AddressResponse, type AddressSortBy, type AnalyticsData, type Announcement, type ApplyCreditOptions, type AssociatedAddress, type BaseCardDetails, type BaseProduct, type BaseProductVariant, type BaseVariant, type BasicSubscriptionParams, type BooleanLike, type BooleanNumbers, type BooleanString, type BooleanStringNumbers, type BulkSubscriptionParams, type BundleAppProxy, type BundleData, type BundleDataBaseProduct, type BundleDataCollection, type BundleDataSellingPlan, type BundleDataSellingPlanGroup, type BundleDataVariant, type BundleFilterGroup, type BundlePriceRule, type BundleProduct, type BundleProductLayoutSettings, type BundlePurchaseItem, type BundlePurchaseItemParams, type BundleSelection, type BundleSelectionAppProxy, type BundleSelectionItem, type BundleSelectionItemRequiredCreateProps, type BundleSelectionListParams, type BundleSelectionsResponse, type BundleSelectionsSortBy, type BundleSettings, type BundleTemplateSettings, type BundleTemplateType, type BundleTranslations, type BundleVariant, type BundleVariantOptionSource, type BundleVariantRange, type BundleVariantSelectionDefault, type CDNBaseWidgetSettings, type CDNBundleSettings, type CDNBundleVariant, type CDNBundleVariantOptionSource, type CDNPlan, type CDNProduct, type CDNProductAndSettings, type CDNProductKeyObject, type CDNProductQuery_2020_12, type CDNProductQuery_2022_06, type CDNProductRaw, type CDNProductResource, type CDNProductResponseType, type CDNProductType, type CDNProductVariant_2022_06, type CDNProduct_2022_06, type CDNProductsAndSettings, type CDNProductsAndSettingsResource, type CDNStoreSettings, type CDNSubscriptionOption, type CDNVariant, type CDNVersion, type CDNWidgetSettings, type CDNWidgetSettingsRaw, type CDNWidgetSettingsResource, type CRUDRequestOptions, type CancelMembershipRequest, type CancelSubscriptionRequest, type CardDetailsFirstNameLastName, type CardDetailsFullName, type ChangeMembershipRequest, type ChannelSettings, type Charge, type ChargeIncludes, type ChargeListParams, type ChargeListResponse, type ChargeResponse, type ChargeSortBy, type ChargeStatus, type Collection, type CollectionBinding, type CollectionListParams, type CollectionTypes, type CollectionsResponse, type CollectionsSortBy, type ColorString, type CreateAddressRequest, type CreateBundleSelectionRequest, type CreateMetafieldRequest, type CreateOnetimeRequest, type CreatePaymentMethodRequest, type CreateRecipientAddress, type CreateSubscriptionRequest, type CreateSubscriptionsParams, type CreateSubscriptionsRequest, type CreditAccount, type CreditAccountIncludes, type CreditAccountListParams, type CreditAccountType, type CreditAccountsResponse, type CreditAccountsSortBy, type CreditSummaryIncludes, type CrossSellsSection, type CrossSellsSettings, type CurrencyPriceSet, type Customer, type CustomerCreditSummary, type CustomerDeliveryScheduleParams, type CustomerDeliveryScheduleResponse, type CustomerIncludeGiftPurchase, type CustomerIncludes, type CustomerNotification, type CustomerNotificationOptions, type CustomerNotificationTemplate, type CustomerNotificationType, type CustomerPortalAccessOptions, type CustomerPortalAccessResponse, type CustomerPortalSettings, type CustomerSurveyOfferParams, type CustomerSurveyOfferResponse, type CustomerSurveyOffersResponse, type CustomerSurveyReason, type CustomerSurveyReasonsResponse, type DefaultProduct, type DefaultSelection, type DefaultVariant, type DelayOption, type DeleteSubscriptionsParams, type DeleteSubscriptionsRequest, type Delivery, type DeliveryLineItem, type DeliveryOrder, type DeliveryPaymentMethod, type Discount, type DiscountApplicationMethod, type DiscountType, type DynamicBundleItemAppProxy, type DynamicBundlePropertiesAppProxy, type EligibleChargeType, type EligibleLineItemType, type ExternalAttributeSchema, type ExternalId, type ExternalProductStatus, type ExternalTransactionId, type FilterInputType, type FilterMatchMode, type FilterSource, type FirstOption, type GetAddressOptions, type GetChargeOptions, type GetCreditSummaryOptions, type GetCustomerOptions, type GetMembershipProgramOptions, type GetPaymentMethodOptions, type GetRequestOptions, type GetSubscriptionOptions, type GiftPurchase, type GiftPurchasesParams, type GiftPurchasesResponse, type HTMLString, type Incentives, type InitOptions, type InternalSession, type IntervalUnit, type InventoryPolicy, type IsoDateString, type LineItem, type ListParams, type LoginResponse, type Membership, type MembershipBenefit, type MembershipIncludes, type MembershipListParams, type MembershipListResponse, type MembershipProgram, type MembershipProgramIncludes, type MembershipProgramListParams, type MembershipProgramListResponse, type MembershipProgramResponse, type MembershipProgramSortBy, type MembershipProgramStatus, type MembershipResponse, type MembershipStatus, type MembershipsSortBy, type MergeAddressesRequest, type Metafield, type MetafieldOptionalCreateProps, type MetafieldOwnerResource, type MetafieldRequiredCreateProps, type Method, type Modifier, type MultiStepSettings, type OfferAttributes, type OnePageSettings, type Onetime, type OnetimeIncludes, type OnetimeListParams, type OnetimeOptionalCreateProps, type OnetimeRequiredCreateProps, type OnetimeSubscription, type OnetimesResponse, type OnetimesSortBy, type OnlineStoreOptions, type Options, type Order, type OrderIncludes, type OrderListParams, type OrderSortBy, type OrderStatus, type OrderType, type OrdersResponse, type PasswordlessCodeResponse, type PasswordlessOptions, type PasswordlessValidateResponse, type PaymentDetails, type PaymentErrorCallback, type PaymentFieldEventCallback, type PaymentFormConfig, type PaymentFormController, type PaymentFormEventHandlers, type PaymentMethod, type PaymentMethodFormOptions, type PaymentMethodIncludes, type PaymentMethodListParams, type PaymentMethodOptionalCreateProps, type PaymentMethodRequiredCreateProps, type PaymentMethodSortBy, type PaymentMethodStatus, type PaymentMethodTokenCallback, type PaymentMethodsResponse, type PaymentType, type Plan, type PlanListParams, type PlanSortBy, type PlanType, type PlansResponse, type PriceRange, type PriceRule, type PriceSet, type ProcessorName, type Product, type ProductImage, type ProductInclude, type ProductListResponse, type ProductOption, type ProductSearchParams_2020_12, type ProductSearchParams_2022_06, type ProductSearchResponse_2020_12, type ProductSearchResponse_2022_06, type ProductSearchType, type ProductSource, type ProductValueOption, type ProductVariant_2020_12, type ProductVariant_2022_06, type Product_2020_12, type Product_2022_06, type Property, type PublicBundleData, type PublishStatus, type PunchCardProgress, type PunchCardProgressData, type QuantityRange, type RecurringSubscription, type ReferralInfo, type ReferralUrl, type Request, type RequestHeaders, type RequestOptions, type SellingPlan, type SellingPlanAllocation, type SellingPlanGroup, type Session, type ShippingCountriesOptions, type ShippingCountriesResponse, type ShippingCountry, type ShippingLine, type ShippingProvince, type ShopifyStorefrontOptions, type ShopifyUpdatePaymentInfoOptions, type SkipChargeParams, type SkipFutureChargeAddressRequest, type SkipFutureChargeAddressResponse, type SortBy, type SortField, type SortKeys, type StepSettings, type StepSettingsCommon, type StepSettingsTypes, type StoreSettings, type StorefrontEnvironment, type StorefrontOptions, type StorefrontPurchaseOption, type SubType, type Subscription, type SubscriptionBase, type SubscriptionCancelled, type SubscriptionIncludes, type SubscriptionListParams, type SubscriptionOption, type SubscriptionOptionalCreateProps, type SubscriptionPreferences, type SubscriptionRequiredCreateProps, type SubscriptionSortBy, type SubscriptionStatus, type Subscription_2021_01, type SubscriptionsResponse, type TaxLine, type Tier, type TieredDiscount, type TieredDiscountStatus, type Translations, type UpdateAddressParams, type UpdateAddressRequest, type UpdateBundlePurchaseItem, type UpdateBundleSelectionRequest, type UpdateCustomerRequest, type UpdateMetafieldRequest, type UpdateOnetimeRequest, type UpdatePaymentMethodRequest, type UpdateSubscriptionChargeDateParams, type UpdateSubscriptionParams, type UpdateSubscriptionRequest, type UpdateSubscriptionsParams, type UpdateSubscriptionsRequest, type Variant, type VariantSelector, type VariantSelectorStepSetting, type WidgetIconColor, type WidgetTemplateType, type WidgetVisibility, activateMembership, activateSubscription, api, applyDiscountToAddress, applyDiscountToCharge, cancelMembership, cancelSubscription, changeMembership, claimOfferCustomerSurvey, createAddress, createBundleSelection, createMetafield, createOnetime, createPaymentMethod, createSubscription, createSubscriptions, delayOrder, deleteAddress, deleteBundleSelection, deleteMetafield, deleteOnetime, deleteSubscriptions, getActiveChurnLandingPageURL, getAddress, getBundleId, getBundleSelection, getBundleSelectionId, getCDNBundleSettings, getCDNProduct, getCDNProductAndSettings, getCDNProducts, getCDNProductsAndSettings, getCDNStoreSettings, getCDNWidgetSettings, getCharge, getCollection, getCreditSummary, getCustomer, getCustomerPortalAccess, getCustomerSurveyOffers, getCustomerSurveyReasons, getDeliverySchedule, getDynamicBundleItems, getFailedPaymentMethodRecoveryLandingPageURL, getGiftPurchase, getGiftRedemptionLandingPageURL, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getShippingCountries, getStoreSettings, getSubscription, initFrictionlessPaymentV1, initRecharge, type intervalUnit, listAddresses, listBundleSelections, listCharges, listCollectionProducts, listCollections, listCreditAccounts, listGiftPurchases, listMembershipPrograms, listMemberships, listOnetimes, listOrders, listPaymentMethods, listPlans, listSubscriptions, loadBundleData, loginCustomerPortal, loginShopifyApi, loginShopifyAppProxy, loginWithShopifyCustomerAccount, loginWithShopifyStorefront, type membershipIncludes, mergeAddresses, processCharge, productSearch, removeDiscountsFromAddress, removeDiscountsFromCharge, rescheduleCharge, resetCDNCache, sendCustomerNotification, sendPasswordlessCode, sendPasswordlessCodeAppProxy, setApplyCreditsToNextCharge, skipCharge, skipFutureCharge, skipGiftSubscriptionCharge, skipSubscriptionCharge, unskipCharge, updateAddress, updateBundle, updateBundleSelection, updateCustomer, updateMetafield, updateOnetime, updatePaymentMethod, updateSubscription, updateSubscriptionAddress, updateSubscriptionChargeDate, updateSubscriptions, validateBundle, validateBundleSelection, validateDynamicBundle, validatePasswordlessCode, validatePasswordlessCodeAppProxy };
4172
+ export { type ActivateMembershipRequest, type AddToCartCallbackSettings, type Addon, type AddonProduct, type AddonSettings, type AddonType, type AddonsSection, type Address, type AddressIncludes, type AddressListParams, type AddressListResponse, type AddressResponse, type AddressSortBy, type AnalyticsData, type Announcement, type ApplyCreditOptions, type AssociatedAddress, type BaseCardDetails, type BaseProduct, type BaseProductVariant, type BaseVariant, type BasicSubscriptionParams, type BooleanLike, type BooleanNumbers, type BooleanString, type BooleanStringNumbers, type BulkSubscriptionParams, type BundleAppProxy, type BundleData, type BundleDataBaseProduct, type BundleDataCollection, type BundleDataSellingPlan, type BundleDataSellingPlanGroup, type BundleDataVariant, type BundleFilterGroup, type BundlePriceRule, type BundleProduct, type BundleProductLayoutSettings, type BundlePurchaseItem, type BundlePurchaseItemParams, type BundleSelection, type BundleSelectionAppProxy, type BundleSelectionItem, type BundleSelectionItemRequiredCreateProps, type BundleSelectionListParams, type BundleSelectionsResponse, type BundleSelectionsSortBy, type BundleSettings, type BundleTemplateSettings, type BundleTemplateType, type BundleTranslations, type BundleVariant, type BundleVariantOptionSource, type BundleVariantRange, type BundleVariantSelectionDefault, type CDNBaseWidgetSettings, type CDNBundleSettings, type CDNBundleVariant, type CDNBundleVariantOptionSource, type CDNPlan, type CDNProduct, type CDNProductAndSettings, type CDNProductKeyObject, type CDNProductQuery_2020_12, type CDNProductQuery_2022_06, type CDNProductRaw, type CDNProductResource, type CDNProductResponseType, type CDNProductType, type CDNProductVariant_2022_06, type CDNProduct_2022_06, type CDNProductsAndSettings, type CDNProductsAndSettingsResource, type CDNStoreSettings, type CDNSubscriptionOption, type CDNVariant, type CDNVersion, type CDNWidgetSettings, type CDNWidgetSettingsRaw, type CDNWidgetSettingsResource, type CRUDRequestOptions, type CancelMembershipRequest, type CancelSubscriptionRequest, type CardDetailsFirstNameLastName, type CardDetailsFullName, type ChangeMembershipRequest, type ChannelSettings, type Charge, type ChargeIncludes, type ChargeListParams, type ChargeListResponse, type ChargeResponse, type ChargeSortBy, type ChargeStatus, type Collection, type CollectionBinding, type CollectionListParams, type CollectionTypes, type CollectionsResponse, type CollectionsSortBy, type ColorString, type CreateAddressRequest, type CreateBundleSelectionRequest, type CreateMetafieldRequest, type CreateOnetimeRequest, type CreatePaymentMethodRequest, type CreateRecipientAddress, type CreateSubscriptionRequest, type CreateSubscriptionsParams, type CreateSubscriptionsRequest, type CreditAccount, type CreditAccountIncludes, type CreditAccountListParams, type CreditAccountType, type CreditAccountsResponse, type CreditAccountsSortBy, type CreditSummaryIncludes, type CrossSellsSection, type CrossSellsSettings, type CurrencyPriceSet, type Customer, type CustomerCreditSummary, type CustomerDeliveryScheduleParams, type CustomerDeliveryScheduleResponse, type CustomerIncludeGiftPurchase, type CustomerIncludes, type CustomerNotification, type CustomerNotificationOptions, type CustomerNotificationTemplate, type CustomerNotificationType, type CustomerPortalAccessOptions, type CustomerPortalAccessResponse, type CustomerPortalSettings, type CustomerSurveyOfferParams, type CustomerSurveyOfferResponse, type CustomerSurveyOffersResponse, type CustomerSurveyReason, type CustomerSurveyReasonsResponse, type DefaultProduct, type DefaultSelection, type DefaultVariant, type DelayOption, type DeleteSubscriptionsParams, type DeleteSubscriptionsRequest, type Delivery, type DeliveryLineItem, type DeliveryOrder, type DeliveryPaymentMethod, type Discount, type DiscountApplicationMethod, type DiscountType, type DynamicBundleItemAppProxy, type DynamicBundlePropertiesAppProxy, type EligibleChargeType, type EligibleLineItemType, type ExternalAttributeSchema, type ExternalId, type ExternalProductStatus, type ExternalTransactionId, type FilterInputType, type FilterMatchMode, type FilterSource, type FirstOption, type GetAddressOptions, type GetChargeOptions, type GetCreditSummaryOptions, type GetCustomerOptions, type GetMembershipProgramOptions, type GetPaymentMethodOptions, type GetRequestOptions, type GetSubscriptionOptions, type GiftPurchase, type GiftPurchasesParams, type GiftPurchasesResponse, type HTMLString, type Incentives, type InitOptions, type InternalSession, type IntervalUnit, type InventoryPolicy, type IsoDateString, type LineItem, type ListParams, type LoginResponse, type Membership, type MembershipBenefit, type MembershipIncludes, type MembershipListParams, type MembershipListResponse, type MembershipProgram, type MembershipProgramIncludes, type MembershipProgramListParams, type MembershipProgramListResponse, type MembershipProgramResponse, type MembershipProgramSortBy, type MembershipProgramStatus, type MembershipResponse, type MembershipStatus, type MembershipsSortBy, type MergeAddressesRequest, type Metafield, type MetafieldOptionalCreateProps, type MetafieldOwnerResource, type MetafieldRequiredCreateProps, type Method, type Modifier, type MultiStepSettings, type OfferAttributes, type OnePageSettings, type Onetime, type OnetimeIncludes, type OnetimeListParams, type OnetimeOptionalCreateProps, type OnetimeRequiredCreateProps, type OnetimeSubscription, type OnetimesResponse, type OnetimesSortBy, type OnlineStoreOptions, type Options, type Order, type OrderIncludes, type OrderListParams, type OrderSortBy, type OrderStatus, type OrderType, type OrdersResponse, type PasswordlessCodeResponse, type PasswordlessOptions, type PasswordlessValidateResponse, type PaymentDetails, type PaymentErrorCallback, type PaymentFieldEventCallback, type PaymentFormConfig, type PaymentFormController, type PaymentFormEventHandlers, type PaymentMethod, type PaymentMethodFormOptions, type PaymentMethodIncludes, type PaymentMethodListParams, type PaymentMethodOptionalCreateProps, type PaymentMethodRequiredCreateProps, type PaymentMethodSortBy, type PaymentMethodStatus, type PaymentMethodTokenCallback, type PaymentMethodsResponse, type PaymentType, type Plan, type PlanListParams, type PlanSortBy, type PlanType, type PlansResponse, type PriceRange, type PriceRule, type PriceSet, type ProcessorName, type Product, type ProductImage, type ProductInclude, type ProductListResponse, type ProductOption, type ProductSearchParams_2020_12, type ProductSearchParams_2022_06, type ProductSearchResponse_2020_12, type ProductSearchResponse_2022_06, type ProductSearchType, type ProductSource, type ProductValueOption, type ProductVariant_2020_12, type ProductVariant_2022_06, type Product_2020_12, type Product_2022_06, type Property, type PublicBundleData, type PublishStatus, type PunchCardProgress, type PunchCardProgressData, type QuantityRange, type RecurringSubscription, type ReferralInfo, type ReferralUrl, type Request, type RequestHeaders, type RequestOptions, type SellingPlan, type SellingPlanAllocation, type SellingPlanGroup, type Session, type ShippingCountriesOptions, type ShippingCountriesResponse, type ShippingCountry, type ShippingLine, type ShippingProvince, type ShopifyStorefrontOptions, type ShopifyUpdatePaymentInfoOptions, type SkipChargeParams, type SkipFutureChargeAddressRequest, type SkipFutureChargeAddressResponse, type SortBy, type SortField, type SortKeys, type StepSettings, type StepSettingsCommon, type StepSettingsTypes, type StoreSettings, type StorefrontEnvironment, type StorefrontOptions, type StorefrontPurchaseOption, type SubType, type Subscription, type SubscriptionBase, type SubscriptionCancelled, type SubscriptionIncludes, type SubscriptionListParams, type SubscriptionOption, type SubscriptionOptionalCreateProps, type SubscriptionPreferences, type SubscriptionRequiredCreateProps, type SubscriptionSortBy, type SubscriptionStatus, type Subscription_2021_01, type SubscriptionsResponse, type TaxLine, type Tier, type TieredDiscount, type TieredDiscountStatus, type TieredDiscountsParams, type TieredDiscountsResponse, type Translations, type UpdateAddressParams, type UpdateAddressRequest, type UpdateBundlePurchaseItem, type UpdateBundleSelectionRequest, type UpdateCustomerRequest, type UpdateMetafieldRequest, type UpdateOnetimeRequest, type UpdatePaymentMethodRequest, type UpdateSubscriptionChargeDateParams, type UpdateSubscriptionParams, type UpdateSubscriptionRequest, type UpdateSubscriptionsParams, type UpdateSubscriptionsRequest, type Variant, type VariantSelector, type VariantSelectorStepSetting, type WidgetIconColor, type WidgetTemplateType, type WidgetVisibility, activateMembership, activateSubscription, api, applyDiscountToAddress, applyDiscountToCharge, cancelMembership, cancelSubscription, changeMembership, claimOfferCustomerSurvey, createAddress, createBundleSelection, createMetafield, createOnetime, createPaymentMethod, createSubscription, createSubscriptions, delayOrder, deleteAddress, deleteBundleSelection, deleteMetafield, deleteOnetime, deleteSubscriptions, getActiveChurnLandingPageURL, getAddress, getBundleId, getBundleSelection, getBundleSelectionId, getCDNBundleSettings, getCDNProduct, getCDNProductAndSettings, getCDNProducts, getCDNProductsAndSettings, getCDNStoreSettings, getCDNWidgetSettings, getCharge, getCollection, getCreditSummary, getCustomer, getCustomerPortalAccess, getCustomerSurveyOffers, getCustomerSurveyReasons, getDeliverySchedule, getDynamicBundleItems, getFailedPaymentMethodRecoveryLandingPageURL, getGiftPurchase, getGiftRedemptionLandingPageURL, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getShippingCountries, getStoreSettings, getSubscription, getTieredDiscount, initFrictionlessPaymentV1, initRecharge, type intervalUnit, listAddresses, listBundleSelections, listCharges, listCollectionProducts, listCollections, listCreditAccounts, listGiftPurchases, listMembershipPrograms, listMemberships, listOnetimes, listOrders, listPaymentMethods, listPlans, listSubscriptions, listTieredDiscounts, loadBundleData, loginCustomerPortal, loginShopifyApi, loginShopifyAppProxy, loginWithShopifyCustomerAccount, loginWithShopifyStorefront, type membershipIncludes, mergeAddresses, processCharge, productSearch, removeDiscountsFromAddress, removeDiscountsFromCharge, rescheduleCharge, resetCDNCache, sendCustomerNotification, sendPasswordlessCode, sendPasswordlessCodeAppProxy, setApplyCreditsToNextCharge, skipCharge, skipFutureCharge, skipGiftSubscriptionCharge, skipSubscriptionCharge, unskipCharge, updateAddress, updateBundle, updateBundleSelection, updateCustomer, updateMetafield, updateOnetime, updatePaymentMethod, updateSubscription, updateSubscriptionAddress, updateSubscriptionChargeDate, updateSubscriptions, validateBundle, validateBundleSelection, validateDynamicBundle, validatePasswordlessCode, validatePasswordlessCodeAppProxy };