@rechargeapps/storefront-client 1.58.0 → 1.60.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
@@ -97,6 +97,14 @@ type ColorString = string;
97
97
  type HTMLString = string;
98
98
  /** ISO 8601 date time, YYYY-MM-DDTHH:MM:SS+00:00 */
99
99
  type IsoDateString = string;
100
+ /**
101
+ * The inventory policy of the item.
102
+ * - bypass: Bypass inventory checks
103
+ * - decrement_obeying_policy: Decrement inventory, obeying product policy
104
+ * - decrement_ignoring_policy: Decrement inventory, ignoring product policy
105
+ * - null: not set
106
+ */
107
+ type InventoryPolicy = 'bypass' | 'decrement_obeying_policy' | 'decrement_ignoring_policy' | null;
100
108
  interface Property {
101
109
  name: string;
102
110
  value: string;
@@ -155,14 +163,18 @@ interface LineItem {
155
163
  external_product_id: ExternalId;
156
164
  /** An object containing the associated variant ID as it appears in the external system. */
157
165
  external_variant_id: ExternalId;
166
+ /** The inventory policy of the item. */
167
+ external_inventory_policy: InventoryPolicy;
158
168
  /** The weight of the item in grams. */
159
- grams: number;
169
+ grams: number | null;
160
170
  /** A unique, human-friendly string for the Product. */
161
171
  handle: string | null;
162
172
  /** An object containing URLs of the Product image. */
163
173
  images: ProductImage;
164
174
  /** An object containing information on the related offer, if applicable */
165
175
  offer_attributes?: OfferAttributes | null;
176
+ /** The original price of the item. */
177
+ original_price: string;
166
178
  /** An array of name value pairs of additional line_item attributes. */
167
179
  properties: Property[];
168
180
  /** An indicator of the type of the purchase item. */
@@ -745,7 +757,7 @@ interface BundleData {
745
757
  price_rule: BundleProduct['price_rule'];
746
758
  customization_window: BundleProduct['customization_window'];
747
759
  customization_window_disabled_message: BundleProduct['customization_window_disabled_message'];
748
- layout_settings: Pick<BundleProduct['layout_settings'], 'addons' | 'crossSells' | 'defaultFrequency' | 'collapsibleSections' | 'showVariants' | 'learnMoreModal'>;
760
+ layout_settings: Pick<BundleProduct['layout_settings'], 'addons' | 'crossSells' | 'defaultFrequency' | 'collapsibleSections' | 'showVariants' | 'learnMoreModal' | 'addToCartCallback'>;
749
761
  variants: {
750
762
  ranges: BundleProduct['variants'][number]['ranges'];
751
763
  enabled: BundleProduct['variants'][number]['enabled'];
@@ -1234,13 +1246,17 @@ interface Order {
1234
1246
  id: number;
1235
1247
  /** An object containing external transaction ids associated with this charge, as they appear in external platforms. */
1236
1248
  external_transaction_id: ExternalTransactionId;
1249
+ /** The name of the payment processor used for this charge. */
1250
+ payment_processor_name: string;
1251
+ /** The status of the charge. */
1252
+ status: ChargeStatus;
1237
1253
  };
1238
1254
  /** Details of the access method used by the purchase. */
1239
1255
  client_details: {
1240
1256
  /** The IP address of the buyer as detected in Checkout. */
1241
1257
  browser_ip: string;
1242
1258
  /** The user agent detected during Checkout. */
1243
- user_agent: string;
1259
+ user_agent: string | null;
1244
1260
  };
1245
1261
  /** The date when the order was created. */
1246
1262
  created_at: IsoDateString;
@@ -1260,7 +1276,7 @@ interface Order {
1260
1276
  /** An array of Discounts associated with the Order. */
1261
1277
  discounts: Discount[];
1262
1278
  /** The cart token as it appears in an external system. */
1263
- external_cart_token: string;
1279
+ external_cart_token: string | null;
1264
1280
  /** An object containing external order ids. */
1265
1281
  external_order_id?: ExternalId;
1266
1282
  /** An object containing the external order numbers. */
@@ -1270,7 +1286,7 @@ interface Order {
1270
1286
  /** A list of line_item objects. */
1271
1287
  line_items: LineItem[];
1272
1288
  /** Notes associated with the Order. */
1273
- note: string;
1289
+ note: string | null;
1274
1290
  /** An array of name value pairs of note attributes on the Order. */
1275
1291
  order_attributes: Property[];
1276
1292
  /** The date time that the associated charge was processed at. */
@@ -1795,6 +1811,10 @@ interface BundleSettings {
1795
1811
  show_product_variants: boolean;
1796
1812
  product_details_modal_enabled: boolean;
1797
1813
  show_variants_as_individual_products: boolean;
1814
+ post_add_to_cart_behavior: {
1815
+ type: 'cart_page' | 'callback' | 'redirect';
1816
+ value: string;
1817
+ };
1798
1818
  }
1799
1819
  /**
1800
1820
  * A specific variant of a bundle product
@@ -2354,6 +2374,8 @@ interface ProductSearchParams_2022_06 extends ListParams<SortBy> {
2354
2374
  plan_types?: PlanType[];
2355
2375
  /** Exclude given plan types */
2356
2376
  plan_types_exclusive?: PlanType[];
2377
+ /** Exclude given plan types */
2378
+ plan_types_not?: PlanType[];
2357
2379
  /** Perform search on published status */
2358
2380
  product_published_status?: PublishStatus;
2359
2381
  /** Perform substring match on the product title */
@@ -3178,14 +3200,27 @@ interface StoreSettings {
3178
3200
  has_shopify_connector: boolean;
3179
3201
  /** The store supports multiple currencies or not. */
3180
3202
  multicurrency_enabled: boolean;
3203
+ /** The shop url. */
3204
+ shop_url: string;
3181
3205
  };
3182
3206
  }
3183
3207
  interface CustomerPortalSettings {
3184
- /**
3185
- * The Recharge collection IDs in case the products available for purchase are
3186
- * limited to specific Recharge collections.
3187
- * */
3188
- collection_ids: number[];
3208
+ /** Whether Affinity bundle contents are expanded by default or not. */
3209
+ affinity_bundle_contents_expanded_by_default: BooleanNumbers;
3210
+ /** Whether Affinity manage upcoming products is enabled or not. */
3211
+ affinity_manage_upcoming_products_enabled: BooleanNumbers;
3212
+ /** Whether Affinity plans are enabled or not. */
3213
+ affinity_plans: boolean;
3214
+ /** Whether Affinity polls for uncommitted charge changes or not. */
3215
+ affinity_poll_charge_uncommited_changes: boolean;
3216
+ /** The position of the Affinity sidebar. */
3217
+ affinity_sidebar_position: 'right' | 'left';
3218
+ /** Whether AI chat is enabled or not. */
3219
+ ai_chat_enabled: boolean;
3220
+ /** Whether AI chat preview is enabled or not. */
3221
+ ai_chat_preview_enabled: boolean;
3222
+ /** Whether to always send plan ID for updates or not. */
3223
+ always_send_plan_id_for_updates: boolean;
3189
3224
  /** The filter of products that are available to create new subscriptions. */
3190
3225
  available_products: 'all' | 'specific_recharge_collections' | 'specific_plan_types' | 'smart_select';
3191
3226
  /** Settings related to backup payment methods */
@@ -3193,24 +3228,74 @@ interface CustomerPortalSettings {
3193
3228
  backup_payment_methods_enabled: boolean;
3194
3229
  default_customer_opt_in_enabled: boolean;
3195
3230
  };
3231
+ /** Whether the store can use Affinity extensions or not. */
3232
+ can_use_affinity_extensions: boolean;
3196
3233
  /** Whether the store is using Plans and Products or not. */
3197
3234
  can_use_plans: boolean;
3235
+ /** The type of cancellation flow used by the store. */
3236
+ cancelation_type: 'Basic' | 'Strategy';
3237
+ /**
3238
+ * The Recharge collection IDs in case the products available for purchase are
3239
+ * limited to specific Recharge collections.
3240
+ * */
3241
+ collection_ids: number[];
3198
3242
  /** Whether the store is using collections with custom sorting or not. */
3199
3243
  collection_product_sorting_enabled: boolean;
3244
+ /** Custom code snippets for the customer portal. */
3245
+ custom_code: {
3246
+ /** Approved domains for Content Security Policy. */
3247
+ approved_domains_for_csp: string;
3248
+ /** Custom code for the backend portal. */
3249
+ backend_portal: string;
3250
+ /** Custom code for the credit cart update page. */
3251
+ credit_cart_update_page: string;
3252
+ /** Custom code for the footer section. */
3253
+ footer: string;
3254
+ /** Custom code for the header section. */
3255
+ header: string;
3256
+ /** URL for the custom header logo. */
3257
+ header_logo_url: string | null;
3258
+ };
3259
+ /** Whether customer payment fallback is enabled or not. */
3260
+ customer_payment_fallback_enabled: boolean;
3261
+ /** Whether referrals mobile banner is disabled or not. */
3262
+ disable_referrals_mobile_banner: boolean;
3200
3263
  /** Allow the customer to add discount codes to their subscription. */
3201
3264
  discount_input: boolean;
3202
3265
  /** Allow the customer to modify the shipping address for an existing subscription. */
3203
- edit_shipping_address: boolean;
3266
+ edit_shipping_address: BooleanNumbers;
3267
+ /** Whether Affinity uses Storefront API or not. */
3268
+ enable_affinity_use_storefront_api: boolean;
3204
3269
  /** Whether the store is using the customer portal extension or not. */
3205
3270
  enable_customer_account_full_page_extension: boolean;
3271
+ /** Whether enhanced slots are enabled or not. */
3272
+ enable_enhanced_slots: boolean;
3273
+ /** Whether market pricing is enabled or not. */
3274
+ enable_market_pricing: boolean;
3275
+ /** Whether membership programs are enabled or not. */
3276
+ enable_membership_programs: boolean;
3277
+ /** Whether paid memberships UI is enabled or not. */
3278
+ enable_paid_memberships_ui: boolean;
3279
+ /** Whether quantity upsell UI is enabled in Affinity or not. */
3280
+ enable_quantity_upsell_ui_affinity: boolean;
3206
3281
  /** Whether the store is using SCIm migrate payments. */
3207
3282
  enable_scim_migrate_payment_methods: boolean;
3208
- /** Whether the store is using Unity integrated bundles or not. */
3209
- enable_unity_bundles: boolean;
3210
3283
  /** Whether the store is using Shopify Markets or not. */
3211
3284
  enable_shopify_markets: boolean;
3285
+ /** Whether to always pass plan when swapping or not. */
3286
+ enable_swap_always_pass_plan: boolean;
3287
+ /** Whether the store is using Unity integrated bundles or not. */
3288
+ enable_unity_bundles: boolean;
3289
+ /** Whether failed payment recovery is enabled or not. */
3290
+ failed_payment_recovery_enabled: boolean;
3291
+ /** Whether flows allow hidden products to be shown or not. */
3292
+ flows_allow_hidden_products_to_be_shown: boolean;
3212
3293
  /** Whether flows are enabled or not. */
3213
3294
  flows_enabled: boolean;
3295
+ /** Whether customer portal accounts are forced or not. */
3296
+ force_customer_portal_accounts: BooleanNumbers;
3297
+ /** Whether Affinity shows errors on the payments page or not. */
3298
+ fpr_affinity_show_errors_payments_page: boolean;
3214
3299
  /** Whether customers can skip gift shipment or not. */
3215
3300
  gift_skipped_shipment_enabled: boolean;
3216
3301
  /** Settings related to gifting. */
@@ -3230,8 +3315,32 @@ interface CustomerPortalSettings {
3230
3315
  };
3231
3316
  /** Whether gifting is enabled or not. */
3232
3317
  gifting_enabled: boolean;
3318
+ /** Whether the store uses a hosted customer portal or not. */
3319
+ hosted_customer_portal: BooleanNumbers;
3233
3320
  /** How does the store handles inventory policy **/
3234
3321
  inventory_behaviour: 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
3322
+ /** Settings related to membership programs. */
3323
+ membership: {
3324
+ /** Number of orders before allowing membership cancellation. */
3325
+ allow_membership_cancellation_after: number;
3326
+ /** Whether membership cancellation is allowed in the customer portal. */
3327
+ allow_membership_cancellation_in_customer_portal: BooleanNumbers;
3328
+ /** Whether membership cancellation reason is optional or not. */
3329
+ membership_cancellation_reason_optional: BooleanNumbers;
3330
+ };
3331
+ /** Settings related to one-time purchases. */
3332
+ onetime: {
3333
+ /** The filter of products that are available for one-time purchases. */
3334
+ available_products: 'shopify_products' | 'recharge_products' | 'shopify_collection' | 'recharge_collection';
3335
+ /** Whether one-time purchases are enabled or not. */
3336
+ enabled: BooleanNumbers;
3337
+ /** The Shopify collection ID for one-time products. */
3338
+ shopify_collection_id: number | null;
3339
+ /** Whether subscribe and save discount is enabled or not. */
3340
+ subscribe_and_save_discount_enabled: boolean;
3341
+ /** Whether the customer can purchase a zero inventory product or not. */
3342
+ zero_inventory_purchase: BooleanNumbers;
3343
+ };
3235
3344
  /** Whether the customer can create a new address or use their default. */
3236
3345
  prevent_address_creation: boolean;
3237
3346
  /** Whether the customer can create a new payment method or use their default. */
@@ -3247,6 +3356,8 @@ interface CustomerPortalSettings {
3247
3356
  };
3248
3357
  /** Whether to show credits or not. */
3249
3358
  show_credits: boolean;
3359
+ /** Whether recurring order blocking is enabled or not. */
3360
+ recurring_order_blocking: boolean;
3250
3361
  /** Subscription related settings */
3251
3362
  subscription: {
3252
3363
  /** Whether the customer can create new subscriptions or not. */
@@ -3275,6 +3386,10 @@ interface CustomerPortalSettings {
3275
3386
  edit_order_frequency: string;
3276
3387
  /** Whether the customer can change the scheduled date for a charge or not. */
3277
3388
  edit_scheduled_date: boolean;
3389
+ /** Whether Affinity dynamic bundle frequency filter is enabled or not. */
3390
+ enable_affinity_dynamic_bundle_frequency_filter: boolean;
3391
+ /** Whether the customer can see the prepaid upsell on the customer portal or not. */
3392
+ prepaid_upsell_on_customer_portal: boolean;
3278
3393
  /** Whether the customer can reactivate a cancelled subscription. */
3279
3394
  reactivate_subscription: boolean;
3280
3395
  /** Whether the customer can skip a prepaid order or not. */
@@ -3283,13 +3398,13 @@ interface CustomerPortalSettings {
3283
3398
  skip_scheduled_order: boolean;
3284
3399
  /** Whether the customer can purchase a zero inventory product or not. */
3285
3400
  zero_inventory_purchase: boolean;
3286
- /** Whether the customer can see the prepaid upsell on the customer portal or not. */
3287
- prepaid_upsell_on_customer_portal: boolean;
3288
3401
  };
3289
3402
  /** Uses the inventory level from Recharge as source of truth */
3290
3403
  use_recharge_inventory_levels: boolean;
3291
3404
  /** Use Spreedly instead of Shopify Payments when creating a new payment method. */
3292
3405
  use_spreedly_form_for_sci_payment_methods: boolean;
3406
+ /** The customer can see memberships */
3407
+ view_memberships: BooleanNumbers;
3293
3408
  /** The customer can see the order schedule */
3294
3409
  view_order_schedule: boolean;
3295
3410
  /** The customer can see the payment methods */
@@ -3300,6 +3415,8 @@ interface CustomerPortalSettings {
3300
3415
  wfs_active_churn: boolean;
3301
3416
  /** Should redirect to ACR landing page */
3302
3417
  wfs_active_churn_landing_page_redirect: boolean;
3418
+ /** Whether to show scheduled date in customer portal or not. */
3419
+ wfs_cp_show_sd: boolean;
3303
3420
  /** Uses Flows Experiences */
3304
3421
  wfs_experiences_landing_page: boolean;
3305
3422
  /** Uses Flows */
@@ -3586,4 +3703,4 @@ declare const api: {
3586
3703
  };
3587
3704
  declare function initRecharge(opt?: InitOptions): void;
3588
3705
 
3589
- export { type ActivateMembershipRequest, type AddToCartCallbackSettings, type AddonProduct, type AddonSettings, type AddonsSection, type Address, type AddressIncludes, type AddressListParams, type AddressListResponse, type AddressResponse, type AddressSortBy, type AnalyticsData, type Announcement, type ApplyCreditOptions, type AssociatedAddress, 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 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 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 CustomerIncludes, type CustomerNotification, type CustomerNotificationOptions, type CustomerNotificationTemplate, type CustomerNotificationType, type CustomerPortalAccessOptions, type CustomerPortalAccessResponse, type CustomerPortalSettings, type DefaultProduct, type DefaultSelection, type DefaultVariant, type DeleteSubscriptionsParams, type DeleteSubscriptionsRequest, type Delivery, type DeliveryLineItem, type DeliveryOrder, type DeliveryPaymentMethod, type Discount, type DiscountType, type DynamicBundleItemAppProxy, type DynamicBundlePropertiesAppProxy, type EligibleChargeType, type EligibleLineItemType, type ExternalAttributeSchema, type ExternalId, type ExternalProductStatus, type ExternalTransactionId, 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 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 PaymentMethod, type PaymentMethodIncludes, type PaymentMethodListParams, type PaymentMethodOptionalCreateProps, type PaymentMethodRequiredCreateProps, type PaymentMethodSortBy, type PaymentMethodStatus, 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 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, 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, getDeliverySchedule, getDynamicBundleItems, getFailedPaymentMethodRecoveryLandingPageURL, getGiftPurchase, getGiftRedemptionLandingPageURL, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getShippingCountries, getStoreSettings, getSubscription, 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, 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 };
3706
+ export { type ActivateMembershipRequest, type AddToCartCallbackSettings, type AddonProduct, type AddonSettings, type AddonsSection, type Address, type AddressIncludes, type AddressListParams, type AddressListResponse, type AddressResponse, type AddressSortBy, type AnalyticsData, type Announcement, type ApplyCreditOptions, type AssociatedAddress, 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 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 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 CustomerIncludes, type CustomerNotification, type CustomerNotificationOptions, type CustomerNotificationTemplate, type CustomerNotificationType, type CustomerPortalAccessOptions, type CustomerPortalAccessResponse, type CustomerPortalSettings, type DefaultProduct, type DefaultSelection, type DefaultVariant, type DeleteSubscriptionsParams, type DeleteSubscriptionsRequest, type Delivery, type DeliveryLineItem, type DeliveryOrder, type DeliveryPaymentMethod, type Discount, type DiscountType, type DynamicBundleItemAppProxy, type DynamicBundlePropertiesAppProxy, type EligibleChargeType, type EligibleLineItemType, type ExternalAttributeSchema, type ExternalId, type ExternalProductStatus, type ExternalTransactionId, 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 PaymentMethod, type PaymentMethodIncludes, type PaymentMethodListParams, type PaymentMethodOptionalCreateProps, type PaymentMethodRequiredCreateProps, type PaymentMethodSortBy, type PaymentMethodStatus, 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 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, 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, getDeliverySchedule, getDynamicBundleItems, getFailedPaymentMethodRecoveryLandingPageURL, getGiftPurchase, getGiftRedemptionLandingPageURL, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getShippingCountries, getStoreSettings, getSubscription, 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, 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 };