@ikas/storefront-api 4.0.0-alpha.78 → 4.0.0-alpha.8

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 (873) hide show
  1. package/package.json +13 -14
  2. package/src/__api/models/AbandonedCartFlow.ts +34 -0
  3. package/src/__api/models/AbandonedCartFlowCustomerFilter.ts +25 -0
  4. package/src/__api/models/AddItemToCartInput.ts +29 -0
  5. package/src/__api/models/AdditionalPrice.ts +24 -0
  6. package/src/__api/models/ApplicableProductFilterValue.ts +23 -0
  7. package/src/__api/models/AppliedProduct.ts +15 -0
  8. package/src/__api/models/AppliedProductInput.ts +15 -0
  9. package/src/__api/models/AvailableShippingMethod.ts +24 -0
  10. package/src/__api/models/Blog.ts +55 -0
  11. package/src/__api/models/BlogCategory.ts +23 -0
  12. package/src/__api/models/BlogCategoryPaginationResponse.ts +24 -0
  13. package/src/__api/models/BlogContent.ts +20 -0
  14. package/src/__api/models/BlogMetadata.ts +32 -0
  15. package/src/__api/models/BlogMetadataPaginationResponse.ts +24 -0
  16. package/src/__api/models/BlogMetadataTargetTypeEnumFilter.ts +22 -0
  17. package/src/__api/models/BlogPaginationResponse.ts +23 -0
  18. package/src/__api/models/BlogTag.ts +16 -0
  19. package/src/__api/models/BlogWriter.ts +15 -0
  20. package/src/__api/models/BooleanFilterInput.ts +13 -0
  21. package/src/__api/models/BuyX.ts +20 -0
  22. package/src/__api/models/BuyXThenGetY.ts +22 -0
  23. package/src/__api/models/Campaign.ts +75 -0
  24. package/src/__api/models/CampaignDateRangeField.ts +16 -0
  25. package/src/__api/models/CampaignFilter.ts +16 -0
  26. package/src/__api/models/CampaignMinMaxRangeField.ts +16 -0
  27. package/src/__api/models/CampaignOffer.ts +50 -0
  28. package/src/__api/models/CampaignOfferProduct.ts +49 -0
  29. package/src/__api/models/CampaignOfferProductTranslation.ts +19 -0
  30. package/src/__api/models/CampaignOfferTriggerSettings.ts +19 -0
  31. package/src/__api/models/Cart.ts +61 -0
  32. package/src/__api/models/CartCampaignOffer.ts +31 -0
  33. package/src/__api/models/CartLineItemInput.ts +20 -0
  34. package/src/__api/models/CartLineOptionInput.ts +17 -0
  35. package/src/__api/models/CartLineVariantInput.ts +15 -0
  36. package/src/__api/models/CartStorefrontRouting.ts +28 -0
  37. package/src/__api/models/CartStorefrontRoutingDynamicCurrencySettings.ts +19 -0
  38. package/src/__api/models/CartV2.ts +159 -0
  39. package/src/__api/models/CartV2CampaignOffer.ts +36 -0
  40. package/src/__api/models/Category.ts +58 -0
  41. package/src/__api/models/CategoryCondition.ts +17 -0
  42. package/src/__api/models/CategoryFilterInput.ts +15 -0
  43. package/src/__api/models/CategoryPaginationResponse.ts +24 -0
  44. package/src/__api/models/CategoryPathFilterInput.ts +14 -0
  45. package/src/__api/models/CategoryPathItem.ts +33 -0
  46. package/src/__api/models/CategoryTranslation.ts +17 -0
  47. package/src/__api/models/CheckStocksLineInput.ts +17 -0
  48. package/src/__api/models/CheckStocksLineResponse.ts +18 -0
  49. package/src/__api/models/CheckStocksResponse.ts +16 -0
  50. package/src/__api/models/Checkout.ts +102 -0
  51. package/src/__api/models/CheckoutCustomer.ts +39 -0
  52. package/src/__api/models/CheckoutCustomerInput.ts +25 -0
  53. package/src/__api/models/CheckoutOption.ts +15 -0
  54. package/src/__api/models/CheckoutSettings.ts +62 -0
  55. package/src/__api/models/CheckoutSettingsPrice.ts +15 -0
  56. package/src/__api/models/City.ts +29 -0
  57. package/src/__api/models/Country.ts +41 -0
  58. package/src/__api/models/CreateCustomerEmailSubscriptionInput.ts +22 -0
  59. package/src/__api/models/CreateCustomerReviewInput.ts +38 -0
  60. package/src/__api/models/CreateSaleTransactionMasterPassPaymentMethodDetail.ts +19 -0
  61. package/src/__api/models/CreateSaleTransactionWithCartInput.ts +29 -0
  62. package/src/__api/models/CreateSaleTransactionWithCheckoutInput.ts +29 -0
  63. package/src/__api/models/CreateStripePaymentIntentResponse.ts +21 -0
  64. package/src/__api/models/CurrencyRate.ts +23 -0
  65. package/src/__api/models/CurrencyRateData.ts +15 -0
  66. package/src/__api/models/Customer.ts +81 -0
  67. package/src/__api/models/CustomerAddress.ts +64 -0
  68. package/src/__api/models/CustomerAddressCity.ts +17 -0
  69. package/src/__api/models/CustomerAddressCityInput.ts +18 -0
  70. package/src/__api/models/CustomerAddressCountry.ts +22 -0
  71. package/src/__api/models/CustomerAddressCountryInput.ts +23 -0
  72. package/src/__api/models/CustomerAddressDistrict.ts +18 -0
  73. package/src/__api/models/CustomerAddressDistrictInput.ts +19 -0
  74. package/src/__api/models/CustomerAddressState.ts +17 -0
  75. package/src/__api/models/CustomerAddressStateInput.ts +19 -0
  76. package/src/__api/models/CustomerAttribute.ts +36 -0
  77. package/src/__api/models/CustomerAttributeOption.ts +17 -0
  78. package/src/__api/models/CustomerAttributeOptionTranslation.ts +17 -0
  79. package/src/__api/models/CustomerAttributeSalesChannel.ts +28 -0
  80. package/src/__api/models/CustomerAttributeTranslation.ts +24 -0
  81. package/src/__api/models/CustomerAttributeValue.ts +18 -0
  82. package/src/__api/models/CustomerAttributeValueInput.ts +19 -0
  83. package/src/__api/models/CustomerCheckResponse.ts +13 -0
  84. package/src/__api/models/CustomerFavoriteProduct.ts +19 -0
  85. package/src/__api/models/CustomerLoginResponse.ts +18 -0
  86. package/src/__api/models/CustomerRefreshTokenResponse.ts +17 -0
  87. package/src/__api/models/CustomerReview.ts +43 -0
  88. package/src/__api/models/CustomerReviewSFPaginationResponse.ts +26 -0
  89. package/src/__api/models/CustomerReviewSummary.ts +25 -0
  90. package/src/__api/models/CustomerReviewSummaryPaginationResponse.ts +26 -0
  91. package/src/__api/models/CustomerReviewSummaryStar.ts +17 -0
  92. package/src/__api/models/DateFilterInput.ts +27 -0
  93. package/src/__api/models/District.ts +29 -0
  94. package/src/__api/models/FixedDiscount.ts +28 -0
  95. package/src/__api/models/GetAvailableStockLocation.ts +25 -0
  96. package/src/__api/models/GetAvailableStockLocationAddress.ts +36 -0
  97. package/src/__api/models/GetAvailableStockLocationAddressCity.ts +19 -0
  98. package/src/__api/models/GetAvailableStockLocationsResponse.ts +18 -0
  99. package/src/__api/models/GetOrderLineFile.ts +13 -0
  100. package/src/__api/models/GetProductCampaignsInput.ts +18 -0
  101. package/src/__api/models/GetProductCampaignsResponse.ts +20 -0
  102. package/src/__api/models/GetProductOptionFileUrl.ts +18 -0
  103. package/src/__api/models/GetVariantStockLocation.ts +21 -0
  104. package/src/__api/models/GetVariantStockLocationListResponse.ts +18 -0
  105. package/src/__api/models/GetY.ts +26 -0
  106. package/src/__api/models/HTMLMetaData.ts +44 -0
  107. package/src/__api/models/HTMLMetaDataOverride.ts +21 -0
  108. package/src/__api/models/HTMLMetaDataTargetTypeEnumFilter.ts +22 -0
  109. package/src/__api/models/HTMLMetaDataTranslation.ts +18 -0
  110. package/src/__api/models/Invoice.ts +26 -0
  111. package/src/__api/models/ListCustomerReviewInput.ts +14 -0
  112. package/src/__api/models/LocationTranslations.ts +15 -0
  113. package/src/__api/models/MasterPassTokenResponse.ts +18 -0
  114. package/src/__api/models/MerchantAddress.ts +48 -0
  115. package/src/__api/models/MerchantAddressCity.ts +17 -0
  116. package/src/__api/models/MerchantAddressCountry.ts +18 -0
  117. package/src/__api/models/MerchantAddressDistrict.ts +18 -0
  118. package/src/__api/models/MerchantAddressState.ts +17 -0
  119. package/src/__api/models/MerchantSettings.ts +32 -0
  120. package/src/__api/models/MerchantSettingsCurrencyFormat.ts +27 -0
  121. package/src/__api/models/OrderAddress.ts +53 -0
  122. package/src/__api/models/OrderAddressCity.ts +17 -0
  123. package/src/__api/models/OrderAddressCityInput.ts +17 -0
  124. package/src/__api/models/OrderAddressCountry.ts +21 -0
  125. package/src/__api/models/OrderAddressCountryInput.ts +22 -0
  126. package/src/__api/models/OrderAddressDistrict.ts +17 -0
  127. package/src/__api/models/OrderAddressDistrictInput.ts +19 -0
  128. package/src/__api/models/OrderAddressInput.ts +53 -0
  129. package/src/__api/models/OrderAddressState.ts +17 -0
  130. package/src/__api/models/OrderAddressStateInput.ts +18 -0
  131. package/src/__api/models/OrderAdjustment.ts +35 -0
  132. package/src/__api/models/OrderAdjustmentAppliedOrderLine.ts +24 -0
  133. package/src/__api/models/OrderAdjustmentInput.ts +26 -0
  134. package/src/__api/models/OrderCurrencyRate.ts +17 -0
  135. package/src/__api/models/OrderCustomer.ts +34 -0
  136. package/src/__api/models/OrderGiftPackageLine.ts +18 -0
  137. package/src/__api/models/OrderLineDiscount.ts +28 -0
  138. package/src/__api/models/OrderLineItem.ts +59 -0
  139. package/src/__api/models/OrderLineOption.ts +25 -0
  140. package/src/__api/models/OrderLineOptionValue.ts +18 -0
  141. package/src/__api/models/OrderLineVariant.ts +56 -0
  142. package/src/__api/models/OrderLineVariantBrand.ts +15 -0
  143. package/src/__api/models/OrderLineVariantCategory.ts +21 -0
  144. package/src/__api/models/OrderLineVariantCategoryPath.ts +17 -0
  145. package/src/__api/models/OrderLineVariantPrice.ts +27 -0
  146. package/src/__api/models/OrderLineVariantVariantValues.ts +23 -0
  147. package/src/__api/models/OrderPackage.ts +33 -0
  148. package/src/__api/models/OrderPaymentMethod.ts +22 -0
  149. package/src/__api/models/OrderRefundOrderLineInput.ts +17 -0
  150. package/src/__api/models/OrderRefundRequestInput.ts +21 -0
  151. package/src/__api/models/OrderRefundSettings.ts +28 -0
  152. package/src/__api/models/OrderShippingLine.ts +34 -0
  153. package/src/__api/models/OrderStorefrontRouting.ts +29 -0
  154. package/src/__api/models/OrderStorefrontRoutingDynamicCurrencySettings.ts +19 -0
  155. package/src/__api/models/OrderTaxLine.ts +15 -0
  156. package/src/__api/models/PaginationInput.ts +17 -0
  157. package/src/__api/models/PaymentGateway.ts +61 -0
  158. package/src/__api/models/PaymentGatewayPaymentMethod.ts +17 -0
  159. package/src/__api/models/PaymentGatewaySettings.ts +21 -0
  160. package/src/__api/models/PaymentGatewayTranslation.ts +19 -0
  161. package/src/__api/models/PaymentMethodDetailInput.ts +26 -0
  162. package/src/__api/models/Product.ts +69 -0
  163. package/src/__api/models/ProductAttribute.ts +36 -0
  164. package/src/__api/models/ProductAttributeOption.ts +17 -0
  165. package/src/__api/models/ProductAttributeOptionTranslation.ts +17 -0
  166. package/src/__api/models/ProductAttributeTableCellData.ts +17 -0
  167. package/src/__api/models/ProductAttributeTableTemplate.ts +22 -0
  168. package/src/__api/models/ProductAttributeTranslation.ts +24 -0
  169. package/src/__api/models/ProductAttributeValue.ts +19 -0
  170. package/src/__api/models/ProductBackInStockRemind.ts +25 -0
  171. package/src/__api/models/ProductBackInStockRemindInput.ts +19 -0
  172. package/src/__api/models/ProductBrand.ts +33 -0
  173. package/src/__api/models/ProductBrandPaginationResponse.ts +24 -0
  174. package/src/__api/models/ProductBrandTranslation.ts +18 -0
  175. package/src/__api/models/ProductFacetCount.ts +18 -0
  176. package/src/__api/models/ProductFacetCountValue.ts +16 -0
  177. package/src/__api/models/ProductFilterData.ts +21 -0
  178. package/src/__api/models/ProductFilterDataFilter.ts +49 -0
  179. package/src/__api/models/ProductFilterSettings.ts +25 -0
  180. package/src/__api/models/ProductImage.ts +20 -0
  181. package/src/__api/models/ProductItem.ts +18 -0
  182. package/src/__api/models/ProductItemInput.ts +18 -0
  183. package/src/__api/models/ProductLastViewed.ts +21 -0
  184. package/src/__api/models/ProductLastViewedInput.ts +22 -0
  185. package/src/__api/models/ProductOption.ts +62 -0
  186. package/src/__api/models/ProductOptionDateSettings.ts +29 -0
  187. package/src/__api/models/ProductOptionFileSettings.ts +25 -0
  188. package/src/__api/models/ProductOptionSelectSettings.ts +31 -0
  189. package/src/__api/models/ProductOptionSelectValue.ts +33 -0
  190. package/src/__api/models/ProductOptionSelectValueOtherPrice.ts +17 -0
  191. package/src/__api/models/ProductOptionSelectValueTranslations.ts +17 -0
  192. package/src/__api/models/ProductOptionSet.ts +26 -0
  193. package/src/__api/models/ProductOptionSetTranslations.ts +20 -0
  194. package/src/__api/models/ProductOptionTextSettings.ts +17 -0
  195. package/src/__api/models/ProductOptionTranslations.ts +24 -0
  196. package/src/__api/models/ProductPaginationResponse.ts +24 -0
  197. package/src/__api/models/ProductPrice.ts +27 -0
  198. package/src/__api/models/ProductSearchResponse.ts +31 -0
  199. package/src/__api/models/ProductStockLocation.ts +22 -0
  200. package/src/__api/models/ProductTagTranslation.ts +17 -0
  201. package/src/__api/models/ProductTranslation.ts +17 -0
  202. package/src/__api/models/ProductVariantType.ts +17 -0
  203. package/src/__api/models/Raffle.ts +49 -0
  204. package/src/__api/models/RaffleDateRangeField.ts +15 -0
  205. package/src/__api/models/RaffleMetadata.ts +32 -0
  206. package/src/__api/models/RaffleMetadataTargetTypeEnumFilter.ts +22 -0
  207. package/src/__api/models/RafflePaginationResponse.ts +23 -0
  208. package/src/__api/models/RaffleParticipants.ts +52 -0
  209. package/src/__api/models/RaffleParticipantsInput.ts +32 -0
  210. package/src/__api/models/RaffleParticipantsUpdateInput.ts +24 -0
  211. package/src/__api/models/RaffleVariantInformation.ts +16 -0
  212. package/src/__api/models/RetrieveInstallmentInfoInput.ts +19 -0
  213. package/src/__api/models/RetrieveInstallmentInfoResponse.ts +36 -0
  214. package/src/__api/models/SaveCartInput.ts +50 -0
  215. package/src/__api/models/SaveCheckoutInput.ts +56 -0
  216. package/src/__api/models/SaveItemToCartInput.ts +35 -0
  217. package/src/__api/models/SaveMyCustomerAddressInput.ts +63 -0
  218. package/src/__api/models/SaveMyCustomerInput.ts +30 -0
  219. package/src/__api/models/SearchCategory.ts +27 -0
  220. package/src/__api/models/SearchCategoryPath.ts +22 -0
  221. package/src/__api/models/SearchDynamicCurrencySettings.ts +17 -0
  222. package/src/__api/models/SearchHTMLMetaData.ts +36 -0
  223. package/src/__api/models/SearchHTMLMetaDataOverride.ts +23 -0
  224. package/src/__api/models/SearchInput.ts +64 -0
  225. package/src/__api/models/SearchInputFacetListInput.ts +20 -0
  226. package/src/__api/models/SearchInputFilterListInput.ts +27 -0
  227. package/src/__api/models/SearchInputOrderByInput.ts +17 -0
  228. package/src/__api/models/SearchProduct.ts +72 -0
  229. package/src/__api/models/SearchProductAttribute.ts +28 -0
  230. package/src/__api/models/SearchProductAttributeOption.ts +17 -0
  231. package/src/__api/models/SearchProductAttributeTableCellData.ts +17 -0
  232. package/src/__api/models/SearchProductAttributeTableTemplate.ts +22 -0
  233. package/src/__api/models/SearchProductAttributeValue.ts +27 -0
  234. package/src/__api/models/SearchProductBrand.ts +22 -0
  235. package/src/__api/models/SearchProductImage.ts +21 -0
  236. package/src/__api/models/SearchProductPrice.ts +27 -0
  237. package/src/__api/models/SearchProductStockLocation.ts +17 -0
  238. package/src/__api/models/SearchProductTag.ts +20 -0
  239. package/src/__api/models/SearchProductVariantType.ts +21 -0
  240. package/src/__api/models/SearchVariant.ts +58 -0
  241. package/src/__api/models/SearchVariantType.ts +27 -0
  242. package/src/__api/models/SearchVariantValue.ts +19 -0
  243. package/src/__api/models/SearchVariationValueRelation.ts +17 -0
  244. package/src/__api/models/SocialLoginSettings.ts +18 -0
  245. package/src/__api/models/State.ts +20 -0
  246. package/src/__api/models/StockLocation.ts +36 -0
  247. package/src/__api/models/StockLocationAddress.ts +35 -0
  248. package/src/__api/models/StockLocationAddressCity.ts +18 -0
  249. package/src/__api/models/StockLocationAddressCountry.ts +19 -0
  250. package/src/__api/models/StockLocationAddressDistrict.ts +19 -0
  251. package/src/__api/models/StockLocationAddressState.ts +19 -0
  252. package/src/__api/models/Storefront.ts +66 -0
  253. package/src/__api/models/StorefrontDomain.ts +25 -0
  254. package/src/__api/models/StorefrontDynamicCurrencySettings.ts +17 -0
  255. package/src/__api/models/StorefrontLocalization.ts +21 -0
  256. package/src/__api/models/StorefrontOrder.ts +116 -0
  257. package/src/__api/models/StorefrontRouting.ts +29 -0
  258. package/src/__api/models/StorefrontTheme.ts +25 -0
  259. package/src/__api/models/StorefrontTransaction.ts +53 -0
  260. package/src/__api/models/StringFilterInput.ts +21 -0
  261. package/src/__api/models/Town.ts +21 -0
  262. package/src/__api/models/TrackingInfo.ts +24 -0
  263. package/src/__api/models/TransactionError.ts +17 -0
  264. package/src/__api/models/TransactionInstallmentPrice.ts +36 -0
  265. package/src/__api/models/TransactionPaymentMethodDetail.ts +39 -0
  266. package/src/__api/models/TransactionResponse.ts +26 -0
  267. package/src/__api/models/UpdateCartCampaignOfferInput.ts +25 -0
  268. package/src/__api/models/Variant.ts +58 -0
  269. package/src/__api/models/VariantStock.ts +15 -0
  270. package/src/__api/models/VariantType.ts +29 -0
  271. package/src/__api/models/VariantTypeTranslation.ts +21 -0
  272. package/src/__api/models/VariantValue.ts +20 -0
  273. package/src/__api/models/VariantValueRelation.ts +15 -0
  274. package/src/__api/models/VariantValueTranslation.ts +16 -0
  275. package/src/__api/models/_base.ts +26 -0
  276. package/src/__api/mutations/activateCustomer.ts +38 -0
  277. package/src/__api/mutations/addCouponCodeToCheckout.ts +259 -0
  278. package/src/__api/mutations/addItemToCart.ts +284 -0
  279. package/src/__api/mutations/createCustomerEmailSubscription.ts +111 -0
  280. package/src/__api/mutations/createCustomerReview.ts +66 -0
  281. package/src/__api/mutations/createOrderRefundRequest.ts +240 -0
  282. package/src/__api/mutations/createSaleTransactionWithCart.ts +62 -0
  283. package/src/__api/mutations/createSaleTransactionWithCheckout.ts +62 -0
  284. package/src/__api/mutations/createStripePaymentIntent.ts +57 -0
  285. package/src/__api/mutations/customerForgotPassword.ts +41 -0
  286. package/src/__api/mutations/customerLogin.ts +113 -0
  287. package/src/__api/mutations/customerRecoverPassword.ts +44 -0
  288. package/src/__api/mutations/customerRefreshToken.ts +52 -0
  289. package/src/__api/mutations/deleteRaffleParticipantsList.ts +38 -0
  290. package/src/__api/mutations/getOrderLineFile.ts +39 -0
  291. package/src/__api/mutations/registerCustomer.ts +131 -0
  292. package/src/__api/mutations/retrieveInstallmentInfo.ts +65 -0
  293. package/src/__api/mutations/saveCart.ts +284 -0
  294. package/src/__api/mutations/saveCartCouponCode.ts +287 -0
  295. package/src/__api/mutations/saveCheckout.ts +256 -0
  296. package/src/__api/mutations/saveFavoriteProduct.ts +41 -0
  297. package/src/__api/mutations/saveItemToCart.ts +136 -0
  298. package/src/__api/mutations/saveLastViewedProducts.ts +62 -0
  299. package/src/__api/mutations/saveMyCustomer.ts +108 -0
  300. package/src/__api/mutations/saveProductBackInStockRemind.ts +63 -0
  301. package/src/__api/mutations/saveRaffleParticipant.ts +69 -0
  302. package/src/__api/mutations/sendContactFormToMerchant.ts +53 -0
  303. package/src/__api/mutations/updateCartCampaignOffer.ts +284 -0
  304. package/src/__api/mutations/updateRaffleParticipant.ts +72 -0
  305. package/src/__api/queries/checkCustomerEmail.ts +54 -0
  306. package/src/__api/queries/checkStocks.ts +53 -0
  307. package/src/__api/queries/customerSocialLogin.ts +113 -0
  308. package/src/__api/queries/getAvailableShippingCountries.ts +41 -0
  309. package/src/__api/queries/getAvailableStockLocations.ts +75 -0
  310. package/src/__api/queries/getCart.ts +142 -0
  311. package/src/__api/queries/getCartById.ts +287 -0
  312. package/src/__api/queries/getCheckoutByCartId.ts +256 -0
  313. package/src/__api/queries/getCheckoutById.ts +256 -0
  314. package/src/__api/queries/getCurrencyRate.ts +56 -0
  315. package/src/__api/queries/getCustomerOrders.ts +237 -0
  316. package/src/__api/queries/getLastViewedProducts.ts +62 -0
  317. package/src/__api/queries/getMasterPassRequestToken.ts +62 -0
  318. package/src/__api/queries/getMyCountry.ts +26 -0
  319. package/src/__api/queries/getMyCustomer.ts +95 -0
  320. package/src/__api/queries/getOrder.ts +237 -0
  321. package/src/__api/queries/getOrderByEmail.ts +240 -0
  322. package/src/__api/queries/getProductCampaigns.ts +92 -0
  323. package/src/__api/queries/getProductFilterData.ts +211 -0
  324. package/src/__api/queries/getProductOptionFileUrl.ts +59 -0
  325. package/src/__api/queries/getRaffleParticipants.ts +59 -0
  326. package/src/__api/queries/getRafflesByCustomerId.ts +74 -0
  327. package/src/__api/queries/getRelatedProducts.ts +60 -0
  328. package/src/__api/queries/getStorefront.ts +103 -0
  329. package/src/__api/queries/getStorefrontSettings.ts +26 -0
  330. package/src/__api/queries/getVariantStockLocations.ts +74 -0
  331. package/src/__api/queries/isFavoriteProduct.ts +38 -0
  332. package/src/__api/queries/listBlog.ts +136 -0
  333. package/src/__api/queries/listBlogCategory.ts +92 -0
  334. package/src/__api/queries/listBlogMetadata.ts +90 -0
  335. package/src/__api/queries/listCampaignOffer.ts +76 -0
  336. package/src/__api/queries/listCategory.ts +151 -0
  337. package/src/__api/queries/listCheckoutSettings.ts +75 -0
  338. package/src/__api/queries/listCity.ts +74 -0
  339. package/src/__api/queries/listCountry.ts +80 -0
  340. package/src/__api/queries/listCustomerAttribute.ts +62 -0
  341. package/src/__api/queries/listCustomerReviewSummary.ts +71 -0
  342. package/src/__api/queries/listCustomerReviews.ts +90 -0
  343. package/src/__api/queries/listDistrict.ts +77 -0
  344. package/src/__api/queries/listFavoriteProducts.ts +44 -0
  345. package/src/__api/queries/listHTMLMetaData.ts +88 -0
  346. package/src/__api/queries/listMerchantSettings.ts +90 -0
  347. package/src/__api/queries/listOrderRefundSettings.ts +73 -0
  348. package/src/__api/queries/listOrderTransactions.ts +89 -0
  349. package/src/__api/queries/listPaymentGateway.ts +85 -0
  350. package/src/__api/queries/listProduct.ts +156 -0
  351. package/src/__api/queries/listProductAttribute.ts +81 -0
  352. package/src/__api/queries/listProductBackInStockRemind.ts +79 -0
  353. package/src/__api/queries/listProductBrand.ts +110 -0
  354. package/src/__api/queries/listProductOptionSet.ts +105 -0
  355. package/src/__api/queries/listProductStockLocation.ts +62 -0
  356. package/src/__api/queries/listRaffle.ts +108 -0
  357. package/src/__api/queries/listRaffleMetadata.ts +83 -0
  358. package/src/__api/queries/listState.ts +67 -0
  359. package/src/__api/queries/listStockLocation.ts +76 -0
  360. package/src/__api/queries/listTown.ts +67 -0
  361. package/src/__api/queries/listVariantType.ts +74 -0
  362. package/src/__api/queries/searchProducts.ts +171 -0
  363. package/src/__api/types/index.ts +3047 -0
  364. package/src/api/blog/index.ts +70 -0
  365. package/src/api/brand/index.ts +27 -0
  366. package/src/api/cart/index.ts +113 -0
  367. package/src/api/category/index.ts +25 -0
  368. package/src/api/checkout/index.ts +121 -0
  369. package/src/api/customer/index.ts +380 -0
  370. package/src/api/file-upload/index.ts +38 -0
  371. package/src/api/html-meta-data/index.ts +25 -0
  372. package/src/api/location/index.ts +64 -0
  373. package/src/api/masterpass/index.ts +12 -0
  374. package/src/api/merchant/index.ts +24 -0
  375. package/src/api/product/index.ts +354 -0
  376. package/src/api/raffle/index.ts +80 -0
  377. package/src/api/storefront/index.ts +30 -0
  378. package/src/index.ts +68 -0
  379. package/build/__api/models/AbandonedCartFlow.d.ts +0 -19
  380. package/build/__api/models/AbandonedCartFlowCustomerFilter.d.ts +0 -10
  381. package/build/__api/models/AddItemToCartInput.d.ts +0 -16
  382. package/build/__api/models/AdditionalPrice.d.ts +0 -13
  383. package/build/__api/models/ApplicableProductFilterValue.d.ts +0 -13
  384. package/build/__api/models/AppliedProduct.d.ts +0 -10
  385. package/build/__api/models/AppliedProductInput.d.ts +0 -10
  386. package/build/__api/models/AvailableShippingMethod.d.ts +0 -14
  387. package/build/__api/models/Blog.d.ts +0 -28
  388. package/build/__api/models/BlogCategory.d.ts +0 -13
  389. package/build/__api/models/BlogCategoryPaginationResponse.d.ts +0 -14
  390. package/build/__api/models/BlogContent.d.ts +0 -12
  391. package/build/__api/models/BlogMetadata.d.ts +0 -17
  392. package/build/__api/models/BlogMetadataPaginationResponse.d.ts +0 -14
  393. package/build/__api/models/BlogMetadataTargetTypeEnumFilter.d.ts +0 -13
  394. package/build/__api/models/BlogPaginationResponse.d.ts +0 -14
  395. package/build/__api/models/BlogTag.d.ts +0 -10
  396. package/build/__api/models/BlogWriter.d.ts +0 -10
  397. package/build/__api/models/BooleanFilterInput.d.ts +0 -9
  398. package/build/__api/models/BuyX.d.ts +0 -12
  399. package/build/__api/models/BuyXThenGetY.d.ts +0 -13
  400. package/build/__api/models/Campaign.d.ts +0 -30
  401. package/build/__api/models/CampaignDateRangeField.d.ts +0 -10
  402. package/build/__api/models/CampaignFilter.d.ts +0 -11
  403. package/build/__api/models/CampaignMinMaxRangeField.d.ts +0 -10
  404. package/build/__api/models/CampaignOffer.d.ts +0 -22
  405. package/build/__api/models/CampaignOfferProduct.d.ts +0 -22
  406. package/build/__api/models/CampaignOfferProductTranslation.d.ts +0 -11
  407. package/build/__api/models/CampaignOfferTriggerSettings.d.ts +0 -11
  408. package/build/__api/models/Cart.d.ts +0 -32
  409. package/build/__api/models/CartCampaignOffer.d.ts +0 -17
  410. package/build/__api/models/CartLineItemInput.d.ts +0 -12
  411. package/build/__api/models/CartLineOptionInput.d.ts +0 -11
  412. package/build/__api/models/CartLineVariantInput.d.ts +0 -10
  413. package/build/__api/models/CartStorefrontRouting.d.ts +0 -15
  414. package/build/__api/models/CartStorefrontRoutingDynamicCurrencySettings.d.ts +0 -11
  415. package/build/__api/models/CartV2.d.ts +0 -71
  416. package/build/__api/models/CartV2CampaignOffer.d.ts +0 -19
  417. package/build/__api/models/Category.d.ts +0 -27
  418. package/build/__api/models/CategoryCondition.d.ts +0 -11
  419. package/build/__api/models/CategoryFilterInput.d.ts +0 -11
  420. package/build/__api/models/CategoryPaginationResponse.d.ts +0 -14
  421. package/build/__api/models/CategoryPathFilterInput.d.ts +0 -9
  422. package/build/__api/models/CategoryPathItem.d.ts +0 -17
  423. package/build/__api/models/CategoryTranslation.d.ts +0 -11
  424. package/build/__api/models/CheckStocksLineInput.d.ts +0 -11
  425. package/build/__api/models/CheckStocksLineInput.js +0 -1
  426. package/build/__api/models/CheckStocksLineResponse.d.ts +0 -11
  427. package/build/__api/models/CheckStocksResponse.d.ts +0 -10
  428. package/build/__api/models/Checkout.d.ts +0 -44
  429. package/build/__api/models/CheckoutCustomer.d.ts +0 -19
  430. package/build/__api/models/CheckoutCustomerInput.d.ts +0 -13
  431. package/build/__api/models/CheckoutCustomerInput.js +0 -1
  432. package/build/__api/models/CheckoutOption.d.ts +0 -10
  433. package/build/__api/models/CheckoutSettings.d.ts +0 -25
  434. package/build/__api/models/CheckoutSettingsPrice.d.ts +0 -11
  435. package/build/__api/models/City.d.ts +0 -16
  436. package/build/__api/models/Country.d.ts +0 -24
  437. package/build/__api/models/CreateCustomerEmailSubscriptionInput.d.ts +0 -13
  438. package/build/__api/models/CreateCustomerReviewInput.d.ts +0 -20
  439. package/build/__api/models/CreateKlarnaTokenResponse.d.ts +0 -12
  440. package/build/__api/models/CreateSaleTransactionMasterPassPaymentMethodDetail.d.ts +0 -10
  441. package/build/__api/models/CreateSaleTransactionWithCartInput.d.ts +0 -14
  442. package/build/__api/models/CreateSaleTransactionWithCheckoutInput.d.ts +0 -14
  443. package/build/__api/models/CreateStripePaymentIntentResponse.d.ts +0 -12
  444. package/build/__api/models/CurrencyRate.d.ts +0 -15
  445. package/build/__api/models/CurrencyRateData.d.ts +0 -10
  446. package/build/__api/models/Customer.d.ts +0 -34
  447. package/build/__api/models/CustomerAddress.d.ts +0 -31
  448. package/build/__api/models/CustomerAddressCity.d.ts +0 -11
  449. package/build/__api/models/CustomerAddressCityInput.d.ts +0 -11
  450. package/build/__api/models/CustomerAddressCityInput.js +0 -1
  451. package/build/__api/models/CustomerAddressCountry.d.ts +0 -13
  452. package/build/__api/models/CustomerAddressCountryInput.d.ts +0 -13
  453. package/build/__api/models/CustomerAddressCountryInput.js +0 -1
  454. package/build/__api/models/CustomerAddressDistrict.d.ts +0 -11
  455. package/build/__api/models/CustomerAddressDistrictInput.d.ts +0 -11
  456. package/build/__api/models/CustomerAddressDistrictInput.js +0 -1
  457. package/build/__api/models/CustomerAddressState.d.ts +0 -11
  458. package/build/__api/models/CustomerAddressStateInput.d.ts +0 -11
  459. package/build/__api/models/CustomerAddressStateInput.js +0 -1
  460. package/build/__api/models/CustomerAttribute.d.ts +0 -19
  461. package/build/__api/models/CustomerAttributeOption.d.ts +0 -10
  462. package/build/__api/models/CustomerAttributeOptionTranslation.d.ts +0 -10
  463. package/build/__api/models/CustomerAttributeSalesChannel.d.ts +0 -13
  464. package/build/__api/models/CustomerAttributeTranslation.d.ts +0 -13
  465. package/build/__api/models/CustomerAttributeValue.d.ts +0 -11
  466. package/build/__api/models/CustomerAttributeValueInput.d.ts +0 -11
  467. package/build/__api/models/CustomerAttributeValueInput.js +0 -1
  468. package/build/__api/models/CustomerCheckResponse.d.ts +0 -9
  469. package/build/__api/models/CustomerFavoriteProduct.d.ts +0 -11
  470. package/build/__api/models/CustomerLoginResponse.d.ts +0 -12
  471. package/build/__api/models/CustomerRefreshTokenResponse.d.ts +0 -10
  472. package/build/__api/models/CustomerReview.d.ts +0 -24
  473. package/build/__api/models/CustomerReviewSFPaginationResponse.d.ts +0 -14
  474. package/build/__api/models/CustomerReviewSummary.d.ts +0 -14
  475. package/build/__api/models/CustomerReviewSummaryPaginationResponse.d.ts +0 -14
  476. package/build/__api/models/CustomerReviewSummaryStar.d.ts +0 -10
  477. package/build/__api/models/CustomerSettings.d.ts +0 -13
  478. package/build/__api/models/DateFilterInput.d.ts +0 -16
  479. package/build/__api/models/District.d.ts +0 -16
  480. package/build/__api/models/FixedDiscount.d.ts +0 -14
  481. package/build/__api/models/GetAvailableStockLocation.d.ts +0 -14
  482. package/build/__api/models/GetAvailableStockLocationAddress.d.ts +0 -16
  483. package/build/__api/models/GetAvailableStockLocationAddressCity.d.ts +0 -11
  484. package/build/__api/models/GetAvailableStockLocationsResponse.d.ts +0 -10
  485. package/build/__api/models/GetOrderLineFile.d.ts +0 -9
  486. package/build/__api/models/GetProductCampaignsInput.d.ts +0 -11
  487. package/build/__api/models/GetProductCampaignsResponse.d.ts +0 -11
  488. package/build/__api/models/GetProductOptionFileUrl.d.ts +0 -11
  489. package/build/__api/models/GetVariantStockLocation.d.ts +0 -12
  490. package/build/__api/models/GetVariantStockLocationListResponse.d.ts +0 -10
  491. package/build/__api/models/GetY.d.ts +0 -13
  492. package/build/__api/models/HTMLMetaData.d.ts +0 -22
  493. package/build/__api/models/HTMLMetaDataOverride.d.ts +0 -13
  494. package/build/__api/models/HTMLMetaDataTargetTypeEnumFilter.d.ts +0 -13
  495. package/build/__api/models/HTMLMetaDataTranslation.d.ts +0 -11
  496. package/build/__api/models/Invoice.d.ts +0 -16
  497. package/build/__api/models/ListCustomerReviewInput.d.ts +0 -9
  498. package/build/__api/models/LocationTranslations.d.ts +0 -11
  499. package/build/__api/models/MasterPassTokenResponse.d.ts +0 -11
  500. package/build/__api/models/MerchantAddress.d.ts +0 -27
  501. package/build/__api/models/MerchantAddressCity.d.ts +0 -11
  502. package/build/__api/models/MerchantAddressCountry.d.ts +0 -11
  503. package/build/__api/models/MerchantAddressDistrict.d.ts +0 -11
  504. package/build/__api/models/MerchantAddressState.d.ts +0 -11
  505. package/build/__api/models/MerchantSettings.d.ts +0 -17
  506. package/build/__api/models/MerchantSettingsCurrencyFormat.d.ts +0 -15
  507. package/build/__api/models/OrderAddress.d.ts +0 -28
  508. package/build/__api/models/OrderAddressCity.d.ts +0 -11
  509. package/build/__api/models/OrderAddressCityInput.d.ts +0 -11
  510. package/build/__api/models/OrderAddressCityInput.js +0 -1
  511. package/build/__api/models/OrderAddressCountry.d.ts +0 -13
  512. package/build/__api/models/OrderAddressCountryInput.d.ts +0 -13
  513. package/build/__api/models/OrderAddressCountryInput.js +0 -1
  514. package/build/__api/models/OrderAddressDistrict.d.ts +0 -11
  515. package/build/__api/models/OrderAddressDistrictInput.d.ts +0 -11
  516. package/build/__api/models/OrderAddressDistrictInput.js +0 -1
  517. package/build/__api/models/OrderAddressInput.d.ts +0 -28
  518. package/build/__api/models/OrderAddressInput.js +0 -1
  519. package/build/__api/models/OrderAddressState.d.ts +0 -11
  520. package/build/__api/models/OrderAddressStateInput.d.ts +0 -11
  521. package/build/__api/models/OrderAddressStateInput.js +0 -1
  522. package/build/__api/models/OrderAdjustment.d.ts +0 -19
  523. package/build/__api/models/OrderAdjustmentAppliedOrderLine.d.ts +0 -12
  524. package/build/__api/models/OrderAdjustmentInput.d.ts +0 -16
  525. package/build/__api/models/OrderAdjustmentInput.js +0 -1
  526. package/build/__api/models/OrderCurrencyRate.d.ts +0 -11
  527. package/build/__api/models/OrderCustomer.d.ts +0 -16
  528. package/build/__api/models/OrderGiftPackageLine.d.ts +0 -10
  529. package/build/__api/models/OrderLineBaseUnit.d.ts +0 -13
  530. package/build/__api/models/OrderLineDiscount.d.ts +0 -15
  531. package/build/__api/models/OrderLineItem.d.ts +0 -29
  532. package/build/__api/models/OrderLineOption.d.ts +0 -15
  533. package/build/__api/models/OrderLineOptionValue.d.ts +0 -11
  534. package/build/__api/models/OrderLineVariant.d.ts +0 -31
  535. package/build/__api/models/OrderLineVariantBrand.d.ts +0 -10
  536. package/build/__api/models/OrderLineVariantCategory.d.ts +0 -12
  537. package/build/__api/models/OrderLineVariantCategoryPath.d.ts +0 -10
  538. package/build/__api/models/OrderLineVariantPrice.d.ts +0 -15
  539. package/build/__api/models/OrderLineVariantUnit.d.ts +0 -11
  540. package/build/__api/models/OrderLineVariantUnitType.d.ts +0 -10
  541. package/build/__api/models/OrderLineVariantVariantValues.d.ts +0 -13
  542. package/build/__api/models/OrderPackage.d.ts +0 -18
  543. package/build/__api/models/OrderPaymentMethod.d.ts +0 -14
  544. package/build/__api/models/OrderRefundOrderLineInput.d.ts +0 -10
  545. package/build/__api/models/OrderRefundRequestInput.d.ts +0 -12
  546. package/build/__api/models/OrderRefundSettings.d.ts +0 -14
  547. package/build/__api/models/OrderSessionInfo.d.ts +0 -25
  548. package/build/__api/models/OrderSessionInfoTrafficSource.d.ts +0 -11
  549. package/build/__api/models/OrderSessionUTM.d.ts +0 -13
  550. package/build/__api/models/OrderSessionUserAgent.d.ts +0 -12
  551. package/build/__api/models/OrderShippingLine.d.ts +0 -17
  552. package/build/__api/models/OrderStorefrontRouting.d.ts +0 -15
  553. package/build/__api/models/OrderStorefrontRoutingDynamicCurrencySettings.d.ts +0 -10
  554. package/build/__api/models/OrderTaxLine.d.ts +0 -10
  555. package/build/__api/models/PaginationInput.d.ts +0 -10
  556. package/build/__api/models/PaymentGateway.d.ts +0 -30
  557. package/build/__api/models/PaymentGatewayPaymentMethod.d.ts +0 -10
  558. package/build/__api/models/PaymentGatewaySettings.d.ts +0 -13
  559. package/build/__api/models/PaymentGatewayTranslation.d.ts +0 -11
  560. package/build/__api/models/PaymentMethodDetailInput.d.ts +0 -15
  561. package/build/__api/models/Product.d.ts +0 -36
  562. package/build/__api/models/ProductAttribute.d.ts +0 -19
  563. package/build/__api/models/ProductAttributeOption.d.ts +0 -10
  564. package/build/__api/models/ProductAttributeOptionTranslation.d.ts +0 -10
  565. package/build/__api/models/ProductAttributeTableCellData.d.ts +0 -10
  566. package/build/__api/models/ProductAttributeTableTemplate.d.ts +0 -11
  567. package/build/__api/models/ProductAttributeTranslation.d.ts +0 -13
  568. package/build/__api/models/ProductAttributeValue.d.ts +0 -12
  569. package/build/__api/models/ProductBackInStockRemind.d.ts +0 -15
  570. package/build/__api/models/ProductBackInStockRemindInput.d.ts +0 -11
  571. package/build/__api/models/ProductBaseUnitModel.d.ts +0 -12
  572. package/build/__api/models/ProductBrand.d.ts +0 -19
  573. package/build/__api/models/ProductBrandPaginationResponse.d.ts +0 -14
  574. package/build/__api/models/ProductBrandTranslation.d.ts +0 -11
  575. package/build/__api/models/ProductFacetCount.d.ts +0 -11
  576. package/build/__api/models/ProductFacetCountValue.d.ts +0 -10
  577. package/build/__api/models/ProductFilterData.d.ts +0 -12
  578. package/build/__api/models/ProductFilterDataFilter.d.ts +0 -24
  579. package/build/__api/models/ProductFilterSettings.d.ts +0 -14
  580. package/build/__api/models/ProductImage.d.ts +0 -12
  581. package/build/__api/models/ProductItem.d.ts +0 -11
  582. package/build/__api/models/ProductItemInput.d.ts +0 -11
  583. package/build/__api/models/ProductLastViewed.d.ts +0 -12
  584. package/build/__api/models/ProductLastViewedInput.d.ts +0 -12
  585. package/build/__api/models/ProductOption.d.ts +0 -28
  586. package/build/__api/models/ProductOptionDateSettings.d.ts +0 -12
  587. package/build/__api/models/ProductOptionFileSettings.d.ts +0 -11
  588. package/build/__api/models/ProductOptionSelectSettings.d.ts +0 -14
  589. package/build/__api/models/ProductOptionSelectValue.d.ts +0 -16
  590. package/build/__api/models/ProductOptionSelectValueOtherPrice.d.ts +0 -11
  591. package/build/__api/models/ProductOptionSelectValueTranslations.d.ts +0 -10
  592. package/build/__api/models/ProductOptionSet.d.ts +0 -14
  593. package/build/__api/models/ProductOptionSetTranslations.d.ts +0 -11
  594. package/build/__api/models/ProductOptionTextSettings.d.ts +0 -10
  595. package/build/__api/models/ProductOptionTranslations.d.ts +0 -13
  596. package/build/__api/models/ProductPaginationResponse.d.ts +0 -14
  597. package/build/__api/models/ProductPrice.d.ts +0 -15
  598. package/build/__api/models/ProductSearchResponse.d.ts +0 -17
  599. package/build/__api/models/ProductStockLocation.d.ts +0 -13
  600. package/build/__api/models/ProductTagTranslation.d.ts +0 -11
  601. package/build/__api/models/ProductTranslation.d.ts +0 -11
  602. package/build/__api/models/ProductVariantType.d.ts +0 -11
  603. package/build/__api/models/RaffleDateRangeField.d.ts +0 -10
  604. package/build/__api/models/RaffleMetadata.d.ts +0 -17
  605. package/build/__api/models/RaffleMetadataTargetTypeEnumFilter.d.ts +0 -13
  606. package/build/__api/models/RafflePaginationResponse.d.ts +0 -14
  607. package/build/__api/models/RaffleParticipants.d.ts +0 -25
  608. package/build/__api/models/RaffleParticipantsInput.d.ts +0 -16
  609. package/build/__api/models/RaffleVariantInformation.d.ts +0 -10
  610. package/build/__api/models/RetrieveInstallmentInfoInput.d.ts +0 -11
  611. package/build/__api/models/RetrieveInstallmentInfoResponse.d.ts +0 -17
  612. package/build/__api/models/SaveCartInput.d.ts +0 -23
  613. package/build/__api/models/SaveCartInput.js +0 -1
  614. package/build/__api/models/SaveCheckoutInput.d.ts +0 -26
  615. package/build/__api/models/SaveItemToCartInput.d.ts +0 -19
  616. package/build/__api/models/SaveMyCustomerAddressInput.d.ts +0 -29
  617. package/build/__api/models/SaveMyCustomerAddressInput.js +0 -1
  618. package/build/__api/models/SaveMyCustomerInput.d.ts +0 -17
  619. package/build/__api/models/SaveMyCustomerInput.js +0 -1
  620. package/build/__api/models/SearchCategory.d.ts +0 -15
  621. package/build/__api/models/SearchCategoryPath.d.ts +0 -13
  622. package/build/__api/models/SearchDynamicCurrencySettings.d.ts +0 -10
  623. package/build/__api/models/SearchHTMLMetaData.d.ts +0 -18
  624. package/build/__api/models/SearchHTMLMetaDataOverride.d.ts +0 -13
  625. package/build/__api/models/SearchInput.d.ts +0 -32
  626. package/build/__api/models/SearchInputFacetListInput.d.ts +0 -12
  627. package/build/__api/models/SearchInputFilterListInput.d.ts +0 -14
  628. package/build/__api/models/SearchInputOrderByInput.d.ts +0 -11
  629. package/build/__api/models/SearchProduct.d.ts +0 -38
  630. package/build/__api/models/SearchProductAttribute.d.ts +0 -15
  631. package/build/__api/models/SearchProductAttributeOption.d.ts +0 -10
  632. package/build/__api/models/SearchProductAttributeTableCellData.d.ts +0 -10
  633. package/build/__api/models/SearchProductAttributeTableTemplate.d.ts +0 -11
  634. package/build/__api/models/SearchProductAttributeValue.d.ts +0 -14
  635. package/build/__api/models/SearchProductBrand.d.ts +0 -13
  636. package/build/__api/models/SearchProductImage.d.ts +0 -12
  637. package/build/__api/models/SearchProductPrice.d.ts +0 -16
  638. package/build/__api/models/SearchProductProductBaseUnit.d.ts +0 -13
  639. package/build/__api/models/SearchProductProductUnit.d.ts +0 -10
  640. package/build/__api/models/SearchProductStockLocation.d.ts +0 -10
  641. package/build/__api/models/SearchProductTag.d.ts +0 -12
  642. package/build/__api/models/SearchProductVariantType.d.ts +0 -12
  643. package/build/__api/models/SearchVariant.d.ts +0 -27
  644. package/build/__api/models/SearchVariantType.d.ts +0 -15
  645. package/build/__api/models/SearchVariantValue.d.ts +0 -12
  646. package/build/__api/models/SearchVariationValueRelation.d.ts +0 -10
  647. package/build/__api/models/SocialLoginSettings.d.ts +0 -12
  648. package/build/__api/models/State.d.ts +0 -12
  649. package/build/__api/models/StockLocation.d.ts +0 -18
  650. package/build/__api/models/StockLocationAddress.d.ts +0 -19
  651. package/build/__api/models/StockLocationAddressCity.d.ts +0 -11
  652. package/build/__api/models/StockLocationAddressCountry.d.ts +0 -11
  653. package/build/__api/models/StockLocationAddressDistrict.d.ts +0 -11
  654. package/build/__api/models/StockLocationAddressState.d.ts +0 -11
  655. package/build/__api/models/Storefront.d.ts +0 -36
  656. package/build/__api/models/StorefrontDomain.d.ts +0 -13
  657. package/build/__api/models/StorefrontDynamicCurrencySettings.d.ts +0 -11
  658. package/build/__api/models/StorefrontLocalization.d.ts +0 -12
  659. package/build/__api/models/StorefrontMetaTemplate.d.ts +0 -13
  660. package/build/__api/models/StorefrontOrder.d.ts +0 -51
  661. package/build/__api/models/StorefrontRaffle.d.ts +0 -20
  662. package/build/__api/models/StorefrontRouting.d.ts +0 -18
  663. package/build/__api/models/StorefrontTheme.d.ts +0 -15
  664. package/build/__api/models/StorefrontTransaction.d.ts +0 -28
  665. package/build/__api/models/StringFilterInput.d.ts +0 -13
  666. package/build/__api/models/SubscribeToMarketingNotificationsInput.d.ts +0 -12
  667. package/build/__api/models/Town.d.ts +0 -12
  668. package/build/__api/models/TrackingInfo.d.ts +0 -13
  669. package/build/__api/models/TransactionError.d.ts +0 -11
  670. package/build/__api/models/TransactionInstallmentPrice.d.ts +0 -13
  671. package/build/__api/models/TransactionPaymentMethodDetail.d.ts +0 -18
  672. package/build/__api/models/TransactionResponse.d.ts +0 -16
  673. package/build/__api/models/UpdateCartCampaignOfferInput.d.ts +0 -14
  674. package/build/__api/models/Variant.d.ts +0 -27
  675. package/build/__api/models/VariantStock.d.ts +0 -10
  676. package/build/__api/models/VariantType.d.ts +0 -16
  677. package/build/__api/models/VariantTypeTranslation.d.ts +0 -12
  678. package/build/__api/models/VariantUnitModel.d.ts +0 -11
  679. package/build/__api/models/VariantValue.d.ts +0 -12
  680. package/build/__api/models/VariantValueRelation.d.ts +0 -10
  681. package/build/__api/models/VariantValueTranslation.d.ts +0 -10
  682. package/build/__api/models/_base.d.ts +0 -18
  683. package/build/__api/models/_base.js +0 -1
  684. package/build/__api/mutations/activateCustomer.d.ts +0 -6
  685. package/build/__api/mutations/addCouponCodeToCheckout.d.ts +0 -231
  686. package/build/__api/mutations/addItemToCart.d.ts +0 -278
  687. package/build/__api/mutations/addItemToCart.js +0 -1
  688. package/build/__api/mutations/createCustomerEmailSubscription.d.ts +0 -69
  689. package/build/__api/mutations/createCustomerReview.d.ts +0 -27
  690. package/build/__api/mutations/createCustomerReview.js +0 -1
  691. package/build/__api/mutations/createKlarnaClientToken.d.ts +0 -13
  692. package/build/__api/mutations/createKlarnaClientToken.js +0 -1
  693. package/build/__api/mutations/createOrderRefundRequest.d.ts +0 -210
  694. package/build/__api/mutations/createOrderRefundRequest.js +0 -1
  695. package/build/__api/mutations/createSaleTransactionWithCart.d.ts +0 -17
  696. package/build/__api/mutations/createSaleTransactionWithCart.js +0 -1
  697. package/build/__api/mutations/createSaleTransactionWithCheckout.d.ts +0 -17
  698. package/build/__api/mutations/createStripePaymentIntent.d.ts +0 -13
  699. package/build/__api/mutations/createStripePaymentIntent.js +0 -1
  700. package/build/__api/mutations/customerForgotPassword.d.ts +0 -8
  701. package/build/__api/mutations/customerForgotPassword.js +0 -1
  702. package/build/__api/mutations/customerLogin.d.ts +0 -73
  703. package/build/__api/mutations/customerLogin.js +0 -1
  704. package/build/__api/mutations/customerRecoverPassword.d.ts +0 -9
  705. package/build/__api/mutations/customerRecoverPassword.js +0 -1
  706. package/build/__api/mutations/customerRefreshToken.d.ts +0 -11
  707. package/build/__api/mutations/customerRefreshToken.js +0 -1
  708. package/build/__api/mutations/deleteRaffleParticipantsList.d.ts +0 -6
  709. package/build/__api/mutations/getOrderLineFile.d.ts +0 -7
  710. package/build/__api/mutations/getOrderLineFile.js +0 -1
  711. package/build/__api/mutations/registerCustomer.d.ts +0 -79
  712. package/build/__api/mutations/registerCustomer.js +0 -1
  713. package/build/__api/mutations/retrieveInstallmentInfo.d.ts +0 -20
  714. package/build/__api/mutations/retrieveInstallmentInfo.js +0 -1
  715. package/build/__api/mutations/saveCart.d.ts +0 -278
  716. package/build/__api/mutations/saveCart.js +0 -1
  717. package/build/__api/mutations/saveCartCouponCode.d.ts +0 -279
  718. package/build/__api/mutations/saveCartCouponCode.js +0 -1
  719. package/build/__api/mutations/saveCheckout.d.ts +0 -230
  720. package/build/__api/mutations/saveFavoriteProduct.d.ts +0 -7
  721. package/build/__api/mutations/saveFavoriteProduct.js +0 -1
  722. package/build/__api/mutations/saveItemToCart.d.ts +0 -110
  723. package/build/__api/mutations/saveLastViewedProducts.d.ts +0 -20
  724. package/build/__api/mutations/saveLastViewedProducts.js +0 -1
  725. package/build/__api/mutations/saveMyCustomer.d.ts +0 -69
  726. package/build/__api/mutations/saveMyCustomer.js +0 -1
  727. package/build/__api/mutations/saveProductBackInStockRemind.d.ts +0 -19
  728. package/build/__api/mutations/saveProductBackInStockRemind.js +0 -1
  729. package/build/__api/mutations/saveRaffleParticipant.d.ts +0 -49
  730. package/build/__api/mutations/saveRaffleParticipant.js +0 -1
  731. package/build/__api/mutations/sendContactFormToMerchant.d.ts +0 -12
  732. package/build/__api/mutations/sendContactFormToMerchant.js +0 -1
  733. package/build/__api/mutations/subscribeToMarketingNotifications.d.ts +0 -7
  734. package/build/__api/mutations/subscribeToMarketingNotifications.js +0 -1
  735. package/build/__api/mutations/updateCartCampaignOffer.d.ts +0 -278
  736. package/build/__api/mutations/updateCartCampaignOffer.js +0 -1
  737. package/build/__api/queries/checkCustomerEmail.d.ts +0 -12
  738. package/build/__api/queries/checkCustomerEmail.js +0 -1
  739. package/build/__api/queries/checkStocks.d.ts +0 -13
  740. package/build/__api/queries/checkStocks.js +0 -1
  741. package/build/__api/queries/customerSocialLogin.d.ts +0 -71
  742. package/build/__api/queries/customerSocialLogin.js +0 -1
  743. package/build/__api/queries/getAvailableShippingCountries.d.ts +0 -6
  744. package/build/__api/queries/getAvailableShippingCountries.js +0 -1
  745. package/build/__api/queries/getAvailableStockLocations.d.ts +0 -28
  746. package/build/__api/queries/getAvailableStockLocations.js +0 -1
  747. package/build/__api/queries/getCart.d.ts +0 -112
  748. package/build/__api/queries/getCartById.d.ts +0 -279
  749. package/build/__api/queries/getCartById.js +0 -1
  750. package/build/__api/queries/getCheckoutByCartId.d.ts +0 -230
  751. package/build/__api/queries/getCheckoutById.d.ts +0 -230
  752. package/build/__api/queries/getCurrencyRate.d.ts +0 -19
  753. package/build/__api/queries/getCustomerOrders.d.ts +0 -210
  754. package/build/__api/queries/getCustomerOrders.js +0 -1
  755. package/build/__api/queries/getLastViewedProducts.d.ts +0 -20
  756. package/build/__api/queries/getLastViewedProducts.js +0 -1
  757. package/build/__api/queries/getMasterPassRequestToken.d.ts +0 -15
  758. package/build/__api/queries/getMasterPassRequestToken.js +0 -1
  759. package/build/__api/queries/getMyCountry.d.ts +0 -3
  760. package/build/__api/queries/getMyCountry.js +0 -1
  761. package/build/__api/queries/getMyCustomer.d.ts +0 -66
  762. package/build/__api/queries/getMyCustomer.js +0 -1
  763. package/build/__api/queries/getOrder.d.ts +0 -210
  764. package/build/__api/queries/getOrderByEmail.d.ts +0 -211
  765. package/build/__api/queries/getOrderByEmail.js +0 -1
  766. package/build/__api/queries/getProductCampaigns.d.ts +0 -47
  767. package/build/__api/queries/getProductCampaigns.js +0 -1
  768. package/build/__api/queries/getProductFilterData.d.ts +0 -167
  769. package/build/__api/queries/getProductFilterData.js +0 -1
  770. package/build/__api/queries/getProductOptionFileUrl.d.ts +0 -14
  771. package/build/__api/queries/getProductOptionFileUrl.js +0 -1
  772. package/build/__api/queries/getRelatedProducts.d.ts +0 -14
  773. package/build/__api/queries/getRelatedProducts.js +0 -1
  774. package/build/__api/queries/getStorefront.d.ts +0 -72
  775. package/build/__api/queries/getStorefrontSettings.d.ts +0 -3
  776. package/build/__api/queries/getStorefrontSettings.js +0 -1
  777. package/build/__api/queries/getVariantStockLocations.d.ts +0 -30
  778. package/build/__api/queries/isFavoriteProduct.d.ts +0 -6
  779. package/build/__api/queries/isFavoriteProduct.js +0 -1
  780. package/build/__api/queries/listBlog.d.ts +0 -76
  781. package/build/__api/queries/listBlog.js +0 -1
  782. package/build/__api/queries/listBlogCategory.d.ts +0 -35
  783. package/build/__api/queries/listBlogCategory.js +0 -1
  784. package/build/__api/queries/listBlogMetadata.d.ts +0 -30
  785. package/build/__api/queries/listBlogMetadata.js +0 -1
  786. package/build/__api/queries/listCampaignOffer.d.ts +0 -37
  787. package/build/__api/queries/listCategory.d.ts +0 -89
  788. package/build/__api/queries/listCategory.js +0 -1
  789. package/build/__api/queries/listCheckoutSettings.d.ts +0 -31
  790. package/build/__api/queries/listCheckoutSettings.js +0 -1
  791. package/build/__api/queries/listCity.d.ts +0 -25
  792. package/build/__api/queries/listCity.js +0 -1
  793. package/build/__api/queries/listCountry.d.ts +0 -35
  794. package/build/__api/queries/listCountry.js +0 -1
  795. package/build/__api/queries/listCustomerAttribute.d.ts +0 -27
  796. package/build/__api/queries/listCustomerAttribute.js +0 -1
  797. package/build/__api/queries/listCustomerReviewSummary.d.ts +0 -23
  798. package/build/__api/queries/listCustomerReviewSummary.js +0 -1
  799. package/build/__api/queries/listCustomerReviews.d.ts +0 -35
  800. package/build/__api/queries/listCustomerReviews.js +0 -1
  801. package/build/__api/queries/listCustomerSettings.d.ts +0 -18
  802. package/build/__api/queries/listDistrict.d.ts +0 -26
  803. package/build/__api/queries/listDistrict.js +0 -1
  804. package/build/__api/queries/listFavoriteProducts.d.ts +0 -12
  805. package/build/__api/queries/listFavoriteProducts.js +0 -1
  806. package/build/__api/queries/listHTMLMetaData.d.ts +0 -34
  807. package/build/__api/queries/listHTMLMetaData.js +0 -1
  808. package/build/__api/queries/listMerchantSettings.d.ts +0 -46
  809. package/build/__api/queries/listMerchantSettings.js +0 -1
  810. package/build/__api/queries/listOrderRefundSettings.d.ts +0 -21
  811. package/build/__api/queries/listOrderRefundSettings.js +0 -1
  812. package/build/__api/queries/listOrderTransactions.d.ts +0 -44
  813. package/build/__api/queries/listOrderTransactions.js +0 -1
  814. package/build/__api/queries/listPaymentGateway.d.ts +0 -41
  815. package/build/__api/queries/listPaymentGateway.js +0 -1
  816. package/build/__api/queries/listProduct.d.ts +0 -102
  817. package/build/__api/queries/listProductAttribute.d.ts +0 -33
  818. package/build/__api/queries/listProductAttribute.js +0 -1
  819. package/build/__api/queries/listProductBackInStockRemind.d.ts +0 -24
  820. package/build/__api/queries/listProductBackInStockRemind.js +0 -1
  821. package/build/__api/queries/listProductBrand.d.ts +0 -51
  822. package/build/__api/queries/listProductBrand.js +0 -1
  823. package/build/__api/queries/listProductOptionSet.d.ts +0 -61
  824. package/build/__api/queries/listProductOptionSet.js +0 -1
  825. package/build/__api/queries/listProductStockLocation.d.ts +0 -18
  826. package/build/__api/queries/listRaffleMetadata.d.ts +0 -26
  827. package/build/__api/queries/listRaffleMetadata.js +0 -1
  828. package/build/__api/queries/listRaffleParticipants.d.ts +0 -46
  829. package/build/__api/queries/listRaffleParticipants.js +0 -1
  830. package/build/__api/queries/listState.d.ts +0 -20
  831. package/build/__api/queries/listState.js +0 -1
  832. package/build/__api/queries/listStockLocation.d.ts +0 -35
  833. package/build/__api/queries/listStockLocation.js +0 -1
  834. package/build/__api/queries/listStorefrontRaffle.d.ts +0 -44
  835. package/build/__api/queries/listStorefrontRaffle.js +0 -1
  836. package/build/__api/queries/listTown.d.ts +0 -20
  837. package/build/__api/queries/listVariantType.d.ts +0 -29
  838. package/build/__api/queries/searchProducts.d.ts +0 -143
  839. package/build/__api/queries/searchProducts.js +0 -1
  840. package/build/__api/types/index.d.ts +0 -2887
  841. package/build/__api/types/index.js +0 -1
  842. package/build/api/blog/index.d.ts +0 -27
  843. package/build/api/blog/index.js +0 -1
  844. package/build/api/brand/index.d.ts +0 -11
  845. package/build/api/brand/index.js +0 -1
  846. package/build/api/cart/index.d.ts +0 -13
  847. package/build/api/cart/index.js +0 -1
  848. package/build/api/category/index.d.ts +0 -11
  849. package/build/api/category/index.js +0 -1
  850. package/build/api/checkout/index.d.ts +0 -23
  851. package/build/api/checkout/index.js +0 -1
  852. package/build/api/customer/index.d.ts +0 -130
  853. package/build/api/customer/index.js +0 -1
  854. package/build/api/file-upload/index.d.ts +0 -11
  855. package/build/api/file-upload/index.js +0 -1
  856. package/build/api/html-meta-data/index.d.ts +0 -5
  857. package/build/api/html-meta-data/index.js +0 -1
  858. package/build/api/location/index.d.ts +0 -12
  859. package/build/api/location/index.js +0 -1
  860. package/build/api/masterpass/index.d.ts +0 -3
  861. package/build/api/masterpass/index.js +0 -1
  862. package/build/api/merchant/index.d.ts +0 -5
  863. package/build/api/merchant/index.js +0 -1
  864. package/build/api/product/index.d.ts +0 -40
  865. package/build/api/product/index.js +0 -1
  866. package/build/api/raffle/index.d.ts +0 -16
  867. package/build/api/raffle/index.js +0 -1
  868. package/build/api/storefront/index.d.ts +0 -14
  869. package/build/api/storefront/index.js +0 -1
  870. package/build/ext/tslib/tslib.es6.js +0 -1
  871. package/build/index.d.ts +0 -23
  872. package/build/index.js +0 -1
  873. package/build/index2.js +0 -1
@@ -1,15 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { OrderStorefrontRoutingDynamicCurrencySettingsData } from "./OrderStorefrontRoutingDynamicCurrencySettings";
3
- export declare class OrderStorefrontRoutingData {
4
- domain: string | null;
5
- dynamicCurrencySettings: OrderStorefrontRoutingDynamicCurrencySettingsData | null;
6
- id: string;
7
- locale: string | null;
8
- path: string | null;
9
- priceListId: string | null;
10
- constructor(data?: Partial<OrderStorefrontRoutingData>);
11
- }
12
- export declare class OrderStorefrontRouting extends OrderStorefrontRoutingData {
13
- }
14
- export declare type PartialOrderStorefrontRouting = Partial<OrderStorefrontRouting>;
15
- export declare type ReadOnlyOrderStorefrontRouting = DeepReadonly<OrderStorefrontRouting>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class OrderStorefrontRoutingDynamicCurrencySettingsData {
3
- roundingFormat: string | null;
4
- targetCurrencyCode: string;
5
- constructor(data?: Partial<OrderStorefrontRoutingDynamicCurrencySettingsData>);
6
- }
7
- export declare class OrderStorefrontRoutingDynamicCurrencySettings extends OrderStorefrontRoutingDynamicCurrencySettingsData {
8
- }
9
- export declare type PartialOrderStorefrontRoutingDynamicCurrencySettings = Partial<OrderStorefrontRoutingDynamicCurrencySettings>;
10
- export declare type ReadOnlyOrderStorefrontRoutingDynamicCurrencySettings = DeepReadonly<OrderStorefrontRoutingDynamicCurrencySettings>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class OrderTaxLineData {
3
- price: number;
4
- rate: number;
5
- constructor(data?: Partial<OrderTaxLineData>);
6
- }
7
- export declare class OrderTaxLine extends OrderTaxLineData {
8
- }
9
- export declare type PartialOrderTaxLine = Partial<OrderTaxLine>;
10
- export declare type ReadOnlyOrderTaxLine = DeepReadonly<OrderTaxLine>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class PaginationInputData {
3
- limit: number | null;
4
- page: number | null;
5
- constructor(data?: Partial<PaginationInputData>);
6
- }
7
- export declare class PaginationInput extends PaginationInputData {
8
- }
9
- export declare type PartialPaginationInput = Partial<PaginationInput>;
10
- export declare type ReadOnlyPaginationInput = DeepReadonly<PaginationInput>;
@@ -1,30 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { PaymentMethodEnum, PaymentGatewayTypeEnum } from "../types";
4
- import { AdditionalPriceData } from "./AdditionalPrice";
5
- import { PaymentGatewayPaymentMethodData } from "./PaymentGatewayPaymentMethod";
6
- import { PaymentGatewaySettingsData } from "./PaymentGatewaySettings";
7
- import { PaymentGatewayTranslationData } from "./PaymentGatewayTranslation";
8
- export declare class PaymentGatewayData extends BaseModelData {
9
- additionalPrices: AdditionalPriceData[] | null;
10
- availableCountries: string[] | null;
11
- code: string;
12
- description: string | null;
13
- isPassive: boolean | null;
14
- logoUrl: string | null;
15
- masterPassClientId: string | null;
16
- name: string;
17
- paymentGatewayProviderId: string | null;
18
- paymentMethodType: PaymentMethodEnum;
19
- paymentMethods: PaymentGatewayPaymentMethodData[];
20
- settings: PaymentGatewaySettingsData[] | null;
21
- supportedCurrencies: string[] | null;
22
- testMode: boolean | null;
23
- translations: PaymentGatewayTranslationData[] | null;
24
- type: PaymentGatewayTypeEnum;
25
- constructor(data?: Partial<PaymentGatewayData>);
26
- }
27
- export declare class PaymentGateway extends PaymentGatewayData {
28
- }
29
- export declare type PartialPaymentGateway = Partial<PaymentGateway>;
30
- export declare type ReadOnlyPaymentGateway = DeepReadonly<PaymentGateway>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class PaymentGatewayPaymentMethodData {
3
- logoUrl: string | null;
4
- name: string;
5
- constructor(data?: Partial<PaymentGatewayPaymentMethodData>);
6
- }
7
- export declare class PaymentGatewayPaymentMethod extends PaymentGatewayPaymentMethodData {
8
- }
9
- export declare type PartialPaymentGatewayPaymentMethod = Partial<PaymentGatewayPaymentMethod>;
10
- export declare type ReadOnlyPaymentGatewayPaymentMethod = DeepReadonly<PaymentGatewayPaymentMethod>;
@@ -1,13 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { PaymentGatewaySettingsTypeEnum } from "../types";
3
- export declare class PaymentGatewaySettingsData {
4
- label: string;
5
- order: number;
6
- type: PaymentGatewaySettingsTypeEnum;
7
- value: string | null;
8
- constructor(data?: Partial<PaymentGatewaySettingsData>);
9
- }
10
- export declare class PaymentGatewaySettings extends PaymentGatewaySettingsData {
11
- }
12
- export declare type PartialPaymentGatewaySettings = Partial<PaymentGatewaySettings>;
13
- export declare type ReadOnlyPaymentGatewaySettings = DeepReadonly<PaymentGatewaySettings>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class PaymentGatewayTranslationData {
3
- description: string | null;
4
- locale: string | null;
5
- name: string | null;
6
- constructor(data?: Partial<PaymentGatewayTranslationData>);
7
- }
8
- export declare class PaymentGatewayTranslation extends PaymentGatewayTranslationData {
9
- }
10
- export declare type PartialPaymentGatewayTranslation = Partial<PaymentGatewayTranslation>;
11
- export declare type ReadOnlyPaymentGatewayTranslation = DeepReadonly<PaymentGatewayTranslation>;
@@ -1,15 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class PaymentMethodDetailInputData {
3
- cardHolderName: string;
4
- cardNumber: string;
5
- cvv: string;
6
- expiredMonth: number;
7
- expiredYear: number;
8
- installmentCount: number;
9
- threeDSecure: boolean;
10
- constructor(data?: Partial<PaymentMethodDetailInputData>);
11
- }
12
- export declare class PaymentMethodDetailInput extends PaymentMethodDetailInputData {
13
- }
14
- export declare type PartialPaymentMethodDetailInput = Partial<PaymentMethodDetailInput>;
15
- export declare type ReadOnlyPaymentMethodDetailInput = DeepReadonly<PaymentMethodDetailInput>;
@@ -1,36 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductTypeEnum } from "../types";
4
- import { ProductAttributeValueData } from "./ProductAttributeValue";
5
- import { ProductBaseUnitModelData } from "./ProductBaseUnitModel";
6
- import { HTMLMetaDataData } from "./HTMLMetaData";
7
- import { ProductVariantTypeData } from "./ProductVariantType";
8
- import { ProductTranslationData } from "./ProductTranslation";
9
- import { VariantData } from "./Variant";
10
- export declare class ProductData extends BaseModelData {
11
- attributes: ProductAttributeValueData[] | null;
12
- baseUnit: ProductBaseUnitModelData | null;
13
- brandId: string | null;
14
- categoryIds: string[] | null;
15
- description: string | null;
16
- googleTaxonomyId: string | null;
17
- groupVariantsByVariantTypeId: string | null;
18
- maxQuantityPerCart: number | null;
19
- metaData: HTMLMetaDataData | null;
20
- name: string;
21
- productOptionSetId: string | null;
22
- productVariantTypes: ProductVariantTypeData[] | null;
23
- salesChannelIds: string[] | null;
24
- shortDescription: string | null;
25
- tagIds: string[] | null;
26
- translations: ProductTranslationData[] | null;
27
- type: ProductTypeEnum;
28
- variants: VariantData[];
29
- vendorId: string | null;
30
- weight: number | null;
31
- constructor(data?: Partial<ProductData>);
32
- }
33
- export declare class Product extends ProductData {
34
- }
35
- export declare type PartialProduct = Partial<Product>;
36
- export declare type ReadOnlyProduct = DeepReadonly<Product>;
@@ -1,19 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductAttributeTypeEnum } from "../types";
4
- import { ProductAttributeOptionData } from "./ProductAttributeOption";
5
- import { ProductAttributeTableTemplateData } from "./ProductAttributeTableTemplate";
6
- import { ProductAttributeTranslationData } from "./ProductAttributeTranslation";
7
- export declare class ProductAttributeData extends BaseModelData {
8
- description: string | null;
9
- name: string;
10
- options: ProductAttributeOptionData[] | null;
11
- tableTemplate: ProductAttributeTableTemplateData | null;
12
- translations: ProductAttributeTranslationData[] | null;
13
- type: ProductAttributeTypeEnum;
14
- constructor(data?: Partial<ProductAttributeData>);
15
- }
16
- export declare class ProductAttribute extends ProductAttributeData {
17
- }
18
- export declare type PartialProductAttribute = Partial<ProductAttribute>;
19
- export declare type ReadOnlyProductAttribute = DeepReadonly<ProductAttribute>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- export declare class ProductAttributeOptionData extends BaseModelData {
4
- name: string;
5
- constructor(data?: Partial<ProductAttributeOptionData>);
6
- }
7
- export declare class ProductAttributeOption extends ProductAttributeOptionData {
8
- }
9
- export declare type PartialProductAttributeOption = Partial<ProductAttributeOption>;
10
- export declare type ReadOnlyProductAttributeOption = DeepReadonly<ProductAttributeOption>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductAttributeOptionTranslationData {
3
- id: string;
4
- name: string | null;
5
- constructor(data?: Partial<ProductAttributeOptionTranslationData>);
6
- }
7
- export declare class ProductAttributeOptionTranslation extends ProductAttributeOptionTranslationData {
8
- }
9
- export declare type PartialProductAttributeOptionTranslation = Partial<ProductAttributeOptionTranslation>;
10
- export declare type ReadOnlyProductAttributeOptionTranslation = DeepReadonly<ProductAttributeOptionTranslation>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductAttributeTableCellDataData {
3
- id: string;
4
- name: string;
5
- constructor(data?: Partial<ProductAttributeTableCellDataData>);
6
- }
7
- export declare class ProductAttributeTableCellData extends ProductAttributeTableCellDataData {
8
- }
9
- export declare type PartialProductAttributeTableCellData = Partial<ProductAttributeTableCellData>;
10
- export declare type ReadOnlyProductAttributeTableCellData = DeepReadonly<ProductAttributeTableCellData>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductAttributeTableCellDataData } from "./ProductAttributeTableCellData";
3
- export declare class ProductAttributeTableTemplateData {
4
- columns: ProductAttributeTableCellDataData[];
5
- rows: ProductAttributeTableCellDataData[];
6
- constructor(data?: Partial<ProductAttributeTableTemplateData>);
7
- }
8
- export declare class ProductAttributeTableTemplate extends ProductAttributeTableTemplateData {
9
- }
10
- export declare type PartialProductAttributeTableTemplate = Partial<ProductAttributeTableTemplate>;
11
- export declare type ReadOnlyProductAttributeTableTemplate = DeepReadonly<ProductAttributeTableTemplate>;
@@ -1,13 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductAttributeOptionTranslationData } from "./ProductAttributeOptionTranslation";
3
- export declare class ProductAttributeTranslationData {
4
- description: string | null;
5
- locale: string;
6
- name: string | null;
7
- options: ProductAttributeOptionTranslationData[] | null;
8
- constructor(data?: Partial<ProductAttributeTranslationData>);
9
- }
10
- export declare class ProductAttributeTranslation extends ProductAttributeTranslationData {
11
- }
12
- export declare type PartialProductAttributeTranslation = Partial<ProductAttributeTranslation>;
13
- export declare type ReadOnlyProductAttributeTranslation = DeepReadonly<ProductAttributeTranslation>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductAttributeValueData {
3
- imageIds: string[] | null;
4
- productAttributeId: string | null;
5
- productAttributeOptionId: string | null;
6
- value: string | null;
7
- constructor(data?: Partial<ProductAttributeValueData>);
8
- }
9
- export declare class ProductAttributeValue extends ProductAttributeValueData {
10
- }
11
- export declare type PartialProductAttributeValue = Partial<ProductAttributeValue>;
12
- export declare type ReadOnlyProductAttributeValue = DeepReadonly<ProductAttributeValue>;
@@ -1,15 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- export declare class ProductBackInStockRemindData extends BaseModelData {
4
- customerId: string;
5
- email: string;
6
- productId: string;
7
- storefrontId: string;
8
- storefrontRoutingId: string | null;
9
- variantId: string;
10
- constructor(data?: Partial<ProductBackInStockRemindData>);
11
- }
12
- export declare class ProductBackInStockRemind extends ProductBackInStockRemindData {
13
- }
14
- export declare type PartialProductBackInStockRemind = Partial<ProductBackInStockRemind>;
15
- export declare type ReadOnlyProductBackInStockRemind = DeepReadonly<ProductBackInStockRemind>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductBackInStockRemindInputData {
3
- email: string;
4
- productId: string;
5
- variantId: string;
6
- constructor(data?: Partial<ProductBackInStockRemindInputData>);
7
- }
8
- export declare class ProductBackInStockRemindInput extends ProductBackInStockRemindInputData {
9
- }
10
- export declare type PartialProductBackInStockRemindInput = Partial<ProductBackInStockRemindInput>;
11
- export declare type ReadOnlyProductBackInStockRemindInput = DeepReadonly<ProductBackInStockRemindInput>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductUnitTypeEnum } from "../types";
3
- export declare class ProductBaseUnitModelData {
4
- baseAmount: number | null;
5
- type: ProductUnitTypeEnum;
6
- unitId: string | null;
7
- constructor(data?: Partial<ProductBaseUnitModelData>);
8
- }
9
- export declare class ProductBaseUnitModel extends ProductBaseUnitModelData {
10
- }
11
- export declare type PartialProductBaseUnitModel = Partial<ProductBaseUnitModel>;
12
- export declare type ReadOnlyProductBaseUnitModel = DeepReadonly<ProductBaseUnitModel>;
@@ -1,19 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { CategoryProductsOrderTypeEnum } from "../types";
4
- import { HTMLMetaDataData } from "./HTMLMetaData";
5
- import { ProductBrandTranslationData } from "./ProductBrandTranslation";
6
- export declare class ProductBrandData extends BaseModelData {
7
- description: string | null;
8
- imageId: string | null;
9
- metaData: HTMLMetaDataData | null;
10
- name: string;
11
- orderType: CategoryProductsOrderTypeEnum | null;
12
- salesChannelIds: string[] | null;
13
- translations: ProductBrandTranslationData[] | null;
14
- constructor(data?: Partial<ProductBrandData>);
15
- }
16
- export declare class ProductBrand extends ProductBrandData {
17
- }
18
- export declare type PartialProductBrand = Partial<ProductBrand>;
19
- export declare type ReadOnlyProductBrand = DeepReadonly<ProductBrand>;
@@ -1,14 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductBrandData } from "./ProductBrand";
3
- export declare class ProductBrandPaginationResponseData {
4
- count: number;
5
- data: ProductBrandData[];
6
- hasNext: boolean;
7
- limit: number;
8
- page: number;
9
- constructor(data?: Partial<ProductBrandPaginationResponseData>);
10
- }
11
- export declare class ProductBrandPaginationResponse extends ProductBrandPaginationResponseData {
12
- }
13
- export declare type PartialProductBrandPaginationResponse = Partial<ProductBrandPaginationResponse>;
14
- export declare type ReadOnlyProductBrandPaginationResponse = DeepReadonly<ProductBrandPaginationResponse>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductBrandTranslationData {
3
- description: string | null;
4
- locale: string;
5
- name: string | null;
6
- constructor(data?: Partial<ProductBrandTranslationData>);
7
- }
8
- export declare class ProductBrandTranslation extends ProductBrandTranslationData {
9
- }
10
- export declare type PartialProductBrandTranslation = Partial<ProductBrandTranslation>;
11
- export declare type ReadOnlyProductBrandTranslation = DeepReadonly<ProductBrandTranslation>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductFacetCountValueData } from "./ProductFacetCountValue";
3
- export declare class ProductFacetCountData {
4
- id: string;
5
- values: ProductFacetCountValueData[];
6
- constructor(data?: Partial<ProductFacetCountData>);
7
- }
8
- export declare class ProductFacetCount extends ProductFacetCountData {
9
- }
10
- export declare type PartialProductFacetCount = Partial<ProductFacetCount>;
11
- export declare type ReadOnlyProductFacetCount = DeepReadonly<ProductFacetCount>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductFacetCountValueData {
3
- count: number;
4
- id: string;
5
- constructor(data?: Partial<ProductFacetCountValueData>);
6
- }
7
- export declare class ProductFacetCountValue extends ProductFacetCountValueData {
8
- }
9
- export declare type PartialProductFacetCountValue = Partial<ProductFacetCountValue>;
10
- export declare type ReadOnlyProductFacetCountValue = DeepReadonly<ProductFacetCountValue>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { CategoryData } from "./Category";
3
- import { ProductFilterDataFilterData } from "./ProductFilterDataFilter";
4
- export declare class ProductFilterDataData {
5
- categories: CategoryData[] | null;
6
- filters: ProductFilterDataFilterData[];
7
- constructor(data?: Partial<ProductFilterDataData>);
8
- }
9
- export declare class ProductFilterData extends ProductFilterDataData {
10
- }
11
- export declare type PartialProductFilterData = Partial<ProductFilterData>;
12
- export declare type ReadOnlyProductFilterData = DeepReadonly<ProductFilterData>;
@@ -1,24 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductFilterDisplayTypeEnum, ProductFilterTypeEnum } from "../types";
3
- import { CategoryData } from "./Category";
4
- import { ProductFilterSettingsData } from "./ProductFilterSettings";
5
- import { ApplicableProductFilterValueData } from "./ApplicableProductFilterValue";
6
- export declare class ProductFilterDataFilterData {
7
- categories: CategoryData[] | null;
8
- customValues: string[] | null;
9
- displayType: ProductFilterDisplayTypeEnum;
10
- id: string;
11
- isFacetFilter: boolean | null;
12
- isMultiSelect: boolean;
13
- key: string;
14
- name: string;
15
- order: number;
16
- settings: ProductFilterSettingsData | null;
17
- type: ProductFilterTypeEnum;
18
- values: ApplicableProductFilterValueData[] | null;
19
- constructor(data?: Partial<ProductFilterDataFilterData>);
20
- }
21
- export declare class ProductFilterDataFilter extends ProductFilterDataFilterData {
22
- }
23
- export declare type PartialProductFilterDataFilter = Partial<ProductFilterDataFilter>;
24
- export declare type ReadOnlyProductFilterDataFilter = DeepReadonly<ProductFilterDataFilter>;
@@ -1,14 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductFilterSortTypeEnum } from "../types";
3
- export declare class ProductFilterSettingsData {
4
- customSortedValues: string[] | null;
5
- showCollapsedOnDesktop: boolean;
6
- showCollapsedOnMobile: boolean;
7
- sortType: ProductFilterSortTypeEnum;
8
- useAndFilter: boolean | null;
9
- constructor(data?: Partial<ProductFilterSettingsData>);
10
- }
11
- export declare class ProductFilterSettings extends ProductFilterSettingsData {
12
- }
13
- export declare type PartialProductFilterSettings = Partial<ProductFilterSettings>;
14
- export declare type ReadOnlyProductFilterSettings = DeepReadonly<ProductFilterSettings>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductImageData {
3
- imageId: string | null;
4
- isMain: boolean;
5
- isVideo: boolean | null;
6
- order: number;
7
- constructor(data?: Partial<ProductImageData>);
8
- }
9
- export declare class ProductImage extends ProductImageData {
10
- }
11
- export declare type PartialProductImage = Partial<ProductImage>;
12
- export declare type ReadOnlyProductImage = DeepReadonly<ProductImage>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- export declare class ProductItemData extends BaseModelData {
4
- productId: string;
5
- variantId: string;
6
- constructor(data?: Partial<ProductItemData>);
7
- }
8
- export declare class ProductItem extends ProductItemData {
9
- }
10
- export declare type PartialProductItem = Partial<ProductItem>;
11
- export declare type ReadOnlyProductItem = DeepReadonly<ProductItem>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- export declare class ProductItemInputData extends BaseModelData {
4
- productId: string;
5
- variantId: string;
6
- constructor(data?: Partial<ProductItemInputData>);
7
- }
8
- export declare class ProductItemInput extends ProductItemInputData {
9
- }
10
- export declare type PartialProductItemInput = Partial<ProductItemInput>;
11
- export declare type ReadOnlyProductItemInput = DeepReadonly<ProductItemInput>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductItemData } from "./ProductItem";
4
- export declare class ProductLastViewedData extends BaseModelData {
5
- customerId: string;
6
- products: ProductItemData[];
7
- constructor(data?: Partial<ProductLastViewedData>);
8
- }
9
- export declare class ProductLastViewed extends ProductLastViewedData {
10
- }
11
- export declare type PartialProductLastViewed = Partial<ProductLastViewed>;
12
- export declare type ReadOnlyProductLastViewed = DeepReadonly<ProductLastViewed>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductItemInputData } from "./ProductItemInput";
4
- export declare class ProductLastViewedInputData extends BaseModelData {
5
- customerId: string;
6
- products: ProductItemInputData[];
7
- constructor(data?: Partial<ProductLastViewedInputData>);
8
- }
9
- export declare class ProductLastViewedInput extends ProductLastViewedInputData {
10
- }
11
- export declare type PartialProductLastViewedInput = Partial<ProductLastViewedInput>;
12
- export declare type ReadOnlyProductLastViewedInput = DeepReadonly<ProductLastViewedInput>;
@@ -1,28 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductOptionTypeEnum } from "../types";
4
- import { ProductOptionDateSettingsData } from "./ProductOptionDateSettings";
5
- import { ProductOptionFileSettingsData } from "./ProductOptionFileSettings";
6
- import { ProductOptionSelectValueOtherPriceData } from "./ProductOptionSelectValueOtherPrice";
7
- import { ProductOptionSelectSettingsData } from "./ProductOptionSelectSettings";
8
- import { ProductOptionTextSettingsData } from "./ProductOptionTextSettings";
9
- export declare class ProductOptionData extends BaseModelData {
10
- dateSettings: ProductOptionDateSettingsData | null;
11
- fileSettings: ProductOptionFileSettingsData | null;
12
- isOptional: boolean | null;
13
- name: string;
14
- optionalText: string | null;
15
- order: number;
16
- otherPrices: ProductOptionSelectValueOtherPriceData[] | null;
17
- price: number | null;
18
- requiredOptionId: string | null;
19
- requiredOptionValueIds: string[] | null;
20
- selectSettings: ProductOptionSelectSettingsData | null;
21
- textSettings: ProductOptionTextSettingsData | null;
22
- type: ProductOptionTypeEnum;
23
- constructor(data?: Partial<ProductOptionData>);
24
- }
25
- export declare class ProductOption extends ProductOptionData {
26
- }
27
- export declare type PartialProductOption = Partial<ProductOption>;
28
- export declare type ReadOnlyProductOption = DeepReadonly<ProductOption>;
@@ -1,12 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductOptionDateSettingsData {
3
- max: any | null;
4
- maxRelativeNextDate: number | null;
5
- min: any | null;
6
- minRelativeNextDate: number | null;
7
- constructor(data?: Partial<ProductOptionDateSettingsData>);
8
- }
9
- export declare class ProductOptionDateSettings extends ProductOptionDateSettingsData {
10
- }
11
- export declare type PartialProductOptionDateSettings = Partial<ProductOptionDateSettings>;
12
- export declare type ReadOnlyProductOptionDateSettings = DeepReadonly<ProductOptionDateSettings>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductOptionFileSettingsData {
3
- allowedExtensions: string[] | null;
4
- maxQuantity: number | null;
5
- minQuantity: number | null;
6
- constructor(data?: Partial<ProductOptionFileSettingsData>);
7
- }
8
- export declare class ProductOptionFileSettings extends ProductOptionFileSettingsData {
9
- }
10
- export declare type PartialProductOptionFileSettings = Partial<ProductOptionFileSettings>;
11
- export declare type ReadOnlyProductOptionFileSettings = DeepReadonly<ProductOptionFileSettings>;
@@ -1,14 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import { ProductOptionSelectTypeEnum } from "../types";
3
- import { ProductOptionSelectValueData } from "./ProductOptionSelectValue";
4
- export declare class ProductOptionSelectSettingsData {
5
- maxSelect: number | null;
6
- minSelect: number | null;
7
- type: ProductOptionSelectTypeEnum;
8
- values: ProductOptionSelectValueData[];
9
- constructor(data?: Partial<ProductOptionSelectSettingsData>);
10
- }
11
- export declare class ProductOptionSelectSettings extends ProductOptionSelectSettingsData {
12
- }
13
- export declare type PartialProductOptionSelectSettings = Partial<ProductOptionSelectSettings>;
14
- export declare type ReadOnlyProductOptionSelectSettings = DeepReadonly<ProductOptionSelectSettings>;
@@ -1,16 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- import BaseModelData from "./_base";
3
- import { ProductOptionSelectValueOtherPriceData } from "./ProductOptionSelectValueOtherPrice";
4
- export declare class ProductOptionSelectValueData extends BaseModelData {
5
- colorCode: string | null;
6
- order: number;
7
- otherPrices: ProductOptionSelectValueOtherPriceData[] | null;
8
- price: number | null;
9
- thumbnailImageId: string | null;
10
- value: string;
11
- constructor(data?: Partial<ProductOptionSelectValueData>);
12
- }
13
- export declare class ProductOptionSelectValue extends ProductOptionSelectValueData {
14
- }
15
- export declare type PartialProductOptionSelectValue = Partial<ProductOptionSelectValue>;
16
- export declare type ReadOnlyProductOptionSelectValue = DeepReadonly<ProductOptionSelectValue>;
@@ -1,11 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductOptionSelectValueOtherPriceData {
3
- currencyCode: string;
4
- currencySymbol: string | null;
5
- price: number;
6
- constructor(data?: Partial<ProductOptionSelectValueOtherPriceData>);
7
- }
8
- export declare class ProductOptionSelectValueOtherPrice extends ProductOptionSelectValueOtherPriceData {
9
- }
10
- export declare type PartialProductOptionSelectValueOtherPrice = Partial<ProductOptionSelectValueOtherPrice>;
11
- export declare type ReadOnlyProductOptionSelectValueOtherPrice = DeepReadonly<ProductOptionSelectValueOtherPrice>;
@@ -1,10 +0,0 @@
1
- import { DeepReadonly } from "ts-essentials";
2
- export declare class ProductOptionSelectValueTranslationsData {
3
- id: string;
4
- value: string | null;
5
- constructor(data?: Partial<ProductOptionSelectValueTranslationsData>);
6
- }
7
- export declare class ProductOptionSelectValueTranslations extends ProductOptionSelectValueTranslationsData {
8
- }
9
- export declare type PartialProductOptionSelectValueTranslations = Partial<ProductOptionSelectValueTranslations>;
10
- export declare type ReadOnlyProductOptionSelectValueTranslations = DeepReadonly<ProductOptionSelectValueTranslations>;