@unchainedshop/api 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1360) hide show
  1. package/.npm/package/README +7 -0
  2. package/.npm/package/npm-shrinkwrap.json +262 -0
  3. package/.versions +27 -0
  4. package/README.md +3 -0
  5. package/lib/acl.d.ts +10 -0
  6. package/lib/acl.js +80 -0
  7. package/lib/acl.js.map +1 -0
  8. package/lib/api-index.d.ts +12 -0
  9. package/lib/api-index.js +26 -0
  10. package/lib/api-index.js.map +1 -0
  11. package/lib/context.d.ts +5 -0
  12. package/lib/context.js +32 -0
  13. package/lib/context.js.map +1 -0
  14. package/lib/createBulkImportServer.d.ts +2 -0
  15. package/lib/createBulkImportServer.js +81 -0
  16. package/lib/createBulkImportServer.js.map +1 -0
  17. package/lib/createGraphQLServer.d.ts +3 -0
  18. package/lib/createGraphQLServer.js +88 -0
  19. package/lib/createGraphQLServer.js.map +1 -0
  20. package/lib/errors.d.ts +50 -0
  21. package/lib/errors.js +56 -0
  22. package/lib/errors.js.map +1 -0
  23. package/lib/hashPassword.d.ts +1 -0
  24. package/lib/hashPassword.js +5 -0
  25. package/lib/hashPassword.js.map +1 -0
  26. package/lib/loaders/index.d.ts +4 -0
  27. package/lib/loaders/index.js +74 -0
  28. package/lib/loaders/index.js.map +1 -0
  29. package/lib/locale-context.d.ts +4 -0
  30. package/lib/locale-context.js +43 -0
  31. package/lib/locale-context.js.map +1 -0
  32. package/lib/resolvers/index.d.ts +2 -0
  33. package/lib/resolvers/index.js +16 -0
  34. package/lib/resolvers/index.js.map +1 -0
  35. package/lib/resolvers/mutations/accounts/addEmail.d.ts +5 -0
  36. package/lib/resolvers/mutations/accounts/addEmail.js +11 -0
  37. package/lib/resolvers/mutations/accounts/addEmail.js.map +1 -0
  38. package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.d.ts +2 -0
  39. package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.js +6 -0
  40. package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.js.map +1 -0
  41. package/lib/resolvers/mutations/accounts/changePassword.d.ts +9 -0
  42. package/lib/resolvers/mutations/accounts/changePassword.js +13 -0
  43. package/lib/resolvers/mutations/accounts/changePassword.js.map +1 -0
  44. package/lib/resolvers/mutations/accounts/createUser.d.ts +7 -0
  45. package/lib/resolvers/mutations/accounts/createUser.js +17 -0
  46. package/lib/resolvers/mutations/accounts/createUser.js.map +1 -0
  47. package/lib/resolvers/mutations/accounts/disableTOTP.d.ts +5 -0
  48. package/lib/resolvers/mutations/accounts/disableTOTP.js +14 -0
  49. package/lib/resolvers/mutations/accounts/disableTOTP.js.map +1 -0
  50. package/lib/resolvers/mutations/accounts/enableTOTP.d.ts +5 -0
  51. package/lib/resolvers/mutations/accounts/enableTOTP.js +9 -0
  52. package/lib/resolvers/mutations/accounts/enableTOTP.js.map +1 -0
  53. package/lib/resolvers/mutations/accounts/enrollUser.d.ts +3 -0
  54. package/lib/resolvers/mutations/accounts/enrollUser.js +19 -0
  55. package/lib/resolvers/mutations/accounts/enrollUser.js.map +1 -0
  56. package/lib/resolvers/mutations/accounts/forgotPassword.d.ts +6 -0
  57. package/lib/resolvers/mutations/accounts/forgotPassword.js +7 -0
  58. package/lib/resolvers/mutations/accounts/forgotPassword.js.map +1 -0
  59. package/lib/resolvers/mutations/accounts/impersonate.d.ts +9 -0
  60. package/lib/resolvers/mutations/accounts/impersonate.js +15 -0
  61. package/lib/resolvers/mutations/accounts/impersonate.js.map +1 -0
  62. package/lib/resolvers/mutations/accounts/loginAsGuest.d.ts +6 -0
  63. package/lib/resolvers/mutations/accounts/loginAsGuest.js +8 -0
  64. package/lib/resolvers/mutations/accounts/loginAsGuest.js.map +1 -0
  65. package/lib/resolvers/mutations/accounts/loginWithPassword.d.ts +12 -0
  66. package/lib/resolvers/mutations/accounts/loginWithPassword.js +17 -0
  67. package/lib/resolvers/mutations/accounts/loginWithPassword.js.map +1 -0
  68. package/lib/resolvers/mutations/accounts/logout.d.ts +6 -0
  69. package/lib/resolvers/mutations/accounts/logout.js +13 -0
  70. package/lib/resolvers/mutations/accounts/logout.js.map +1 -0
  71. package/lib/resolvers/mutations/accounts/logoutAllSessions.d.ts +4 -0
  72. package/lib/resolvers/mutations/accounts/logoutAllSessions.js +13 -0
  73. package/lib/resolvers/mutations/accounts/logoutAllSessions.js.map +1 -0
  74. package/lib/resolvers/mutations/accounts/removeEmail.d.ts +5 -0
  75. package/lib/resolvers/mutations/accounts/removeEmail.js +11 -0
  76. package/lib/resolvers/mutations/accounts/removeEmail.js.map +1 -0
  77. package/lib/resolvers/mutations/accounts/resetPassword.d.ts +10 -0
  78. package/lib/resolvers/mutations/accounts/resetPassword.js +11 -0
  79. package/lib/resolvers/mutations/accounts/resetPassword.js.map +1 -0
  80. package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.d.ts +6 -0
  81. package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.js +16 -0
  82. package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.js.map +1 -0
  83. package/lib/resolvers/mutations/accounts/sendVerificationEmail.d.ts +6 -0
  84. package/lib/resolvers/mutations/accounts/sendVerificationEmail.js +9 -0
  85. package/lib/resolvers/mutations/accounts/sendVerificationEmail.js.map +1 -0
  86. package/lib/resolvers/mutations/accounts/setPassword.d.ts +6 -0
  87. package/lib/resolvers/mutations/accounts/setPassword.js +16 -0
  88. package/lib/resolvers/mutations/accounts/setPassword.js.map +1 -0
  89. package/lib/resolvers/mutations/accounts/setUsername.d.ts +5 -0
  90. package/lib/resolvers/mutations/accounts/setUsername.js +13 -0
  91. package/lib/resolvers/mutations/accounts/setUsername.js.map +1 -0
  92. package/lib/resolvers/mutations/accounts/verifyEmail.d.ts +8 -0
  93. package/lib/resolvers/mutations/accounts/verifyEmail.js +12 -0
  94. package/lib/resolvers/mutations/accounts/verifyEmail.js.map +1 -0
  95. package/lib/resolvers/mutations/assortments/addAssortmentFilter.d.ts +3 -0
  96. package/lib/resolvers/mutations/assortments/addAssortmentFilter.js +22 -0
  97. package/lib/resolvers/mutations/assortments/addAssortmentFilter.js.map +1 -0
  98. package/lib/resolvers/mutations/assortments/addAssortmentLink.d.ts +3 -0
  99. package/lib/resolvers/mutations/assortments/addAssortmentLink.js +30 -0
  100. package/lib/resolvers/mutations/assortments/addAssortmentLink.js.map +1 -0
  101. package/lib/resolvers/mutations/assortments/addAssortmentMedia.d.ts +5 -0
  102. package/lib/resolvers/mutations/assortments/addAssortmentMedia.js +19 -0
  103. package/lib/resolvers/mutations/assortments/addAssortmentMedia.js.map +1 -0
  104. package/lib/resolvers/mutations/assortments/addAssortmentProduct.d.ts +3 -0
  105. package/lib/resolvers/mutations/assortments/addAssortmentProduct.js +24 -0
  106. package/lib/resolvers/mutations/assortments/addAssortmentProduct.js.map +1 -0
  107. package/lib/resolvers/mutations/assortments/createAssortment.d.ts +8 -0
  108. package/lib/resolvers/mutations/assortments/createAssortment.js +11 -0
  109. package/lib/resolvers/mutations/assortments/createAssortment.js.map +1 -0
  110. package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.d.ts +5 -0
  111. package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.js +13 -0
  112. package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.js.map +1 -0
  113. package/lib/resolvers/mutations/assortments/removeAssortment.d.ts +4 -0
  114. package/lib/resolvers/mutations/assortments/removeAssortment.js +13 -0
  115. package/lib/resolvers/mutations/assortments/removeAssortment.js.map +1 -0
  116. package/lib/resolvers/mutations/assortments/removeAssortmentFilter.d.ts +4 -0
  117. package/lib/resolvers/mutations/assortments/removeAssortmentFilter.js +17 -0
  118. package/lib/resolvers/mutations/assortments/removeAssortmentFilter.js.map +1 -0
  119. package/lib/resolvers/mutations/assortments/removeAssortmentLink.d.ts +4 -0
  120. package/lib/resolvers/mutations/assortments/removeAssortmentLink.js +15 -0
  121. package/lib/resolvers/mutations/assortments/removeAssortmentLink.js.map +1 -0
  122. package/lib/resolvers/mutations/assortments/removeAssortmentMedia.d.ts +4 -0
  123. package/lib/resolvers/mutations/assortments/removeAssortmentMedia.js +18 -0
  124. package/lib/resolvers/mutations/assortments/removeAssortmentMedia.js.map +1 -0
  125. package/lib/resolvers/mutations/assortments/removeAssortmentProduct.d.ts +4 -0
  126. package/lib/resolvers/mutations/assortments/removeAssortmentProduct.js +17 -0
  127. package/lib/resolvers/mutations/assortments/removeAssortmentProduct.js.map +1 -0
  128. package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.d.ts +7 -0
  129. package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.js +8 -0
  130. package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.js.map +1 -0
  131. package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.d.ts +7 -0
  132. package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.js +8 -0
  133. package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.js.map +1 -0
  134. package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.d.ts +7 -0
  135. package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.js +8 -0
  136. package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.js.map +1 -0
  137. package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.d.ts +7 -0
  138. package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.js +8 -0
  139. package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.js.map +1 -0
  140. package/lib/resolvers/mutations/assortments/setBaseAssortment.d.ts +4 -0
  141. package/lib/resolvers/mutations/assortments/setBaseAssortment.js +12 -0
  142. package/lib/resolvers/mutations/assortments/setBaseAssortment.js.map +1 -0
  143. package/lib/resolvers/mutations/assortments/updateAssortment.d.ts +6 -0
  144. package/lib/resolvers/mutations/assortments/updateAssortment.js +13 -0
  145. package/lib/resolvers/mutations/assortments/updateAssortment.js.map +1 -0
  146. package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.d.ts +6 -0
  147. package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.js +16 -0
  148. package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.js.map +1 -0
  149. package/lib/resolvers/mutations/assortments/updateAssortmentTexts.d.ts +6 -0
  150. package/lib/resolvers/mutations/assortments/updateAssortmentTexts.js +11 -0
  151. package/lib/resolvers/mutations/assortments/updateAssortmentTexts.js.map +1 -0
  152. package/lib/resolvers/mutations/bookmarks/bookmark.d.ts +5 -0
  153. package/lib/resolvers/mutations/bookmarks/bookmark.js +28 -0
  154. package/lib/resolvers/mutations/bookmarks/bookmark.js.map +1 -0
  155. package/lib/resolvers/mutations/bookmarks/createBookmark.d.ts +5 -0
  156. package/lib/resolvers/mutations/bookmarks/createBookmark.js +24 -0
  157. package/lib/resolvers/mutations/bookmarks/createBookmark.js.map +1 -0
  158. package/lib/resolvers/mutations/bookmarks/removeBookmark.d.ts +4 -0
  159. package/lib/resolvers/mutations/bookmarks/removeBookmark.js +14 -0
  160. package/lib/resolvers/mutations/bookmarks/removeBookmark.js.map +1 -0
  161. package/lib/resolvers/mutations/countries/createCountry.d.ts +5 -0
  162. package/lib/resolvers/mutations/countries/createCountry.js +10 -0
  163. package/lib/resolvers/mutations/countries/createCountry.js.map +1 -0
  164. package/lib/resolvers/mutations/countries/removeCountry.d.ts +4 -0
  165. package/lib/resolvers/mutations/countries/removeCountry.js +12 -0
  166. package/lib/resolvers/mutations/countries/removeCountry.js.map +1 -0
  167. package/lib/resolvers/mutations/countries/updateCountry.d.ts +6 -0
  168. package/lib/resolvers/mutations/countries/updateCountry.js +12 -0
  169. package/lib/resolvers/mutations/countries/updateCountry.js.map +1 -0
  170. package/lib/resolvers/mutations/currencies/createCurrency.d.ts +5 -0
  171. package/lib/resolvers/mutations/currencies/createCurrency.js +10 -0
  172. package/lib/resolvers/mutations/currencies/createCurrency.js.map +1 -0
  173. package/lib/resolvers/mutations/currencies/removeCurrency.d.ts +4 -0
  174. package/lib/resolvers/mutations/currencies/removeCurrency.js +12 -0
  175. package/lib/resolvers/mutations/currencies/removeCurrency.js.map +1 -0
  176. package/lib/resolvers/mutations/currencies/updateCurrency.d.ts +6 -0
  177. package/lib/resolvers/mutations/currencies/updateCurrency.js +12 -0
  178. package/lib/resolvers/mutations/currencies/updateCurrency.js.map +1 -0
  179. package/lib/resolvers/mutations/delivery/createDeliveryProvider.d.ts +5 -0
  180. package/lib/resolvers/mutations/delivery/createDeliveryProvider.js +13 -0
  181. package/lib/resolvers/mutations/delivery/createDeliveryProvider.js.map +1 -0
  182. package/lib/resolvers/mutations/delivery/removeDeliveryProvider.d.ts +4 -0
  183. package/lib/resolvers/mutations/delivery/removeDeliveryProvider.js +12 -0
  184. package/lib/resolvers/mutations/delivery/removeDeliveryProvider.js.map +1 -0
  185. package/lib/resolvers/mutations/delivery/updateDeliveryProvider.d.ts +6 -0
  186. package/lib/resolvers/mutations/delivery/updateDeliveryProvider.js +12 -0
  187. package/lib/resolvers/mutations/delivery/updateDeliveryProvider.js.map +1 -0
  188. package/lib/resolvers/mutations/enrollments/activateEnrollment.d.ts +4 -0
  189. package/lib/resolvers/mutations/enrollments/activateEnrollment.js +21 -0
  190. package/lib/resolvers/mutations/enrollments/activateEnrollment.js.map +1 -0
  191. package/lib/resolvers/mutations/enrollments/createEnrollment.d.ts +9 -0
  192. package/lib/resolvers/mutations/enrollments/createEnrollment.js +32 -0
  193. package/lib/resolvers/mutations/enrollments/createEnrollment.js.map +1 -0
  194. package/lib/resolvers/mutations/enrollments/terminateEnrollment.d.ts +4 -0
  195. package/lib/resolvers/mutations/enrollments/terminateEnrollment.js +20 -0
  196. package/lib/resolvers/mutations/enrollments/terminateEnrollment.js.map +1 -0
  197. package/lib/resolvers/mutations/enrollments/updateEnrollment.d.ts +14 -0
  198. package/lib/resolvers/mutations/enrollments/updateEnrollment.js +43 -0
  199. package/lib/resolvers/mutations/enrollments/updateEnrollment.js.map +1 -0
  200. package/lib/resolvers/mutations/files/confirmMediaUpload.d.ts +6 -0
  201. package/lib/resolvers/mutations/files/confirmMediaUpload.js +7 -0
  202. package/lib/resolvers/mutations/files/confirmMediaUpload.js.map +1 -0
  203. package/lib/resolvers/mutations/filters/createFilter.d.ts +7 -0
  204. package/lib/resolvers/mutations/filters/createFilter.js +11 -0
  205. package/lib/resolvers/mutations/filters/createFilter.js.map +1 -0
  206. package/lib/resolvers/mutations/filters/createFilterOption.d.ts +8 -0
  207. package/lib/resolvers/mutations/filters/createFilterOption.js +15 -0
  208. package/lib/resolvers/mutations/filters/createFilterOption.js.map +1 -0
  209. package/lib/resolvers/mutations/filters/removeFilter.d.ts +4 -0
  210. package/lib/resolvers/mutations/filters/removeFilter.js +18 -0
  211. package/lib/resolvers/mutations/filters/removeFilter.js.map +1 -0
  212. package/lib/resolvers/mutations/filters/removeFilterOption.d.ts +5 -0
  213. package/lib/resolvers/mutations/filters/removeFilterOption.js +17 -0
  214. package/lib/resolvers/mutations/filters/removeFilterOption.js.map +1 -0
  215. package/lib/resolvers/mutations/filters/updateFilter.d.ts +6 -0
  216. package/lib/resolvers/mutations/filters/updateFilter.js +12 -0
  217. package/lib/resolvers/mutations/filters/updateFilter.js.map +1 -0
  218. package/lib/resolvers/mutations/filters/updateFilterTexts.d.ts +10 -0
  219. package/lib/resolvers/mutations/filters/updateFilterTexts.js +15 -0
  220. package/lib/resolvers/mutations/filters/updateFilterTexts.js.map +1 -0
  221. package/lib/resolvers/mutations/index.d.ts +158 -0
  222. package/lib/resolvers/mutations/index.js +293 -0
  223. package/lib/resolvers/mutations/index.js.map +1 -0
  224. package/lib/resolvers/mutations/languages/createLanguage.d.ts +5 -0
  225. package/lib/resolvers/mutations/languages/createLanguage.js +10 -0
  226. package/lib/resolvers/mutations/languages/createLanguage.js.map +1 -0
  227. package/lib/resolvers/mutations/languages/removeLanguage.d.ts +4 -0
  228. package/lib/resolvers/mutations/languages/removeLanguage.js +12 -0
  229. package/lib/resolvers/mutations/languages/removeLanguage.js.map +1 -0
  230. package/lib/resolvers/mutations/languages/updateLanguage.d.ts +6 -0
  231. package/lib/resolvers/mutations/languages/updateLanguage.js +12 -0
  232. package/lib/resolvers/mutations/languages/updateLanguage.js.map +1 -0
  233. package/lib/resolvers/mutations/orders/addCartDiscount.d.ts +5 -0
  234. package/lib/resolvers/mutations/orders/addCartDiscount.js +9 -0
  235. package/lib/resolvers/mutations/orders/addCartDiscount.js.map +1 -0
  236. package/lib/resolvers/mutations/orders/addCartProduct.d.ts +7 -0
  237. package/lib/resolvers/mutations/orders/addCartProduct.js +21 -0
  238. package/lib/resolvers/mutations/orders/addCartProduct.js.map +1 -0
  239. package/lib/resolvers/mutations/orders/addCartQuotation.d.ts +8 -0
  240. package/lib/resolvers/mutations/orders/addCartQuotation.js +33 -0
  241. package/lib/resolvers/mutations/orders/addCartQuotation.js.map +1 -0
  242. package/lib/resolvers/mutations/orders/addMultipleCartProducts.d.ts +10 -0
  243. package/lib/resolvers/mutations/orders/addMultipleCartProducts.js +38 -0
  244. package/lib/resolvers/mutations/orders/addMultipleCartProducts.js.map +1 -0
  245. package/lib/resolvers/mutations/orders/checkoutCart.d.ts +7 -0
  246. package/lib/resolvers/mutations/orders/checkoutCart.js +23 -0
  247. package/lib/resolvers/mutations/orders/checkoutCart.js.map +1 -0
  248. package/lib/resolvers/mutations/orders/confirmOrder.d.ts +7 -0
  249. package/lib/resolvers/mutations/orders/confirmOrder.js +18 -0
  250. package/lib/resolvers/mutations/orders/confirmOrder.js.map +1 -0
  251. package/lib/resolvers/mutations/orders/createCart.d.ts +4 -0
  252. package/lib/resolvers/mutations/orders/createCart.js +11 -0
  253. package/lib/resolvers/mutations/orders/createCart.js.map +1 -0
  254. package/lib/resolvers/mutations/orders/deliverOrder.d.ts +4 -0
  255. package/lib/resolvers/mutations/orders/deliverOrder.js +27 -0
  256. package/lib/resolvers/mutations/orders/deliverOrder.js.map +1 -0
  257. package/lib/resolvers/mutations/orders/emptyCart.d.ts +4 -0
  258. package/lib/resolvers/mutations/orders/emptyCart.js +12 -0
  259. package/lib/resolvers/mutations/orders/emptyCart.js.map +1 -0
  260. package/lib/resolvers/mutations/orders/payOrder.d.ts +4 -0
  261. package/lib/resolvers/mutations/orders/payOrder.js +26 -0
  262. package/lib/resolvers/mutations/orders/payOrder.js.map +1 -0
  263. package/lib/resolvers/mutations/orders/rejectOrder.d.ts +7 -0
  264. package/lib/resolvers/mutations/orders/rejectOrder.js +18 -0
  265. package/lib/resolvers/mutations/orders/rejectOrder.js.map +1 -0
  266. package/lib/resolvers/mutations/orders/removeCartDiscount.d.ts +4 -0
  267. package/lib/resolvers/mutations/orders/removeCartDiscount.js +21 -0
  268. package/lib/resolvers/mutations/orders/removeCartDiscount.js.map +1 -0
  269. package/lib/resolvers/mutations/orders/removeCartItem.d.ts +4 -0
  270. package/lib/resolvers/mutations/orders/removeCartItem.js +19 -0
  271. package/lib/resolvers/mutations/orders/removeCartItem.js.map +1 -0
  272. package/lib/resolvers/mutations/orders/removeOrder.d.ts +4 -0
  273. package/lib/resolvers/mutations/orders/removeOrder.js +16 -0
  274. package/lib/resolvers/mutations/orders/removeOrder.js.map +1 -0
  275. package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.d.ts +5 -0
  276. package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.js +19 -0
  277. package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.js.map +1 -0
  278. package/lib/resolvers/mutations/orders/setOrderPaymentProvider.d.ts +5 -0
  279. package/lib/resolvers/mutations/orders/setOrderPaymentProvider.js +19 -0
  280. package/lib/resolvers/mutations/orders/setOrderPaymentProvider.js.map +1 -0
  281. package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.d.ts +5 -0
  282. package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.js +37 -0
  283. package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.js.map +1 -0
  284. package/lib/resolvers/mutations/orders/updateCart.d.ts +12 -0
  285. package/lib/resolvers/mutations/orders/updateCart.js +26 -0
  286. package/lib/resolvers/mutations/orders/updateCart.js.map +1 -0
  287. package/lib/resolvers/mutations/orders/updateCartItem.d.ts +7 -0
  288. package/lib/resolvers/mutations/orders/updateCartItem.js +30 -0
  289. package/lib/resolvers/mutations/orders/updateCartItem.js.map +1 -0
  290. package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.d.ts +6 -0
  291. package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.js +35 -0
  292. package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.js.map +1 -0
  293. package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.d.ts +6 -0
  294. package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.js +30 -0
  295. package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.js.map +1 -0
  296. package/lib/resolvers/mutations/orders/updateOrderPaymentCard.d.ts +5 -0
  297. package/lib/resolvers/mutations/orders/updateOrderPaymentCard.js +29 -0
  298. package/lib/resolvers/mutations/orders/updateOrderPaymentCard.js.map +1 -0
  299. package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.d.ts +5 -0
  300. package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.js +31 -0
  301. package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.js.map +1 -0
  302. package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.d.ts +5 -0
  303. package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.js +31 -0
  304. package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.js.map +1 -0
  305. package/lib/resolvers/mutations/pageView.d.ts +7 -0
  306. package/lib/resolvers/mutations/pageView.js +11 -0
  307. package/lib/resolvers/mutations/pageView.js.map +1 -0
  308. package/lib/resolvers/mutations/payment/createPaymentProvider.d.ts +6 -0
  309. package/lib/resolvers/mutations/payment/createPaymentProvider.js +13 -0
  310. package/lib/resolvers/mutations/payment/createPaymentProvider.js.map +1 -0
  311. package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.d.ts +4 -0
  312. package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.js +21 -0
  313. package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.js.map +1 -0
  314. package/lib/resolvers/mutations/payment/registerPaymentCredentials.d.ts +5 -0
  315. package/lib/resolvers/mutations/payment/registerPaymentCredentials.js +16 -0
  316. package/lib/resolvers/mutations/payment/registerPaymentCredentials.js.map +1 -0
  317. package/lib/resolvers/mutations/payment/removePaymentCredentials.d.ts +5 -0
  318. package/lib/resolvers/mutations/payment/removePaymentCredentials.js +12 -0
  319. package/lib/resolvers/mutations/payment/removePaymentCredentials.js.map +1 -0
  320. package/lib/resolvers/mutations/payment/removePaymentProvider.d.ts +5 -0
  321. package/lib/resolvers/mutations/payment/removePaymentProvider.js +13 -0
  322. package/lib/resolvers/mutations/payment/removePaymentProvider.js.map +1 -0
  323. package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.d.ts +5 -0
  324. package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.js +17 -0
  325. package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.js.map +1 -0
  326. package/lib/resolvers/mutations/payment/updatePaymentProvider.d.ts +7 -0
  327. package/lib/resolvers/mutations/payment/updatePaymentProvider.js +13 -0
  328. package/lib/resolvers/mutations/payment/updatePaymentProvider.js.map +1 -0
  329. package/lib/resolvers/mutations/products/addProductAssignment.d.ts +7 -0
  330. package/lib/resolvers/mutations/products/addProductAssignment.js +30 -0
  331. package/lib/resolvers/mutations/products/addProductAssignment.js.map +1 -0
  332. package/lib/resolvers/mutations/products/addProductMedia.d.ts +5 -0
  333. package/lib/resolvers/mutations/products/addProductMedia.js +19 -0
  334. package/lib/resolvers/mutations/products/addProductMedia.js.map +1 -0
  335. package/lib/resolvers/mutations/products/addProductReviewVote.d.ts +7 -0
  336. package/lib/resolvers/mutations/products/addProductReviewVote.js +15 -0
  337. package/lib/resolvers/mutations/products/addProductReviewVote.js.map +1 -0
  338. package/lib/resolvers/mutations/products/createProduct.d.ts +7 -0
  339. package/lib/resolvers/mutations/products/createProduct.js +10 -0
  340. package/lib/resolvers/mutations/products/createProduct.js.map +1 -0
  341. package/lib/resolvers/mutations/products/createProductBundleItem.d.ts +6 -0
  342. package/lib/resolvers/mutations/products/createProductBundleItem.js +24 -0
  343. package/lib/resolvers/mutations/products/createProductBundleItem.js.map +1 -0
  344. package/lib/resolvers/mutations/products/createProductReview.d.ts +6 -0
  345. package/lib/resolvers/mutations/products/createProductReview.js +15 -0
  346. package/lib/resolvers/mutations/products/createProductReview.js.map +1 -0
  347. package/lib/resolvers/mutations/products/createProductVariation.d.ts +10 -0
  348. package/lib/resolvers/mutations/products/createProductVariation.js +26 -0
  349. package/lib/resolvers/mutations/products/createProductVariation.js.map +1 -0
  350. package/lib/resolvers/mutations/products/createProductVariationOption.d.ts +8 -0
  351. package/lib/resolvers/mutations/products/createProductVariationOption.js +17 -0
  352. package/lib/resolvers/mutations/products/createProductVariationOption.js.map +1 -0
  353. package/lib/resolvers/mutations/products/prepareProductMediaUpload.d.ts +5 -0
  354. package/lib/resolvers/mutations/products/prepareProductMediaUpload.js +12 -0
  355. package/lib/resolvers/mutations/products/prepareProductMediaUpload.js.map +1 -0
  356. package/lib/resolvers/mutations/products/publishProduct.d.ts +4 -0
  357. package/lib/resolvers/mutations/products/publishProduct.js +15 -0
  358. package/lib/resolvers/mutations/products/publishProduct.js.map +1 -0
  359. package/lib/resolvers/mutations/products/removeBundleItem.d.ts +5 -0
  360. package/lib/resolvers/mutations/products/removeBundleItem.js +20 -0
  361. package/lib/resolvers/mutations/products/removeBundleItem.js.map +1 -0
  362. package/lib/resolvers/mutations/products/removeProduct.d.ts +4 -0
  363. package/lib/resolvers/mutations/products/removeProduct.js +16 -0
  364. package/lib/resolvers/mutations/products/removeProduct.js.map +1 -0
  365. package/lib/resolvers/mutations/products/removeProductAssignment.d.ts +6 -0
  366. package/lib/resolvers/mutations/products/removeProductAssignment.js +21 -0
  367. package/lib/resolvers/mutations/products/removeProductAssignment.js.map +1 -0
  368. package/lib/resolvers/mutations/products/removeProductMedia.d.ts +4 -0
  369. package/lib/resolvers/mutations/products/removeProductMedia.js +16 -0
  370. package/lib/resolvers/mutations/products/removeProductMedia.js.map +1 -0
  371. package/lib/resolvers/mutations/products/removeProductReview.d.ts +4 -0
  372. package/lib/resolvers/mutations/products/removeProductReview.js +14 -0
  373. package/lib/resolvers/mutations/products/removeProductReview.js.map +1 -0
  374. package/lib/resolvers/mutations/products/removeProductReviewVote.d.ts +6 -0
  375. package/lib/resolvers/mutations/products/removeProductReviewVote.js +15 -0
  376. package/lib/resolvers/mutations/products/removeProductReviewVote.js.map +1 -0
  377. package/lib/resolvers/mutations/products/removeProductVariation.d.ts +4 -0
  378. package/lib/resolvers/mutations/products/removeProductVariation.js +15 -0
  379. package/lib/resolvers/mutations/products/removeProductVariation.js.map +1 -0
  380. package/lib/resolvers/mutations/products/removeProductVariationOption.d.ts +5 -0
  381. package/lib/resolvers/mutations/products/removeProductVariationOption.js +20 -0
  382. package/lib/resolvers/mutations/products/removeProductVariationOption.js.map +1 -0
  383. package/lib/resolvers/mutations/products/reorderProductMedia.d.ts +7 -0
  384. package/lib/resolvers/mutations/products/reorderProductMedia.js +7 -0
  385. package/lib/resolvers/mutations/products/reorderProductMedia.js.map +1 -0
  386. package/lib/resolvers/mutations/products/unpublishProduct.d.ts +4 -0
  387. package/lib/resolvers/mutations/products/unpublishProduct.js +15 -0
  388. package/lib/resolvers/mutations/products/unpublishProduct.js.map +1 -0
  389. package/lib/resolvers/mutations/products/updateProduct.d.ts +6 -0
  390. package/lib/resolvers/mutations/products/updateProduct.js +12 -0
  391. package/lib/resolvers/mutations/products/updateProduct.js.map +1 -0
  392. package/lib/resolvers/mutations/products/updateProductCommerce.d.ts +6 -0
  393. package/lib/resolvers/mutations/products/updateProductCommerce.js +12 -0
  394. package/lib/resolvers/mutations/products/updateProductCommerce.js.map +1 -0
  395. package/lib/resolvers/mutations/products/updateProductMediaTexts.d.ts +6 -0
  396. package/lib/resolvers/mutations/products/updateProductMediaTexts.js +14 -0
  397. package/lib/resolvers/mutations/products/updateProductMediaTexts.js.map +1 -0
  398. package/lib/resolvers/mutations/products/updateProductPlan.d.ts +6 -0
  399. package/lib/resolvers/mutations/products/updateProductPlan.js +19 -0
  400. package/lib/resolvers/mutations/products/updateProductPlan.js.map +1 -0
  401. package/lib/resolvers/mutations/products/updateProductReview.d.ts +6 -0
  402. package/lib/resolvers/mutations/products/updateProductReview.js +12 -0
  403. package/lib/resolvers/mutations/products/updateProductReview.js.map +1 -0
  404. package/lib/resolvers/mutations/products/updateProductSupply.d.ts +6 -0
  405. package/lib/resolvers/mutations/products/updateProductSupply.js +20 -0
  406. package/lib/resolvers/mutations/products/updateProductSupply.js.map +1 -0
  407. package/lib/resolvers/mutations/products/updateProductTexts.d.ts +5 -0
  408. package/lib/resolvers/mutations/products/updateProductTexts.js +13 -0
  409. package/lib/resolvers/mutations/products/updateProductTexts.js.map +1 -0
  410. package/lib/resolvers/mutations/products/updateProductVariationTexts.d.ts +7 -0
  411. package/lib/resolvers/mutations/products/updateProductVariationTexts.js +15 -0
  412. package/lib/resolvers/mutations/products/updateProductVariationTexts.js.map +1 -0
  413. package/lib/resolvers/mutations/products/updateProductWarehousing.d.ts +6 -0
  414. package/lib/resolvers/mutations/products/updateProductWarehousing.js +20 -0
  415. package/lib/resolvers/mutations/products/updateProductWarehousing.js.map +1 -0
  416. package/lib/resolvers/mutations/quotations/makeQuotationProposal.d.ts +5 -0
  417. package/lib/resolvers/mutations/quotations/makeQuotationProposal.js +18 -0
  418. package/lib/resolvers/mutations/quotations/makeQuotationProposal.js.map +1 -0
  419. package/lib/resolvers/mutations/quotations/rejectQuotation.d.ts +5 -0
  420. package/lib/resolvers/mutations/quotations/rejectQuotation.js +18 -0
  421. package/lib/resolvers/mutations/quotations/rejectQuotation.js.map +1 -0
  422. package/lib/resolvers/mutations/quotations/requestQuotation.d.ts +6 -0
  423. package/lib/resolvers/mutations/quotations/requestQuotation.js +20 -0
  424. package/lib/resolvers/mutations/quotations/requestQuotation.js.map +1 -0
  425. package/lib/resolvers/mutations/quotations/verifyQuotation.d.ts +5 -0
  426. package/lib/resolvers/mutations/quotations/verifyQuotation.js +18 -0
  427. package/lib/resolvers/mutations/quotations/verifyQuotation.js.map +1 -0
  428. package/lib/resolvers/mutations/users/heartbeat.d.ts +2 -0
  429. package/lib/resolvers/mutations/users/heartbeat.js +19 -0
  430. package/lib/resolvers/mutations/users/heartbeat.js.map +1 -0
  431. package/lib/resolvers/mutations/users/prepareUserAvatarUpload.d.ts +5 -0
  432. package/lib/resolvers/mutations/users/prepareUserAvatarUpload.js +16 -0
  433. package/lib/resolvers/mutations/users/prepareUserAvatarUpload.js.map +1 -0
  434. package/lib/resolvers/mutations/users/setRoles.d.ts +5 -0
  435. package/lib/resolvers/mutations/users/setRoles.js +12 -0
  436. package/lib/resolvers/mutations/users/setRoles.js.map +1 -0
  437. package/lib/resolvers/mutations/users/setUserTags.d.ts +5 -0
  438. package/lib/resolvers/mutations/users/setUserTags.js +12 -0
  439. package/lib/resolvers/mutations/users/setUserTags.js.map +1 -0
  440. package/lib/resolvers/mutations/users/updateUserAvatar.d.ts +5 -0
  441. package/lib/resolvers/mutations/users/updateUserAvatar.js +23 -0
  442. package/lib/resolvers/mutations/users/updateUserAvatar.js.map +1 -0
  443. package/lib/resolvers/mutations/users/updateUserProfile.d.ts +7 -0
  444. package/lib/resolvers/mutations/users/updateUserProfile.js +11 -0
  445. package/lib/resolvers/mutations/users/updateUserProfile.js.map +1 -0
  446. package/lib/resolvers/mutations/utils/getOrderCart.d.ts +6 -0
  447. package/lib/resolvers/mutations/utils/getOrderCart.js +18 -0
  448. package/lib/resolvers/mutations/utils/getOrderCart.js.map +1 -0
  449. package/lib/resolvers/mutations/warehousing/createWarehousingProvider.d.ts +5 -0
  450. package/lib/resolvers/mutations/warehousing/createWarehousingProvider.js +13 -0
  451. package/lib/resolvers/mutations/warehousing/createWarehousingProvider.js.map +1 -0
  452. package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.d.ts +4 -0
  453. package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.js +16 -0
  454. package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.js.map +1 -0
  455. package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.d.ts +6 -0
  456. package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.js +15 -0
  457. package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.js.map +1 -0
  458. package/lib/resolvers/mutations/worker/addWork.d.ts +3 -0
  459. package/lib/resolvers/mutations/worker/addWork.js +7 -0
  460. package/lib/resolvers/mutations/worker/addWork.js.map +1 -0
  461. package/lib/resolvers/mutations/worker/allocateWork.d.ts +5 -0
  462. package/lib/resolvers/mutations/worker/allocateWork.js +8 -0
  463. package/lib/resolvers/mutations/worker/allocateWork.js.map +1 -0
  464. package/lib/resolvers/mutations/worker/doWork.d.ts +3 -0
  465. package/lib/resolvers/mutations/worker/doWork.js +13 -0
  466. package/lib/resolvers/mutations/worker/doWork.js.map +1 -0
  467. package/lib/resolvers/mutations/worker/finishWork.d.ts +10 -0
  468. package/lib/resolvers/mutations/worker/finishWork.js +22 -0
  469. package/lib/resolvers/mutations/worker/finishWork.js.map +1 -0
  470. package/lib/resolvers/mutations/worker/removeWork.d.ts +4 -0
  471. package/lib/resolvers/mutations/worker/removeWork.js +14 -0
  472. package/lib/resolvers/mutations/worker/removeWork.js.map +1 -0
  473. package/lib/resolvers/queries/assortments/assortment.d.ts +5 -0
  474. package/lib/resolvers/queries/assortments/assortment.js +12 -0
  475. package/lib/resolvers/queries/assortments/assortment.js.map +1 -0
  476. package/lib/resolvers/queries/assortments/assortments.d.ts +7 -0
  477. package/lib/resolvers/queries/assortments/assortments.js +6 -0
  478. package/lib/resolvers/queries/assortments/assortments.js.map +1 -0
  479. package/lib/resolvers/queries/assortments/assortmentsCount.d.ts +3 -0
  480. package/lib/resolvers/queries/assortments/assortmentsCount.js +6 -0
  481. package/lib/resolvers/queries/assortments/assortmentsCount.js.map +1 -0
  482. package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.d.ts +4 -0
  483. package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.js +11 -0
  484. package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.js.map +1 -0
  485. package/lib/resolvers/queries/assortments/translatedAssortmentTexts.d.ts +4 -0
  486. package/lib/resolvers/queries/assortments/translatedAssortmentTexts.js +6 -0
  487. package/lib/resolvers/queries/assortments/translatedAssortmentTexts.js.map +1 -0
  488. package/lib/resolvers/queries/countries/countries.d.ts +7 -0
  489. package/lib/resolvers/queries/countries/countries.js +6 -0
  490. package/lib/resolvers/queries/countries/countries.js.map +1 -0
  491. package/lib/resolvers/queries/countries/countriesCount.d.ts +3 -0
  492. package/lib/resolvers/queries/countries/countriesCount.js +8 -0
  493. package/lib/resolvers/queries/countries/countriesCount.js.map +1 -0
  494. package/lib/resolvers/queries/countries/country.d.ts +4 -0
  495. package/lib/resolvers/queries/countries/country.js +9 -0
  496. package/lib/resolvers/queries/countries/country.js.map +1 -0
  497. package/lib/resolvers/queries/currencies/currencies.d.ts +7 -0
  498. package/lib/resolvers/queries/currencies/currencies.js +6 -0
  499. package/lib/resolvers/queries/currencies/currencies.js.map +1 -0
  500. package/lib/resolvers/queries/currencies/currenciesCount.d.ts +3 -0
  501. package/lib/resolvers/queries/currencies/currenciesCount.js +8 -0
  502. package/lib/resolvers/queries/currencies/currenciesCount.js.map +1 -0
  503. package/lib/resolvers/queries/currencies/currency.d.ts +4 -0
  504. package/lib/resolvers/queries/currencies/currency.js +9 -0
  505. package/lib/resolvers/queries/currencies/currency.js.map +1 -0
  506. package/lib/resolvers/queries/delivery/deliveryInterfaces.d.ts +5 -0
  507. package/lib/resolvers/queries/delivery/deliveryInterfaces.js +6 -0
  508. package/lib/resolvers/queries/delivery/deliveryInterfaces.js.map +1 -0
  509. package/lib/resolvers/queries/delivery/deliveryProvider.d.ts +4 -0
  510. package/lib/resolvers/queries/delivery/deliveryProvider.js +9 -0
  511. package/lib/resolvers/queries/delivery/deliveryProvider.js.map +1 -0
  512. package/lib/resolvers/queries/delivery/deliveryProviders.d.ts +3 -0
  513. package/lib/resolvers/queries/delivery/deliveryProviders.js +6 -0
  514. package/lib/resolvers/queries/delivery/deliveryProviders.js.map +1 -0
  515. package/lib/resolvers/queries/delivery/deliveryProvidersCount.d.ts +3 -0
  516. package/lib/resolvers/queries/delivery/deliveryProvidersCount.js +6 -0
  517. package/lib/resolvers/queries/delivery/deliveryProvidersCount.js.map +1 -0
  518. package/lib/resolvers/queries/enrollments/enrollment.d.ts +4 -0
  519. package/lib/resolvers/queries/enrollments/enrollment.js +9 -0
  520. package/lib/resolvers/queries/enrollments/enrollment.js.map +1 -0
  521. package/lib/resolvers/queries/enrollments/enrollments.d.ts +7 -0
  522. package/lib/resolvers/queries/enrollments/enrollments.js +6 -0
  523. package/lib/resolvers/queries/enrollments/enrollments.js.map +1 -0
  524. package/lib/resolvers/queries/enrollments/enrollmentsCount.d.ts +3 -0
  525. package/lib/resolvers/queries/enrollments/enrollmentsCount.js +6 -0
  526. package/lib/resolvers/queries/enrollments/enrollmentsCount.js.map +1 -0
  527. package/lib/resolvers/queries/events/event.d.ts +5 -0
  528. package/lib/resolvers/queries/events/event.js +6 -0
  529. package/lib/resolvers/queries/events/event.js.map +1 -0
  530. package/lib/resolvers/queries/events/events.d.ts +7 -0
  531. package/lib/resolvers/queries/events/events.js +8 -0
  532. package/lib/resolvers/queries/events/events.js.map +1 -0
  533. package/lib/resolvers/queries/events/eventsCounts.d.ts +3 -0
  534. package/lib/resolvers/queries/events/eventsCounts.js +7 -0
  535. package/lib/resolvers/queries/events/eventsCounts.js.map +1 -0
  536. package/lib/resolvers/queries/filters/filter.d.ts +4 -0
  537. package/lib/resolvers/queries/filters/filter.js +9 -0
  538. package/lib/resolvers/queries/filters/filter.js.map +1 -0
  539. package/lib/resolvers/queries/filters/filters.d.ts +7 -0
  540. package/lib/resolvers/queries/filters/filters.js +8 -0
  541. package/lib/resolvers/queries/filters/filters.js.map +1 -0
  542. package/lib/resolvers/queries/filters/filtersCount.d.ts +3 -0
  543. package/lib/resolvers/queries/filters/filtersCount.js +8 -0
  544. package/lib/resolvers/queries/filters/filtersCount.js.map +1 -0
  545. package/lib/resolvers/queries/filters/searchAssortments.d.ts +3 -0
  546. package/lib/resolvers/queries/filters/searchAssortments.js +13 -0
  547. package/lib/resolvers/queries/filters/searchAssortments.js.map +1 -0
  548. package/lib/resolvers/queries/filters/searchProducts.d.ts +9 -0
  549. package/lib/resolvers/queries/filters/searchProducts.js +23 -0
  550. package/lib/resolvers/queries/filters/searchProducts.js.map +1 -0
  551. package/lib/resolvers/queries/filters/translatedFilterTexts.d.ts +5 -0
  552. package/lib/resolvers/queries/filters/translatedFilterTexts.js +11 -0
  553. package/lib/resolvers/queries/filters/translatedFilterTexts.js.map +1 -0
  554. package/lib/resolvers/queries/index.d.ts +67 -0
  555. package/lib/resolvers/queries/index.js +131 -0
  556. package/lib/resolvers/queries/index.js.map +1 -0
  557. package/lib/resolvers/queries/languages/language.d.ts +4 -0
  558. package/lib/resolvers/queries/languages/language.js +9 -0
  559. package/lib/resolvers/queries/languages/language.js.map +1 -0
  560. package/lib/resolvers/queries/languages/languages.d.ts +7 -0
  561. package/lib/resolvers/queries/languages/languages.js +6 -0
  562. package/lib/resolvers/queries/languages/languages.js.map +1 -0
  563. package/lib/resolvers/queries/languages/languagesCount.d.ts +3 -0
  564. package/lib/resolvers/queries/languages/languagesCount.js +8 -0
  565. package/lib/resolvers/queries/languages/languagesCount.js.map +1 -0
  566. package/lib/resolvers/queries/orders/order.d.ts +4 -0
  567. package/lib/resolvers/queries/orders/order.js +9 -0
  568. package/lib/resolvers/queries/orders/order.js.map +1 -0
  569. package/lib/resolvers/queries/orders/orders.d.ts +6 -0
  570. package/lib/resolvers/queries/orders/orders.js +9 -0
  571. package/lib/resolvers/queries/orders/orders.js.map +1 -0
  572. package/lib/resolvers/queries/orders/ordersCount.d.ts +3 -0
  573. package/lib/resolvers/queries/orders/ordersCount.js +6 -0
  574. package/lib/resolvers/queries/orders/ordersCount.js.map +1 -0
  575. package/lib/resolvers/queries/payment/paymentInterfaces.d.ts +5 -0
  576. package/lib/resolvers/queries/payment/paymentInterfaces.js +6 -0
  577. package/lib/resolvers/queries/payment/paymentInterfaces.js.map +1 -0
  578. package/lib/resolvers/queries/payment/paymentProvider.d.ts +4 -0
  579. package/lib/resolvers/queries/payment/paymentProvider.js +11 -0
  580. package/lib/resolvers/queries/payment/paymentProvider.js.map +1 -0
  581. package/lib/resolvers/queries/payment/paymentProviders.d.ts +3 -0
  582. package/lib/resolvers/queries/payment/paymentProviders.js +6 -0
  583. package/lib/resolvers/queries/payment/paymentProviders.js.map +1 -0
  584. package/lib/resolvers/queries/payment/paymentProvidersCount.d.ts +3 -0
  585. package/lib/resolvers/queries/payment/paymentProvidersCount.js +6 -0
  586. package/lib/resolvers/queries/payment/paymentProvidersCount.js.map +1 -0
  587. package/lib/resolvers/queries/products/product.d.ts +5 -0
  588. package/lib/resolvers/queries/products/product.js +9 -0
  589. package/lib/resolvers/queries/products/product.js.map +1 -0
  590. package/lib/resolvers/queries/products/productCatalogPrices.d.ts +4 -0
  591. package/lib/resolvers/queries/products/productCatalogPrices.js +12 -0
  592. package/lib/resolvers/queries/products/productCatalogPrices.js.map +1 -0
  593. package/lib/resolvers/queries/products/productReview.d.ts +4 -0
  594. package/lib/resolvers/queries/products/productReview.js +9 -0
  595. package/lib/resolvers/queries/products/productReview.js.map +1 -0
  596. package/lib/resolvers/queries/products/productReviews.d.ts +7 -0
  597. package/lib/resolvers/queries/products/productReviews.js +9 -0
  598. package/lib/resolvers/queries/products/productReviews.js.map +1 -0
  599. package/lib/resolvers/queries/products/productReviewsCount.d.ts +3 -0
  600. package/lib/resolvers/queries/products/productReviewsCount.js +6 -0
  601. package/lib/resolvers/queries/products/productReviewsCount.js.map +1 -0
  602. package/lib/resolvers/queries/products/products.d.ts +7 -0
  603. package/lib/resolvers/queries/products/products.js +6 -0
  604. package/lib/resolvers/queries/products/products.js.map +1 -0
  605. package/lib/resolvers/queries/products/productsCount.d.ts +3 -0
  606. package/lib/resolvers/queries/products/productsCount.js +6 -0
  607. package/lib/resolvers/queries/products/productsCount.js.map +1 -0
  608. package/lib/resolvers/queries/products/translatedProductMediaTexts.d.ts +4 -0
  609. package/lib/resolvers/queries/products/translatedProductMediaTexts.js +6 -0
  610. package/lib/resolvers/queries/products/translatedProductMediaTexts.js.map +1 -0
  611. package/lib/resolvers/queries/products/translatedProductTexts.d.ts +4 -0
  612. package/lib/resolvers/queries/products/translatedProductTexts.js +6 -0
  613. package/lib/resolvers/queries/products/translatedProductTexts.js.map +1 -0
  614. package/lib/resolvers/queries/products/translatedProductVariationTexts.d.ts +5 -0
  615. package/lib/resolvers/queries/products/translatedProductVariationTexts.js +12 -0
  616. package/lib/resolvers/queries/products/translatedProductVariationTexts.js.map +1 -0
  617. package/lib/resolvers/queries/quotations/quotation.d.ts +4 -0
  618. package/lib/resolvers/queries/quotations/quotation.js +9 -0
  619. package/lib/resolvers/queries/quotations/quotation.js.map +1 -0
  620. package/lib/resolvers/queries/quotations/quotations.d.ts +7 -0
  621. package/lib/resolvers/queries/quotations/quotations.js +6 -0
  622. package/lib/resolvers/queries/quotations/quotations.js.map +1 -0
  623. package/lib/resolvers/queries/quotations/quotationsCount.d.ts +3 -0
  624. package/lib/resolvers/queries/quotations/quotationsCount.js +6 -0
  625. package/lib/resolvers/queries/quotations/quotationsCount.js.map +1 -0
  626. package/lib/resolvers/queries/shopInfo.d.ts +5 -0
  627. package/lib/resolvers/queries/shopInfo.js +10 -0
  628. package/lib/resolvers/queries/shopInfo.js.map +1 -0
  629. package/lib/resolvers/queries/users/me.d.ts +2 -0
  630. package/lib/resolvers/queries/users/me.js +6 -0
  631. package/lib/resolvers/queries/users/me.js.map +1 -0
  632. package/lib/resolvers/queries/users/user.d.ts +4 -0
  633. package/lib/resolvers/queries/users/user.js +6 -0
  634. package/lib/resolvers/queries/users/user.js.map +1 -0
  635. package/lib/resolvers/queries/users/users.d.ts +6 -0
  636. package/lib/resolvers/queries/users/users.js +8 -0
  637. package/lib/resolvers/queries/users/users.js.map +1 -0
  638. package/lib/resolvers/queries/users/usersCount.d.ts +3 -0
  639. package/lib/resolvers/queries/users/usersCount.js +8 -0
  640. package/lib/resolvers/queries/users/usersCount.js.map +1 -0
  641. package/lib/resolvers/queries/warehousing/warehousingInterfaces.d.ts +5 -0
  642. package/lib/resolvers/queries/warehousing/warehousingInterfaces.js +6 -0
  643. package/lib/resolvers/queries/warehousing/warehousingInterfaces.js.map +1 -0
  644. package/lib/resolvers/queries/warehousing/warehousingProvider.d.ts +4 -0
  645. package/lib/resolvers/queries/warehousing/warehousingProvider.js +11 -0
  646. package/lib/resolvers/queries/warehousing/warehousingProvider.js.map +1 -0
  647. package/lib/resolvers/queries/warehousing/warehousingProviders.d.ts +3 -0
  648. package/lib/resolvers/queries/warehousing/warehousingProviders.js +6 -0
  649. package/lib/resolvers/queries/warehousing/warehousingProviders.js.map +1 -0
  650. package/lib/resolvers/queries/warehousing/warehousingProvidersCount.d.ts +3 -0
  651. package/lib/resolvers/queries/warehousing/warehousingProvidersCount.js +6 -0
  652. package/lib/resolvers/queries/warehousing/warehousingProvidersCount.js.map +1 -0
  653. package/lib/resolvers/queries/worker/activeWorkTypes.d.ts +2 -0
  654. package/lib/resolvers/queries/worker/activeWorkTypes.js +6 -0
  655. package/lib/resolvers/queries/worker/activeWorkTypes.js.map +1 -0
  656. package/lib/resolvers/queries/worker/work.d.ts +4 -0
  657. package/lib/resolvers/queries/worker/work.js +9 -0
  658. package/lib/resolvers/queries/worker/work.js.map +1 -0
  659. package/lib/resolvers/queries/worker/workQueue.d.ts +14 -0
  660. package/lib/resolvers/queries/worker/workQueue.js +16 -0
  661. package/lib/resolvers/queries/worker/workQueue.js.map +1 -0
  662. package/lib/resolvers/queries/worker/workQueueCount.d.ts +3 -0
  663. package/lib/resolvers/queries/worker/workQueueCount.js +8 -0
  664. package/lib/resolvers/queries/worker/workQueueCount.js.map +1 -0
  665. package/lib/resolvers/type/assortment/assortment-filter-types.d.ts +10 -0
  666. package/lib/resolvers/type/assortment/assortment-filter-types.js +9 -0
  667. package/lib/resolvers/type/assortment/assortment-filter-types.js.map +1 -0
  668. package/lib/resolvers/type/assortment/assortment-link-types.d.ts +9 -0
  669. package/lib/resolvers/type/assortment/assortment-link-types.js +9 -0
  670. package/lib/resolvers/type/assortment/assortment-link-types.js.map +1 -0
  671. package/lib/resolvers/type/assortment/assortment-media-types.d.ts +12 -0
  672. package/lib/resolvers/type/assortment/assortment-media-types.js +8 -0
  673. package/lib/resolvers/type/assortment/assortment-media-types.js.map +1 -0
  674. package/lib/resolvers/type/assortment/assortment-path-link-types.d.ts +14 -0
  675. package/lib/resolvers/type/assortment/assortment-path-link-types.js +23 -0
  676. package/lib/resolvers/type/assortment/assortment-path-link-types.js.map +1 -0
  677. package/lib/resolvers/type/assortment/assortment-product-types.d.ts +10 -0
  678. package/lib/resolvers/type/assortment/assortment-product-types.js +9 -0
  679. package/lib/resolvers/type/assortment/assortment-product-types.js.map +1 -0
  680. package/lib/resolvers/type/assortment/assortment-types.d.ts +35 -0
  681. package/lib/resolvers/type/assortment/assortment-types.js +69 -0
  682. package/lib/resolvers/type/assortment/assortment-types.js.map +1 -0
  683. package/lib/resolvers/type/bookmark-types.d.ts +11 -0
  684. package/lib/resolvers/type/bookmark-types.js +9 -0
  685. package/lib/resolvers/type/bookmark-types.js.map +1 -0
  686. package/lib/resolvers/type/color-types.d.ts +17 -0
  687. package/lib/resolvers/type/color-types.js +31 -0
  688. package/lib/resolvers/type/color-types.js.map +1 -0
  689. package/lib/resolvers/type/country-types.d.ts +14 -0
  690. package/lib/resolvers/type/country-types.js +20 -0
  691. package/lib/resolvers/type/country-types.js.map +1 -0
  692. package/lib/resolvers/type/delivery-provider-types.d.ts +27 -0
  693. package/lib/resolvers/type/delivery-provider-types.js +60 -0
  694. package/lib/resolvers/type/delivery-provider-types.js.map +1 -0
  695. package/lib/resolvers/type/dimensions-types.d.ts +22 -0
  696. package/lib/resolvers/type/dimensions-types.js +51 -0
  697. package/lib/resolvers/type/dimensions-types.js.map +1 -0
  698. package/lib/resolvers/type/dispatch-types.d.ts +14 -0
  699. package/lib/resolvers/type/dispatch-types.js +16 -0
  700. package/lib/resolvers/type/dispatch-types.js.map +1 -0
  701. package/lib/resolvers/type/enrollment/enrollment-delivery-types.d.ts +9 -0
  702. package/lib/resolvers/type/enrollment/enrollment-delivery-types.js +6 -0
  703. package/lib/resolvers/type/enrollment/enrollment-delivery-types.js.map +1 -0
  704. package/lib/resolvers/type/enrollment/enrollment-payment-types.d.ts +9 -0
  705. package/lib/resolvers/type/enrollment/enrollment-payment-types.js +8 -0
  706. package/lib/resolvers/type/enrollment/enrollment-payment-types.js.map +1 -0
  707. package/lib/resolvers/type/enrollment/enrollment-period-types.d.ts +9 -0
  708. package/lib/resolvers/type/enrollment/enrollment-period-types.js +6 -0
  709. package/lib/resolvers/type/enrollment/enrollment-period-types.js.map +1 -0
  710. package/lib/resolvers/type/enrollment/enrollment-plan-tyes.d.ts +9 -0
  711. package/lib/resolvers/type/enrollment/enrollment-plan-tyes.js +6 -0
  712. package/lib/resolvers/type/enrollment/enrollment-plan-tyes.js.map +1 -0
  713. package/lib/resolvers/type/enrollment/enrollment-types.d.ts +17 -0
  714. package/lib/resolvers/type/enrollment/enrollment-types.js +16 -0
  715. package/lib/resolvers/type/enrollment/enrollment-types.js.map +1 -0
  716. package/lib/resolvers/type/event-types.d.ts +8 -0
  717. package/lib/resolvers/type/event-types.js +6 -0
  718. package/lib/resolvers/type/event-types.js.map +1 -0
  719. package/lib/resolvers/type/filter/filter-option-types.d.ts +12 -0
  720. package/lib/resolvers/type/filter/filter-option-types.js +17 -0
  721. package/lib/resolvers/type/filter/filter-option-types.js.map +1 -0
  722. package/lib/resolvers/type/filter/filter-types.d.ts +11 -0
  723. package/lib/resolvers/type/filter/filter-types.js +17 -0
  724. package/lib/resolvers/type/filter/filter-types.js.map +1 -0
  725. package/lib/resolvers/type/filter/loaded-filter-option-types.d.ts +1 -0
  726. package/lib/resolvers/type/filter/loaded-filter-option-types.js +2 -0
  727. package/lib/resolvers/type/filter/loaded-filter-option-types.js.map +1 -0
  728. package/lib/resolvers/type/filter/loaded-filter-types.d.ts +1 -0
  729. package/lib/resolvers/type/filter/loaded-filter-types.js +2 -0
  730. package/lib/resolvers/type/filter/loaded-filter-types.js.map +1 -0
  731. package/lib/resolvers/type/index.d.ts +131 -0
  732. package/lib/resolvers/type/index.js +132 -0
  733. package/lib/resolvers/type/index.js.map +1 -0
  734. package/lib/resolvers/type/language-types.d.ts +7 -0
  735. package/lib/resolvers/type/language-types.js +9 -0
  736. package/lib/resolvers/type/language-types.js.map +1 -0
  737. package/lib/resolvers/type/login-method-response-types.d.ts +23 -0
  738. package/lib/resolvers/type/login-method-response-types.js +8 -0
  739. package/lib/resolvers/type/login-method-response-types.js.map +1 -0
  740. package/lib/resolvers/type/media-types.d.ts +6 -0
  741. package/lib/resolvers/type/media-types.js +6 -0
  742. package/lib/resolvers/type/media-types.js.map +1 -0
  743. package/lib/resolvers/type/order/order-delivery-discount-types.d.ts +12 -0
  744. package/lib/resolvers/type/order/order-delivery-discount-types.js +22 -0
  745. package/lib/resolvers/type/order/order-delivery-discount-types.js.map +1 -0
  746. package/lib/resolvers/type/order/order-delivery-pickup-types.d.ts +13 -0
  747. package/lib/resolvers/type/order/order-delivery-pickup-types.js +40 -0
  748. package/lib/resolvers/type/order/order-delivery-pickup-types.js.map +1 -0
  749. package/lib/resolvers/type/order/order-delivery-shipping-types.d.ts +13 -0
  750. package/lib/resolvers/type/order/order-delivery-shipping-types.js +27 -0
  751. package/lib/resolvers/type/order/order-delivery-shipping-types.js.map +1 -0
  752. package/lib/resolvers/type/order/order-delivery-types.d.ts +5 -0
  753. package/lib/resolvers/type/order/order-delivery-types.js +19 -0
  754. package/lib/resolvers/type/order/order-delivery-types.js.map +1 -0
  755. package/lib/resolvers/type/order/order-discount-types.d.ts +19 -0
  756. package/lib/resolvers/type/order/order-discount-types.js +31 -0
  757. package/lib/resolvers/type/order/order-discount-types.js.map +1 -0
  758. package/lib/resolvers/type/order/order-discountable-types.d.ts +17 -0
  759. package/lib/resolvers/type/order/order-discountable-types.js +21 -0
  760. package/lib/resolvers/type/order/order-discountable-types.js.map +1 -0
  761. package/lib/resolvers/type/order/order-global-discount-types.d.ts +15 -0
  762. package/lib/resolvers/type/order/order-global-discount-types.js +22 -0
  763. package/lib/resolvers/type/order/order-global-discount-types.js.map +1 -0
  764. package/lib/resolvers/type/order/order-item-discount-types.d.ts +12 -0
  765. package/lib/resolvers/type/order/order-item-discount-types.js +22 -0
  766. package/lib/resolvers/type/order/order-item-discount-types.js.map +1 -0
  767. package/lib/resolvers/type/order/order-item-types.d.ts +29 -0
  768. package/lib/resolvers/type/order/order-item-types.js +106 -0
  769. package/lib/resolvers/type/order/order-item-types.js.map +1 -0
  770. package/lib/resolvers/type/order/order-payment-card-types.d.ts +11 -0
  771. package/lib/resolvers/type/order/order-payment-card-types.js +24 -0
  772. package/lib/resolvers/type/order/order-payment-card-types.js.map +1 -0
  773. package/lib/resolvers/type/order/order-payment-discount-types.d.ts +15 -0
  774. package/lib/resolvers/type/order/order-payment-discount-types.js +16 -0
  775. package/lib/resolvers/type/order/order-payment-discount-types.js.map +1 -0
  776. package/lib/resolvers/type/order/order-payment-generic-types.d.ts +11 -0
  777. package/lib/resolvers/type/order/order-payment-generic-types.js +24 -0
  778. package/lib/resolvers/type/order/order-payment-generic-types.js.map +1 -0
  779. package/lib/resolvers/type/order/order-payment-invoice-types.d.ts +11 -0
  780. package/lib/resolvers/type/order/order-payment-invoice-types.js +24 -0
  781. package/lib/resolvers/type/order/order-payment-invoice-types.js.map +1 -0
  782. package/lib/resolvers/type/order/order-payment-types.d.ts +5 -0
  783. package/lib/resolvers/type/order/order-payment-types.js +20 -0
  784. package/lib/resolvers/type/order/order-payment-types.js.map +1 -0
  785. package/lib/resolvers/type/order/order-types.d.ts +36 -0
  786. package/lib/resolvers/type/order/order-types.js +47 -0
  787. package/lib/resolvers/type/order/order-types.js.map +1 -0
  788. package/lib/resolvers/type/payment/payment-credentials-types.d.ts +2 -0
  789. package/lib/resolvers/type/payment/payment-credentials-types.js +15 -0
  790. package/lib/resolvers/type/payment/payment-credentials-types.js.map +1 -0
  791. package/lib/resolvers/type/payment/payment-provider-types.d.ts +12 -0
  792. package/lib/resolvers/type/payment/payment-provider-types.js +17 -0
  793. package/lib/resolvers/type/payment/payment-provider-types.js.map +1 -0
  794. package/lib/resolvers/type/price-types.d.ts +16 -0
  795. package/lib/resolvers/type/price-types.js +19 -0
  796. package/lib/resolvers/type/price-types.js.map +1 -0
  797. package/lib/resolvers/type/product/product-assortment-path-types.d.ts +2 -0
  798. package/lib/resolvers/type/product/product-assortment-path-types.js +8 -0
  799. package/lib/resolvers/type/product/product-assortment-path-types.js.map +1 -0
  800. package/lib/resolvers/type/product/product-bundle-item-types.d.ts +2 -0
  801. package/lib/resolvers/type/product/product-bundle-item-types.js +8 -0
  802. package/lib/resolvers/type/product/product-bundle-item-types.js.map +1 -0
  803. package/lib/resolvers/type/product/product-bundle-types.d.ts +2 -0
  804. package/lib/resolvers/type/product/product-bundle-types.js +8 -0
  805. package/lib/resolvers/type/product/product-bundle-types.js.map +1 -0
  806. package/lib/resolvers/type/product/product-catalog-price-types.d.ts +2 -0
  807. package/lib/resolvers/type/product/product-catalog-price-types.js +15 -0
  808. package/lib/resolvers/type/product/product-catalog-price-types.js.map +1 -0
  809. package/lib/resolvers/type/product/product-configurable-types.d.ts +2 -0
  810. package/lib/resolvers/type/product/product-configurable-types.js +49 -0
  811. package/lib/resolvers/type/product/product-configurable-types.js.map +1 -0
  812. package/lib/resolvers/type/product/product-discount.d.ts +19 -0
  813. package/lib/resolvers/type/product/product-discount.js +30 -0
  814. package/lib/resolvers/type/product/product-discount.js.map +1 -0
  815. package/lib/resolvers/type/product/product-media-types.d.ts +2 -0
  816. package/lib/resolvers/type/product/product-media-types.js +12 -0
  817. package/lib/resolvers/type/product/product-media-types.js.map +1 -0
  818. package/lib/resolvers/type/product/product-plan-types.d.ts +2 -0
  819. package/lib/resolvers/type/product/product-plan-types.js +53 -0
  820. package/lib/resolvers/type/product/product-plan-types.js.map +1 -0
  821. package/lib/resolvers/type/product/product-review-types.d.ts +15 -0
  822. package/lib/resolvers/type/product/product-review-types.js +15 -0
  823. package/lib/resolvers/type/product/product-review-types.js.map +1 -0
  824. package/lib/resolvers/type/product/product-simple-types.d.ts +2 -0
  825. package/lib/resolvers/type/product/product-simple-types.js +77 -0
  826. package/lib/resolvers/type/product/product-simple-types.js.map +1 -0
  827. package/lib/resolvers/type/product/product-types.d.ts +2 -0
  828. package/lib/resolvers/type/product/product-types.js +58 -0
  829. package/lib/resolvers/type/product/product-types.js.map +1 -0
  830. package/lib/resolvers/type/product/product-variation-assignment-types.d.ts +2 -0
  831. package/lib/resolvers/type/product/product-variation-assignment-types.js +18 -0
  832. package/lib/resolvers/type/product/product-variation-assignment-types.js.map +1 -0
  833. package/lib/resolvers/type/product/product-variation-assignment-vector.d.ts +2 -0
  834. package/lib/resolvers/type/product/product-variation-assignment-vector.js +17 -0
  835. package/lib/resolvers/type/product/product-variation-assignment-vector.js.map +1 -0
  836. package/lib/resolvers/type/product/product-variation-option-types.d.ts +2 -0
  837. package/lib/resolvers/type/product/product-variation-option-types.js +16 -0
  838. package/lib/resolvers/type/product/product-variation-option-types.js.map +1 -0
  839. package/lib/resolvers/type/product/product-variation-types.d.ts +2 -0
  840. package/lib/resolvers/type/product/product-variation-types.js +12 -0
  841. package/lib/resolvers/type/product/product-variation-types.js.map +1 -0
  842. package/lib/resolvers/type/quotation-types.d.ts +23 -0
  843. package/lib/resolvers/type/quotation-types.js +21 -0
  844. package/lib/resolvers/type/quotation-types.js.map +1 -0
  845. package/lib/resolvers/type/shop-types.d.ts +12 -0
  846. package/lib/resolvers/type/shop-types.js +20 -0
  847. package/lib/resolvers/type/shop-types.js.map +1 -0
  848. package/lib/resolvers/type/stock-types.d.ts +13 -0
  849. package/lib/resolvers/type/stock-types.js +15 -0
  850. package/lib/resolvers/type/stock-types.js.map +1 -0
  851. package/lib/resolvers/type/user-types.d.ts +53 -0
  852. package/lib/resolvers/type/user-types.js +117 -0
  853. package/lib/resolvers/type/user-types.js.map +1 -0
  854. package/lib/resolvers/type/warehousing-provider-types.d.ts +2 -0
  855. package/lib/resolvers/type/warehousing-provider-types.js +15 -0
  856. package/lib/resolvers/type/warehousing-provider-types.js.map +1 -0
  857. package/lib/resolvers/type/work-types.d.ts +10 -0
  858. package/lib/resolvers/type/work-types.js +14 -0
  859. package/lib/resolvers/type/work-types.js.map +1 -0
  860. package/lib/roles/admin.d.ts +1 -0
  861. package/lib/roles/admin.js +72 -0
  862. package/lib/roles/admin.js.map +1 -0
  863. package/lib/roles/all.d.ts +1 -0
  864. package/lib/roles/all.js +97 -0
  865. package/lib/roles/all.js.map +1 -0
  866. package/lib/roles/index.d.ts +16 -0
  867. package/lib/roles/index.js +117 -0
  868. package/lib/roles/index.js.map +1 -0
  869. package/lib/roles/loggedIn.d.ts +1 -0
  870. package/lib/roles/loggedIn.js +167 -0
  871. package/lib/roles/loggedIn.js.map +1 -0
  872. package/lib/schema/index.d.ts +2 -0
  873. package/lib/schema/index.js +7 -0
  874. package/lib/schema/index.js.map +1 -0
  875. package/lib/schema/inputTypes.d.ts +2 -0
  876. package/lib/schema/inputTypes.js +294 -0
  877. package/lib/schema/inputTypes.js.map +1 -0
  878. package/lib/schema/mutation.d.ts +2 -0
  879. package/lib/schema/mutation.js +852 -0
  880. package/lib/schema/mutation.js.map +1 -0
  881. package/lib/schema/query.d.ts +2 -0
  882. package/lib/schema/query.js +435 -0
  883. package/lib/schema/query.js.map +1 -0
  884. package/lib/schema/scalars.d.ts +2 -0
  885. package/lib/schema/scalars.js +10 -0
  886. package/lib/schema/scalars.js.map +1 -0
  887. package/lib/schema/types/address.d.ts +2 -0
  888. package/lib/schema/types/address.js +16 -0
  889. package/lib/schema/types/address.js.map +1 -0
  890. package/lib/schema/types/assortment.d.ts +2 -0
  891. package/lib/schema/types/assortment.js +100 -0
  892. package/lib/schema/types/assortment.js.map +1 -0
  893. package/lib/schema/types/bookmark.d.ts +2 -0
  894. package/lib/schema/types/bookmark.js +11 -0
  895. package/lib/schema/types/bookmark.js.map +1 -0
  896. package/lib/schema/types/color.d.ts +2 -0
  897. package/lib/schema/types/color.js +12 -0
  898. package/lib/schema/types/color.js.map +1 -0
  899. package/lib/schema/types/contact.d.ts +2 -0
  900. package/lib/schema/types/contact.js +9 -0
  901. package/lib/schema/types/contact.js.map +1 -0
  902. package/lib/schema/types/country.d.ts +2 -0
  903. package/lib/schema/types/country.js +17 -0
  904. package/lib/schema/types/country.js.map +1 -0
  905. package/lib/schema/types/currency.d.ts +2 -0
  906. package/lib/schema/types/currency.js +11 -0
  907. package/lib/schema/types/currency.js.map +1 -0
  908. package/lib/schema/types/delivery.d.ts +2 -0
  909. package/lib/schema/types/delivery.js +42 -0
  910. package/lib/schema/types/delivery.js.map +1 -0
  911. package/lib/schema/types/dimensions.d.ts +2 -0
  912. package/lib/schema/types/dimensions.js +23 -0
  913. package/lib/schema/types/dimensions.js.map +1 -0
  914. package/lib/schema/types/discount.d.ts +2 -0
  915. package/lib/schema/types/discount.js +12 -0
  916. package/lib/schema/types/discount.js.map +1 -0
  917. package/lib/schema/types/dispatch.d.ts +2 -0
  918. package/lib/schema/types/dispatch.js +12 -0
  919. package/lib/schema/types/dispatch.js.map +1 -0
  920. package/lib/schema/types/enrollment.d.ts +2 -0
  921. package/lib/schema/types/enrollment.js +69 -0
  922. package/lib/schema/types/enrollment.js.map +1 -0
  923. package/lib/schema/types/events.d.ts +2 -0
  924. package/lib/schema/types/events.js +15 -0
  925. package/lib/schema/types/events.js.map +1 -0
  926. package/lib/schema/types/files.d.ts +2 -0
  927. package/lib/schema/types/files.js +10 -0
  928. package/lib/schema/types/files.js.map +1 -0
  929. package/lib/schema/types/filter.d.ts +2 -0
  930. package/lib/schema/types/filter.js +67 -0
  931. package/lib/schema/types/filter.js.map +1 -0
  932. package/lib/schema/types/geo-position.d.ts +2 -0
  933. package/lib/schema/types/geo-position.js +10 -0
  934. package/lib/schema/types/geo-position.js.map +1 -0
  935. package/lib/schema/types/index.d.ts +2 -0
  936. package/lib/schema/types/index.js +63 -0
  937. package/lib/schema/types/index.js.map +1 -0
  938. package/lib/schema/types/language.d.ts +2 -0
  939. package/lib/schema/types/language.js +16 -0
  940. package/lib/schema/types/language.js.map +1 -0
  941. package/lib/schema/types/log.d.ts +2 -0
  942. package/lib/schema/types/log.js +16 -0
  943. package/lib/schema/types/log.js.map +1 -0
  944. package/lib/schema/types/media.d.ts +2 -0
  945. package/lib/schema/types/media.js +12 -0
  946. package/lib/schema/types/media.js.map +1 -0
  947. package/lib/schema/types/order/delivery.d.ts +2 -0
  948. package/lib/schema/types/order/delivery.js +51 -0
  949. package/lib/schema/types/order/delivery.js.map +1 -0
  950. package/lib/schema/types/order/discount.d.ts +2 -0
  951. package/lib/schema/types/order/discount.js +60 -0
  952. package/lib/schema/types/order/discount.js.map +1 -0
  953. package/lib/schema/types/order/index.d.ts +2 -0
  954. package/lib/schema/types/order/index.js +8 -0
  955. package/lib/schema/types/order/index.js.map +1 -0
  956. package/lib/schema/types/order/item.d.ts +2 -0
  957. package/lib/schema/types/order/item.js +35 -0
  958. package/lib/schema/types/order/item.js.map +1 -0
  959. package/lib/schema/types/order/order.d.ts +2 -0
  960. package/lib/schema/types/order/order.js +119 -0
  961. package/lib/schema/types/order/order.js.map +1 -0
  962. package/lib/schema/types/order/payment.d.ts +2 -0
  963. package/lib/schema/types/order/payment.js +57 -0
  964. package/lib/schema/types/order/payment.js.map +1 -0
  965. package/lib/schema/types/order/pick-up-location.d.ts +2 -0
  966. package/lib/schema/types/order/pick-up-location.js +12 -0
  967. package/lib/schema/types/order/pick-up-location.js.map +1 -0
  968. package/lib/schema/types/payment.d.ts +2 -0
  969. package/lib/schema/types/payment.js +56 -0
  970. package/lib/schema/types/payment.js.map +1 -0
  971. package/lib/schema/types/price.d.ts +2 -0
  972. package/lib/schema/types/price.js +18 -0
  973. package/lib/schema/types/price.js.map +1 -0
  974. package/lib/schema/types/product/bundle-product.d.ts +2 -0
  975. package/lib/schema/types/product/bundle-product.js +40 -0
  976. package/lib/schema/types/product/bundle-product.js.map +1 -0
  977. package/lib/schema/types/product/configurable-product.d.ts +2 -0
  978. package/lib/schema/types/product/configurable-product.js +119 -0
  979. package/lib/schema/types/product/configurable-product.js.map +1 -0
  980. package/lib/schema/types/product/index.d.ts +2 -0
  981. package/lib/schema/types/product/index.js +7 -0
  982. package/lib/schema/types/product/index.js.map +1 -0
  983. package/lib/schema/types/product/plan-product.d.ts +2 -0
  984. package/lib/schema/types/product/plan-product.js +69 -0
  985. package/lib/schema/types/product/plan-product.js.map +1 -0
  986. package/lib/schema/types/product/product.d.ts +2 -0
  987. package/lib/schema/types/product/product.js +137 -0
  988. package/lib/schema/types/product/product.js.map +1 -0
  989. package/lib/schema/types/product/simple-product.d.ts +2 -0
  990. package/lib/schema/types/product/simple-product.js +51 -0
  991. package/lib/schema/types/product/simple-product.js.map +1 -0
  992. package/lib/schema/types/quotation.d.ts +2 -0
  993. package/lib/schema/types/quotation.js +64 -0
  994. package/lib/schema/types/quotation.js.map +1 -0
  995. package/lib/schema/types/search.d.ts +2 -0
  996. package/lib/schema/types/search.js +38 -0
  997. package/lib/schema/types/search.js.map +1 -0
  998. package/lib/schema/types/shop.d.ts +2 -0
  999. package/lib/schema/types/shop.js +17 -0
  1000. package/lib/schema/types/shop.js.map +1 -0
  1001. package/lib/schema/types/stock.d.ts +2 -0
  1002. package/lib/schema/types/stock.js +11 -0
  1003. package/lib/schema/types/stock.js.map +1 -0
  1004. package/lib/schema/types/types.d.ts +2 -0
  1005. package/lib/schema/types/types.js +13 -0
  1006. package/lib/schema/types/types.js.map +1 -0
  1007. package/lib/schema/types/user.d.ts +2 -0
  1008. package/lib/schema/types/user.js +82 -0
  1009. package/lib/schema/types/user.js.map +1 -0
  1010. package/lib/schema/types/warehousing.d.ts +2 -0
  1011. package/lib/schema/types/warehousing.js +36 -0
  1012. package/lib/schema/types/warehousing.js.map +1 -0
  1013. package/lib/schema/types/worker.d.ts +2 -0
  1014. package/lib/schema/types/worker.js +64 -0
  1015. package/lib/schema/types/worker.js.map +1 -0
  1016. package/lib/user-context.d.ts +5 -0
  1017. package/lib/user-context.js +50 -0
  1018. package/lib/user-context.js.map +1 -0
  1019. package/package.js +33 -0
  1020. package/package.json +60 -0
  1021. package/src/acl.ts +97 -0
  1022. package/src/api-index.ts +36 -0
  1023. package/src/context.ts +44 -0
  1024. package/src/createBulkImportServer.ts +95 -0
  1025. package/src/createGraphQLServer.ts +109 -0
  1026. package/src/errors.ts +174 -0
  1027. package/src/hashPassword.ts +5 -0
  1028. package/src/loaders/index.ts +98 -0
  1029. package/src/locale-context.ts +74 -0
  1030. package/src/resolvers/index.ts +16 -0
  1031. package/src/resolvers/mutations/accounts/addEmail.ts +20 -0
  1032. package/src/resolvers/mutations/accounts/buildSecretTOTPAuthURL.ts +8 -0
  1033. package/src/resolvers/mutations/accounts/changePassword.ts +26 -0
  1034. package/src/resolvers/mutations/accounts/createUser.ts +24 -0
  1035. package/src/resolvers/mutations/accounts/disableTOTP.ts +22 -0
  1036. package/src/resolvers/mutations/accounts/enableTOTP.ts +16 -0
  1037. package/src/resolvers/mutations/accounts/enrollUser.ts +25 -0
  1038. package/src/resolvers/mutations/accounts/forgotPassword.ts +14 -0
  1039. package/src/resolvers/mutations/accounts/impersonate.ts +21 -0
  1040. package/src/resolvers/mutations/accounts/loginAsGuest.ts +12 -0
  1041. package/src/resolvers/mutations/accounts/loginWithPassword.ts +32 -0
  1042. package/src/resolvers/mutations/accounts/logout.ts +18 -0
  1043. package/src/resolvers/mutations/accounts/logoutAllSessions.ts +18 -0
  1044. package/src/resolvers/mutations/accounts/removeEmail.ts +20 -0
  1045. package/src/resolvers/mutations/accounts/resetPassword.ts +20 -0
  1046. package/src/resolvers/mutations/accounts/sendEnrollmentEmail.ts +21 -0
  1047. package/src/resolvers/mutations/accounts/sendVerificationEmail.ts +16 -0
  1048. package/src/resolvers/mutations/accounts/setPassword.ts +24 -0
  1049. package/src/resolvers/mutations/accounts/setUsername.ts +21 -0
  1050. package/src/resolvers/mutations/accounts/verifyEmail.ts +18 -0
  1051. package/src/resolvers/mutations/assortments/addAssortmentFilter.ts +32 -0
  1052. package/src/resolvers/mutations/assortments/addAssortmentLink.ts +45 -0
  1053. package/src/resolvers/mutations/assortments/addAssortmentMedia.ts +30 -0
  1054. package/src/resolvers/mutations/assortments/addAssortmentProduct.ts +36 -0
  1055. package/src/resolvers/mutations/assortments/createAssortment.ts +22 -0
  1056. package/src/resolvers/mutations/assortments/prepareAssortmentMediaUpload.ts +23 -0
  1057. package/src/resolvers/mutations/assortments/removeAssortment.ts +20 -0
  1058. package/src/resolvers/mutations/assortments/removeAssortmentFilter.ts +24 -0
  1059. package/src/resolvers/mutations/assortments/removeAssortmentLink.ts +22 -0
  1060. package/src/resolvers/mutations/assortments/removeAssortmentMedia.ts +25 -0
  1061. package/src/resolvers/mutations/assortments/removeAssortmentProduct.ts +24 -0
  1062. package/src/resolvers/mutations/assortments/reorderAssortmentFilters.ts +17 -0
  1063. package/src/resolvers/mutations/assortments/reorderAssortmentLinks.ts +17 -0
  1064. package/src/resolvers/mutations/assortments/reorderAssortmentMedia.ts +16 -0
  1065. package/src/resolvers/mutations/assortments/reorderAssortmentProducts.ts +17 -0
  1066. package/src/resolvers/mutations/assortments/setBaseAssortment.ts +20 -0
  1067. package/src/resolvers/mutations/assortments/updateAssortment.ts +23 -0
  1068. package/src/resolvers/mutations/assortments/updateAssortmentMediaTexts.ts +24 -0
  1069. package/src/resolvers/mutations/assortments/updateAssortmentTexts.ts +19 -0
  1070. package/src/resolvers/mutations/bookmarks/bookmark.ts +43 -0
  1071. package/src/resolvers/mutations/bookmarks/createBookmark.ts +34 -0
  1072. package/src/resolvers/mutations/bookmarks/removeBookmark.ts +18 -0
  1073. package/src/resolvers/mutations/countries/createCountry.ts +21 -0
  1074. package/src/resolvers/mutations/countries/removeCountry.ts +20 -0
  1075. package/src/resolvers/mutations/countries/updateCountry.ts +21 -0
  1076. package/src/resolvers/mutations/currencies/createCurrency.ts +20 -0
  1077. package/src/resolvers/mutations/currencies/removeCurrency.ts +20 -0
  1078. package/src/resolvers/mutations/currencies/updateCurrency.ts +20 -0
  1079. package/src/resolvers/mutations/delivery/createDeliveryProvider.ts +24 -0
  1080. package/src/resolvers/mutations/delivery/removeDeliveryProvider.ts +18 -0
  1081. package/src/resolvers/mutations/delivery/updateDeliveryProvider.ts +21 -0
  1082. package/src/resolvers/mutations/enrollments/activateEnrollment.ts +32 -0
  1083. package/src/resolvers/mutations/enrollments/createEnrollment.ts +45 -0
  1084. package/src/resolvers/mutations/enrollments/terminateEnrollment.ts +29 -0
  1085. package/src/resolvers/mutations/enrollments/updateEnrollment.ts +71 -0
  1086. package/src/resolvers/mutations/files/confirmMediaUpload.ts +14 -0
  1087. package/src/resolvers/mutations/filters/createFilter.ts +23 -0
  1088. package/src/resolvers/mutations/filters/createFilterOption.ts +22 -0
  1089. package/src/resolvers/mutations/filters/removeFilter.ts +25 -0
  1090. package/src/resolvers/mutations/filters/removeFilterOption.ts +24 -0
  1091. package/src/resolvers/mutations/filters/updateFilter.ts +20 -0
  1092. package/src/resolvers/mutations/filters/updateFilterTexts.ts +26 -0
  1093. package/src/resolvers/mutations/index.js +314 -0
  1094. package/src/resolvers/mutations/languages/createLanguage.ts +21 -0
  1095. package/src/resolvers/mutations/languages/removeLanguage.ts +20 -0
  1096. package/src/resolvers/mutations/languages/updateLanguage.ts +21 -0
  1097. package/src/resolvers/mutations/orders/addCartDiscount.ts +17 -0
  1098. package/src/resolvers/mutations/orders/addCartProduct.ts +37 -0
  1099. package/src/resolvers/mutations/orders/addCartQuotation.ts +67 -0
  1100. package/src/resolvers/mutations/orders/addMultipleCartProducts.ts +64 -0
  1101. package/src/resolvers/mutations/orders/checkoutCart.ts +36 -0
  1102. package/src/resolvers/mutations/orders/confirmOrder.ts +31 -0
  1103. package/src/resolvers/mutations/orders/createCart.ts +17 -0
  1104. package/src/resolvers/mutations/orders/deliverOrder.ts +43 -0
  1105. package/src/resolvers/mutations/orders/emptyCart.ts +20 -0
  1106. package/src/resolvers/mutations/orders/payOrder.ts +37 -0
  1107. package/src/resolvers/mutations/orders/rejectOrder.ts +29 -0
  1108. package/src/resolvers/mutations/orders/removeCartDiscount.ts +30 -0
  1109. package/src/resolvers/mutations/orders/removeCartItem.ts +28 -0
  1110. package/src/resolvers/mutations/orders/removeOrder.ts +24 -0
  1111. package/src/resolvers/mutations/orders/setOrderDeliveryProvider.ts +26 -0
  1112. package/src/resolvers/mutations/orders/setOrderPaymentProvider.ts +25 -0
  1113. package/src/resolvers/mutations/orders/signPaymentProviderForCheckout.ts +55 -0
  1114. package/src/resolvers/mutations/orders/updateCart.ts +46 -0
  1115. package/src/resolvers/mutations/orders/updateCartItem.ts +53 -0
  1116. package/src/resolvers/mutations/orders/updateOrderDeliveryPickUp.ts +48 -0
  1117. package/src/resolvers/mutations/orders/updateOrderDeliveryShipping.ts +40 -0
  1118. package/src/resolvers/mutations/orders/updateOrderPaymentCard.ts +39 -0
  1119. package/src/resolvers/mutations/orders/updateOrderPaymentGeneric.ts +40 -0
  1120. package/src/resolvers/mutations/orders/updateOrderPaymentInvoice.ts +40 -0
  1121. package/src/resolvers/mutations/pageView.js +13 -0
  1122. package/src/resolvers/mutations/payment/createPaymentProvider.ts +24 -0
  1123. package/src/resolvers/mutations/payment/markPaymentCredentialsPreferred.ts +31 -0
  1124. package/src/resolvers/mutations/payment/registerPaymentCredentials.ts +22 -0
  1125. package/src/resolvers/mutations/payment/removePaymentCredentials.ts +19 -0
  1126. package/src/resolvers/mutations/payment/removePaymentProvider.ts +21 -0
  1127. package/src/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.ts +31 -0
  1128. package/src/resolvers/mutations/payment/updatePaymentProvider.ts +25 -0
  1129. package/src/resolvers/mutations/products/addProductAssignment.ts +49 -0
  1130. package/src/resolvers/mutations/products/addProductMedia.ts +25 -0
  1131. package/src/resolvers/mutations/products/addProductReviewVote.ts +22 -0
  1132. package/src/resolvers/mutations/products/createProduct.ts +20 -0
  1133. package/src/resolvers/mutations/products/createProductBundleItem.ts +33 -0
  1134. package/src/resolvers/mutations/products/createProductReview.ts +27 -0
  1135. package/src/resolvers/mutations/products/createProductVariation.ts +45 -0
  1136. package/src/resolvers/mutations/products/createProductVariationOption.ts +31 -0
  1137. package/src/resolvers/mutations/products/prepareProductMediaUpload.ts +21 -0
  1138. package/src/resolvers/mutations/products/publishProduct.ts +22 -0
  1139. package/src/resolvers/mutations/products/removeBundleItem.ts +28 -0
  1140. package/src/resolvers/mutations/products/removeProduct.ts +23 -0
  1141. package/src/resolvers/mutations/products/removeProductAssignment.ts +30 -0
  1142. package/src/resolvers/mutations/products/removeProductMedia.ts +23 -0
  1143. package/src/resolvers/mutations/products/removeProductReview.ts +22 -0
  1144. package/src/resolvers/mutations/products/removeProductReviewVote.ts +23 -0
  1145. package/src/resolvers/mutations/products/removeProductVariation.ts +22 -0
  1146. package/src/resolvers/mutations/products/removeProductVariationOption.ts +32 -0
  1147. package/src/resolvers/mutations/products/reorderProductMedia.ts +14 -0
  1148. package/src/resolvers/mutations/products/unpublishProduct.ts +22 -0
  1149. package/src/resolvers/mutations/products/updateProduct.ts +21 -0
  1150. package/src/resolvers/mutations/products/updateProductCommerce.ts +21 -0
  1151. package/src/resolvers/mutations/products/updateProductMediaTexts.ts +21 -0
  1152. package/src/resolvers/mutations/products/updateProductPlan.ts +28 -0
  1153. package/src/resolvers/mutations/products/updateProductReview.ts +21 -0
  1154. package/src/resolvers/mutations/products/updateProductSupply.ts +30 -0
  1155. package/src/resolvers/mutations/products/updateProductTexts.ts +20 -0
  1156. package/src/resolvers/mutations/products/updateProductVariationTexts.ts +32 -0
  1157. package/src/resolvers/mutations/products/updateProductWarehousing.ts +30 -0
  1158. package/src/resolvers/mutations/quotations/makeQuotationProposal.ts +26 -0
  1159. package/src/resolvers/mutations/quotations/rejectQuotation.ts +26 -0
  1160. package/src/resolvers/mutations/quotations/requestQuotation.ts +32 -0
  1161. package/src/resolvers/mutations/quotations/verifyQuotation.ts +26 -0
  1162. package/src/resolvers/mutations/users/heartbeat.ts +27 -0
  1163. package/src/resolvers/mutations/users/prepareUserAvatarUpload.ts +26 -0
  1164. package/src/resolvers/mutations/users/setRoles.ts +19 -0
  1165. package/src/resolvers/mutations/users/setUserTags.ts +19 -0
  1166. package/src/resolvers/mutations/users/updateUserAvatar.ts +40 -0
  1167. package/src/resolvers/mutations/users/updateUserProfile.ts +20 -0
  1168. package/src/resolvers/mutations/utils/getOrderCart.ts +21 -0
  1169. package/src/resolvers/mutations/warehousing/createWarehousingProvider.ts +24 -0
  1170. package/src/resolvers/mutations/warehousing/removeWarehousingProvider.ts +22 -0
  1171. package/src/resolvers/mutations/warehousing/updateWarehousingProvider.ts +28 -0
  1172. package/src/resolvers/mutations/worker/addWork.ts +11 -0
  1173. package/src/resolvers/mutations/worker/allocateWork.ts +14 -0
  1174. package/src/resolvers/mutations/worker/doWork.ts +17 -0
  1175. package/src/resolvers/mutations/worker/finishWork.ts +42 -0
  1176. package/src/resolvers/mutations/worker/removeWork.ts +21 -0
  1177. package/src/resolvers/queries/assortments/assortment.ts +18 -0
  1178. package/src/resolvers/queries/assortments/assortments.ts +22 -0
  1179. package/src/resolvers/queries/assortments/assortmentsCount.ts +18 -0
  1180. package/src/resolvers/queries/assortments/translatedAssortmentMediaTexts.ts +17 -0
  1181. package/src/resolvers/queries/assortments/translatedAssortmentTexts.ts +12 -0
  1182. package/src/resolvers/queries/countries/countries.ts +18 -0
  1183. package/src/resolvers/queries/countries/countriesCount.ts +20 -0
  1184. package/src/resolvers/queries/countries/country.ts +14 -0
  1185. package/src/resolvers/queries/currencies/currencies.ts +17 -0
  1186. package/src/resolvers/queries/currencies/currenciesCount.ts +15 -0
  1187. package/src/resolvers/queries/currencies/currency.ts +15 -0
  1188. package/src/resolvers/queries/delivery/deliveryInterfaces.ts +13 -0
  1189. package/src/resolvers/queries/delivery/deliveryProvider.ts +15 -0
  1190. package/src/resolvers/queries/delivery/deliveryProviders.ts +13 -0
  1191. package/src/resolvers/queries/delivery/deliveryProvidersCount.ts +13 -0
  1192. package/src/resolvers/queries/enrollments/enrollment.ts +15 -0
  1193. package/src/resolvers/queries/enrollments/enrollments.ts +16 -0
  1194. package/src/resolvers/queries/enrollments/enrollmentsCount.ts +13 -0
  1195. package/src/resolvers/queries/events/event.ts +13 -0
  1196. package/src/resolvers/queries/events/events.ts +22 -0
  1197. package/src/resolvers/queries/events/eventsCounts.ts +13 -0
  1198. package/src/resolvers/queries/filters/filter.ts +15 -0
  1199. package/src/resolvers/queries/filters/filters.ts +22 -0
  1200. package/src/resolvers/queries/filters/filtersCount.ts +20 -0
  1201. package/src/resolvers/queries/filters/searchAssortments.ts +21 -0
  1202. package/src/resolvers/queries/filters/searchProducts.ts +46 -0
  1203. package/src/resolvers/queries/filters/translatedFilterTexts.ts +17 -0
  1204. package/src/resolvers/queries/index.js +133 -0
  1205. package/src/resolvers/queries/languages/language.ts +15 -0
  1206. package/src/resolvers/queries/languages/languages.ts +18 -0
  1207. package/src/resolvers/queries/languages/languagesCount.ts +15 -0
  1208. package/src/resolvers/queries/orders/order.ts +15 -0
  1209. package/src/resolvers/queries/orders/orders.ts +17 -0
  1210. package/src/resolvers/queries/orders/ordersCount.ts +9 -0
  1211. package/src/resolvers/queries/payment/paymentInterfaces.ts +13 -0
  1212. package/src/resolvers/queries/payment/paymentProvider.ts +17 -0
  1213. package/src/resolvers/queries/payment/paymentProviders.ts +13 -0
  1214. package/src/resolvers/queries/payment/paymentProvidersCount.ts +13 -0
  1215. package/src/resolvers/queries/products/product.ts +15 -0
  1216. package/src/resolvers/queries/products/productCatalogPrices.ts +18 -0
  1217. package/src/resolvers/queries/products/productReview.ts +15 -0
  1218. package/src/resolvers/queries/products/productReviews.ts +21 -0
  1219. package/src/resolvers/queries/products/productReviewsCount.ts +13 -0
  1220. package/src/resolvers/queries/products/products.ts +21 -0
  1221. package/src/resolvers/queries/products/productsCount.ts +17 -0
  1222. package/src/resolvers/queries/products/translatedProductMediaTexts.ts +12 -0
  1223. package/src/resolvers/queries/products/translatedProductTexts.ts +12 -0
  1224. package/src/resolvers/queries/products/translatedProductVariationTexts.ts +18 -0
  1225. package/src/resolvers/queries/quotations/quotation.ts +15 -0
  1226. package/src/resolvers/queries/quotations/quotations.ts +13 -0
  1227. package/src/resolvers/queries/quotations/quotationsCount.ts +13 -0
  1228. package/src/resolvers/queries/shopInfo.ts +17 -0
  1229. package/src/resolvers/queries/users/me.ts +8 -0
  1230. package/src/resolvers/queries/users/user.ts +11 -0
  1231. package/src/resolvers/queries/users/users.ts +23 -0
  1232. package/src/resolvers/queries/users/usersCount.ts +11 -0
  1233. package/src/resolvers/queries/warehousing/warehousingInterfaces.ts +13 -0
  1234. package/src/resolvers/queries/warehousing/warehousingProvider.ts +17 -0
  1235. package/src/resolvers/queries/warehousing/warehousingProviders.ts +13 -0
  1236. package/src/resolvers/queries/warehousing/warehousingProvidersCount.ts +13 -0
  1237. package/src/resolvers/queries/worker/activeWorkTypes.ts +8 -0
  1238. package/src/resolvers/queries/worker/work.ts +15 -0
  1239. package/src/resolvers/queries/worker/workQueue.ts +41 -0
  1240. package/src/resolvers/queries/worker/workQueueCount.ts +15 -0
  1241. package/src/resolvers/type/assortment/assortment-filter-types.ts +22 -0
  1242. package/src/resolvers/type/assortment/assortment-link-types.ts +21 -0
  1243. package/src/resolvers/type/assortment/assortment-media-types.ts +23 -0
  1244. package/src/resolvers/type/assortment/assortment-path-link-types.ts +41 -0
  1245. package/src/resolvers/type/assortment/assortment-product-types.ts +25 -0
  1246. package/src/resolvers/type/assortment/assortment-types.ts +136 -0
  1247. package/src/resolvers/type/bookmark-types.ts +20 -0
  1248. package/src/resolvers/type/color-types.ts +31 -0
  1249. package/src/resolvers/type/country-types.ts +33 -0
  1250. package/src/resolvers/type/delivery-provider-types.ts +117 -0
  1251. package/src/resolvers/type/dimensions-types.ts +53 -0
  1252. package/src/resolvers/type/dispatch-types.ts +30 -0
  1253. package/src/resolvers/type/enrollment/enrollment-delivery-types.ts +15 -0
  1254. package/src/resolvers/type/enrollment/enrollment-payment-types.ts +17 -0
  1255. package/src/resolvers/type/enrollment/enrollment-period-types.ts +15 -0
  1256. package/src/resolvers/type/enrollment/enrollment-plan-tyes.ts +15 -0
  1257. package/src/resolvers/type/enrollment/enrollment-types.ts +35 -0
  1258. package/src/resolvers/type/event-types.ts +14 -0
  1259. package/src/resolvers/type/filter/filter-option-types.ts +29 -0
  1260. package/src/resolvers/type/filter/filter-types.ts +27 -0
  1261. package/src/resolvers/type/filter/loaded-filter-option-types.ts +1 -0
  1262. package/src/resolvers/type/filter/loaded-filter-types.ts +1 -0
  1263. package/src/resolvers/type/index.js +133 -0
  1264. package/src/resolvers/type/language-types.ts +16 -0
  1265. package/src/resolvers/type/login-method-response-types.ts +13 -0
  1266. package/src/resolvers/type/media-types.ts +12 -0
  1267. package/src/resolvers/type/order/order-delivery-discount-types.ts +36 -0
  1268. package/src/resolvers/type/order/order-delivery-pickup-types.ts +59 -0
  1269. package/src/resolvers/type/order/order-delivery-shipping-types.ts +43 -0
  1270. package/src/resolvers/type/order/order-delivery-types.ts +23 -0
  1271. package/src/resolvers/type/order/order-discount-types.ts +57 -0
  1272. package/src/resolvers/type/order/order-discountable-types.ts +36 -0
  1273. package/src/resolvers/type/order/order-global-discount-types.ts +43 -0
  1274. package/src/resolvers/type/order/order-item-discount-types.ts +36 -0
  1275. package/src/resolvers/type/order/order-item-types.ts +155 -0
  1276. package/src/resolvers/type/order/order-payment-card-types.ts +37 -0
  1277. package/src/resolvers/type/order/order-payment-discount-types.ts +35 -0
  1278. package/src/resolvers/type/order/order-payment-generic-types.ts +37 -0
  1279. package/src/resolvers/type/order/order-payment-invoice-types.ts +37 -0
  1280. package/src/resolvers/type/order/order-payment-types.ts +24 -0
  1281. package/src/resolvers/type/order/order-types.ts +109 -0
  1282. package/src/resolvers/type/payment/payment-credentials-types.ts +23 -0
  1283. package/src/resolvers/type/payment/payment-provider-types.ts +37 -0
  1284. package/src/resolvers/type/price-types.ts +29 -0
  1285. package/src/resolvers/type/product/product-assortment-path-types.ts +9 -0
  1286. package/src/resolvers/type/product/product-bundle-item-types.ts +9 -0
  1287. package/src/resolvers/type/product/product-bundle-types.ts +10 -0
  1288. package/src/resolvers/type/product/product-catalog-price-types.ts +16 -0
  1289. package/src/resolvers/type/product/product-configurable-types.ts +75 -0
  1290. package/src/resolvers/type/product/product-discount.ts +51 -0
  1291. package/src/resolvers/type/product/product-media-types.ts +14 -0
  1292. package/src/resolvers/type/product/product-plan-types.ts +83 -0
  1293. package/src/resolvers/type/product/product-review-types.ts +34 -0
  1294. package/src/resolvers/type/product/product-simple-types.ts +113 -0
  1295. package/src/resolvers/type/product/product-types.ts +68 -0
  1296. package/src/resolvers/type/product/product-variation-assignment-types.ts +19 -0
  1297. package/src/resolvers/type/product/product-variation-assignment-vector.ts +20 -0
  1298. package/src/resolvers/type/product/product-variation-option-types.ts +18 -0
  1299. package/src/resolvers/type/product/product-variation-types.ts +14 -0
  1300. package/src/resolvers/type/quotation-types.ts +52 -0
  1301. package/src/resolvers/type/shop-types.ts +34 -0
  1302. package/src/resolvers/type/stock-types.ts +28 -0
  1303. package/src/resolvers/type/user-types.ts +194 -0
  1304. package/src/resolvers/type/warehousing-provider-types.ts +17 -0
  1305. package/src/resolvers/type/work-types.ts +25 -0
  1306. package/src/roles/admin.ts +71 -0
  1307. package/src/roles/all.ts +99 -0
  1308. package/src/roles/index.ts +124 -0
  1309. package/src/roles/loggedIn.ts +226 -0
  1310. package/src/schema/index.js +7 -0
  1311. package/src/schema/inputTypes.js +293 -0
  1312. package/src/schema/mutation.js +851 -0
  1313. package/src/schema/query.js +434 -0
  1314. package/src/schema/scalars.js +9 -0
  1315. package/src/schema/types/address.js +15 -0
  1316. package/src/schema/types/assortment.js +99 -0
  1317. package/src/schema/types/bookmark.js +10 -0
  1318. package/src/schema/types/color.js +11 -0
  1319. package/src/schema/types/contact.js +8 -0
  1320. package/src/schema/types/country.js +16 -0
  1321. package/src/schema/types/currency.js +10 -0
  1322. package/src/schema/types/delivery.js +41 -0
  1323. package/src/schema/types/dimensions.js +22 -0
  1324. package/src/schema/types/discount.js +11 -0
  1325. package/src/schema/types/dispatch.js +11 -0
  1326. package/src/schema/types/enrollment.js +68 -0
  1327. package/src/schema/types/events.js +14 -0
  1328. package/src/schema/types/files.js +9 -0
  1329. package/src/schema/types/filter.js +66 -0
  1330. package/src/schema/types/geo-position.js +9 -0
  1331. package/src/schema/types/index.js +63 -0
  1332. package/src/schema/types/language.js +15 -0
  1333. package/src/schema/types/log.js +15 -0
  1334. package/src/schema/types/media.js +11 -0
  1335. package/src/schema/types/order/delivery.js +50 -0
  1336. package/src/schema/types/order/discount.js +59 -0
  1337. package/src/schema/types/order/index.js +8 -0
  1338. package/src/schema/types/order/item.js +34 -0
  1339. package/src/schema/types/order/order.js +118 -0
  1340. package/src/schema/types/order/payment.js +56 -0
  1341. package/src/schema/types/order/pick-up-location.js +11 -0
  1342. package/src/schema/types/payment.js +55 -0
  1343. package/src/schema/types/price.js +17 -0
  1344. package/src/schema/types/product/bundle-product.js +39 -0
  1345. package/src/schema/types/product/configurable-product.js +118 -0
  1346. package/src/schema/types/product/index.js +7 -0
  1347. package/src/schema/types/product/plan-product.js +68 -0
  1348. package/src/schema/types/product/product.js +136 -0
  1349. package/src/schema/types/product/simple-product.js +50 -0
  1350. package/src/schema/types/quotation.js +63 -0
  1351. package/src/schema/types/search.js +37 -0
  1352. package/src/schema/types/shop.js +16 -0
  1353. package/src/schema/types/stock.js +10 -0
  1354. package/src/schema/types/types.js +12 -0
  1355. package/src/schema/types/user.js +81 -0
  1356. package/src/schema/types/warehousing.js +35 -0
  1357. package/src/schema/types/worker.js +63 -0
  1358. package/src/user-context.ts +63 -0
  1359. package/tsconfig.build.json +26 -0
  1360. package/tsconfig.json +8 -0
@@ -0,0 +1,117 @@
1
+ import { Roles, Role } from '@unchainedshop/roles';
2
+ import { all } from './all';
3
+ import { loggedIn } from './loggedIn';
4
+ import { admin } from './admin';
5
+ const roles = {
6
+ ADMIN: Roles.adminRole,
7
+ LOGGEDIN: Roles.loggedInRole,
8
+ ALL: Roles.allRole,
9
+ };
10
+ const allRoles = roles;
11
+ const actions = [
12
+ 'viewEvent',
13
+ 'viewEvents',
14
+ 'viewUserRoles',
15
+ 'viewUserOrders',
16
+ 'viewUserQuotations',
17
+ 'viewUserPublicInfos',
18
+ 'viewUserPrivateInfos',
19
+ 'viewUserEnrollments',
20
+ 'viewLogs',
21
+ 'viewUser',
22
+ 'viewUsers',
23
+ 'viewProduct',
24
+ 'viewProducts',
25
+ 'viewLanguages',
26
+ 'viewLanguage',
27
+ 'viewCountries',
28
+ 'viewCountry',
29
+ 'viewCurrencies',
30
+ 'viewCurrency',
31
+ 'viewPaymentProviders',
32
+ 'viewPaymentProvider',
33
+ 'viewPaymentInterfaces',
34
+ 'viewDeliveryProviders',
35
+ 'viewDeliveryProvider',
36
+ 'viewDeliveryInterfaces',
37
+ 'viewWarehousingProviders',
38
+ 'viewWarehousingProvider',
39
+ 'viewWarehousingInterfaces',
40
+ 'viewTranslations',
41
+ 'viewOrders',
42
+ 'viewOrder',
43
+ 'viewShopInfo',
44
+ 'updateUser',
45
+ 'updateUsername',
46
+ 'sendEmail',
47
+ 'manageUsers',
48
+ 'manageUsers',
49
+ 'manageLanguages',
50
+ 'manageCountries',
51
+ 'manageProducts',
52
+ 'manageCurrencies',
53
+ 'managePaymentProviders',
54
+ 'manageDeliveryProviders',
55
+ 'manageWarehousingProviders',
56
+ 'manageAssortments',
57
+ 'manageFilters',
58
+ 'createCart',
59
+ 'createEnrollment',
60
+ 'updateEnrollment',
61
+ 'updateCart',
62
+ 'checkoutCart',
63
+ 'updateOrder',
64
+ 'updateOrderDelivery',
65
+ 'updateOrderPayment',
66
+ 'updateOrderDiscount',
67
+ 'updateOrderItem',
68
+ 'markOrderConfirmed',
69
+ 'markOrderRejected',
70
+ 'markOrderPaid',
71
+ 'markOrderDelivered',
72
+ 'viewAssortments',
73
+ 'viewAssortment',
74
+ 'viewFilter',
75
+ 'viewFilters',
76
+ 'reviewProduct',
77
+ 'updateProductReview',
78
+ 'manageProductReviews',
79
+ 'voteProductReview',
80
+ 'requestQuotation',
81
+ 'viewQuotations',
82
+ 'viewQuotation',
83
+ 'manageQuotations',
84
+ 'answerQuotation',
85
+ 'bookmarkProduct',
86
+ 'manageBookmarks',
87
+ 'search',
88
+ 'manageWorker',
89
+ 'viewEnrollments',
90
+ 'viewEnrollment',
91
+ 'registerPaymentCredentials',
92
+ 'managePaymentCredentials',
93
+ 'bulkImport',
94
+ 'authTwoFactor',
95
+ 'manageTwoFactor',
96
+ 'impersonate',
97
+ ].reduce((oldValue, actionValue) => {
98
+ const newValue = oldValue;
99
+ newValue[actionValue] = actionValue;
100
+ return newValue;
101
+ }, {});
102
+ const configureRoles = ({ additionalRoles = {}, additionalActions = [] }) => {
103
+ additionalActions.forEach((action) => {
104
+ actions[action] = action;
105
+ });
106
+ Object.entries(additionalRoles).forEach(([key, val]) => {
107
+ allRoles[key] = new Role(key);
108
+ val(allRoles[key], actions);
109
+ });
110
+ all(allRoles.ALL, actions);
111
+ loggedIn(allRoles.LOGGEDIN, actions);
112
+ admin(allRoles.ADMIN, actions);
113
+ return allRoles;
114
+ };
115
+ const updateUserRole = (context, roleName) => Roles.addUserToRoles(context, roles[roleName].name);
116
+ export { allRoles, actions, configureRoles, updateUserRole };
117
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/roles/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export declare const loggedIn: (role: any, actions: Record<string, string>) => void;
@@ -0,0 +1,167 @@
1
+ export const loggedIn = (role, actions) => {
2
+ const isMyself = (user, foreignUser = {}, ownUser = {}) => {
3
+ if (user && user.username && user.services && user.emails && !foreignUser.userId) {
4
+ return user._id === ownUser.userId;
5
+ }
6
+ return foreignUser.userId === ownUser.userId || !foreignUser.userId;
7
+ };
8
+ const isOwnedEmailAddress = (obj, params, { user }) => {
9
+ return user?.emails?.some((emailRecord) => emailRecord.address?.toLowerCase() === params.email?.toLowerCase());
10
+ };
11
+ const isOwnedOrder = async (obj, params, { modules, userId }) => {
12
+ const order = await modules.orders.findOrder({ orderId: params.orderId }, {
13
+ projection: {
14
+ userId: 1,
15
+ },
16
+ });
17
+ if (!order)
18
+ return true;
19
+ return order.userId === userId;
20
+ };
21
+ const isOwnedOrderOrCart = async (obj, params, context) => {
22
+ if (params.orderId) {
23
+ return isOwnedOrder(null, { orderId: params.orderId }, context);
24
+ }
25
+ return true;
26
+ };
27
+ const isOwnedEnrollment = async (obj, params, { modules, userId }) => {
28
+ const enrollment = await modules.enrollments.findEnrollment({ enrollmentId: params.enrollmentId }, {
29
+ projection: {
30
+ userId: 1,
31
+ },
32
+ });
33
+ if (!enrollment)
34
+ return true;
35
+ return enrollment.userId === userId;
36
+ };
37
+ const isOwnedOrderPayment = async (obj, params, context) => {
38
+ const payment = await context.modules.orders.payments.findOrderPayment({ orderPaymentId: params.orderPaymentId }, {
39
+ projection: {
40
+ orderId: 1,
41
+ },
42
+ });
43
+ // return true if db entity not found in order
44
+ // to let the resolver throw a good exception
45
+ if (!payment)
46
+ return true;
47
+ const orderId = payment?.orderId;
48
+ return isOwnedOrder(null, { orderId }, context);
49
+ };
50
+ const isOwnedOrderDelivery = async (obj, params, context) => {
51
+ const delivery = await context.modules.orders.deliveries.findDelivery({ orderDeliveryId: params.orderDeliveryId }, {
52
+ projection: {
53
+ orderId: 1,
54
+ },
55
+ });
56
+ // return true if db entity not found in order
57
+ // to let the resolver throw a good exception
58
+ if (!delivery)
59
+ return true;
60
+ const orderId = delivery && delivery.orderId;
61
+ return isOwnedOrder(null, { orderId }, context);
62
+ };
63
+ const isOwnedOrderItem = async (obj, params, context) => {
64
+ const item = await context.modules.orders.positions.findOrderPosition({ itemId: params.itemId }, {
65
+ projection: {
66
+ orderId: 1,
67
+ },
68
+ });
69
+ // return true if db entity not found in order
70
+ // to let the resolver throw a good exception
71
+ if (!item)
72
+ return true;
73
+ const orderId = item && item.orderId;
74
+ return isOwnedOrder(null, { orderId }, context);
75
+ };
76
+ const isOwnedOrderDiscount = async (obj, params, context) => {
77
+ const discount = await context.modules.orders.discounts.findOrderDiscount({ discountId: params.discountId }, {
78
+ projection: {
79
+ orderId: 1,
80
+ },
81
+ });
82
+ // return true if db entity not found in order
83
+ // to let the resolver throw a good exception
84
+ if (!discount)
85
+ return true;
86
+ const orderId = discount && discount.orderId;
87
+ return isOwnedOrder(null, { orderId }, context);
88
+ };
89
+ const isOwnedProductReview = async (obj, params, context) => {
90
+ const { productReviewId } = params;
91
+ const { modules, userId } = context;
92
+ const review = await modules.products.reviews.findProductReview({
93
+ productReviewId,
94
+ });
95
+ if (!review)
96
+ return true;
97
+ return review.authorId === userId;
98
+ };
99
+ const isOwnedQuotation = async (obj, { quotationId }, { modules, userId }) => {
100
+ const quotation = await modules.quotations.findQuotation({ quotationId }, {
101
+ projection: {
102
+ userId: 1,
103
+ },
104
+ });
105
+ // return true if db entity not found in order
106
+ // to let the resolver throw a good exception
107
+ if (!quotation)
108
+ return true;
109
+ return quotation.userId === userId;
110
+ };
111
+ const isOwnedBookmark = async (obj, { bookmarkId }, { userId, modules }) => {
112
+ const bookmark = await modules.bookmarks.findById(bookmarkId);
113
+ // return true if db entity not found in order
114
+ // to let the resolver throw a good exception
115
+ if (!bookmark)
116
+ return true;
117
+ return bookmark.userId === userId;
118
+ };
119
+ const isOwnedPaymentCredential = async (obj, { paymentCredentialsId }, { modules, userId }) => {
120
+ const credentials = await modules.payment.paymentCredentials.findPaymentCredential({
121
+ paymentCredentialsId,
122
+ }, {
123
+ projection: {
124
+ userId: 1,
125
+ },
126
+ });
127
+ // return true if db entity not found in order
128
+ // to let the resolver throw a good exception
129
+ if (!credentials)
130
+ return true;
131
+ return credentials.userId === userId;
132
+ };
133
+ role.allow(actions.viewEvent, false);
134
+ role.allow(actions.viewEvents, false);
135
+ role.allow(actions.viewUser, isMyself);
136
+ role.allow(actions.viewUserRoles, isMyself);
137
+ role.allow(actions.viewUserOrders, isMyself);
138
+ role.allow(actions.viewUserQuotations, isMyself);
139
+ role.allow(actions.viewUserEnrollments, isMyself);
140
+ role.allow(actions.viewUserPrivateInfos, isMyself);
141
+ role.allow(actions.updateUser, isMyself);
142
+ role.allow(actions.authTwoFactor, isMyself);
143
+ role.allow(actions.manageTwoFactor, isMyself);
144
+ role.allow(actions.sendEmail, isOwnedEmailAddress);
145
+ role.allow(actions.viewOrder, isOwnedOrder);
146
+ role.allow(actions.updateOrder, isOwnedOrder);
147
+ role.allow(actions.updateOrderItem, isOwnedOrderItem);
148
+ role.allow(actions.updateOrderDiscount, isOwnedOrderDiscount);
149
+ role.allow(actions.updateOrderDelivery, isOwnedOrderDelivery);
150
+ role.allow(actions.updateOrderPayment, isOwnedOrderPayment);
151
+ role.allow(actions.checkoutCart, isOwnedOrderOrCart);
152
+ role.allow(actions.updateCart, isOwnedOrderOrCart);
153
+ role.allow(actions.createCart, () => true);
154
+ role.allow(actions.viewEnrollment, isOwnedEnrollment);
155
+ role.allow(actions.updateEnrollment, isOwnedEnrollment);
156
+ role.allow(actions.createEnrollment, () => true);
157
+ role.allow(actions.reviewProduct, () => true);
158
+ role.allow(actions.updateProductReview, isOwnedProductReview);
159
+ role.allow(actions.requestQuotation, () => true);
160
+ role.allow(actions.answerQuotation, isOwnedQuotation);
161
+ role.allow(actions.manageBookmarks, isOwnedBookmark);
162
+ role.allow(actions.bookmarkProduct, () => true);
163
+ role.allow(actions.voteProductReview, () => true);
164
+ role.allow(actions.registerPaymentCredentials, () => true);
165
+ role.allow(actions.managePaymentCredentials, isOwnedPaymentCredential);
166
+ };
167
+ //# sourceMappingURL=loggedIn.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loggedIn.js","sourceRoot":"","sources":["../../src/roles/loggedIn.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAS,EAAE,OAA+B,EAAE,EAAE;IACrE,MAAM,QAAQ,GAAG,CACf,IAAU,EACV,cAAmC,EAAE,EACrC,UAA+B,EAAE,EACjC,EAAE;QACF,IAAI,IAAI,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE;YAChF,OAAO,IAAI,CAAC,GAAG,KAAK,OAAO,CAAC,MAAM,CAAC;SACpC;QACD,OAAO,WAAW,CAAC,MAAM,KAAK,OAAO,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC;IACtE,CAAC,CAAC;IAEF,MAAM,mBAAmB,GAAG,CAAC,GAAQ,EAAE,MAA0B,EAAE,EAAE,IAAI,EAAW,EAAE,EAAE;QACtF,OAAO,IAAI,EAAE,MAAM,EAAE,IAAI,CACvB,CAAC,WAAW,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,WAAW,EAAE,KAAK,MAAM,CAAC,KAAK,EAAE,WAAW,EAAE,CACpF,CAAC;IACJ,CAAC,CAAC;IAEF,MAAM,YAAY,GAAG,KAAK,EAAE,GAAQ,EAAE,MAA2B,EAAE,EAAE,OAAO,EAAE,MAAM,EAAW,EAAE,EAAE;QACjG,MAAM,KAAK,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,SAAS,CAC1C,EAAE,OAAO,EAAE,MAAM,CAAC,OAAO,EAAE,EAC3B;YACE,UAAU,EAAE;gBACV,MAAM,EAAE,CAAC;aACV;SACF,CACF,CAAC;QACF,IAAI,CAAC,KAAK;YAAE,OAAO,IAAI,CAAC;QACxB,OAAO,KAAK,CAAC,MAAM,KAAK,MAAM,CAAC;IACjC,CAAC,CAAC;IAEF,MAAM,kBAAkB,GAAG,KAAK,EAAE,GAAQ,EAAE,MAA4B,EAAE,OAAgB,EAAE,EAAE;QAC5F,IAAI,MAAM,CAAC,OAAO,EAAE;YAClB,OAAO,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC;SACjE;QACD,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;IAEF,MAAM,iBAAiB,GAAG,KAAK,EAC7B,GAAQ,EACR,MAAgC,EAChC,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;QACF,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,WAAW,CAAC,cAAc,CACzD,EAAE,YAAY,EAAE,MAAM,CAAC,YAAY,EAAE,EACrC;YACE,UAAU,EAAE;gBACV,MAAM,EAAE,CAAC;aACV;SACF,CACF,CAAC;QACF,IAAI,CAAC,UAAU;YAAE,OAAO,IAAI,CAAC;QAC7B,OAAO,UAAU,CAAC,MAAM,KAAK,MAAM,CAAC;IACtC,CAAC,CAAC;IAEF,MAAM,mBAAmB,GAAG,KAAK,EAAE,GAAQ,EAAE,MAAkC,EAAE,OAAgB,EAAE,EAAE;QACnG,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CACpE,EAAE,cAAc,EAAE,MAAM,CAAC,cAAc,EAAE,EACzC;YACE,UAAU,EAAE;gBACV,OAAO,EAAE,CAAC;aACX;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,OAAO;YAAE,OAAO,IAAI,CAAC;QAC1B,MAAM,OAAO,GAAG,OAAO,EAAE,OAAO,CAAC;QACjC,OAAO,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC,CAAC;IAEF,MAAM,oBAAoB,GAAG,KAAK,EAChC,GAAQ,EACR,MAAmC,EACnC,OAAgB,EAChB,EAAE;QACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,UAAU,CAAC,YAAY,CACnE,EAAE,eAAe,EAAE,MAAM,CAAC,eAAe,EAAE,EAC3C;YACE,UAAU,EAAE;gBACV,OAAO,EAAE,CAAC;aACX;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,QAAQ;YAAE,OAAO,IAAI,CAAC;QAC3B,MAAM,OAAO,GAAG,QAAQ,IAAI,QAAQ,CAAC,OAAO,CAAC;QAC7C,OAAO,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC,CAAC;IAEF,MAAM,gBAAgB,GAAG,KAAK,EAAE,GAAQ,EAAE,MAA0B,EAAE,OAAgB,EAAE,EAAE;QACxF,MAAM,IAAI,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,iBAAiB,CACnE,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,EACzB;YACE,UAAU,EAAE;gBACV,OAAO,EAAE,CAAC;aACX;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,IAAI;YAAE,OAAO,IAAI,CAAC;QACvB,MAAM,OAAO,GAAG,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC;QACrC,OAAO,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC,CAAC;IAEF,MAAM,oBAAoB,GAAG,KAAK,EAAE,GAAQ,EAAE,MAA8B,EAAE,OAAgB,EAAE,EAAE;QAChG,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,iBAAiB,CACvE,EAAE,UAAU,EAAE,MAAM,CAAC,UAAU,EAAE,EACjC;YACE,UAAU,EAAE;gBACV,OAAO,EAAE,CAAC;aACX;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,QAAQ;YAAE,OAAO,IAAI,CAAC;QAC3B,MAAM,OAAO,GAAG,QAAQ,IAAI,QAAQ,CAAC,OAAO,CAAC;QAC7C,OAAO,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,EAAE,OAAO,CAAC,CAAC;IAClD,CAAC,CAAC;IAEF,MAAM,oBAAoB,GAAG,KAAK,EAChC,GAAQ,EACR,MAAmC,EACnC,OAAgB,EAChB,EAAE;QACF,MAAM,EAAE,eAAe,EAAE,GAAG,MAAM,CAAC;QACnC,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;QACpC,MAAM,MAAM,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,iBAAiB,CAAC;YAC9D,eAAe;SAChB,CAAC,CAAC;QACH,IAAI,CAAC,MAAM;YAAE,OAAO,IAAI,CAAC;QACzB,OAAO,MAAM,CAAC,QAAQ,KAAK,MAAM,CAAC;IACpC,CAAC,CAAC;IAEF,MAAM,gBAAgB,GAAG,KAAK,EAC5B,GAAQ,EACR,EAAE,WAAW,EAA2B,EACxC,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;QACF,MAAM,SAAS,GAAG,MAAM,OAAO,CAAC,UAAU,CAAC,aAAa,CACtD,EAAE,WAAW,EAAE,EACf;YACE,UAAU,EAAE;gBACV,MAAM,EAAE,CAAC;aACV;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC;QAC5B,OAAO,SAAS,CAAC,MAAM,KAAK,MAAM,CAAC;IACrC,CAAC,CAAC;IAEF,MAAM,eAAe,GAAG,KAAK,EAC3B,GAAQ,EACR,EAAE,UAAU,EAA0B,EACtC,EAAE,MAAM,EAAE,OAAO,EAAW,EAC5B,EAAE;QACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;QAC9D,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,QAAQ;YAAE,OAAO,IAAI,CAAC;QAC3B,OAAO,QAAQ,CAAC,MAAM,KAAK,MAAM,CAAC;IACpC,CAAC,CAAC;IAEF,MAAM,wBAAwB,GAAG,KAAK,EACpC,GAAQ,EACR,EAAE,oBAAoB,EAAoC,EAC1D,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;QACF,MAAM,WAAW,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,kBAAkB,CAAC,qBAAqB,CAChF;YACE,oBAAoB;SACrB,EACD;YACE,UAAU,EAAE;gBACV,MAAM,EAAE,CAAC;aACV;SACF,CACF,CAAC;QACF,8CAA8C;QAC9C,6CAA6C;QAC7C,IAAI,CAAC,WAAW;YAAE,OAAO,IAAI,CAAC;QAC9B,OAAO,WAAW,CAAC,MAAM,KAAK,MAAM,CAAC;IACvC,CAAC,CAAC;IAEF,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;IACrC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;IACtC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACvC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;IAC5C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC;IAC7C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,kBAAkB,EAAE,QAAQ,CAAC,CAAC;IACjD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,mBAAmB,EAAE,QAAQ,CAAC,CAAC;IAClD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,oBAAoB,EAAE,QAAQ,CAAC,CAAC;IACnD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;IACzC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;IAC5C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,QAAQ,CAAC,CAAC;IAC9C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,EAAE,mBAAmB,CAAC,CAAC;IACnD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;IAC5C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,WAAW,EAAE,YAAY,CAAC,CAAC;IAC9C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,gBAAgB,CAAC,CAAC;IACtD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,mBAAmB,EAAE,oBAAoB,CAAC,CAAC;IAC9D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,mBAAmB,EAAE,oBAAoB,CAAC,CAAC;IAC9D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,kBAAkB,EAAE,mBAAmB,CAAC,CAAC;IAC5D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,kBAAkB,CAAC,CAAC;IACrD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,EAAE,kBAAkB,CAAC,CAAC;IACnD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,UAAU,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IAC3C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,EAAE,iBAAiB,CAAC,CAAC;IACtD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,gBAAgB,EAAE,iBAAiB,CAAC,CAAC;IACxD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,gBAAgB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IACjD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IAC9C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,mBAAmB,EAAE,oBAAoB,CAAC,CAAC;IAC9D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,gBAAgB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IACjD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,gBAAgB,CAAC,CAAC;IACtD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,eAAe,CAAC,CAAC;IACrD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,eAAe,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IAChD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,iBAAiB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IAClD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,0BAA0B,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IAC3D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,wBAAwB,EAAE,wBAAwB,CAAC,CAAC;AACzE,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _default: string[];
2
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import scalars from './scalars';
2
+ import types from './types';
3
+ import inputTypes from './inputTypes';
4
+ import query from './query';
5
+ import mutation from './mutation';
6
+ export default [...scalars, ...types, ...inputTypes, ...query, ...mutation];
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schema/index.js"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAC;AAChC,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,UAAU,MAAM,cAAc,CAAC;AACtC,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,eAAe,CAAC,GAAG,OAAO,EAAE,GAAG,KAAK,EAAE,GAAG,UAAU,EAAE,GAAG,KAAK,EAAE,GAAG,QAAQ,CAAC,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _default: string[];
2
+ export default _default;
@@ -0,0 +1,294 @@
1
+ export default [
2
+ /* GraphQL */ `
3
+ """
4
+ A hashed password
5
+ """
6
+ input HashedPasswordInput {
7
+ """
8
+ The hashed password
9
+ """
10
+ digest: String!
11
+
12
+ """
13
+ Algorithm used to hash the password
14
+ """
15
+ algorithm: String!
16
+ }
17
+
18
+ input SortOptionInput {
19
+ key: String!
20
+ value: SortDirection!
21
+ }
22
+
23
+ input UserProfileInput {
24
+ displayName: String
25
+ birthday: Timestamp
26
+ phoneMobile: String
27
+ gender: String
28
+ address: AddressInput
29
+ }
30
+
31
+ input AddressInput {
32
+ firstName: String
33
+ lastName: String
34
+ company: String
35
+ addressLine: String
36
+ addressLine2: String
37
+ postalCode: String
38
+ regionCode: String
39
+ city: String
40
+ countryCode: String
41
+ }
42
+
43
+ input ContactInput {
44
+ emailAddress: String
45
+ telNumber: String
46
+ }
47
+
48
+ input CreateLanguageInput {
49
+ isoCode: String!
50
+ }
51
+ input UpdateLanguageInput {
52
+ isoCode: String!
53
+ isActive: Boolean
54
+ }
55
+
56
+ input CreateCountryInput {
57
+ isoCode: String!
58
+ }
59
+ input UpdateCountryInput {
60
+ isoCode: String!
61
+ isActive: Boolean
62
+ defaultCurrencyId: String
63
+ }
64
+
65
+ input CreateCurrencyInput {
66
+ isoCode: String!
67
+ contractAddress: String
68
+ }
69
+ input UpdateCurrencyInput {
70
+ isoCode: String!
71
+ isActive: Boolean
72
+ contractAddress: String
73
+ }
74
+
75
+ input CreateProductInput {
76
+ title: String!
77
+ type: String!
78
+ tags: [String!]
79
+ }
80
+
81
+ input CreateProductVariationInput {
82
+ key: String!
83
+ type: ProductVariationType!
84
+ title: String!
85
+ }
86
+
87
+ input CreateProductVariationOptionInput {
88
+ value: String!
89
+ title: String!
90
+ }
91
+
92
+ input ProductAssignmentVectorInput {
93
+ key: String!
94
+ value: String!
95
+ }
96
+
97
+ input UpdateProductInput {
98
+ tags: [String!]
99
+ sequence: Int
100
+ meta: JSON
101
+ }
102
+
103
+ input UpdateProductTextInput {
104
+ locale: String!
105
+ slug: String
106
+ title: String
107
+ subtitle: String
108
+ description: String
109
+ vendor: String
110
+ brand: String
111
+ labels: [String!]
112
+ }
113
+
114
+ input UpdateProductMediaTextInput {
115
+ locale: String!
116
+ title: String
117
+ subtitle: String
118
+ }
119
+
120
+ input UpdateProductVariationTextInput {
121
+ locale: String!
122
+ title: String
123
+ subtitle: String
124
+ }
125
+
126
+ input UpdateProductCommercePricingInput {
127
+ amount: Int!
128
+ maxQuantity: Int
129
+ isTaxable: Boolean
130
+ isNetPrice: Boolean
131
+ currencyCode: String!
132
+ countryCode: String!
133
+ }
134
+
135
+ input UpdateProductCommerceInput {
136
+ pricing: [UpdateProductCommercePricingInput!]!
137
+ }
138
+
139
+ input UpdateProductSupplyInput {
140
+ weightInGram: Int
141
+ heightInMillimeters: Int
142
+ lengthInMillimeters: Int
143
+ widthInMillimeters: Int
144
+ }
145
+
146
+ input UpdateProductWarehousingInput {
147
+ sku: String
148
+ baseUnit: String
149
+ }
150
+
151
+ input ReorderProductMediaInput {
152
+ productMediaId: ID!
153
+ sortKey: Int!
154
+ }
155
+
156
+ input CreateWarehousingProviderInput {
157
+ type: WarehousingProviderType!
158
+ adapterKey: String!
159
+ }
160
+
161
+ input CreateDeliveryProviderInput {
162
+ type: DeliveryProviderType!
163
+ adapterKey: String!
164
+ }
165
+
166
+ input CreatePaymentProviderInput {
167
+ type: PaymentProviderType!
168
+ adapterKey: String!
169
+ }
170
+
171
+ input UpdateProviderInput {
172
+ configuration: [JSON!]
173
+ }
174
+
175
+ input CreateAssortmentInput {
176
+ isRoot: Boolean
177
+ tags: [String!]
178
+ title: String!
179
+ }
180
+
181
+ input UpdateAssortmentInput {
182
+ isRoot: Boolean
183
+ tags: [String!]
184
+ isActive: Boolean
185
+ sequence: Int
186
+ }
187
+
188
+ input UpdateAssortmentTextInput {
189
+ locale: String!
190
+ slug: String
191
+ title: String
192
+ subtitle: String
193
+ description: String
194
+ }
195
+
196
+ input ReorderAssortmentProductInput {
197
+ assortmentProductId: ID!
198
+ sortKey: Int!
199
+ }
200
+
201
+ input ReorderAssortmentFilterInput {
202
+ assortmentFilterId: ID!
203
+ sortKey: Int!
204
+ }
205
+
206
+ input ReorderAssortmentLinkInput {
207
+ assortmentLinkId: ID!
208
+ sortKey: Int!
209
+ }
210
+
211
+ input UpdateAssortmentMediaTextInput {
212
+ locale: String!
213
+ title: String
214
+ subtitle: String
215
+ }
216
+
217
+ input ReorderAssortmentMediaInput {
218
+ assortmentMediaId: ID!
219
+ sortKey: Int!
220
+ }
221
+
222
+ input CreateFilterInput {
223
+ key: String!
224
+ type: FilterType!
225
+ title: String!
226
+ options: [String!]
227
+ }
228
+
229
+ input CreateFilterOptionInput {
230
+ value: String!
231
+ title: String!
232
+ }
233
+
234
+ input UpdateFilterInput {
235
+ isActive: Boolean
236
+ key: String
237
+ }
238
+
239
+ input UpdateFilterTextInput {
240
+ locale: String!
241
+ title: String
242
+ subtitle: String
243
+ }
244
+
245
+ input ProductConfigurationParameterInput {
246
+ key: String!
247
+ value: String!
248
+ }
249
+
250
+ input ProductReviewInput {
251
+ rating: Int
252
+ title: String
253
+ review: String
254
+ }
255
+
256
+ input FilterQueryInput {
257
+ key: String!
258
+ value: String
259
+ }
260
+
261
+ input CreateProductBundleItemInput {
262
+ productId: ID!
263
+ quantity: Int!
264
+ }
265
+
266
+ input EnrollmentDeliveryInput {
267
+ deliveryProviderId: ID!
268
+ meta: JSON
269
+ }
270
+
271
+ input EnrollmentPaymentInput {
272
+ paymentProviderId: ID!
273
+ meta: JSON
274
+ }
275
+
276
+ input EnrollmentPlanInput {
277
+ productId: ID!
278
+ quantity: Int = 1
279
+ configuration: [ProductConfigurationParameterInput!]
280
+ }
281
+
282
+ input OrderItemInput {
283
+ productId: ID!
284
+ quantity: Int = 1
285
+ configuration: [ProductConfigurationParameterInput!]
286
+ }
287
+
288
+ input DateFilterInput {
289
+ start: DateTime
290
+ end: DateTime
291
+ }
292
+ `,
293
+ ];
294
+ //# sourceMappingURL=inputTypes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"inputTypes.js","sourceRoot":"","sources":["../../src/schema/inputTypes.js"],"names":[],"mappings":"AAAA,eAAe;IACb,aAAa,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkSb;CACF,CAAC"}
@@ -0,0 +1,2 @@
1
+ declare const _default: string[];
2
+ export default _default;