@commercengine/storefront-sdk 0.10.0 → 0.10.1

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
@@ -1942,6 +1942,26 @@ interface paths {
1942
1942
  patch?: never;
1943
1943
  trace?: never;
1944
1944
  };
1945
+ "/pos/carts/users/{user_id}": {
1946
+ parameters: {
1947
+ query?: never;
1948
+ header?: never;
1949
+ path?: never;
1950
+ cookie?: never;
1951
+ };
1952
+ /**
1953
+ * Retrieve cart using user id
1954
+ * @description Retrieve cart detail using user id
1955
+ */
1956
+ get: operations["pos-get-user-cart"];
1957
+ put?: never;
1958
+ post?: never;
1959
+ delete?: never;
1960
+ options?: never;
1961
+ head?: never;
1962
+ patch?: never;
1963
+ trace?: never;
1964
+ };
1945
1965
  "/pos/carts/{id}": {
1946
1966
  parameters: {
1947
1967
  query?: never;
@@ -3131,10 +3151,7 @@ interface components {
3131
3151
  shipping_tax_amount: number | null;
3132
3152
  /** @description Shipping amount including shipping tax. */
3133
3153
  shipping_amount_including_tax: number | null;
3134
- shipping_provider_id: string | null;
3135
- shipping_provider_name: string | null;
3136
- courier_company_id: string | null;
3137
- courier_company_name: string | null;
3154
+ fulfillment_preference?: components["schemas"]["FulfillmentPreference"];
3138
3155
  estimated_delivery_days: number | null;
3139
3156
  /**
3140
3157
  * Format: double
@@ -3231,8 +3248,6 @@ interface components {
3231
3248
  stock_available: boolean;
3232
3249
  /** @description 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. */
3233
3250
  backorder: boolean;
3234
- /** @description Indicates whether the product is currently on offer. */
3235
- on_offer: boolean;
3236
3251
  /** @description Indicates whether the product is currently on a subscription. */
3237
3252
  on_subscription: boolean;
3238
3253
  /** @description Indicates whether the product is part of a promotion. */
@@ -3321,7 +3336,10 @@ interface components {
3321
3336
  };
3322
3337
  /** CollectInStoreFulfillment */
3323
3338
  CollectInStoreFulfillment: {
3324
- /** @constant */
3339
+ /**
3340
+ * @description discriminator enum property added by openapi-typescript
3341
+ * @enum {string}
3342
+ */
3325
3343
  fulfillment_type: "collect-in-store";
3326
3344
  pickup_location_id: string;
3327
3345
  };
@@ -3680,8 +3698,15 @@ interface components {
3680
3698
  };
3681
3699
  /** DeliveryFulfillment */
3682
3700
  DeliveryFulfillment: {
3683
- /** @constant */
3701
+ /**
3702
+ * @description discriminator enum property added by openapi-typescript
3703
+ * @enum {string}
3704
+ */
3684
3705
  fulfillment_type: "delivery";
3706
+ shipping_provider_id: string | null;
3707
+ readonly shipping_provider_name?: string | null;
3708
+ courier_company_id?: string | null;
3709
+ readonly courier_company_name?: string | null;
3685
3710
  };
3686
3711
  /** DiscountBasedPromotion */
3687
3712
  DiscountBasedPromotion: {
@@ -3818,8 +3843,16 @@ interface components {
3818
3843
  FreeGoodsRule: components["schemas"]["AutoScaleBasedOnQuantity"] | components["schemas"]["AutoScaleBasedOnAmount"] | components["schemas"]["CustomSlabsBasedOnQuantity"] | components["schemas"]["CustomSlabsBasedOnAmount"];
3819
3844
  /** FreeShipingCouponPromotion */
3820
3845
  FreeShipingCouponPromotion: components["schemas"]["CouponPromotionCommonDetail"];
3821
- /** @enum {unknown} */
3822
- FulfillmentPreference: "collect-in-store" | "delivery";
3846
+ /** FulfillmentItem */
3847
+ FulfillmentItem: {
3848
+ product_id: string;
3849
+ readonly product_name: string;
3850
+ variant_id: string | null;
3851
+ readonly variant_name: string | null;
3852
+ quantity: number;
3853
+ };
3854
+ /** FulfillmentPreference */
3855
+ FulfillmentPreference: components["schemas"]["CollectInStoreFulfillment"] | components["schemas"]["DeliveryFulfillment"] | components["schemas"]["PartialCollectAndDelivery"];
3823
3856
  /** GenerateOtpWithEmail */
3824
3857
  GenerateOtpWithEmail: {
3825
3858
  /** @constant */
@@ -3876,8 +3909,6 @@ interface components {
3876
3909
  stock_available: boolean;
3877
3910
  /** @description 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. */
3878
3911
  backorder?: boolean;
3879
- /** @description Indicates whether this item is associated with any active (product-specific) coupons */
3880
- on_offer: boolean;
3881
3912
  on_subscription: boolean;
3882
3913
  on_promotion: boolean;
3883
3914
  category_ids: string[];
@@ -3891,6 +3922,7 @@ interface components {
3891
3922
  subscription: components["schemas"]["ProductSubscription"][];
3892
3923
  associated_options: components["schemas"]["AssociatedOption"] | null;
3893
3924
  shipping?: components["schemas"]["ProductShipping"];
3925
+ inventory?: components["schemas"]["LotBatchDetail"][];
3894
3926
  };
3895
3927
  /** JuspayCardPayload */
3896
3928
  JuspayCardPayload: {
@@ -4097,6 +4129,16 @@ interface components {
4097
4129
  /** @enum {unknown} */
4098
4130
  verification_type: "auto" | "manual";
4099
4131
  };
4132
+ /** LotBatchDetail */
4133
+ LotBatchDetail: {
4134
+ lot_batch: string;
4135
+ /** Format: date */
4136
+ mfg_date: string | null;
4137
+ /** Format: date */
4138
+ exp_date: string | null;
4139
+ manufacturer: string | null;
4140
+ stock_quantity: number;
4141
+ };
4100
4142
  /**
4101
4143
  * LoyaltyPointActivity
4102
4144
  * @description Loyalty Point Activity
@@ -4241,10 +4283,7 @@ interface components {
4241
4283
  shipping_tax_amount?: number;
4242
4284
  /** Format: double */
4243
4285
  shipping_amount_including_tax?: number;
4244
- shipping_provider_id?: string | null;
4245
- shipping_provider_name?: string | null;
4246
- courier_company_id?: string | null;
4247
- courier_company_name?: string | null;
4286
+ fulfillment_preference?: components["schemas"]["FulfillmentPreference"];
4248
4287
  estimated_delivery_days?: number | null;
4249
4288
  /** Format: double */
4250
4289
  handling_charge_excluding_tax?: number;
@@ -4308,12 +4347,10 @@ interface components {
4308
4347
  slug: string;
4309
4348
  variant_id: string | null;
4310
4349
  variant_name: string | null;
4311
- /** @description
4312
- * backorder
4350
+ /** @description backorder
4313
4351
  *
4314
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. */
4315
4353
  backorder: boolean;
4316
- on_offer: boolean;
4317
4354
  on_promotion: boolean;
4318
4355
  on_subscription: boolean;
4319
4356
  subscription_plan: string | null;
@@ -4538,6 +4575,25 @@ interface components {
4538
4575
  PanDetail: {
4539
4576
  id?: string;
4540
4577
  };
4578
+ /** PartialCollectAndDelivery */
4579
+ PartialCollectAndDelivery: {
4580
+ /**
4581
+ * @description discriminator enum property added by openapi-typescript
4582
+ * @enum {string}
4583
+ */
4584
+ fulfillment_type: "partial-collect-and-delivery";
4585
+ "collect-in-store": {
4586
+ pickup_location_id?: string;
4587
+ items?: components["schemas"]["FulfillmentItem"][];
4588
+ };
4589
+ delivery: {
4590
+ shipping_provider_id: string | null;
4591
+ readonly shipping_provider_name?: string | null;
4592
+ courier_company_id?: string | null;
4593
+ readonly courier_company_name?: string | null;
4594
+ items: components["schemas"]["FulfillmentItem"][];
4595
+ };
4596
+ };
4541
4597
  /** PauseSubscription */
4542
4598
  PauseSubscription: {
4543
4599
  /**
@@ -4765,17 +4821,31 @@ interface components {
4765
4821
  };
4766
4822
  /** PosDevice */
4767
4823
  PosDevice: {
4768
- readonly id?: string;
4769
- name?: string;
4770
- /** @enum {unknown} */
4771
- device_type?: "pos-terminal";
4824
+ readonly id: string;
4825
+ name: string;
4826
+ /** @enum {string} */
4827
+ device_type: "pos-terminal";
4772
4828
  /** @description A Device ID shared by POS device provider. */
4773
- readonly external_device_id?: string;
4774
- vendor?: string;
4775
- model_number?: string;
4776
- mac_address?: string | null;
4777
- location_id?: string;
4778
- readonly location_name?: string;
4829
+ readonly external_device_id: string;
4830
+ vendor: string;
4831
+ model_number: string;
4832
+ mac_address: string | null;
4833
+ location_id: string;
4834
+ readonly location_name: string;
4835
+ /** @description Returns a user object if the device is claimed, otherwise returns null. */
4836
+ claimed_by: components["schemas"]["PosDeviceClaimedUser"] | null;
4837
+ /** @enum {string} */
4838
+ readonly status: "available" | "claimed" | "offline";
4839
+ readonly is_busy: boolean;
4840
+ };
4841
+ /** PosDeviceClaimedUser */
4842
+ PosDeviceClaimedUser: {
4843
+ readonly id: string;
4844
+ first_name: string;
4845
+ last_name: string | null;
4846
+ phone: string;
4847
+ /** Format: email */
4848
+ email: string;
4779
4849
  };
4780
4850
  /** PosLocation */
4781
4851
  PosLocation: {
@@ -4888,8 +4958,6 @@ interface components {
4888
4958
  readonly stock_available: boolean;
4889
4959
  /** @description 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. */
4890
4960
  backorder?: boolean;
4891
- /** @description Indicates whether this item is associated with any active (product-specific) coupons */
4892
- readonly on_offer: boolean;
4893
4961
  /** @description Indicates whether the product has any subscription plans avaialble */
4894
4962
  readonly on_subscription: boolean;
4895
4963
  /** @description Indicates whether the product is currently on promotion. When true, the `ProductPromotion` object will contain details of the promotion */
@@ -4911,6 +4979,7 @@ interface components {
4911
4979
  subscription: components["schemas"]["ProductSubscription"][];
4912
4980
  variants: components["schemas"]["Variant"][];
4913
4981
  bundle_items: components["schemas"]["ProductBundleItem"];
4982
+ inventory?: components["schemas"]["LotBatchDetail"][];
4914
4983
  };
4915
4984
  ProductAttribute: components["schemas"]["ColorAttribute"] | components["schemas"]["SingleSelectAttribute"] | components["schemas"]["MultiSelectAttribute"] | components["schemas"]["TextAttribute"] | components["schemas"]["DateAttribute"] | components["schemas"]["NumberAttribute"] | components["schemas"]["BooleanAttribute"];
4916
4985
  ProductBundleItem: ({
@@ -5533,8 +5602,6 @@ interface components {
5533
5602
  readonly stock_available: boolean;
5534
5603
  /** @description 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. */
5535
5604
  backorder?: boolean;
5536
- /** @description Indicates whether this item is associated with any active (product-specific) coupons */
5537
- readonly on_offer: boolean;
5538
5605
  readonly on_promotion: boolean;
5539
5606
  readonly on_subscription: boolean;
5540
5607
  /** @description Indicates whether a variant is marked as the default variant for a product */
@@ -5545,6 +5612,7 @@ interface components {
5545
5612
  pricing: components["schemas"]["ProductPricing"];
5546
5613
  subscription: components["schemas"]["ProductSubscription"][];
5547
5614
  promotion: components["schemas"]["ProductPromotion"];
5615
+ inventory?: components["schemas"]["LotBatchDetail"][];
5548
5616
  };
5549
5617
  /** VariantDetail */
5550
5618
  VariantDetail: components["schemas"]["Variant"] & {
@@ -5700,6 +5768,8 @@ interface components {
5700
5768
  parameters: {
5701
5769
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
5702
5770
  CustomerGroupId: string;
5771
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
5772
+ DebugMode: boolean;
5703
5773
  /** @description no of rows per page */
5704
5774
  pageLimitParam: number;
5705
5775
  /** @description page number of pagination list */
@@ -5872,7 +5942,10 @@ interface operations {
5872
5942
  "generate-otp": {
5873
5943
  parameters: {
5874
5944
  query?: never;
5875
- header?: never;
5945
+ header?: {
5946
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
5947
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
5948
+ };
5876
5949
  path?: never;
5877
5950
  cookie?: never;
5878
5951
  };
@@ -5910,7 +5983,10 @@ interface operations {
5910
5983
  "login-with-email": {
5911
5984
  parameters: {
5912
5985
  query?: never;
5913
- header?: never;
5986
+ header?: {
5987
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
5988
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
5989
+ };
5914
5990
  path?: never;
5915
5991
  cookie?: never;
5916
5992
  };
@@ -6014,7 +6090,10 @@ interface operations {
6014
6090
  "login-with-phone": {
6015
6091
  parameters: {
6016
6092
  query?: never;
6017
- header?: never;
6093
+ header?: {
6094
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
6095
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
6096
+ };
6018
6097
  path?: never;
6019
6098
  cookie?: never;
6020
6099
  };
@@ -6066,7 +6145,10 @@ interface operations {
6066
6145
  "login-with-whatsapp": {
6067
6146
  parameters: {
6068
6147
  query?: never;
6069
- header?: never;
6148
+ header?: {
6149
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
6150
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
6151
+ };
6070
6152
  path?: never;
6071
6153
  cookie?: never;
6072
6154
  };
@@ -7434,7 +7516,7 @@ interface operations {
7434
7516
  };
7435
7517
  requestBody: {
7436
7518
  content: {
7437
- "application/json": components["schemas"]["CollectInStoreFulfillment"] | components["schemas"]["DeliveryFulfillment"];
7519
+ "application/json": components["schemas"]["FulfillmentPreference"];
7438
7520
  };
7439
7521
  };
7440
7522
  responses: {
@@ -7447,6 +7529,9 @@ interface operations {
7447
7529
  "application/json": {
7448
7530
  message: string;
7449
7531
  success: boolean;
7532
+ content: {
7533
+ cart?: components["schemas"]["Cart"];
7534
+ };
7450
7535
  };
7451
7536
  };
7452
7537
  };
@@ -7661,6 +7746,8 @@ interface operations {
7661
7746
  category_id?: string[];
7662
7747
  /** @description filter products by categories slugs */
7663
7748
  category_slug?: string[];
7749
+ /** @description Determines whether to include or exlude inventory details in response json */
7750
+ inventory?: boolean;
7664
7751
  };
7665
7752
  header?: {
7666
7753
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
@@ -7864,7 +7951,10 @@ interface operations {
7864
7951
  };
7865
7952
  "get-product-detail": {
7866
7953
  parameters: {
7867
- query?: never;
7954
+ query?: {
7955
+ /** @description Determines whether to include or exlude inventory details in response json */
7956
+ inventory?: boolean;
7957
+ };
7868
7958
  header?: {
7869
7959
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
7870
7960
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -7977,7 +8067,10 @@ interface operations {
7977
8067
  };
7978
8068
  "list-product-variants": {
7979
8069
  parameters: {
7980
- query?: never;
8070
+ query?: {
8071
+ /** @description Determines whether to include or exlude inventory details in response json */
8072
+ inventory?: boolean;
8073
+ };
7981
8074
  header?: {
7982
8075
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
7983
8076
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -8012,7 +8105,10 @@ interface operations {
8012
8105
  };
8013
8106
  "get-variant-detail": {
8014
8107
  parameters: {
8015
- query?: never;
8108
+ query?: {
8109
+ /** @description Determines whether to include or exlude inventory details in response json */
8110
+ inventory?: boolean;
8111
+ };
8016
8112
  header?: {
8017
8113
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
8018
8114
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -8058,6 +8154,8 @@ interface operations {
8058
8154
  sort_by?: components["parameters"]["sortingParam"];
8059
8155
  /** @description filter sku by categories */
8060
8156
  category_id?: string[];
8157
+ /** @description Determines whether to include or exlude inventory details in response json */
8158
+ inventory?: boolean;
8061
8159
  /** @description array of sku */
8062
8160
  sku?: string[];
8063
8161
  };
@@ -9542,7 +9640,10 @@ interface operations {
9542
9640
  "login-pos-device-with-email": {
9543
9641
  parameters: {
9544
9642
  query?: never;
9545
- header?: never;
9643
+ header?: {
9644
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
9645
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
9646
+ };
9546
9647
  path?: never;
9547
9648
  cookie?: never;
9548
9649
  };
@@ -9579,7 +9680,10 @@ interface operations {
9579
9680
  "login-pos-device-with-phone": {
9580
9681
  parameters: {
9581
9682
  query?: never;
9582
- header?: never;
9683
+ header?: {
9684
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
9685
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
9686
+ };
9583
9687
  path?: never;
9584
9688
  cookie?: never;
9585
9689
  };
@@ -9622,7 +9726,10 @@ interface operations {
9622
9726
  "login-pos-device-with-whatsapp": {
9623
9727
  parameters: {
9624
9728
  query?: never;
9625
- header?: never;
9729
+ header?: {
9730
+ /** @description This param is used to enable debug mode. If debug mode is enabled, the API will return OTP as well. This is only for development and testing purposes. */
9731
+ "x-debug-mode"?: components["parameters"]["DebugMode"];
9732
+ };
9626
9733
  path?: never;
9627
9734
  cookie?: never;
9628
9735
  };
@@ -9898,6 +10005,38 @@ interface operations {
9898
10005
  401: components["responses"]["Unauthorized"];
9899
10006
  };
9900
10007
  };
10008
+ "pos-get-user-cart": {
10009
+ parameters: {
10010
+ query?: never;
10011
+ header?: never;
10012
+ path: {
10013
+ /** @description User ID */
10014
+ user_id: string;
10015
+ };
10016
+ cookie?: never;
10017
+ };
10018
+ requestBody?: never;
10019
+ responses: {
10020
+ /** @description OK */
10021
+ 200: {
10022
+ headers: {
10023
+ [name: string]: unknown;
10024
+ };
10025
+ content: {
10026
+ "application/json": {
10027
+ /** @example cart details */
10028
+ readonly message: string;
10029
+ readonly success: boolean;
10030
+ content: {
10031
+ cart: components["schemas"]["Cart"];
10032
+ };
10033
+ };
10034
+ };
10035
+ };
10036
+ 401: components["responses"]["Unauthorized"];
10037
+ 404: components["responses"]["NotFound"];
10038
+ };
10039
+ };
9901
10040
  "pos-get-cart": {
9902
10041
  parameters: {
9903
10042
  query?: never;
@@ -10233,7 +10372,7 @@ interface operations {
10233
10372
  };
10234
10373
  requestBody: {
10235
10374
  content: {
10236
- "application/json": components["schemas"]["CollectInStoreFulfillment"] | components["schemas"]["DeliveryFulfillment"];
10375
+ "application/json": components["schemas"]["FulfillmentPreference"];
10237
10376
  };
10238
10377
  };
10239
10378
  responses: {
@@ -10246,6 +10385,9 @@ interface operations {
10246
10385
  "application/json": {
10247
10386
  message: string;
10248
10387
  success: boolean;
10388
+ content: {
10389
+ cart?: components["schemas"]["Cart"];
10390
+ };
10249
10391
  };
10250
10392
  };
10251
10393
  };
@@ -10457,6 +10599,8 @@ interface operations {
10457
10599
  category_id?: string[];
10458
10600
  /** @description filter products by categories slugs */
10459
10601
  category_slug?: string[];
10602
+ /** @description Determines whether to include or exlude inventory details in response json */
10603
+ inventory?: boolean;
10460
10604
  };
10461
10605
  header?: {
10462
10606
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
@@ -10660,7 +10804,10 @@ interface operations {
10660
10804
  };
10661
10805
  "pos-get-product-detail": {
10662
10806
  parameters: {
10663
- query?: never;
10807
+ query?: {
10808
+ /** @description Determines whether to include or exlude inventory details in response json */
10809
+ inventory?: boolean;
10810
+ };
10664
10811
  header?: {
10665
10812
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
10666
10813
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -10739,7 +10886,10 @@ interface operations {
10739
10886
  };
10740
10887
  "pos-list-product-variants": {
10741
10888
  parameters: {
10742
- query?: never;
10889
+ query?: {
10890
+ /** @description Determines whether to include or exlude inventory details in response json */
10891
+ inventory?: boolean;
10892
+ };
10743
10893
  header?: {
10744
10894
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
10745
10895
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -10774,7 +10924,10 @@ interface operations {
10774
10924
  };
10775
10925
  "pos-get-variant-detail": {
10776
10926
  parameters: {
10777
- query?: never;
10927
+ query?: {
10928
+ /** @description Determines whether to include or exlude inventory details in response json */
10929
+ inventory?: boolean;
10930
+ };
10778
10931
  header?: {
10779
10932
  /** @description This param is used to determine product pricing, promotions, and subscription rates. If a valid customer group id is provided, pricing details will be retrieved accordingly. If no matching data is found for the specified customer group id, the system will fall back to the default customer group id. If no data is found for the default group either, the highest applicable price will be returned. */
10780
10933
  "x-customer-group-id"?: components["parameters"]["CustomerGroupId"];
@@ -10820,6 +10973,8 @@ interface operations {
10820
10973
  sort_by?: components["parameters"]["sortingParam"];
10821
10974
  /** @description filter sku by categories */
10822
10975
  category_id?: string[];
10976
+ /** @description Determines whether to include or exlude inventory details in response json */
10977
+ inventory?: boolean;
10823
10978
  /** @description array of sku */
10824
10979
  sku?: string[];
10825
10980
  };
@@ -10901,6 +11056,9 @@ interface operations {
10901
11056
  "application/json": {
10902
11057
  message: string;
10903
11058
  success: boolean;
11059
+ content: {
11060
+ user: components["schemas"]["PosUser"];
11061
+ };
10904
11062
  };
10905
11063
  };
10906
11064
  };
@@ -10929,6 +11087,9 @@ interface operations {
10929
11087
  "application/json": {
10930
11088
  message: string;
10931
11089
  success: boolean;
11090
+ content: {
11091
+ user: components["schemas"]["PosUser"];
11092
+ };
10932
11093
  };
10933
11094
  };
10934
11095
  };
@@ -11163,7 +11324,8 @@ interface operations {
11163
11324
  summary: {
11164
11325
  collect_available: boolean;
11165
11326
  deliver_available: boolean;
11166
- recommended_fulfillment_type: components["schemas"]["FulfillmentPreference"];
11327
+ /** @enum {unknown} */
11328
+ recommended_fulfillment_type: "collect-in-store" | "delivery";
11167
11329
  recommended_store?: components["schemas"]["CollectInStore"];
11168
11330
  };
11169
11331
  collect?: components["schemas"]["CollectInStore"][];
@@ -12306,6 +12468,7 @@ type FreeGoodCouponPromotion = components['schemas']['FreeGoodCouponPromotion'];
12306
12468
  type FreeGoodsPromotion = components['schemas']['FreeGoodsPromotion'];
12307
12469
  type FreeGoodsRule = components['schemas']['FreeGoodsRule'];
12308
12470
  type FreeShipingCouponPromotion = components['schemas']['FreeShipingCouponPromotion'];
12471
+ type FulfillmentItem = components['schemas']['FulfillmentItem'];
12309
12472
  type FulfillmentPreference = components['schemas']['FulfillmentPreference'];
12310
12473
  type GenerateOtpWithEmail = components['schemas']['GenerateOtpWithEmail'];
12311
12474
  type GenerateOtpWithPhone = components['schemas']['GenerateOtpWithPhone'];
@@ -12325,6 +12488,7 @@ type JuspayPaymentMethod = components['schemas']['JuspayPaymentMethod'];
12325
12488
  type JuspaySavedCard = components['schemas']['JuspaySavedCard'];
12326
12489
  type KycDocument = components['schemas']['KycDocument'];
12327
12490
  type KycDocumentConfig = components['schemas']['KycDocumentConfig'];
12491
+ type LotBatchDetail = components['schemas']['LotBatchDetail'];
12328
12492
  type LoyaltyPointActivity = components['schemas']['LoyaltyPointActivity'];
12329
12493
  type MeasurementUnit = components['schemas']['MeasurementUnit'];
12330
12494
  type MultiSelectAttribute = components['schemas']['MultiSelectAttribute'];
@@ -12343,6 +12507,7 @@ type OrderReturnItem = components['schemas']['OrderReturnItem'];
12343
12507
  type OrderShipment = components['schemas']['OrderShipment'];
12344
12508
  type Pagination = components['schemas']['Pagination'];
12345
12509
  type PanDetail = components['schemas']['PanDetail'];
12510
+ type PartialCollectAndDelivery = components['schemas']['PartialCollectAndDelivery'];
12346
12511
  type PauseSubscription = components['schemas']['PauseSubscription'];
12347
12512
  type PayWithCard = components['schemas']['PayWithCard'];
12348
12513
  type PayWithCash = components['schemas']['PayWithCash'];
@@ -12361,6 +12526,7 @@ type PercentageDiscountRule = components['schemas']['PercentageDiscountRule'];
12361
12526
  type Pincode = components['schemas']['Pincode'];
12362
12527
  type PincodeServiceability = components['schemas']['PincodeServiceability'];
12363
12528
  type PosDevice = components['schemas']['PosDevice'];
12529
+ type PosDeviceClaimedUser = components['schemas']['PosDeviceClaimedUser'];
12364
12530
  type PosLocation = components['schemas']['PosLocation'];
12365
12531
  type PosUpdateCustomerWithEmail = components['schemas']['PosUpdateCustomerWithEmail'];
12366
12532
  type PosUpdateCustomerWithId = components['schemas']['PosUpdateCustomerWithId'];
@@ -12421,18 +12587,22 @@ type ForgotPasswordContent = ForgotPasswordResponse['content'];
12421
12587
  type ForgotPasswordBody = NonNullable<paths['/auth/forgot-password']['post']['requestBody']>['content']['application/json'];
12422
12588
  type GenerateOtpResponse = paths['/auth/generate-otp']['post']['responses'][200]['content']['application/json'];
12423
12589
  type GenerateOtpContent = GenerateOtpResponse['content'];
12590
+ type GenerateOtpHeaderParams = paths['/auth/generate-otp']['post']['parameters']['header'];
12424
12591
  type GenerateOtpBody = NonNullable<paths['/auth/generate-otp']['post']['requestBody']>['content']['application/json'];
12425
12592
  type LoginWithEmailResponse = paths['/auth/login/email']['post']['responses'][200]['content']['application/json'];
12426
12593
  type LoginWithEmailContent = LoginWithEmailResponse['content'];
12594
+ type LoginWithEmailHeaderParams = paths['/auth/login/email']['post']['parameters']['header'];
12427
12595
  type LoginWithEmailBody = NonNullable<paths['/auth/login/email']['post']['requestBody']>['content']['application/json'];
12428
12596
  type LoginWithPasswordResponse = paths['/auth/login/password']['post']['responses'][200]['content']['application/json'];
12429
12597
  type LoginWithPasswordContent = LoginWithPasswordResponse['content'];
12430
12598
  type LoginWithPasswordBody = NonNullable<paths['/auth/login/password']['post']['requestBody']>['content']['application/json'];
12431
12599
  type LoginWithPhoneResponse = paths['/auth/login/phone']['post']['responses'][200]['content']['application/json'];
12432
12600
  type LoginWithPhoneContent = LoginWithPhoneResponse['content'];
12601
+ type LoginWithPhoneHeaderParams = paths['/auth/login/phone']['post']['parameters']['header'];
12433
12602
  type LoginWithPhoneBody = NonNullable<paths['/auth/login/phone']['post']['requestBody']>['content']['application/json'];
12434
12603
  type LoginWithWhatsappResponse = paths['/auth/login/whatsapp']['post']['responses'][200]['content']['application/json'];
12435
12604
  type LoginWithWhatsappContent = LoginWithWhatsappResponse['content'];
12605
+ type LoginWithWhatsappHeaderParams = paths['/auth/login/whatsapp']['post']['parameters']['header'];
12436
12606
  type LoginWithWhatsappBody = NonNullable<paths['/auth/login/whatsapp']['post']['requestBody']>['content']['application/json'];
12437
12607
  type LogoutResponse = paths['/auth/logout']['post']['responses'][200]['content']['application/json'];
12438
12608
  type LogoutContent = LogoutResponse['content'];
@@ -12539,6 +12709,7 @@ type EvaluatePromotionsResponse = paths['/carts/{id}/evaluate-promotions']['get'
12539
12709
  type EvaluatePromotionsContent = EvaluatePromotionsResponse['content'];
12540
12710
  type EvaluatePromotionsPathParams = paths['/carts/{id}/evaluate-promotions']['get']['parameters']['path'];
12541
12711
  type UpdateFulfillmentPreferenceResponse = paths['/carts/{id}/fulfillment-preference']['post']['responses'][200]['content']['application/json'];
12712
+ type UpdateFulfillmentPreferenceContent = UpdateFulfillmentPreferenceResponse['content'];
12542
12713
  type UpdateFulfillmentPreferencePathParams = paths['/carts/{id}/fulfillment-preference']['post']['parameters']['path'];
12543
12714
  type UpdateFulfillmentPreferenceBody = NonNullable<paths['/carts/{id}/fulfillment-preference']['post']['requestBody']>['content']['application/json'];
12544
12715
  type UpdateCartResponse = paths['/carts/{id}/items']['post']['responses'][200]['content']['application/json'];
@@ -12581,6 +12752,7 @@ type ListUpsellProductsQuery = paths['/catalog/products/up-sell']['get']['parame
12581
12752
  type ListUpsellProductsHeaderParams = paths['/catalog/products/up-sell']['get']['parameters']['header'];
12582
12753
  type GetProductDetailResponse = paths['/catalog/products/{product_id_or_slug}']['get']['responses'][200]['content']['application/json'];
12583
12754
  type GetProductDetailContent = GetProductDetailResponse['content'];
12755
+ type GetProductDetailQuery = paths['/catalog/products/{product_id_or_slug}']['get']['parameters']['query'];
12584
12756
  type GetProductDetailPathParams = paths['/catalog/products/{product_id_or_slug}']['get']['parameters']['path'];
12585
12757
  type GetProductDetailHeaderParams = paths['/catalog/products/{product_id_or_slug}']['get']['parameters']['header'];
12586
12758
  type ListProductReviewsResponse = paths['/catalog/products/{product_id}/reviews']['get']['responses'][200]['content']['application/json'];
@@ -12592,10 +12764,12 @@ type CreateProductReviewPathParams = paths['/catalog/products/{product_id}/revie
12592
12764
  type CreateProductReviewFormData = NonNullable<paths['/catalog/products/{product_id}/reviews']['post']['requestBody']>['content']['multipart/form-data'];
12593
12765
  type ListProductVariantsResponse = paths['/catalog/products/{product_id}/variants']['get']['responses'][200]['content']['application/json'];
12594
12766
  type ListProductVariantsContent = ListProductVariantsResponse['content'];
12767
+ type ListProductVariantsQuery = paths['/catalog/products/{product_id}/variants']['get']['parameters']['query'];
12595
12768
  type ListProductVariantsPathParams = paths['/catalog/products/{product_id}/variants']['get']['parameters']['path'];
12596
12769
  type ListProductVariantsHeaderParams = paths['/catalog/products/{product_id}/variants']['get']['parameters']['header'];
12597
12770
  type GetVariantDetailResponse = paths['/catalog/products/{product_id}/variants/{variant_id}']['get']['responses'][200]['content']['application/json'];
12598
12771
  type GetVariantDetailContent = GetVariantDetailResponse['content'];
12772
+ type GetVariantDetailQuery = paths['/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['query'];
12599
12773
  type GetVariantDetailPathParams = paths['/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['path'];
12600
12774
  type GetVariantDetailHeaderParams = paths['/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['header'];
12601
12775
  type ListSkusResponse = paths['/catalog/skus']['get']['responses'][200]['content']['application/json'];
@@ -12734,12 +12908,15 @@ type VerifyVpaContent = VerifyVpaResponse['content'];
12734
12908
  type VerifyVpaQuery = paths['/payments/verify-vpa']['get']['parameters']['query'];
12735
12909
  type LoginPosDeviceWithEmailResponse = paths['/pos/auth/login/email']['post']['responses'][200]['content']['application/json'];
12736
12910
  type LoginPosDeviceWithEmailContent = LoginPosDeviceWithEmailResponse['content'];
12911
+ type LoginPosDeviceWithEmailHeaderParams = paths['/pos/auth/login/email']['post']['parameters']['header'];
12737
12912
  type LoginPosDeviceWithEmailBody = NonNullable<paths['/pos/auth/login/email']['post']['requestBody']>['content']['application/json'];
12738
12913
  type LoginPosDeviceWithPhoneResponse = paths['/pos/auth/login/phone']['post']['responses'][200]['content']['application/json'];
12739
12914
  type LoginPosDeviceWithPhoneContent = LoginPosDeviceWithPhoneResponse['content'];
12915
+ type LoginPosDeviceWithPhoneHeaderParams = paths['/pos/auth/login/phone']['post']['parameters']['header'];
12740
12916
  type LoginPosDeviceWithPhoneBody = NonNullable<paths['/pos/auth/login/phone']['post']['requestBody']>['content']['application/json'];
12741
12917
  type LoginPosDeviceWithWhatsappResponse = paths['/pos/auth/login/whatsapp']['post']['responses'][200]['content']['application/json'];
12742
12918
  type LoginPosDeviceWithWhatsappContent = LoginPosDeviceWithWhatsappResponse['content'];
12919
+ type LoginPosDeviceWithWhatsappHeaderParams = paths['/pos/auth/login/whatsapp']['post']['parameters']['header'];
12743
12920
  type LoginPosDeviceWithWhatsappBody = NonNullable<paths['/pos/auth/login/whatsapp']['post']['requestBody']>['content']['application/json'];
12744
12921
  type LogoutFromPosDeviceResponse = paths['/pos/auth/logout']['post']['responses'][200]['content']['application/json'];
12745
12922
  type PairPosDeviceResponse = paths['/pos/auth/pair-device']['post']['responses'][200]['content']['application/json'];
@@ -12760,6 +12937,9 @@ type PosListCouponsHeaderParams = paths['/pos/carts/available-coupons']['get']['
12760
12937
  type PosListPromotionsResponse = paths['/pos/carts/available-promotions']['get']['responses'][200]['content']['application/json'];
12761
12938
  type PosListPromotionsContent = PosListPromotionsResponse['content'];
12762
12939
  type PosListPromotionsHeaderParams = paths['/pos/carts/available-promotions']['get']['parameters']['header'];
12940
+ type PosGetUserCartResponse = paths['/pos/carts/users/{user_id}']['get']['responses'][200]['content']['application/json'];
12941
+ type PosGetUserCartContent = PosGetUserCartResponse['content'];
12942
+ type PosGetUserCartPathParams = paths['/pos/carts/users/{user_id}']['get']['parameters']['path'];
12763
12943
  type PosGetCartResponse = paths['/pos/carts/{id}']['get']['responses'][200]['content']['application/json'];
12764
12944
  type PosGetCartContent = PosGetCartResponse['content'];
12765
12945
  type PosGetCartPathParams = paths['/pos/carts/{id}']['get']['parameters']['path'];
@@ -12790,6 +12970,7 @@ type PosEvaluatePromotionsResponse = paths['/pos/carts/{id}/evaluate-promotions'
12790
12970
  type PosEvaluatePromotionsContent = PosEvaluatePromotionsResponse['content'];
12791
12971
  type PosEvaluatePromotionsPathParams = paths['/pos/carts/{id}/evaluate-promotions']['get']['parameters']['path'];
12792
12972
  type PosUpdateFulfillmentPreferenceResponse = paths['/pos/carts/{id}/fulfillment-preference']['post']['responses'][200]['content']['application/json'];
12973
+ type PosUpdateFulfillmentPreferenceContent = PosUpdateFulfillmentPreferenceResponse['content'];
12793
12974
  type PosUpdateFulfillmentPreferencePathParams = paths['/pos/carts/{id}/fulfillment-preference']['post']['parameters']['path'];
12794
12975
  type PosUpdateFulfillmentPreferenceBody = NonNullable<paths['/pos/carts/{id}/fulfillment-preference']['post']['requestBody']>['content']['application/json'];
12795
12976
  type PosUpdateCartResponse = paths['/pos/carts/{id}/items']['post']['responses'][200]['content']['application/json'];
@@ -12832,6 +13013,7 @@ type PosListUpsellProductsQuery = paths['/pos/catalog/products/up-sell']['get'][
12832
13013
  type PosListUpsellProductsHeaderParams = paths['/pos/catalog/products/up-sell']['get']['parameters']['header'];
12833
13014
  type PosGetProductDetailResponse = paths['/pos/catalog/products/{product_id_or_slug}']['get']['responses'][200]['content']['application/json'];
12834
13015
  type PosGetProductDetailContent = PosGetProductDetailResponse['content'];
13016
+ type PosGetProductDetailQuery = paths['/pos/catalog/products/{product_id_or_slug}']['get']['parameters']['query'];
12835
13017
  type PosGetProductDetailPathParams = paths['/pos/catalog/products/{product_id_or_slug}']['get']['parameters']['path'];
12836
13018
  type PosGetProductDetailHeaderParams = paths['/pos/catalog/products/{product_id_or_slug}']['get']['parameters']['header'];
12837
13019
  type PosListProductReviewsResponse = paths['/pos/catalog/products/{product_id}/reviews']['get']['responses'][200]['content']['application/json'];
@@ -12840,10 +13022,12 @@ type PosListProductReviewsQuery = paths['/pos/catalog/products/{product_id}/revi
12840
13022
  type PosListProductReviewsPathParams = paths['/pos/catalog/products/{product_id}/reviews']['get']['parameters']['path'];
12841
13023
  type PosListProductVariantsResponse = paths['/pos/catalog/products/{product_id}/variants']['get']['responses'][200]['content']['application/json'];
12842
13024
  type PosListProductVariantsContent = PosListProductVariantsResponse['content'];
13025
+ type PosListProductVariantsQuery = paths['/pos/catalog/products/{product_id}/variants']['get']['parameters']['query'];
12843
13026
  type PosListProductVariantsPathParams = paths['/pos/catalog/products/{product_id}/variants']['get']['parameters']['path'];
12844
13027
  type PosListProductVariantsHeaderParams = paths['/pos/catalog/products/{product_id}/variants']['get']['parameters']['header'];
12845
13028
  type PosGetVariantDetailResponse = paths['/pos/catalog/products/{product_id}/variants/{variant_id}']['get']['responses'][200]['content']['application/json'];
12846
13029
  type PosGetVariantDetailContent = PosGetVariantDetailResponse['content'];
13030
+ type PosGetVariantDetailQuery = paths['/pos/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['query'];
12847
13031
  type PosGetVariantDetailPathParams = paths['/pos/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['path'];
12848
13032
  type PosGetVariantDetailHeaderParams = paths['/pos/catalog/products/{product_id}/variants/{variant_id}']['get']['parameters']['header'];
12849
13033
  type PosListSkusResponse = paths['/pos/catalog/skus']['get']['responses'][200]['content']['application/json'];
@@ -12853,8 +13037,10 @@ type PosListSkusHeaderParams = paths['/pos/catalog/skus']['get']['parameters']['
12853
13037
  type ListPosDevicesResponse = paths['/pos/devices']['get']['responses'][200]['content']['application/json'];
12854
13038
  type ListPosDevicesContent = ListPosDevicesResponse['content'];
12855
13039
  type ClaimPosDeviceResponse = paths['/pos/devices/{id}/claim']['post']['responses'][200]['content']['application/json'];
13040
+ type ClaimPosDeviceContent = ClaimPosDeviceResponse['content'];
12856
13041
  type ClaimPosDevicePathParams = paths['/pos/devices/{id}/claim']['post']['parameters']['path'];
12857
13042
  type UnclaimPosDeviceResponse = paths['/pos/devices/{id}/unclaim']['post']['responses'][200]['content']['application/json'];
13043
+ type UnclaimPosDeviceContent = UnclaimPosDeviceResponse['content'];
12858
13044
  type UnclaimPosDevicePathParams = paths['/pos/devices/{id}/unclaim']['post']['parameters']['path'];
12859
13045
  type GetPosFulfillmentOptionsResponse = paths['/pos/fulfillment-options']['post']['responses'][200]['content']['application/json'];
12860
13046
  type GetPosFulfillmentOptionsContent = GetPosFulfillmentOptionsResponse['content'];
@@ -13058,7 +13244,7 @@ declare class CatalogClient extends StorefrontAPIClient {
13058
13244
  * console.log("Product with custom pricing:", slugData.product.price);
13059
13245
  * ```
13060
13246
  */
13061
- getProductDetail(pathParams: GetProductDetailPathParams, headers?: GetProductDetailHeaderParams): Promise<ApiResult<GetProductDetailContent>>;
13247
+ getProductDetail(pathParams: GetProductDetailPathParams, options?: GetProductDetailQuery, headers?: GetProductDetailHeaderParams): Promise<ApiResult<GetProductDetailContent>>;
13062
13248
  /**
13063
13249
  * List all variants for a specific product
13064
13250
  *
@@ -13092,7 +13278,7 @@ declare class CatalogClient extends StorefrontAPIClient {
13092
13278
  * );
13093
13279
  * ```
13094
13280
  */
13095
- listProductVariants(pathParams: ListProductVariantsPathParams, headers?: ListProductVariantsHeaderParams): Promise<ApiResult<ListProductVariantsContent>>;
13281
+ listProductVariants(pathParams: ListProductVariantsPathParams, options?: ListProductVariantsQuery, headers?: ListProductVariantsHeaderParams): Promise<ApiResult<ListProductVariantsContent>>;
13096
13282
  /**
13097
13283
  * Get details for a specific product variant
13098
13284
  *
@@ -13120,7 +13306,7 @@ declare class CatalogClient extends StorefrontAPIClient {
13120
13306
  * console.log("Stock:", data.variant.stock);
13121
13307
  * ```
13122
13308
  */
13123
- getVariantDetail(pathParams: GetVariantDetailPathParams, headers?: GetVariantDetailHeaderParams): Promise<ApiResult<GetVariantDetailContent>>;
13309
+ getVariantDetail(pathParams: GetVariantDetailPathParams, options?: GetVariantDetailQuery, headers?: GetVariantDetailHeaderParams): Promise<ApiResult<GetVariantDetailContent>>;
13124
13310
  /**
13125
13311
  * List all product categories
13126
13312
  *
@@ -13711,23 +13897,24 @@ declare class CartClient extends StorefrontAPIClient {
13711
13897
  * @returns Promise with updated cart
13712
13898
  * @example
13713
13899
  * ```typescript
13714
- * const { data, error } = await sdk.cart.updateShippingMethod(
13900
+ * const { data, error } = await sdk.cart.updateFulfillmentPreference(
13715
13901
  * { id: "01H9CART12345ABCDE" },
13716
13902
  * {
13717
- * shipping_method_id: "01H9SHIP12345FAST",
13718
- * estimated_delivery_date: "2024-01-15"
13903
+ * fulfillment_type: "delivery",
13904
+ * shipping_provider_id: "01H9SHIP12345FAST",
13905
+ * courier_company_id: "01H9COY12345FAST", // Optional
13719
13906
  * }
13720
13907
  * );
13721
13908
  *
13722
13909
  * if (error) {
13723
- * console.error("Failed to update shipping method:", error.message);
13910
+ * console.error("Failed to update fulfillment preference:", error.message);
13724
13911
  * } else {
13725
- * console.log("Shipping method updated:", data.cart.shipping_method?.name);
13726
- * console.log("Shipping cost:", data.cart.shipping_cost);
13912
+ * console.log("Fulfillment preference updated:", data.cart.fulfillment_preference?.fulfillment_type);
13913
+ * console.log("Shipping cost:", data.cart.shipping_amount);
13727
13914
  * }
13728
13915
  * ```
13729
13916
  */
13730
- updateShippingMethod(cartId: UpdateShippingMethodPathParams, body: UpdateShippingMethodBody): Promise<ApiResult<UpdateShippingMethodContent>>;
13917
+ updateFulfillmentPreference(cartId: UpdateFulfillmentPreferencePathParams, body: UpdateFulfillmentPreferenceBody): Promise<ApiResult<UpdateFulfillmentPreferenceContent>>;
13731
13918
  /**
13732
13919
  * Use credit balance
13733
13920
  *
@@ -14003,7 +14190,7 @@ declare class AuthClient extends StorefrontAPIClient {
14003
14190
  * }
14004
14191
  * ```
14005
14192
  */
14006
- loginWithPhone(body: LoginWithPhoneBody): Promise<ApiResult<LoginWithPhoneContent>>;
14193
+ loginWithPhone(body: LoginWithPhoneBody, headers?: LoginWithPhoneHeaderParams): Promise<ApiResult<LoginWithPhoneContent>>;
14007
14194
  /**
14008
14195
  * Login with WhatsApp
14009
14196
  *
@@ -14026,7 +14213,7 @@ declare class AuthClient extends StorefrontAPIClient {
14026
14213
  * }
14027
14214
  * ```
14028
14215
  */
14029
- loginWithWhatsApp(body: LoginWithWhatsappBody): Promise<ApiResult<LoginWithWhatsappContent>>;
14216
+ loginWithWhatsApp(body: LoginWithWhatsappBody, headers?: LoginWithWhatsappHeaderParams): Promise<ApiResult<LoginWithWhatsappContent>>;
14030
14217
  /**
14031
14218
  * Login with email
14032
14219
  *
@@ -14049,7 +14236,7 @@ declare class AuthClient extends StorefrontAPIClient {
14049
14236
  * }
14050
14237
  * ```
14051
14238
  */
14052
- loginWithEmail(body: LoginWithEmailBody): Promise<ApiResult<LoginWithEmailContent>>;
14239
+ loginWithEmail(body: LoginWithEmailBody, headers?: LoginWithEmailHeaderParams): Promise<ApiResult<LoginWithEmailContent>>;
14053
14240
  /**
14054
14241
  * Login with password
14055
14242
  *
@@ -14509,7 +14696,7 @@ declare class AuthClient extends StorefrontAPIClient {
14509
14696
  * }
14510
14697
  * ```
14511
14698
  */
14512
- generateOtp(body: GenerateOtpBody): Promise<ApiResult<GenerateOtpContent>>;
14699
+ generateOtp(body: GenerateOtpBody, headers?: GenerateOtpHeaderParams): Promise<ApiResult<GenerateOtpContent>>;
14513
14700
  /**
14514
14701
  * Check whether email or phone is already verified
14515
14702
  *
@@ -15433,6 +15620,10 @@ interface SupportedDefaultHeaders {
15433
15620
  * If not provided, the API will use default pricing
15434
15621
  */
15435
15622
  customer_group_id?: string;
15623
+ /**
15624
+ * Debug mode header
15625
+ */
15626
+ debug_mode?: boolean;
15436
15627
  }
15437
15628
  /**
15438
15629
  * SDK initialization options for the Storefront API
@@ -15613,5 +15804,5 @@ declare class StorefrontSDK {
15613
15804
  getDefaultHeaders(): SupportedDefaultHeaders | undefined;
15614
15805
  }
15615
15806
  //#endregion
15616
- 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, 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, FulfillmentPreference, GenerateHashBody, GenerateHashContent, GenerateHashResponse, GenerateOtpBody, GenerateOtpContent, 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, GetProductDetailResponse, GetProfileImageContent, GetProfileImagePathParams, GetProfileImageResponse, GetShippingMethodsBody, GetShippingMethodsContent, GetShippingMethodsResponse, GetSubscriptionContent, GetSubscriptionPathParams, GetSubscriptionResponse, GetUserCartContent, GetUserCartPathParams, GetUserCartResponse, GetUserDetailContent, GetUserDetailPathParams, GetUserDetailResponse, GetVariantDetailContent, GetVariantDetailHeaderParams, GetVariantDetailPathParams, 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, 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, LoginPosDeviceWithEmailResponse, LoginPosDeviceWithPhoneBody, LoginPosDeviceWithPhoneContent, LoginPosDeviceWithPhoneResponse, LoginPosDeviceWithWhatsappBody, LoginPosDeviceWithWhatsappContent, LoginPosDeviceWithWhatsappResponse, LoginWithEmailBody, LoginWithEmailContent, LoginWithEmailResponse, LoginWithPasswordBody, LoginWithPasswordContent, LoginWithPasswordResponse, LoginWithPhoneBody, LoginWithPhoneContent, LoginWithPhoneResponse, LoginWithWhatsappBody, LoginWithWhatsappContent, LoginWithWhatsappResponse, LogoutContent, LogoutFromPosDeviceResponse, LogoutResponse, LoyaltyPointActivity, MeasurementUnit, MemoryTokenStorage, MultiSelectAttribute, NetbankingPayment, NotificationChannelPreferences, NotificationPreferences, NumberAttribute, Order, OrderClient, OrderDetail, OrderItem, OrderList, OrderPayment, OrderRefund, OrderReturn, OrderReturnItem, OrderShipment, Pagination, PairPosDeviceBody, PairPosDeviceContent, PairPosDeviceResponse, PanDetail, 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, PosEvaluateCouponsContent, PosEvaluateCouponsPathParams, PosEvaluateCouponsResponse, PosEvaluatePromotionsContent, PosEvaluatePromotionsPathParams, PosEvaluatePromotionsResponse, PosGetCartContent, PosGetCartPathParams, PosGetCartResponse, PosGetPaymentStatusContent, PosGetPaymentStatusPathParams, PosGetPaymentStatusResponse, PosGetProductDetailContent, PosGetProductDetailHeaderParams, PosGetProductDetailPathParams, PosGetProductDetailResponse, PosGetVariantDetailContent, PosGetVariantDetailHeaderParams, PosGetVariantDetailPathParams, PosGetVariantDetailResponse, PosListCategoriesContent, PosListCategoriesQuery, PosListCategoriesResponse, PosListCouponsContent, PosListCouponsHeaderParams, PosListCouponsResponse, PosListCrosssellProductsContent, PosListCrosssellProductsHeaderParams, PosListCrosssellProductsQuery, PosListCrosssellProductsResponse, PosListPaymentOptionsContent, PosListPaymentOptionsResponse, PosListProductReviewsContent, PosListProductReviewsPathParams, PosListProductReviewsQuery, PosListProductReviewsResponse, PosListProductVariantsContent, PosListProductVariantsHeaderParams, PosListProductVariantsPathParams, 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, 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, UnclaimPosDevicePathParams, UnclaimPosDeviceResponse, UpdateAddressDetailBody, UpdateAddressDetailContent, UpdateAddressDetailPathParams, UpdateAddressDetailResponse, UpdateCartBody, UpdateCartContent, UpdateCartItem, UpdateCartPathParams, UpdateCartResponse, UpdateCustomer, UpdateCustomerBody, UpdateCustomerContent, UpdateCustomerPathParams, UpdateCustomerResponse, UpdateDigitalProductSubscription, UpdateDocument, UpdateDocumentContent, UpdateDocumentFormData, UpdateDocumentPathParams, UpdateDocumentResponse, UpdateFulfillmentPreferenceBody, 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 };
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 };
15617
15808
  //# sourceMappingURL=index.d.ts.map