@commercengine/storefront-sdk 0.10.1 → 0.10.2

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
@@ -303,7 +303,6 @@ interface paths {
303
303
  * Register with whatsapp
304
304
  * @description The API allows users to register with their WhatsApp. This endpoint enables the registration process by requesting the user's WhatsApp number, first name, last name, email.
305
305
  * The response will include a message indicating the success or failure of the registration process, as well as additional information such as the user's information, access token and refresh token.
306
- *
307
306
  */
308
307
  post: operations["register-with-whatsapp"];
309
308
  delete?: never;
@@ -806,29 +805,6 @@ interface paths {
806
805
  patch?: never;
807
806
  trace?: never;
808
807
  };
809
- "/carts/{id}/shipping-method": {
810
- parameters: {
811
- query?: never;
812
- header?: never;
813
- path: {
814
- /** @description Cart ID */
815
- id: string;
816
- };
817
- cookie?: never;
818
- };
819
- get?: never;
820
- put?: never;
821
- /**
822
- * Update shipping method
823
- * @description Update preferred shipping method and courier.
824
- */
825
- post: operations["update-shipping-method"];
826
- delete?: never;
827
- options?: never;
828
- head?: never;
829
- patch?: never;
830
- trace?: never;
831
- };
832
808
  "/catalog/categories": {
833
809
  parameters: {
834
810
  query?: never;
@@ -1133,6 +1109,35 @@ interface paths {
1133
1109
  patch?: never;
1134
1110
  trace?: never;
1135
1111
  };
1112
+ "/customers/{customer_id}/payment-methods": {
1113
+ parameters: {
1114
+ query?: never;
1115
+ header?: never;
1116
+ path: {
1117
+ /** @description Customer Id */
1118
+ customer_id: string;
1119
+ };
1120
+ cookie?: never;
1121
+ };
1122
+ /**
1123
+ * List all saved payment methods
1124
+ * @description This endpoint acts as a proxy for JusPay’s “Fetch Saved Payment Methods” API. It enables to securely retrieve a list of payment methods (such as saved cards, UPI handles, wallets) that have been previously stored for a given customer.
1125
+ *
1126
+ * The operation helps streamline the checkout flow by allowing users to quickly select from existing payment methods, reducing input friction and improving conversion.
1127
+ *
1128
+ * API documentation of JusPay can be found at below link:
1129
+ *
1130
+ * https://juspay.io/in/docs/api-reference/docs/express-checkout/fetch-saved-payment-methods
1131
+ */
1132
+ get: operations["list-saved-payment-methods"];
1133
+ put?: never;
1134
+ post?: never;
1135
+ delete?: never;
1136
+ options?: never;
1137
+ head?: never;
1138
+ patch?: never;
1139
+ trace?: never;
1140
+ };
1136
1141
  "/customers/{id}": {
1137
1142
  parameters: {
1138
1143
  query?: never;
@@ -2621,26 +2626,6 @@ interface paths {
2621
2626
  patch?: never;
2622
2627
  trace?: never;
2623
2628
  };
2624
- "/shipping/shipping-methods": {
2625
- parameters: {
2626
- query?: never;
2627
- header?: never;
2628
- path?: never;
2629
- cookie?: never;
2630
- };
2631
- get?: never;
2632
- put?: never;
2633
- /**
2634
- * List available shipping methods
2635
- * @description Checks whether a given pincode is serviceable and returns all available shipping methods based on delivery address
2636
- */
2637
- post: operations["get-shipping-methods"];
2638
- delete?: never;
2639
- options?: never;
2640
- head?: never;
2641
- patch?: never;
2642
- trace?: never;
2643
- };
2644
2629
  "/store/config": {
2645
2630
  parameters: {
2646
2631
  query?: never;
@@ -2973,8 +2958,10 @@ interface components {
2973
2958
  * @description Bank transfer payment - IMPS, NEFT, RTGS
2974
2959
  */
2975
2960
  BankTransfer: components["schemas"]["PaymentInfo"] & {
2976
- /** @description masked account number
2977
- * e.g. ************1234 */
2961
+ /**
2962
+ * @description masked account number
2963
+ * e.g. ************1234
2964
+ */
2978
2965
  bank_account_number?: string;
2979
2966
  bank_name?: string;
2980
2967
  };
@@ -3000,9 +2987,11 @@ interface components {
3000
2987
  /** @description brand name. it will be used in emails and other communications. */
3001
2988
  name: string;
3002
2989
  logo_url: string | null;
3003
- /** @description json object having key - value pair.
2990
+ /**
2991
+ * @description json object having key - value pair.
3004
2992
  *
3005
- * example - {"facebook": "www.facebook.com/commecengine"} */
2993
+ * example - {"facebook": "www.facebook.com/commecengine"}
2994
+ */
3006
2995
  social_media_links: {
3007
2996
  [key: string]: string;
3008
2997
  };
@@ -3081,8 +3070,10 @@ interface components {
3081
3070
  * @description Payments using credit card, debit card
3082
3071
  */
3083
3072
  CardPayment: components["schemas"]["PaymentInfo"] & {
3084
- /** @description masked card number
3085
- * e.g. ************1111 */
3073
+ /**
3074
+ * @description masked card number
3075
+ * e.g. ************1111
3076
+ */
3086
3077
  card_number?: string;
3087
3078
  /** @enum {string} */
3088
3079
  card_type?: "Visa" | "Master Card" | "Rupay" | "American Express";
@@ -3188,7 +3179,7 @@ interface components {
3188
3179
  loyalty_points_earned: number;
3189
3180
  /** @description Number of items in the cart. */
3190
3181
  cart_items_count: number;
3191
- /** @description List containing detailed information about each item in the cart. */
3182
+ /** @description List containing detailed information about each item in the cart. */
3192
3183
  cart_items: components["schemas"]["CartItem"][];
3193
3184
  /** @description Details of the billing address. */
3194
3185
  billing_address: components["schemas"]["CustomerAddress"];
@@ -3203,7 +3194,6 @@ interface components {
3203
3194
  /**
3204
3195
  * Format: date-time
3205
3196
  * @description the expiration timestamp of the shopping cart. .
3206
- *
3207
3197
  */
3208
3198
  expires_at: string | null;
3209
3199
  /** @description Information about the promotional offers that have been applied to the cart. */
@@ -3341,7 +3331,10 @@ interface components {
3341
3331
  * @enum {string}
3342
3332
  */
3343
3333
  fulfillment_type: "collect-in-store";
3334
+ /** @enum {string} */
3335
+ readonly preference_type?: "user" | "auto";
3344
3336
  pickup_location_id: string;
3337
+ readonly pickup_location_name?: string;
3345
3338
  };
3346
3339
  /**
3347
3340
  * ColorAttribute
@@ -3528,8 +3521,7 @@ interface components {
3528
3521
  id?: string | null;
3529
3522
  first_name: string;
3530
3523
  last_name: string | null;
3531
- /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
3532
- * */
3524
+ /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided. */
3533
3525
  country_code: string;
3534
3526
  /** @description 10 digit phone number without country code. */
3535
3527
  phone: string;
@@ -3559,8 +3551,7 @@ interface components {
3559
3551
  readonly id?: string;
3560
3552
  first_name?: string;
3561
3553
  last_name?: string;
3562
- /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
3563
- * */
3554
+ /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided. */
3564
3555
  country_code?: string;
3565
3556
  /** @description 10 digit phone number without country code. */
3566
3557
  phone?: string;
@@ -3703,6 +3694,8 @@ interface components {
3703
3694
  * @enum {string}
3704
3695
  */
3705
3696
  fulfillment_type: "delivery";
3697
+ /** @enum {string} */
3698
+ readonly preference_type?: "user" | "auto";
3706
3699
  shipping_provider_id: string | null;
3707
3700
  readonly shipping_provider_name?: string | null;
3708
3701
  courier_company_id?: string | null;
@@ -3969,70 +3962,60 @@ interface components {
3969
3962
  last_updated?: string;
3970
3963
  mobile_country_code?: string;
3971
3964
  };
3972
- /** JuspayOrder */
3973
- JuspayOrder: {
3974
- id?: string;
3975
- udf10?: string;
3976
- udf9?: string;
3977
- udf8?: string;
3978
- udf7?: string;
3979
- udf6?: string;
3980
- udf5?: string;
3981
- udf4?: string;
3982
- udf3?: string;
3983
- udf2?: string;
3984
- udf1?: string;
3985
- status_id?: string;
3986
- status?: string;
3965
+ /** JusPayExpressCheckout */
3966
+ JusPayExpressCheckout: components["schemas"]["JusPayNewCard"] | components["schemas"]["JusPaySavedCardToken"] | components["schemas"]["JuspayNetBanking"] | components["schemas"]["JuspayUpiCollect"] | components["schemas"]["JuspayUpiIntent"];
3967
+ /** JusPayExpressCheckoutCommonField */
3968
+ JusPayExpressCheckoutCommonField: {
3969
+ payment_provider_slug: string;
3970
+ /** @constant */
3971
+ integration_type: "express-checkout";
3972
+ gateway_reference_id: string;
3987
3973
  return_url?: string;
3988
- /** @default false */
3989
- refunded: boolean;
3990
- product_id?: string;
3991
- payment_links?: {
3992
- web?: string;
3993
- mobile?: string;
3994
- iframe?: string;
3995
- };
3974
+ redirect_after_payment?: boolean;
3975
+ get_client_auth_token?: boolean;
3976
+ };
3977
+ /** JusPayExpressCheckoutResponse */
3978
+ JusPayExpressCheckoutResponse: {
3979
+ txn_id?: string;
3980
+ txn_uuid?: string;
3981
+ status?: string;
3996
3982
  order_id?: string;
3997
- merchant_id?: string;
3998
3983
  juspay?: {
3999
3984
  client_auth_token?: string;
4000
3985
  client_auth_token_expiry?: string;
4001
3986
  };
4002
- date_created?: string;
4003
- customer_phone?: string;
4004
- customer_id?: string;
4005
- customer_email?: string;
4006
- currency?: string;
4007
- /** Format: double */
4008
- amount_refunded?: number;
4009
- /** Format: double */
4010
- amount?: number;
3987
+ offer_details?: {
3988
+ offers?: Record<string, never>[];
3989
+ };
3990
+ payment?: {
3991
+ sdk_params?: {
3992
+ mam?: string;
3993
+ tr?: string;
3994
+ merchant_vpa?: string;
3995
+ customer_first_name?: string;
3996
+ customer_last_name?: string;
3997
+ tn?: string;
3998
+ mcc?: string;
3999
+ merchant_name?: string;
4000
+ currency?: string;
4001
+ amount?: string;
4002
+ };
4003
+ } | null;
4004
+ /** Format: date-time */
4005
+ order_expiry?: string;
4011
4006
  };
4012
- /** JuspayPaymentGatewayParams */
4013
- JuspayPaymentGatewayParams: {
4014
- /**
4015
- * @description discriminator enum property added by openapi-typescript
4016
- * @enum {string}
4017
- */
4018
- payment_gateway: "JUSPAY";
4019
- /**
4020
- * @description `paymentPage` is the default option that you should select when using hyper-checkout
4021
- * @enum {string}
4022
- */
4023
- action: "paymentPage" | "paymentManagement";
4024
- /**
4025
- * @description Use `hyper-checkout` for Juspay hosted checkout
4026
- * @enum {string}
4027
- */
4028
- integration_type: "hyper-checkout" | "express-checkout";
4029
- /** @description This is the URL that the gateway will redirect to once payment processing is complete. This will be a GET request by default */
4030
- return_url: string;
4031
- /** @description The exact gateway reference ID that was set up in the integration */
4007
+ /** JusPayHyperCheckout */
4008
+ JusPayHyperCheckout: {
4009
+ payment_provider_slug: string;
4010
+ /** @constant */
4011
+ integration_type: "hyper-checkout";
4032
4012
  gateway_reference_id: string;
4013
+ return_url: string;
4014
+ /** @enum {unknown} */
4015
+ action: "paymentPage";
4033
4016
  };
4034
- /** JuspayPaymentInfo */
4035
- JuspayPaymentInfo: {
4017
+ /** JusPayHyperCheckoutResponse */
4018
+ JusPayHyperCheckoutResponse: {
4036
4019
  id?: string;
4037
4020
  status?: string;
4038
4021
  order_id?: string;
@@ -4062,7 +4045,6 @@ interface components {
4062
4045
  description?: string;
4063
4046
  /**
4064
4047
  * @description Use for taking consent of subscription payments. If this key is used it will ask user to give consent for subscription payment.
4065
- *
4066
4048
  * @constant
4067
4049
  */
4068
4050
  "options.createMandate"?: "REQUIRED";
@@ -4090,6 +4072,92 @@ interface components {
4090
4072
  "mandate.rule_value "?: "1-7" | "1-16" | "1-31";
4091
4073
  };
4092
4074
  };
4075
+ /** Format: date-time */
4076
+ order_expiry?: string;
4077
+ };
4078
+ /** JuspayNetBanking */
4079
+ JuspayNetBanking: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4080
+ /** @constant */
4081
+ payment_method_type: "NB";
4082
+ payment_method: string;
4083
+ };
4084
+ /** JusPayNewCard */
4085
+ JusPayNewCard: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4086
+ /** @constant */
4087
+ auth_type: "OTP";
4088
+ tokenize: boolean;
4089
+ save_to_locker: boolean;
4090
+ /** @constant */
4091
+ payment_method_type: "CARD";
4092
+ /** @enum {unknown} */
4093
+ payment_method: "VISA" | "MASTER";
4094
+ card_number: string;
4095
+ card_exp_month: string;
4096
+ card_exp_year: string;
4097
+ name_on_card: string;
4098
+ card_security_code: string;
4099
+ };
4100
+ /** JuspayOrder */
4101
+ JuspayOrder: {
4102
+ id?: string;
4103
+ udf10?: string;
4104
+ udf9?: string;
4105
+ udf8?: string;
4106
+ udf7?: string;
4107
+ udf6?: string;
4108
+ udf5?: string;
4109
+ udf4?: string;
4110
+ udf3?: string;
4111
+ udf2?: string;
4112
+ udf1?: string;
4113
+ status_id?: string;
4114
+ status?: string;
4115
+ return_url?: string;
4116
+ /** @default false */
4117
+ refunded: boolean;
4118
+ product_id?: string;
4119
+ payment_links?: {
4120
+ web?: string;
4121
+ mobile?: string;
4122
+ iframe?: string;
4123
+ };
4124
+ order_id?: string;
4125
+ merchant_id?: string;
4126
+ juspay?: {
4127
+ client_auth_token?: string;
4128
+ client_auth_token_expiry?: string;
4129
+ };
4130
+ date_created?: string;
4131
+ customer_phone?: string;
4132
+ customer_id?: string;
4133
+ customer_email?: string;
4134
+ currency?: string;
4135
+ /** Format: double */
4136
+ amount_refunded?: number;
4137
+ /** Format: double */
4138
+ amount?: number;
4139
+ };
4140
+ /** JuspayPaymentGatewayParams */
4141
+ JuspayPaymentGatewayParams: {
4142
+ /**
4143
+ * @description discriminator enum property added by openapi-typescript
4144
+ * @enum {string}
4145
+ */
4146
+ payment_gateway: "JUSPAY";
4147
+ /**
4148
+ * @description `paymentPage` is the default option that you should select when using hyper-checkout
4149
+ * @enum {string}
4150
+ */
4151
+ action: "paymentPage" | "paymentManagement";
4152
+ /**
4153
+ * @description Use `hyper-checkout` for Juspay hosted checkout
4154
+ * @enum {string}
4155
+ */
4156
+ integration_type: "hyper-checkout" | "express-checkout";
4157
+ /** @description This is the URL that the gateway will redirect to once payment processing is complete. This will be a GET request by default */
4158
+ return_url: string;
4159
+ /** @description The exact gateway reference ID that was set up in the integration */
4160
+ gateway_reference_id: string;
4093
4161
  };
4094
4162
  /** JuspayPaymentMethod */
4095
4163
  JuspayPaymentMethod: {
@@ -4101,6 +4169,36 @@ interface components {
4101
4169
  JuspaySavedCard: {
4102
4170
  id?: string;
4103
4171
  };
4172
+ /** JusPaySavedCardToken */
4173
+ JusPaySavedCardToken: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4174
+ /** @constant */
4175
+ auth_type: "OTP";
4176
+ tokenize: boolean;
4177
+ save_to_locker: boolean;
4178
+ /** @constant */
4179
+ payment_method_type: "CARD";
4180
+ /** @enum {unknown} */
4181
+ payment_method: "VISA" | "MASTER";
4182
+ card_token: string;
4183
+ card_security_code: string;
4184
+ };
4185
+ /** JuspayUpiCollect */
4186
+ JuspayUpiCollect: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4187
+ /** @constant */
4188
+ payment_method_type: "UPI";
4189
+ /** @constant */
4190
+ payment_method: "UPI_COLLECT";
4191
+ upi_vpa: string;
4192
+ };
4193
+ /** JuspayUpiIntent */
4194
+ JuspayUpiIntent: components["schemas"]["JusPayExpressCheckoutCommonField"] & {
4195
+ /** @constant */
4196
+ payment_method_type: "UPI";
4197
+ /** @constant */
4198
+ payment_method: "UPI_PAY";
4199
+ sdk_params: boolean;
4200
+ upi_app: string;
4201
+ };
4104
4202
  /** KycDocument */
4105
4203
  KycDocument: {
4106
4204
  readonly id?: string;
@@ -4209,8 +4307,7 @@ interface components {
4209
4307
  transactional: components["schemas"]["NotificationChannelPreferences"];
4210
4308
  /** @description These notifications aim to engage users with promotional content and enhance their overall experience with the platform. */
4211
4309
  promotional: components["schemas"]["NotificationChannelPreferences"];
4212
- /** @description These notifications are often sent periodically as part of a subscription service.
4213
- * */
4310
+ /** @description These notifications are often sent periodically as part of a subscription service. */
4214
4311
  newsletter: components["schemas"]["NotificationChannelPreferences"];
4215
4312
  };
4216
4313
  /**
@@ -4347,9 +4444,11 @@ interface components {
4347
4444
  slug: string;
4348
4445
  variant_id: string | null;
4349
4446
  variant_name: string | null;
4350
- /** @description backorder
4447
+ /**
4448
+ * @description backorder
4351
4449
  *
4352
- * Indicates whether the item is being fulfilled as a backorder. When true, the item is not currently in stock and will ship later once inventory is available. This may result in the order being split into multiple shipments, with delays for the backordered portion. */
4450
+ * Indicates whether the item is being fulfilled as a backorder. When true, the item is not currently in stock and will ship later once inventory is available. This may result in the order being split into multiple shipments, with delays for the backordered portion.
4451
+ */
4353
4452
  backorder: boolean;
4354
4453
  on_promotion: boolean;
4355
4454
  on_subscription: boolean;
@@ -4582,12 +4681,15 @@ interface components {
4582
4681
  * @enum {string}
4583
4682
  */
4584
4683
  fulfillment_type: "partial-collect-and-delivery";
4684
+ /** @enum {string} */
4685
+ readonly preference_type?: "user" | "auto";
4585
4686
  "collect-in-store": {
4586
- pickup_location_id?: string;
4587
- items?: components["schemas"]["FulfillmentItem"][];
4687
+ pickup_location_id: string;
4688
+ readonly pickup_location_name?: string;
4689
+ items: components["schemas"]["FulfillmentItem"][];
4588
4690
  };
4589
4691
  delivery: {
4590
- shipping_provider_id: string | null;
4692
+ shipping_provider_id: string;
4591
4693
  readonly shipping_provider_name?: string | null;
4592
4694
  courier_company_id?: string | null;
4593
4695
  readonly courier_company_name?: string | null;
@@ -4633,6 +4735,8 @@ interface components {
4633
4735
  payment_method?: string | null;
4634
4736
  icon_url?: string | null;
4635
4737
  };
4738
+ /** PaymentMethodPayload */
4739
+ PaymentMethodPayload: components["schemas"]["JusPayHyperCheckout"] | components["schemas"]["JusPayExpressCheckout"];
4636
4740
  /** PayuCardPayload */
4637
4741
  PayuCardPayload: {
4638
4742
  /**
@@ -4703,12 +4807,14 @@ interface components {
4703
4807
  * @constant
4704
4808
  */
4705
4809
  billingCycle?: "MONTHLY";
4706
- /** @description Billing Interval is closely coupled with the billingCycle field and denotes at what frequency, the subscription plan needs to be executed. For monthly subscriptions, parameter values need to be sent in the request are:
4810
+ /**
4811
+ * @description Billing Interval is closely coupled with the billingCycle field and denotes at what frequency, the subscription plan needs to be executed. For monthly subscriptions, parameter values need to be sent in the request are:
4707
4812
  * billingCycle = MONTHLY
4708
4813
  * billingInterval = 1
4709
4814
  * Similarly, by keeping the following values, customer will be charged once in every 3 days:
4710
4815
  * billingCycle = DAILY
4711
- * billingInterval = 3 */
4816
+ * billingInterval = 3
4817
+ */
4712
4818
  billingInterval?: number;
4713
4819
  /**
4714
4820
  * Format: date
@@ -5188,6 +5294,61 @@ interface components {
5188
5294
  /** @description Provide reason for revoking subscription. */
5189
5295
  reason: string;
5190
5296
  };
5297
+ /** SavedPaymentMethod */
5298
+ SavedPaymentMethod: {
5299
+ UPI_COLLECT?: {
5300
+ count?: number;
5301
+ last_used?: string;
5302
+ vpa?: string;
5303
+ }[];
5304
+ WALLET?: {
5305
+ "linked "?: string;
5306
+ "id "?: string;
5307
+ "metadata "?: {
5308
+ "mobile_Number "?: string;
5309
+ "device_Id "?: string;
5310
+ };
5311
+ "wallet "?: string;
5312
+ "gateway_reference_id "?: string;
5313
+ "last_refreshed "?: string;
5314
+ "sub_details "?: {
5315
+ "last_Used "?: string;
5316
+ "current_Balance "?: string;
5317
+ "last_Refreshed "?: string;
5318
+ "payment_Method "?: string;
5319
+ "payment_Method_Type "?: string;
5320
+ };
5321
+ }[];
5322
+ CARD?: {
5323
+ card_sub_type?: string;
5324
+ extended_card_type?: string;
5325
+ card_global_fingerprint?: string;
5326
+ nickname?: string;
5327
+ provider_category?: string;
5328
+ vault_provider?: string;
5329
+ card_reference?: string;
5330
+ card_type?: string;
5331
+ metadata?: {
5332
+ origin_merchant_id?: string;
5333
+ };
5334
+ card_issuer?: string;
5335
+ card_token?: string;
5336
+ card_exp_month?: string;
5337
+ provider?: string;
5338
+ card_sub_type_category?: string;
5339
+ expired?: boolean;
5340
+ card_fingerprint?: string;
5341
+ tokenize_support?: boolean;
5342
+ juspay_bank_code?: string;
5343
+ card_exp_year?: string;
5344
+ name_on_card?: string;
5345
+ country_code?: string;
5346
+ card_number?: string;
5347
+ card_isin?: string;
5348
+ card_brand?: string;
5349
+ card_issuer_country?: string;
5350
+ }[];
5351
+ };
5191
5352
  /**
5192
5353
  * SearchProduct
5193
5354
  * @description Payload for searching products.
@@ -5205,13 +5366,15 @@ interface components {
5205
5366
  * @default 25
5206
5367
  */
5207
5368
  limit: number;
5208
- /** @description provide list of attributes for specific facets or * for all facets.
5369
+ /**
5370
+ * @description provide list of attributes for specific facets or * for all facets.
5209
5371
  * ```json
5210
5372
  * For specific facets: ["size", "color", "brand"]
5211
5373
  * ```
5212
5374
  * ```json
5213
5375
  * For all facets: ["*"]
5214
- * ``` */
5376
+ * ```
5377
+ */
5215
5378
  facets?: string[];
5216
5379
  };
5217
5380
  /** Seo */
@@ -5559,8 +5722,10 @@ interface components {
5559
5722
  readonly is_email_verified: boolean;
5560
5723
  /** @description 10 digit phone number without country code. */
5561
5724
  phone: string | null;
5562
- /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
5563
- * Use this key along with phone. Not necessary for email. */
5725
+ /**
5726
+ * @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
5727
+ * Use this key along with phone. Not necessary for email.
5728
+ */
5564
5729
  country_code: string | null;
5565
5730
  /** @description Boolean indicating whether the phone is verified. */
5566
5731
  readonly is_phone_verified: boolean;
@@ -5645,7 +5810,8 @@ interface components {
5645
5810
  key: string;
5646
5811
  /** @enum {string} */
5647
5812
  type: "single-select" | "color";
5648
- /** @description When option_type is color, value will contain an array of objects like:
5813
+ /**
5814
+ * @description When option_type is color, value will contain an array of objects like:
5649
5815
  * ```json
5650
5816
  * [
5651
5817
  * {
@@ -5657,7 +5823,8 @@ interface components {
5657
5823
  * "hexcode": "#FFFFFF"
5658
5824
  * }
5659
5825
  * ]
5660
- * ``` */
5826
+ * ```
5827
+ */
5661
5828
  value: (string | Record<string, never>)[];
5662
5829
  };
5663
5830
  /** VolumeBasedCouponPromotion */
@@ -5839,7 +6006,7 @@ interface operations {
5839
6006
  user: components["schemas"]["AnonymousUser"];
5840
6007
  /** @description It is a string-based token utilized for authentication and authorization. */
5841
6008
  access_token: string;
5842
- /** @description It is a string-based token designed for refreshing the user's access token. */
6009
+ /** @description It is a string-based token designed for refreshing the user's access token. */
5843
6010
  refresh_token: string;
5844
6011
  };
5845
6012
  };
@@ -5908,8 +6075,10 @@ interface operations {
5908
6075
  email: string;
5909
6076
  /** @description 10 digit phone number without country code. */
5910
6077
  phone: string;
5911
- /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
5912
- * Use this key along with phone. Not necessary for email. */
6078
+ /**
6079
+ * @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
6080
+ * Use this key along with phone. Not necessary for email.
6081
+ */
5913
6082
  country_code: string;
5914
6083
  };
5915
6084
  };
@@ -5998,9 +6167,11 @@ interface operations {
5998
6167
  * @description User's email address.
5999
6168
  */
6000
6169
  email: string;
6001
- /** @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6170
+ /**
6171
+ * @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6002
6172
  * To send OTP to unregistered phone it should be pass with true value like this,
6003
- * "register_if_not_exists": true */
6173
+ * "register_if_not_exists": true
6174
+ */
6004
6175
  register_if_not_exists?: boolean;
6005
6176
  };
6006
6177
  };
@@ -6108,9 +6279,11 @@ interface operations {
6108
6279
  country_code?: "+91";
6109
6280
  /** @description 10 digit phone number without country code. */
6110
6281
  phone: string;
6111
- /** @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6282
+ /**
6283
+ * @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6112
6284
  * To send OTP to unregistered phone it should be pass with true value like this,
6113
- * "register_if_not_exists": true */
6285
+ * "register_if_not_exists": true
6286
+ */
6114
6287
  register_if_not_exists?: boolean;
6115
6288
  };
6116
6289
  };
@@ -6162,9 +6335,11 @@ interface operations {
6162
6335
  country_code?: "+91";
6163
6336
  /** @description 10 digit phone number without country code linked with WhatsApp. */
6164
6337
  phone: string;
6165
- /** @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6338
+ /**
6339
+ * @description This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
6166
6340
  * To send OTP to unregistered phone it should be pass with true value like this,
6167
- * "register_if_not_exists": true */
6341
+ * "register_if_not_exists": true
6342
+ */
6168
6343
  register_if_not_exists?: boolean;
6169
6344
  };
6170
6345
  };
@@ -6970,7 +7145,7 @@ interface operations {
6970
7145
  "application/json": {
6971
7146
  /** @description A string providing additional information about the response. */
6972
7147
  message: string;
6973
- /** @description A boolean indicating whether the operation was successful or not. */
7148
+ /** @description A boolean indicating whether the operation was successful or not. */
6974
7149
  success: boolean;
6975
7150
  /** @description An object containing the response content. */
6976
7151
  content: {
@@ -7652,45 +7827,6 @@ interface operations {
7652
7827
  };
7653
7828
  };
7654
7829
  };
7655
- "update-shipping-method": {
7656
- parameters: {
7657
- query?: never;
7658
- header?: never;
7659
- path: {
7660
- /** @description Cart ID */
7661
- id: string;
7662
- };
7663
- cookie?: never;
7664
- };
7665
- requestBody: {
7666
- content: {
7667
- "application/json": {
7668
- shipping_provider_id: string;
7669
- courier_company_id: string | null;
7670
- };
7671
- };
7672
- };
7673
- responses: {
7674
- /** @description OK */
7675
- 200: {
7676
- headers: {
7677
- [name: string]: unknown;
7678
- };
7679
- content: {
7680
- "application/json": {
7681
- message: string;
7682
- success: boolean;
7683
- content: {
7684
- cart: components["schemas"]["Cart"];
7685
- };
7686
- };
7687
- };
7688
- };
7689
- 400: components["responses"]["BadRequest"];
7690
- 401: components["responses"]["Unauthorized"];
7691
- 404: components["responses"]["NotFound"];
7692
- };
7693
- };
7694
7830
  "list-categories": {
7695
7831
  parameters: {
7696
7832
  query?: {
@@ -8321,6 +8457,37 @@ interface operations {
8321
8457
  401: components["responses"]["Unauthorized"];
8322
8458
  };
8323
8459
  };
8460
+ "list-saved-payment-methods": {
8461
+ parameters: {
8462
+ query?: never;
8463
+ header?: never;
8464
+ path: {
8465
+ /** @description Customer Id */
8466
+ customer_id: string;
8467
+ };
8468
+ cookie?: never;
8469
+ };
8470
+ requestBody?: never;
8471
+ responses: {
8472
+ /** @description OK */
8473
+ 200: {
8474
+ headers: {
8475
+ [name: string]: unknown;
8476
+ };
8477
+ content: {
8478
+ "application/json": {
8479
+ message?: string;
8480
+ success?: boolean;
8481
+ content?: {
8482
+ saved_payment_methods?: components["schemas"]["SavedPaymentMethod"];
8483
+ };
8484
+ };
8485
+ };
8486
+ };
8487
+ 401: components["responses"]["Unauthorized"];
8488
+ 404: components["responses"]["NotFound"];
8489
+ };
8490
+ };
8324
8491
  "get-customer-detail": {
8325
8492
  parameters: {
8326
8493
  query?: never;
@@ -8959,8 +9126,7 @@ interface operations {
8959
9126
  content: {
8960
9127
  "application/json": {
8961
9128
  cart_id: string;
8962
- payment_gateway: components["schemas"]["PaymentGateway"];
8963
- payment_gateway_params: components["schemas"]["PaymentGatewayParams"];
9129
+ payment_method?: components["schemas"]["PaymentMethodPayload"];
8964
9130
  };
8965
9131
  };
8966
9132
  };
@@ -8977,7 +9143,7 @@ interface operations {
8977
9143
  content: {
8978
9144
  order: components["schemas"]["Order"];
8979
9145
  payment_required: boolean;
8980
- payment_info: components["schemas"]["PayuPaymentInfo"] | components["schemas"]["JuspayPaymentInfo"];
9146
+ payment_info: components["schemas"]["JusPayHyperCheckoutResponse"] | components["schemas"]["JusPayExpressCheckoutResponse"] | components["schemas"]["PayuPaymentInfo"];
8981
9147
  };
8982
9148
  };
8983
9149
  };
@@ -9206,7 +9372,7 @@ interface operations {
9206
9372
  requestBody: {
9207
9373
  content: {
9208
9374
  "application/json": {
9209
- payment_gateway_params: components["schemas"]["PaymentGatewayParams"];
9375
+ payment_method?: components["schemas"]["PaymentMethodPayload"];
9210
9376
  };
9211
9377
  };
9212
9378
  };
@@ -9221,7 +9387,7 @@ interface operations {
9221
9387
  message: string;
9222
9388
  success: boolean;
9223
9389
  content: {
9224
- payment_info: components["schemas"]["PayuPaymentInfo"] | components["schemas"]["JuspayPaymentInfo"];
9390
+ payment_info: components["schemas"]["JusPayHyperCheckoutResponse"] | components["schemas"]["JusPayExpressCheckoutResponse"] | components["schemas"]["PayuPaymentInfo"];
9225
9391
  };
9226
9392
  };
9227
9393
  };
@@ -9414,12 +9580,14 @@ interface operations {
9414
9580
  "application/json": {
9415
9581
  /** @constant */
9416
9582
  payment_gateway: "payu";
9417
- /** @description Format:
9583
+ /**
9584
+ * @description Format:
9418
9585
  * For UPI id validation,
9419
9586
  * command|{upi id}
9420
9587
  *
9421
9588
  * For saving, retrieving cards,
9422
- * command|{user id} */
9589
+ * command|{user id}
9590
+ */
9423
9591
  plain_text: string;
9424
9592
  };
9425
9593
  };
@@ -11371,37 +11539,6 @@ interface operations {
11371
11539
  404: components["responses"]["NotFound"];
11372
11540
  };
11373
11541
  };
11374
- "get-shipping-methods": {
11375
- parameters: {
11376
- query?: never;
11377
- header?: never;
11378
- path?: never;
11379
- cookie?: never;
11380
- };
11381
- requestBody: {
11382
- content: {
11383
- "application/json": components["schemas"]["CartBasedServiceabilityCheck"];
11384
- };
11385
- };
11386
- responses: {
11387
- /** @description OK */
11388
- 200: {
11389
- headers: {
11390
- [name: string]: unknown;
11391
- };
11392
- content: {
11393
- "application/json": {
11394
- message: string;
11395
- success: boolean;
11396
- content: components["schemas"]["PincodeServiceability"];
11397
- };
11398
- };
11399
- };
11400
- 400: components["responses"]["BadRequest"];
11401
- 401: components["responses"]["Unauthorized"];
11402
- 404: components["responses"]["NotFound"];
11403
- };
11404
- };
11405
11542
  "get-config": {
11406
11543
  parameters: {
11407
11544
  query?: never;
@@ -12139,13 +12276,6 @@ declare class BaseAPIClient<TPaths extends Record<string, any>, THeaders extends
12139
12276
  * @returns Current default headers
12140
12277
  */
12141
12278
  getDefaultHeaders(): THeaders | undefined;
12142
- /**
12143
- * Add middleware to the client
12144
- * This allows SDK extensions to add custom middleware like authentication
12145
- *
12146
- * @param middleware - Middleware to add to the client
12147
- */
12148
- use(middleware: any): void;
12149
12279
  }
12150
12280
  //#endregion
12151
12281
  //#region src/utils/url.d.ts
@@ -12476,16 +12606,25 @@ type GstinDetail = components['schemas']['GstinDetail'];
12476
12606
  type InapplicableCoupon = components['schemas']['InapplicableCoupon'];
12477
12607
  type InapplicablePromotion = components['schemas']['InapplicablePromotion'];
12478
12608
  type Item = components['schemas']['Item'];
12609
+ type JusPayExpressCheckout = components['schemas']['JusPayExpressCheckout'];
12610
+ type JusPayExpressCheckoutCommonField = components['schemas']['JusPayExpressCheckoutCommonField'];
12611
+ type JusPayExpressCheckoutResponse = components['schemas']['JusPayExpressCheckoutResponse'];
12612
+ type JusPayHyperCheckout = components['schemas']['JusPayHyperCheckout'];
12613
+ type JusPayHyperCheckoutResponse = components['schemas']['JusPayHyperCheckoutResponse'];
12614
+ type JusPayNewCard = components['schemas']['JusPayNewCard'];
12615
+ type JusPaySavedCardToken = components['schemas']['JusPaySavedCardToken'];
12479
12616
  type JuspayCardPayload = components['schemas']['JuspayCardPayload'];
12480
12617
  type JuspayCreateCardResponse = components['schemas']['JuspayCreateCardResponse'];
12481
12618
  type JuspayCreateCustomerPayload = components['schemas']['JuspayCreateCustomerPayload'];
12482
12619
  type JuspayCreateOrderPayload = components['schemas']['JuspayCreateOrderPayload'];
12483
12620
  type JuspayCustomer = components['schemas']['JuspayCustomer'];
12621
+ type JuspayNetBanking = components['schemas']['JuspayNetBanking'];
12484
12622
  type JuspayOrder = components['schemas']['JuspayOrder'];
12485
12623
  type JuspayPaymentGatewayParams = components['schemas']['JuspayPaymentGatewayParams'];
12486
- type JuspayPaymentInfo = components['schemas']['JuspayPaymentInfo'];
12487
12624
  type JuspayPaymentMethod = components['schemas']['JuspayPaymentMethod'];
12488
12625
  type JuspaySavedCard = components['schemas']['JuspaySavedCard'];
12626
+ type JuspayUpiCollect = components['schemas']['JuspayUpiCollect'];
12627
+ type JuspayUpiIntent = components['schemas']['JuspayUpiIntent'];
12489
12628
  type KycDocument = components['schemas']['KycDocument'];
12490
12629
  type KycDocumentConfig = components['schemas']['KycDocumentConfig'];
12491
12630
  type LotBatchDetail = components['schemas']['LotBatchDetail'];
@@ -12516,6 +12655,7 @@ type PayWithUpi = components['schemas']['PayWithUpi'];
12516
12655
  type PaymentGateway = components['schemas']['PaymentGateway'];
12517
12656
  type PaymentGatewayParams = components['schemas']['PaymentGatewayParams'];
12518
12657
  type PaymentInfo = components['schemas']['PaymentInfo'];
12658
+ type PaymentMethodPayload = components['schemas']['PaymentMethodPayload'];
12519
12659
  type PayuCardPayload = components['schemas']['PayuCardPayload'];
12520
12660
  type PayuCreateCardResponse = components['schemas']['PayuCreateCardResponse'];
12521
12661
  type PayuPaymentGatewayParams = components['schemas']['PayuPaymentGatewayParams'];
@@ -12549,6 +12689,7 @@ type PromotionType = components['schemas']['PromotionType'];
12549
12689
  type RegisterWithEmailPassword = components['schemas']['RegisterWithEmailPassword'];
12550
12690
  type RegisterWithPhonePassword = components['schemas']['RegisterWithPhonePassword'];
12551
12691
  type RevokeSubscription = components['schemas']['RevokeSubscription'];
12692
+ type SavedPaymentMethod = components['schemas']['SavedPaymentMethod'];
12552
12693
  type SearchProduct = components['schemas']['SearchProduct'];
12553
12694
  type Seo = components['schemas']['Seo'];
12554
12695
  type ShipmentItem = components['schemas']['ShipmentItem'];
@@ -12723,10 +12864,6 @@ type RedeemLoyaltyPointsBody = NonNullable<paths['/carts/{id}/loyalty-points']['
12723
12864
  type RemoveLoyaltyPointsResponse = paths['/carts/{id}/loyalty-points']['delete']['responses'][200]['content']['application/json'];
12724
12865
  type RemoveLoyaltyPointsContent = RemoveLoyaltyPointsResponse['content'];
12725
12866
  type RemoveLoyaltyPointsPathParams = paths['/carts/{id}/loyalty-points']['delete']['parameters']['path'];
12726
- type UpdateShippingMethodResponse = paths['/carts/{id}/shipping-method']['post']['responses'][200]['content']['application/json'];
12727
- type UpdateShippingMethodContent = UpdateShippingMethodResponse['content'];
12728
- type UpdateShippingMethodPathParams = paths['/carts/{id}/shipping-method']['post']['parameters']['path'];
12729
- type UpdateShippingMethodBody = NonNullable<paths['/carts/{id}/shipping-method']['post']['requestBody']>['content']['application/json'];
12730
12867
  type ListCategoriesResponse = paths['/catalog/categories']['get']['responses'][200]['content']['application/json'];
12731
12868
  type ListCategoriesContent = ListCategoriesResponse['content'];
12732
12869
  type ListCategoriesQuery = paths['/catalog/categories']['get']['parameters']['query'];
@@ -12788,6 +12925,9 @@ type ListCountryStatesPathParams = paths['/common/countries/{country_iso_code}/s
12788
12925
  type CreateCustomerResponse = paths['/customers']['post']['responses'][200]['content']['application/json'];
12789
12926
  type CreateCustomerContent = CreateCustomerResponse['content'];
12790
12927
  type CreateCustomerBody = NonNullable<paths['/customers']['post']['requestBody']>['content']['application/json'];
12928
+ type ListSavedPaymentMethodsResponse = paths['/customers/{customer_id}/payment-methods']['get']['responses'][200]['content']['application/json'];
12929
+ type ListSavedPaymentMethodsContent = ListSavedPaymentMethodsResponse['content'];
12930
+ type ListSavedPaymentMethodsPathParams = paths['/customers/{customer_id}/payment-methods']['get']['parameters']['path'];
12791
12931
  type GetCustomerDetailResponse = paths['/customers/{id}']['get']['responses'][200]['content']['application/json'];
12792
12932
  type GetCustomerDetailContent = GetCustomerDetailResponse['content'];
12793
12933
  type GetCustomerDetailPathParams = paths['/customers/{id}']['get']['parameters']['path'];
@@ -13064,9 +13204,6 @@ type GetFulfillmentOptionsBody = NonNullable<paths['/shipping/fulfillment-option
13064
13204
  type CheckPincodeServiceabilityResponse = paths['/shipping/serviceability/{pincode}']['get']['responses'][200]['content']['application/json'];
13065
13205
  type CheckPincodeServiceabilityContent = CheckPincodeServiceabilityResponse['content'];
13066
13206
  type CheckPincodeServiceabilityPathParams = paths['/shipping/serviceability/{pincode}']['get']['parameters']['path'];
13067
- type GetShippingMethodsResponse = paths['/shipping/shipping-methods']['post']['responses'][200]['content']['application/json'];
13068
- type GetShippingMethodsContent = GetShippingMethodsResponse['content'];
13069
- type GetShippingMethodsBody = NonNullable<paths['/shipping/shipping-methods']['post']['requestBody']>['content']['application/json'];
13070
13207
  type GetConfigResponse = paths['/store/config']['get']['responses'][200]['content']['application/json'];
13071
13208
  type GetConfigContent = GetConfigResponse['content'];
13072
13209
  type ListKycDocumentResponse = paths['/store/kyc-document']['get']['responses'][200]['content']['application/json'];
@@ -13890,7 +14027,7 @@ declare class CartClient extends StorefrontAPIClient {
13890
14027
  */
13891
14028
  removeLoyaltyPoints(cartId: RemoveLoyaltyPointsPathParams): Promise<ApiResult<RemoveLoyaltyPointsContent>>;
13892
14029
  /**
13893
- * Update shipping method
14030
+ * Update fulfillment preference
13894
14031
  *
13895
14032
  * @param cartId - The ID of the cart
13896
14033
  * @param body - The body of the request
@@ -14997,38 +15134,6 @@ declare class OrderClient extends StorefrontAPIClient {
14997
15134
  * Client for interacting with shipping endpoints
14998
15135
  */
14999
15136
  declare class ShippingClient extends StorefrontAPIClient {
15000
- /**
15001
- * Get shipping options for an order
15002
- *
15003
- * @param body - Shipping methods body
15004
- * @returns Promise with shipping options
15005
- * @example
15006
- * ```typescript
15007
- * const { data, error } = await sdk.shipping.getShippingMethods({
15008
- * delivery_pincode: "400001",
15009
- * cart_id: "cart_01H9XYZ12345ABCDE"
15010
- * });
15011
- *
15012
- * if (error) {
15013
- * console.error("Failed to get shipping methods:", error.message);
15014
- * } else {
15015
- * console.log("Is serviceable:", data.is_serviceable);
15016
- * console.log("Available shipping methods:", data.shipping_methods?.length || 0);
15017
- *
15018
- * data.shipping_methods?.forEach(method => {
15019
- * console.log(`Method: ${method.name} (${method.shipping_type})`);
15020
- * console.log(`Shipping cost: ${method.shipping_amount}`);
15021
- * console.log(`Estimated delivery: ${method.estimated_delivery_days} days`);
15022
- *
15023
- * method.courier_companies?.forEach(courier => {
15024
- * console.log(` - ${courier.name}: ${courier.shipping_amount} (${courier.mode})`);
15025
- * console.log(` Rating: ${courier.rating}/5, Recommended: ${courier.is_recommended}`);
15026
- * });
15027
- * });
15028
- * }
15029
- * ```
15030
- */
15031
- getShippingMethods(body: GetShippingMethodsBody): Promise<ApiResult<GetShippingMethodsContent>>;
15032
15137
  /**
15033
15138
  * Check pincode deliverability
15034
15139
  *
@@ -15054,6 +15159,45 @@ declare class ShippingClient extends StorefrontAPIClient {
15054
15159
  * ```
15055
15160
  */
15056
15161
  checkPincodeDeliverability(pathParams: CheckPincodeServiceabilityPathParams): Promise<ApiResult<CheckPincodeServiceabilityContent>>;
15162
+ /**
15163
+ * Get fulfillment options for an order
15164
+ *
15165
+ * @param body - Fulfillment options body containing cart_id and delivery_pincode
15166
+ * @returns Promise with fulfillment options including collect and delivery methods
15167
+ * @example
15168
+ * ```typescript
15169
+ * const { data, error } = await sdk.shipping.getFulfillmentOptions({
15170
+ * cart_id: "cart_01H9XYZ12345ABCDE",
15171
+ * delivery_pincode: "400001"
15172
+ * });
15173
+ *
15174
+ * if (error) {
15175
+ * console.error("Failed to get fulfillment options:", error.message);
15176
+ * } else {
15177
+ * // Check summary information
15178
+ * console.log("Collect available:", data.summary.collect_available);
15179
+ * console.log("Deliver available:", data.summary.deliver_available);
15180
+ * console.log("Recommended fulfillment type:", data.summary.recommended_fulfillment_type);
15181
+ *
15182
+ * // Access collect options
15183
+ * if (data.collect && data.collect.length > 0) {
15184
+ * console.log("Available stores for collection:");
15185
+ * data.collect.forEach(store => {
15186
+ * console.log(`${store.name} - ${store.distance_km}km away, ETA: ${store.collect_eta_minutes} minutes`);
15187
+ * });
15188
+ * }
15189
+ *
15190
+ * // Access delivery options
15191
+ * if (data.deliver && data.deliver.is_serviceable) {
15192
+ * console.log("Available shipping methods:");
15193
+ * data.deliver.shipping_methods.forEach(method => {
15194
+ * console.log(`${method.name} - ${method.shipping_amount}, ${method.estimated_delivery_days} days`);
15195
+ * });
15196
+ * }
15197
+ * }
15198
+ * ```
15199
+ */
15200
+ getFulfillmentOptions(body: GetFulfillmentOptionsBody): Promise<ApiResult<GetFulfillmentOptionsContent>>;
15057
15201
  }
15058
15202
  //#endregion
15059
15203
  //#region src/lib/helper.d.ts
@@ -15451,6 +15595,27 @@ declare class CustomerClient extends StorefrontAPIClient {
15451
15595
  * ```
15452
15596
  */
15453
15597
  listCustomerReviews(pathParams: ListUserReviewsPathParams): Promise<ApiResult<ListUserReviewsContent>>;
15598
+ /**
15599
+ * List all saved payment methods for a customer
15600
+ *
15601
+ * @param pathParams - Path parameters
15602
+ * @returns Promise with payment methods
15603
+ *
15604
+ * @example
15605
+ * ```typescript
15606
+ * const { data, error } = await sdk.customer.listSavedPaymentMethods({
15607
+ * customer_id: "customer_123"
15608
+ * });
15609
+ *
15610
+ * if (error) {
15611
+ * console.error("Failed to list saved payment methods:", error);
15612
+ * return;
15613
+ * }
15614
+ *
15615
+ * console.log("Saved payment methods:", data.saved_payment_methods);
15616
+ * ```
15617
+ */
15618
+ listSavedPaymentMethods(pathParams: ListSavedPaymentMethodsPathParams): Promise<ApiResult<ListSavedPaymentMethodsContent>>;
15454
15619
  }
15455
15620
  //#endregion
15456
15621
  //#region src/lib/store-config.d.ts
@@ -15804,5 +15969,5 @@ declare class StorefrontSDK {
15804
15969
  getDefaultHeaders(): SupportedDefaultHeaders | undefined;
15805
15970
  }
15806
15971
  //#endregion
15807
- export { AcceleratedRewardCouponPromotion, AcceleratedRewardRule, AddCardBody, AddCardContent, AddCardResponse, AddProfileImageContent, AddProfileImageFormData, AddProfileImagePathParams, AddProfileImageResponse, AddToWishlistBody, AddToWishlistContent, AddToWishlistPathParams, AddToWishlistResponse, AdditionalProductDetails, AnalyticsEvent, AnonymousUser, ApiErrorResponse, ApiResult, ApplicableCoupon, ApplicablePromotion, AppliedCoupon, AppliedPromotion, ApplyCouponBody, ApplyCouponContent, ApplyCouponPathParams, ApplyCouponResponse, AssociatedOption, AuthClient, AutoScaleBasedOnAmount, AutoScaleBasedOnQuantity, BankTransfer, BaseAPIClient, BaseSDKOptions, BooleanAttribute, Brand, BrowserTokenStorage, Business, BuyXGetYCouponPromotion, BuyXGetYRule, BuyXGetYRuleBasedOnAmount, BuyXGetYRuleBasedOnQuantity, CancelOrderBody, CancelOrderContent, CancelOrderPathParams, CancelOrderResponse, CardPayment, Cart, CartBasedServiceabilityCheck, CartClient, CartItem, CatalogClient, Category, ChangePasswordBody, ChangePasswordContent, ChangePasswordResponse, type Channel, CheckPincodeServiceabilityContent, CheckPincodeServiceabilityPathParams, CheckPincodeServiceabilityResponse, CheckVerificationStatusBody, CheckVerificationStatusContent, CheckVerificationStatusResponse, ClaimPosDeviceContent, ClaimPosDevicePathParams, ClaimPosDeviceResponse, CollectInStore, CollectInStoreFulfillment, ColorAttribute, ColorOption, CookieTokenStorage, type CookieTokenStorageOptions, Country, CountryState, Coupon, CouponPromotionCommonDetail, CouponType, CreateAddressBody, CreateAddressContent, CreateAddressPathParams, CreateAddressResponse, CreateCartAddressBody, CreateCartAddressContent, CreateCartAddressPathParams, CreateCartAddressResponse, CreateCartBody, CreateCartContent, CreateCartResponse, CreateCustomSubscription, CreateCustomer, CreateCustomerBody, CreateCustomerContent, CreateCustomerResponse, CreateDocumentContent, CreateDocumentFormData, CreateDocumentPathParams, CreateDocumentResponse, CreateJuspayCustomerBody, CreateJuspayCustomerContent, CreateJuspayCustomerResponse, CreateJuspayOrderBody, CreateJuspayOrderContent, CreateJuspayOrderResponse, CreateNotificationPreferencesBody, CreateNotificationPreferencesContent, CreateNotificationPreferencesPathParams, CreateNotificationPreferencesResponse, CreateOrderBody, CreateOrderContent, CreateOrderResponse, CreateOrderReturn, CreateOrderReturnBody, CreateOrderReturnContent, CreateOrderReturnPathParams, CreateOrderReturnResponse, CreatePosOrderBody, CreatePosOrderContent, CreatePosOrderResponse, CreateProductReviewFormData, CreateProductReviewPathParams, CreateProductReviewResponse, CreateReview, CreateStandardSubscription, CreateSubscription, CreateSubscriptionBody, CreateSubscriptionContent, CreateSubscriptionResponse, Currency, CustomSlabsBasedOnAmount, CustomSlabsBasedOnQuantity, CustomerAddress, CustomerClient, CustomerDetail, CustomerGroup, CustomerLoyalty, CustomerReadyForReview, CustomerReview, DateAttribute, DeactivateUserPathParams, DeactivateUserResponse, DebugLogger, DebugLoggerFn, DeleteAddressPathParams, DeleteAddressResponse, DeleteCartPathParams, DeleteCartResponse, DeleteDocumentPathParams, DeleteDocumentResponse, DeleteFromWishlistBody, DeleteFromWishlistContent, DeleteFromWishlistPathParams, DeleteFromWishlistResponse, DeleteUserCartPathParams, DeleteUserCartResponse, DeliveryFulfillment, DiscountBasedPromotion, DiscountCouponPromotion, DiscountRule, Document, Environment, EvaluateCouponsContent, EvaluateCouponsPathParams, EvaluateCouponsResponse, EvaluatePromotionsContent, EvaluatePromotionsPathParams, EvaluatePromotionsResponse, FixedAmountDiscountRule, FixedPriceCouponPromotion, FixedPricePromotion, FixedPriceRule, FixedPriceRuleBasedAmount, FixedPriceRuleBasedQuantity, ForgotPasswordBody, ForgotPasswordContent, ForgotPasswordResponse, FreeGoodCouponPromotion, FreeGoodsPromotion, FreeGoodsRule, FreeShipingCouponPromotion, FulfillmentItem, FulfillmentPreference, GenerateHashBody, GenerateHashContent, GenerateHashResponse, GenerateOtpBody, GenerateOtpContent, GenerateOtpHeaderParams, GenerateOtpResponse, GenerateOtpWithEmail, GenerateOtpWithPhone, GetAddressDetailContent, GetAddressDetailPathParams, GetAddressDetailResponse, GetAnonymousTokenContent, GetAnonymousTokenResponse, GetCartContent, GetCartPathParams, GetCartResponse, GetConfigContent, GetConfigResponse, GetCustomerDetailContent, GetCustomerDetailPathParams, GetCustomerDetailResponse, GetDocumentContent, GetDocumentPathParams, GetDocumentResponse, GetFulfillmentOptionsBody, GetFulfillmentOptionsContent, GetFulfillmentOptionsResponse, GetJuspayCustomerContent, GetJuspayCustomerPathParams, GetJuspayCustomerResponse, GetLoyaltyDetailsContent, GetLoyaltyDetailsPathParams, GetLoyaltyDetailsResponse, GetNotificationPreferencesContent, GetNotificationPreferencesPathParams, GetNotificationPreferencesResponse, GetOrderDetailContent, GetOrderDetailPathParams, GetOrderDetailResponse, GetOrderReturnDetailContent, GetOrderReturnDetailPathParams, GetOrderReturnDetailResponse, GetPaymentStatusContent, GetPaymentStatusPathParams, GetPaymentStatusResponse, GetPosFulfillmentOptionsBody, GetPosFulfillmentOptionsContent, GetPosFulfillmentOptionsResponse, GetPosUserContent, GetPosUserPathParams, GetPosUserResponse, GetProductDetailContent, GetProductDetailHeaderParams, GetProductDetailPathParams, GetProductDetailQuery, GetProductDetailResponse, GetProfileImageContent, GetProfileImagePathParams, GetProfileImageResponse, GetShippingMethodsBody, GetShippingMethodsContent, GetShippingMethodsResponse, GetSubscriptionContent, GetSubscriptionPathParams, GetSubscriptionResponse, GetUserCartContent, GetUserCartPathParams, GetUserCartResponse, GetUserDetailContent, GetUserDetailPathParams, GetUserDetailResponse, GetVariantDetailContent, GetVariantDetailHeaderParams, GetVariantDetailPathParams, GetVariantDetailQuery, GetVariantDetailResponse, GetWishlistContent, GetWishlistPathParams, GetWishlistResponse, GstinDetail, HeaderConfig, HelpersClient, InapplicableCoupon, InapplicablePromotion, Item, JuspayCardPayload, JuspayCreateCardResponse, JuspayCreateCustomerPayload, JuspayCreateOrderPayload, JuspayCustomer, JuspayOrder, JuspayPaymentGatewayParams, JuspayPaymentInfo, JuspayPaymentMethod, JuspaySavedCard, KycDocument, KycDocumentConfig, ListAddressesContent, ListAddressesPathParams, ListAddressesQuery, ListAddressesResponse, ListCategoriesContent, ListCategoriesQuery, ListCategoriesResponse, ListCountriesContent, ListCountriesResponse, ListCountryPincodesContent, ListCountryPincodesPathParams, ListCountryPincodesQuery, ListCountryPincodesResponse, ListCountryStatesContent, ListCountryStatesPathParams, ListCountryStatesResponse, ListCouponsContent, ListCouponsHeaderParams, ListCouponsResponse, ListCrosssellProductsContent, ListCrosssellProductsHeaderParams, ListCrosssellProductsQuery, ListCrosssellProductsResponse, ListDocumentsContent, ListDocumentsPathParams, ListDocumentsResponse, ListKycDocumentContent, ListKycDocumentResponse, ListLoyaltyActivitiesContent, ListLoyaltyActivitiesPathParams, ListLoyaltyActivitiesQuery, ListLoyaltyActivitiesResponse, ListOrderPaymentsContent, ListOrderPaymentsPathParams, ListOrderPaymentsResponse, ListOrderRefundsContent, ListOrderRefundsPathParams, ListOrderRefundsResponse, ListOrderShipmentsContent, ListOrderShipmentsPathParams, ListOrderShipmentsResponse, ListOrdersContent, ListOrdersQuery, ListOrdersResponse, ListPaymentMethodsContent, ListPaymentMethodsQuery, ListPaymentMethodsResponse, ListPaymentOptionsContent, ListPaymentOptionsResponse, ListPosDevicesContent, ListPosDevicesResponse, ListPosLocationsContent, ListPosLocationsResponse, ListProductReviewsContent, ListProductReviewsPathParams, ListProductReviewsQuery, ListProductReviewsResponse, ListProductVariantsContent, ListProductVariantsHeaderParams, ListProductVariantsPathParams, ListProductVariantsQuery, ListProductVariantsResponse, ListProductsContent, ListProductsHeaderParams, ListProductsQuery, ListProductsResponse, ListPromotionsContent, ListPromotionsHeaderParams, ListPromotionsResponse, ListReturnsContent, ListReturnsResponse, ListSavedCardsContent, ListSavedCardsQuery, ListSavedCardsResponse, ListSimilarProductsContent, ListSimilarProductsHeaderParams, ListSimilarProductsQuery, ListSimilarProductsResponse, ListSkusContent, ListSkusHeaderParams, ListSkusQuery, ListSkusResponse, ListSubscriptionsContent, ListSubscriptionsResponse, ListUpsellProductsContent, ListUpsellProductsHeaderParams, ListUpsellProductsQuery, ListUpsellProductsResponse, ListUserReviewsContent, ListUserReviewsPathParams, ListUserReviewsResponse, LoginPosDeviceWithEmailBody, LoginPosDeviceWithEmailContent, LoginPosDeviceWithEmailHeaderParams, LoginPosDeviceWithEmailResponse, LoginPosDeviceWithPhoneBody, LoginPosDeviceWithPhoneContent, LoginPosDeviceWithPhoneHeaderParams, LoginPosDeviceWithPhoneResponse, LoginPosDeviceWithWhatsappBody, LoginPosDeviceWithWhatsappContent, LoginPosDeviceWithWhatsappHeaderParams, LoginPosDeviceWithWhatsappResponse, LoginWithEmailBody, LoginWithEmailContent, LoginWithEmailHeaderParams, LoginWithEmailResponse, LoginWithPasswordBody, LoginWithPasswordContent, LoginWithPasswordResponse, LoginWithPhoneBody, LoginWithPhoneContent, LoginWithPhoneHeaderParams, LoginWithPhoneResponse, LoginWithWhatsappBody, LoginWithWhatsappContent, LoginWithWhatsappHeaderParams, LoginWithWhatsappResponse, LogoutContent, LogoutFromPosDeviceResponse, LogoutResponse, LotBatchDetail, LoyaltyPointActivity, MeasurementUnit, MemoryTokenStorage, MultiSelectAttribute, NetbankingPayment, NotificationChannelPreferences, NotificationPreferences, NumberAttribute, Order, OrderClient, OrderDetail, OrderItem, OrderList, OrderPayment, OrderRefund, OrderReturn, OrderReturnItem, OrderShipment, Pagination, PairPosDeviceBody, PairPosDeviceContent, PairPosDeviceResponse, PanDetail, PartialCollectAndDelivery, PauseSubscription, PayWithCard, PayWithCash, PayWithPaymentGateway, PayWithUpi, PaymentGateway, PaymentGatewayParams, PaymentInfo, PayuCardPayload, PayuCreateCardResponse, PayuPaymentGatewayParams, PayuPaymentInfo, PayuPaymentMethod, PayuSavedCard, PercentageDiscountRule, Pincode, PincodeServiceability, PosApplyCouponBody, PosApplyCouponContent, PosApplyCouponPathParams, PosApplyCouponResponse, PosCreateCartAddressBody, PosCreateCartAddressContent, PosCreateCartAddressPathParams, PosCreateCartAddressResponse, PosCreateCartBody, PosCreateCartContent, PosCreateCartResponse, PosDeleteCartPathParams, PosDeleteCartResponse, PosDevice, PosDeviceClaimedUser, PosEvaluateCouponsContent, PosEvaluateCouponsPathParams, PosEvaluateCouponsResponse, PosEvaluatePromotionsContent, PosEvaluatePromotionsPathParams, PosEvaluatePromotionsResponse, PosGetCartContent, PosGetCartPathParams, PosGetCartResponse, PosGetPaymentStatusContent, PosGetPaymentStatusPathParams, PosGetPaymentStatusResponse, PosGetProductDetailContent, PosGetProductDetailHeaderParams, PosGetProductDetailPathParams, PosGetProductDetailQuery, PosGetProductDetailResponse, PosGetUserCartContent, PosGetUserCartPathParams, PosGetUserCartResponse, PosGetVariantDetailContent, PosGetVariantDetailHeaderParams, PosGetVariantDetailPathParams, PosGetVariantDetailQuery, PosGetVariantDetailResponse, PosListCategoriesContent, PosListCategoriesQuery, PosListCategoriesResponse, PosListCouponsContent, PosListCouponsHeaderParams, PosListCouponsResponse, PosListCrosssellProductsContent, PosListCrosssellProductsHeaderParams, PosListCrosssellProductsQuery, PosListCrosssellProductsResponse, PosListPaymentOptionsContent, PosListPaymentOptionsResponse, PosListProductReviewsContent, PosListProductReviewsPathParams, PosListProductReviewsQuery, PosListProductReviewsResponse, PosListProductVariantsContent, PosListProductVariantsHeaderParams, PosListProductVariantsPathParams, PosListProductVariantsQuery, PosListProductVariantsResponse, PosListProductsContent, PosListProductsHeaderParams, PosListProductsQuery, PosListProductsResponse, PosListPromotionsContent, PosListPromotionsHeaderParams, PosListPromotionsResponse, PosListSimilarProductsContent, PosListSimilarProductsHeaderParams, PosListSimilarProductsQuery, PosListSimilarProductsResponse, PosListSkusContent, PosListSkusHeaderParams, PosListSkusQuery, PosListSkusResponse, PosListUpsellProductsContent, PosListUpsellProductsHeaderParams, PosListUpsellProductsQuery, PosListUpsellProductsResponse, PosLocation, PosRedeemCreditBalanceBody, PosRedeemCreditBalanceContent, PosRedeemCreditBalancePathParams, PosRedeemCreditBalanceResponse, PosRedeemLoyaltyPointsBody, PosRedeemLoyaltyPointsContent, PosRedeemLoyaltyPointsPathParams, PosRedeemLoyaltyPointsResponse, PosRemoveCouponContent, PosRemoveCouponPathParams, PosRemoveCouponResponse, PosRemoveCreditBalanceContent, PosRemoveCreditBalancePathParams, PosRemoveCreditBalanceResponse, PosRemoveLoyaltyPointsContent, PosRemoveLoyaltyPointsPathParams, PosRemoveLoyaltyPointsResponse, PosSearchProductsBody, PosSearchProductsContent, PosSearchProductsHeaderParams, PosSearchProductsResponse, PosUpdateCartBody, PosUpdateCartContent, PosUpdateCartPathParams, PosUpdateCartResponse, PosUpdateCustomerWithEmail, PosUpdateCustomerWithId, PosUpdateCustomerWithPhone, PosUpdateFulfillmentPreferenceBody, PosUpdateFulfillmentPreferenceContent, PosUpdateFulfillmentPreferencePathParams, PosUpdateFulfillmentPreferenceResponse, PosUser, Product, ProductAttribute, ProductBundleItem, ProductCategory, ProductDetail, ProductImage, ProductPricing, ProductPromotion, ProductReview, ProductShipping, ProductSubscription, ProductVideo, Promotion, PromotionType, RedeemCreditBalanceBody, RedeemCreditBalanceContent, RedeemCreditBalancePathParams, RedeemCreditBalanceResponse, RedeemLoyaltyPointsBody, RedeemLoyaltyPointsContent, RedeemLoyaltyPointsPathParams, RedeemLoyaltyPointsResponse, RefreshPosAccessTokenBody, RefreshPosAccessTokenContent, RefreshPosAccessTokenResponse, RefreshTokenBody, RefreshTokenContent, RefreshTokenResponse, RegisterWithEmailBody, RegisterWithEmailContent, RegisterWithEmailPassword, RegisterWithEmailResponse, RegisterWithPasswordBody, RegisterWithPasswordContent, RegisterWithPasswordResponse, RegisterWithPhoneBody, RegisterWithPhoneContent, RegisterWithPhonePassword, RegisterWithPhoneResponse, RegisterWithWhatsappBody, RegisterWithWhatsappContent, RegisterWithWhatsappResponse, RemoveCouponContent, RemoveCouponPathParams, RemoveCouponResponse, RemoveCreditBalanceContent, RemoveCreditBalancePathParams, RemoveCreditBalanceResponse, RemoveLoyaltyPointsContent, RemoveLoyaltyPointsPathParams, RemoveLoyaltyPointsResponse, RemoveProfileImagePathParams, RemoveProfileImageResponse, ResetPasswordBody, ResetPasswordContent, ResetPasswordResponse, ResponseUtils, RetryOrderPaymentBody, RetryOrderPaymentContent, RetryOrderPaymentPathParams, RetryOrderPaymentResponse, RevokeSubscription, SearchProduct, SearchProductsBody, SearchProductsContent, SearchProductsHeaderParams, SearchProductsResponse, Seo, ShipmentItem, ShippingClient, SingleSelectAttribute, SingleSelectOption, StoreConfig, StoreConfigClient, StoreTemplate, StorefrontAPIClient, StorefrontSDK, StorefrontSDK as default, StorefrontSDKOptions, SubscribeNewsletterBody, SubscribeNewsletterResponse, Subscription, SubscriptionBehaviour, SubscriptionDetail, SubscriptionInvoiceItem, SupportedDefaultHeaders, TextAttribute, type TokenStorage, TrackAnalyticsEventBody, TrackAnalyticsEventResponse, UnclaimPosDeviceContent, UnclaimPosDevicePathParams, UnclaimPosDeviceResponse, UpdateAddressDetailBody, UpdateAddressDetailContent, UpdateAddressDetailPathParams, UpdateAddressDetailResponse, UpdateCartBody, UpdateCartContent, UpdateCartItem, UpdateCartPathParams, UpdateCartResponse, UpdateCustomer, UpdateCustomerBody, UpdateCustomerContent, UpdateCustomerPathParams, UpdateCustomerResponse, UpdateDigitalProductSubscription, UpdateDocument, UpdateDocumentContent, UpdateDocumentFormData, UpdateDocumentPathParams, UpdateDocumentResponse, UpdateFulfillmentPreferenceBody, UpdateFulfillmentPreferenceContent, UpdateFulfillmentPreferencePathParams, UpdateFulfillmentPreferenceResponse, UpdateNotificationPreferencesBody, UpdateNotificationPreferencesContent, UpdateNotificationPreferencesPathParams, UpdateNotificationPreferencesResponse, UpdatePhysicalProductSubscription, UpdatePosCartCustomerBody, UpdatePosCartCustomerContent, UpdatePosCartCustomerPathParams, UpdatePosCartCustomerResponse, UpdateProfileImageContent, UpdateProfileImageFormData, UpdateProfileImagePathParams, UpdateProfileImageResponse, UpdateShippingMethodBody, UpdateShippingMethodContent, UpdateShippingMethodPathParams, UpdateShippingMethodResponse, UpdateSubscriptionBody, UpdateSubscriptionContent, UpdateSubscriptionPathParams, UpdateSubscriptionResponse, UpdateUserBody, UpdateUserContent, UpdateUserPathParams, UpdateUserResponse, UpiPayment, User, type UserInfo, Variant, VariantDetail, VariantOption, VerifyDocumentBody, VerifyDocumentContent, VerifyDocumentPathParams, VerifyDocumentResponse, VerifyOtpBody, VerifyOtpContent, VerifyOtpResponse, VerifyPosLoginOtpBody, VerifyPosLoginOtpContent, VerifyPosLoginOtpResponse, VerifyVpaContent, VerifyVpaQuery, VerifyVpaResponse, VolumeBasedCouponPromotion, VolumeBasedPromotion, VolumeBasedRule, WalletPayment, type components, createDebugMiddleware, createTimeoutMiddleware, executeRequest, extractRequestBody, getPathnameFromUrl, mergeAndTransformHeaders, mergeHeaders, type operations, type paths, transformHeaders };
15972
+ export { AcceleratedRewardCouponPromotion, AcceleratedRewardRule, AddCardBody, AddCardContent, AddCardResponse, AddProfileImageContent, AddProfileImageFormData, AddProfileImagePathParams, AddProfileImageResponse, AddToWishlistBody, AddToWishlistContent, AddToWishlistPathParams, AddToWishlistResponse, AdditionalProductDetails, AnalyticsEvent, AnonymousUser, ApiErrorResponse, ApiResult, ApplicableCoupon, ApplicablePromotion, AppliedCoupon, AppliedPromotion, ApplyCouponBody, ApplyCouponContent, ApplyCouponPathParams, ApplyCouponResponse, AssociatedOption, AuthClient, AutoScaleBasedOnAmount, AutoScaleBasedOnQuantity, BankTransfer, BaseAPIClient, BaseSDKOptions, BooleanAttribute, Brand, BrowserTokenStorage, Business, BuyXGetYCouponPromotion, BuyXGetYRule, BuyXGetYRuleBasedOnAmount, BuyXGetYRuleBasedOnQuantity, CancelOrderBody, CancelOrderContent, CancelOrderPathParams, CancelOrderResponse, CardPayment, Cart, CartBasedServiceabilityCheck, CartClient, CartItem, CatalogClient, Category, ChangePasswordBody, ChangePasswordContent, ChangePasswordResponse, type Channel, CheckPincodeServiceabilityContent, CheckPincodeServiceabilityPathParams, CheckPincodeServiceabilityResponse, CheckVerificationStatusBody, CheckVerificationStatusContent, CheckVerificationStatusResponse, ClaimPosDeviceContent, ClaimPosDevicePathParams, ClaimPosDeviceResponse, CollectInStore, CollectInStoreFulfillment, ColorAttribute, ColorOption, CookieTokenStorage, type CookieTokenStorageOptions, Country, CountryState, Coupon, CouponPromotionCommonDetail, CouponType, CreateAddressBody, CreateAddressContent, CreateAddressPathParams, CreateAddressResponse, CreateCartAddressBody, CreateCartAddressContent, CreateCartAddressPathParams, CreateCartAddressResponse, CreateCartBody, CreateCartContent, CreateCartResponse, CreateCustomSubscription, CreateCustomer, CreateCustomerBody, CreateCustomerContent, CreateCustomerResponse, CreateDocumentContent, CreateDocumentFormData, CreateDocumentPathParams, CreateDocumentResponse, CreateJuspayCustomerBody, CreateJuspayCustomerContent, CreateJuspayCustomerResponse, CreateJuspayOrderBody, CreateJuspayOrderContent, CreateJuspayOrderResponse, CreateNotificationPreferencesBody, CreateNotificationPreferencesContent, CreateNotificationPreferencesPathParams, CreateNotificationPreferencesResponse, CreateOrderBody, CreateOrderContent, CreateOrderResponse, CreateOrderReturn, CreateOrderReturnBody, CreateOrderReturnContent, CreateOrderReturnPathParams, CreateOrderReturnResponse, CreatePosOrderBody, CreatePosOrderContent, CreatePosOrderResponse, CreateProductReviewFormData, CreateProductReviewPathParams, CreateProductReviewResponse, CreateReview, CreateStandardSubscription, CreateSubscription, CreateSubscriptionBody, CreateSubscriptionContent, CreateSubscriptionResponse, Currency, CustomSlabsBasedOnAmount, CustomSlabsBasedOnQuantity, CustomerAddress, CustomerClient, CustomerDetail, CustomerGroup, CustomerLoyalty, CustomerReadyForReview, CustomerReview, DateAttribute, DeactivateUserPathParams, DeactivateUserResponse, DebugLogger, DebugLoggerFn, DeleteAddressPathParams, DeleteAddressResponse, DeleteCartPathParams, DeleteCartResponse, DeleteDocumentPathParams, DeleteDocumentResponse, DeleteFromWishlistBody, DeleteFromWishlistContent, DeleteFromWishlistPathParams, DeleteFromWishlistResponse, DeleteUserCartPathParams, DeleteUserCartResponse, DeliveryFulfillment, DiscountBasedPromotion, DiscountCouponPromotion, DiscountRule, Document, Environment, EvaluateCouponsContent, EvaluateCouponsPathParams, EvaluateCouponsResponse, EvaluatePromotionsContent, EvaluatePromotionsPathParams, EvaluatePromotionsResponse, FixedAmountDiscountRule, FixedPriceCouponPromotion, FixedPricePromotion, FixedPriceRule, FixedPriceRuleBasedAmount, FixedPriceRuleBasedQuantity, ForgotPasswordBody, ForgotPasswordContent, ForgotPasswordResponse, FreeGoodCouponPromotion, FreeGoodsPromotion, FreeGoodsRule, FreeShipingCouponPromotion, FulfillmentItem, FulfillmentPreference, GenerateHashBody, GenerateHashContent, GenerateHashResponse, GenerateOtpBody, GenerateOtpContent, GenerateOtpHeaderParams, GenerateOtpResponse, GenerateOtpWithEmail, GenerateOtpWithPhone, GetAddressDetailContent, GetAddressDetailPathParams, GetAddressDetailResponse, GetAnonymousTokenContent, GetAnonymousTokenResponse, GetCartContent, GetCartPathParams, GetCartResponse, GetConfigContent, GetConfigResponse, GetCustomerDetailContent, GetCustomerDetailPathParams, GetCustomerDetailResponse, GetDocumentContent, GetDocumentPathParams, GetDocumentResponse, GetFulfillmentOptionsBody, GetFulfillmentOptionsContent, GetFulfillmentOptionsResponse, GetJuspayCustomerContent, GetJuspayCustomerPathParams, GetJuspayCustomerResponse, GetLoyaltyDetailsContent, GetLoyaltyDetailsPathParams, GetLoyaltyDetailsResponse, GetNotificationPreferencesContent, GetNotificationPreferencesPathParams, GetNotificationPreferencesResponse, GetOrderDetailContent, GetOrderDetailPathParams, GetOrderDetailResponse, GetOrderReturnDetailContent, GetOrderReturnDetailPathParams, GetOrderReturnDetailResponse, GetPaymentStatusContent, GetPaymentStatusPathParams, GetPaymentStatusResponse, GetPosFulfillmentOptionsBody, GetPosFulfillmentOptionsContent, GetPosFulfillmentOptionsResponse, GetPosUserContent, GetPosUserPathParams, GetPosUserResponse, GetProductDetailContent, GetProductDetailHeaderParams, GetProductDetailPathParams, GetProductDetailQuery, GetProductDetailResponse, GetProfileImageContent, GetProfileImagePathParams, GetProfileImageResponse, GetSubscriptionContent, GetSubscriptionPathParams, GetSubscriptionResponse, GetUserCartContent, GetUserCartPathParams, GetUserCartResponse, GetUserDetailContent, GetUserDetailPathParams, GetUserDetailResponse, GetVariantDetailContent, GetVariantDetailHeaderParams, GetVariantDetailPathParams, GetVariantDetailQuery, GetVariantDetailResponse, GetWishlistContent, GetWishlistPathParams, GetWishlistResponse, GstinDetail, HeaderConfig, HelpersClient, InapplicableCoupon, InapplicablePromotion, Item, JusPayExpressCheckout, JusPayExpressCheckoutCommonField, JusPayExpressCheckoutResponse, JusPayHyperCheckout, JusPayHyperCheckoutResponse, JusPayNewCard, JusPaySavedCardToken, JuspayCardPayload, JuspayCreateCardResponse, JuspayCreateCustomerPayload, JuspayCreateOrderPayload, JuspayCustomer, JuspayNetBanking, JuspayOrder, JuspayPaymentGatewayParams, JuspayPaymentMethod, JuspaySavedCard, JuspayUpiCollect, JuspayUpiIntent, KycDocument, KycDocumentConfig, ListAddressesContent, ListAddressesPathParams, ListAddressesQuery, ListAddressesResponse, ListCategoriesContent, ListCategoriesQuery, ListCategoriesResponse, ListCountriesContent, ListCountriesResponse, ListCountryPincodesContent, ListCountryPincodesPathParams, ListCountryPincodesQuery, ListCountryPincodesResponse, ListCountryStatesContent, ListCountryStatesPathParams, ListCountryStatesResponse, ListCouponsContent, ListCouponsHeaderParams, ListCouponsResponse, ListCrosssellProductsContent, ListCrosssellProductsHeaderParams, ListCrosssellProductsQuery, ListCrosssellProductsResponse, ListDocumentsContent, ListDocumentsPathParams, ListDocumentsResponse, ListKycDocumentContent, ListKycDocumentResponse, ListLoyaltyActivitiesContent, ListLoyaltyActivitiesPathParams, ListLoyaltyActivitiesQuery, ListLoyaltyActivitiesResponse, ListOrderPaymentsContent, ListOrderPaymentsPathParams, ListOrderPaymentsResponse, ListOrderRefundsContent, ListOrderRefundsPathParams, ListOrderRefundsResponse, ListOrderShipmentsContent, ListOrderShipmentsPathParams, ListOrderShipmentsResponse, ListOrdersContent, ListOrdersQuery, ListOrdersResponse, ListPaymentMethodsContent, ListPaymentMethodsQuery, ListPaymentMethodsResponse, ListPaymentOptionsContent, ListPaymentOptionsResponse, ListPosDevicesContent, ListPosDevicesResponse, ListPosLocationsContent, ListPosLocationsResponse, ListProductReviewsContent, ListProductReviewsPathParams, ListProductReviewsQuery, ListProductReviewsResponse, ListProductVariantsContent, ListProductVariantsHeaderParams, ListProductVariantsPathParams, ListProductVariantsQuery, ListProductVariantsResponse, ListProductsContent, ListProductsHeaderParams, ListProductsQuery, ListProductsResponse, ListPromotionsContent, ListPromotionsHeaderParams, ListPromotionsResponse, ListReturnsContent, ListReturnsResponse, ListSavedCardsContent, ListSavedCardsQuery, ListSavedCardsResponse, ListSavedPaymentMethodsContent, ListSavedPaymentMethodsPathParams, ListSavedPaymentMethodsResponse, ListSimilarProductsContent, ListSimilarProductsHeaderParams, ListSimilarProductsQuery, ListSimilarProductsResponse, ListSkusContent, ListSkusHeaderParams, ListSkusQuery, ListSkusResponse, ListSubscriptionsContent, ListSubscriptionsResponse, ListUpsellProductsContent, ListUpsellProductsHeaderParams, ListUpsellProductsQuery, ListUpsellProductsResponse, ListUserReviewsContent, ListUserReviewsPathParams, ListUserReviewsResponse, LoginPosDeviceWithEmailBody, LoginPosDeviceWithEmailContent, LoginPosDeviceWithEmailHeaderParams, LoginPosDeviceWithEmailResponse, LoginPosDeviceWithPhoneBody, LoginPosDeviceWithPhoneContent, LoginPosDeviceWithPhoneHeaderParams, LoginPosDeviceWithPhoneResponse, LoginPosDeviceWithWhatsappBody, LoginPosDeviceWithWhatsappContent, LoginPosDeviceWithWhatsappHeaderParams, LoginPosDeviceWithWhatsappResponse, LoginWithEmailBody, LoginWithEmailContent, LoginWithEmailHeaderParams, LoginWithEmailResponse, LoginWithPasswordBody, LoginWithPasswordContent, LoginWithPasswordResponse, LoginWithPhoneBody, LoginWithPhoneContent, LoginWithPhoneHeaderParams, LoginWithPhoneResponse, LoginWithWhatsappBody, LoginWithWhatsappContent, LoginWithWhatsappHeaderParams, LoginWithWhatsappResponse, LogoutContent, LogoutFromPosDeviceResponse, LogoutResponse, LotBatchDetail, LoyaltyPointActivity, MeasurementUnit, MemoryTokenStorage, MultiSelectAttribute, NetbankingPayment, NotificationChannelPreferences, NotificationPreferences, NumberAttribute, Order, OrderClient, OrderDetail, OrderItem, OrderList, OrderPayment, OrderRefund, OrderReturn, OrderReturnItem, OrderShipment, Pagination, PairPosDeviceBody, PairPosDeviceContent, PairPosDeviceResponse, PanDetail, PartialCollectAndDelivery, PauseSubscription, PayWithCard, PayWithCash, PayWithPaymentGateway, PayWithUpi, PaymentGateway, PaymentGatewayParams, PaymentInfo, PaymentMethodPayload, PayuCardPayload, PayuCreateCardResponse, PayuPaymentGatewayParams, PayuPaymentInfo, PayuPaymentMethod, PayuSavedCard, PercentageDiscountRule, Pincode, PincodeServiceability, PosApplyCouponBody, PosApplyCouponContent, PosApplyCouponPathParams, PosApplyCouponResponse, PosCreateCartAddressBody, PosCreateCartAddressContent, PosCreateCartAddressPathParams, PosCreateCartAddressResponse, PosCreateCartBody, PosCreateCartContent, PosCreateCartResponse, PosDeleteCartPathParams, PosDeleteCartResponse, PosDevice, PosDeviceClaimedUser, PosEvaluateCouponsContent, PosEvaluateCouponsPathParams, PosEvaluateCouponsResponse, PosEvaluatePromotionsContent, PosEvaluatePromotionsPathParams, PosEvaluatePromotionsResponse, PosGetCartContent, PosGetCartPathParams, PosGetCartResponse, PosGetPaymentStatusContent, PosGetPaymentStatusPathParams, PosGetPaymentStatusResponse, PosGetProductDetailContent, PosGetProductDetailHeaderParams, PosGetProductDetailPathParams, PosGetProductDetailQuery, PosGetProductDetailResponse, PosGetUserCartContent, PosGetUserCartPathParams, PosGetUserCartResponse, PosGetVariantDetailContent, PosGetVariantDetailHeaderParams, PosGetVariantDetailPathParams, PosGetVariantDetailQuery, PosGetVariantDetailResponse, PosListCategoriesContent, PosListCategoriesQuery, PosListCategoriesResponse, PosListCouponsContent, PosListCouponsHeaderParams, PosListCouponsResponse, PosListCrosssellProductsContent, PosListCrosssellProductsHeaderParams, PosListCrosssellProductsQuery, PosListCrosssellProductsResponse, PosListPaymentOptionsContent, PosListPaymentOptionsResponse, PosListProductReviewsContent, PosListProductReviewsPathParams, PosListProductReviewsQuery, PosListProductReviewsResponse, PosListProductVariantsContent, PosListProductVariantsHeaderParams, PosListProductVariantsPathParams, PosListProductVariantsQuery, PosListProductVariantsResponse, PosListProductsContent, PosListProductsHeaderParams, PosListProductsQuery, PosListProductsResponse, PosListPromotionsContent, PosListPromotionsHeaderParams, PosListPromotionsResponse, PosListSimilarProductsContent, PosListSimilarProductsHeaderParams, PosListSimilarProductsQuery, PosListSimilarProductsResponse, PosListSkusContent, PosListSkusHeaderParams, PosListSkusQuery, PosListSkusResponse, PosListUpsellProductsContent, PosListUpsellProductsHeaderParams, PosListUpsellProductsQuery, PosListUpsellProductsResponse, PosLocation, PosRedeemCreditBalanceBody, PosRedeemCreditBalanceContent, PosRedeemCreditBalancePathParams, PosRedeemCreditBalanceResponse, PosRedeemLoyaltyPointsBody, PosRedeemLoyaltyPointsContent, PosRedeemLoyaltyPointsPathParams, PosRedeemLoyaltyPointsResponse, PosRemoveCouponContent, PosRemoveCouponPathParams, PosRemoveCouponResponse, PosRemoveCreditBalanceContent, PosRemoveCreditBalancePathParams, PosRemoveCreditBalanceResponse, PosRemoveLoyaltyPointsContent, PosRemoveLoyaltyPointsPathParams, PosRemoveLoyaltyPointsResponse, PosSearchProductsBody, PosSearchProductsContent, PosSearchProductsHeaderParams, PosSearchProductsResponse, PosUpdateCartBody, PosUpdateCartContent, PosUpdateCartPathParams, PosUpdateCartResponse, PosUpdateCustomerWithEmail, PosUpdateCustomerWithId, PosUpdateCustomerWithPhone, PosUpdateFulfillmentPreferenceBody, PosUpdateFulfillmentPreferenceContent, PosUpdateFulfillmentPreferencePathParams, PosUpdateFulfillmentPreferenceResponse, PosUser, Product, ProductAttribute, ProductBundleItem, ProductCategory, ProductDetail, ProductImage, ProductPricing, ProductPromotion, ProductReview, ProductShipping, ProductSubscription, ProductVideo, Promotion, PromotionType, RedeemCreditBalanceBody, RedeemCreditBalanceContent, RedeemCreditBalancePathParams, RedeemCreditBalanceResponse, RedeemLoyaltyPointsBody, RedeemLoyaltyPointsContent, RedeemLoyaltyPointsPathParams, RedeemLoyaltyPointsResponse, RefreshPosAccessTokenBody, RefreshPosAccessTokenContent, RefreshPosAccessTokenResponse, RefreshTokenBody, RefreshTokenContent, RefreshTokenResponse, RegisterWithEmailBody, RegisterWithEmailContent, RegisterWithEmailPassword, RegisterWithEmailResponse, RegisterWithPasswordBody, RegisterWithPasswordContent, RegisterWithPasswordResponse, RegisterWithPhoneBody, RegisterWithPhoneContent, RegisterWithPhonePassword, RegisterWithPhoneResponse, RegisterWithWhatsappBody, RegisterWithWhatsappContent, RegisterWithWhatsappResponse, RemoveCouponContent, RemoveCouponPathParams, RemoveCouponResponse, RemoveCreditBalanceContent, RemoveCreditBalancePathParams, RemoveCreditBalanceResponse, RemoveLoyaltyPointsContent, RemoveLoyaltyPointsPathParams, RemoveLoyaltyPointsResponse, RemoveProfileImagePathParams, RemoveProfileImageResponse, ResetPasswordBody, ResetPasswordContent, ResetPasswordResponse, ResponseUtils, RetryOrderPaymentBody, RetryOrderPaymentContent, RetryOrderPaymentPathParams, RetryOrderPaymentResponse, RevokeSubscription, SavedPaymentMethod, SearchProduct, SearchProductsBody, SearchProductsContent, SearchProductsHeaderParams, SearchProductsResponse, Seo, ShipmentItem, ShippingClient, SingleSelectAttribute, SingleSelectOption, StoreConfig, StoreConfigClient, StoreTemplate, StorefrontAPIClient, StorefrontSDK, StorefrontSDK as default, StorefrontSDKOptions, SubscribeNewsletterBody, SubscribeNewsletterResponse, Subscription, SubscriptionBehaviour, SubscriptionDetail, SubscriptionInvoiceItem, SupportedDefaultHeaders, TextAttribute, type TokenStorage, TrackAnalyticsEventBody, TrackAnalyticsEventResponse, UnclaimPosDeviceContent, UnclaimPosDevicePathParams, UnclaimPosDeviceResponse, UpdateAddressDetailBody, UpdateAddressDetailContent, UpdateAddressDetailPathParams, UpdateAddressDetailResponse, UpdateCartBody, UpdateCartContent, UpdateCartItem, UpdateCartPathParams, UpdateCartResponse, UpdateCustomer, UpdateCustomerBody, UpdateCustomerContent, UpdateCustomerPathParams, UpdateCustomerResponse, UpdateDigitalProductSubscription, UpdateDocument, UpdateDocumentContent, UpdateDocumentFormData, UpdateDocumentPathParams, UpdateDocumentResponse, UpdateFulfillmentPreferenceBody, UpdateFulfillmentPreferenceContent, UpdateFulfillmentPreferencePathParams, UpdateFulfillmentPreferenceResponse, UpdateNotificationPreferencesBody, UpdateNotificationPreferencesContent, UpdateNotificationPreferencesPathParams, UpdateNotificationPreferencesResponse, UpdatePhysicalProductSubscription, UpdatePosCartCustomerBody, UpdatePosCartCustomerContent, UpdatePosCartCustomerPathParams, UpdatePosCartCustomerResponse, UpdateProfileImageContent, UpdateProfileImageFormData, UpdateProfileImagePathParams, UpdateProfileImageResponse, UpdateSubscriptionBody, UpdateSubscriptionContent, UpdateSubscriptionPathParams, UpdateSubscriptionResponse, UpdateUserBody, UpdateUserContent, UpdateUserPathParams, UpdateUserResponse, UpiPayment, User, type UserInfo, Variant, VariantDetail, VariantOption, VerifyDocumentBody, VerifyDocumentContent, VerifyDocumentPathParams, VerifyDocumentResponse, VerifyOtpBody, VerifyOtpContent, VerifyOtpResponse, VerifyPosLoginOtpBody, VerifyPosLoginOtpContent, VerifyPosLoginOtpResponse, VerifyVpaContent, VerifyVpaQuery, VerifyVpaResponse, VolumeBasedCouponPromotion, VolumeBasedPromotion, VolumeBasedRule, WalletPayment, type components, createDebugMiddleware, createTimeoutMiddleware, executeRequest, extractRequestBody, getPathnameFromUrl, mergeAndTransformHeaders, mergeHeaders, type operations, type paths, transformHeaders };
15808
15973
  //# sourceMappingURL=index.d.ts.map