ce-storefront 0.4.7 → 0.4.9

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.
Files changed (1777) hide show
  1. package/FUNCTIONS.md +4 -2
  2. package/README.md +144 -282
  3. package/docs/sdks/auth/README.md +240 -118
  4. package/docs/sdks/campaigns/README.md +79 -0
  5. package/docs/sdks/carts/README.md +58 -46
  6. package/docs/sdks/catalog/README.md +900 -8
  7. package/docs/sdks/checkout/README.md +76 -410
  8. package/docs/sdks/common/README.md +85 -0
  9. package/docs/sdks/customers/README.md +344 -36
  10. package/docs/sdks/orders/README.md +164 -76
  11. package/docs/sdks/shipping/README.md +8 -7
  12. package/esm/funcs/authCheckVerificationStatus.d.ts +15 -0
  13. package/esm/funcs/authCheckVerificationStatus.d.ts.map +1 -0
  14. package/esm/funcs/authCheckVerificationStatus.js +78 -0
  15. package/esm/funcs/authCheckVerificationStatus.js.map +1 -0
  16. package/esm/funcs/authCreateNotificationPreferences.d.ts +15 -0
  17. package/esm/funcs/authCreateNotificationPreferences.d.ts.map +1 -0
  18. package/esm/funcs/authCreateNotificationPreferences.js +84 -0
  19. package/esm/funcs/authCreateNotificationPreferences.js.map +1 -0
  20. package/esm/funcs/authGenerateOtp.d.ts +1 -1
  21. package/esm/funcs/authGenerateOtp.d.ts.map +1 -1
  22. package/esm/funcs/authGenerateOtp.js +9 -4
  23. package/esm/funcs/authGenerateOtp.js.map +1 -1
  24. package/esm/funcs/authGetAnonymousToken.d.ts +16 -0
  25. package/esm/funcs/authGetAnonymousToken.d.ts.map +1 -0
  26. package/esm/funcs/authGetAnonymousToken.js +71 -0
  27. package/esm/funcs/authGetAnonymousToken.js.map +1 -0
  28. package/esm/funcs/authGetNotificationPreferences.d.ts +15 -0
  29. package/esm/funcs/authGetNotificationPreferences.d.ts.map +1 -0
  30. package/esm/funcs/authGetNotificationPreferences.js +83 -0
  31. package/esm/funcs/authGetNotificationPreferences.js.map +1 -0
  32. package/esm/funcs/authGetUserDetail.d.ts +15 -0
  33. package/esm/funcs/authGetUserDetail.d.ts.map +1 -0
  34. package/esm/funcs/authGetUserDetail.js +81 -0
  35. package/esm/funcs/authGetUserDetail.js.map +1 -0
  36. package/esm/funcs/authLoginWithEmail.d.ts +1 -1
  37. package/esm/funcs/authLoginWithEmail.d.ts.map +1 -1
  38. package/esm/funcs/authLoginWithEmail.js +9 -4
  39. package/esm/funcs/authLoginWithEmail.js.map +1 -1
  40. package/esm/funcs/authLoginWithPhone.d.ts +1 -1
  41. package/esm/funcs/authLoginWithPhone.d.ts.map +1 -1
  42. package/esm/funcs/authLoginWithPhone.js +9 -4
  43. package/esm/funcs/authLoginWithPhone.js.map +1 -1
  44. package/esm/funcs/authLoginWithWhatsapp.d.ts +1 -1
  45. package/esm/funcs/authLoginWithWhatsapp.d.ts.map +1 -1
  46. package/esm/funcs/authLoginWithWhatsapp.js +9 -4
  47. package/esm/funcs/authLoginWithWhatsapp.js.map +1 -1
  48. package/esm/funcs/authLogout.d.ts +15 -0
  49. package/esm/funcs/authLogout.d.ts.map +1 -0
  50. package/esm/funcs/authLogout.js +66 -0
  51. package/esm/funcs/authLogout.js.map +1 -0
  52. package/esm/funcs/authRefreshToken.d.ts +1 -1
  53. package/esm/funcs/authRefreshToken.d.ts.map +1 -1
  54. package/esm/funcs/authRefreshToken.js +9 -4
  55. package/esm/funcs/authRefreshToken.js.map +1 -1
  56. package/esm/funcs/authUpdateNotificationPreferences.d.ts +15 -0
  57. package/esm/funcs/authUpdateNotificationPreferences.d.ts.map +1 -0
  58. package/esm/funcs/authUpdateNotificationPreferences.js +84 -0
  59. package/esm/funcs/authUpdateNotificationPreferences.js.map +1 -0
  60. package/esm/funcs/authUpdateUser.d.ts +15 -0
  61. package/esm/funcs/authUpdateUser.d.ts.map +1 -0
  62. package/esm/funcs/authUpdateUser.js +82 -0
  63. package/esm/funcs/authUpdateUser.js.map +1 -0
  64. package/esm/funcs/authVerifyOtp.d.ts +1 -1
  65. package/esm/funcs/authVerifyOtp.d.ts.map +1 -1
  66. package/esm/funcs/authVerifyOtp.js +9 -4
  67. package/esm/funcs/authVerifyOtp.js.map +1 -1
  68. package/esm/funcs/campaignsSubscribeNewsletter.d.ts +15 -0
  69. package/esm/funcs/campaignsSubscribeNewsletter.d.ts.map +1 -0
  70. package/esm/funcs/campaignsSubscribeNewsletter.js +78 -0
  71. package/esm/funcs/campaignsSubscribeNewsletter.js.map +1 -0
  72. package/esm/funcs/cartsCreateCart.d.ts +15 -0
  73. package/esm/funcs/cartsCreateCart.d.ts.map +1 -0
  74. package/esm/funcs/cartsCreateCart.js +76 -0
  75. package/esm/funcs/cartsCreateCart.js.map +1 -0
  76. package/esm/funcs/cartsDeleteCart.d.ts +16 -0
  77. package/esm/funcs/cartsDeleteCart.d.ts.map +1 -0
  78. package/esm/funcs/cartsDeleteCart.js +85 -0
  79. package/esm/funcs/cartsDeleteCart.js.map +1 -0
  80. package/esm/funcs/cartsGetCart.d.ts +16 -0
  81. package/esm/funcs/cartsGetCart.d.ts.map +1 -0
  82. package/esm/funcs/cartsGetCart.js +85 -0
  83. package/esm/funcs/cartsGetCart.js.map +1 -0
  84. package/esm/funcs/cartsUpdateCart.d.ts +16 -0
  85. package/esm/funcs/cartsUpdateCart.d.ts.map +1 -0
  86. package/esm/funcs/cartsUpdateCart.js +86 -0
  87. package/esm/funcs/cartsUpdateCart.js.map +1 -0
  88. package/esm/funcs/catalogCreateProductReview.d.ts +16 -0
  89. package/esm/funcs/catalogCreateProductReview.d.ts.map +1 -0
  90. package/esm/funcs/catalogCreateProductReview.js +99 -0
  91. package/esm/funcs/catalogCreateProductReview.js.map +1 -0
  92. package/esm/funcs/catalogGetProductDetail.d.ts +16 -0
  93. package/esm/funcs/catalogGetProductDetail.d.ts.map +1 -0
  94. package/esm/funcs/catalogGetProductDetail.js +89 -0
  95. package/esm/funcs/catalogGetProductDetail.js.map +1 -0
  96. package/esm/funcs/catalogGetVariantDetail.d.ts +16 -0
  97. package/esm/funcs/catalogGetVariantDetail.d.ts.map +1 -0
  98. package/esm/funcs/catalogGetVariantDetail.js +93 -0
  99. package/esm/funcs/catalogGetVariantDetail.js.map +1 -0
  100. package/esm/funcs/catalogListCategories.d.ts +15 -0
  101. package/esm/funcs/catalogListCategories.d.ts.map +1 -0
  102. package/esm/funcs/catalogListCategories.js +82 -0
  103. package/esm/funcs/catalogListCategories.js.map +1 -0
  104. package/esm/funcs/catalogListCrosssellProducts.d.ts +16 -0
  105. package/esm/funcs/catalogListCrosssellProducts.d.ts.map +1 -0
  106. package/esm/funcs/catalogListCrosssellProducts.js +88 -0
  107. package/esm/funcs/catalogListCrosssellProducts.js.map +1 -0
  108. package/esm/funcs/catalogListProductReviews.d.ts +16 -0
  109. package/esm/funcs/catalogListProductReviews.d.ts.map +1 -0
  110. package/esm/funcs/catalogListProductReviews.js +93 -0
  111. package/esm/funcs/catalogListProductReviews.js.map +1 -0
  112. package/esm/funcs/catalogListProductVariants.d.ts +16 -0
  113. package/esm/funcs/catalogListProductVariants.d.ts.map +1 -0
  114. package/esm/funcs/catalogListProductVariants.js +91 -0
  115. package/esm/funcs/catalogListProductVariants.js.map +1 -0
  116. package/esm/funcs/catalogListProducts.d.ts +16 -0
  117. package/esm/funcs/catalogListProducts.d.ts.map +1 -0
  118. package/esm/funcs/catalogListProducts.js +87 -0
  119. package/esm/funcs/catalogListProducts.js.map +1 -0
  120. package/esm/funcs/catalogListSimilarProducts.d.ts +16 -0
  121. package/esm/funcs/catalogListSimilarProducts.d.ts.map +1 -0
  122. package/esm/funcs/catalogListSimilarProducts.js +88 -0
  123. package/esm/funcs/catalogListSimilarProducts.js.map +1 -0
  124. package/esm/funcs/catalogListSkus.d.ts +16 -0
  125. package/esm/funcs/catalogListSkus.d.ts.map +1 -0
  126. package/esm/funcs/catalogListSkus.js +88 -0
  127. package/esm/funcs/catalogListSkus.js.map +1 -0
  128. package/esm/funcs/catalogListUpsellProducts.d.ts +16 -0
  129. package/esm/funcs/catalogListUpsellProducts.d.ts.map +1 -0
  130. package/esm/funcs/catalogListUpsellProducts.js +86 -0
  131. package/esm/funcs/catalogListUpsellProducts.js.map +1 -0
  132. package/esm/funcs/catalogSearchProducts.d.ts +17 -0
  133. package/esm/funcs/catalogSearchProducts.d.ts.map +1 -0
  134. package/esm/funcs/catalogSearchProducts.js +81 -0
  135. package/esm/funcs/catalogSearchProducts.js.map +1 -0
  136. package/esm/funcs/checkoutApplyCoupon.d.ts +1 -1
  137. package/esm/funcs/checkoutApplyCoupon.d.ts.map +1 -1
  138. package/esm/funcs/checkoutApplyCoupon.js +9 -4
  139. package/esm/funcs/checkoutApplyCoupon.js.map +1 -1
  140. package/esm/funcs/checkoutCreateCheckoutAddress.d.ts +16 -0
  141. package/esm/funcs/checkoutCreateCheckoutAddress.d.ts.map +1 -0
  142. package/esm/funcs/checkoutCreateCheckoutAddress.js +82 -0
  143. package/esm/funcs/checkoutCreateCheckoutAddress.js.map +1 -0
  144. package/esm/funcs/checkoutRemoveCoupon.d.ts +1 -1
  145. package/esm/funcs/checkoutRemoveCoupon.d.ts.map +1 -1
  146. package/esm/funcs/checkoutRemoveCoupon.js +9 -4
  147. package/esm/funcs/checkoutRemoveCoupon.js.map +1 -1
  148. package/esm/funcs/commonListCountryPincodes.d.ts +15 -0
  149. package/esm/funcs/commonListCountryPincodes.d.ts.map +1 -0
  150. package/esm/funcs/commonListCountryPincodes.js +86 -0
  151. package/esm/funcs/commonListCountryPincodes.js.map +1 -0
  152. package/esm/funcs/customersCreateAddress.d.ts +16 -0
  153. package/esm/funcs/customersCreateAddress.d.ts.map +1 -0
  154. package/esm/funcs/customersCreateAddress.js +86 -0
  155. package/esm/funcs/customersCreateAddress.js.map +1 -0
  156. package/esm/funcs/customersDeleteAddress.d.ts +16 -0
  157. package/esm/funcs/customersDeleteAddress.d.ts.map +1 -0
  158. package/esm/funcs/customersDeleteAddress.js +89 -0
  159. package/esm/funcs/customersDeleteAddress.js.map +1 -0
  160. package/esm/funcs/customersGetAddressDetail.d.ts +16 -0
  161. package/esm/funcs/customersGetAddressDetail.d.ts.map +1 -0
  162. package/esm/funcs/customersGetAddressDetail.js +89 -0
  163. package/esm/funcs/customersGetAddressDetail.js.map +1 -0
  164. package/esm/funcs/customersListAddresses.d.ts +15 -0
  165. package/esm/funcs/customersListAddresses.d.ts.map +1 -0
  166. package/esm/funcs/customersListAddresses.js +86 -0
  167. package/esm/funcs/customersListAddresses.js.map +1 -0
  168. package/esm/funcs/customersListUserReviews.d.ts +15 -0
  169. package/esm/funcs/customersListUserReviews.d.ts.map +1 -0
  170. package/esm/funcs/customersListUserReviews.js +81 -0
  171. package/esm/funcs/customersListUserReviews.js.map +1 -0
  172. package/esm/funcs/customersUpdateAddressDetail.d.ts +16 -0
  173. package/esm/funcs/customersUpdateAddressDetail.d.ts.map +1 -0
  174. package/esm/funcs/customersUpdateAddressDetail.js +92 -0
  175. package/esm/funcs/customersUpdateAddressDetail.js.map +1 -0
  176. package/esm/funcs/ordersCancelOrder.d.ts +16 -0
  177. package/esm/funcs/ordersCancelOrder.d.ts.map +1 -0
  178. package/esm/funcs/ordersCancelOrder.js +86 -0
  179. package/esm/funcs/ordersCancelOrder.js.map +1 -0
  180. package/esm/funcs/ordersCreateOrder.d.ts +16 -0
  181. package/esm/funcs/ordersCreateOrder.d.ts.map +1 -0
  182. package/esm/funcs/ordersCreateOrder.js +80 -0
  183. package/esm/funcs/ordersCreateOrder.js.map +1 -0
  184. package/esm/funcs/ordersGetOrderDetail.d.ts +16 -0
  185. package/esm/funcs/ordersGetOrderDetail.d.ts.map +1 -0
  186. package/esm/funcs/ordersGetOrderDetail.js +85 -0
  187. package/esm/funcs/ordersGetOrderDetail.js.map +1 -0
  188. package/esm/funcs/ordersGetPaymentStatus.d.ts +15 -0
  189. package/esm/funcs/ordersGetPaymentStatus.d.ts.map +1 -0
  190. package/esm/funcs/ordersGetPaymentStatus.js +81 -0
  191. package/esm/funcs/ordersGetPaymentStatus.js.map +1 -0
  192. package/esm/funcs/ordersListOrderShipments.d.ts +16 -0
  193. package/esm/funcs/ordersListOrderShipments.d.ts.map +1 -0
  194. package/esm/funcs/ordersListOrderShipments.js +85 -0
  195. package/esm/funcs/ordersListOrderShipments.js.map +1 -0
  196. package/esm/funcs/ordersListOrders.d.ts +15 -0
  197. package/esm/funcs/ordersListOrders.d.ts.map +1 -0
  198. package/esm/funcs/ordersListOrders.js +83 -0
  199. package/esm/funcs/ordersListOrders.js.map +1 -0
  200. package/esm/funcs/ordersRetryOrderPayment.d.ts +16 -0
  201. package/esm/funcs/ordersRetryOrderPayment.d.ts.map +1 -0
  202. package/esm/funcs/ordersRetryOrderPayment.js +86 -0
  203. package/esm/funcs/ordersRetryOrderPayment.js.map +1 -0
  204. package/esm/funcs/shippingCheckDeliveryAvailability.d.ts +16 -0
  205. package/esm/funcs/shippingCheckDeliveryAvailability.d.ts.map +1 -0
  206. package/esm/funcs/shippingCheckDeliveryAvailability.js +87 -0
  207. package/esm/funcs/shippingCheckDeliveryAvailability.js.map +1 -0
  208. package/esm/lib/config.d.ts +3 -3
  209. package/esm/lib/config.js +3 -3
  210. package/esm/lib/retries.js +0 -1
  211. package/esm/lib/retries.js.map +1 -1
  212. package/esm/models/components/cart.d.ts +64 -86
  213. package/esm/models/components/cart.d.ts.map +1 -1
  214. package/esm/models/components/cart.js +68 -95
  215. package/esm/models/components/cart.js.map +1 -1
  216. package/esm/models/components/cartitem.d.ts +100 -79
  217. package/esm/models/components/cartitem.d.ts.map +1 -1
  218. package/esm/models/components/cartitem.js +105 -74
  219. package/esm/models/components/cartitem.js.map +1 -1
  220. package/esm/models/components/category.d.ts +41 -0
  221. package/esm/models/components/category.d.ts.map +1 -0
  222. package/esm/models/components/category.js +54 -0
  223. package/esm/models/components/category.js.map +1 -0
  224. package/esm/models/components/createreview.d.ts +4 -58
  225. package/esm/models/components/createreview.d.ts.map +1 -1
  226. package/esm/models/components/createreview.js +4 -78
  227. package/esm/models/components/createreview.js.map +1 -1
  228. package/esm/models/components/customeraddress.d.ts +22 -110
  229. package/esm/models/components/customeraddress.d.ts.map +1 -1
  230. package/esm/models/components/customeraddress.js +22 -107
  231. package/esm/models/components/customeraddress.js.map +1 -1
  232. package/esm/models/components/customeraddressinput.d.ts +69 -0
  233. package/esm/models/components/customeraddressinput.d.ts.map +1 -0
  234. package/esm/models/components/customeraddressinput.js +78 -0
  235. package/esm/models/components/customeraddressinput.js.map +1 -0
  236. package/esm/models/components/index.d.ts +2 -24
  237. package/esm/models/components/index.d.ts.map +1 -1
  238. package/esm/models/components/index.js +2 -24
  239. package/esm/models/components/index.js.map +1 -1
  240. package/esm/models/components/juspaypaymentinfo.d.ts +4 -64
  241. package/esm/models/components/juspaypaymentinfo.d.ts.map +1 -1
  242. package/esm/models/components/juspaypaymentinfo.js +4 -48
  243. package/esm/models/components/juspaypaymentinfo.js.map +1 -1
  244. package/esm/models/components/orderdetail.d.ts +8 -8
  245. package/esm/models/components/orderdetail.d.ts.map +1 -1
  246. package/esm/models/components/orderdetail.js +13 -12
  247. package/esm/models/components/orderdetail.js.map +1 -1
  248. package/esm/models/components/orderitem.d.ts +2 -25
  249. package/esm/models/components/orderitem.d.ts.map +1 -1
  250. package/esm/models/components/orderitem.js +2 -20
  251. package/esm/models/components/orderitem.js.map +1 -1
  252. package/esm/models/components/payupaymentinfo.d.ts +6 -91
  253. package/esm/models/components/payupaymentinfo.d.ts.map +1 -1
  254. package/esm/models/components/payupaymentinfo.js +6 -69
  255. package/esm/models/components/payupaymentinfo.js.map +1 -1
  256. package/esm/models/components/product.d.ts +2 -2
  257. package/esm/models/components/product.d.ts.map +1 -1
  258. package/esm/models/components/product.js +2 -2
  259. package/esm/models/components/product.js.map +1 -1
  260. package/esm/models/components/productbundleitem.d.ts +2 -2
  261. package/esm/models/components/productbundleitem.d.ts.map +1 -1
  262. package/esm/models/components/productbundleitem.js +2 -2
  263. package/esm/models/components/productbundleitem.js.map +1 -1
  264. package/esm/models/components/productcategory.d.ts +5 -37
  265. package/esm/models/components/productcategory.d.ts.map +1 -1
  266. package/esm/models/components/productcategory.js +5 -47
  267. package/esm/models/components/productcategory.js.map +1 -1
  268. package/esm/models/components/productdetail.d.ts +2 -2
  269. package/esm/models/components/productdetail.d.ts.map +1 -1
  270. package/esm/models/components/productdetail.js +2 -2
  271. package/esm/models/components/productdetail.js.map +1 -1
  272. package/esm/models/components/productpricing.d.ts +2 -25
  273. package/esm/models/components/productpricing.d.ts.map +1 -1
  274. package/esm/models/components/productpricing.js +2 -21
  275. package/esm/models/components/productpricing.js.map +1 -1
  276. package/esm/models/components/seo.d.ts +2 -2
  277. package/esm/models/components/seo.d.ts.map +1 -1
  278. package/esm/models/components/seo.js +2 -2
  279. package/esm/models/components/seo.js.map +1 -1
  280. package/esm/models/components/sku.d.ts +2 -2
  281. package/esm/models/components/sku.d.ts.map +1 -1
  282. package/esm/models/components/sku.js +2 -2
  283. package/esm/models/components/sku.js.map +1 -1
  284. package/esm/models/components/variant.d.ts +2 -2
  285. package/esm/models/components/variant.d.ts.map +1 -1
  286. package/esm/models/components/variant.js +2 -2
  287. package/esm/models/components/variant.js.map +1 -1
  288. package/esm/models/components/variantdetail.d.ts +2 -2
  289. package/esm/models/components/variantdetail.d.ts.map +1 -1
  290. package/esm/models/components/variantdetail.js +2 -2
  291. package/esm/models/components/variantdetail.js.map +1 -1
  292. package/esm/models/operations/applycoupon.d.ts +93 -0
  293. package/esm/models/operations/applycoupon.d.ts.map +1 -0
  294. package/esm/models/operations/applycoupon.js +109 -0
  295. package/esm/models/operations/applycoupon.js.map +1 -0
  296. package/esm/models/operations/cancelorder.d.ts +156 -0
  297. package/esm/models/operations/cancelorder.d.ts.map +1 -0
  298. package/esm/models/operations/cancelorder.js +172 -0
  299. package/esm/models/operations/cancelorder.js.map +1 -0
  300. package/esm/models/operations/checkdeliveryavailability.d.ts +63 -0
  301. package/esm/models/operations/checkdeliveryavailability.d.ts.map +1 -0
  302. package/esm/models/operations/checkdeliveryavailability.js +68 -0
  303. package/esm/models/operations/checkdeliveryavailability.js.map +1 -0
  304. package/esm/models/operations/checkverificationstatus.d.ts +115 -0
  305. package/esm/models/operations/checkverificationstatus.d.ts.map +1 -0
  306. package/esm/models/operations/checkverificationstatus.js +112 -0
  307. package/esm/models/operations/checkverificationstatus.js.map +1 -0
  308. package/esm/models/operations/createaddress.d.ts +168 -0
  309. package/esm/models/operations/createaddress.d.ts.map +1 -0
  310. package/esm/models/operations/createaddress.js +188 -0
  311. package/esm/models/operations/createaddress.js.map +1 -0
  312. package/esm/models/operations/createcart.d.ts +91 -0
  313. package/esm/models/operations/createcart.d.ts.map +1 -0
  314. package/esm/models/operations/createcart.js +96 -0
  315. package/esm/models/operations/createcart.js.map +1 -0
  316. package/esm/models/operations/createcheckoutaddress.d.ts +154 -0
  317. package/esm/models/operations/createcheckoutaddress.d.ts.map +1 -0
  318. package/esm/models/operations/createcheckoutaddress.js +181 -0
  319. package/esm/models/operations/createcheckoutaddress.js.map +1 -0
  320. package/esm/models/operations/createnotificationpreferences.d.ts +136 -0
  321. package/esm/models/operations/createnotificationpreferences.d.ts.map +1 -0
  322. package/esm/models/operations/createnotificationpreferences.js +154 -0
  323. package/esm/models/operations/createnotificationpreferences.js.map +1 -0
  324. package/esm/models/operations/createorder.d.ts +199 -0
  325. package/esm/models/operations/createorder.d.ts.map +1 -0
  326. package/esm/models/operations/createorder.js +244 -0
  327. package/esm/models/operations/createorder.js.map +1 -0
  328. package/esm/models/operations/createproductreview.d.ts +66 -0
  329. package/esm/models/operations/createproductreview.d.ts.map +1 -0
  330. package/esm/models/operations/createproductreview.js +82 -0
  331. package/esm/models/operations/createproductreview.js.map +1 -0
  332. package/esm/models/operations/deleteaddress.d.ts +68 -0
  333. package/esm/models/operations/deleteaddress.d.ts.map +1 -0
  334. package/esm/models/operations/deleteaddress.js +81 -0
  335. package/esm/models/operations/deleteaddress.js.map +1 -0
  336. package/esm/models/operations/deletecart.d.ts +63 -0
  337. package/esm/models/operations/deletecart.d.ts.map +1 -0
  338. package/esm/models/operations/deletecart.js +77 -0
  339. package/esm/models/operations/deletecart.js.map +1 -0
  340. package/esm/models/operations/generateotp.d.ts +205 -0
  341. package/esm/models/operations/generateotp.d.ts.map +1 -0
  342. package/esm/models/operations/generateotp.js +174 -0
  343. package/esm/models/operations/generateotp.js.map +1 -0
  344. package/esm/models/operations/getaddressdetail.d.ts +170 -0
  345. package/esm/models/operations/getaddressdetail.d.ts.map +1 -0
  346. package/esm/models/operations/getaddressdetail.js +199 -0
  347. package/esm/models/operations/getaddressdetail.js.map +1 -0
  348. package/esm/models/operations/getanonymoustoken.d.ts +110 -0
  349. package/esm/models/operations/getanonymoustoken.d.ts.map +1 -0
  350. package/esm/models/operations/getanonymoustoken.js +119 -0
  351. package/esm/models/operations/getanonymoustoken.js.map +1 -0
  352. package/esm/models/operations/getcart.d.ts +1 -0
  353. package/esm/models/operations/getcart.d.ts.map +1 -1
  354. package/esm/models/operations/getcart.js +10 -0
  355. package/esm/models/operations/getcart.js.map +1 -1
  356. package/esm/models/operations/getnotificationpreferences.d.ts +106 -0
  357. package/esm/models/operations/getnotificationpreferences.d.ts.map +1 -0
  358. package/esm/models/operations/getnotificationpreferences.js +109 -0
  359. package/esm/models/operations/getnotificationpreferences.js.map +1 -0
  360. package/esm/models/operations/getorderdetail.d.ts +91 -0
  361. package/esm/models/operations/getorderdetail.d.ts.map +1 -0
  362. package/esm/models/operations/getorderdetail.js +105 -0
  363. package/esm/models/operations/getorderdetail.js.map +1 -0
  364. package/esm/models/operations/getpaymentstatus.d.ts +126 -0
  365. package/esm/models/operations/getpaymentstatus.d.ts.map +1 -0
  366. package/esm/models/operations/getpaymentstatus.js +140 -0
  367. package/esm/models/operations/getpaymentstatus.js.map +1 -0
  368. package/esm/models/operations/getproductdetail.d.ts +96 -0
  369. package/esm/models/operations/getproductdetail.d.ts.map +1 -0
  370. package/esm/models/operations/getproductdetail.js +109 -0
  371. package/esm/models/operations/getproductdetail.js.map +1 -0
  372. package/esm/models/operations/getuserdetail.d.ts +103 -0
  373. package/esm/models/operations/getuserdetail.d.ts.map +1 -0
  374. package/esm/models/operations/getuserdetail.js +96 -0
  375. package/esm/models/operations/getuserdetail.js.map +1 -0
  376. package/esm/models/operations/getvariantdetail.d.ts +101 -0
  377. package/esm/models/operations/getvariantdetail.d.ts.map +1 -0
  378. package/esm/models/operations/getvariantdetail.js +113 -0
  379. package/esm/models/operations/getvariantdetail.js.map +1 -0
  380. package/esm/models/operations/index.d.ts +48 -89
  381. package/esm/models/operations/index.d.ts.map +1 -1
  382. package/esm/models/operations/index.js +48 -89
  383. package/esm/models/operations/index.js.map +1 -1
  384. package/esm/models/operations/listaddresses.d.ts +181 -0
  385. package/esm/models/operations/listaddresses.d.ts.map +1 -0
  386. package/esm/models/operations/listaddresses.js +200 -0
  387. package/esm/models/operations/listaddresses.js.map +1 -0
  388. package/esm/models/operations/listcategories.d.ts +111 -0
  389. package/esm/models/operations/listcategories.d.ts.map +1 -0
  390. package/esm/models/operations/listcategories.js +117 -0
  391. package/esm/models/operations/listcategories.js.map +1 -0
  392. package/esm/models/operations/listcountrypincodes.d.ts +106 -0
  393. package/esm/models/operations/listcountrypincodes.d.ts.map +1 -0
  394. package/esm/models/operations/listcountrypincodes.js +111 -0
  395. package/esm/models/operations/listcountrypincodes.js.map +1 -0
  396. package/esm/models/operations/listcrosssellproducts.d.ts +111 -0
  397. package/esm/models/operations/listcrosssellproducts.d.ts.map +1 -0
  398. package/esm/models/operations/listcrosssellproducts.js +115 -0
  399. package/esm/models/operations/listcrosssellproducts.js.map +1 -0
  400. package/esm/models/operations/listorders.d.ts +116 -0
  401. package/esm/models/operations/listorders.d.ts.map +1 -0
  402. package/esm/models/operations/listorders.js +117 -0
  403. package/esm/models/operations/listorders.js.map +1 -0
  404. package/esm/models/operations/listordershipments.d.ts +91 -0
  405. package/esm/models/operations/listordershipments.d.ts.map +1 -0
  406. package/esm/models/operations/listordershipments.js +105 -0
  407. package/esm/models/operations/listordershipments.js.map +1 -0
  408. package/esm/models/operations/listproductreviews.d.ts +123 -0
  409. package/esm/models/operations/listproductreviews.d.ts.map +1 -0
  410. package/esm/models/operations/listproductreviews.js +131 -0
  411. package/esm/models/operations/listproductreviews.js.map +1 -0
  412. package/esm/models/operations/listproducts.d.ts +116 -0
  413. package/esm/models/operations/listproducts.d.ts.map +1 -0
  414. package/esm/models/operations/listproducts.js +119 -0
  415. package/esm/models/operations/listproducts.js.map +1 -0
  416. package/esm/models/operations/listproductvariants.d.ts +96 -0
  417. package/esm/models/operations/listproductvariants.d.ts.map +1 -0
  418. package/esm/models/operations/listproductvariants.js +109 -0
  419. package/esm/models/operations/listproductvariants.js.map +1 -0
  420. package/esm/models/operations/listsimilarproducts.d.ts +111 -0
  421. package/esm/models/operations/listsimilarproducts.d.ts.map +1 -0
  422. package/esm/models/operations/listsimilarproducts.js +115 -0
  423. package/esm/models/operations/listsimilarproducts.js.map +1 -0
  424. package/esm/models/operations/listskus.d.ts +121 -0
  425. package/esm/models/operations/listskus.d.ts.map +1 -0
  426. package/esm/models/operations/listskus.js +121 -0
  427. package/esm/models/operations/listskus.js.map +1 -0
  428. package/esm/models/operations/listupsellproducts.d.ts +114 -0
  429. package/esm/models/operations/listupsellproducts.d.ts.map +1 -0
  430. package/esm/models/operations/listupsellproducts.js +115 -0
  431. package/esm/models/operations/listupsellproducts.js.map +1 -0
  432. package/esm/models/operations/listuserreviews.d.ts +93 -0
  433. package/esm/models/operations/listuserreviews.d.ts.map +1 -0
  434. package/esm/models/operations/listuserreviews.js +117 -0
  435. package/esm/models/operations/listuserreviews.js.map +1 -0
  436. package/esm/models/operations/loginwithemail.d.ts +119 -0
  437. package/esm/models/operations/loginwithemail.d.ts.map +1 -0
  438. package/esm/models/operations/loginwithemail.js +118 -0
  439. package/esm/models/operations/loginwithemail.js.map +1 -0
  440. package/esm/models/operations/loginwithphone.d.ts +124 -0
  441. package/esm/models/operations/loginwithphone.d.ts.map +1 -0
  442. package/esm/models/operations/loginwithphone.js +122 -0
  443. package/esm/models/operations/loginwithphone.js.map +1 -0
  444. package/esm/models/operations/loginwithwhatsapp.d.ts +124 -0
  445. package/esm/models/operations/loginwithwhatsapp.d.ts.map +1 -0
  446. package/esm/models/operations/loginwithwhatsapp.js +122 -0
  447. package/esm/models/operations/loginwithwhatsapp.js.map +1 -0
  448. package/esm/models/operations/logout.d.ts +85 -0
  449. package/esm/models/operations/logout.d.ts.map +1 -0
  450. package/esm/models/operations/logout.js +86 -0
  451. package/esm/models/operations/logout.js.map +1 -0
  452. package/esm/models/operations/refreshtoken.d.ts +110 -0
  453. package/esm/models/operations/refreshtoken.d.ts.map +1 -0
  454. package/esm/models/operations/refreshtoken.js +116 -0
  455. package/esm/models/operations/refreshtoken.js.map +1 -0
  456. package/esm/models/operations/removecoupon.d.ts +93 -0
  457. package/esm/models/operations/removecoupon.d.ts.map +1 -0
  458. package/esm/models/operations/removecoupon.js +109 -0
  459. package/esm/models/operations/removecoupon.js.map +1 -0
  460. package/esm/models/operations/retryorderpayment.d.ts +194 -0
  461. package/esm/models/operations/retryorderpayment.d.ts.map +1 -0
  462. package/esm/models/operations/retryorderpayment.js +252 -0
  463. package/esm/models/operations/retryorderpayment.js.map +1 -0
  464. package/esm/models/operations/searchproducts.d.ts +111 -0
  465. package/esm/models/operations/searchproducts.d.ts.map +1 -0
  466. package/esm/models/operations/searchproducts.js +115 -0
  467. package/esm/models/operations/searchproducts.js.map +1 -0
  468. package/esm/models/operations/subscribenewsletter.d.ts +60 -0
  469. package/esm/models/operations/subscribenewsletter.d.ts.map +1 -0
  470. package/esm/models/operations/subscribenewsletter.js +68 -0
  471. package/esm/models/operations/subscribenewsletter.js.map +1 -0
  472. package/esm/models/operations/updateaddressdetail.d.ts +173 -0
  473. package/esm/models/operations/updateaddressdetail.d.ts.map +1 -0
  474. package/esm/models/operations/updateaddressdetail.js +192 -0
  475. package/esm/models/operations/updateaddressdetail.js.map +1 -0
  476. package/esm/models/operations/updatecart.d.ts +96 -0
  477. package/esm/models/operations/updatecart.d.ts.map +1 -0
  478. package/esm/models/operations/updatecart.js +107 -0
  479. package/esm/models/operations/updatecart.js.map +1 -0
  480. package/esm/models/operations/updatenotificationpreferences.d.ts +136 -0
  481. package/esm/models/operations/updatenotificationpreferences.d.ts.map +1 -0
  482. package/esm/models/operations/updatenotificationpreferences.js +154 -0
  483. package/esm/models/operations/updatenotificationpreferences.js.map +1 -0
  484. package/esm/models/operations/updateuser.d.ts +105 -0
  485. package/esm/models/operations/updateuser.d.ts.map +1 -0
  486. package/esm/models/operations/updateuser.js +107 -0
  487. package/esm/models/operations/updateuser.js.map +1 -0
  488. package/esm/models/operations/verifyotp.d.ts +170 -0
  489. package/esm/models/operations/verifyotp.d.ts.map +1 -0
  490. package/esm/models/operations/verifyotp.js +153 -0
  491. package/esm/models/operations/verifyotp.js.map +1 -0
  492. package/esm/sdk/auth.d.ts +35 -34
  493. package/esm/sdk/auth.d.ts.map +1 -1
  494. package/esm/sdk/auth.js +50 -47
  495. package/esm/sdk/auth.js.map +1 -1
  496. package/esm/sdk/campaigns.d.ts +9 -4
  497. package/esm/sdk/campaigns.d.ts.map +1 -1
  498. package/esm/sdk/campaigns.js +10 -3
  499. package/esm/sdk/campaigns.js.map +1 -1
  500. package/esm/sdk/carts.d.ts +4 -4
  501. package/esm/sdk/carts.d.ts.map +1 -1
  502. package/esm/sdk/carts.js +12 -12
  503. package/esm/sdk/carts.js.map +1 -1
  504. package/esm/sdk/catalog.d.ts +78 -10
  505. package/esm/sdk/catalog.d.ts.map +1 -1
  506. package/esm/sdk/catalog.js +110 -12
  507. package/esm/sdk/catalog.js.map +1 -1
  508. package/esm/sdk/checkout.d.ts +4 -39
  509. package/esm/sdk/checkout.d.ts.map +1 -1
  510. package/esm/sdk/checkout.js +4 -54
  511. package/esm/sdk/checkout.js.map +1 -1
  512. package/esm/sdk/common.d.ts +12 -0
  513. package/esm/sdk/common.d.ts.map +1 -0
  514. package/esm/sdk/common.js +18 -0
  515. package/esm/sdk/common.js.map +1 -0
  516. package/esm/sdk/customers.d.ts +30 -19
  517. package/esm/sdk/customers.d.ts.map +1 -1
  518. package/esm/sdk/customers.js +42 -24
  519. package/esm/sdk/customers.js.map +1 -1
  520. package/esm/sdk/orders.d.ts +20 -22
  521. package/esm/sdk/orders.d.ts.map +1 -1
  522. package/esm/sdk/orders.js +35 -37
  523. package/esm/sdk/orders.js.map +1 -1
  524. package/esm/sdk/sdk.d.ts +3 -21
  525. package/esm/sdk/sdk.d.ts.map +1 -1
  526. package/esm/sdk/sdk.js +3 -27
  527. package/esm/sdk/sdk.js.map +1 -1
  528. package/esm/sdk/shipping.d.ts +2 -2
  529. package/esm/sdk/shipping.d.ts.map +1 -1
  530. package/esm/sdk/shipping.js +4 -4
  531. package/esm/sdk/shipping.js.map +1 -1
  532. package/jsr.json +1 -1
  533. package/package.json +6 -7
  534. package/src/funcs/authCheckVerificationStatus.ts +135 -0
  535. package/src/funcs/authCreateNotificationPreferences.ts +149 -0
  536. package/src/funcs/authGenerateOtp.ts +13 -8
  537. package/src/funcs/authGetAnonymousToken.ts +124 -0
  538. package/src/funcs/authGetNotificationPreferences.ts +146 -0
  539. package/src/funcs/authGetUserDetail.ts +138 -0
  540. package/src/funcs/authLoginWithEmail.ts +13 -8
  541. package/src/funcs/authLoginWithPhone.ts +13 -8
  542. package/src/funcs/authLoginWithWhatsapp.ts +13 -7
  543. package/src/funcs/authLogout.ts +116 -0
  544. package/src/funcs/authRefreshToken.ts +13 -8
  545. package/src/funcs/authUpdateNotificationPreferences.ts +149 -0
  546. package/src/funcs/authUpdateUser.ts +139 -0
  547. package/src/funcs/authVerifyOtp.ts +13 -8
  548. package/src/funcs/campaignsSubscribeNewsletter.ts +135 -0
  549. package/src/funcs/cartsCreateCart.ts +132 -0
  550. package/src/funcs/cartsDeleteCart.ts +149 -0
  551. package/src/funcs/cartsGetCart.ts +149 -0
  552. package/src/funcs/cartsUpdateCart.ts +153 -0
  553. package/src/funcs/catalogCreateProductReview.ts +168 -0
  554. package/src/funcs/catalogGetProductDetail.ts +154 -0
  555. package/src/funcs/catalogGetVariantDetail.ts +160 -0
  556. package/src/funcs/catalogListCategories.ts +139 -0
  557. package/src/funcs/catalogListCrosssellProducts.ts +153 -0
  558. package/src/funcs/catalogListProductReviews.ts +160 -0
  559. package/src/funcs/catalogListProductVariants.ts +159 -0
  560. package/src/funcs/catalogListProducts.ts +151 -0
  561. package/src/funcs/catalogListSimilarProducts.ts +153 -0
  562. package/src/funcs/catalogListSkus.ts +152 -0
  563. package/src/funcs/catalogListUpsellProducts.ts +152 -0
  564. package/src/funcs/catalogSearchProducts.ts +141 -0
  565. package/src/funcs/checkoutApplyCoupon.ts +13 -8
  566. package/src/funcs/checkoutCreateCheckoutAddress.ts +149 -0
  567. package/src/funcs/checkoutRemoveCoupon.ts +13 -8
  568. package/src/funcs/commonListCountryPincodes.ts +151 -0
  569. package/src/funcs/customersCreateAddress.ts +150 -0
  570. package/src/funcs/customersDeleteAddress.ts +155 -0
  571. package/src/funcs/customersGetAddressDetail.ts +155 -0
  572. package/src/funcs/customersListAddresses.ts +144 -0
  573. package/src/funcs/customersListUserReviews.ts +138 -0
  574. package/src/funcs/customersUpdateAddressDetail.ts +162 -0
  575. package/src/funcs/ordersCancelOrder.ts +150 -0
  576. package/src/funcs/ordersCreateOrder.ts +146 -0
  577. package/src/funcs/ordersGetOrderDetail.ts +149 -0
  578. package/src/funcs/ordersGetPaymentStatus.ts +138 -0
  579. package/src/funcs/ordersListOrderShipments.ts +151 -0
  580. package/src/funcs/ordersListOrders.ts +140 -0
  581. package/src/funcs/ordersRetryOrderPayment.ts +153 -0
  582. package/src/funcs/shippingCheckDeliveryAvailability.ts +151 -0
  583. package/src/lib/config.ts +3 -3
  584. package/src/lib/retries.ts +0 -1
  585. package/src/models/components/cart.ts +128 -185
  586. package/src/models/components/cartitem.ts +196 -143
  587. package/src/models/components/category.ts +97 -0
  588. package/src/models/components/createreview.ts +8 -152
  589. package/src/models/components/customeraddress.ts +44 -211
  590. package/src/models/components/customeraddressinput.ts +153 -0
  591. package/src/models/components/index.ts +2 -24
  592. package/src/models/components/juspaypaymentinfo.ts +8 -76
  593. package/src/models/components/orderdetail.ts +14 -16
  594. package/src/models/components/orderitem.ts +4 -31
  595. package/src/models/components/payupaymentinfo.ts +12 -103
  596. package/src/models/components/product.ts +4 -4
  597. package/src/models/components/productbundleitem.ts +4 -4
  598. package/src/models/components/productcategory.ts +14 -94
  599. package/src/models/components/productdetail.ts +4 -4
  600. package/src/models/components/productpricing.ts +4 -29
  601. package/src/models/components/seo.ts +4 -4
  602. package/src/models/components/sku.ts +4 -4
  603. package/src/models/components/variant.ts +4 -4
  604. package/src/models/components/variantdetail.ts +4 -4
  605. package/src/models/operations/applycoupon.ts +223 -0
  606. package/src/models/operations/cancelorder.ts +337 -0
  607. package/src/models/operations/checkdeliveryavailability.ts +152 -0
  608. package/src/models/operations/checkverificationstatus.ts +260 -0
  609. package/src/models/operations/createaddress.ts +387 -0
  610. package/src/models/operations/createcart.ts +208 -0
  611. package/src/models/operations/createcheckoutaddress.ts +373 -0
  612. package/src/models/operations/createnotificationpreferences.ts +360 -0
  613. package/src/models/operations/createorder.ts +483 -0
  614. package/src/models/operations/createproductreview.ts +163 -0
  615. package/src/models/operations/deleteaddress.ts +163 -0
  616. package/src/models/operations/deletecart.ts +154 -0
  617. package/src/models/operations/generateotp.ts +343 -0
  618. package/src/models/operations/getaddressdetail.ts +401 -0
  619. package/src/models/operations/getanonymoustoken.ts +252 -0
  620. package/src/models/operations/getcart.ts +11 -0
  621. package/src/models/operations/getnotificationpreferences.ts +250 -0
  622. package/src/models/operations/getorderdetail.ts +217 -0
  623. package/src/models/operations/getpaymentstatus.ts +264 -0
  624. package/src/models/operations/getproductdetail.ts +228 -0
  625. package/src/models/operations/getuserdetail.ts +220 -0
  626. package/src/models/operations/getvariantdetail.ts +237 -0
  627. package/src/models/operations/index.ts +48 -89
  628. package/src/models/operations/listaddresses.ts +403 -0
  629. package/src/models/operations/listcategories.ts +249 -0
  630. package/src/models/operations/listcountrypincodes.ts +240 -0
  631. package/src/models/operations/listcrosssellproducts.ts +254 -0
  632. package/src/models/operations/listorders.ts +254 -0
  633. package/src/models/operations/listordershipments.ts +219 -0
  634. package/src/models/operations/listproductreviews.ts +277 -0
  635. package/src/models/operations/listproducts.ts +249 -0
  636. package/src/models/operations/listproductvariants.ts +228 -0
  637. package/src/models/operations/listsimilarproducts.ts +249 -0
  638. package/src/models/operations/listskus.ts +259 -0
  639. package/src/models/operations/listupsellproducts.ts +252 -0
  640. package/src/models/operations/listuserreviews.ts +235 -0
  641. package/src/models/operations/loginwithemail.ts +259 -0
  642. package/src/models/operations/loginwithphone.ts +268 -0
  643. package/src/models/operations/loginwithwhatsapp.ts +272 -0
  644. package/src/models/operations/logout.ts +180 -0
  645. package/src/models/operations/refreshtoken.ts +248 -0
  646. package/src/models/operations/removecoupon.ts +223 -0
  647. package/src/models/operations/retryorderpayment.ts +526 -0
  648. package/src/models/operations/searchproducts.ts +231 -0
  649. package/src/models/operations/subscribenewsletter.ts +146 -0
  650. package/src/models/operations/updateaddressdetail.ts +402 -0
  651. package/src/models/operations/updatecart.ts +224 -0
  652. package/src/models/operations/updatenotificationpreferences.ts +360 -0
  653. package/src/models/operations/updateuser.ts +233 -0
  654. package/src/models/operations/verifyotp.ts +306 -0
  655. package/src/sdk/auth.ts +82 -75
  656. package/src/sdk/campaigns.ts +19 -5
  657. package/src/sdk/carts.ts +18 -18
  658. package/src/sdk/catalog.ts +197 -17
  659. package/src/sdk/checkout.ts +10 -100
  660. package/src/sdk/common.ts +27 -0
  661. package/src/sdk/customers.ts +69 -34
  662. package/src/sdk/orders.ts +55 -55
  663. package/src/sdk/sdk.ts +4 -40
  664. package/src/sdk/shipping.ts +6 -6
  665. package/docs/sdks/addresses/README.md +0 -447
  666. package/docs/sdks/analytics/README.md +0 -106
  667. package/docs/sdks/categories/README.md +0 -88
  668. package/docs/sdks/cestorefrontorderspayments/README.md +0 -86
  669. package/docs/sdks/cestorefrontreviews/README.md +0 -178
  670. package/docs/sdks/cestorefrontuser/README.md +0 -896
  671. package/docs/sdks/coupons/README.md +0 -79
  672. package/docs/sdks/juspay/README.md +0 -242
  673. package/docs/sdks/loyalty/README.md +0 -167
  674. package/docs/sdks/newsletter/README.md +0 -84
  675. package/docs/sdks/notificationpreferences/README.md +0 -242
  676. package/docs/sdks/offers/README.md +0 -6
  677. package/docs/sdks/payments/README.md +0 -406
  678. package/docs/sdks/products/README.md +0 -390
  679. package/docs/sdks/promotions/README.md +0 -80
  680. package/docs/sdks/refunds/README.md +0 -86
  681. package/docs/sdks/reviews/README.md +0 -84
  682. package/docs/sdks/shipments/README.md +0 -86
  683. package/docs/sdks/skus/README.md +0 -86
  684. package/docs/sdks/user/README.md +0 -6
  685. package/docs/sdks/utils/README.md +0 -233
  686. package/docs/sdks/variants/README.md +0 -167
  687. package/docs/sdks/wishlist/README.md +0 -258
  688. package/esm/funcs/analyticsTrack.d.ts +0 -16
  689. package/esm/funcs/analyticsTrack.d.ts.map +0 -1
  690. package/esm/funcs/analyticsTrack.js +0 -72
  691. package/esm/funcs/analyticsTrack.js.map +0 -1
  692. package/esm/funcs/authLoginAnonymously.d.ts +0 -16
  693. package/esm/funcs/authLoginAnonymously.d.ts.map +0 -1
  694. package/esm/funcs/authLoginAnonymously.js +0 -66
  695. package/esm/funcs/authLoginAnonymously.js.map +0 -1
  696. package/esm/funcs/authLoginWithPassword.d.ts +0 -15
  697. package/esm/funcs/authLoginWithPassword.d.ts.map +0 -1
  698. package/esm/funcs/authLoginWithPassword.js +0 -71
  699. package/esm/funcs/authLoginWithPassword.js.map +0 -1
  700. package/esm/funcs/authRegisterWithEmail.d.ts +0 -16
  701. package/esm/funcs/authRegisterWithEmail.d.ts.map +0 -1
  702. package/esm/funcs/authRegisterWithEmail.js +0 -72
  703. package/esm/funcs/authRegisterWithEmail.js.map +0 -1
  704. package/esm/funcs/authRegisterWithPassword.d.ts +0 -16
  705. package/esm/funcs/authRegisterWithPassword.d.ts.map +0 -1
  706. package/esm/funcs/authRegisterWithPassword.js +0 -72
  707. package/esm/funcs/authRegisterWithPassword.js.map +0 -1
  708. package/esm/funcs/authRegisterWithPhone.d.ts +0 -15
  709. package/esm/funcs/authRegisterWithPhone.d.ts.map +0 -1
  710. package/esm/funcs/authRegisterWithPhone.js +0 -71
  711. package/esm/funcs/authRegisterWithPhone.js.map +0 -1
  712. package/esm/funcs/authRegisterWithWhatsapp.d.ts +0 -16
  713. package/esm/funcs/authRegisterWithWhatsapp.d.ts.map +0 -1
  714. package/esm/funcs/authRegisterWithWhatsapp.js +0 -72
  715. package/esm/funcs/authRegisterWithWhatsapp.js.map +0 -1
  716. package/esm/funcs/authUserAddProfileImage.d.ts +0 -15
  717. package/esm/funcs/authUserAddProfileImage.d.ts.map +0 -1
  718. package/esm/funcs/authUserAddProfileImage.js +0 -92
  719. package/esm/funcs/authUserAddProfileImage.js.map +0 -1
  720. package/esm/funcs/authUserChangePassword.d.ts +0 -16
  721. package/esm/funcs/authUserChangePassword.d.ts.map +0 -1
  722. package/esm/funcs/authUserChangePassword.js +0 -75
  723. package/esm/funcs/authUserChangePassword.js.map +0 -1
  724. package/esm/funcs/authUserDeactivateAccount.d.ts +0 -15
  725. package/esm/funcs/authUserDeactivateAccount.d.ts.map +0 -1
  726. package/esm/funcs/authUserDeactivateAccount.js +0 -76
  727. package/esm/funcs/authUserDeactivateAccount.js.map +0 -1
  728. package/esm/funcs/authUserDeleteProfileImage.d.ts +0 -15
  729. package/esm/funcs/authUserDeleteProfileImage.d.ts.map +0 -1
  730. package/esm/funcs/authUserDeleteProfileImage.js +0 -76
  731. package/esm/funcs/authUserDeleteProfileImage.js.map +0 -1
  732. package/esm/funcs/authUserForgotPassword.d.ts +0 -15
  733. package/esm/funcs/authUserForgotPassword.d.ts.map +0 -1
  734. package/esm/funcs/authUserForgotPassword.js +0 -71
  735. package/esm/funcs/authUserForgotPassword.js.map +0 -1
  736. package/esm/funcs/authUserGet.d.ts +0 -15
  737. package/esm/funcs/authUserGet.d.ts.map +0 -1
  738. package/esm/funcs/authUserGet.js +0 -76
  739. package/esm/funcs/authUserGet.js.map +0 -1
  740. package/esm/funcs/authUserGetProfileImage.d.ts +0 -15
  741. package/esm/funcs/authUserGetProfileImage.d.ts.map +0 -1
  742. package/esm/funcs/authUserGetProfileImage.js +0 -76
  743. package/esm/funcs/authUserGetProfileImage.js.map +0 -1
  744. package/esm/funcs/authUserLogout.d.ts +0 -15
  745. package/esm/funcs/authUserLogout.d.ts.map +0 -1
  746. package/esm/funcs/authUserLogout.js +0 -61
  747. package/esm/funcs/authUserLogout.js.map +0 -1
  748. package/esm/funcs/authUserResetPassword.d.ts +0 -16
  749. package/esm/funcs/authUserResetPassword.d.ts.map +0 -1
  750. package/esm/funcs/authUserResetPassword.js +0 -75
  751. package/esm/funcs/authUserResetPassword.js.map +0 -1
  752. package/esm/funcs/authUserUpdate.d.ts +0 -15
  753. package/esm/funcs/authUserUpdate.d.ts.map +0 -1
  754. package/esm/funcs/authUserUpdate.js +0 -77
  755. package/esm/funcs/authUserUpdate.js.map +0 -1
  756. package/esm/funcs/authUserUpdateProfileImage.d.ts +0 -15
  757. package/esm/funcs/authUserUpdateProfileImage.d.ts.map +0 -1
  758. package/esm/funcs/authUserUpdateProfileImage.js +0 -94
  759. package/esm/funcs/authUserUpdateProfileImage.js.map +0 -1
  760. package/esm/funcs/authVerifyEmailPhone.d.ts +0 -15
  761. package/esm/funcs/authVerifyEmailPhone.d.ts.map +0 -1
  762. package/esm/funcs/authVerifyEmailPhone.js +0 -71
  763. package/esm/funcs/authVerifyEmailPhone.js.map +0 -1
  764. package/esm/funcs/campaignsNewsletterSubscribe.d.ts +0 -15
  765. package/esm/funcs/campaignsNewsletterSubscribe.d.ts.map +0 -1
  766. package/esm/funcs/campaignsNewsletterSubscribe.js +0 -72
  767. package/esm/funcs/campaignsNewsletterSubscribe.js.map +0 -1
  768. package/esm/funcs/cartsAddItem.d.ts +0 -16
  769. package/esm/funcs/cartsAddItem.d.ts.map +0 -1
  770. package/esm/funcs/cartsAddItem.js +0 -81
  771. package/esm/funcs/cartsAddItem.js.map +0 -1
  772. package/esm/funcs/cartsCreate.d.ts +0 -15
  773. package/esm/funcs/cartsCreate.d.ts.map +0 -1
  774. package/esm/funcs/cartsCreate.js +0 -71
  775. package/esm/funcs/cartsCreate.js.map +0 -1
  776. package/esm/funcs/cartsDelete.d.ts +0 -16
  777. package/esm/funcs/cartsDelete.d.ts.map +0 -1
  778. package/esm/funcs/cartsDelete.js +0 -80
  779. package/esm/funcs/cartsDelete.js.map +0 -1
  780. package/esm/funcs/cartsGet.d.ts +0 -16
  781. package/esm/funcs/cartsGet.d.ts.map +0 -1
  782. package/esm/funcs/cartsGet.js +0 -80
  783. package/esm/funcs/cartsGet.js.map +0 -1
  784. package/esm/funcs/catalogCategoriesList.d.ts +0 -15
  785. package/esm/funcs/catalogCategoriesList.d.ts.map +0 -1
  786. package/esm/funcs/catalogCategoriesList.js +0 -77
  787. package/esm/funcs/catalogCategoriesList.js.map +0 -1
  788. package/esm/funcs/catalogGetSearchProducts.d.ts +0 -17
  789. package/esm/funcs/catalogGetSearchProducts.d.ts.map +0 -1
  790. package/esm/funcs/catalogGetSearchProducts.js +0 -78
  791. package/esm/funcs/catalogGetSearchProducts.js.map +0 -1
  792. package/esm/funcs/catalogProductsGet.d.ts +0 -16
  793. package/esm/funcs/catalogProductsGet.d.ts.map +0 -1
  794. package/esm/funcs/catalogProductsGet.js +0 -84
  795. package/esm/funcs/catalogProductsGet.js.map +0 -1
  796. package/esm/funcs/catalogProductsGetCrossSells.d.ts +0 -16
  797. package/esm/funcs/catalogProductsGetCrossSells.d.ts.map +0 -1
  798. package/esm/funcs/catalogProductsGetCrossSells.js +0 -81
  799. package/esm/funcs/catalogProductsGetCrossSells.js.map +0 -1
  800. package/esm/funcs/catalogProductsGetSimilar.d.ts +0 -16
  801. package/esm/funcs/catalogProductsGetSimilar.d.ts.map +0 -1
  802. package/esm/funcs/catalogProductsGetSimilar.js +0 -81
  803. package/esm/funcs/catalogProductsGetSimilar.js.map +0 -1
  804. package/esm/funcs/catalogProductsGetUpsells.d.ts +0 -16
  805. package/esm/funcs/catalogProductsGetUpsells.d.ts.map +0 -1
  806. package/esm/funcs/catalogProductsGetUpsells.js +0 -81
  807. package/esm/funcs/catalogProductsGetUpsells.js.map +0 -1
  808. package/esm/funcs/catalogProductsList.d.ts +0 -16
  809. package/esm/funcs/catalogProductsList.d.ts.map +0 -1
  810. package/esm/funcs/catalogProductsList.js +0 -82
  811. package/esm/funcs/catalogProductsList.js.map +0 -1
  812. package/esm/funcs/catalogProductsReviewsCreate.d.ts +0 -16
  813. package/esm/funcs/catalogProductsReviewsCreate.d.ts.map +0 -1
  814. package/esm/funcs/catalogProductsReviewsCreate.js +0 -92
  815. package/esm/funcs/catalogProductsReviewsCreate.js.map +0 -1
  816. package/esm/funcs/catalogProductsReviewsList.d.ts +0 -16
  817. package/esm/funcs/catalogProductsReviewsList.d.ts.map +0 -1
  818. package/esm/funcs/catalogProductsReviewsList.js +0 -88
  819. package/esm/funcs/catalogProductsReviewsList.js.map +0 -1
  820. package/esm/funcs/catalogProductsVariantsGet.d.ts +0 -16
  821. package/esm/funcs/catalogProductsVariantsGet.d.ts.map +0 -1
  822. package/esm/funcs/catalogProductsVariantsGet.js +0 -88
  823. package/esm/funcs/catalogProductsVariantsGet.js.map +0 -1
  824. package/esm/funcs/catalogProductsVariantsList.d.ts +0 -16
  825. package/esm/funcs/catalogProductsVariantsList.d.ts.map +0 -1
  826. package/esm/funcs/catalogProductsVariantsList.js +0 -84
  827. package/esm/funcs/catalogProductsVariantsList.js.map +0 -1
  828. package/esm/funcs/catalogSkusList.d.ts +0 -16
  829. package/esm/funcs/catalogSkusList.d.ts.map +0 -1
  830. package/esm/funcs/catalogSkusList.js +0 -83
  831. package/esm/funcs/catalogSkusList.js.map +0 -1
  832. package/esm/funcs/checkoutRedeemGiftCard.d.ts +0 -15
  833. package/esm/funcs/checkoutRedeemGiftCard.d.ts.map +0 -1
  834. package/esm/funcs/checkoutRedeemGiftCard.js +0 -71
  835. package/esm/funcs/checkoutRedeemGiftCard.js.map +0 -1
  836. package/esm/funcs/checkoutRedeemLoyaltyPoints.d.ts +0 -16
  837. package/esm/funcs/checkoutRedeemLoyaltyPoints.d.ts.map +0 -1
  838. package/esm/funcs/checkoutRedeemLoyaltyPoints.js +0 -75
  839. package/esm/funcs/checkoutRedeemLoyaltyPoints.js.map +0 -1
  840. package/esm/funcs/checkoutRemoveCreditBalance.d.ts +0 -16
  841. package/esm/funcs/checkoutRemoveCreditBalance.d.ts.map +0 -1
  842. package/esm/funcs/checkoutRemoveCreditBalance.js +0 -75
  843. package/esm/funcs/checkoutRemoveCreditBalance.js.map +0 -1
  844. package/esm/funcs/checkoutRemoveLoyaltyPoints.d.ts +0 -16
  845. package/esm/funcs/checkoutRemoveLoyaltyPoints.d.ts.map +0 -1
  846. package/esm/funcs/checkoutRemoveLoyaltyPoints.js +0 -75
  847. package/esm/funcs/checkoutRemoveLoyaltyPoints.js.map +0 -1
  848. package/esm/funcs/checkoutUpdateAddress.d.ts +0 -16
  849. package/esm/funcs/checkoutUpdateAddress.d.ts.map +0 -1
  850. package/esm/funcs/checkoutUpdateAddress.js +0 -75
  851. package/esm/funcs/checkoutUpdateAddress.js.map +0 -1
  852. package/esm/funcs/checkoutUseCreditBalance.d.ts +0 -16
  853. package/esm/funcs/checkoutUseCreditBalance.d.ts.map +0 -1
  854. package/esm/funcs/checkoutUseCreditBalance.js +0 -75
  855. package/esm/funcs/checkoutUseCreditBalance.js.map +0 -1
  856. package/esm/funcs/customersAddressesAdd.d.ts +0 -16
  857. package/esm/funcs/customersAddressesAdd.d.ts.map +0 -1
  858. package/esm/funcs/customersAddressesAdd.js +0 -81
  859. package/esm/funcs/customersAddressesAdd.js.map +0 -1
  860. package/esm/funcs/customersAddressesDelete.d.ts +0 -16
  861. package/esm/funcs/customersAddressesDelete.d.ts.map +0 -1
  862. package/esm/funcs/customersAddressesDelete.js +0 -84
  863. package/esm/funcs/customersAddressesDelete.js.map +0 -1
  864. package/esm/funcs/customersAddressesGet.d.ts +0 -16
  865. package/esm/funcs/customersAddressesGet.d.ts.map +0 -1
  866. package/esm/funcs/customersAddressesGet.js +0 -84
  867. package/esm/funcs/customersAddressesGet.js.map +0 -1
  868. package/esm/funcs/customersAddressesList.d.ts +0 -15
  869. package/esm/funcs/customersAddressesList.d.ts.map +0 -1
  870. package/esm/funcs/customersAddressesList.js +0 -81
  871. package/esm/funcs/customersAddressesList.js.map +0 -1
  872. package/esm/funcs/customersAddressesUpdate.d.ts +0 -16
  873. package/esm/funcs/customersAddressesUpdate.d.ts.map +0 -1
  874. package/esm/funcs/customersAddressesUpdate.js +0 -85
  875. package/esm/funcs/customersAddressesUpdate.js.map +0 -1
  876. package/esm/funcs/customersGetCustomersId.d.ts +0 -15
  877. package/esm/funcs/customersGetCustomersId.d.ts.map +0 -1
  878. package/esm/funcs/customersGetCustomersId.js +0 -76
  879. package/esm/funcs/customersGetCustomersId.js.map +0 -1
  880. package/esm/funcs/customersLoyaltyGet.d.ts +0 -16
  881. package/esm/funcs/customersLoyaltyGet.d.ts.map +0 -1
  882. package/esm/funcs/customersLoyaltyGet.js +0 -80
  883. package/esm/funcs/customersLoyaltyGet.js.map +0 -1
  884. package/esm/funcs/customersLoyaltyListActivities.d.ts +0 -16
  885. package/esm/funcs/customersLoyaltyListActivities.d.ts.map +0 -1
  886. package/esm/funcs/customersLoyaltyListActivities.js +0 -86
  887. package/esm/funcs/customersLoyaltyListActivities.js.map +0 -1
  888. package/esm/funcs/customersPostCustomers.d.ts +0 -17
  889. package/esm/funcs/customersPostCustomers.d.ts.map +0 -1
  890. package/esm/funcs/customersPostCustomers.js +0 -76
  891. package/esm/funcs/customersPostCustomers.js.map +0 -1
  892. package/esm/funcs/customersPutCustomersId.d.ts +0 -16
  893. package/esm/funcs/customersPutCustomersId.d.ts.map +0 -1
  894. package/esm/funcs/customersPutCustomersId.js +0 -81
  895. package/esm/funcs/customersPutCustomersId.js.map +0 -1
  896. package/esm/funcs/customersReviewsList.d.ts +0 -15
  897. package/esm/funcs/customersReviewsList.d.ts.map +0 -1
  898. package/esm/funcs/customersReviewsList.js +0 -76
  899. package/esm/funcs/customersReviewsList.js.map +0 -1
  900. package/esm/funcs/juspayGetPaymentsJuspayCustomer.d.ts +0 -16
  901. package/esm/funcs/juspayGetPaymentsJuspayCustomer.d.ts.map +0 -1
  902. package/esm/funcs/juspayGetPaymentsJuspayCustomer.js +0 -80
  903. package/esm/funcs/juspayGetPaymentsJuspayCustomer.js.map +0 -1
  904. package/esm/funcs/juspayPostPaymentsJuspayCreateCustomer.d.ts +0 -17
  905. package/esm/funcs/juspayPostPaymentsJuspayCreateCustomer.d.ts.map +0 -1
  906. package/esm/funcs/juspayPostPaymentsJuspayCreateCustomer.js +0 -76
  907. package/esm/funcs/juspayPostPaymentsJuspayCreateCustomer.js.map +0 -1
  908. package/esm/funcs/juspayPostPaymentsJuspayCreateOrder.d.ts +0 -18
  909. package/esm/funcs/juspayPostPaymentsJuspayCreateOrder.d.ts.map +0 -1
  910. package/esm/funcs/juspayPostPaymentsJuspayCreateOrder.js +0 -77
  911. package/esm/funcs/juspayPostPaymentsJuspayCreateOrder.js.map +0 -1
  912. package/esm/funcs/offersCouponsList.d.ts +0 -15
  913. package/esm/funcs/offersCouponsList.d.ts.map +0 -1
  914. package/esm/funcs/offersCouponsList.js +0 -61
  915. package/esm/funcs/offersCouponsList.js.map +0 -1
  916. package/esm/funcs/offersPromotionsList.d.ts +0 -16
  917. package/esm/funcs/offersPromotionsList.d.ts.map +0 -1
  918. package/esm/funcs/offersPromotionsList.js +0 -65
  919. package/esm/funcs/offersPromotionsList.js.map +0 -1
  920. package/esm/funcs/ordersCancel.d.ts +0 -16
  921. package/esm/funcs/ordersCancel.d.ts.map +0 -1
  922. package/esm/funcs/ordersCancel.js +0 -81
  923. package/esm/funcs/ordersCancel.js.map +0 -1
  924. package/esm/funcs/ordersCreate.d.ts +0 -16
  925. package/esm/funcs/ordersCreate.d.ts.map +0 -1
  926. package/esm/funcs/ordersCreate.js +0 -75
  927. package/esm/funcs/ordersCreate.js.map +0 -1
  928. package/esm/funcs/ordersGet.d.ts +0 -16
  929. package/esm/funcs/ordersGet.d.ts.map +0 -1
  930. package/esm/funcs/ordersGet.js +0 -80
  931. package/esm/funcs/ordersGet.js.map +0 -1
  932. package/esm/funcs/ordersGetOrdersIdPaymentStatus.d.ts +0 -15
  933. package/esm/funcs/ordersGetOrdersIdPaymentStatus.d.ts.map +0 -1
  934. package/esm/funcs/ordersGetOrdersIdPaymentStatus.js +0 -76
  935. package/esm/funcs/ordersGetOrdersIdPaymentStatus.js.map +0 -1
  936. package/esm/funcs/ordersList.d.ts +0 -15
  937. package/esm/funcs/ordersList.d.ts.map +0 -1
  938. package/esm/funcs/ordersList.js +0 -78
  939. package/esm/funcs/ordersList.js.map +0 -1
  940. package/esm/funcs/ordersPaymentsList.d.ts +0 -16
  941. package/esm/funcs/ordersPaymentsList.d.ts.map +0 -1
  942. package/esm/funcs/ordersPaymentsList.js +0 -80
  943. package/esm/funcs/ordersPaymentsList.js.map +0 -1
  944. package/esm/funcs/ordersRefundsList.d.ts +0 -16
  945. package/esm/funcs/ordersRefundsList.d.ts.map +0 -1
  946. package/esm/funcs/ordersRefundsList.js +0 -80
  947. package/esm/funcs/ordersRefundsList.js.map +0 -1
  948. package/esm/funcs/ordersRetryPayment.d.ts +0 -16
  949. package/esm/funcs/ordersRetryPayment.d.ts.map +0 -1
  950. package/esm/funcs/ordersRetryPayment.js +0 -81
  951. package/esm/funcs/ordersRetryPayment.js.map +0 -1
  952. package/esm/funcs/ordersShipmentsList.d.ts +0 -16
  953. package/esm/funcs/ordersShipmentsList.d.ts.map +0 -1
  954. package/esm/funcs/ordersShipmentsList.js +0 -80
  955. package/esm/funcs/ordersShipmentsList.js.map +0 -1
  956. package/esm/funcs/paymentsGenerateHash.d.ts +0 -16
  957. package/esm/funcs/paymentsGenerateHash.d.ts.map +0 -1
  958. package/esm/funcs/paymentsGenerateHash.js +0 -75
  959. package/esm/funcs/paymentsGenerateHash.js.map +0 -1
  960. package/esm/funcs/paymentsGetMethods.d.ts +0 -15
  961. package/esm/funcs/paymentsGetMethods.d.ts.map +0 -1
  962. package/esm/funcs/paymentsGetMethods.js +0 -74
  963. package/esm/funcs/paymentsGetMethods.js.map +0 -1
  964. package/esm/funcs/paymentsGetPaymentsCards.d.ts +0 -16
  965. package/esm/funcs/paymentsGetPaymentsCards.d.ts.map +0 -1
  966. package/esm/funcs/paymentsGetPaymentsCards.js +0 -78
  967. package/esm/funcs/paymentsGetPaymentsCards.js.map +0 -1
  968. package/esm/funcs/paymentsGetPaymentsVerifyVpa.d.ts +0 -16
  969. package/esm/funcs/paymentsGetPaymentsVerifyVpa.d.ts.map +0 -1
  970. package/esm/funcs/paymentsGetPaymentsVerifyVpa.js +0 -76
  971. package/esm/funcs/paymentsGetPaymentsVerifyVpa.js.map +0 -1
  972. package/esm/funcs/paymentsPostPaymentsCards.d.ts +0 -16
  973. package/esm/funcs/paymentsPostPaymentsCards.d.ts.map +0 -1
  974. package/esm/funcs/paymentsPostPaymentsCards.js +0 -75
  975. package/esm/funcs/paymentsPostPaymentsCards.js.map +0 -1
  976. package/esm/funcs/shippingCheckPincodeServiceability.d.ts +0 -16
  977. package/esm/funcs/shippingCheckPincodeServiceability.d.ts.map +0 -1
  978. package/esm/funcs/shippingCheckPincodeServiceability.js +0 -80
  979. package/esm/funcs/shippingCheckPincodeServiceability.js.map +0 -1
  980. package/esm/funcs/userNotificationPreferencesCreate.d.ts +0 -15
  981. package/esm/funcs/userNotificationPreferencesCreate.d.ts.map +0 -1
  982. package/esm/funcs/userNotificationPreferencesCreate.js +0 -79
  983. package/esm/funcs/userNotificationPreferencesCreate.js.map +0 -1
  984. package/esm/funcs/userNotificationPreferencesGet.d.ts +0 -15
  985. package/esm/funcs/userNotificationPreferencesGet.d.ts.map +0 -1
  986. package/esm/funcs/userNotificationPreferencesGet.js +0 -77
  987. package/esm/funcs/userNotificationPreferencesGet.js.map +0 -1
  988. package/esm/funcs/userNotificationPreferencesUpdate.d.ts +0 -15
  989. package/esm/funcs/userNotificationPreferencesUpdate.d.ts.map +0 -1
  990. package/esm/funcs/userNotificationPreferencesUpdate.js +0 -78
  991. package/esm/funcs/userNotificationPreferencesUpdate.js.map +0 -1
  992. package/esm/funcs/utilsGetCountries.d.ts +0 -15
  993. package/esm/funcs/utilsGetCountries.d.ts.map +0 -1
  994. package/esm/funcs/utilsGetCountries.js +0 -61
  995. package/esm/funcs/utilsGetCountries.js.map +0 -1
  996. package/esm/funcs/utilsGetPincodes.d.ts +0 -15
  997. package/esm/funcs/utilsGetPincodes.d.ts.map +0 -1
  998. package/esm/funcs/utilsGetPincodes.js +0 -81
  999. package/esm/funcs/utilsGetPincodes.js.map +0 -1
  1000. package/esm/funcs/utilsGetStates.d.ts +0 -15
  1001. package/esm/funcs/utilsGetStates.d.ts.map +0 -1
  1002. package/esm/funcs/utilsGetStates.js +0 -73
  1003. package/esm/funcs/utilsGetStates.js.map +0 -1
  1004. package/esm/funcs/wishlistAdd.d.ts +0 -16
  1005. package/esm/funcs/wishlistAdd.d.ts.map +0 -1
  1006. package/esm/funcs/wishlistAdd.js +0 -81
  1007. package/esm/funcs/wishlistAdd.js.map +0 -1
  1008. package/esm/funcs/wishlistDelete.d.ts +0 -16
  1009. package/esm/funcs/wishlistDelete.d.ts.map +0 -1
  1010. package/esm/funcs/wishlistDelete.js +0 -81
  1011. package/esm/funcs/wishlistDelete.js.map +0 -1
  1012. package/esm/funcs/wishlistGet.d.ts +0 -15
  1013. package/esm/funcs/wishlistGet.d.ts.map +0 -1
  1014. package/esm/funcs/wishlistGet.js +0 -76
  1015. package/esm/funcs/wishlistGet.js.map +0 -1
  1016. package/esm/models/components/analyticsevent.d.ts +0 -162
  1017. package/esm/models/components/analyticsevent.d.ts.map +0 -1
  1018. package/esm/models/components/analyticsevent.js +0 -132
  1019. package/esm/models/components/analyticsevent.js.map +0 -1
  1020. package/esm/models/components/business.d.ts +0 -35
  1021. package/esm/models/components/business.d.ts.map +0 -1
  1022. package/esm/models/components/business.js +0 -48
  1023. package/esm/models/components/business.js.map +0 -1
  1024. package/esm/models/components/country.d.ts +0 -44
  1025. package/esm/models/components/country.d.ts.map +0 -1
  1026. package/esm/models/components/country.js +0 -64
  1027. package/esm/models/components/country.js.map +0 -1
  1028. package/esm/models/components/countrystate.d.ts +0 -36
  1029. package/esm/models/components/countrystate.d.ts.map +0 -1
  1030. package/esm/models/components/countrystate.js +0 -46
  1031. package/esm/models/components/countrystate.js.map +0 -1
  1032. package/esm/models/components/coupon.d.ts +0 -123
  1033. package/esm/models/components/coupon.d.ts.map +0 -1
  1034. package/esm/models/components/coupon.js +0 -142
  1035. package/esm/models/components/coupon.js.map +0 -1
  1036. package/esm/models/components/createcustomer.d.ts +0 -33
  1037. package/esm/models/components/createcustomer.d.ts.map +0 -1
  1038. package/esm/models/components/createcustomer.js +0 -35
  1039. package/esm/models/components/createcustomer.js.map +0 -1
  1040. package/esm/models/components/customerdetail.d.ts +0 -54
  1041. package/esm/models/components/customerdetail.d.ts.map +0 -1
  1042. package/esm/models/components/customerdetail.js +0 -65
  1043. package/esm/models/components/customerdetail.js.map +0 -1
  1044. package/esm/models/components/customerloyalty.d.ts +0 -41
  1045. package/esm/models/components/customerloyalty.d.ts.map +0 -1
  1046. package/esm/models/components/customerloyalty.js +0 -64
  1047. package/esm/models/components/customerloyalty.js.map +0 -1
  1048. package/esm/models/components/juspaycardpayload.d.ts +0 -39
  1049. package/esm/models/components/juspaycardpayload.d.ts.map +0 -1
  1050. package/esm/models/components/juspaycardpayload.js +0 -58
  1051. package/esm/models/components/juspaycardpayload.js.map +0 -1
  1052. package/esm/models/components/juspaycreatecardresponse.d.ts +0 -35
  1053. package/esm/models/components/juspaycreatecardresponse.d.ts.map +0 -1
  1054. package/esm/models/components/juspaycreatecardresponse.js +0 -52
  1055. package/esm/models/components/juspaycreatecardresponse.js.map +0 -1
  1056. package/esm/models/components/juspaycreatecustomerpayload.d.ts +0 -32
  1057. package/esm/models/components/juspaycreatecustomerpayload.d.ts.map +0 -1
  1058. package/esm/models/components/juspaycreatecustomerpayload.js +0 -40
  1059. package/esm/models/components/juspaycreatecustomerpayload.js.map +0 -1
  1060. package/esm/models/components/juspaycreateorderpayload.d.ts +0 -31
  1061. package/esm/models/components/juspaycreateorderpayload.d.ts.map +0 -1
  1062. package/esm/models/components/juspaycreateorderpayload.js +0 -44
  1063. package/esm/models/components/juspaycreateorderpayload.js.map +0 -1
  1064. package/esm/models/components/juspaycustomer.d.ts +0 -70
  1065. package/esm/models/components/juspaycustomer.d.ts.map +0 -1
  1066. package/esm/models/components/juspaycustomer.js +0 -91
  1067. package/esm/models/components/juspaycustomer.js.map +0 -1
  1068. package/esm/models/components/juspayorder.d.ts +0 -137
  1069. package/esm/models/components/juspayorder.d.ts.map +0 -1
  1070. package/esm/models/components/juspayorder.js +0 -179
  1071. package/esm/models/components/juspayorder.js.map +0 -1
  1072. package/esm/models/components/juspaypaymentmethod.d.ts +0 -33
  1073. package/esm/models/components/juspaypaymentmethod.d.ts.map +0 -1
  1074. package/esm/models/components/juspaypaymentmethod.js +0 -46
  1075. package/esm/models/components/juspaypaymentmethod.js.map +0 -1
  1076. package/esm/models/components/juspaysavedcard.d.ts +0 -29
  1077. package/esm/models/components/juspaysavedcard.d.ts.map +0 -1
  1078. package/esm/models/components/juspaysavedcard.js +0 -31
  1079. package/esm/models/components/juspaysavedcard.js.map +0 -1
  1080. package/esm/models/components/loyaltypointactivity.d.ts +0 -94
  1081. package/esm/models/components/loyaltypointactivity.d.ts.map +0 -1
  1082. package/esm/models/components/loyaltypointactivity.js +0 -102
  1083. package/esm/models/components/loyaltypointactivity.js.map +0 -1
  1084. package/esm/models/components/orderrefund.d.ts +0 -110
  1085. package/esm/models/components/orderrefund.d.ts.map +0 -1
  1086. package/esm/models/components/orderrefund.js +0 -117
  1087. package/esm/models/components/orderrefund.js.map +0 -1
  1088. package/esm/models/components/payucardpayload.d.ts +0 -97
  1089. package/esm/models/components/payucardpayload.d.ts.map +0 -1
  1090. package/esm/models/components/payucardpayload.js +0 -106
  1091. package/esm/models/components/payucardpayload.js.map +0 -1
  1092. package/esm/models/components/payucreatecardresponse.d.ts +0 -43
  1093. package/esm/models/components/payucreatecardresponse.d.ts.map +0 -1
  1094. package/esm/models/components/payucreatecardresponse.js +0 -62
  1095. package/esm/models/components/payucreatecardresponse.js.map +0 -1
  1096. package/esm/models/components/payupaymentmethod.d.ts +0 -68
  1097. package/esm/models/components/payupaymentmethod.d.ts.map +0 -1
  1098. package/esm/models/components/payupaymentmethod.js +0 -91
  1099. package/esm/models/components/payupaymentmethod.js.map +0 -1
  1100. package/esm/models/components/payusavedcard.d.ts +0 -29
  1101. package/esm/models/components/payusavedcard.d.ts.map +0 -1
  1102. package/esm/models/components/payusavedcard.js +0 -31
  1103. package/esm/models/components/payusavedcard.js.map +0 -1
  1104. package/esm/models/components/promotiondetail.d.ts +0 -117
  1105. package/esm/models/components/promotiondetail.d.ts.map +0 -1
  1106. package/esm/models/components/promotiondetail.js +0 -139
  1107. package/esm/models/components/promotiondetail.js.map +0 -1
  1108. package/esm/models/components/updatecustomer.d.ts +0 -30
  1109. package/esm/models/components/updatecustomer.d.ts.map +0 -1
  1110. package/esm/models/components/updatecustomer.js +0 -32
  1111. package/esm/models/components/updatecustomer.js.map +0 -1
  1112. package/esm/models/operations/deleteauthuseridprofileimage.d.ts +0 -68
  1113. package/esm/models/operations/deleteauthuseridprofileimage.d.ts.map +0 -1
  1114. package/esm/models/operations/deleteauthuseridprofileimage.js +0 -58
  1115. package/esm/models/operations/deleteauthuseridprofileimage.js.map +0 -1
  1116. package/esm/models/operations/deletecartid.d.ts +0 -62
  1117. package/esm/models/operations/deletecartid.d.ts.map +0 -1
  1118. package/esm/models/operations/deletecartid.js +0 -67
  1119. package/esm/models/operations/deletecartid.js.map +0 -1
  1120. package/esm/models/operations/deletecreditbalance.d.ts +0 -90
  1121. package/esm/models/operations/deletecreditbalance.d.ts.map +0 -1
  1122. package/esm/models/operations/deletecreditbalance.js +0 -95
  1123. package/esm/models/operations/deletecreditbalance.js.map +0 -1
  1124. package/esm/models/operations/deletecustomeraddressid.d.ts +0 -67
  1125. package/esm/models/operations/deletecustomeraddressid.d.ts.map +0 -1
  1126. package/esm/models/operations/deletecustomeraddressid.js +0 -71
  1127. package/esm/models/operations/deletecustomeraddressid.js.map +0 -1
  1128. package/esm/models/operations/deleteloyaltypoints.d.ts +0 -90
  1129. package/esm/models/operations/deleteloyaltypoints.d.ts.map +0 -1
  1130. package/esm/models/operations/deleteloyaltypoints.js +0 -95
  1131. package/esm/models/operations/deleteloyaltypoints.js.map +0 -1
  1132. package/esm/models/operations/deleteremovecoupons.d.ts +0 -92
  1133. package/esm/models/operations/deleteremovecoupons.d.ts.map +0 -1
  1134. package/esm/models/operations/deleteremovecoupons.js +0 -99
  1135. package/esm/models/operations/deleteremovecoupons.js.map +0 -1
  1136. package/esm/models/operations/deletewishlist.d.ts +0 -91
  1137. package/esm/models/operations/deletewishlist.d.ts.map +0 -1
  1138. package/esm/models/operations/deletewishlist.js +0 -106
  1139. package/esm/models/operations/deletewishlist.js.map +0 -1
  1140. package/esm/models/operations/getaddress.d.ts +0 -203
  1141. package/esm/models/operations/getaddress.d.ts.map +0 -1
  1142. package/esm/models/operations/getaddress.js +0 -206
  1143. package/esm/models/operations/getaddress.js.map +0 -1
  1144. package/esm/models/operations/getanalyticstrack.d.ts +0 -34
  1145. package/esm/models/operations/getanalyticstrack.d.ts.map +0 -1
  1146. package/esm/models/operations/getanalyticstrack.js +0 -33
  1147. package/esm/models/operations/getanalyticstrack.js.map +0 -1
  1148. package/esm/models/operations/getauthuserid.d.ts +0 -102
  1149. package/esm/models/operations/getauthuserid.d.ts.map +0 -1
  1150. package/esm/models/operations/getauthuserid.js +0 -86
  1151. package/esm/models/operations/getauthuserid.js.map +0 -1
  1152. package/esm/models/operations/getauthuseridnotificationpreferences.d.ts +0 -105
  1153. package/esm/models/operations/getauthuseridnotificationpreferences.d.ts.map +0 -1
  1154. package/esm/models/operations/getauthuseridnotificationpreferences.js +0 -97
  1155. package/esm/models/operations/getauthuseridnotificationpreferences.js.map +0 -1
  1156. package/esm/models/operations/getauthuseridprofileimage.d.ts +0 -104
  1157. package/esm/models/operations/getauthuseridprofileimage.d.ts.map +0 -1
  1158. package/esm/models/operations/getauthuseridprofileimage.js +0 -96
  1159. package/esm/models/operations/getauthuseridprofileimage.js.map +0 -1
  1160. package/esm/models/operations/getcommoncountries.d.ts +0 -62
  1161. package/esm/models/operations/getcommoncountries.d.ts.map +0 -1
  1162. package/esm/models/operations/getcommoncountries.js +0 -61
  1163. package/esm/models/operations/getcommoncountries.js.map +0 -1
  1164. package/esm/models/operations/getcommoncountriescountryisocodepincodes.d.ts +0 -105
  1165. package/esm/models/operations/getcommoncountriescountryisocodepincodes.d.ts.map +0 -1
  1166. package/esm/models/operations/getcommoncountriescountryisocodepincodes.js +0 -101
  1167. package/esm/models/operations/getcommoncountriescountryisocodepincodes.js.map +0 -1
  1168. package/esm/models/operations/getcommoncountriesisocodestates.d.ts +0 -90
  1169. package/esm/models/operations/getcommoncountriesisocodestates.d.ts.map +0 -1
  1170. package/esm/models/operations/getcommoncountriesisocodestates.js +0 -97
  1171. package/esm/models/operations/getcommoncountriesisocodestates.js.map +0 -1
  1172. package/esm/models/operations/getcoupons.d.ts +0 -62
  1173. package/esm/models/operations/getcoupons.d.ts.map +0 -1
  1174. package/esm/models/operations/getcoupons.js +0 -61
  1175. package/esm/models/operations/getcoupons.js.map +0 -1
  1176. package/esm/models/operations/getcrosssell.d.ts +0 -110
  1177. package/esm/models/operations/getcrosssell.d.ts.map +0 -1
  1178. package/esm/models/operations/getcrosssell.js +0 -105
  1179. package/esm/models/operations/getcrosssell.js.map +0 -1
  1180. package/esm/models/operations/getcustomeraddressid.d.ts +0 -192
  1181. package/esm/models/operations/getcustomeraddressid.d.ts.map +0 -1
  1182. package/esm/models/operations/getcustomeraddressid.js +0 -205
  1183. package/esm/models/operations/getcustomeraddressid.js.map +0 -1
  1184. package/esm/models/operations/getcustomersid.d.ts +0 -90
  1185. package/esm/models/operations/getcustomersid.d.ts.map +0 -1
  1186. package/esm/models/operations/getcustomersid.js +0 -95
  1187. package/esm/models/operations/getcustomersid.js.map +0 -1
  1188. package/esm/models/operations/getcustomersuseridreviews.d.ts +0 -92
  1189. package/esm/models/operations/getcustomersuseridreviews.d.ts.map +0 -1
  1190. package/esm/models/operations/getcustomersuseridreviews.js +0 -109
  1191. package/esm/models/operations/getcustomersuseridreviews.js.map +0 -1
  1192. package/esm/models/operations/getloyaltypoint.d.ts +0 -92
  1193. package/esm/models/operations/getloyaltypoint.d.ts.map +0 -1
  1194. package/esm/models/operations/getloyaltypoint.js +0 -105
  1195. package/esm/models/operations/getloyaltypoint.js.map +0 -1
  1196. package/esm/models/operations/getloyaltypointactivity.d.ts +0 -105
  1197. package/esm/models/operations/getloyaltypointactivity.d.ts.map +0 -1
  1198. package/esm/models/operations/getloyaltypointactivity.js +0 -114
  1199. package/esm/models/operations/getloyaltypointactivity.js.map +0 -1
  1200. package/esm/models/operations/getorders.d.ts +0 -115
  1201. package/esm/models/operations/getorders.d.ts.map +0 -1
  1202. package/esm/models/operations/getorders.js +0 -107
  1203. package/esm/models/operations/getorders.js.map +0 -1
  1204. package/esm/models/operations/getordersid.d.ts +0 -90
  1205. package/esm/models/operations/getordersid.d.ts.map +0 -1
  1206. package/esm/models/operations/getordersid.js +0 -95
  1207. package/esm/models/operations/getordersid.js.map +0 -1
  1208. package/esm/models/operations/getordersidpayments.d.ts +0 -90
  1209. package/esm/models/operations/getordersidpayments.d.ts.map +0 -1
  1210. package/esm/models/operations/getordersidpayments.js +0 -95
  1211. package/esm/models/operations/getordersidpayments.js.map +0 -1
  1212. package/esm/models/operations/getordersidpaymentstatus.d.ts +0 -125
  1213. package/esm/models/operations/getordersidpaymentstatus.d.ts.map +0 -1
  1214. package/esm/models/operations/getordersidpaymentstatus.js +0 -132
  1215. package/esm/models/operations/getordersidpaymentstatus.js.map +0 -1
  1216. package/esm/models/operations/getordersidrefunds.d.ts +0 -90
  1217. package/esm/models/operations/getordersidrefunds.d.ts.map +0 -1
  1218. package/esm/models/operations/getordersidrefunds.js +0 -95
  1219. package/esm/models/operations/getordersidrefunds.js.map +0 -1
  1220. package/esm/models/operations/getordersidshipments.d.ts +0 -90
  1221. package/esm/models/operations/getordersidshipments.d.ts.map +0 -1
  1222. package/esm/models/operations/getordersidshipments.js +0 -95
  1223. package/esm/models/operations/getordersidshipments.js.map +0 -1
  1224. package/esm/models/operations/getpaymentmethods.d.ts +0 -143
  1225. package/esm/models/operations/getpaymentmethods.d.ts.map +0 -1
  1226. package/esm/models/operations/getpaymentmethods.js +0 -158
  1227. package/esm/models/operations/getpaymentmethods.js.map +0 -1
  1228. package/esm/models/operations/getpaymentscards.d.ts +0 -143
  1229. package/esm/models/operations/getpaymentscards.d.ts.map +0 -1
  1230. package/esm/models/operations/getpaymentscards.js +0 -152
  1231. package/esm/models/operations/getpaymentscards.js.map +0 -1
  1232. package/esm/models/operations/getpaymentsjuspaycustomer.d.ts +0 -90
  1233. package/esm/models/operations/getpaymentsjuspaycustomer.d.ts.map +0 -1
  1234. package/esm/models/operations/getpaymentsjuspaycustomer.js +0 -95
  1235. package/esm/models/operations/getpaymentsjuspaycustomer.js.map +0 -1
  1236. package/esm/models/operations/getpaymentsverifyvpa.d.ts +0 -128
  1237. package/esm/models/operations/getpaymentsverifyvpa.d.ts.map +0 -1
  1238. package/esm/models/operations/getpaymentsverifyvpa.js +0 -121
  1239. package/esm/models/operations/getpaymentsverifyvpa.js.map +0 -1
  1240. package/esm/models/operations/getproductdetails.d.ts +0 -95
  1241. package/esm/models/operations/getproductdetails.d.ts.map +0 -1
  1242. package/esm/models/operations/getproductdetails.js +0 -99
  1243. package/esm/models/operations/getproductdetails.js.map +0 -1
  1244. package/esm/models/operations/getproducts.d.ts +0 -115
  1245. package/esm/models/operations/getproducts.d.ts.map +0 -1
  1246. package/esm/models/operations/getproducts.js +0 -109
  1247. package/esm/models/operations/getproducts.js.map +0 -1
  1248. package/esm/models/operations/getproductscategories.d.ts +0 -110
  1249. package/esm/models/operations/getproductscategories.d.ts.map +0 -1
  1250. package/esm/models/operations/getproductscategories.js +0 -107
  1251. package/esm/models/operations/getproductscategories.js.map +0 -1
  1252. package/esm/models/operations/getproductsidreviews.d.ts +0 -122
  1253. package/esm/models/operations/getproductsidreviews.d.ts.map +0 -1
  1254. package/esm/models/operations/getproductsidreviews.js +0 -121
  1255. package/esm/models/operations/getproductsidreviews.js.map +0 -1
  1256. package/esm/models/operations/getproductvariantdetail.d.ts +0 -100
  1257. package/esm/models/operations/getproductvariantdetail.d.ts.map +0 -1
  1258. package/esm/models/operations/getproductvariantdetail.js +0 -103
  1259. package/esm/models/operations/getproductvariantdetail.js.map +0 -1
  1260. package/esm/models/operations/getproductvariants.d.ts +0 -95
  1261. package/esm/models/operations/getproductvariants.d.ts.map +0 -1
  1262. package/esm/models/operations/getproductvariants.js +0 -99
  1263. package/esm/models/operations/getproductvariants.js.map +0 -1
  1264. package/esm/models/operations/getpromotions.d.ts +0 -62
  1265. package/esm/models/operations/getpromotions.d.ts.map +0 -1
  1266. package/esm/models/operations/getpromotions.js +0 -61
  1267. package/esm/models/operations/getpromotions.js.map +0 -1
  1268. package/esm/models/operations/getsearchproducts.d.ts +0 -110
  1269. package/esm/models/operations/getsearchproducts.d.ts.map +0 -1
  1270. package/esm/models/operations/getsearchproducts.js +0 -105
  1271. package/esm/models/operations/getsearchproducts.js.map +0 -1
  1272. package/esm/models/operations/getshipmentpincodeserviceability.d.ts +0 -62
  1273. package/esm/models/operations/getshipmentpincodeserviceability.d.ts.map +0 -1
  1274. package/esm/models/operations/getshipmentpincodeserviceability.js +0 -58
  1275. package/esm/models/operations/getshipmentpincodeserviceability.js.map +0 -1
  1276. package/esm/models/operations/getsimilar.d.ts +0 -110
  1277. package/esm/models/operations/getsimilar.d.ts.map +0 -1
  1278. package/esm/models/operations/getsimilar.js +0 -105
  1279. package/esm/models/operations/getsimilar.js.map +0 -1
  1280. package/esm/models/operations/getskus.d.ts +0 -120
  1281. package/esm/models/operations/getskus.d.ts.map +0 -1
  1282. package/esm/models/operations/getskus.js +0 -111
  1283. package/esm/models/operations/getskus.js.map +0 -1
  1284. package/esm/models/operations/getupsell.d.ts +0 -113
  1285. package/esm/models/operations/getupsell.d.ts.map +0 -1
  1286. package/esm/models/operations/getupsell.js +0 -105
  1287. package/esm/models/operations/getupsell.js.map +0 -1
  1288. package/esm/models/operations/getwishtlist.d.ts +0 -90
  1289. package/esm/models/operations/getwishtlist.d.ts.map +0 -1
  1290. package/esm/models/operations/getwishtlist.js +0 -95
  1291. package/esm/models/operations/getwishtlist.js.map +0 -1
  1292. package/esm/models/operations/postaddress.d.ts +0 -190
  1293. package/esm/models/operations/postaddress.d.ts.map +0 -1
  1294. package/esm/models/operations/postaddress.js +0 -195
  1295. package/esm/models/operations/postaddress.js.map +0 -1
  1296. package/esm/models/operations/postapplycoupons.d.ts +0 -92
  1297. package/esm/models/operations/postapplycoupons.d.ts.map +0 -1
  1298. package/esm/models/operations/postapplycoupons.js +0 -99
  1299. package/esm/models/operations/postapplycoupons.js.map +0 -1
  1300. package/esm/models/operations/postauthanonymous.d.ts +0 -109
  1301. package/esm/models/operations/postauthanonymous.d.ts.map +0 -1
  1302. package/esm/models/operations/postauthanonymous.js +0 -109
  1303. package/esm/models/operations/postauthanonymous.js.map +0 -1
  1304. package/esm/models/operations/postauthchangepassword.d.ts +0 -119
  1305. package/esm/models/operations/postauthchangepassword.d.ts.map +0 -1
  1306. package/esm/models/operations/postauthchangepassword.js +0 -115
  1307. package/esm/models/operations/postauthchangepassword.js.map +0 -1
  1308. package/esm/models/operations/postauthforgotpassword.d.ts +0 -117
  1309. package/esm/models/operations/postauthforgotpassword.d.ts.map +0 -1
  1310. package/esm/models/operations/postauthforgotpassword.js +0 -107
  1311. package/esm/models/operations/postauthforgotpassword.js.map +0 -1
  1312. package/esm/models/operations/postauthgenerateotp.d.ts +0 -204
  1313. package/esm/models/operations/postauthgenerateotp.d.ts.map +0 -1
  1314. package/esm/models/operations/postauthgenerateotp.js +0 -164
  1315. package/esm/models/operations/postauthgenerateotp.js.map +0 -1
  1316. package/esm/models/operations/postauthloginemail.d.ts +0 -118
  1317. package/esm/models/operations/postauthloginemail.d.ts.map +0 -1
  1318. package/esm/models/operations/postauthloginemail.js +0 -108
  1319. package/esm/models/operations/postauthloginemail.js.map +0 -1
  1320. package/esm/models/operations/postauthloginpassword.d.ts +0 -130
  1321. package/esm/models/operations/postauthloginpassword.d.ts.map +0 -1
  1322. package/esm/models/operations/postauthloginpassword.js +0 -115
  1323. package/esm/models/operations/postauthloginpassword.js.map +0 -1
  1324. package/esm/models/operations/postauthloginphone.d.ts +0 -152
  1325. package/esm/models/operations/postauthloginphone.d.ts.map +0 -1
  1326. package/esm/models/operations/postauthloginphone.js +0 -134
  1327. package/esm/models/operations/postauthloginphone.js.map +0 -1
  1328. package/esm/models/operations/postauthloginwhatsapp.d.ts +0 -152
  1329. package/esm/models/operations/postauthloginwhatsapp.d.ts.map +0 -1
  1330. package/esm/models/operations/postauthloginwhatsapp.js +0 -133
  1331. package/esm/models/operations/postauthloginwhatsapp.js.map +0 -1
  1332. package/esm/models/operations/postauthlogout.d.ts +0 -84
  1333. package/esm/models/operations/postauthlogout.d.ts.map +0 -1
  1334. package/esm/models/operations/postauthlogout.js +0 -76
  1335. package/esm/models/operations/postauthlogout.js.map +0 -1
  1336. package/esm/models/operations/postauthrefreshtoken.d.ts +0 -109
  1337. package/esm/models/operations/postauthrefreshtoken.d.ts.map +0 -1
  1338. package/esm/models/operations/postauthrefreshtoken.js +0 -106
  1339. package/esm/models/operations/postauthrefreshtoken.js.map +0 -1
  1340. package/esm/models/operations/postauthregisteremail.d.ts +0 -132
  1341. package/esm/models/operations/postauthregisteremail.d.ts.map +0 -1
  1342. package/esm/models/operations/postauthregisteremail.js +0 -121
  1343. package/esm/models/operations/postauthregisteremail.js.map +0 -1
  1344. package/esm/models/operations/postauthregisterpassword.d.ts +0 -135
  1345. package/esm/models/operations/postauthregisterpassword.d.ts.map +0 -1
  1346. package/esm/models/operations/postauthregisterpassword.js +0 -121
  1347. package/esm/models/operations/postauthregisterpassword.js.map +0 -1
  1348. package/esm/models/operations/postauthregisterphone.d.ts +0 -166
  1349. package/esm/models/operations/postauthregisterphone.d.ts.map +0 -1
  1350. package/esm/models/operations/postauthregisterphone.js +0 -146
  1351. package/esm/models/operations/postauthregisterphone.js.map +0 -1
  1352. package/esm/models/operations/postauthregisterwhatsapp.d.ts +0 -166
  1353. package/esm/models/operations/postauthregisterwhatsapp.d.ts.map +0 -1
  1354. package/esm/models/operations/postauthregisterwhatsapp.js +0 -148
  1355. package/esm/models/operations/postauthregisterwhatsapp.js.map +0 -1
  1356. package/esm/models/operations/postauthresetpassword.d.ts +0 -119
  1357. package/esm/models/operations/postauthresetpassword.d.ts.map +0 -1
  1358. package/esm/models/operations/postauthresetpassword.js +0 -114
  1359. package/esm/models/operations/postauthresetpassword.js.map +0 -1
  1360. package/esm/models/operations/postauthuseridnotificationpreferences.d.ts +0 -135
  1361. package/esm/models/operations/postauthuseridnotificationpreferences.d.ts.map +0 -1
  1362. package/esm/models/operations/postauthuseridnotificationpreferences.js +0 -142
  1363. package/esm/models/operations/postauthuseridnotificationpreferences.js.map +0 -1
  1364. package/esm/models/operations/postauthuseridprofileimage.d.ts +0 -158
  1365. package/esm/models/operations/postauthuseridprofileimage.d.ts.map +0 -1
  1366. package/esm/models/operations/postauthuseridprofileimage.js +0 -170
  1367. package/esm/models/operations/postauthuseridprofileimage.js.map +0 -1
  1368. package/esm/models/operations/postauthverifiedemailphone.d.ts +0 -114
  1369. package/esm/models/operations/postauthverifiedemailphone.d.ts.map +0 -1
  1370. package/esm/models/operations/postauthverifiedemailphone.js +0 -102
  1371. package/esm/models/operations/postauthverifiedemailphone.js.map +0 -1
  1372. package/esm/models/operations/postauthverifyotp.d.ts +0 -169
  1373. package/esm/models/operations/postauthverifyotp.d.ts.map +0 -1
  1374. package/esm/models/operations/postauthverifyotp.js +0 -143
  1375. package/esm/models/operations/postauthverifyotp.js.map +0 -1
  1376. package/esm/models/operations/postcartaddress.d.ts +0 -153
  1377. package/esm/models/operations/postcartaddress.d.ts.map +0 -1
  1378. package/esm/models/operations/postcartaddress.js +0 -171
  1379. package/esm/models/operations/postcartaddress.js.map +0 -1
  1380. package/esm/models/operations/postcartitemid.d.ts +0 -95
  1381. package/esm/models/operations/postcartitemid.d.ts.map +0 -1
  1382. package/esm/models/operations/postcartitemid.js +0 -97
  1383. package/esm/models/operations/postcartitemid.js.map +0 -1
  1384. package/esm/models/operations/postcartsid.d.ts +0 -93
  1385. package/esm/models/operations/postcartsid.d.ts.map +0 -1
  1386. package/esm/models/operations/postcartsid.js +0 -86
  1387. package/esm/models/operations/postcartsid.js.map +0 -1
  1388. package/esm/models/operations/postcheckoutredeemgiftcard.d.ts +0 -59
  1389. package/esm/models/operations/postcheckoutredeemgiftcard.d.ts.map +0 -1
  1390. package/esm/models/operations/postcheckoutredeemgiftcard.js +0 -67
  1391. package/esm/models/operations/postcheckoutredeemgiftcard.js.map +0 -1
  1392. package/esm/models/operations/postcreditbalance.d.ts +0 -92
  1393. package/esm/models/operations/postcreditbalance.d.ts.map +0 -1
  1394. package/esm/models/operations/postcreditbalance.js +0 -99
  1395. package/esm/models/operations/postcreditbalance.js.map +0 -1
  1396. package/esm/models/operations/postcustomers.d.ts +0 -62
  1397. package/esm/models/operations/postcustomers.d.ts.map +0 -1
  1398. package/esm/models/operations/postcustomers.js +0 -70
  1399. package/esm/models/operations/postcustomers.js.map +0 -1
  1400. package/esm/models/operations/postcustomersnewslettersubscription.d.ts +0 -59
  1401. package/esm/models/operations/postcustomersnewslettersubscription.d.ts.map +0 -1
  1402. package/esm/models/operations/postcustomersnewslettersubscription.js +0 -58
  1403. package/esm/models/operations/postcustomersnewslettersubscription.js.map +0 -1
  1404. package/esm/models/operations/postloyaltypoints.d.ts +0 -92
  1405. package/esm/models/operations/postloyaltypoints.d.ts.map +0 -1
  1406. package/esm/models/operations/postloyaltypoints.js +0 -99
  1407. package/esm/models/operations/postloyaltypoints.js.map +0 -1
  1408. package/esm/models/operations/postorder.d.ts +0 -198
  1409. package/esm/models/operations/postorder.d.ts.map +0 -1
  1410. package/esm/models/operations/postorder.js +0 -234
  1411. package/esm/models/operations/postorder.js.map +0 -1
  1412. package/esm/models/operations/postordersordernumber.d.ts +0 -155
  1413. package/esm/models/operations/postordersordernumber.d.ts.map +0 -1
  1414. package/esm/models/operations/postordersordernumber.js +0 -162
  1415. package/esm/models/operations/postordersordernumber.js.map +0 -1
  1416. package/esm/models/operations/postpaymentscards.d.ts +0 -173
  1417. package/esm/models/operations/postpaymentscards.d.ts.map +0 -1
  1418. package/esm/models/operations/postpaymentscards.js +0 -208
  1419. package/esm/models/operations/postpaymentscards.js.map +0 -1
  1420. package/esm/models/operations/postpaymentsgeneratehash.d.ts +0 -121
  1421. package/esm/models/operations/postpaymentsgeneratehash.d.ts.map +0 -1
  1422. package/esm/models/operations/postpaymentsgeneratehash.js +0 -118
  1423. package/esm/models/operations/postpaymentsgeneratehash.js.map +0 -1
  1424. package/esm/models/operations/postpaymentsjuspaycreatecustomer.d.ts +0 -62
  1425. package/esm/models/operations/postpaymentsjuspaycreatecustomer.d.ts.map +0 -1
  1426. package/esm/models/operations/postpaymentsjuspaycreatecustomer.js +0 -61
  1427. package/esm/models/operations/postpaymentsjuspaycreatecustomer.js.map +0 -1
  1428. package/esm/models/operations/postpaymentsjuspaycreateorder.d.ts +0 -62
  1429. package/esm/models/operations/postpaymentsjuspaycreateorder.d.ts.map +0 -1
  1430. package/esm/models/operations/postpaymentsjuspaycreateorder.js +0 -61
  1431. package/esm/models/operations/postpaymentsjuspaycreateorder.js.map +0 -1
  1432. package/esm/models/operations/postproductsidreviews.d.ts +0 -65
  1433. package/esm/models/operations/postproductsidreviews.d.ts.map +0 -1
  1434. package/esm/models/operations/postproductsidreviews.js +0 -72
  1435. package/esm/models/operations/postproductsidreviews.js.map +0 -1
  1436. package/esm/models/operations/postretrypaymentorderid.d.ts +0 -193
  1437. package/esm/models/operations/postretrypaymentorderid.d.ts.map +0 -1
  1438. package/esm/models/operations/postretrypaymentorderid.js +0 -244
  1439. package/esm/models/operations/postretrypaymentorderid.js.map +0 -1
  1440. package/esm/models/operations/postwishtlist.d.ts +0 -91
  1441. package/esm/models/operations/postwishtlist.d.ts.map +0 -1
  1442. package/esm/models/operations/postwishtlist.js +0 -106
  1443. package/esm/models/operations/postwishtlist.js.map +0 -1
  1444. package/esm/models/operations/putauthuserid.d.ts +0 -104
  1445. package/esm/models/operations/putauthuserid.d.ts.map +0 -1
  1446. package/esm/models/operations/putauthuserid.js +0 -97
  1447. package/esm/models/operations/putauthuserid.js.map +0 -1
  1448. package/esm/models/operations/putauthuseriddeactivate.d.ts +0 -68
  1449. package/esm/models/operations/putauthuseriddeactivate.d.ts.map +0 -1
  1450. package/esm/models/operations/putauthuseriddeactivate.js +0 -58
  1451. package/esm/models/operations/putauthuseriddeactivate.js.map +0 -1
  1452. package/esm/models/operations/putauthuseridnotificationpreferences.d.ts +0 -135
  1453. package/esm/models/operations/putauthuseridnotificationpreferences.d.ts.map +0 -1
  1454. package/esm/models/operations/putauthuseridnotificationpreferences.js +0 -142
  1455. package/esm/models/operations/putauthuseridnotificationpreferences.js.map +0 -1
  1456. package/esm/models/operations/putauthuseridprofileimage.d.ts +0 -158
  1457. package/esm/models/operations/putauthuseridprofileimage.d.ts.map +0 -1
  1458. package/esm/models/operations/putauthuseridprofileimage.js +0 -169
  1459. package/esm/models/operations/putauthuseridprofileimage.js.map +0 -1
  1460. package/esm/models/operations/putcustomeraddressid.d.ts +0 -195
  1461. package/esm/models/operations/putcustomeraddressid.d.ts.map +0 -1
  1462. package/esm/models/operations/putcustomeraddressid.js +0 -198
  1463. package/esm/models/operations/putcustomeraddressid.js.map +0 -1
  1464. package/esm/models/operations/putcustomersid.d.ts +0 -92
  1465. package/esm/models/operations/putcustomersid.d.ts.map +0 -1
  1466. package/esm/models/operations/putcustomersid.js +0 -105
  1467. package/esm/models/operations/putcustomersid.js.map +0 -1
  1468. package/esm/sdk/addresses.d.ts +0 -40
  1469. package/esm/sdk/addresses.d.ts.map +0 -1
  1470. package/esm/sdk/addresses.js +0 -58
  1471. package/esm/sdk/addresses.js.map +0 -1
  1472. package/esm/sdk/analytics.d.ts +0 -13
  1473. package/esm/sdk/analytics.d.ts.map +0 -1
  1474. package/esm/sdk/analytics.js +0 -18
  1475. package/esm/sdk/analytics.js.map +0 -1
  1476. package/esm/sdk/categories.d.ts +0 -12
  1477. package/esm/sdk/categories.d.ts.map +0 -1
  1478. package/esm/sdk/categories.js +0 -18
  1479. package/esm/sdk/categories.js.map +0 -1
  1480. package/esm/sdk/cestorefrontorderspayments.d.ts +0 -12
  1481. package/esm/sdk/cestorefrontorderspayments.d.ts.map +0 -1
  1482. package/esm/sdk/cestorefrontorderspayments.js +0 -18
  1483. package/esm/sdk/cestorefrontorderspayments.js.map +0 -1
  1484. package/esm/sdk/cestorefrontreviews.d.ts +0 -19
  1485. package/esm/sdk/cestorefrontreviews.d.ts.map +0 -1
  1486. package/esm/sdk/cestorefrontreviews.js +0 -28
  1487. package/esm/sdk/cestorefrontreviews.js.map +0 -1
  1488. package/esm/sdk/cestorefrontuser.d.ts +0 -82
  1489. package/esm/sdk/cestorefrontuser.d.ts.map +0 -1
  1490. package/esm/sdk/cestorefrontuser.js +0 -118
  1491. package/esm/sdk/cestorefrontuser.js.map +0 -1
  1492. package/esm/sdk/coupons.d.ts +0 -12
  1493. package/esm/sdk/coupons.d.ts.map +0 -1
  1494. package/esm/sdk/coupons.js +0 -18
  1495. package/esm/sdk/coupons.js.map +0 -1
  1496. package/esm/sdk/juspay.d.ts +0 -28
  1497. package/esm/sdk/juspay.d.ts.map +0 -1
  1498. package/esm/sdk/juspay.js +0 -39
  1499. package/esm/sdk/juspay.js.map +0 -1
  1500. package/esm/sdk/loyalty.d.ts +0 -19
  1501. package/esm/sdk/loyalty.d.ts.map +0 -1
  1502. package/esm/sdk/loyalty.js +0 -28
  1503. package/esm/sdk/loyalty.js.map +0 -1
  1504. package/esm/sdk/newsletter.d.ts +0 -12
  1505. package/esm/sdk/newsletter.d.ts.map +0 -1
  1506. package/esm/sdk/newsletter.js +0 -18
  1507. package/esm/sdk/newsletter.js.map +0 -1
  1508. package/esm/sdk/notificationpreferences.d.ts +0 -26
  1509. package/esm/sdk/notificationpreferences.d.ts.map +0 -1
  1510. package/esm/sdk/notificationpreferences.js +0 -38
  1511. package/esm/sdk/notificationpreferences.js.map +0 -1
  1512. package/esm/sdk/offers.d.ts +0 -10
  1513. package/esm/sdk/offers.d.ts.map +0 -1
  1514. package/esm/sdk/offers.js +0 -15
  1515. package/esm/sdk/offers.js.map +0 -1
  1516. package/esm/sdk/payments.d.ts +0 -41
  1517. package/esm/sdk/payments.d.ts.map +0 -1
  1518. package/esm/sdk/payments.js +0 -59
  1519. package/esm/sdk/payments.js.map +0 -1
  1520. package/esm/sdk/products.d.ts +0 -46
  1521. package/esm/sdk/products.d.ts.map +0 -1
  1522. package/esm/sdk/products.js +0 -66
  1523. package/esm/sdk/products.js.map +0 -1
  1524. package/esm/sdk/promotions.d.ts +0 -12
  1525. package/esm/sdk/promotions.d.ts.map +0 -1
  1526. package/esm/sdk/promotions.js +0 -18
  1527. package/esm/sdk/promotions.js.map +0 -1
  1528. package/esm/sdk/refunds.d.ts +0 -12
  1529. package/esm/sdk/refunds.d.ts.map +0 -1
  1530. package/esm/sdk/refunds.js +0 -18
  1531. package/esm/sdk/refunds.js.map +0 -1
  1532. package/esm/sdk/reviews.d.ts +0 -12
  1533. package/esm/sdk/reviews.d.ts.map +0 -1
  1534. package/esm/sdk/reviews.js +0 -18
  1535. package/esm/sdk/reviews.js.map +0 -1
  1536. package/esm/sdk/shipments.d.ts +0 -12
  1537. package/esm/sdk/shipments.d.ts.map +0 -1
  1538. package/esm/sdk/shipments.js +0 -18
  1539. package/esm/sdk/shipments.js.map +0 -1
  1540. package/esm/sdk/skus.d.ts +0 -12
  1541. package/esm/sdk/skus.d.ts.map +0 -1
  1542. package/esm/sdk/skus.js +0 -18
  1543. package/esm/sdk/skus.js.map +0 -1
  1544. package/esm/sdk/user.d.ts +0 -7
  1545. package/esm/sdk/user.d.ts.map +0 -1
  1546. package/esm/sdk/user.js +0 -11
  1547. package/esm/sdk/user.js.map +0 -1
  1548. package/esm/sdk/utils.d.ts +0 -26
  1549. package/esm/sdk/utils.d.ts.map +0 -1
  1550. package/esm/sdk/utils.js +0 -38
  1551. package/esm/sdk/utils.js.map +0 -1
  1552. package/esm/sdk/variants.d.ts +0 -19
  1553. package/esm/sdk/variants.d.ts.map +0 -1
  1554. package/esm/sdk/variants.js +0 -28
  1555. package/esm/sdk/variants.js.map +0 -1
  1556. package/esm/sdk/wishlist.d.ts +0 -26
  1557. package/esm/sdk/wishlist.d.ts.map +0 -1
  1558. package/esm/sdk/wishlist.js +0 -38
  1559. package/esm/sdk/wishlist.js.map +0 -1
  1560. package/src/funcs/analyticsTrack.ts +0 -127
  1561. package/src/funcs/authLoginAnonymously.ts +0 -118
  1562. package/src/funcs/authLoginWithPassword.ts +0 -127
  1563. package/src/funcs/authRegisterWithEmail.ts +0 -128
  1564. package/src/funcs/authRegisterWithPassword.ts +0 -130
  1565. package/src/funcs/authRegisterWithPhone.ts +0 -127
  1566. package/src/funcs/authRegisterWithWhatsapp.ts +0 -130
  1567. package/src/funcs/authUserAddProfileImage.ts +0 -158
  1568. package/src/funcs/authUserChangePassword.ts +0 -138
  1569. package/src/funcs/authUserDeactivateAccount.ts +0 -133
  1570. package/src/funcs/authUserDeleteProfileImage.ts +0 -138
  1571. package/src/funcs/authUserForgotPassword.ts +0 -127
  1572. package/src/funcs/authUserGet.ts +0 -132
  1573. package/src/funcs/authUserGetProfileImage.ts +0 -133
  1574. package/src/funcs/authUserLogout.ts +0 -110
  1575. package/src/funcs/authUserResetPassword.ts +0 -135
  1576. package/src/funcs/authUserUpdate.ts +0 -133
  1577. package/src/funcs/authUserUpdateProfileImage.ts +0 -157
  1578. package/src/funcs/authVerifyEmailPhone.ts +0 -132
  1579. package/src/funcs/campaignsNewsletterSubscribe.ts +0 -131
  1580. package/src/funcs/cartsAddItem.ts +0 -147
  1581. package/src/funcs/cartsCreate.ts +0 -126
  1582. package/src/funcs/cartsDelete.ts +0 -143
  1583. package/src/funcs/cartsGet.ts +0 -143
  1584. package/src/funcs/catalogCategoriesList.ts +0 -134
  1585. package/src/funcs/catalogGetSearchProducts.ts +0 -137
  1586. package/src/funcs/catalogProductsGet.ts +0 -148
  1587. package/src/funcs/catalogProductsGetCrossSells.ts +0 -144
  1588. package/src/funcs/catalogProductsGetSimilar.ts +0 -144
  1589. package/src/funcs/catalogProductsGetUpsells.ts +0 -144
  1590. package/src/funcs/catalogProductsList.ts +0 -145
  1591. package/src/funcs/catalogProductsReviewsCreate.ts +0 -160
  1592. package/src/funcs/catalogProductsReviewsList.ts +0 -153
  1593. package/src/funcs/catalogProductsVariantsGet.ts +0 -155
  1594. package/src/funcs/catalogProductsVariantsList.ts +0 -150
  1595. package/src/funcs/catalogSkusList.ts +0 -146
  1596. package/src/funcs/checkoutRedeemGiftCard.ts +0 -132
  1597. package/src/funcs/checkoutRedeemLoyaltyPoints.ts +0 -138
  1598. package/src/funcs/checkoutRemoveCreditBalance.ts +0 -138
  1599. package/src/funcs/checkoutRemoveLoyaltyPoints.ts +0 -138
  1600. package/src/funcs/checkoutUpdateAddress.ts +0 -141
  1601. package/src/funcs/checkoutUseCreditBalance.ts +0 -138
  1602. package/src/funcs/customersAddressesAdd.ts +0 -144
  1603. package/src/funcs/customersAddressesDelete.ts +0 -150
  1604. package/src/funcs/customersAddressesGet.ts +0 -150
  1605. package/src/funcs/customersAddressesList.ts +0 -138
  1606. package/src/funcs/customersAddressesUpdate.ts +0 -154
  1607. package/src/funcs/customersGetCustomersId.ts +0 -132
  1608. package/src/funcs/customersLoyaltyGet.ts +0 -143
  1609. package/src/funcs/customersLoyaltyListActivities.ts +0 -153
  1610. package/src/funcs/customersPostCustomers.ts +0 -138
  1611. package/src/funcs/customersPutCustomersId.ts +0 -144
  1612. package/src/funcs/customersReviewsList.ts +0 -133
  1613. package/src/funcs/juspayGetPaymentsJuspayCustomer.ts +0 -147
  1614. package/src/funcs/juspayPostPaymentsJuspayCreateCustomer.ts +0 -145
  1615. package/src/funcs/juspayPostPaymentsJuspayCreateOrder.ts +0 -145
  1616. package/src/funcs/offersCouponsList.ts +0 -110
  1617. package/src/funcs/offersPromotionsList.ts +0 -118
  1618. package/src/funcs/ordersCancel.ts +0 -145
  1619. package/src/funcs/ordersCreate.ts +0 -140
  1620. package/src/funcs/ordersGet.ts +0 -143
  1621. package/src/funcs/ordersGetOrdersIdPaymentStatus.ts +0 -133
  1622. package/src/funcs/ordersList.ts +0 -134
  1623. package/src/funcs/ordersPaymentsList.ts +0 -144
  1624. package/src/funcs/ordersRefundsList.ts +0 -143
  1625. package/src/funcs/ordersRetryPayment.ts +0 -148
  1626. package/src/funcs/ordersShipmentsList.ts +0 -144
  1627. package/src/funcs/paymentsGenerateHash.ts +0 -143
  1628. package/src/funcs/paymentsGetMethods.ts +0 -130
  1629. package/src/funcs/paymentsGetPaymentsCards.ts +0 -144
  1630. package/src/funcs/paymentsGetPaymentsVerifyVpa.ts +0 -133
  1631. package/src/funcs/paymentsPostPaymentsCards.ts +0 -141
  1632. package/src/funcs/shippingCheckPincodeServiceability.ts +0 -148
  1633. package/src/funcs/userNotificationPreferencesCreate.ts +0 -141
  1634. package/src/funcs/userNotificationPreferencesGet.ts +0 -139
  1635. package/src/funcs/userNotificationPreferencesUpdate.ts +0 -140
  1636. package/src/funcs/utilsGetCountries.ts +0 -110
  1637. package/src/funcs/utilsGetPincodes.ts +0 -148
  1638. package/src/funcs/utilsGetStates.ts +0 -141
  1639. package/src/funcs/wishlistAdd.ts +0 -144
  1640. package/src/funcs/wishlistDelete.ts +0 -144
  1641. package/src/funcs/wishlistGet.ts +0 -132
  1642. package/src/models/components/analyticsevent.ts +0 -270
  1643. package/src/models/components/business.ts +0 -85
  1644. package/src/models/components/country.ts +0 -107
  1645. package/src/models/components/countrystate.ts +0 -84
  1646. package/src/models/components/coupon.ts +0 -238
  1647. package/src/models/components/createcustomer.ts +0 -78
  1648. package/src/models/components/customerdetail.ts +0 -125
  1649. package/src/models/components/customerloyalty.ts +0 -109
  1650. package/src/models/components/juspaycardpayload.ts +0 -103
  1651. package/src/models/components/juspaycreatecardresponse.ts +0 -93
  1652. package/src/models/components/juspaycreatecustomerpayload.ts +0 -80
  1653. package/src/models/components/juspaycreateorderpayload.ts +0 -81
  1654. package/src/models/components/juspaycustomer.ts +0 -146
  1655. package/src/models/components/juspayorder.ts +0 -326
  1656. package/src/models/components/juspaypaymentmethod.ts +0 -85
  1657. package/src/models/components/juspaysavedcard.ts +0 -64
  1658. package/src/models/components/loyaltypointactivity.ts +0 -166
  1659. package/src/models/components/orderrefund.ts +0 -183
  1660. package/src/models/components/payucardpayload.ts +0 -169
  1661. package/src/models/components/payucreatecardresponse.ts +0 -111
  1662. package/src/models/components/payupaymentmethod.ts +0 -166
  1663. package/src/models/components/payusavedcard.ts +0 -62
  1664. package/src/models/components/promotiondetail.ts +0 -247
  1665. package/src/models/components/updatecustomer.ts +0 -68
  1666. package/src/models/operations/deleteauthuseridprofileimage.ts +0 -156
  1667. package/src/models/operations/deletecartid.ts +0 -143
  1668. package/src/models/operations/deletecreditbalance.ts +0 -210
  1669. package/src/models/operations/deletecustomeraddressid.ts +0 -159
  1670. package/src/models/operations/deleteloyaltypoints.ts +0 -210
  1671. package/src/models/operations/deleteremovecoupons.ts +0 -216
  1672. package/src/models/operations/deletewishlist.ts +0 -219
  1673. package/src/models/operations/getaddress.ts +0 -417
  1674. package/src/models/operations/getanalyticstrack.ts +0 -75
  1675. package/src/models/operations/getauthuserid.ts +0 -209
  1676. package/src/models/operations/getauthuseridnotificationpreferences.ts +0 -269
  1677. package/src/models/operations/getauthuseridprofileimage.ts +0 -231
  1678. package/src/models/operations/getcommoncountries.ts +0 -138
  1679. package/src/models/operations/getcommoncountriescountryisocodepincodes.ts +0 -275
  1680. package/src/models/operations/getcommoncountriesisocodestates.ts +0 -233
  1681. package/src/models/operations/getcoupons.ts +0 -136
  1682. package/src/models/operations/getcrosssell.ts +0 -236
  1683. package/src/models/operations/getcustomeraddressid.ts +0 -423
  1684. package/src/models/operations/getcustomersid.ts +0 -206
  1685. package/src/models/operations/getcustomersuseridreviews.ts +0 -233
  1686. package/src/models/operations/getloyaltypoint.ts +0 -220
  1687. package/src/models/operations/getloyaltypointactivity.ts +0 -253
  1688. package/src/models/operations/getorders.ts +0 -243
  1689. package/src/models/operations/getordersid.ts +0 -206
  1690. package/src/models/operations/getordersidpayments.ts +0 -208
  1691. package/src/models/operations/getordersidpaymentstatus.ts +0 -262
  1692. package/src/models/operations/getordersidrefunds.ts +0 -208
  1693. package/src/models/operations/getordersidshipments.ts +0 -212
  1694. package/src/models/operations/getpaymentmethods.ts +0 -325
  1695. package/src/models/operations/getpaymentscards.ts +0 -310
  1696. package/src/models/operations/getpaymentsjuspaycustomer.ts +0 -215
  1697. package/src/models/operations/getpaymentsverifyvpa.ts +0 -260
  1698. package/src/models/operations/getproductdetails.ts +0 -217
  1699. package/src/models/operations/getproducts.ts +0 -238
  1700. package/src/models/operations/getproductscategories.ts +0 -245
  1701. package/src/models/operations/getproductsidreviews.ts +0 -270
  1702. package/src/models/operations/getproductvariantdetail.ts +0 -233
  1703. package/src/models/operations/getproductvariants.ts +0 -217
  1704. package/src/models/operations/getpromotions.ts +0 -136
  1705. package/src/models/operations/getsearchproducts.ts +0 -222
  1706. package/src/models/operations/getshipmentpincodeserviceability.ts +0 -158
  1707. package/src/models/operations/getsimilar.ts +0 -236
  1708. package/src/models/operations/getskus.ts +0 -244
  1709. package/src/models/operations/getupsell.ts +0 -239
  1710. package/src/models/operations/getwishtlist.ts +0 -206
  1711. package/src/models/operations/postaddress.ts +0 -397
  1712. package/src/models/operations/postapplycoupons.ts +0 -216
  1713. package/src/models/operations/postauthanonymous.ts +0 -241
  1714. package/src/models/operations/postauthchangepassword.ts +0 -265
  1715. package/src/models/operations/postauthforgotpassword.ts +0 -255
  1716. package/src/models/operations/postauthgenerateotp.ts +0 -338
  1717. package/src/models/operations/postauthloginemail.ts +0 -252
  1718. package/src/models/operations/postauthloginpassword.ts +0 -273
  1719. package/src/models/operations/postauthloginphone.ts +0 -292
  1720. package/src/models/operations/postauthloginwhatsapp.ts +0 -299
  1721. package/src/models/operations/postauthlogout.ts +0 -173
  1722. package/src/models/operations/postauthrefreshtoken.ts +0 -243
  1723. package/src/models/operations/postauthregisteremail.ts +0 -281
  1724. package/src/models/operations/postauthregisterpassword.ts +0 -289
  1725. package/src/models/operations/postauthregisterphone.ts +0 -325
  1726. package/src/models/operations/postauthregisterwhatsapp.ts +0 -334
  1727. package/src/models/operations/postauthresetpassword.ts +0 -262
  1728. package/src/models/operations/postauthuseridnotificationpreferences.ts +0 -372
  1729. package/src/models/operations/postauthuseridprofileimage.ts +0 -379
  1730. package/src/models/operations/postauthverifiedemailphone.ts +0 -252
  1731. package/src/models/operations/postauthverifyotp.ts +0 -299
  1732. package/src/models/operations/postcartaddress.ts +0 -357
  1733. package/src/models/operations/postcartitemid.ts +0 -213
  1734. package/src/models/operations/postcartsid.ts +0 -200
  1735. package/src/models/operations/postcheckoutredeemgiftcard.ts +0 -151
  1736. package/src/models/operations/postcreditbalance.ts +0 -216
  1737. package/src/models/operations/postcustomers.ts +0 -145
  1738. package/src/models/operations/postcustomersnewslettersubscription.ts +0 -159
  1739. package/src/models/operations/postloyaltypoints.ts +0 -216
  1740. package/src/models/operations/postorder.ts +0 -472
  1741. package/src/models/operations/postordersordernumber.ts +0 -335
  1742. package/src/models/operations/postpaymentscards.ts +0 -421
  1743. package/src/models/operations/postpaymentsgeneratehash.ts +0 -264
  1744. package/src/models/operations/postpaymentsjuspaycreatecustomer.ts +0 -164
  1745. package/src/models/operations/postpaymentsjuspaycreateorder.ts +0 -153
  1746. package/src/models/operations/postproductsidreviews.ts +0 -155
  1747. package/src/models/operations/postretrypaymentorderid.ts +0 -536
  1748. package/src/models/operations/postwishtlist.ts +0 -219
  1749. package/src/models/operations/putauthuserid.ts +0 -222
  1750. package/src/models/operations/putauthuseriddeactivate.ts +0 -147
  1751. package/src/models/operations/putauthuseridnotificationpreferences.ts +0 -372
  1752. package/src/models/operations/putauthuseridprofileimage.ts +0 -385
  1753. package/src/models/operations/putcustomeraddressid.ts +0 -422
  1754. package/src/models/operations/putcustomersid.ts +0 -218
  1755. package/src/sdk/addresses.ts +0 -99
  1756. package/src/sdk/analytics.ts +0 -28
  1757. package/src/sdk/categories.ts +0 -27
  1758. package/src/sdk/cestorefrontorderspayments.ts +0 -27
  1759. package/src/sdk/cestorefrontreviews.ts +0 -45
  1760. package/src/sdk/cestorefrontuser.ts +0 -205
  1761. package/src/sdk/coupons.ts +0 -25
  1762. package/src/sdk/juspay.ts +0 -65
  1763. package/src/sdk/loyalty.ts +0 -45
  1764. package/src/sdk/newsletter.ts +0 -27
  1765. package/src/sdk/notificationpreferences.ts +0 -63
  1766. package/src/sdk/offers.ts +0 -19
  1767. package/src/sdk/payments.ts +0 -100
  1768. package/src/sdk/products.ts +0 -111
  1769. package/src/sdk/promotions.ts +0 -25
  1770. package/src/sdk/refunds.ts +0 -27
  1771. package/src/sdk/reviews.ts +0 -27
  1772. package/src/sdk/shipments.ts +0 -27
  1773. package/src/sdk/skus.ts +0 -27
  1774. package/src/sdk/user.ts +0 -15
  1775. package/src/sdk/utils.ts +0 -61
  1776. package/src/sdk/variants.ts +0 -45
  1777. package/src/sdk/wishlist.ts +0 -63
@@ -1,204 +0,0 @@
1
- import * as z from "zod";
2
- import { ClosedEnum } from "../../types/enums.js";
3
- import { Result as SafeParseResult } from "../../types/fp.js";
4
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
5
- /**
6
- * The communication channel for sending the OTP.
7
- */
8
- export declare const Channel: {
9
- readonly Sms: "sms";
10
- readonly Email: "email";
11
- readonly Whatsapp: "whatsapp";
12
- };
13
- /**
14
- * The communication channel for sending the OTP.
15
- */
16
- export type Channel = ClosedEnum<typeof Channel>;
17
- export declare const PostAuthGenerateOtpOtpAction: {
18
- readonly Login: "login";
19
- readonly Register: "register";
20
- readonly ResetPassword: "reset-password";
21
- readonly VerifyPhone: "verify-phone";
22
- readonly VerifyEmail: "verify-email";
23
- readonly UpdatePhone: "update-phone";
24
- readonly UpdateEmail: "update-email";
25
- };
26
- export type PostAuthGenerateOtpOtpAction = ClosedEnum<typeof PostAuthGenerateOtpOtpAction>;
27
- export type PostAuthGenerateOtpRequestBody = {
28
- /**
29
- * The communication channel for sending the OTP.
30
- */
31
- channel: Channel;
32
- /**
33
- * Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
34
- *
35
- * @remarks
36
- * Use this key along with phone. Not necessary for email.
37
- */
38
- countryCode?: string | undefined;
39
- /**
40
- * 10 digit phone number without country code.
41
- */
42
- phone?: string | undefined;
43
- /**
44
- * A string representing the email address.
45
- */
46
- email?: string | undefined;
47
- otpAction: PostAuthGenerateOtpOtpAction;
48
- };
49
- /**
50
- * An object containing the response content.
51
- */
52
- export type PostAuthGenerateOtpContent = {
53
- /**
54
- * A string representing the OTP token.
55
- */
56
- otpToken?: string | undefined;
57
- /**
58
- * This is used for verifying OTP or using subsequent APIs call.
59
- */
60
- otpAction?: string | undefined;
61
- };
62
- /**
63
- * OK
64
- */
65
- export type PostAuthGenerateOtpResponseBody = {
66
- /**
67
- * A descriptive message confirming the success or failure of the operation.
68
- */
69
- message?: string | undefined;
70
- /**
71
- * Indicates whether the request was successful or failure (true for success, false for failure).
72
- */
73
- success?: boolean | undefined;
74
- /**
75
- * An object containing the response content.
76
- */
77
- content?: PostAuthGenerateOtpContent | undefined;
78
- };
79
- /** @internal */
80
- export declare const Channel$inboundSchema: z.ZodNativeEnum<typeof Channel>;
81
- /** @internal */
82
- export declare const Channel$outboundSchema: z.ZodNativeEnum<typeof Channel>;
83
- /**
84
- * @internal
85
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
86
- */
87
- export declare namespace Channel$ {
88
- /** @deprecated use `Channel$inboundSchema` instead. */
89
- const inboundSchema: z.ZodNativeEnum<{
90
- readonly Sms: "sms";
91
- readonly Email: "email";
92
- readonly Whatsapp: "whatsapp";
93
- }>;
94
- /** @deprecated use `Channel$outboundSchema` instead. */
95
- const outboundSchema: z.ZodNativeEnum<{
96
- readonly Sms: "sms";
97
- readonly Email: "email";
98
- readonly Whatsapp: "whatsapp";
99
- }>;
100
- }
101
- /** @internal */
102
- export declare const PostAuthGenerateOtpOtpAction$inboundSchema: z.ZodNativeEnum<typeof PostAuthGenerateOtpOtpAction>;
103
- /** @internal */
104
- export declare const PostAuthGenerateOtpOtpAction$outboundSchema: z.ZodNativeEnum<typeof PostAuthGenerateOtpOtpAction>;
105
- /**
106
- * @internal
107
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
108
- */
109
- export declare namespace PostAuthGenerateOtpOtpAction$ {
110
- /** @deprecated use `PostAuthGenerateOtpOtpAction$inboundSchema` instead. */
111
- const inboundSchema: z.ZodNativeEnum<{
112
- readonly Login: "login";
113
- readonly Register: "register";
114
- readonly ResetPassword: "reset-password";
115
- readonly VerifyPhone: "verify-phone";
116
- readonly VerifyEmail: "verify-email";
117
- readonly UpdatePhone: "update-phone";
118
- readonly UpdateEmail: "update-email";
119
- }>;
120
- /** @deprecated use `PostAuthGenerateOtpOtpAction$outboundSchema` instead. */
121
- const outboundSchema: z.ZodNativeEnum<{
122
- readonly Login: "login";
123
- readonly Register: "register";
124
- readonly ResetPassword: "reset-password";
125
- readonly VerifyPhone: "verify-phone";
126
- readonly VerifyEmail: "verify-email";
127
- readonly UpdatePhone: "update-phone";
128
- readonly UpdateEmail: "update-email";
129
- }>;
130
- }
131
- /** @internal */
132
- export declare const PostAuthGenerateOtpRequestBody$inboundSchema: z.ZodType<PostAuthGenerateOtpRequestBody, z.ZodTypeDef, unknown>;
133
- /** @internal */
134
- export type PostAuthGenerateOtpRequestBody$Outbound = {
135
- channel: string;
136
- country_code?: string | undefined;
137
- phone?: string | undefined;
138
- email?: string | undefined;
139
- otp_action: string;
140
- };
141
- /** @internal */
142
- export declare const PostAuthGenerateOtpRequestBody$outboundSchema: z.ZodType<PostAuthGenerateOtpRequestBody$Outbound, z.ZodTypeDef, PostAuthGenerateOtpRequestBody>;
143
- /**
144
- * @internal
145
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
146
- */
147
- export declare namespace PostAuthGenerateOtpRequestBody$ {
148
- /** @deprecated use `PostAuthGenerateOtpRequestBody$inboundSchema` instead. */
149
- const inboundSchema: z.ZodType<PostAuthGenerateOtpRequestBody, z.ZodTypeDef, unknown>;
150
- /** @deprecated use `PostAuthGenerateOtpRequestBody$outboundSchema` instead. */
151
- const outboundSchema: z.ZodType<PostAuthGenerateOtpRequestBody$Outbound, z.ZodTypeDef, PostAuthGenerateOtpRequestBody>;
152
- /** @deprecated use `PostAuthGenerateOtpRequestBody$Outbound` instead. */
153
- type Outbound = PostAuthGenerateOtpRequestBody$Outbound;
154
- }
155
- export declare function postAuthGenerateOtpRequestBodyToJSON(postAuthGenerateOtpRequestBody: PostAuthGenerateOtpRequestBody): string;
156
- export declare function postAuthGenerateOtpRequestBodyFromJSON(jsonString: string): SafeParseResult<PostAuthGenerateOtpRequestBody, SDKValidationError>;
157
- /** @internal */
158
- export declare const PostAuthGenerateOtpContent$inboundSchema: z.ZodType<PostAuthGenerateOtpContent, z.ZodTypeDef, unknown>;
159
- /** @internal */
160
- export type PostAuthGenerateOtpContent$Outbound = {
161
- otp_token?: string | undefined;
162
- otp_action?: string | undefined;
163
- };
164
- /** @internal */
165
- export declare const PostAuthGenerateOtpContent$outboundSchema: z.ZodType<PostAuthGenerateOtpContent$Outbound, z.ZodTypeDef, PostAuthGenerateOtpContent>;
166
- /**
167
- * @internal
168
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
169
- */
170
- export declare namespace PostAuthGenerateOtpContent$ {
171
- /** @deprecated use `PostAuthGenerateOtpContent$inboundSchema` instead. */
172
- const inboundSchema: z.ZodType<PostAuthGenerateOtpContent, z.ZodTypeDef, unknown>;
173
- /** @deprecated use `PostAuthGenerateOtpContent$outboundSchema` instead. */
174
- const outboundSchema: z.ZodType<PostAuthGenerateOtpContent$Outbound, z.ZodTypeDef, PostAuthGenerateOtpContent>;
175
- /** @deprecated use `PostAuthGenerateOtpContent$Outbound` instead. */
176
- type Outbound = PostAuthGenerateOtpContent$Outbound;
177
- }
178
- export declare function postAuthGenerateOtpContentToJSON(postAuthGenerateOtpContent: PostAuthGenerateOtpContent): string;
179
- export declare function postAuthGenerateOtpContentFromJSON(jsonString: string): SafeParseResult<PostAuthGenerateOtpContent, SDKValidationError>;
180
- /** @internal */
181
- export declare const PostAuthGenerateOtpResponseBody$inboundSchema: z.ZodType<PostAuthGenerateOtpResponseBody, z.ZodTypeDef, unknown>;
182
- /** @internal */
183
- export type PostAuthGenerateOtpResponseBody$Outbound = {
184
- message?: string | undefined;
185
- success?: boolean | undefined;
186
- content?: PostAuthGenerateOtpContent$Outbound | undefined;
187
- };
188
- /** @internal */
189
- export declare const PostAuthGenerateOtpResponseBody$outboundSchema: z.ZodType<PostAuthGenerateOtpResponseBody$Outbound, z.ZodTypeDef, PostAuthGenerateOtpResponseBody>;
190
- /**
191
- * @internal
192
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
193
- */
194
- export declare namespace PostAuthGenerateOtpResponseBody$ {
195
- /** @deprecated use `PostAuthGenerateOtpResponseBody$inboundSchema` instead. */
196
- const inboundSchema: z.ZodType<PostAuthGenerateOtpResponseBody, z.ZodTypeDef, unknown>;
197
- /** @deprecated use `PostAuthGenerateOtpResponseBody$outboundSchema` instead. */
198
- const outboundSchema: z.ZodType<PostAuthGenerateOtpResponseBody$Outbound, z.ZodTypeDef, PostAuthGenerateOtpResponseBody>;
199
- /** @deprecated use `PostAuthGenerateOtpResponseBody$Outbound` instead. */
200
- type Outbound = PostAuthGenerateOtpResponseBody$Outbound;
201
- }
202
- export declare function postAuthGenerateOtpResponseBodyToJSON(postAuthGenerateOtpResponseBody: PostAuthGenerateOtpResponseBody): string;
203
- export declare function postAuthGenerateOtpResponseBodyFromJSON(jsonString: string): SafeParseResult<PostAuthGenerateOtpResponseBody, SDKValidationError>;
204
- //# sourceMappingURL=postauthgenerateotp.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"postauthgenerateotp.d.ts","sourceRoot":"","sources":["../../../src/models/operations/postauthgenerateotp.ts"],"names":[],"mappings":"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"}
@@ -1,164 +0,0 @@
1
- /*
2
- * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
- */
4
- import * as z from "zod";
5
- import { remap as remap$ } from "../../lib/primitives.js";
6
- import { safeParse } from "../../lib/schemas.js";
7
- /**
8
- * The communication channel for sending the OTP.
9
- */
10
- export const Channel = {
11
- Sms: "sms",
12
- Email: "email",
13
- Whatsapp: "whatsapp",
14
- };
15
- export const PostAuthGenerateOtpOtpAction = {
16
- Login: "login",
17
- Register: "register",
18
- ResetPassword: "reset-password",
19
- VerifyPhone: "verify-phone",
20
- VerifyEmail: "verify-email",
21
- UpdatePhone: "update-phone",
22
- UpdateEmail: "update-email",
23
- };
24
- /** @internal */
25
- export const Channel$inboundSchema = z
26
- .nativeEnum(Channel);
27
- /** @internal */
28
- export const Channel$outboundSchema = Channel$inboundSchema;
29
- /**
30
- * @internal
31
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
32
- */
33
- export var Channel$;
34
- (function (Channel$) {
35
- /** @deprecated use `Channel$inboundSchema` instead. */
36
- Channel$.inboundSchema = Channel$inboundSchema;
37
- /** @deprecated use `Channel$outboundSchema` instead. */
38
- Channel$.outboundSchema = Channel$outboundSchema;
39
- })(Channel$ || (Channel$ = {}));
40
- /** @internal */
41
- export const PostAuthGenerateOtpOtpAction$inboundSchema = z.nativeEnum(PostAuthGenerateOtpOtpAction);
42
- /** @internal */
43
- export const PostAuthGenerateOtpOtpAction$outboundSchema = PostAuthGenerateOtpOtpAction$inboundSchema;
44
- /**
45
- * @internal
46
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
47
- */
48
- export var PostAuthGenerateOtpOtpAction$;
49
- (function (PostAuthGenerateOtpOtpAction$) {
50
- /** @deprecated use `PostAuthGenerateOtpOtpAction$inboundSchema` instead. */
51
- PostAuthGenerateOtpOtpAction$.inboundSchema = PostAuthGenerateOtpOtpAction$inboundSchema;
52
- /** @deprecated use `PostAuthGenerateOtpOtpAction$outboundSchema` instead. */
53
- PostAuthGenerateOtpOtpAction$.outboundSchema = PostAuthGenerateOtpOtpAction$outboundSchema;
54
- })(PostAuthGenerateOtpOtpAction$ || (PostAuthGenerateOtpOtpAction$ = {}));
55
- /** @internal */
56
- export const PostAuthGenerateOtpRequestBody$inboundSchema = z.object({
57
- channel: Channel$inboundSchema,
58
- country_code: z.string().optional(),
59
- phone: z.string().optional(),
60
- email: z.string().optional(),
61
- otp_action: PostAuthGenerateOtpOtpAction$inboundSchema,
62
- }).transform((v) => {
63
- return remap$(v, {
64
- "country_code": "countryCode",
65
- "otp_action": "otpAction",
66
- });
67
- });
68
- /** @internal */
69
- export const PostAuthGenerateOtpRequestBody$outboundSchema = z.object({
70
- channel: Channel$outboundSchema,
71
- countryCode: z.string().optional(),
72
- phone: z.string().optional(),
73
- email: z.string().optional(),
74
- otpAction: PostAuthGenerateOtpOtpAction$outboundSchema,
75
- }).transform((v) => {
76
- return remap$(v, {
77
- countryCode: "country_code",
78
- otpAction: "otp_action",
79
- });
80
- });
81
- /**
82
- * @internal
83
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
84
- */
85
- export var PostAuthGenerateOtpRequestBody$;
86
- (function (PostAuthGenerateOtpRequestBody$) {
87
- /** @deprecated use `PostAuthGenerateOtpRequestBody$inboundSchema` instead. */
88
- PostAuthGenerateOtpRequestBody$.inboundSchema = PostAuthGenerateOtpRequestBody$inboundSchema;
89
- /** @deprecated use `PostAuthGenerateOtpRequestBody$outboundSchema` instead. */
90
- PostAuthGenerateOtpRequestBody$.outboundSchema = PostAuthGenerateOtpRequestBody$outboundSchema;
91
- })(PostAuthGenerateOtpRequestBody$ || (PostAuthGenerateOtpRequestBody$ = {}));
92
- export function postAuthGenerateOtpRequestBodyToJSON(postAuthGenerateOtpRequestBody) {
93
- return JSON.stringify(PostAuthGenerateOtpRequestBody$outboundSchema.parse(postAuthGenerateOtpRequestBody));
94
- }
95
- export function postAuthGenerateOtpRequestBodyFromJSON(jsonString) {
96
- return safeParse(jsonString, (x) => PostAuthGenerateOtpRequestBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthGenerateOtpRequestBody' from JSON`);
97
- }
98
- /** @internal */
99
- export const PostAuthGenerateOtpContent$inboundSchema = z.object({
100
- otp_token: z.string().optional(),
101
- otp_action: z.string().optional(),
102
- }).transform((v) => {
103
- return remap$(v, {
104
- "otp_token": "otpToken",
105
- "otp_action": "otpAction",
106
- });
107
- });
108
- /** @internal */
109
- export const PostAuthGenerateOtpContent$outboundSchema = z.object({
110
- otpToken: z.string().optional(),
111
- otpAction: z.string().optional(),
112
- }).transform((v) => {
113
- return remap$(v, {
114
- otpToken: "otp_token",
115
- otpAction: "otp_action",
116
- });
117
- });
118
- /**
119
- * @internal
120
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
121
- */
122
- export var PostAuthGenerateOtpContent$;
123
- (function (PostAuthGenerateOtpContent$) {
124
- /** @deprecated use `PostAuthGenerateOtpContent$inboundSchema` instead. */
125
- PostAuthGenerateOtpContent$.inboundSchema = PostAuthGenerateOtpContent$inboundSchema;
126
- /** @deprecated use `PostAuthGenerateOtpContent$outboundSchema` instead. */
127
- PostAuthGenerateOtpContent$.outboundSchema = PostAuthGenerateOtpContent$outboundSchema;
128
- })(PostAuthGenerateOtpContent$ || (PostAuthGenerateOtpContent$ = {}));
129
- export function postAuthGenerateOtpContentToJSON(postAuthGenerateOtpContent) {
130
- return JSON.stringify(PostAuthGenerateOtpContent$outboundSchema.parse(postAuthGenerateOtpContent));
131
- }
132
- export function postAuthGenerateOtpContentFromJSON(jsonString) {
133
- return safeParse(jsonString, (x) => PostAuthGenerateOtpContent$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthGenerateOtpContent' from JSON`);
134
- }
135
- /** @internal */
136
- export const PostAuthGenerateOtpResponseBody$inboundSchema = z.object({
137
- message: z.string().optional(),
138
- success: z.boolean().optional(),
139
- content: z.lazy(() => PostAuthGenerateOtpContent$inboundSchema).optional(),
140
- });
141
- /** @internal */
142
- export const PostAuthGenerateOtpResponseBody$outboundSchema = z.object({
143
- message: z.string().optional(),
144
- success: z.boolean().optional(),
145
- content: z.lazy(() => PostAuthGenerateOtpContent$outboundSchema).optional(),
146
- });
147
- /**
148
- * @internal
149
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
150
- */
151
- export var PostAuthGenerateOtpResponseBody$;
152
- (function (PostAuthGenerateOtpResponseBody$) {
153
- /** @deprecated use `PostAuthGenerateOtpResponseBody$inboundSchema` instead. */
154
- PostAuthGenerateOtpResponseBody$.inboundSchema = PostAuthGenerateOtpResponseBody$inboundSchema;
155
- /** @deprecated use `PostAuthGenerateOtpResponseBody$outboundSchema` instead. */
156
- PostAuthGenerateOtpResponseBody$.outboundSchema = PostAuthGenerateOtpResponseBody$outboundSchema;
157
- })(PostAuthGenerateOtpResponseBody$ || (PostAuthGenerateOtpResponseBody$ = {}));
158
- export function postAuthGenerateOtpResponseBodyToJSON(postAuthGenerateOtpResponseBody) {
159
- return JSON.stringify(PostAuthGenerateOtpResponseBody$outboundSchema.parse(postAuthGenerateOtpResponseBody));
160
- }
161
- export function postAuthGenerateOtpResponseBodyFromJSON(jsonString) {
162
- return safeParse(jsonString, (x) => PostAuthGenerateOtpResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthGenerateOtpResponseBody' from JSON`);
163
- }
164
- //# sourceMappingURL=postauthgenerateotp.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"postauthgenerateotp.js","sourceRoot":"","sources":["../../../src/models/operations/postauthgenerateotp.ts"],"names":[],"mappings":"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"}
@@ -1,118 +0,0 @@
1
- import * as z from "zod";
2
- import { Result as SafeParseResult } from "../../types/fp.js";
3
- import { SDKValidationError } from "../errors/sdkvalidationerror.js";
4
- export type PostAuthLoginEmailRequestBody = {
5
- /**
6
- * User's email address.
7
- */
8
- email: string;
9
- /**
10
- * This is used to send OTP to unregistered phone. By default it sends OTP to registered phone only.
11
- *
12
- * @remarks
13
- * To send OTP to unregistered phone it should be pass with true value like this,
14
- * "register_if_not_exists": true
15
- */
16
- registerIfNotExists?: boolean | undefined;
17
- };
18
- /**
19
- * An object containing the response content.
20
- */
21
- export type PostAuthLoginEmailContent = {
22
- /**
23
- * The otp token is a unique code that is used for authentication during the Login process.
24
- */
25
- otpToken?: string | undefined;
26
- /**
27
- * It is used for verifying OTP and using subsequent API call.
28
- */
29
- otpAction?: string | undefined;
30
- };
31
- /**
32
- * OK
33
- */
34
- export type PostAuthLoginEmailResponseBody = {
35
- /**
36
- * A descriptive message confirming the success or failure of the Login process.
37
- */
38
- message?: string | undefined;
39
- /**
40
- * Indicates whether the request was successful or failure (true for success, false for failure).
41
- */
42
- success?: boolean | undefined;
43
- /**
44
- * An object containing the response content.
45
- */
46
- content?: PostAuthLoginEmailContent | undefined;
47
- };
48
- /** @internal */
49
- export declare const PostAuthLoginEmailRequestBody$inboundSchema: z.ZodType<PostAuthLoginEmailRequestBody, z.ZodTypeDef, unknown>;
50
- /** @internal */
51
- export type PostAuthLoginEmailRequestBody$Outbound = {
52
- email: string;
53
- register_if_not_exists?: boolean | undefined;
54
- };
55
- /** @internal */
56
- export declare const PostAuthLoginEmailRequestBody$outboundSchema: z.ZodType<PostAuthLoginEmailRequestBody$Outbound, z.ZodTypeDef, PostAuthLoginEmailRequestBody>;
57
- /**
58
- * @internal
59
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
60
- */
61
- export declare namespace PostAuthLoginEmailRequestBody$ {
62
- /** @deprecated use `PostAuthLoginEmailRequestBody$inboundSchema` instead. */
63
- const inboundSchema: z.ZodType<PostAuthLoginEmailRequestBody, z.ZodTypeDef, unknown>;
64
- /** @deprecated use `PostAuthLoginEmailRequestBody$outboundSchema` instead. */
65
- const outboundSchema: z.ZodType<PostAuthLoginEmailRequestBody$Outbound, z.ZodTypeDef, PostAuthLoginEmailRequestBody>;
66
- /** @deprecated use `PostAuthLoginEmailRequestBody$Outbound` instead. */
67
- type Outbound = PostAuthLoginEmailRequestBody$Outbound;
68
- }
69
- export declare function postAuthLoginEmailRequestBodyToJSON(postAuthLoginEmailRequestBody: PostAuthLoginEmailRequestBody): string;
70
- export declare function postAuthLoginEmailRequestBodyFromJSON(jsonString: string): SafeParseResult<PostAuthLoginEmailRequestBody, SDKValidationError>;
71
- /** @internal */
72
- export declare const PostAuthLoginEmailContent$inboundSchema: z.ZodType<PostAuthLoginEmailContent, z.ZodTypeDef, unknown>;
73
- /** @internal */
74
- export type PostAuthLoginEmailContent$Outbound = {
75
- otp_token?: string | undefined;
76
- otp_action?: string | undefined;
77
- };
78
- /** @internal */
79
- export declare const PostAuthLoginEmailContent$outboundSchema: z.ZodType<PostAuthLoginEmailContent$Outbound, z.ZodTypeDef, PostAuthLoginEmailContent>;
80
- /**
81
- * @internal
82
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
83
- */
84
- export declare namespace PostAuthLoginEmailContent$ {
85
- /** @deprecated use `PostAuthLoginEmailContent$inboundSchema` instead. */
86
- const inboundSchema: z.ZodType<PostAuthLoginEmailContent, z.ZodTypeDef, unknown>;
87
- /** @deprecated use `PostAuthLoginEmailContent$outboundSchema` instead. */
88
- const outboundSchema: z.ZodType<PostAuthLoginEmailContent$Outbound, z.ZodTypeDef, PostAuthLoginEmailContent>;
89
- /** @deprecated use `PostAuthLoginEmailContent$Outbound` instead. */
90
- type Outbound = PostAuthLoginEmailContent$Outbound;
91
- }
92
- export declare function postAuthLoginEmailContentToJSON(postAuthLoginEmailContent: PostAuthLoginEmailContent): string;
93
- export declare function postAuthLoginEmailContentFromJSON(jsonString: string): SafeParseResult<PostAuthLoginEmailContent, SDKValidationError>;
94
- /** @internal */
95
- export declare const PostAuthLoginEmailResponseBody$inboundSchema: z.ZodType<PostAuthLoginEmailResponseBody, z.ZodTypeDef, unknown>;
96
- /** @internal */
97
- export type PostAuthLoginEmailResponseBody$Outbound = {
98
- message?: string | undefined;
99
- success?: boolean | undefined;
100
- content?: PostAuthLoginEmailContent$Outbound | undefined;
101
- };
102
- /** @internal */
103
- export declare const PostAuthLoginEmailResponseBody$outboundSchema: z.ZodType<PostAuthLoginEmailResponseBody$Outbound, z.ZodTypeDef, PostAuthLoginEmailResponseBody>;
104
- /**
105
- * @internal
106
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
107
- */
108
- export declare namespace PostAuthLoginEmailResponseBody$ {
109
- /** @deprecated use `PostAuthLoginEmailResponseBody$inboundSchema` instead. */
110
- const inboundSchema: z.ZodType<PostAuthLoginEmailResponseBody, z.ZodTypeDef, unknown>;
111
- /** @deprecated use `PostAuthLoginEmailResponseBody$outboundSchema` instead. */
112
- const outboundSchema: z.ZodType<PostAuthLoginEmailResponseBody$Outbound, z.ZodTypeDef, PostAuthLoginEmailResponseBody>;
113
- /** @deprecated use `PostAuthLoginEmailResponseBody$Outbound` instead. */
114
- type Outbound = PostAuthLoginEmailResponseBody$Outbound;
115
- }
116
- export declare function postAuthLoginEmailResponseBodyToJSON(postAuthLoginEmailResponseBody: PostAuthLoginEmailResponseBody): string;
117
- export declare function postAuthLoginEmailResponseBodyFromJSON(jsonString: string): SafeParseResult<PostAuthLoginEmailResponseBody, SDKValidationError>;
118
- //# sourceMappingURL=postauthloginemail.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"postauthloginemail.d.ts","sourceRoot":"","sources":["../../../src/models/operations/postauthloginemail.ts"],"names":[],"mappings":"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"}
@@ -1,108 +0,0 @@
1
- /*
2
- * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
- */
4
- import * as z from "zod";
5
- import { remap as remap$ } from "../../lib/primitives.js";
6
- import { safeParse } from "../../lib/schemas.js";
7
- /** @internal */
8
- export const PostAuthLoginEmailRequestBody$inboundSchema = z.object({
9
- email: z.string(),
10
- register_if_not_exists: z.boolean().optional(),
11
- }).transform((v) => {
12
- return remap$(v, {
13
- "register_if_not_exists": "registerIfNotExists",
14
- });
15
- });
16
- /** @internal */
17
- export const PostAuthLoginEmailRequestBody$outboundSchema = z.object({
18
- email: z.string(),
19
- registerIfNotExists: z.boolean().optional(),
20
- }).transform((v) => {
21
- return remap$(v, {
22
- registerIfNotExists: "register_if_not_exists",
23
- });
24
- });
25
- /**
26
- * @internal
27
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
28
- */
29
- export var PostAuthLoginEmailRequestBody$;
30
- (function (PostAuthLoginEmailRequestBody$) {
31
- /** @deprecated use `PostAuthLoginEmailRequestBody$inboundSchema` instead. */
32
- PostAuthLoginEmailRequestBody$.inboundSchema = PostAuthLoginEmailRequestBody$inboundSchema;
33
- /** @deprecated use `PostAuthLoginEmailRequestBody$outboundSchema` instead. */
34
- PostAuthLoginEmailRequestBody$.outboundSchema = PostAuthLoginEmailRequestBody$outboundSchema;
35
- })(PostAuthLoginEmailRequestBody$ || (PostAuthLoginEmailRequestBody$ = {}));
36
- export function postAuthLoginEmailRequestBodyToJSON(postAuthLoginEmailRequestBody) {
37
- return JSON.stringify(PostAuthLoginEmailRequestBody$outboundSchema.parse(postAuthLoginEmailRequestBody));
38
- }
39
- export function postAuthLoginEmailRequestBodyFromJSON(jsonString) {
40
- return safeParse(jsonString, (x) => PostAuthLoginEmailRequestBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthLoginEmailRequestBody' from JSON`);
41
- }
42
- /** @internal */
43
- export const PostAuthLoginEmailContent$inboundSchema = z.object({
44
- otp_token: z.string().optional(),
45
- otp_action: z.string().optional(),
46
- }).transform((v) => {
47
- return remap$(v, {
48
- "otp_token": "otpToken",
49
- "otp_action": "otpAction",
50
- });
51
- });
52
- /** @internal */
53
- export const PostAuthLoginEmailContent$outboundSchema = z.object({
54
- otpToken: z.string().optional(),
55
- otpAction: z.string().optional(),
56
- }).transform((v) => {
57
- return remap$(v, {
58
- otpToken: "otp_token",
59
- otpAction: "otp_action",
60
- });
61
- });
62
- /**
63
- * @internal
64
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
65
- */
66
- export var PostAuthLoginEmailContent$;
67
- (function (PostAuthLoginEmailContent$) {
68
- /** @deprecated use `PostAuthLoginEmailContent$inboundSchema` instead. */
69
- PostAuthLoginEmailContent$.inboundSchema = PostAuthLoginEmailContent$inboundSchema;
70
- /** @deprecated use `PostAuthLoginEmailContent$outboundSchema` instead. */
71
- PostAuthLoginEmailContent$.outboundSchema = PostAuthLoginEmailContent$outboundSchema;
72
- })(PostAuthLoginEmailContent$ || (PostAuthLoginEmailContent$ = {}));
73
- export function postAuthLoginEmailContentToJSON(postAuthLoginEmailContent) {
74
- return JSON.stringify(PostAuthLoginEmailContent$outboundSchema.parse(postAuthLoginEmailContent));
75
- }
76
- export function postAuthLoginEmailContentFromJSON(jsonString) {
77
- return safeParse(jsonString, (x) => PostAuthLoginEmailContent$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthLoginEmailContent' from JSON`);
78
- }
79
- /** @internal */
80
- export const PostAuthLoginEmailResponseBody$inboundSchema = z.object({
81
- message: z.string().optional(),
82
- success: z.boolean().optional(),
83
- content: z.lazy(() => PostAuthLoginEmailContent$inboundSchema).optional(),
84
- });
85
- /** @internal */
86
- export const PostAuthLoginEmailResponseBody$outboundSchema = z.object({
87
- message: z.string().optional(),
88
- success: z.boolean().optional(),
89
- content: z.lazy(() => PostAuthLoginEmailContent$outboundSchema).optional(),
90
- });
91
- /**
92
- * @internal
93
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
94
- */
95
- export var PostAuthLoginEmailResponseBody$;
96
- (function (PostAuthLoginEmailResponseBody$) {
97
- /** @deprecated use `PostAuthLoginEmailResponseBody$inboundSchema` instead. */
98
- PostAuthLoginEmailResponseBody$.inboundSchema = PostAuthLoginEmailResponseBody$inboundSchema;
99
- /** @deprecated use `PostAuthLoginEmailResponseBody$outboundSchema` instead. */
100
- PostAuthLoginEmailResponseBody$.outboundSchema = PostAuthLoginEmailResponseBody$outboundSchema;
101
- })(PostAuthLoginEmailResponseBody$ || (PostAuthLoginEmailResponseBody$ = {}));
102
- export function postAuthLoginEmailResponseBodyToJSON(postAuthLoginEmailResponseBody) {
103
- return JSON.stringify(PostAuthLoginEmailResponseBody$outboundSchema.parse(postAuthLoginEmailResponseBody));
104
- }
105
- export function postAuthLoginEmailResponseBodyFromJSON(jsonString) {
106
- return safeParse(jsonString, (x) => PostAuthLoginEmailResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PostAuthLoginEmailResponseBody' from JSON`);
107
- }
108
- //# sourceMappingURL=postauthloginemail.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"postauthloginemail.js","sourceRoot":"","sources":["../../../src/models/operations/postauthloginemail.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,KAAK,IAAI,MAAM,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAmDjD,gBAAgB;AAChB,MAAM,CAAC,MAAM,2CAA2C,GAIpD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,sBAAsB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC/C,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,MAAM,CAAC,CAAC,EAAE;QACf,wBAAwB,EAAE,qBAAqB;KAChD,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQH,gBAAgB;AAChB,MAAM,CAAC,MAAM,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC5C,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,MAAM,CAAC,CAAC,EAAE;QACf,mBAAmB,EAAE,wBAAwB;KAC9C,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,KAAW,8BAA8B,CAO9C;AAPD,WAAiB,8BAA8B;IAC7C,6EAA6E;IAChE,4CAAa,GAAG,2CAA2C,CAAC;IACzE,8EAA8E;IACjE,6CAAc,GAAG,4CAA4C,CAAC;AAG7E,CAAC,EAPgB,8BAA8B,KAA9B,8BAA8B,QAO9C;AAED,MAAM,UAAU,mCAAmC,CACjD,6BAA4D;IAE5D,OAAO,IAAI,CAAC,SAAS,CACnB,4CAA4C,CAAC,KAAK,CAChD,6BAA6B,CAC9B,CACF,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,qCAAqC,CACnD,UAAkB;IAElB,OAAO,SAAS,CACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,2CAA2C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACvE,2DAA2D,CAC5D,CAAC;AACJ,CAAC;AAED,gBAAgB;AAChB,MAAM,CAAC,MAAM,uCAAuC,GAIhD,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,MAAM,CAAC,CAAC,EAAE;QACf,WAAW,EAAE,UAAU;QACvB,YAAY,EAAE,WAAW;KAC1B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQH,gBAAgB;AAChB,MAAM,CAAC,MAAM,wCAAwC,GAIjD,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,MAAM,CAAC,CAAC,EAAE;QACf,QAAQ,EAAE,WAAW;QACrB,SAAS,EAAE,YAAY;KACxB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,KAAW,0BAA0B,CAO1C;AAPD,WAAiB,0BAA0B;IACzC,yEAAyE;IAC5D,wCAAa,GAAG,uCAAuC,CAAC;IACrE,0EAA0E;IAC7D,yCAAc,GAAG,wCAAwC,CAAC;AAGzE,CAAC,EAPgB,0BAA0B,KAA1B,0BAA0B,QAO1C;AAED,MAAM,UAAU,+BAA+B,CAC7C,yBAAoD;IAEpD,OAAO,IAAI,CAAC,SAAS,CACnB,wCAAwC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAC1E,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,iCAAiC,CAC/C,UAAkB;IAElB,OAAO,SAAS,CACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,uCAAuC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACnE,uDAAuD,CACxD,CAAC;AACJ,CAAC;AAED,gBAAgB;AAChB,MAAM,CAAC,MAAM,4CAA4C,GAIrD,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,uCAAuC,CAAC,CAAC,QAAQ,EAAE;CAC1E,CAAC,CAAC;AASH,gBAAgB;AAChB,MAAM,CAAC,MAAM,6CAA6C,GAItD,CAAC,CAAC,MAAM,CAAC;IACX,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,wCAAwC,CAAC,CAAC,QAAQ,EAAE;CAC3E,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAM,KAAW,+BAA+B,CAO/C;AAPD,WAAiB,+BAA+B;IAC9C,8EAA8E;IACjE,6CAAa,GAAG,4CAA4C,CAAC;IAC1E,+EAA+E;IAClE,8CAAc,GAAG,6CAA6C,CAAC;AAG9E,CAAC,EAPgB,+BAA+B,KAA/B,+BAA+B,QAO/C;AAED,MAAM,UAAU,oCAAoC,CAClD,8BAA8D;IAE9D,OAAO,IAAI,CAAC,SAAS,CACnB,6CAA6C,CAAC,KAAK,CACjD,8BAA8B,CAC/B,CACF,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,sCAAsC,CACpD,UAAkB;IAElB,OAAO,SAAS,CACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4CAA4C,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACxE,4DAA4D,CAC7D,CAAC;AACJ,CAAC"}