@rechargeapps/storefront-client 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api/address.js +50 -9
- package/dist/cjs/api/address.js.map +1 -1
- package/dist/cjs/api/auth.js +34 -6
- package/dist/cjs/api/auth.js.map +1 -1
- package/dist/cjs/api/bundle.js +44 -20
- package/dist/cjs/api/bundle.js.map +1 -1
- package/dist/cjs/api/cdn.js +18 -6
- package/dist/cjs/api/cdn.js.map +1 -1
- package/dist/cjs/api/charge.js +34 -14
- package/dist/cjs/api/charge.js.map +1 -1
- package/dist/cjs/api/customer.js +21 -6
- package/dist/cjs/api/customer.js.map +1 -1
- package/dist/cjs/api/membership.js +24 -9
- package/dist/cjs/api/membership.js.map +1 -1
- package/dist/cjs/api/membershipProgram.js +6 -1
- package/dist/cjs/api/membershipProgram.js.map +1 -1
- package/dist/cjs/api/metafield.js +25 -10
- package/dist/cjs/api/metafield.js.map +1 -1
- package/dist/cjs/api/onetime.js +33 -13
- package/dist/cjs/api/onetime.js.map +1 -1
- package/dist/cjs/api/order.js +8 -3
- package/dist/cjs/api/order.js.map +1 -1
- package/dist/cjs/api/paymentMethod.js +18 -8
- package/dist/cjs/api/paymentMethod.js.map +1 -1
- package/dist/cjs/api/plan.js +8 -3
- package/dist/cjs/api/plan.js.map +1 -1
- package/dist/cjs/api/subscription.js +93 -43
- package/dist/cjs/api/subscription.js.map +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/utils/bundle.js +43 -41
- package/dist/cjs/utils/bundle.js.map +1 -1
- package/dist/cjs/utils/init.js +3 -1
- package/dist/cjs/utils/init.js.map +1 -1
- package/dist/esm/api/address.js +50 -9
- package/dist/esm/api/address.js.map +1 -1
- package/dist/esm/api/auth.js +34 -7
- package/dist/esm/api/auth.js.map +1 -1
- package/dist/esm/api/bundle.js +44 -20
- package/dist/esm/api/bundle.js.map +1 -1
- package/dist/esm/api/cdn.js +18 -6
- package/dist/esm/api/cdn.js.map +1 -1
- package/dist/esm/api/charge.js +34 -14
- package/dist/esm/api/charge.js.map +1 -1
- package/dist/esm/api/customer.js +21 -6
- package/dist/esm/api/customer.js.map +1 -1
- package/dist/esm/api/membership.js +24 -9
- package/dist/esm/api/membership.js.map +1 -1
- package/dist/esm/api/membershipProgram.js +6 -1
- package/dist/esm/api/membershipProgram.js.map +1 -1
- package/dist/esm/api/metafield.js +25 -10
- package/dist/esm/api/metafield.js.map +1 -1
- package/dist/esm/api/onetime.js +33 -13
- package/dist/esm/api/onetime.js.map +1 -1
- package/dist/esm/api/order.js +8 -3
- package/dist/esm/api/order.js.map +1 -1
- package/dist/esm/api/paymentMethod.js +18 -8
- package/dist/esm/api/paymentMethod.js.map +1 -1
- package/dist/esm/api/plan.js +8 -3
- package/dist/esm/api/plan.js.map +1 -1
- package/dist/esm/api/subscription.js +93 -43
- package/dist/esm/api/subscription.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/utils/bundle.js +43 -41
- package/dist/esm/utils/bundle.js.map +1 -1
- package/dist/esm/utils/init.js +3 -1
- package/dist/esm/utils/init.js.map +1 -1
- package/dist/index.d.ts +44 -32
- package/dist/umd/recharge-client.min.js +9 -9
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ interface ListParams<T> {
|
|
|
12
12
|
/** default is 50, max is 250 */
|
|
13
13
|
limit?: number;
|
|
14
14
|
/** next or previous cursor returned by previous list call */
|
|
15
|
-
cursor?:
|
|
15
|
+
cursor?: string;
|
|
16
16
|
/** sort list by option */
|
|
17
17
|
sort_by?: T;
|
|
18
18
|
}
|
|
@@ -237,7 +237,7 @@ interface PaymentMethodListParams extends ListParams<PaymentMethodSortBy> {
|
|
|
237
237
|
/** Return the payment_methods linked to the given processor_name. */
|
|
238
238
|
processor_name?: ProcessorName;
|
|
239
239
|
/** Return the payment_methods linked to the given address_id. */
|
|
240
|
-
address_id?: string;
|
|
240
|
+
address_id?: string | number;
|
|
241
241
|
/** Return the payment_methods linked to the given processor_payment_method_token. */
|
|
242
242
|
processor_payment_method_token?: string;
|
|
243
243
|
/** Include related data options */
|
|
@@ -345,9 +345,9 @@ interface GetSubscriptionOptions {
|
|
|
345
345
|
type SubscriptionSortBy = 'id-asc' | 'id-desc' | 'created_at-asc' | 'created_at-desc' | 'updated_at-asc' | 'updated_at-desc';
|
|
346
346
|
interface SubscriptionListParams extends ListParams<SubscriptionSortBy> {
|
|
347
347
|
/** Return the subscriptions linked to the given address_id. */
|
|
348
|
-
address_id?: string;
|
|
348
|
+
address_id?: string | number;
|
|
349
349
|
/** Return the subscriptions linked to the given address_ids. */
|
|
350
|
-
address_ids?: string[];
|
|
350
|
+
address_ids?: (string | number)[];
|
|
351
351
|
/** Return the subscriptions created before the given date. */
|
|
352
352
|
created_at_max?: IsoDateString;
|
|
353
353
|
/** Return the subscriptions created after the given date. */
|
|
@@ -355,7 +355,7 @@ interface SubscriptionListParams extends ListParams<SubscriptionSortBy> {
|
|
|
355
355
|
/** Return the subscriptions linked to the given external_variant_id */
|
|
356
356
|
external_variant_id?: string;
|
|
357
357
|
/** Comma-separated list of subscription_ids to filter */
|
|
358
|
-
ids?: string[];
|
|
358
|
+
ids?: (string | number)[];
|
|
359
359
|
/** Return the subscriptions with specified status. */
|
|
360
360
|
status?: SubscriptionStatus;
|
|
361
361
|
/** Return the subscriptions updated before the given date. */
|
|
@@ -658,29 +658,29 @@ interface OrdersResponse {
|
|
|
658
658
|
type OrderSortBy = 'id-asc' | 'id-desc' | 'updated_at-asc' | 'updated_at-desc' | 'processed_at-asc' | 'processed_at-desc' | 'scheduled_at-asc' | 'scheduled_at-desc';
|
|
659
659
|
interface OrderListParams extends ListParams<OrderSortBy> {
|
|
660
660
|
/** Filter orders by address. */
|
|
661
|
-
address_id?: string;
|
|
661
|
+
address_id?: string | number;
|
|
662
662
|
/** Filter orders by charge. */
|
|
663
|
-
charge_id?: string;
|
|
663
|
+
charge_id?: string | number;
|
|
664
664
|
/** Show orders created after the given date. */
|
|
665
665
|
created_at_min?: IsoDateString;
|
|
666
666
|
/** Show orders created before the given date. */
|
|
667
667
|
created_at_max?: IsoDateString;
|
|
668
668
|
/** Filter orders by external_order_id. */
|
|
669
|
-
external_order_id?: string;
|
|
669
|
+
external_order_id?: string | number;
|
|
670
670
|
/** Filter orders by id. */
|
|
671
|
-
ids?: string[];
|
|
671
|
+
ids?: (string | number)[];
|
|
672
672
|
/** Show orders scheduled before the given date. */
|
|
673
673
|
scheduled_at_max?: IsoDateString;
|
|
674
674
|
/** Show orders scheduled after the given date. */
|
|
675
675
|
scheduled_at_min?: IsoDateString;
|
|
676
676
|
/** Filter orders with/without external_order_id. */
|
|
677
|
-
has_external_order?:
|
|
677
|
+
has_external_order?: boolean;
|
|
678
678
|
/** Filter orders by status. */
|
|
679
679
|
status?: OrderStatus;
|
|
680
680
|
/** Filter orders by type. */
|
|
681
681
|
type?: OrderType;
|
|
682
682
|
/** Filter orders by subscription or onetime. */
|
|
683
|
-
purchase_item_id?: string;
|
|
683
|
+
purchase_item_id?: string | number;
|
|
684
684
|
/** Show orders updated before the given date. */
|
|
685
685
|
updated_at_max?: IsoDateString;
|
|
686
686
|
/** Show orders updated after the given date. */
|
|
@@ -727,6 +727,8 @@ interface Charge {
|
|
|
727
727
|
external_order_id: ExternalId;
|
|
728
728
|
/** An object containing the associated external transaction ID. */
|
|
729
729
|
external_transaction_id: ExternalTransactionId;
|
|
730
|
+
/** Specifies whether the Charge is scheduled for a regeneration (if the Subscription related to the charge was updated in the last 5 seconds using commit=false). */
|
|
731
|
+
has_uncommited_changes?: boolean;
|
|
730
732
|
/** A list of line_item objects, each containing information about a distinct purchase item. */
|
|
731
733
|
line_items: LineItem[];
|
|
732
734
|
/** Notes associated with the Charge. */
|
|
@@ -739,8 +741,6 @@ interface Charge {
|
|
|
739
741
|
payment_processor: string;
|
|
740
742
|
/** The date and time when the transaction was processed. */
|
|
741
743
|
processed_at: IsoDateString;
|
|
742
|
-
/** The date when the next attempt will be placed. */
|
|
743
|
-
retry_date: IsoDateString;
|
|
744
744
|
/** The date time of when the Charge is/was scheduled to process. */
|
|
745
745
|
scheduled_at: IsoDateString;
|
|
746
746
|
/** The shipping Address of the Charge. */
|
|
@@ -779,6 +779,16 @@ interface Charge {
|
|
|
779
779
|
metafields?: Metafield[];
|
|
780
780
|
payment_methods?: PaymentMethod[];
|
|
781
781
|
};
|
|
782
|
+
/** Error reason as sentence text (typically returned direct from the payment processor). e.g. "error": "Customer needs to update credit card" */
|
|
783
|
+
error?: string;
|
|
784
|
+
/** Structured reason why the charge failed such as CUSTOMER_NEEDS_TO_UPDATE_CARD. */
|
|
785
|
+
error_type?: string;
|
|
786
|
+
/** Shows how many times an attempt to charge was placed. */
|
|
787
|
+
charge_attempts?: number;
|
|
788
|
+
/** Indicates if Recharge was able to find the external_variant_id from the Charge. */
|
|
789
|
+
external_variant_id_not_found?: boolean;
|
|
790
|
+
/** The date when the next attempt will be placed. */
|
|
791
|
+
retry_date?: IsoDateString;
|
|
782
792
|
}
|
|
783
793
|
interface ChargeResponse {
|
|
784
794
|
charge: Charge;
|
|
@@ -795,22 +805,22 @@ interface GetChargeOptions {
|
|
|
795
805
|
type ChargeSortBy = 'id-asc' | 'id-desc' | 'updated_at-asc' | 'updated_at-desc' | 'scheduled_at-asc' | 'scheduled_at-desc';
|
|
796
806
|
interface ChargeListParams extends ListParams<ChargeSortBy> {
|
|
797
807
|
/** Filter Charges by Address. */
|
|
798
|
-
address_id?: string;
|
|
808
|
+
address_id?: string | number;
|
|
799
809
|
/** List Charges that contain the given discount_id. */
|
|
800
|
-
discount_id?: string;
|
|
810
|
+
discount_id?: string | number;
|
|
801
811
|
/** List Charges that contain the given discount_code. */
|
|
802
812
|
discount_code?: string;
|
|
803
813
|
/** Filter Charges by the associated order ID in the external e-commerce platform. */
|
|
804
|
-
external_order_id?: string;
|
|
814
|
+
external_order_id?: string | number;
|
|
805
815
|
/**
|
|
806
816
|
* Filter Charges by ID.
|
|
807
817
|
* If passing multiple values, must be comma separated. Non-integer values will result in a 422 error.
|
|
808
818
|
*/
|
|
809
|
-
ids?: string;
|
|
819
|
+
ids?: string | number;
|
|
810
820
|
/** Filter Charges by a Subscription or Onetime ID. */
|
|
811
|
-
purchase_item_id?: string;
|
|
821
|
+
purchase_item_id?: string | number;
|
|
812
822
|
/** Filter Charges by a comma-separated list of Subscription or Onetime IDs. */
|
|
813
|
-
purchase_item_ids?: string;
|
|
823
|
+
purchase_item_ids?: string | number;
|
|
814
824
|
/** Filter Charges by specific scheduled charge date. */
|
|
815
825
|
scheduled_at?: IsoDateString;
|
|
816
826
|
/** Show Charges scheduled to be processed before the given date. */
|
|
@@ -836,8 +846,8 @@ interface ChargeListParams extends ListParams<ChargeSortBy> {
|
|
|
836
846
|
}
|
|
837
847
|
|
|
838
848
|
interface CreateAddressRequest {
|
|
839
|
-
/** Unique numeric identifier for the customer associated with the address
|
|
840
|
-
customer_id
|
|
849
|
+
/** Unique numeric identifier for the customer associated with the address, if not provided will be auto-filled from Session */
|
|
850
|
+
customer_id?: number;
|
|
841
851
|
/** The street associated with the Address. Minimum length is 1 character. */
|
|
842
852
|
address1: string;
|
|
843
853
|
/** Any additional information associated with the Address. */
|
|
@@ -977,7 +987,7 @@ interface GetAddressOptions {
|
|
|
977
987
|
type AddressSortBy = 'id-asc' | 'id-desc' | 'updated_at-asc' | 'updated_at-desc';
|
|
978
988
|
interface AddressListParams extends ListParams<AddressSortBy> {
|
|
979
989
|
/** Returns addresses that have the provided discount_id. */
|
|
980
|
-
discount_id?: string;
|
|
990
|
+
discount_id?: string | number;
|
|
981
991
|
/** Returns addresses that have the provided discount_code. */
|
|
982
992
|
discount_code?: string;
|
|
983
993
|
/** Returns addresses created after the given time. */
|
|
@@ -1042,6 +1052,8 @@ declare function sendPasswordlessCode(email: string, options?: PasswordlessOptio
|
|
|
1042
1052
|
declare function sendPasswordlessCodeAppProxy(email: string, options?: PasswordlessOptions): Promise<string>;
|
|
1043
1053
|
declare function validatePasswordlessCode(email: string, session_token: string, code: string): Promise<Session>;
|
|
1044
1054
|
declare function validatePasswordlessCodeAppProxy(email: string, session_token: string, code: string): Promise<Session>;
|
|
1055
|
+
/** @internal */
|
|
1056
|
+
declare function loginCustomerPortal(): Promise<Session>;
|
|
1045
1057
|
|
|
1046
1058
|
type Method = 'get' | 'post' | 'put' | 'delete';
|
|
1047
1059
|
type Request = <T>(method: Method, url: string, options?: RequestOptions) => Promise<T>;
|
|
@@ -1139,9 +1151,9 @@ interface BundleSelectionsResponse {
|
|
|
1139
1151
|
type BundleSelectionsSortBy = 'id-asc' | 'id-desc' | 'updated_at-asc' | 'updated_at-desc';
|
|
1140
1152
|
interface BundleSelectionListParams extends ListParams<BundleSelectionsSortBy> {
|
|
1141
1153
|
/** Filter BundleSelections by Subscription or Onetime ID. */
|
|
1142
|
-
purchase_item_ids?: string[];
|
|
1154
|
+
purchase_item_ids?: (string | number)[];
|
|
1143
1155
|
/** Filter BundleSelections by BundleVariants. */
|
|
1144
|
-
bundle_variant_ids?: string[];
|
|
1156
|
+
bundle_variant_ids?: (string | number)[];
|
|
1145
1157
|
}
|
|
1146
1158
|
|
|
1147
1159
|
type FirstOption = 'onetime' | 'autodeliver';
|
|
@@ -1529,7 +1541,7 @@ type MembershipIncludes = `${membershipIncludes}` | `${membershipIncludes},${mem
|
|
|
1529
1541
|
interface MembershipListParams extends ListParams<MembershipsSortBy> {
|
|
1530
1542
|
include?: MembershipIncludes;
|
|
1531
1543
|
/** Return the memberships linked to the given membership_program_ids. */
|
|
1532
|
-
membership_program_ids?: string[];
|
|
1544
|
+
membership_program_ids?: (string | number)[];
|
|
1533
1545
|
/** Return the memberships with specified status. */
|
|
1534
1546
|
status?: MembershipStatus;
|
|
1535
1547
|
/** Returns memberships created after the given time. */
|
|
@@ -1653,7 +1665,7 @@ type MembershipProgramIncludes = 'membership_benefits' | 'collections';
|
|
|
1653
1665
|
/** @internal */
|
|
1654
1666
|
interface MembershipProgramListParams extends ListParams<MembershipProgramSortBy> {
|
|
1655
1667
|
/** Return the membership program with specified IDs. */
|
|
1656
|
-
ids?: number[];
|
|
1668
|
+
ids?: (string | number)[];
|
|
1657
1669
|
/** Return the membership program with specified status. */
|
|
1658
1670
|
status?: MembershipProgramStatus;
|
|
1659
1671
|
/** If true the response will include the deleted membership programs as well as the others. */
|
|
@@ -1717,17 +1729,17 @@ interface OnetimesResponse {
|
|
|
1717
1729
|
type OnetimesSortBy = 'id-asc' | 'id-desc' | 'created_at-asc' | 'created_at-desc' | 'updated_at-asc' | 'updated_at-desc';
|
|
1718
1730
|
interface OnetimeListParams extends ListParams<OnetimesSortBy> {
|
|
1719
1731
|
/** Return the onetimes linked to the given address_id. */
|
|
1720
|
-
address_id?: string;
|
|
1732
|
+
address_id?: string | number;
|
|
1721
1733
|
/** Return the onetimes linked to the given address_ids. */
|
|
1722
|
-
address_ids?: string[];
|
|
1734
|
+
address_ids?: (string | number)[];
|
|
1723
1735
|
/** Return the onetimes created before the given date. */
|
|
1724
1736
|
created_at_max?: IsoDateString;
|
|
1725
1737
|
/** Return the onetimes created after the given date. */
|
|
1726
1738
|
created_at_min?: IsoDateString;
|
|
1727
1739
|
/** Return the onetimes linked to the given external_variant_id */
|
|
1728
|
-
external_variant_id?: string;
|
|
1740
|
+
external_variant_id?: string | number;
|
|
1729
1741
|
/** Comma-separated list of onetime_ids to filter */
|
|
1730
|
-
ids?: string[];
|
|
1742
|
+
ids?: (string | number)[];
|
|
1731
1743
|
/** If true the response will include the cancelled Onetimes as well as the others. */
|
|
1732
1744
|
include_cancelled?: boolean;
|
|
1733
1745
|
/** Return the onetimes updated before the given date. */
|
|
@@ -1827,7 +1839,7 @@ interface PlansResponse {
|
|
|
1827
1839
|
type PlanSortBy = 'id-asc' | 'id-desc' | 'updated_at-asc' | 'updated_at-desc';
|
|
1828
1840
|
interface PlanListParams extends ListParams<PlanSortBy> {
|
|
1829
1841
|
/** Return the Plans linked to the Product record in Recharge with the indicated external_product_id */
|
|
1830
|
-
external_product_id?: string;
|
|
1842
|
+
external_product_id?: string | number;
|
|
1831
1843
|
/** Return the plans updated before the given date. */
|
|
1832
1844
|
updated_at_max?: IsoDateString;
|
|
1833
1845
|
/** Return the plans updated after the given date. */
|
|
@@ -1983,4 +1995,4 @@ declare const api: {
|
|
|
1983
1995
|
};
|
|
1984
1996
|
declare function initRecharge(opt?: InitOptions): void;
|
|
1985
1997
|
|
|
1986
|
-
export { ActivateMembershipRequest, Address, AddressIncludes, AddressListParams, AddressListResponse, AddressResponse, AddressSortBy, AnalyticsData, AssociatedAddress, BasicSubscriptionParams, BooleanLike, BooleanNumbers, BooleanString, BooleanStringNumbers, BundleAppProxy, BundleSelection, BundleSelectionAppProxy, BundleSelectionItem, BundleSelectionItemRequiredCreateProps, BundleSelectionListParams, BundleSelectionsResponse, BundleSelectionsSortBy, BundleTranslations, CDNBaseWidgetSettings, CDNBundleLayoutSettings, CDNBundleSettings, CDNBundleStep, CDNBundleStepOption, CDNBundleVariant, CDNBundleVariantOptionSource, CDNBundleVariantSelectionDefault, CDNPrices, CDNProduct, CDNProductAndSettings, CDNProductKeyObject, CDNProductOption, CDNProductOptionValue, CDNProductRaw, CDNProductResource, CDNProductsAndSettings, CDNProductsAndSettingsResource, CDNSellingPlan, CDNSellingPlanAllocations, CDNSellingPlanGroup, CDNStoreSettings, CDNSubscriptionOption, CDNVariant, CDNVariantOptionValue, CDNWidgetSettings, CDNWidgetSettingsRaw, CDNWidgetSettingsResource, CRUDRequestOptions, CancelMembershipRequest, CancelSubscriptionRequest, ChangeMembershipRequest, ChannelSettings, Charge, ChargeIncludes, ChargeListParams, ChargeListResponse, ChargeResponse, ChargeSortBy, ChargeStatus, ColorString, CreateAddressRequest, CreateBundleSelectionRequest, CreateMetafieldRequest, CreateOnetimeRequest, CreateSubscriptionRequest, Customer, CustomerDeliveryScheduleParams, CustomerDeliveryScheduleResponse, CustomerIncludes, CustomerPortalAccessResponse, Delivery, DeliveryLineItem, DeliveryOrder, DeliveryPaymentMethod, Discount, DynamicBundleItemAppProxy, DynamicBundlePropertiesAppProxy, ExternalAttributeSchema, ExternalId, ExternalTransactionId, FirstOption, GetAddressOptions, GetChargeOptions, GetCustomerOptions, GetMembershipProgramOptions, GetPaymentMethodOptions, GetRequestOptions, GetSubscriptionOptions, HTMLString, InitOptions, IntervalUnit, IsoDateString, LineItem, ListParams, LoginResponse, Membership, MembershipBenefit, MembershipIncludes, MembershipListParams, MembershipListResponse, MembershipProgram, MembershipProgramIncludes, MembershipProgramListParams, MembershipProgramListResponse, MembershipProgramResponse, MembershipProgramSortBy, MembershipProgramStatus, MembershipResponse, MembershipStatus, MembershipsSortBy, MergeAddressesRequest, Metafield, MetafieldOptionalCreateProps, MetafieldOwnerResource, MetafieldRequiredCreateProps, Method, Onetime, OnetimeListParams, OnetimeOptionalCreateProps, OnetimeRequiredCreateProps, OnetimesResponse, OnetimesSortBy, Order, OrderIncludes, OrderListParams, OrderSortBy, OrderStatus, OrderType, OrdersResponse, PasswordlessCodeResponse, PasswordlessOptions, PasswordlessValidateResponse, PaymentDetails, PaymentMethod, PaymentMethodIncludes, PaymentMethodListParams, PaymentMethodSortBy, PaymentMethodStatus, PaymentMethodsResponse, PaymentType, Plan, PlanListParams, PlanSortBy, PlanType, PlansResponse, PriceAdjustmentsType, ProcessorName, ProductImage, Property, Request, RequestHeaders, RequestOptions, Session, ShippingLine, SkipFutureChargeAddressRequest, SkipFutureChargeAddressResponse, StorefrontEnvironment, StorefrontOptions, StorefrontPurchaseOption, SubType, Subscription, SubscriptionIncludes, SubscriptionListParams, SubscriptionOptionalCreateProps, SubscriptionPreferences, SubscriptionRequiredCreateProps, SubscriptionSortBy, SubscriptionStatus, Subscription_2021_01, SubscriptionsResponse, TaxLine, Translations, UpdateAddressRequest, UpdateBundleSelectionRequest, UpdateCustomerRequest, UpdateMetafieldRequest, UpdateOnetimeRequest, UpdatePaymentMethodRequest, UpdateSubscriptionParams, UpdateSubscriptionRequest, UpdateSubscriptionsParams, UpdateSubscriptionsRequest, WidgetIconColor, WidgetTemplateType, activateMembership, activateSubscription, api, applyDiscountToAddress, applyDiscountToCharge, cancelMembership, cancelSubscription, changeMembership, createAddress, createBundleSelection, createMetafield, createOnetime, createSubscription, createSubscriptions, deleteAddress, deleteBundleSelection, deleteMetafield, deleteOnetime, getAddress, getBundleId, getBundleSelection, getCDNBundleSettings, getCDNProduct, getCDNProductAndSettings, getCDNProducts, getCDNProductsAndSettings, getCDNStoreSettings, getCDNWidgetSettings, getCharge, getCustomer, getCustomerPortalAccess, getDeliverySchedule, getDynamicBundleItems, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getSubscription, initRecharge, intervalUnit, listAddresses, listBundleSelections, listCharges, listMembershipPrograms, listMemberships, listOnetimes, listOrders, listPaymentMethods, listPlans, listSubscriptions, loginShopifyApi, loginShopifyAppProxy, membershipIncludes, mergeAddresses, processCharge, removeDiscountsFromAddress, removeDiscountsFromCharge, resetCDNCache, sendPasswordlessCode, sendPasswordlessCodeAppProxy, skipCharge, skipFutureCharge, skipSubscriptionCharge, unskipCharge, updateAddress, updateBundleSelection, updateCustomer, updateMetafield, updateOnetime, updatePaymentMethod, updateSubscription, updateSubscriptionAddress, updateSubscriptionChargeDate, updateSubscriptions, validateBundle, validateDynamicBundle, validatePasswordlessCode, validatePasswordlessCodeAppProxy };
|
|
1998
|
+
export { ActivateMembershipRequest, Address, AddressIncludes, AddressListParams, AddressListResponse, AddressResponse, AddressSortBy, AnalyticsData, AssociatedAddress, BasicSubscriptionParams, BooleanLike, BooleanNumbers, BooleanString, BooleanStringNumbers, BundleAppProxy, BundleSelection, BundleSelectionAppProxy, BundleSelectionItem, BundleSelectionItemRequiredCreateProps, BundleSelectionListParams, BundleSelectionsResponse, BundleSelectionsSortBy, BundleTranslations, CDNBaseWidgetSettings, CDNBundleLayoutSettings, CDNBundleSettings, CDNBundleStep, CDNBundleStepOption, CDNBundleVariant, CDNBundleVariantOptionSource, CDNBundleVariantSelectionDefault, CDNPrices, CDNProduct, CDNProductAndSettings, CDNProductKeyObject, CDNProductOption, CDNProductOptionValue, CDNProductRaw, CDNProductResource, CDNProductsAndSettings, CDNProductsAndSettingsResource, CDNSellingPlan, CDNSellingPlanAllocations, CDNSellingPlanGroup, CDNStoreSettings, CDNSubscriptionOption, CDNVariant, CDNVariantOptionValue, CDNWidgetSettings, CDNWidgetSettingsRaw, CDNWidgetSettingsResource, CRUDRequestOptions, CancelMembershipRequest, CancelSubscriptionRequest, ChangeMembershipRequest, ChannelSettings, Charge, ChargeIncludes, ChargeListParams, ChargeListResponse, ChargeResponse, ChargeSortBy, ChargeStatus, ColorString, CreateAddressRequest, CreateBundleSelectionRequest, CreateMetafieldRequest, CreateOnetimeRequest, CreateSubscriptionRequest, Customer, CustomerDeliveryScheduleParams, CustomerDeliveryScheduleResponse, CustomerIncludes, CustomerPortalAccessResponse, Delivery, DeliveryLineItem, DeliveryOrder, DeliveryPaymentMethod, Discount, DynamicBundleItemAppProxy, DynamicBundlePropertiesAppProxy, ExternalAttributeSchema, ExternalId, ExternalTransactionId, FirstOption, GetAddressOptions, GetChargeOptions, GetCustomerOptions, GetMembershipProgramOptions, GetPaymentMethodOptions, GetRequestOptions, GetSubscriptionOptions, HTMLString, InitOptions, IntervalUnit, IsoDateString, LineItem, ListParams, LoginResponse, Membership, MembershipBenefit, MembershipIncludes, MembershipListParams, MembershipListResponse, MembershipProgram, MembershipProgramIncludes, MembershipProgramListParams, MembershipProgramListResponse, MembershipProgramResponse, MembershipProgramSortBy, MembershipProgramStatus, MembershipResponse, MembershipStatus, MembershipsSortBy, MergeAddressesRequest, Metafield, MetafieldOptionalCreateProps, MetafieldOwnerResource, MetafieldRequiredCreateProps, Method, Onetime, OnetimeListParams, OnetimeOptionalCreateProps, OnetimeRequiredCreateProps, OnetimesResponse, OnetimesSortBy, Order, OrderIncludes, OrderListParams, OrderSortBy, OrderStatus, OrderType, OrdersResponse, PasswordlessCodeResponse, PasswordlessOptions, PasswordlessValidateResponse, PaymentDetails, PaymentMethod, PaymentMethodIncludes, PaymentMethodListParams, PaymentMethodSortBy, PaymentMethodStatus, PaymentMethodsResponse, PaymentType, Plan, PlanListParams, PlanSortBy, PlanType, PlansResponse, PriceAdjustmentsType, ProcessorName, ProductImage, Property, Request, RequestHeaders, RequestOptions, Session, ShippingLine, SkipFutureChargeAddressRequest, SkipFutureChargeAddressResponse, StorefrontEnvironment, StorefrontOptions, StorefrontPurchaseOption, SubType, Subscription, SubscriptionIncludes, SubscriptionListParams, SubscriptionOptionalCreateProps, SubscriptionPreferences, SubscriptionRequiredCreateProps, SubscriptionSortBy, SubscriptionStatus, Subscription_2021_01, SubscriptionsResponse, TaxLine, Translations, UpdateAddressRequest, UpdateBundleSelectionRequest, UpdateCustomerRequest, UpdateMetafieldRequest, UpdateOnetimeRequest, UpdatePaymentMethodRequest, UpdateSubscriptionParams, UpdateSubscriptionRequest, UpdateSubscriptionsParams, UpdateSubscriptionsRequest, WidgetIconColor, WidgetTemplateType, activateMembership, activateSubscription, api, applyDiscountToAddress, applyDiscountToCharge, cancelMembership, cancelSubscription, changeMembership, createAddress, createBundleSelection, createMetafield, createOnetime, createSubscription, createSubscriptions, deleteAddress, deleteBundleSelection, deleteMetafield, deleteOnetime, getAddress, getBundleId, getBundleSelection, getCDNBundleSettings, getCDNProduct, getCDNProductAndSettings, getCDNProducts, getCDNProductsAndSettings, getCDNStoreSettings, getCDNWidgetSettings, getCharge, getCustomer, getCustomerPortalAccess, getDeliverySchedule, getDynamicBundleItems, getMembership, getMembershipProgram, getOnetime, getOrder, getPaymentMethod, getPlan, getSubscription, initRecharge, intervalUnit, listAddresses, listBundleSelections, listCharges, listMembershipPrograms, listMemberships, listOnetimes, listOrders, listPaymentMethods, listPlans, listSubscriptions, loginCustomerPortal, loginShopifyApi, loginShopifyAppProxy, membershipIncludes, mergeAddresses, processCharge, removeDiscountsFromAddress, removeDiscountsFromCharge, resetCDNCache, sendPasswordlessCode, sendPasswordlessCodeAppProxy, skipCharge, skipFutureCharge, skipSubscriptionCharge, unskipCharge, updateAddress, updateBundleSelection, updateCustomer, updateMetafield, updateOnetime, updatePaymentMethod, updateSubscription, updateSubscriptionAddress, updateSubscriptionChargeDate, updateSubscriptions, validateBundle, validateDynamicBundle, validatePasswordlessCode, validatePasswordlessCodeAppProxy };
|