@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.
- package/.npm/package/README +7 -0
- package/.npm/package/npm-shrinkwrap.json +262 -0
- package/.versions +27 -0
- package/README.md +3 -0
- package/lib/acl.d.ts +10 -0
- package/lib/acl.js +80 -0
- package/lib/acl.js.map +1 -0
- package/lib/api-index.d.ts +12 -0
- package/lib/api-index.js +26 -0
- package/lib/api-index.js.map +1 -0
- package/lib/context.d.ts +5 -0
- package/lib/context.js +32 -0
- package/lib/context.js.map +1 -0
- package/lib/createBulkImportServer.d.ts +2 -0
- package/lib/createBulkImportServer.js +81 -0
- package/lib/createBulkImportServer.js.map +1 -0
- package/lib/createGraphQLServer.d.ts +3 -0
- package/lib/createGraphQLServer.js +88 -0
- package/lib/createGraphQLServer.js.map +1 -0
- package/lib/errors.d.ts +50 -0
- package/lib/errors.js +56 -0
- package/lib/errors.js.map +1 -0
- package/lib/hashPassword.d.ts +1 -0
- package/lib/hashPassword.js +5 -0
- package/lib/hashPassword.js.map +1 -0
- package/lib/loaders/index.d.ts +4 -0
- package/lib/loaders/index.js +74 -0
- package/lib/loaders/index.js.map +1 -0
- package/lib/locale-context.d.ts +4 -0
- package/lib/locale-context.js +43 -0
- package/lib/locale-context.js.map +1 -0
- package/lib/resolvers/index.d.ts +2 -0
- package/lib/resolvers/index.js +16 -0
- package/lib/resolvers/index.js.map +1 -0
- package/lib/resolvers/mutations/accounts/addEmail.d.ts +5 -0
- package/lib/resolvers/mutations/accounts/addEmail.js +11 -0
- package/lib/resolvers/mutations/accounts/addEmail.js.map +1 -0
- package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.d.ts +2 -0
- package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.js +6 -0
- package/lib/resolvers/mutations/accounts/buildSecretTOTPAuthURL.js.map +1 -0
- package/lib/resolvers/mutations/accounts/changePassword.d.ts +9 -0
- package/lib/resolvers/mutations/accounts/changePassword.js +13 -0
- package/lib/resolvers/mutations/accounts/changePassword.js.map +1 -0
- package/lib/resolvers/mutations/accounts/createUser.d.ts +7 -0
- package/lib/resolvers/mutations/accounts/createUser.js +17 -0
- package/lib/resolvers/mutations/accounts/createUser.js.map +1 -0
- package/lib/resolvers/mutations/accounts/disableTOTP.d.ts +5 -0
- package/lib/resolvers/mutations/accounts/disableTOTP.js +14 -0
- package/lib/resolvers/mutations/accounts/disableTOTP.js.map +1 -0
- package/lib/resolvers/mutations/accounts/enableTOTP.d.ts +5 -0
- package/lib/resolvers/mutations/accounts/enableTOTP.js +9 -0
- package/lib/resolvers/mutations/accounts/enableTOTP.js.map +1 -0
- package/lib/resolvers/mutations/accounts/enrollUser.d.ts +3 -0
- package/lib/resolvers/mutations/accounts/enrollUser.js +19 -0
- package/lib/resolvers/mutations/accounts/enrollUser.js.map +1 -0
- package/lib/resolvers/mutations/accounts/forgotPassword.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/forgotPassword.js +7 -0
- package/lib/resolvers/mutations/accounts/forgotPassword.js.map +1 -0
- package/lib/resolvers/mutations/accounts/impersonate.d.ts +9 -0
- package/lib/resolvers/mutations/accounts/impersonate.js +15 -0
- package/lib/resolvers/mutations/accounts/impersonate.js.map +1 -0
- package/lib/resolvers/mutations/accounts/loginAsGuest.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/loginAsGuest.js +8 -0
- package/lib/resolvers/mutations/accounts/loginAsGuest.js.map +1 -0
- package/lib/resolvers/mutations/accounts/loginWithPassword.d.ts +12 -0
- package/lib/resolvers/mutations/accounts/loginWithPassword.js +17 -0
- package/lib/resolvers/mutations/accounts/loginWithPassword.js.map +1 -0
- package/lib/resolvers/mutations/accounts/logout.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/logout.js +13 -0
- package/lib/resolvers/mutations/accounts/logout.js.map +1 -0
- package/lib/resolvers/mutations/accounts/logoutAllSessions.d.ts +4 -0
- package/lib/resolvers/mutations/accounts/logoutAllSessions.js +13 -0
- package/lib/resolvers/mutations/accounts/logoutAllSessions.js.map +1 -0
- package/lib/resolvers/mutations/accounts/removeEmail.d.ts +5 -0
- package/lib/resolvers/mutations/accounts/removeEmail.js +11 -0
- package/lib/resolvers/mutations/accounts/removeEmail.js.map +1 -0
- package/lib/resolvers/mutations/accounts/resetPassword.d.ts +10 -0
- package/lib/resolvers/mutations/accounts/resetPassword.js +11 -0
- package/lib/resolvers/mutations/accounts/resetPassword.js.map +1 -0
- package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.js +16 -0
- package/lib/resolvers/mutations/accounts/sendEnrollmentEmail.js.map +1 -0
- package/lib/resolvers/mutations/accounts/sendVerificationEmail.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/sendVerificationEmail.js +9 -0
- package/lib/resolvers/mutations/accounts/sendVerificationEmail.js.map +1 -0
- package/lib/resolvers/mutations/accounts/setPassword.d.ts +6 -0
- package/lib/resolvers/mutations/accounts/setPassword.js +16 -0
- package/lib/resolvers/mutations/accounts/setPassword.js.map +1 -0
- package/lib/resolvers/mutations/accounts/setUsername.d.ts +5 -0
- package/lib/resolvers/mutations/accounts/setUsername.js +13 -0
- package/lib/resolvers/mutations/accounts/setUsername.js.map +1 -0
- package/lib/resolvers/mutations/accounts/verifyEmail.d.ts +8 -0
- package/lib/resolvers/mutations/accounts/verifyEmail.js +12 -0
- package/lib/resolvers/mutations/accounts/verifyEmail.js.map +1 -0
- package/lib/resolvers/mutations/assortments/addAssortmentFilter.d.ts +3 -0
- package/lib/resolvers/mutations/assortments/addAssortmentFilter.js +22 -0
- package/lib/resolvers/mutations/assortments/addAssortmentFilter.js.map +1 -0
- package/lib/resolvers/mutations/assortments/addAssortmentLink.d.ts +3 -0
- package/lib/resolvers/mutations/assortments/addAssortmentLink.js +30 -0
- package/lib/resolvers/mutations/assortments/addAssortmentLink.js.map +1 -0
- package/lib/resolvers/mutations/assortments/addAssortmentMedia.d.ts +5 -0
- package/lib/resolvers/mutations/assortments/addAssortmentMedia.js +19 -0
- package/lib/resolvers/mutations/assortments/addAssortmentMedia.js.map +1 -0
- package/lib/resolvers/mutations/assortments/addAssortmentProduct.d.ts +3 -0
- package/lib/resolvers/mutations/assortments/addAssortmentProduct.js +24 -0
- package/lib/resolvers/mutations/assortments/addAssortmentProduct.js.map +1 -0
- package/lib/resolvers/mutations/assortments/createAssortment.d.ts +8 -0
- package/lib/resolvers/mutations/assortments/createAssortment.js +11 -0
- package/lib/resolvers/mutations/assortments/createAssortment.js.map +1 -0
- package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.d.ts +5 -0
- package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.js +13 -0
- package/lib/resolvers/mutations/assortments/prepareAssortmentMediaUpload.js.map +1 -0
- package/lib/resolvers/mutations/assortments/removeAssortment.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/removeAssortment.js +13 -0
- package/lib/resolvers/mutations/assortments/removeAssortment.js.map +1 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentFilter.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentFilter.js +17 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentFilter.js.map +1 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentLink.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentLink.js +15 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentLink.js.map +1 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentMedia.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentMedia.js +18 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentMedia.js.map +1 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentProduct.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentProduct.js +17 -0
- package/lib/resolvers/mutations/assortments/removeAssortmentProduct.js.map +1 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.d.ts +7 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.js +8 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentFilters.js.map +1 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.d.ts +7 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.js +8 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentLinks.js.map +1 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.d.ts +7 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.js +8 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentMedia.js.map +1 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.d.ts +7 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.js +8 -0
- package/lib/resolvers/mutations/assortments/reorderAssortmentProducts.js.map +1 -0
- package/lib/resolvers/mutations/assortments/setBaseAssortment.d.ts +4 -0
- package/lib/resolvers/mutations/assortments/setBaseAssortment.js +12 -0
- package/lib/resolvers/mutations/assortments/setBaseAssortment.js.map +1 -0
- package/lib/resolvers/mutations/assortments/updateAssortment.d.ts +6 -0
- package/lib/resolvers/mutations/assortments/updateAssortment.js +13 -0
- package/lib/resolvers/mutations/assortments/updateAssortment.js.map +1 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.d.ts +6 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.js +16 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentMediaTexts.js.map +1 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentTexts.d.ts +6 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentTexts.js +11 -0
- package/lib/resolvers/mutations/assortments/updateAssortmentTexts.js.map +1 -0
- package/lib/resolvers/mutations/bookmarks/bookmark.d.ts +5 -0
- package/lib/resolvers/mutations/bookmarks/bookmark.js +28 -0
- package/lib/resolvers/mutations/bookmarks/bookmark.js.map +1 -0
- package/lib/resolvers/mutations/bookmarks/createBookmark.d.ts +5 -0
- package/lib/resolvers/mutations/bookmarks/createBookmark.js +24 -0
- package/lib/resolvers/mutations/bookmarks/createBookmark.js.map +1 -0
- package/lib/resolvers/mutations/bookmarks/removeBookmark.d.ts +4 -0
- package/lib/resolvers/mutations/bookmarks/removeBookmark.js +14 -0
- package/lib/resolvers/mutations/bookmarks/removeBookmark.js.map +1 -0
- package/lib/resolvers/mutations/countries/createCountry.d.ts +5 -0
- package/lib/resolvers/mutations/countries/createCountry.js +10 -0
- package/lib/resolvers/mutations/countries/createCountry.js.map +1 -0
- package/lib/resolvers/mutations/countries/removeCountry.d.ts +4 -0
- package/lib/resolvers/mutations/countries/removeCountry.js +12 -0
- package/lib/resolvers/mutations/countries/removeCountry.js.map +1 -0
- package/lib/resolvers/mutations/countries/updateCountry.d.ts +6 -0
- package/lib/resolvers/mutations/countries/updateCountry.js +12 -0
- package/lib/resolvers/mutations/countries/updateCountry.js.map +1 -0
- package/lib/resolvers/mutations/currencies/createCurrency.d.ts +5 -0
- package/lib/resolvers/mutations/currencies/createCurrency.js +10 -0
- package/lib/resolvers/mutations/currencies/createCurrency.js.map +1 -0
- package/lib/resolvers/mutations/currencies/removeCurrency.d.ts +4 -0
- package/lib/resolvers/mutations/currencies/removeCurrency.js +12 -0
- package/lib/resolvers/mutations/currencies/removeCurrency.js.map +1 -0
- package/lib/resolvers/mutations/currencies/updateCurrency.d.ts +6 -0
- package/lib/resolvers/mutations/currencies/updateCurrency.js +12 -0
- package/lib/resolvers/mutations/currencies/updateCurrency.js.map +1 -0
- package/lib/resolvers/mutations/delivery/createDeliveryProvider.d.ts +5 -0
- package/lib/resolvers/mutations/delivery/createDeliveryProvider.js +13 -0
- package/lib/resolvers/mutations/delivery/createDeliveryProvider.js.map +1 -0
- package/lib/resolvers/mutations/delivery/removeDeliveryProvider.d.ts +4 -0
- package/lib/resolvers/mutations/delivery/removeDeliveryProvider.js +12 -0
- package/lib/resolvers/mutations/delivery/removeDeliveryProvider.js.map +1 -0
- package/lib/resolvers/mutations/delivery/updateDeliveryProvider.d.ts +6 -0
- package/lib/resolvers/mutations/delivery/updateDeliveryProvider.js +12 -0
- package/lib/resolvers/mutations/delivery/updateDeliveryProvider.js.map +1 -0
- package/lib/resolvers/mutations/enrollments/activateEnrollment.d.ts +4 -0
- package/lib/resolvers/mutations/enrollments/activateEnrollment.js +21 -0
- package/lib/resolvers/mutations/enrollments/activateEnrollment.js.map +1 -0
- package/lib/resolvers/mutations/enrollments/createEnrollment.d.ts +9 -0
- package/lib/resolvers/mutations/enrollments/createEnrollment.js +32 -0
- package/lib/resolvers/mutations/enrollments/createEnrollment.js.map +1 -0
- package/lib/resolvers/mutations/enrollments/terminateEnrollment.d.ts +4 -0
- package/lib/resolvers/mutations/enrollments/terminateEnrollment.js +20 -0
- package/lib/resolvers/mutations/enrollments/terminateEnrollment.js.map +1 -0
- package/lib/resolvers/mutations/enrollments/updateEnrollment.d.ts +14 -0
- package/lib/resolvers/mutations/enrollments/updateEnrollment.js +43 -0
- package/lib/resolvers/mutations/enrollments/updateEnrollment.js.map +1 -0
- package/lib/resolvers/mutations/files/confirmMediaUpload.d.ts +6 -0
- package/lib/resolvers/mutations/files/confirmMediaUpload.js +7 -0
- package/lib/resolvers/mutations/files/confirmMediaUpload.js.map +1 -0
- package/lib/resolvers/mutations/filters/createFilter.d.ts +7 -0
- package/lib/resolvers/mutations/filters/createFilter.js +11 -0
- package/lib/resolvers/mutations/filters/createFilter.js.map +1 -0
- package/lib/resolvers/mutations/filters/createFilterOption.d.ts +8 -0
- package/lib/resolvers/mutations/filters/createFilterOption.js +15 -0
- package/lib/resolvers/mutations/filters/createFilterOption.js.map +1 -0
- package/lib/resolvers/mutations/filters/removeFilter.d.ts +4 -0
- package/lib/resolvers/mutations/filters/removeFilter.js +18 -0
- package/lib/resolvers/mutations/filters/removeFilter.js.map +1 -0
- package/lib/resolvers/mutations/filters/removeFilterOption.d.ts +5 -0
- package/lib/resolvers/mutations/filters/removeFilterOption.js +17 -0
- package/lib/resolvers/mutations/filters/removeFilterOption.js.map +1 -0
- package/lib/resolvers/mutations/filters/updateFilter.d.ts +6 -0
- package/lib/resolvers/mutations/filters/updateFilter.js +12 -0
- package/lib/resolvers/mutations/filters/updateFilter.js.map +1 -0
- package/lib/resolvers/mutations/filters/updateFilterTexts.d.ts +10 -0
- package/lib/resolvers/mutations/filters/updateFilterTexts.js +15 -0
- package/lib/resolvers/mutations/filters/updateFilterTexts.js.map +1 -0
- package/lib/resolvers/mutations/index.d.ts +158 -0
- package/lib/resolvers/mutations/index.js +293 -0
- package/lib/resolvers/mutations/index.js.map +1 -0
- package/lib/resolvers/mutations/languages/createLanguage.d.ts +5 -0
- package/lib/resolvers/mutations/languages/createLanguage.js +10 -0
- package/lib/resolvers/mutations/languages/createLanguage.js.map +1 -0
- package/lib/resolvers/mutations/languages/removeLanguage.d.ts +4 -0
- package/lib/resolvers/mutations/languages/removeLanguage.js +12 -0
- package/lib/resolvers/mutations/languages/removeLanguage.js.map +1 -0
- package/lib/resolvers/mutations/languages/updateLanguage.d.ts +6 -0
- package/lib/resolvers/mutations/languages/updateLanguage.js +12 -0
- package/lib/resolvers/mutations/languages/updateLanguage.js.map +1 -0
- package/lib/resolvers/mutations/orders/addCartDiscount.d.ts +5 -0
- package/lib/resolvers/mutations/orders/addCartDiscount.js +9 -0
- package/lib/resolvers/mutations/orders/addCartDiscount.js.map +1 -0
- package/lib/resolvers/mutations/orders/addCartProduct.d.ts +7 -0
- package/lib/resolvers/mutations/orders/addCartProduct.js +21 -0
- package/lib/resolvers/mutations/orders/addCartProduct.js.map +1 -0
- package/lib/resolvers/mutations/orders/addCartQuotation.d.ts +8 -0
- package/lib/resolvers/mutations/orders/addCartQuotation.js +33 -0
- package/lib/resolvers/mutations/orders/addCartQuotation.js.map +1 -0
- package/lib/resolvers/mutations/orders/addMultipleCartProducts.d.ts +10 -0
- package/lib/resolvers/mutations/orders/addMultipleCartProducts.js +38 -0
- package/lib/resolvers/mutations/orders/addMultipleCartProducts.js.map +1 -0
- package/lib/resolvers/mutations/orders/checkoutCart.d.ts +7 -0
- package/lib/resolvers/mutations/orders/checkoutCart.js +23 -0
- package/lib/resolvers/mutations/orders/checkoutCart.js.map +1 -0
- package/lib/resolvers/mutations/orders/confirmOrder.d.ts +7 -0
- package/lib/resolvers/mutations/orders/confirmOrder.js +18 -0
- package/lib/resolvers/mutations/orders/confirmOrder.js.map +1 -0
- package/lib/resolvers/mutations/orders/createCart.d.ts +4 -0
- package/lib/resolvers/mutations/orders/createCart.js +11 -0
- package/lib/resolvers/mutations/orders/createCart.js.map +1 -0
- package/lib/resolvers/mutations/orders/deliverOrder.d.ts +4 -0
- package/lib/resolvers/mutations/orders/deliverOrder.js +27 -0
- package/lib/resolvers/mutations/orders/deliverOrder.js.map +1 -0
- package/lib/resolvers/mutations/orders/emptyCart.d.ts +4 -0
- package/lib/resolvers/mutations/orders/emptyCart.js +12 -0
- package/lib/resolvers/mutations/orders/emptyCart.js.map +1 -0
- package/lib/resolvers/mutations/orders/payOrder.d.ts +4 -0
- package/lib/resolvers/mutations/orders/payOrder.js +26 -0
- package/lib/resolvers/mutations/orders/payOrder.js.map +1 -0
- package/lib/resolvers/mutations/orders/rejectOrder.d.ts +7 -0
- package/lib/resolvers/mutations/orders/rejectOrder.js +18 -0
- package/lib/resolvers/mutations/orders/rejectOrder.js.map +1 -0
- package/lib/resolvers/mutations/orders/removeCartDiscount.d.ts +4 -0
- package/lib/resolvers/mutations/orders/removeCartDiscount.js +21 -0
- package/lib/resolvers/mutations/orders/removeCartDiscount.js.map +1 -0
- package/lib/resolvers/mutations/orders/removeCartItem.d.ts +4 -0
- package/lib/resolvers/mutations/orders/removeCartItem.js +19 -0
- package/lib/resolvers/mutations/orders/removeCartItem.js.map +1 -0
- package/lib/resolvers/mutations/orders/removeOrder.d.ts +4 -0
- package/lib/resolvers/mutations/orders/removeOrder.js +16 -0
- package/lib/resolvers/mutations/orders/removeOrder.js.map +1 -0
- package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.d.ts +5 -0
- package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.js +19 -0
- package/lib/resolvers/mutations/orders/setOrderDeliveryProvider.js.map +1 -0
- package/lib/resolvers/mutations/orders/setOrderPaymentProvider.d.ts +5 -0
- package/lib/resolvers/mutations/orders/setOrderPaymentProvider.js +19 -0
- package/lib/resolvers/mutations/orders/setOrderPaymentProvider.js.map +1 -0
- package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.d.ts +5 -0
- package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.js +37 -0
- package/lib/resolvers/mutations/orders/signPaymentProviderForCheckout.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateCart.d.ts +12 -0
- package/lib/resolvers/mutations/orders/updateCart.js +26 -0
- package/lib/resolvers/mutations/orders/updateCart.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateCartItem.d.ts +7 -0
- package/lib/resolvers/mutations/orders/updateCartItem.js +30 -0
- package/lib/resolvers/mutations/orders/updateCartItem.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.d.ts +6 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.js +35 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryPickUp.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.d.ts +6 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.js +30 -0
- package/lib/resolvers/mutations/orders/updateOrderDeliveryShipping.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentCard.d.ts +5 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentCard.js +29 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentCard.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.d.ts +5 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.js +31 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentGeneric.js.map +1 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.d.ts +5 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.js +31 -0
- package/lib/resolvers/mutations/orders/updateOrderPaymentInvoice.js.map +1 -0
- package/lib/resolvers/mutations/pageView.d.ts +7 -0
- package/lib/resolvers/mutations/pageView.js +11 -0
- package/lib/resolvers/mutations/pageView.js.map +1 -0
- package/lib/resolvers/mutations/payment/createPaymentProvider.d.ts +6 -0
- package/lib/resolvers/mutations/payment/createPaymentProvider.js +13 -0
- package/lib/resolvers/mutations/payment/createPaymentProvider.js.map +1 -0
- package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.d.ts +4 -0
- package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.js +21 -0
- package/lib/resolvers/mutations/payment/markPaymentCredentialsPreferred.js.map +1 -0
- package/lib/resolvers/mutations/payment/registerPaymentCredentials.d.ts +5 -0
- package/lib/resolvers/mutations/payment/registerPaymentCredentials.js +16 -0
- package/lib/resolvers/mutations/payment/registerPaymentCredentials.js.map +1 -0
- package/lib/resolvers/mutations/payment/removePaymentCredentials.d.ts +5 -0
- package/lib/resolvers/mutations/payment/removePaymentCredentials.js +12 -0
- package/lib/resolvers/mutations/payment/removePaymentCredentials.js.map +1 -0
- package/lib/resolvers/mutations/payment/removePaymentProvider.d.ts +5 -0
- package/lib/resolvers/mutations/payment/removePaymentProvider.js +13 -0
- package/lib/resolvers/mutations/payment/removePaymentProvider.js.map +1 -0
- package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.d.ts +5 -0
- package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.js +17 -0
- package/lib/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.js.map +1 -0
- package/lib/resolvers/mutations/payment/updatePaymentProvider.d.ts +7 -0
- package/lib/resolvers/mutations/payment/updatePaymentProvider.js +13 -0
- package/lib/resolvers/mutations/payment/updatePaymentProvider.js.map +1 -0
- package/lib/resolvers/mutations/products/addProductAssignment.d.ts +7 -0
- package/lib/resolvers/mutations/products/addProductAssignment.js +30 -0
- package/lib/resolvers/mutations/products/addProductAssignment.js.map +1 -0
- package/lib/resolvers/mutations/products/addProductMedia.d.ts +5 -0
- package/lib/resolvers/mutations/products/addProductMedia.js +19 -0
- package/lib/resolvers/mutations/products/addProductMedia.js.map +1 -0
- package/lib/resolvers/mutations/products/addProductReviewVote.d.ts +7 -0
- package/lib/resolvers/mutations/products/addProductReviewVote.js +15 -0
- package/lib/resolvers/mutations/products/addProductReviewVote.js.map +1 -0
- package/lib/resolvers/mutations/products/createProduct.d.ts +7 -0
- package/lib/resolvers/mutations/products/createProduct.js +10 -0
- package/lib/resolvers/mutations/products/createProduct.js.map +1 -0
- package/lib/resolvers/mutations/products/createProductBundleItem.d.ts +6 -0
- package/lib/resolvers/mutations/products/createProductBundleItem.js +24 -0
- package/lib/resolvers/mutations/products/createProductBundleItem.js.map +1 -0
- package/lib/resolvers/mutations/products/createProductReview.d.ts +6 -0
- package/lib/resolvers/mutations/products/createProductReview.js +15 -0
- package/lib/resolvers/mutations/products/createProductReview.js.map +1 -0
- package/lib/resolvers/mutations/products/createProductVariation.d.ts +10 -0
- package/lib/resolvers/mutations/products/createProductVariation.js +26 -0
- package/lib/resolvers/mutations/products/createProductVariation.js.map +1 -0
- package/lib/resolvers/mutations/products/createProductVariationOption.d.ts +8 -0
- package/lib/resolvers/mutations/products/createProductVariationOption.js +17 -0
- package/lib/resolvers/mutations/products/createProductVariationOption.js.map +1 -0
- package/lib/resolvers/mutations/products/prepareProductMediaUpload.d.ts +5 -0
- package/lib/resolvers/mutations/products/prepareProductMediaUpload.js +12 -0
- package/lib/resolvers/mutations/products/prepareProductMediaUpload.js.map +1 -0
- package/lib/resolvers/mutations/products/publishProduct.d.ts +4 -0
- package/lib/resolvers/mutations/products/publishProduct.js +15 -0
- package/lib/resolvers/mutations/products/publishProduct.js.map +1 -0
- package/lib/resolvers/mutations/products/removeBundleItem.d.ts +5 -0
- package/lib/resolvers/mutations/products/removeBundleItem.js +20 -0
- package/lib/resolvers/mutations/products/removeBundleItem.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProduct.d.ts +4 -0
- package/lib/resolvers/mutations/products/removeProduct.js +16 -0
- package/lib/resolvers/mutations/products/removeProduct.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductAssignment.d.ts +6 -0
- package/lib/resolvers/mutations/products/removeProductAssignment.js +21 -0
- package/lib/resolvers/mutations/products/removeProductAssignment.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductMedia.d.ts +4 -0
- package/lib/resolvers/mutations/products/removeProductMedia.js +16 -0
- package/lib/resolvers/mutations/products/removeProductMedia.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductReview.d.ts +4 -0
- package/lib/resolvers/mutations/products/removeProductReview.js +14 -0
- package/lib/resolvers/mutations/products/removeProductReview.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductReviewVote.d.ts +6 -0
- package/lib/resolvers/mutations/products/removeProductReviewVote.js +15 -0
- package/lib/resolvers/mutations/products/removeProductReviewVote.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductVariation.d.ts +4 -0
- package/lib/resolvers/mutations/products/removeProductVariation.js +15 -0
- package/lib/resolvers/mutations/products/removeProductVariation.js.map +1 -0
- package/lib/resolvers/mutations/products/removeProductVariationOption.d.ts +5 -0
- package/lib/resolvers/mutations/products/removeProductVariationOption.js +20 -0
- package/lib/resolvers/mutations/products/removeProductVariationOption.js.map +1 -0
- package/lib/resolvers/mutations/products/reorderProductMedia.d.ts +7 -0
- package/lib/resolvers/mutations/products/reorderProductMedia.js +7 -0
- package/lib/resolvers/mutations/products/reorderProductMedia.js.map +1 -0
- package/lib/resolvers/mutations/products/unpublishProduct.d.ts +4 -0
- package/lib/resolvers/mutations/products/unpublishProduct.js +15 -0
- package/lib/resolvers/mutations/products/unpublishProduct.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProduct.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProduct.js +12 -0
- package/lib/resolvers/mutations/products/updateProduct.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductCommerce.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductCommerce.js +12 -0
- package/lib/resolvers/mutations/products/updateProductCommerce.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductMediaTexts.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductMediaTexts.js +14 -0
- package/lib/resolvers/mutations/products/updateProductMediaTexts.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductPlan.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductPlan.js +19 -0
- package/lib/resolvers/mutations/products/updateProductPlan.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductReview.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductReview.js +12 -0
- package/lib/resolvers/mutations/products/updateProductReview.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductSupply.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductSupply.js +20 -0
- package/lib/resolvers/mutations/products/updateProductSupply.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductTexts.d.ts +5 -0
- package/lib/resolvers/mutations/products/updateProductTexts.js +13 -0
- package/lib/resolvers/mutations/products/updateProductTexts.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductVariationTexts.d.ts +7 -0
- package/lib/resolvers/mutations/products/updateProductVariationTexts.js +15 -0
- package/lib/resolvers/mutations/products/updateProductVariationTexts.js.map +1 -0
- package/lib/resolvers/mutations/products/updateProductWarehousing.d.ts +6 -0
- package/lib/resolvers/mutations/products/updateProductWarehousing.js +20 -0
- package/lib/resolvers/mutations/products/updateProductWarehousing.js.map +1 -0
- package/lib/resolvers/mutations/quotations/makeQuotationProposal.d.ts +5 -0
- package/lib/resolvers/mutations/quotations/makeQuotationProposal.js +18 -0
- package/lib/resolvers/mutations/quotations/makeQuotationProposal.js.map +1 -0
- package/lib/resolvers/mutations/quotations/rejectQuotation.d.ts +5 -0
- package/lib/resolvers/mutations/quotations/rejectQuotation.js +18 -0
- package/lib/resolvers/mutations/quotations/rejectQuotation.js.map +1 -0
- package/lib/resolvers/mutations/quotations/requestQuotation.d.ts +6 -0
- package/lib/resolvers/mutations/quotations/requestQuotation.js +20 -0
- package/lib/resolvers/mutations/quotations/requestQuotation.js.map +1 -0
- package/lib/resolvers/mutations/quotations/verifyQuotation.d.ts +5 -0
- package/lib/resolvers/mutations/quotations/verifyQuotation.js +18 -0
- package/lib/resolvers/mutations/quotations/verifyQuotation.js.map +1 -0
- package/lib/resolvers/mutations/users/heartbeat.d.ts +2 -0
- package/lib/resolvers/mutations/users/heartbeat.js +19 -0
- package/lib/resolvers/mutations/users/heartbeat.js.map +1 -0
- package/lib/resolvers/mutations/users/prepareUserAvatarUpload.d.ts +5 -0
- package/lib/resolvers/mutations/users/prepareUserAvatarUpload.js +16 -0
- package/lib/resolvers/mutations/users/prepareUserAvatarUpload.js.map +1 -0
- package/lib/resolvers/mutations/users/setRoles.d.ts +5 -0
- package/lib/resolvers/mutations/users/setRoles.js +12 -0
- package/lib/resolvers/mutations/users/setRoles.js.map +1 -0
- package/lib/resolvers/mutations/users/setUserTags.d.ts +5 -0
- package/lib/resolvers/mutations/users/setUserTags.js +12 -0
- package/lib/resolvers/mutations/users/setUserTags.js.map +1 -0
- package/lib/resolvers/mutations/users/updateUserAvatar.d.ts +5 -0
- package/lib/resolvers/mutations/users/updateUserAvatar.js +23 -0
- package/lib/resolvers/mutations/users/updateUserAvatar.js.map +1 -0
- package/lib/resolvers/mutations/users/updateUserProfile.d.ts +7 -0
- package/lib/resolvers/mutations/users/updateUserProfile.js +11 -0
- package/lib/resolvers/mutations/users/updateUserProfile.js.map +1 -0
- package/lib/resolvers/mutations/utils/getOrderCart.d.ts +6 -0
- package/lib/resolvers/mutations/utils/getOrderCart.js +18 -0
- package/lib/resolvers/mutations/utils/getOrderCart.js.map +1 -0
- package/lib/resolvers/mutations/warehousing/createWarehousingProvider.d.ts +5 -0
- package/lib/resolvers/mutations/warehousing/createWarehousingProvider.js +13 -0
- package/lib/resolvers/mutations/warehousing/createWarehousingProvider.js.map +1 -0
- package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.d.ts +4 -0
- package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.js +16 -0
- package/lib/resolvers/mutations/warehousing/removeWarehousingProvider.js.map +1 -0
- package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.d.ts +6 -0
- package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.js +15 -0
- package/lib/resolvers/mutations/warehousing/updateWarehousingProvider.js.map +1 -0
- package/lib/resolvers/mutations/worker/addWork.d.ts +3 -0
- package/lib/resolvers/mutations/worker/addWork.js +7 -0
- package/lib/resolvers/mutations/worker/addWork.js.map +1 -0
- package/lib/resolvers/mutations/worker/allocateWork.d.ts +5 -0
- package/lib/resolvers/mutations/worker/allocateWork.js +8 -0
- package/lib/resolvers/mutations/worker/allocateWork.js.map +1 -0
- package/lib/resolvers/mutations/worker/doWork.d.ts +3 -0
- package/lib/resolvers/mutations/worker/doWork.js +13 -0
- package/lib/resolvers/mutations/worker/doWork.js.map +1 -0
- package/lib/resolvers/mutations/worker/finishWork.d.ts +10 -0
- package/lib/resolvers/mutations/worker/finishWork.js +22 -0
- package/lib/resolvers/mutations/worker/finishWork.js.map +1 -0
- package/lib/resolvers/mutations/worker/removeWork.d.ts +4 -0
- package/lib/resolvers/mutations/worker/removeWork.js +14 -0
- package/lib/resolvers/mutations/worker/removeWork.js.map +1 -0
- package/lib/resolvers/queries/assortments/assortment.d.ts +5 -0
- package/lib/resolvers/queries/assortments/assortment.js +12 -0
- package/lib/resolvers/queries/assortments/assortment.js.map +1 -0
- package/lib/resolvers/queries/assortments/assortments.d.ts +7 -0
- package/lib/resolvers/queries/assortments/assortments.js +6 -0
- package/lib/resolvers/queries/assortments/assortments.js.map +1 -0
- package/lib/resolvers/queries/assortments/assortmentsCount.d.ts +3 -0
- package/lib/resolvers/queries/assortments/assortmentsCount.js +6 -0
- package/lib/resolvers/queries/assortments/assortmentsCount.js.map +1 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.d.ts +4 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.js +11 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentMediaTexts.js.map +1 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentTexts.d.ts +4 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentTexts.js +6 -0
- package/lib/resolvers/queries/assortments/translatedAssortmentTexts.js.map +1 -0
- package/lib/resolvers/queries/countries/countries.d.ts +7 -0
- package/lib/resolvers/queries/countries/countries.js +6 -0
- package/lib/resolvers/queries/countries/countries.js.map +1 -0
- package/lib/resolvers/queries/countries/countriesCount.d.ts +3 -0
- package/lib/resolvers/queries/countries/countriesCount.js +8 -0
- package/lib/resolvers/queries/countries/countriesCount.js.map +1 -0
- package/lib/resolvers/queries/countries/country.d.ts +4 -0
- package/lib/resolvers/queries/countries/country.js +9 -0
- package/lib/resolvers/queries/countries/country.js.map +1 -0
- package/lib/resolvers/queries/currencies/currencies.d.ts +7 -0
- package/lib/resolvers/queries/currencies/currencies.js +6 -0
- package/lib/resolvers/queries/currencies/currencies.js.map +1 -0
- package/lib/resolvers/queries/currencies/currenciesCount.d.ts +3 -0
- package/lib/resolvers/queries/currencies/currenciesCount.js +8 -0
- package/lib/resolvers/queries/currencies/currenciesCount.js.map +1 -0
- package/lib/resolvers/queries/currencies/currency.d.ts +4 -0
- package/lib/resolvers/queries/currencies/currency.js +9 -0
- package/lib/resolvers/queries/currencies/currency.js.map +1 -0
- package/lib/resolvers/queries/delivery/deliveryInterfaces.d.ts +5 -0
- package/lib/resolvers/queries/delivery/deliveryInterfaces.js +6 -0
- package/lib/resolvers/queries/delivery/deliveryInterfaces.js.map +1 -0
- package/lib/resolvers/queries/delivery/deliveryProvider.d.ts +4 -0
- package/lib/resolvers/queries/delivery/deliveryProvider.js +9 -0
- package/lib/resolvers/queries/delivery/deliveryProvider.js.map +1 -0
- package/lib/resolvers/queries/delivery/deliveryProviders.d.ts +3 -0
- package/lib/resolvers/queries/delivery/deliveryProviders.js +6 -0
- package/lib/resolvers/queries/delivery/deliveryProviders.js.map +1 -0
- package/lib/resolvers/queries/delivery/deliveryProvidersCount.d.ts +3 -0
- package/lib/resolvers/queries/delivery/deliveryProvidersCount.js +6 -0
- package/lib/resolvers/queries/delivery/deliveryProvidersCount.js.map +1 -0
- package/lib/resolvers/queries/enrollments/enrollment.d.ts +4 -0
- package/lib/resolvers/queries/enrollments/enrollment.js +9 -0
- package/lib/resolvers/queries/enrollments/enrollment.js.map +1 -0
- package/lib/resolvers/queries/enrollments/enrollments.d.ts +7 -0
- package/lib/resolvers/queries/enrollments/enrollments.js +6 -0
- package/lib/resolvers/queries/enrollments/enrollments.js.map +1 -0
- package/lib/resolvers/queries/enrollments/enrollmentsCount.d.ts +3 -0
- package/lib/resolvers/queries/enrollments/enrollmentsCount.js +6 -0
- package/lib/resolvers/queries/enrollments/enrollmentsCount.js.map +1 -0
- package/lib/resolvers/queries/events/event.d.ts +5 -0
- package/lib/resolvers/queries/events/event.js +6 -0
- package/lib/resolvers/queries/events/event.js.map +1 -0
- package/lib/resolvers/queries/events/events.d.ts +7 -0
- package/lib/resolvers/queries/events/events.js +8 -0
- package/lib/resolvers/queries/events/events.js.map +1 -0
- package/lib/resolvers/queries/events/eventsCounts.d.ts +3 -0
- package/lib/resolvers/queries/events/eventsCounts.js +7 -0
- package/lib/resolvers/queries/events/eventsCounts.js.map +1 -0
- package/lib/resolvers/queries/filters/filter.d.ts +4 -0
- package/lib/resolvers/queries/filters/filter.js +9 -0
- package/lib/resolvers/queries/filters/filter.js.map +1 -0
- package/lib/resolvers/queries/filters/filters.d.ts +7 -0
- package/lib/resolvers/queries/filters/filters.js +8 -0
- package/lib/resolvers/queries/filters/filters.js.map +1 -0
- package/lib/resolvers/queries/filters/filtersCount.d.ts +3 -0
- package/lib/resolvers/queries/filters/filtersCount.js +8 -0
- package/lib/resolvers/queries/filters/filtersCount.js.map +1 -0
- package/lib/resolvers/queries/filters/searchAssortments.d.ts +3 -0
- package/lib/resolvers/queries/filters/searchAssortments.js +13 -0
- package/lib/resolvers/queries/filters/searchAssortments.js.map +1 -0
- package/lib/resolvers/queries/filters/searchProducts.d.ts +9 -0
- package/lib/resolvers/queries/filters/searchProducts.js +23 -0
- package/lib/resolvers/queries/filters/searchProducts.js.map +1 -0
- package/lib/resolvers/queries/filters/translatedFilterTexts.d.ts +5 -0
- package/lib/resolvers/queries/filters/translatedFilterTexts.js +11 -0
- package/lib/resolvers/queries/filters/translatedFilterTexts.js.map +1 -0
- package/lib/resolvers/queries/index.d.ts +67 -0
- package/lib/resolvers/queries/index.js +131 -0
- package/lib/resolvers/queries/index.js.map +1 -0
- package/lib/resolvers/queries/languages/language.d.ts +4 -0
- package/lib/resolvers/queries/languages/language.js +9 -0
- package/lib/resolvers/queries/languages/language.js.map +1 -0
- package/lib/resolvers/queries/languages/languages.d.ts +7 -0
- package/lib/resolvers/queries/languages/languages.js +6 -0
- package/lib/resolvers/queries/languages/languages.js.map +1 -0
- package/lib/resolvers/queries/languages/languagesCount.d.ts +3 -0
- package/lib/resolvers/queries/languages/languagesCount.js +8 -0
- package/lib/resolvers/queries/languages/languagesCount.js.map +1 -0
- package/lib/resolvers/queries/orders/order.d.ts +4 -0
- package/lib/resolvers/queries/orders/order.js +9 -0
- package/lib/resolvers/queries/orders/order.js.map +1 -0
- package/lib/resolvers/queries/orders/orders.d.ts +6 -0
- package/lib/resolvers/queries/orders/orders.js +9 -0
- package/lib/resolvers/queries/orders/orders.js.map +1 -0
- package/lib/resolvers/queries/orders/ordersCount.d.ts +3 -0
- package/lib/resolvers/queries/orders/ordersCount.js +6 -0
- package/lib/resolvers/queries/orders/ordersCount.js.map +1 -0
- package/lib/resolvers/queries/payment/paymentInterfaces.d.ts +5 -0
- package/lib/resolvers/queries/payment/paymentInterfaces.js +6 -0
- package/lib/resolvers/queries/payment/paymentInterfaces.js.map +1 -0
- package/lib/resolvers/queries/payment/paymentProvider.d.ts +4 -0
- package/lib/resolvers/queries/payment/paymentProvider.js +11 -0
- package/lib/resolvers/queries/payment/paymentProvider.js.map +1 -0
- package/lib/resolvers/queries/payment/paymentProviders.d.ts +3 -0
- package/lib/resolvers/queries/payment/paymentProviders.js +6 -0
- package/lib/resolvers/queries/payment/paymentProviders.js.map +1 -0
- package/lib/resolvers/queries/payment/paymentProvidersCount.d.ts +3 -0
- package/lib/resolvers/queries/payment/paymentProvidersCount.js +6 -0
- package/lib/resolvers/queries/payment/paymentProvidersCount.js.map +1 -0
- package/lib/resolvers/queries/products/product.d.ts +5 -0
- package/lib/resolvers/queries/products/product.js +9 -0
- package/lib/resolvers/queries/products/product.js.map +1 -0
- package/lib/resolvers/queries/products/productCatalogPrices.d.ts +4 -0
- package/lib/resolvers/queries/products/productCatalogPrices.js +12 -0
- package/lib/resolvers/queries/products/productCatalogPrices.js.map +1 -0
- package/lib/resolvers/queries/products/productReview.d.ts +4 -0
- package/lib/resolvers/queries/products/productReview.js +9 -0
- package/lib/resolvers/queries/products/productReview.js.map +1 -0
- package/lib/resolvers/queries/products/productReviews.d.ts +7 -0
- package/lib/resolvers/queries/products/productReviews.js +9 -0
- package/lib/resolvers/queries/products/productReviews.js.map +1 -0
- package/lib/resolvers/queries/products/productReviewsCount.d.ts +3 -0
- package/lib/resolvers/queries/products/productReviewsCount.js +6 -0
- package/lib/resolvers/queries/products/productReviewsCount.js.map +1 -0
- package/lib/resolvers/queries/products/products.d.ts +7 -0
- package/lib/resolvers/queries/products/products.js +6 -0
- package/lib/resolvers/queries/products/products.js.map +1 -0
- package/lib/resolvers/queries/products/productsCount.d.ts +3 -0
- package/lib/resolvers/queries/products/productsCount.js +6 -0
- package/lib/resolvers/queries/products/productsCount.js.map +1 -0
- package/lib/resolvers/queries/products/translatedProductMediaTexts.d.ts +4 -0
- package/lib/resolvers/queries/products/translatedProductMediaTexts.js +6 -0
- package/lib/resolvers/queries/products/translatedProductMediaTexts.js.map +1 -0
- package/lib/resolvers/queries/products/translatedProductTexts.d.ts +4 -0
- package/lib/resolvers/queries/products/translatedProductTexts.js +6 -0
- package/lib/resolvers/queries/products/translatedProductTexts.js.map +1 -0
- package/lib/resolvers/queries/products/translatedProductVariationTexts.d.ts +5 -0
- package/lib/resolvers/queries/products/translatedProductVariationTexts.js +12 -0
- package/lib/resolvers/queries/products/translatedProductVariationTexts.js.map +1 -0
- package/lib/resolvers/queries/quotations/quotation.d.ts +4 -0
- package/lib/resolvers/queries/quotations/quotation.js +9 -0
- package/lib/resolvers/queries/quotations/quotation.js.map +1 -0
- package/lib/resolvers/queries/quotations/quotations.d.ts +7 -0
- package/lib/resolvers/queries/quotations/quotations.js +6 -0
- package/lib/resolvers/queries/quotations/quotations.js.map +1 -0
- package/lib/resolvers/queries/quotations/quotationsCount.d.ts +3 -0
- package/lib/resolvers/queries/quotations/quotationsCount.js +6 -0
- package/lib/resolvers/queries/quotations/quotationsCount.js.map +1 -0
- package/lib/resolvers/queries/shopInfo.d.ts +5 -0
- package/lib/resolvers/queries/shopInfo.js +10 -0
- package/lib/resolvers/queries/shopInfo.js.map +1 -0
- package/lib/resolvers/queries/users/me.d.ts +2 -0
- package/lib/resolvers/queries/users/me.js +6 -0
- package/lib/resolvers/queries/users/me.js.map +1 -0
- package/lib/resolvers/queries/users/user.d.ts +4 -0
- package/lib/resolvers/queries/users/user.js +6 -0
- package/lib/resolvers/queries/users/user.js.map +1 -0
- package/lib/resolvers/queries/users/users.d.ts +6 -0
- package/lib/resolvers/queries/users/users.js +8 -0
- package/lib/resolvers/queries/users/users.js.map +1 -0
- package/lib/resolvers/queries/users/usersCount.d.ts +3 -0
- package/lib/resolvers/queries/users/usersCount.js +8 -0
- package/lib/resolvers/queries/users/usersCount.js.map +1 -0
- package/lib/resolvers/queries/warehousing/warehousingInterfaces.d.ts +5 -0
- package/lib/resolvers/queries/warehousing/warehousingInterfaces.js +6 -0
- package/lib/resolvers/queries/warehousing/warehousingInterfaces.js.map +1 -0
- package/lib/resolvers/queries/warehousing/warehousingProvider.d.ts +4 -0
- package/lib/resolvers/queries/warehousing/warehousingProvider.js +11 -0
- package/lib/resolvers/queries/warehousing/warehousingProvider.js.map +1 -0
- package/lib/resolvers/queries/warehousing/warehousingProviders.d.ts +3 -0
- package/lib/resolvers/queries/warehousing/warehousingProviders.js +6 -0
- package/lib/resolvers/queries/warehousing/warehousingProviders.js.map +1 -0
- package/lib/resolvers/queries/warehousing/warehousingProvidersCount.d.ts +3 -0
- package/lib/resolvers/queries/warehousing/warehousingProvidersCount.js +6 -0
- package/lib/resolvers/queries/warehousing/warehousingProvidersCount.js.map +1 -0
- package/lib/resolvers/queries/worker/activeWorkTypes.d.ts +2 -0
- package/lib/resolvers/queries/worker/activeWorkTypes.js +6 -0
- package/lib/resolvers/queries/worker/activeWorkTypes.js.map +1 -0
- package/lib/resolvers/queries/worker/work.d.ts +4 -0
- package/lib/resolvers/queries/worker/work.js +9 -0
- package/lib/resolvers/queries/worker/work.js.map +1 -0
- package/lib/resolvers/queries/worker/workQueue.d.ts +14 -0
- package/lib/resolvers/queries/worker/workQueue.js +16 -0
- package/lib/resolvers/queries/worker/workQueue.js.map +1 -0
- package/lib/resolvers/queries/worker/workQueueCount.d.ts +3 -0
- package/lib/resolvers/queries/worker/workQueueCount.js +8 -0
- package/lib/resolvers/queries/worker/workQueueCount.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-filter-types.d.ts +10 -0
- package/lib/resolvers/type/assortment/assortment-filter-types.js +9 -0
- package/lib/resolvers/type/assortment/assortment-filter-types.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-link-types.d.ts +9 -0
- package/lib/resolvers/type/assortment/assortment-link-types.js +9 -0
- package/lib/resolvers/type/assortment/assortment-link-types.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-media-types.d.ts +12 -0
- package/lib/resolvers/type/assortment/assortment-media-types.js +8 -0
- package/lib/resolvers/type/assortment/assortment-media-types.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-path-link-types.d.ts +14 -0
- package/lib/resolvers/type/assortment/assortment-path-link-types.js +23 -0
- package/lib/resolvers/type/assortment/assortment-path-link-types.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-product-types.d.ts +10 -0
- package/lib/resolvers/type/assortment/assortment-product-types.js +9 -0
- package/lib/resolvers/type/assortment/assortment-product-types.js.map +1 -0
- package/lib/resolvers/type/assortment/assortment-types.d.ts +35 -0
- package/lib/resolvers/type/assortment/assortment-types.js +69 -0
- package/lib/resolvers/type/assortment/assortment-types.js.map +1 -0
- package/lib/resolvers/type/bookmark-types.d.ts +11 -0
- package/lib/resolvers/type/bookmark-types.js +9 -0
- package/lib/resolvers/type/bookmark-types.js.map +1 -0
- package/lib/resolvers/type/color-types.d.ts +17 -0
- package/lib/resolvers/type/color-types.js +31 -0
- package/lib/resolvers/type/color-types.js.map +1 -0
- package/lib/resolvers/type/country-types.d.ts +14 -0
- package/lib/resolvers/type/country-types.js +20 -0
- package/lib/resolvers/type/country-types.js.map +1 -0
- package/lib/resolvers/type/delivery-provider-types.d.ts +27 -0
- package/lib/resolvers/type/delivery-provider-types.js +60 -0
- package/lib/resolvers/type/delivery-provider-types.js.map +1 -0
- package/lib/resolvers/type/dimensions-types.d.ts +22 -0
- package/lib/resolvers/type/dimensions-types.js +51 -0
- package/lib/resolvers/type/dimensions-types.js.map +1 -0
- package/lib/resolvers/type/dispatch-types.d.ts +14 -0
- package/lib/resolvers/type/dispatch-types.js +16 -0
- package/lib/resolvers/type/dispatch-types.js.map +1 -0
- package/lib/resolvers/type/enrollment/enrollment-delivery-types.d.ts +9 -0
- package/lib/resolvers/type/enrollment/enrollment-delivery-types.js +6 -0
- package/lib/resolvers/type/enrollment/enrollment-delivery-types.js.map +1 -0
- package/lib/resolvers/type/enrollment/enrollment-payment-types.d.ts +9 -0
- package/lib/resolvers/type/enrollment/enrollment-payment-types.js +8 -0
- package/lib/resolvers/type/enrollment/enrollment-payment-types.js.map +1 -0
- package/lib/resolvers/type/enrollment/enrollment-period-types.d.ts +9 -0
- package/lib/resolvers/type/enrollment/enrollment-period-types.js +6 -0
- package/lib/resolvers/type/enrollment/enrollment-period-types.js.map +1 -0
- package/lib/resolvers/type/enrollment/enrollment-plan-tyes.d.ts +9 -0
- package/lib/resolvers/type/enrollment/enrollment-plan-tyes.js +6 -0
- package/lib/resolvers/type/enrollment/enrollment-plan-tyes.js.map +1 -0
- package/lib/resolvers/type/enrollment/enrollment-types.d.ts +17 -0
- package/lib/resolvers/type/enrollment/enrollment-types.js +16 -0
- package/lib/resolvers/type/enrollment/enrollment-types.js.map +1 -0
- package/lib/resolvers/type/event-types.d.ts +8 -0
- package/lib/resolvers/type/event-types.js +6 -0
- package/lib/resolvers/type/event-types.js.map +1 -0
- package/lib/resolvers/type/filter/filter-option-types.d.ts +12 -0
- package/lib/resolvers/type/filter/filter-option-types.js +17 -0
- package/lib/resolvers/type/filter/filter-option-types.js.map +1 -0
- package/lib/resolvers/type/filter/filter-types.d.ts +11 -0
- package/lib/resolvers/type/filter/filter-types.js +17 -0
- package/lib/resolvers/type/filter/filter-types.js.map +1 -0
- package/lib/resolvers/type/filter/loaded-filter-option-types.d.ts +1 -0
- package/lib/resolvers/type/filter/loaded-filter-option-types.js +2 -0
- package/lib/resolvers/type/filter/loaded-filter-option-types.js.map +1 -0
- package/lib/resolvers/type/filter/loaded-filter-types.d.ts +1 -0
- package/lib/resolvers/type/filter/loaded-filter-types.js +2 -0
- package/lib/resolvers/type/filter/loaded-filter-types.js.map +1 -0
- package/lib/resolvers/type/index.d.ts +131 -0
- package/lib/resolvers/type/index.js +132 -0
- package/lib/resolvers/type/index.js.map +1 -0
- package/lib/resolvers/type/language-types.d.ts +7 -0
- package/lib/resolvers/type/language-types.js +9 -0
- package/lib/resolvers/type/language-types.js.map +1 -0
- package/lib/resolvers/type/login-method-response-types.d.ts +23 -0
- package/lib/resolvers/type/login-method-response-types.js +8 -0
- package/lib/resolvers/type/login-method-response-types.js.map +1 -0
- package/lib/resolvers/type/media-types.d.ts +6 -0
- package/lib/resolvers/type/media-types.js +6 -0
- package/lib/resolvers/type/media-types.js.map +1 -0
- package/lib/resolvers/type/order/order-delivery-discount-types.d.ts +12 -0
- package/lib/resolvers/type/order/order-delivery-discount-types.js +22 -0
- package/lib/resolvers/type/order/order-delivery-discount-types.js.map +1 -0
- package/lib/resolvers/type/order/order-delivery-pickup-types.d.ts +13 -0
- package/lib/resolvers/type/order/order-delivery-pickup-types.js +40 -0
- package/lib/resolvers/type/order/order-delivery-pickup-types.js.map +1 -0
- package/lib/resolvers/type/order/order-delivery-shipping-types.d.ts +13 -0
- package/lib/resolvers/type/order/order-delivery-shipping-types.js +27 -0
- package/lib/resolvers/type/order/order-delivery-shipping-types.js.map +1 -0
- package/lib/resolvers/type/order/order-delivery-types.d.ts +5 -0
- package/lib/resolvers/type/order/order-delivery-types.js +19 -0
- package/lib/resolvers/type/order/order-delivery-types.js.map +1 -0
- package/lib/resolvers/type/order/order-discount-types.d.ts +19 -0
- package/lib/resolvers/type/order/order-discount-types.js +31 -0
- package/lib/resolvers/type/order/order-discount-types.js.map +1 -0
- package/lib/resolvers/type/order/order-discountable-types.d.ts +17 -0
- package/lib/resolvers/type/order/order-discountable-types.js +21 -0
- package/lib/resolvers/type/order/order-discountable-types.js.map +1 -0
- package/lib/resolvers/type/order/order-global-discount-types.d.ts +15 -0
- package/lib/resolvers/type/order/order-global-discount-types.js +22 -0
- package/lib/resolvers/type/order/order-global-discount-types.js.map +1 -0
- package/lib/resolvers/type/order/order-item-discount-types.d.ts +12 -0
- package/lib/resolvers/type/order/order-item-discount-types.js +22 -0
- package/lib/resolvers/type/order/order-item-discount-types.js.map +1 -0
- package/lib/resolvers/type/order/order-item-types.d.ts +29 -0
- package/lib/resolvers/type/order/order-item-types.js +106 -0
- package/lib/resolvers/type/order/order-item-types.js.map +1 -0
- package/lib/resolvers/type/order/order-payment-card-types.d.ts +11 -0
- package/lib/resolvers/type/order/order-payment-card-types.js +24 -0
- package/lib/resolvers/type/order/order-payment-card-types.js.map +1 -0
- package/lib/resolvers/type/order/order-payment-discount-types.d.ts +15 -0
- package/lib/resolvers/type/order/order-payment-discount-types.js +16 -0
- package/lib/resolvers/type/order/order-payment-discount-types.js.map +1 -0
- package/lib/resolvers/type/order/order-payment-generic-types.d.ts +11 -0
- package/lib/resolvers/type/order/order-payment-generic-types.js +24 -0
- package/lib/resolvers/type/order/order-payment-generic-types.js.map +1 -0
- package/lib/resolvers/type/order/order-payment-invoice-types.d.ts +11 -0
- package/lib/resolvers/type/order/order-payment-invoice-types.js +24 -0
- package/lib/resolvers/type/order/order-payment-invoice-types.js.map +1 -0
- package/lib/resolvers/type/order/order-payment-types.d.ts +5 -0
- package/lib/resolvers/type/order/order-payment-types.js +20 -0
- package/lib/resolvers/type/order/order-payment-types.js.map +1 -0
- package/lib/resolvers/type/order/order-types.d.ts +36 -0
- package/lib/resolvers/type/order/order-types.js +47 -0
- package/lib/resolvers/type/order/order-types.js.map +1 -0
- package/lib/resolvers/type/payment/payment-credentials-types.d.ts +2 -0
- package/lib/resolvers/type/payment/payment-credentials-types.js +15 -0
- package/lib/resolvers/type/payment/payment-credentials-types.js.map +1 -0
- package/lib/resolvers/type/payment/payment-provider-types.d.ts +12 -0
- package/lib/resolvers/type/payment/payment-provider-types.js +17 -0
- package/lib/resolvers/type/payment/payment-provider-types.js.map +1 -0
- package/lib/resolvers/type/price-types.d.ts +16 -0
- package/lib/resolvers/type/price-types.js +19 -0
- package/lib/resolvers/type/price-types.js.map +1 -0
- package/lib/resolvers/type/product/product-assortment-path-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-assortment-path-types.js +8 -0
- package/lib/resolvers/type/product/product-assortment-path-types.js.map +1 -0
- package/lib/resolvers/type/product/product-bundle-item-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-bundle-item-types.js +8 -0
- package/lib/resolvers/type/product/product-bundle-item-types.js.map +1 -0
- package/lib/resolvers/type/product/product-bundle-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-bundle-types.js +8 -0
- package/lib/resolvers/type/product/product-bundle-types.js.map +1 -0
- package/lib/resolvers/type/product/product-catalog-price-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-catalog-price-types.js +15 -0
- package/lib/resolvers/type/product/product-catalog-price-types.js.map +1 -0
- package/lib/resolvers/type/product/product-configurable-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-configurable-types.js +49 -0
- package/lib/resolvers/type/product/product-configurable-types.js.map +1 -0
- package/lib/resolvers/type/product/product-discount.d.ts +19 -0
- package/lib/resolvers/type/product/product-discount.js +30 -0
- package/lib/resolvers/type/product/product-discount.js.map +1 -0
- package/lib/resolvers/type/product/product-media-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-media-types.js +12 -0
- package/lib/resolvers/type/product/product-media-types.js.map +1 -0
- package/lib/resolvers/type/product/product-plan-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-plan-types.js +53 -0
- package/lib/resolvers/type/product/product-plan-types.js.map +1 -0
- package/lib/resolvers/type/product/product-review-types.d.ts +15 -0
- package/lib/resolvers/type/product/product-review-types.js +15 -0
- package/lib/resolvers/type/product/product-review-types.js.map +1 -0
- package/lib/resolvers/type/product/product-simple-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-simple-types.js +77 -0
- package/lib/resolvers/type/product/product-simple-types.js.map +1 -0
- package/lib/resolvers/type/product/product-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-types.js +58 -0
- package/lib/resolvers/type/product/product-types.js.map +1 -0
- package/lib/resolvers/type/product/product-variation-assignment-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-variation-assignment-types.js +18 -0
- package/lib/resolvers/type/product/product-variation-assignment-types.js.map +1 -0
- package/lib/resolvers/type/product/product-variation-assignment-vector.d.ts +2 -0
- package/lib/resolvers/type/product/product-variation-assignment-vector.js +17 -0
- package/lib/resolvers/type/product/product-variation-assignment-vector.js.map +1 -0
- package/lib/resolvers/type/product/product-variation-option-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-variation-option-types.js +16 -0
- package/lib/resolvers/type/product/product-variation-option-types.js.map +1 -0
- package/lib/resolvers/type/product/product-variation-types.d.ts +2 -0
- package/lib/resolvers/type/product/product-variation-types.js +12 -0
- package/lib/resolvers/type/product/product-variation-types.js.map +1 -0
- package/lib/resolvers/type/quotation-types.d.ts +23 -0
- package/lib/resolvers/type/quotation-types.js +21 -0
- package/lib/resolvers/type/quotation-types.js.map +1 -0
- package/lib/resolvers/type/shop-types.d.ts +12 -0
- package/lib/resolvers/type/shop-types.js +20 -0
- package/lib/resolvers/type/shop-types.js.map +1 -0
- package/lib/resolvers/type/stock-types.d.ts +13 -0
- package/lib/resolvers/type/stock-types.js +15 -0
- package/lib/resolvers/type/stock-types.js.map +1 -0
- package/lib/resolvers/type/user-types.d.ts +53 -0
- package/lib/resolvers/type/user-types.js +117 -0
- package/lib/resolvers/type/user-types.js.map +1 -0
- package/lib/resolvers/type/warehousing-provider-types.d.ts +2 -0
- package/lib/resolvers/type/warehousing-provider-types.js +15 -0
- package/lib/resolvers/type/warehousing-provider-types.js.map +1 -0
- package/lib/resolvers/type/work-types.d.ts +10 -0
- package/lib/resolvers/type/work-types.js +14 -0
- package/lib/resolvers/type/work-types.js.map +1 -0
- package/lib/roles/admin.d.ts +1 -0
- package/lib/roles/admin.js +72 -0
- package/lib/roles/admin.js.map +1 -0
- package/lib/roles/all.d.ts +1 -0
- package/lib/roles/all.js +97 -0
- package/lib/roles/all.js.map +1 -0
- package/lib/roles/index.d.ts +16 -0
- package/lib/roles/index.js +117 -0
- package/lib/roles/index.js.map +1 -0
- package/lib/roles/loggedIn.d.ts +1 -0
- package/lib/roles/loggedIn.js +167 -0
- package/lib/roles/loggedIn.js.map +1 -0
- package/lib/schema/index.d.ts +2 -0
- package/lib/schema/index.js +7 -0
- package/lib/schema/index.js.map +1 -0
- package/lib/schema/inputTypes.d.ts +2 -0
- package/lib/schema/inputTypes.js +294 -0
- package/lib/schema/inputTypes.js.map +1 -0
- package/lib/schema/mutation.d.ts +2 -0
- package/lib/schema/mutation.js +852 -0
- package/lib/schema/mutation.js.map +1 -0
- package/lib/schema/query.d.ts +2 -0
- package/lib/schema/query.js +435 -0
- package/lib/schema/query.js.map +1 -0
- package/lib/schema/scalars.d.ts +2 -0
- package/lib/schema/scalars.js +10 -0
- package/lib/schema/scalars.js.map +1 -0
- package/lib/schema/types/address.d.ts +2 -0
- package/lib/schema/types/address.js +16 -0
- package/lib/schema/types/address.js.map +1 -0
- package/lib/schema/types/assortment.d.ts +2 -0
- package/lib/schema/types/assortment.js +100 -0
- package/lib/schema/types/assortment.js.map +1 -0
- package/lib/schema/types/bookmark.d.ts +2 -0
- package/lib/schema/types/bookmark.js +11 -0
- package/lib/schema/types/bookmark.js.map +1 -0
- package/lib/schema/types/color.d.ts +2 -0
- package/lib/schema/types/color.js +12 -0
- package/lib/schema/types/color.js.map +1 -0
- package/lib/schema/types/contact.d.ts +2 -0
- package/lib/schema/types/contact.js +9 -0
- package/lib/schema/types/contact.js.map +1 -0
- package/lib/schema/types/country.d.ts +2 -0
- package/lib/schema/types/country.js +17 -0
- package/lib/schema/types/country.js.map +1 -0
- package/lib/schema/types/currency.d.ts +2 -0
- package/lib/schema/types/currency.js +11 -0
- package/lib/schema/types/currency.js.map +1 -0
- package/lib/schema/types/delivery.d.ts +2 -0
- package/lib/schema/types/delivery.js +42 -0
- package/lib/schema/types/delivery.js.map +1 -0
- package/lib/schema/types/dimensions.d.ts +2 -0
- package/lib/schema/types/dimensions.js +23 -0
- package/lib/schema/types/dimensions.js.map +1 -0
- package/lib/schema/types/discount.d.ts +2 -0
- package/lib/schema/types/discount.js +12 -0
- package/lib/schema/types/discount.js.map +1 -0
- package/lib/schema/types/dispatch.d.ts +2 -0
- package/lib/schema/types/dispatch.js +12 -0
- package/lib/schema/types/dispatch.js.map +1 -0
- package/lib/schema/types/enrollment.d.ts +2 -0
- package/lib/schema/types/enrollment.js +69 -0
- package/lib/schema/types/enrollment.js.map +1 -0
- package/lib/schema/types/events.d.ts +2 -0
- package/lib/schema/types/events.js +15 -0
- package/lib/schema/types/events.js.map +1 -0
- package/lib/schema/types/files.d.ts +2 -0
- package/lib/schema/types/files.js +10 -0
- package/lib/schema/types/files.js.map +1 -0
- package/lib/schema/types/filter.d.ts +2 -0
- package/lib/schema/types/filter.js +67 -0
- package/lib/schema/types/filter.js.map +1 -0
- package/lib/schema/types/geo-position.d.ts +2 -0
- package/lib/schema/types/geo-position.js +10 -0
- package/lib/schema/types/geo-position.js.map +1 -0
- package/lib/schema/types/index.d.ts +2 -0
- package/lib/schema/types/index.js +63 -0
- package/lib/schema/types/index.js.map +1 -0
- package/lib/schema/types/language.d.ts +2 -0
- package/lib/schema/types/language.js +16 -0
- package/lib/schema/types/language.js.map +1 -0
- package/lib/schema/types/log.d.ts +2 -0
- package/lib/schema/types/log.js +16 -0
- package/lib/schema/types/log.js.map +1 -0
- package/lib/schema/types/media.d.ts +2 -0
- package/lib/schema/types/media.js +12 -0
- package/lib/schema/types/media.js.map +1 -0
- package/lib/schema/types/order/delivery.d.ts +2 -0
- package/lib/schema/types/order/delivery.js +51 -0
- package/lib/schema/types/order/delivery.js.map +1 -0
- package/lib/schema/types/order/discount.d.ts +2 -0
- package/lib/schema/types/order/discount.js +60 -0
- package/lib/schema/types/order/discount.js.map +1 -0
- package/lib/schema/types/order/index.d.ts +2 -0
- package/lib/schema/types/order/index.js +8 -0
- package/lib/schema/types/order/index.js.map +1 -0
- package/lib/schema/types/order/item.d.ts +2 -0
- package/lib/schema/types/order/item.js +35 -0
- package/lib/schema/types/order/item.js.map +1 -0
- package/lib/schema/types/order/order.d.ts +2 -0
- package/lib/schema/types/order/order.js +119 -0
- package/lib/schema/types/order/order.js.map +1 -0
- package/lib/schema/types/order/payment.d.ts +2 -0
- package/lib/schema/types/order/payment.js +57 -0
- package/lib/schema/types/order/payment.js.map +1 -0
- package/lib/schema/types/order/pick-up-location.d.ts +2 -0
- package/lib/schema/types/order/pick-up-location.js +12 -0
- package/lib/schema/types/order/pick-up-location.js.map +1 -0
- package/lib/schema/types/payment.d.ts +2 -0
- package/lib/schema/types/payment.js +56 -0
- package/lib/schema/types/payment.js.map +1 -0
- package/lib/schema/types/price.d.ts +2 -0
- package/lib/schema/types/price.js +18 -0
- package/lib/schema/types/price.js.map +1 -0
- package/lib/schema/types/product/bundle-product.d.ts +2 -0
- package/lib/schema/types/product/bundle-product.js +40 -0
- package/lib/schema/types/product/bundle-product.js.map +1 -0
- package/lib/schema/types/product/configurable-product.d.ts +2 -0
- package/lib/schema/types/product/configurable-product.js +119 -0
- package/lib/schema/types/product/configurable-product.js.map +1 -0
- package/lib/schema/types/product/index.d.ts +2 -0
- package/lib/schema/types/product/index.js +7 -0
- package/lib/schema/types/product/index.js.map +1 -0
- package/lib/schema/types/product/plan-product.d.ts +2 -0
- package/lib/schema/types/product/plan-product.js +69 -0
- package/lib/schema/types/product/plan-product.js.map +1 -0
- package/lib/schema/types/product/product.d.ts +2 -0
- package/lib/schema/types/product/product.js +137 -0
- package/lib/schema/types/product/product.js.map +1 -0
- package/lib/schema/types/product/simple-product.d.ts +2 -0
- package/lib/schema/types/product/simple-product.js +51 -0
- package/lib/schema/types/product/simple-product.js.map +1 -0
- package/lib/schema/types/quotation.d.ts +2 -0
- package/lib/schema/types/quotation.js +64 -0
- package/lib/schema/types/quotation.js.map +1 -0
- package/lib/schema/types/search.d.ts +2 -0
- package/lib/schema/types/search.js +38 -0
- package/lib/schema/types/search.js.map +1 -0
- package/lib/schema/types/shop.d.ts +2 -0
- package/lib/schema/types/shop.js +17 -0
- package/lib/schema/types/shop.js.map +1 -0
- package/lib/schema/types/stock.d.ts +2 -0
- package/lib/schema/types/stock.js +11 -0
- package/lib/schema/types/stock.js.map +1 -0
- package/lib/schema/types/types.d.ts +2 -0
- package/lib/schema/types/types.js +13 -0
- package/lib/schema/types/types.js.map +1 -0
- package/lib/schema/types/user.d.ts +2 -0
- package/lib/schema/types/user.js +82 -0
- package/lib/schema/types/user.js.map +1 -0
- package/lib/schema/types/warehousing.d.ts +2 -0
- package/lib/schema/types/warehousing.js +36 -0
- package/lib/schema/types/warehousing.js.map +1 -0
- package/lib/schema/types/worker.d.ts +2 -0
- package/lib/schema/types/worker.js +64 -0
- package/lib/schema/types/worker.js.map +1 -0
- package/lib/user-context.d.ts +5 -0
- package/lib/user-context.js +50 -0
- package/lib/user-context.js.map +1 -0
- package/package.js +33 -0
- package/package.json +60 -0
- package/src/acl.ts +97 -0
- package/src/api-index.ts +36 -0
- package/src/context.ts +44 -0
- package/src/createBulkImportServer.ts +95 -0
- package/src/createGraphQLServer.ts +109 -0
- package/src/errors.ts +174 -0
- package/src/hashPassword.ts +5 -0
- package/src/loaders/index.ts +98 -0
- package/src/locale-context.ts +74 -0
- package/src/resolvers/index.ts +16 -0
- package/src/resolvers/mutations/accounts/addEmail.ts +20 -0
- package/src/resolvers/mutations/accounts/buildSecretTOTPAuthURL.ts +8 -0
- package/src/resolvers/mutations/accounts/changePassword.ts +26 -0
- package/src/resolvers/mutations/accounts/createUser.ts +24 -0
- package/src/resolvers/mutations/accounts/disableTOTP.ts +22 -0
- package/src/resolvers/mutations/accounts/enableTOTP.ts +16 -0
- package/src/resolvers/mutations/accounts/enrollUser.ts +25 -0
- package/src/resolvers/mutations/accounts/forgotPassword.ts +14 -0
- package/src/resolvers/mutations/accounts/impersonate.ts +21 -0
- package/src/resolvers/mutations/accounts/loginAsGuest.ts +12 -0
- package/src/resolvers/mutations/accounts/loginWithPassword.ts +32 -0
- package/src/resolvers/mutations/accounts/logout.ts +18 -0
- package/src/resolvers/mutations/accounts/logoutAllSessions.ts +18 -0
- package/src/resolvers/mutations/accounts/removeEmail.ts +20 -0
- package/src/resolvers/mutations/accounts/resetPassword.ts +20 -0
- package/src/resolvers/mutations/accounts/sendEnrollmentEmail.ts +21 -0
- package/src/resolvers/mutations/accounts/sendVerificationEmail.ts +16 -0
- package/src/resolvers/mutations/accounts/setPassword.ts +24 -0
- package/src/resolvers/mutations/accounts/setUsername.ts +21 -0
- package/src/resolvers/mutations/accounts/verifyEmail.ts +18 -0
- package/src/resolvers/mutations/assortments/addAssortmentFilter.ts +32 -0
- package/src/resolvers/mutations/assortments/addAssortmentLink.ts +45 -0
- package/src/resolvers/mutations/assortments/addAssortmentMedia.ts +30 -0
- package/src/resolvers/mutations/assortments/addAssortmentProduct.ts +36 -0
- package/src/resolvers/mutations/assortments/createAssortment.ts +22 -0
- package/src/resolvers/mutations/assortments/prepareAssortmentMediaUpload.ts +23 -0
- package/src/resolvers/mutations/assortments/removeAssortment.ts +20 -0
- package/src/resolvers/mutations/assortments/removeAssortmentFilter.ts +24 -0
- package/src/resolvers/mutations/assortments/removeAssortmentLink.ts +22 -0
- package/src/resolvers/mutations/assortments/removeAssortmentMedia.ts +25 -0
- package/src/resolvers/mutations/assortments/removeAssortmentProduct.ts +24 -0
- package/src/resolvers/mutations/assortments/reorderAssortmentFilters.ts +17 -0
- package/src/resolvers/mutations/assortments/reorderAssortmentLinks.ts +17 -0
- package/src/resolvers/mutations/assortments/reorderAssortmentMedia.ts +16 -0
- package/src/resolvers/mutations/assortments/reorderAssortmentProducts.ts +17 -0
- package/src/resolvers/mutations/assortments/setBaseAssortment.ts +20 -0
- package/src/resolvers/mutations/assortments/updateAssortment.ts +23 -0
- package/src/resolvers/mutations/assortments/updateAssortmentMediaTexts.ts +24 -0
- package/src/resolvers/mutations/assortments/updateAssortmentTexts.ts +19 -0
- package/src/resolvers/mutations/bookmarks/bookmark.ts +43 -0
- package/src/resolvers/mutations/bookmarks/createBookmark.ts +34 -0
- package/src/resolvers/mutations/bookmarks/removeBookmark.ts +18 -0
- package/src/resolvers/mutations/countries/createCountry.ts +21 -0
- package/src/resolvers/mutations/countries/removeCountry.ts +20 -0
- package/src/resolvers/mutations/countries/updateCountry.ts +21 -0
- package/src/resolvers/mutations/currencies/createCurrency.ts +20 -0
- package/src/resolvers/mutations/currencies/removeCurrency.ts +20 -0
- package/src/resolvers/mutations/currencies/updateCurrency.ts +20 -0
- package/src/resolvers/mutations/delivery/createDeliveryProvider.ts +24 -0
- package/src/resolvers/mutations/delivery/removeDeliveryProvider.ts +18 -0
- package/src/resolvers/mutations/delivery/updateDeliveryProvider.ts +21 -0
- package/src/resolvers/mutations/enrollments/activateEnrollment.ts +32 -0
- package/src/resolvers/mutations/enrollments/createEnrollment.ts +45 -0
- package/src/resolvers/mutations/enrollments/terminateEnrollment.ts +29 -0
- package/src/resolvers/mutations/enrollments/updateEnrollment.ts +71 -0
- package/src/resolvers/mutations/files/confirmMediaUpload.ts +14 -0
- package/src/resolvers/mutations/filters/createFilter.ts +23 -0
- package/src/resolvers/mutations/filters/createFilterOption.ts +22 -0
- package/src/resolvers/mutations/filters/removeFilter.ts +25 -0
- package/src/resolvers/mutations/filters/removeFilterOption.ts +24 -0
- package/src/resolvers/mutations/filters/updateFilter.ts +20 -0
- package/src/resolvers/mutations/filters/updateFilterTexts.ts +26 -0
- package/src/resolvers/mutations/index.js +314 -0
- package/src/resolvers/mutations/languages/createLanguage.ts +21 -0
- package/src/resolvers/mutations/languages/removeLanguage.ts +20 -0
- package/src/resolvers/mutations/languages/updateLanguage.ts +21 -0
- package/src/resolvers/mutations/orders/addCartDiscount.ts +17 -0
- package/src/resolvers/mutations/orders/addCartProduct.ts +37 -0
- package/src/resolvers/mutations/orders/addCartQuotation.ts +67 -0
- package/src/resolvers/mutations/orders/addMultipleCartProducts.ts +64 -0
- package/src/resolvers/mutations/orders/checkoutCart.ts +36 -0
- package/src/resolvers/mutations/orders/confirmOrder.ts +31 -0
- package/src/resolvers/mutations/orders/createCart.ts +17 -0
- package/src/resolvers/mutations/orders/deliverOrder.ts +43 -0
- package/src/resolvers/mutations/orders/emptyCart.ts +20 -0
- package/src/resolvers/mutations/orders/payOrder.ts +37 -0
- package/src/resolvers/mutations/orders/rejectOrder.ts +29 -0
- package/src/resolvers/mutations/orders/removeCartDiscount.ts +30 -0
- package/src/resolvers/mutations/orders/removeCartItem.ts +28 -0
- package/src/resolvers/mutations/orders/removeOrder.ts +24 -0
- package/src/resolvers/mutations/orders/setOrderDeliveryProvider.ts +26 -0
- package/src/resolvers/mutations/orders/setOrderPaymentProvider.ts +25 -0
- package/src/resolvers/mutations/orders/signPaymentProviderForCheckout.ts +55 -0
- package/src/resolvers/mutations/orders/updateCart.ts +46 -0
- package/src/resolvers/mutations/orders/updateCartItem.ts +53 -0
- package/src/resolvers/mutations/orders/updateOrderDeliveryPickUp.ts +48 -0
- package/src/resolvers/mutations/orders/updateOrderDeliveryShipping.ts +40 -0
- package/src/resolvers/mutations/orders/updateOrderPaymentCard.ts +39 -0
- package/src/resolvers/mutations/orders/updateOrderPaymentGeneric.ts +40 -0
- package/src/resolvers/mutations/orders/updateOrderPaymentInvoice.ts +40 -0
- package/src/resolvers/mutations/pageView.js +13 -0
- package/src/resolvers/mutations/payment/createPaymentProvider.ts +24 -0
- package/src/resolvers/mutations/payment/markPaymentCredentialsPreferred.ts +31 -0
- package/src/resolvers/mutations/payment/registerPaymentCredentials.ts +22 -0
- package/src/resolvers/mutations/payment/removePaymentCredentials.ts +19 -0
- package/src/resolvers/mutations/payment/removePaymentProvider.ts +21 -0
- package/src/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.ts +31 -0
- package/src/resolvers/mutations/payment/updatePaymentProvider.ts +25 -0
- package/src/resolvers/mutations/products/addProductAssignment.ts +49 -0
- package/src/resolvers/mutations/products/addProductMedia.ts +25 -0
- package/src/resolvers/mutations/products/addProductReviewVote.ts +22 -0
- package/src/resolvers/mutations/products/createProduct.ts +20 -0
- package/src/resolvers/mutations/products/createProductBundleItem.ts +33 -0
- package/src/resolvers/mutations/products/createProductReview.ts +27 -0
- package/src/resolvers/mutations/products/createProductVariation.ts +45 -0
- package/src/resolvers/mutations/products/createProductVariationOption.ts +31 -0
- package/src/resolvers/mutations/products/prepareProductMediaUpload.ts +21 -0
- package/src/resolvers/mutations/products/publishProduct.ts +22 -0
- package/src/resolvers/mutations/products/removeBundleItem.ts +28 -0
- package/src/resolvers/mutations/products/removeProduct.ts +23 -0
- package/src/resolvers/mutations/products/removeProductAssignment.ts +30 -0
- package/src/resolvers/mutations/products/removeProductMedia.ts +23 -0
- package/src/resolvers/mutations/products/removeProductReview.ts +22 -0
- package/src/resolvers/mutations/products/removeProductReviewVote.ts +23 -0
- package/src/resolvers/mutations/products/removeProductVariation.ts +22 -0
- package/src/resolvers/mutations/products/removeProductVariationOption.ts +32 -0
- package/src/resolvers/mutations/products/reorderProductMedia.ts +14 -0
- package/src/resolvers/mutations/products/unpublishProduct.ts +22 -0
- package/src/resolvers/mutations/products/updateProduct.ts +21 -0
- package/src/resolvers/mutations/products/updateProductCommerce.ts +21 -0
- package/src/resolvers/mutations/products/updateProductMediaTexts.ts +21 -0
- package/src/resolvers/mutations/products/updateProductPlan.ts +28 -0
- package/src/resolvers/mutations/products/updateProductReview.ts +21 -0
- package/src/resolvers/mutations/products/updateProductSupply.ts +30 -0
- package/src/resolvers/mutations/products/updateProductTexts.ts +20 -0
- package/src/resolvers/mutations/products/updateProductVariationTexts.ts +32 -0
- package/src/resolvers/mutations/products/updateProductWarehousing.ts +30 -0
- package/src/resolvers/mutations/quotations/makeQuotationProposal.ts +26 -0
- package/src/resolvers/mutations/quotations/rejectQuotation.ts +26 -0
- package/src/resolvers/mutations/quotations/requestQuotation.ts +32 -0
- package/src/resolvers/mutations/quotations/verifyQuotation.ts +26 -0
- package/src/resolvers/mutations/users/heartbeat.ts +27 -0
- package/src/resolvers/mutations/users/prepareUserAvatarUpload.ts +26 -0
- package/src/resolvers/mutations/users/setRoles.ts +19 -0
- package/src/resolvers/mutations/users/setUserTags.ts +19 -0
- package/src/resolvers/mutations/users/updateUserAvatar.ts +40 -0
- package/src/resolvers/mutations/users/updateUserProfile.ts +20 -0
- package/src/resolvers/mutations/utils/getOrderCart.ts +21 -0
- package/src/resolvers/mutations/warehousing/createWarehousingProvider.ts +24 -0
- package/src/resolvers/mutations/warehousing/removeWarehousingProvider.ts +22 -0
- package/src/resolvers/mutations/warehousing/updateWarehousingProvider.ts +28 -0
- package/src/resolvers/mutations/worker/addWork.ts +11 -0
- package/src/resolvers/mutations/worker/allocateWork.ts +14 -0
- package/src/resolvers/mutations/worker/doWork.ts +17 -0
- package/src/resolvers/mutations/worker/finishWork.ts +42 -0
- package/src/resolvers/mutations/worker/removeWork.ts +21 -0
- package/src/resolvers/queries/assortments/assortment.ts +18 -0
- package/src/resolvers/queries/assortments/assortments.ts +22 -0
- package/src/resolvers/queries/assortments/assortmentsCount.ts +18 -0
- package/src/resolvers/queries/assortments/translatedAssortmentMediaTexts.ts +17 -0
- package/src/resolvers/queries/assortments/translatedAssortmentTexts.ts +12 -0
- package/src/resolvers/queries/countries/countries.ts +18 -0
- package/src/resolvers/queries/countries/countriesCount.ts +20 -0
- package/src/resolvers/queries/countries/country.ts +14 -0
- package/src/resolvers/queries/currencies/currencies.ts +17 -0
- package/src/resolvers/queries/currencies/currenciesCount.ts +15 -0
- package/src/resolvers/queries/currencies/currency.ts +15 -0
- package/src/resolvers/queries/delivery/deliveryInterfaces.ts +13 -0
- package/src/resolvers/queries/delivery/deliveryProvider.ts +15 -0
- package/src/resolvers/queries/delivery/deliveryProviders.ts +13 -0
- package/src/resolvers/queries/delivery/deliveryProvidersCount.ts +13 -0
- package/src/resolvers/queries/enrollments/enrollment.ts +15 -0
- package/src/resolvers/queries/enrollments/enrollments.ts +16 -0
- package/src/resolvers/queries/enrollments/enrollmentsCount.ts +13 -0
- package/src/resolvers/queries/events/event.ts +13 -0
- package/src/resolvers/queries/events/events.ts +22 -0
- package/src/resolvers/queries/events/eventsCounts.ts +13 -0
- package/src/resolvers/queries/filters/filter.ts +15 -0
- package/src/resolvers/queries/filters/filters.ts +22 -0
- package/src/resolvers/queries/filters/filtersCount.ts +20 -0
- package/src/resolvers/queries/filters/searchAssortments.ts +21 -0
- package/src/resolvers/queries/filters/searchProducts.ts +46 -0
- package/src/resolvers/queries/filters/translatedFilterTexts.ts +17 -0
- package/src/resolvers/queries/index.js +133 -0
- package/src/resolvers/queries/languages/language.ts +15 -0
- package/src/resolvers/queries/languages/languages.ts +18 -0
- package/src/resolvers/queries/languages/languagesCount.ts +15 -0
- package/src/resolvers/queries/orders/order.ts +15 -0
- package/src/resolvers/queries/orders/orders.ts +17 -0
- package/src/resolvers/queries/orders/ordersCount.ts +9 -0
- package/src/resolvers/queries/payment/paymentInterfaces.ts +13 -0
- package/src/resolvers/queries/payment/paymentProvider.ts +17 -0
- package/src/resolvers/queries/payment/paymentProviders.ts +13 -0
- package/src/resolvers/queries/payment/paymentProvidersCount.ts +13 -0
- package/src/resolvers/queries/products/product.ts +15 -0
- package/src/resolvers/queries/products/productCatalogPrices.ts +18 -0
- package/src/resolvers/queries/products/productReview.ts +15 -0
- package/src/resolvers/queries/products/productReviews.ts +21 -0
- package/src/resolvers/queries/products/productReviewsCount.ts +13 -0
- package/src/resolvers/queries/products/products.ts +21 -0
- package/src/resolvers/queries/products/productsCount.ts +17 -0
- package/src/resolvers/queries/products/translatedProductMediaTexts.ts +12 -0
- package/src/resolvers/queries/products/translatedProductTexts.ts +12 -0
- package/src/resolvers/queries/products/translatedProductVariationTexts.ts +18 -0
- package/src/resolvers/queries/quotations/quotation.ts +15 -0
- package/src/resolvers/queries/quotations/quotations.ts +13 -0
- package/src/resolvers/queries/quotations/quotationsCount.ts +13 -0
- package/src/resolvers/queries/shopInfo.ts +17 -0
- package/src/resolvers/queries/users/me.ts +8 -0
- package/src/resolvers/queries/users/user.ts +11 -0
- package/src/resolvers/queries/users/users.ts +23 -0
- package/src/resolvers/queries/users/usersCount.ts +11 -0
- package/src/resolvers/queries/warehousing/warehousingInterfaces.ts +13 -0
- package/src/resolvers/queries/warehousing/warehousingProvider.ts +17 -0
- package/src/resolvers/queries/warehousing/warehousingProviders.ts +13 -0
- package/src/resolvers/queries/warehousing/warehousingProvidersCount.ts +13 -0
- package/src/resolvers/queries/worker/activeWorkTypes.ts +8 -0
- package/src/resolvers/queries/worker/work.ts +15 -0
- package/src/resolvers/queries/worker/workQueue.ts +41 -0
- package/src/resolvers/queries/worker/workQueueCount.ts +15 -0
- package/src/resolvers/type/assortment/assortment-filter-types.ts +22 -0
- package/src/resolvers/type/assortment/assortment-link-types.ts +21 -0
- package/src/resolvers/type/assortment/assortment-media-types.ts +23 -0
- package/src/resolvers/type/assortment/assortment-path-link-types.ts +41 -0
- package/src/resolvers/type/assortment/assortment-product-types.ts +25 -0
- package/src/resolvers/type/assortment/assortment-types.ts +136 -0
- package/src/resolvers/type/bookmark-types.ts +20 -0
- package/src/resolvers/type/color-types.ts +31 -0
- package/src/resolvers/type/country-types.ts +33 -0
- package/src/resolvers/type/delivery-provider-types.ts +117 -0
- package/src/resolvers/type/dimensions-types.ts +53 -0
- package/src/resolvers/type/dispatch-types.ts +30 -0
- package/src/resolvers/type/enrollment/enrollment-delivery-types.ts +15 -0
- package/src/resolvers/type/enrollment/enrollment-payment-types.ts +17 -0
- package/src/resolvers/type/enrollment/enrollment-period-types.ts +15 -0
- package/src/resolvers/type/enrollment/enrollment-plan-tyes.ts +15 -0
- package/src/resolvers/type/enrollment/enrollment-types.ts +35 -0
- package/src/resolvers/type/event-types.ts +14 -0
- package/src/resolvers/type/filter/filter-option-types.ts +29 -0
- package/src/resolvers/type/filter/filter-types.ts +27 -0
- package/src/resolvers/type/filter/loaded-filter-option-types.ts +1 -0
- package/src/resolvers/type/filter/loaded-filter-types.ts +1 -0
- package/src/resolvers/type/index.js +133 -0
- package/src/resolvers/type/language-types.ts +16 -0
- package/src/resolvers/type/login-method-response-types.ts +13 -0
- package/src/resolvers/type/media-types.ts +12 -0
- package/src/resolvers/type/order/order-delivery-discount-types.ts +36 -0
- package/src/resolvers/type/order/order-delivery-pickup-types.ts +59 -0
- package/src/resolvers/type/order/order-delivery-shipping-types.ts +43 -0
- package/src/resolvers/type/order/order-delivery-types.ts +23 -0
- package/src/resolvers/type/order/order-discount-types.ts +57 -0
- package/src/resolvers/type/order/order-discountable-types.ts +36 -0
- package/src/resolvers/type/order/order-global-discount-types.ts +43 -0
- package/src/resolvers/type/order/order-item-discount-types.ts +36 -0
- package/src/resolvers/type/order/order-item-types.ts +155 -0
- package/src/resolvers/type/order/order-payment-card-types.ts +37 -0
- package/src/resolvers/type/order/order-payment-discount-types.ts +35 -0
- package/src/resolvers/type/order/order-payment-generic-types.ts +37 -0
- package/src/resolvers/type/order/order-payment-invoice-types.ts +37 -0
- package/src/resolvers/type/order/order-payment-types.ts +24 -0
- package/src/resolvers/type/order/order-types.ts +109 -0
- package/src/resolvers/type/payment/payment-credentials-types.ts +23 -0
- package/src/resolvers/type/payment/payment-provider-types.ts +37 -0
- package/src/resolvers/type/price-types.ts +29 -0
- package/src/resolvers/type/product/product-assortment-path-types.ts +9 -0
- package/src/resolvers/type/product/product-bundle-item-types.ts +9 -0
- package/src/resolvers/type/product/product-bundle-types.ts +10 -0
- package/src/resolvers/type/product/product-catalog-price-types.ts +16 -0
- package/src/resolvers/type/product/product-configurable-types.ts +75 -0
- package/src/resolvers/type/product/product-discount.ts +51 -0
- package/src/resolvers/type/product/product-media-types.ts +14 -0
- package/src/resolvers/type/product/product-plan-types.ts +83 -0
- package/src/resolvers/type/product/product-review-types.ts +34 -0
- package/src/resolvers/type/product/product-simple-types.ts +113 -0
- package/src/resolvers/type/product/product-types.ts +68 -0
- package/src/resolvers/type/product/product-variation-assignment-types.ts +19 -0
- package/src/resolvers/type/product/product-variation-assignment-vector.ts +20 -0
- package/src/resolvers/type/product/product-variation-option-types.ts +18 -0
- package/src/resolvers/type/product/product-variation-types.ts +14 -0
- package/src/resolvers/type/quotation-types.ts +52 -0
- package/src/resolvers/type/shop-types.ts +34 -0
- package/src/resolvers/type/stock-types.ts +28 -0
- package/src/resolvers/type/user-types.ts +194 -0
- package/src/resolvers/type/warehousing-provider-types.ts +17 -0
- package/src/resolvers/type/work-types.ts +25 -0
- package/src/roles/admin.ts +71 -0
- package/src/roles/all.ts +99 -0
- package/src/roles/index.ts +124 -0
- package/src/roles/loggedIn.ts +226 -0
- package/src/schema/index.js +7 -0
- package/src/schema/inputTypes.js +293 -0
- package/src/schema/mutation.js +851 -0
- package/src/schema/query.js +434 -0
- package/src/schema/scalars.js +9 -0
- package/src/schema/types/address.js +15 -0
- package/src/schema/types/assortment.js +99 -0
- package/src/schema/types/bookmark.js +10 -0
- package/src/schema/types/color.js +11 -0
- package/src/schema/types/contact.js +8 -0
- package/src/schema/types/country.js +16 -0
- package/src/schema/types/currency.js +10 -0
- package/src/schema/types/delivery.js +41 -0
- package/src/schema/types/dimensions.js +22 -0
- package/src/schema/types/discount.js +11 -0
- package/src/schema/types/dispatch.js +11 -0
- package/src/schema/types/enrollment.js +68 -0
- package/src/schema/types/events.js +14 -0
- package/src/schema/types/files.js +9 -0
- package/src/schema/types/filter.js +66 -0
- package/src/schema/types/geo-position.js +9 -0
- package/src/schema/types/index.js +63 -0
- package/src/schema/types/language.js +15 -0
- package/src/schema/types/log.js +15 -0
- package/src/schema/types/media.js +11 -0
- package/src/schema/types/order/delivery.js +50 -0
- package/src/schema/types/order/discount.js +59 -0
- package/src/schema/types/order/index.js +8 -0
- package/src/schema/types/order/item.js +34 -0
- package/src/schema/types/order/order.js +118 -0
- package/src/schema/types/order/payment.js +56 -0
- package/src/schema/types/order/pick-up-location.js +11 -0
- package/src/schema/types/payment.js +55 -0
- package/src/schema/types/price.js +17 -0
- package/src/schema/types/product/bundle-product.js +39 -0
- package/src/schema/types/product/configurable-product.js +118 -0
- package/src/schema/types/product/index.js +7 -0
- package/src/schema/types/product/plan-product.js +68 -0
- package/src/schema/types/product/product.js +136 -0
- package/src/schema/types/product/simple-product.js +50 -0
- package/src/schema/types/quotation.js +63 -0
- package/src/schema/types/search.js +37 -0
- package/src/schema/types/shop.js +16 -0
- package/src/schema/types/stock.js +10 -0
- package/src/schema/types/types.js +12 -0
- package/src/schema/types/user.js +81 -0
- package/src/schema/types/warehousing.js +35 -0
- package/src/schema/types/worker.js +63 -0
- package/src/user-context.ts +63 -0
- package/tsconfig.build.json +26 -0
- package/tsconfig.json +8 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderType } from '@unchainedshop/core-payment';
|
|
3
|
+
import { OrderPaymentNotFoundError, InvalidIdError, OrderPaymentTypeError } from '../../../errors';
|
|
4
|
+
export default async function updateOrderPaymentCard(root, { orderPaymentId, meta }, context) {
|
|
5
|
+
const { modules, userId } = context;
|
|
6
|
+
log(`mutation updateOrderPaymentCard ${orderPaymentId} ${JSON.stringify(meta)}`, { userId });
|
|
7
|
+
if (!orderPaymentId)
|
|
8
|
+
throw new InvalidIdError({ orderPaymentId });
|
|
9
|
+
const orderPayment = await modules.orders.payments.findOrderPayment({
|
|
10
|
+
orderPaymentId,
|
|
11
|
+
});
|
|
12
|
+
if (!orderPayment)
|
|
13
|
+
throw new OrderPaymentNotFoundError({ data: { orderPaymentId } });
|
|
14
|
+
const provider = await modules.payment.paymentProviders.findProvider({
|
|
15
|
+
paymentProviderId: orderPayment.paymentProviderId,
|
|
16
|
+
});
|
|
17
|
+
const providerType = provider?.type;
|
|
18
|
+
if (providerType !== PaymentProviderType.CARD)
|
|
19
|
+
throw new OrderPaymentTypeError({
|
|
20
|
+
orderPaymentId,
|
|
21
|
+
received: providerType,
|
|
22
|
+
required: PaymentProviderType.CARD,
|
|
23
|
+
});
|
|
24
|
+
await modules.orders.payments.updateContext(orderPayment._id, { meta }, context);
|
|
25
|
+
return modules.orders.payments.findOrderPayment({
|
|
26
|
+
orderPaymentId,
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=updateOrderPaymentCard.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateOrderPaymentCard.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/orders/updateOrderPaymentCard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,EAAE,yBAAyB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAEnG,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,sBAAsB,CAClD,IAAU,EACV,EAAE,cAAc,EAAE,IAAI,EAA0C,EAChE,OAAgB;IAEhB,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IAEpC,GAAG,CAAC,mCAAmC,cAAc,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAE7F,IAAI,CAAC,cAAc;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC;IAElE,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAClE,cAAc;KACf,CAAC,CAAC;IACH,IAAI,CAAC,YAAY;QAAE,MAAM,IAAI,yBAAyB,CAAC,EAAE,IAAI,EAAE,EAAE,cAAc,EAAE,EAAE,CAAC,CAAC;IAErF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC;QACnE,iBAAiB,EAAE,YAAY,CAAC,iBAAiB;KAClD,CAAC,CAAC;IACH,MAAM,YAAY,GAAG,QAAQ,EAAE,IAAI,CAAC;IAEpC,IAAI,YAAY,KAAK,mBAAmB,CAAC,IAAI;QAC3C,MAAM,IAAI,qBAAqB,CAAC;YAC9B,cAAc;YACd,QAAQ,EAAE,YAAY;YACtB,QAAQ,EAAE,mBAAmB,CAAC,IAAI;SACnC,CAAC,CAAC;IAEL,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,YAAY,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,CAAC;IAEjF,OAAO,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAC9C,cAAc;KACf,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
export default function updateOrderPaymentGeneric(root: Root, { orderPaymentId, meta }: {
|
|
3
|
+
orderPaymentId: string;
|
|
4
|
+
meta?: any;
|
|
5
|
+
}, context: Context): Promise<import("@unchainedshop/types/orders.payments").OrderPayment>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderType } from '@unchainedshop/core-payment';
|
|
3
|
+
import { OrderPaymentNotFoundError, InvalidIdError, OrderPaymentTypeError } from '../../../errors';
|
|
4
|
+
export default async function updateOrderPaymentGeneric(root, { orderPaymentId, meta }, context) {
|
|
5
|
+
const { modules, userId } = context;
|
|
6
|
+
log(`mutation updateOrderPaymentGeneric ${orderPaymentId} ${JSON.stringify(meta)}`, {
|
|
7
|
+
userId,
|
|
8
|
+
});
|
|
9
|
+
if (!orderPaymentId)
|
|
10
|
+
throw new InvalidIdError({ orderPaymentId });
|
|
11
|
+
const orderPayment = await modules.orders.payments.findOrderPayment({
|
|
12
|
+
orderPaymentId,
|
|
13
|
+
});
|
|
14
|
+
if (!orderPayment)
|
|
15
|
+
throw new OrderPaymentNotFoundError({ data: { orderPaymentId } });
|
|
16
|
+
const provider = await modules.payment.paymentProviders.findProvider({
|
|
17
|
+
paymentProviderId: orderPayment.paymentProviderId,
|
|
18
|
+
});
|
|
19
|
+
const providerType = provider?.type;
|
|
20
|
+
if (providerType !== PaymentProviderType.GENERIC)
|
|
21
|
+
throw new OrderPaymentTypeError({
|
|
22
|
+
orderPaymentId,
|
|
23
|
+
received: providerType,
|
|
24
|
+
required: PaymentProviderType.GENERIC,
|
|
25
|
+
});
|
|
26
|
+
await modules.orders.payments.updateContext(orderPayment._id, { meta }, context);
|
|
27
|
+
return modules.orders.payments.findOrderPayment({
|
|
28
|
+
orderPaymentId,
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=updateOrderPaymentGeneric.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateOrderPaymentGeneric.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/orders/updateOrderPaymentGeneric.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,EAAE,yBAAyB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAEnG,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,yBAAyB,CACrD,IAAU,EACV,EAAE,cAAc,EAAE,IAAI,EAA0C,EAChE,OAAgB;IAEhB,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IACpC,GAAG,CAAC,sCAAsC,cAAc,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,EAAE;QAClF,MAAM;KACP,CAAC,CAAC;IAEH,IAAI,CAAC,cAAc;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC;IAElE,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAClE,cAAc;KACf,CAAC,CAAC;IACH,IAAI,CAAC,YAAY;QAAE,MAAM,IAAI,yBAAyB,CAAC,EAAE,IAAI,EAAE,EAAE,cAAc,EAAE,EAAE,CAAC,CAAC;IAErF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC;QACnE,iBAAiB,EAAE,YAAY,CAAC,iBAAiB;KAClD,CAAC,CAAC;IACH,MAAM,YAAY,GAAG,QAAQ,EAAE,IAAI,CAAC;IAEpC,IAAI,YAAY,KAAK,mBAAmB,CAAC,OAAO;QAC9C,MAAM,IAAI,qBAAqB,CAAC;YAC9B,cAAc;YACd,QAAQ,EAAE,YAAY;YACtB,QAAQ,EAAE,mBAAmB,CAAC,OAAO;SACtC,CAAC,CAAC;IAEL,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,YAAY,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,CAAC;IAEjF,OAAO,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAC9C,cAAc;KACf,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
export default function updateOrderPaymentInvoice(root: Root, { orderPaymentId, meta }: {
|
|
3
|
+
orderPaymentId: string;
|
|
4
|
+
meta?: any;
|
|
5
|
+
}, context: Context): Promise<import("@unchainedshop/types/orders.payments").OrderPayment>;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderType } from '@unchainedshop/core-payment';
|
|
3
|
+
import { OrderPaymentNotFoundError, InvalidIdError, OrderPaymentTypeError } from '../../../errors';
|
|
4
|
+
export default async function updateOrderPaymentInvoice(root, { orderPaymentId, meta }, context) {
|
|
5
|
+
const { modules, userId } = context;
|
|
6
|
+
log(`mutation updateOrderPaymentInvoice ${orderPaymentId} ${JSON.stringify(meta)}`, {
|
|
7
|
+
userId,
|
|
8
|
+
});
|
|
9
|
+
if (!orderPaymentId)
|
|
10
|
+
throw new InvalidIdError({ orderPaymentId });
|
|
11
|
+
const orderPayment = await modules.orders.payments.findOrderPayment({
|
|
12
|
+
orderPaymentId,
|
|
13
|
+
});
|
|
14
|
+
if (!orderPayment)
|
|
15
|
+
throw new OrderPaymentNotFoundError({ data: { orderPaymentId } });
|
|
16
|
+
const provider = await modules.payment.paymentProviders.findProvider({
|
|
17
|
+
paymentProviderId: orderPayment.paymentProviderId,
|
|
18
|
+
});
|
|
19
|
+
const providerType = provider?.type;
|
|
20
|
+
if (providerType !== PaymentProviderType.INVOICE)
|
|
21
|
+
throw new OrderPaymentTypeError({
|
|
22
|
+
orderPaymentId,
|
|
23
|
+
received: providerType,
|
|
24
|
+
required: PaymentProviderType.INVOICE,
|
|
25
|
+
});
|
|
26
|
+
await modules.orders.payments.updateContext(orderPayment._id, { meta }, context);
|
|
27
|
+
return modules.orders.payments.findOrderPayment({
|
|
28
|
+
orderPaymentId,
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=updateOrderPaymentInvoice.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateOrderPaymentInvoice.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/orders/updateOrderPaymentInvoice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AAClE,OAAO,EAAE,yBAAyB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAEnG,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,yBAAyB,CACrD,IAAU,EACV,EAAE,cAAc,EAAE,IAAI,EAA0C,EAChE,OAAgB;IAEhB,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IACpC,GAAG,CAAC,sCAAsC,cAAc,IAAI,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,EAAE,EAAE;QAClF,MAAM;KACP,CAAC,CAAC;IAEH,IAAI,CAAC,cAAc;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,cAAc,EAAE,CAAC,CAAC;IAElE,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAClE,cAAc;KACf,CAAC,CAAC;IACH,IAAI,CAAC,YAAY;QAAE,MAAM,IAAI,yBAAyB,CAAC,EAAE,IAAI,EAAE,EAAE,cAAc,EAAE,EAAE,CAAC,CAAC;IAErF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC;QACnE,iBAAiB,EAAE,YAAY,CAAC,iBAAiB;KAClD,CAAC,CAAC;IACH,MAAM,YAAY,GAAG,QAAQ,EAAE,IAAI,CAAC;IAEpC,IAAI,YAAY,KAAK,mBAAmB,CAAC,OAAO;QAC9C,MAAM,IAAI,qBAAqB,CAAC;YAC9B,cAAc;YACd,QAAQ,EAAE,YAAY;YACtB,QAAQ,EAAE,mBAAmB,CAAC,OAAO;SACtC,CAAC,CAAC;IAEL,MAAM,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAC,YAAY,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,OAAO,CAAC,CAAC;IAEjF,OAAO,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,gBAAgB,CAAC;QAC9C,cAAc;KACf,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { emit } from '@unchainedshop/events';
|
|
3
|
+
export default (root, { path, referrer }, { userId }) => {
|
|
4
|
+
log(`mutation pageView ${path} ${referrer}`, { userId });
|
|
5
|
+
emit('PAGE_VIEW', {
|
|
6
|
+
path,
|
|
7
|
+
referrer,
|
|
8
|
+
});
|
|
9
|
+
return path;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=pageView.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pageView.js","sourceRoot":"","sources":["../../../src/resolvers/mutations/pageView.js"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,uBAAuB,CAAC;AAE7C,eAAe,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE;IACtD,GAAG,CAAC,qBAAqB,IAAI,IAAI,QAAQ,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEzD,IAAI,CAAC,WAAW,EAAE;QAChB,IAAI;QACJ,QAAQ;KACT,CAAC,CAAC;IAEH,OAAO,IAAI,CAAC;AACd,CAAC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { PaymentProvider } from '@unchainedshop/types/payments';
|
|
3
|
+
declare const _default: (root: Root, { paymentProvider }: {
|
|
4
|
+
paymentProvider: PaymentProvider;
|
|
5
|
+
}, { modules, userId }: Context) => Promise<PaymentProvider>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { ProviderConfigurationInvalid } from '../../../errors';
|
|
3
|
+
export default async (root, { paymentProvider }, { modules, userId }) => {
|
|
4
|
+
log('mutation createPaymentProvider', { userId });
|
|
5
|
+
const provider = await modules.payment.paymentProviders.create({
|
|
6
|
+
...paymentProvider,
|
|
7
|
+
authorId: userId,
|
|
8
|
+
}, userId);
|
|
9
|
+
if (!provider)
|
|
10
|
+
throw new ProviderConfigurationInvalid(paymentProvider);
|
|
11
|
+
return provider;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=createPaymentProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createPaymentProvider.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/createPaymentProvider.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,MAAM,iBAAiB,CAAC;AAE/D,eAAe,KAAK,EAClB,IAAU,EACV,EAAE,eAAe,EAAwC,EACzD,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;IACF,GAAG,CAAC,gCAAgC,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAElD,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM,CAC5D;QACE,GAAG,eAAe;QAClB,QAAQ,EAAE,MAAM;KACjB,EACD,MAAM,CACP,CAAC;IAEF,IAAI,CAAC,QAAQ;QAAE,MAAM,IAAI,4BAA4B,CAAC,eAAe,CAAC,CAAC;IAEvE,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
export default function makePaymentCredentialsPreferred(root: Root, { paymentCredentialsId }: {
|
|
3
|
+
paymentCredentialsId: string;
|
|
4
|
+
}, { modules, userId }: Context): Promise<import("@unchainedshop/types/payments").PaymentCredentials>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentCredentialsNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async function makePaymentCredentialsPreferred(root, { paymentCredentialsId }, { modules, userId }) {
|
|
4
|
+
log(`mutation markPaymentCredentialsPreferred ${paymentCredentialsId}`, {
|
|
5
|
+
userId,
|
|
6
|
+
});
|
|
7
|
+
if (!paymentCredentialsId)
|
|
8
|
+
throw new InvalidIdError({ paymentCredentialsId });
|
|
9
|
+
if (!(await modules.payment.paymentCredentials.credentialsExists({
|
|
10
|
+
paymentCredentialsId,
|
|
11
|
+
})))
|
|
12
|
+
throw new PaymentCredentialsNotFoundError({ paymentCredentialsId });
|
|
13
|
+
await modules.payment.paymentCredentials.markPreferred({
|
|
14
|
+
paymentCredentialsId,
|
|
15
|
+
userId,
|
|
16
|
+
});
|
|
17
|
+
return modules.payment.paymentCredentials.findPaymentCredential({
|
|
18
|
+
paymentCredentialsId,
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=markPaymentCredentialsPreferred.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markPaymentCredentialsPreferred.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/markPaymentCredentialsPreferred.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,+BAA+B,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAElF,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,+BAA+B,CAC3D,IAAU,EACV,EAAE,oBAAoB,EAAoC,EAC1D,EAAE,OAAO,EAAE,MAAM,EAAW;IAE5B,GAAG,CAAC,4CAA4C,oBAAoB,EAAE,EAAE;QACtE,MAAM;KACP,CAAC,CAAC;IAEH,IAAI,CAAC,oBAAoB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,oBAAoB,EAAE,CAAC,CAAC;IAE9E,IACE,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,kBAAkB,CAAC,iBAAiB,CAAC;QAC3D,oBAAoB;KACrB,CAAC,CAAC;QAEH,MAAM,IAAI,+BAA+B,CAAC,EAAE,oBAAoB,EAAE,CAAC,CAAC;IAEtE,MAAM,OAAO,CAAC,OAAO,CAAC,kBAAkB,CAAC,aAAa,CAAC;QACrD,oBAAoB;QACpB,MAAM;KACP,CAAC,CAAC;IAEH,OAAO,OAAO,CAAC,OAAO,CAAC,kBAAkB,CAAC,qBAAqB,CAAC;QAC9D,oBAAoB;KACrB,CAAC,CAAC;AACL,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
export default function registerPaymentCredentials(root: Root, params: {
|
|
3
|
+
paymentProviderId: string;
|
|
4
|
+
transactionContext: any;
|
|
5
|
+
}, context: Context): Promise<import("@unchainedshop/types/payments").PaymentCredentials>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { InvalidIdError, PaymentProviderNotFoundError } from '../../../errors';
|
|
3
|
+
export default async function registerPaymentCredentials(root, params, context) {
|
|
4
|
+
const { modules, services, userId } = context;
|
|
5
|
+
const { paymentProviderId, transactionContext } = params;
|
|
6
|
+
log(`mutation registerPaymentCredentials for ${paymentProviderId}`, {
|
|
7
|
+
userId,
|
|
8
|
+
});
|
|
9
|
+
if (!paymentProviderId)
|
|
10
|
+
throw new InvalidIdError({ paymentProviderId });
|
|
11
|
+
const paymentProvider = await modules.payment.paymentProviders.findProvider({ paymentProviderId });
|
|
12
|
+
if (!paymentProvider)
|
|
13
|
+
throw new PaymentProviderNotFoundError({ paymentProviderId });
|
|
14
|
+
return services.payment.registerPaymentCredentials(paymentProviderId, { transactionContext }, context);
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=registerPaymentCredentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registerPaymentCredentials.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/registerPaymentCredentials.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,4BAA4B,EAAE,MAAM,iBAAiB,CAAC;AAE/E,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,0BAA0B,CACtD,IAAU,EACV,MAA8D,EAC9D,OAAgB;IAEhB,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IAC9C,MAAM,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;IACzD,GAAG,CAAC,2CAA2C,iBAAiB,EAAE,EAAE;QAClE,MAAM;KACP,CAAC,CAAC;IAEH,IAAI,CAAC,iBAAiB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAExE,MAAM,eAAe,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,YAAY,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IACnG,IAAI,CAAC,eAAe;QAAE,MAAM,IAAI,4BAA4B,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAEpF,OAAO,QAAQ,CAAC,OAAO,CAAC,0BAA0B,CAAC,iBAAiB,EAAE,EAAE,kBAAkB,EAAE,EAAE,OAAO,CAAC,CAAC;AACzG,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
declare const _default: (root: Root, { paymentCredentialsId }: {
|
|
3
|
+
paymentCredentialsId: string;
|
|
4
|
+
}, { modules, userId }: Context) => Promise<import("@unchainedshop/types/payments").PaymentCredentials>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { InvalidIdError, PaymentCredentialsNotFoundError } from '../../../errors';
|
|
3
|
+
export default async (root, { paymentCredentialsId }, { modules, userId }) => {
|
|
4
|
+
log(`mutation removePaymentCredentials ${paymentCredentialsId}`, { userId });
|
|
5
|
+
if (!paymentCredentialsId)
|
|
6
|
+
throw new InvalidIdError({ paymentCredentialsId });
|
|
7
|
+
const removedCredentials = await modules.payment.paymentCredentials.removeCredentials(paymentCredentialsId);
|
|
8
|
+
if (!removedCredentials)
|
|
9
|
+
throw new PaymentCredentialsNotFoundError({ paymentCredentialsId });
|
|
10
|
+
return removedCredentials;
|
|
11
|
+
};
|
|
12
|
+
//# sourceMappingURL=removePaymentCredentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"removePaymentCredentials.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/removePaymentCredentials.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,+BAA+B,EAAE,MAAM,iBAAiB,CAAC;AAElF,eAAe,KAAK,EAClB,IAAU,EACV,EAAE,oBAAoB,EAAoC,EAC1D,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;IACF,GAAG,CAAC,qCAAqC,oBAAoB,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAE7E,IAAI,CAAC,oBAAoB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,oBAAoB,EAAE,CAAC,CAAC;IAC9E,MAAM,kBAAkB,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,kBAAkB,CAAC,iBAAiB,CACnF,oBAAoB,CACrB,CAAC;IACF,IAAI,CAAC,kBAAkB;QAAE,MAAM,IAAI,+BAA+B,CAAC,EAAE,oBAAoB,EAAE,CAAC,CAAC;IAE7F,OAAO,kBAAkB,CAAC;AAC5B,CAAC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
declare const _default: (root: Root, { paymentProviderId }: {
|
|
3
|
+
paymentProviderId: string;
|
|
4
|
+
}, { modules, userId }: Context) => Promise<import("@unchainedshop/types/payments").PaymentProvider>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async (root, { paymentProviderId }, { modules, userId }) => {
|
|
4
|
+
log(`mutation removePaymentProvider ${paymentProviderId}`, { userId });
|
|
5
|
+
if (!paymentProviderId)
|
|
6
|
+
throw new InvalidIdError({ paymentProviderId });
|
|
7
|
+
if (!(await modules.payment.paymentProviders.providerExists({
|
|
8
|
+
paymentProviderId,
|
|
9
|
+
})))
|
|
10
|
+
throw new PaymentProviderNotFoundError({ paymentProviderId });
|
|
11
|
+
return modules.payment.paymentProviders.delete(paymentProviderId, userId);
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=removePaymentProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"removePaymentProvider.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/removePaymentProvider.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAE/E,eAAe,KAAK,EAClB,IAAU,EACV,EAAE,iBAAiB,EAAiC,EACpD,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;IACF,GAAG,CAAC,kCAAkC,iBAAiB,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEvE,IAAI,CAAC,iBAAiB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IACxE,IACE,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,cAAc,CAAC;QACtD,iBAAiB;KAClB,CAAC,CAAC;QAEH,MAAM,IAAI,4BAA4B,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAEhE,OAAO,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM,CAAC,iBAAiB,EAAE,MAAM,CAAC,CAAC;AAC5E,CAAC,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async function signPaymentProviderForCredentialRegistration(root, params, context) {
|
|
4
|
+
const { modules, userId } = context;
|
|
5
|
+
const { paymentProviderId, transactionContext } = params;
|
|
6
|
+
log(`mutation signPaymentProviderForCredentialRegistration ${paymentProviderId}`, { userId });
|
|
7
|
+
if (!paymentProviderId)
|
|
8
|
+
throw new InvalidIdError({ paymentProviderId });
|
|
9
|
+
if (!(await modules.payment.paymentProviders.providerExists({
|
|
10
|
+
paymentProviderId,
|
|
11
|
+
})))
|
|
12
|
+
throw new PaymentProviderNotFoundError({ paymentProviderId });
|
|
13
|
+
return modules.payment.paymentProviders.sign(paymentProviderId, {
|
|
14
|
+
transactionContext,
|
|
15
|
+
}, context);
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=signPaymentProviderForCredentialRegistration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"signPaymentProviderForCredentialRegistration.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/signPaymentProviderForCredentialRegistration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,4BAA4B,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAE/E,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,4CAA4C,CACxE,IAAU,EACV,MAA8D,EAC9D,OAAgB;IAEhB,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IACpC,MAAM,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;IAEzD,GAAG,CAAC,yDAAyD,iBAAiB,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAE9F,IAAI,CAAC,iBAAiB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAExE,IACE,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,cAAc,CAAC;QACtD,iBAAiB;KAClB,CAAC,CAAC;QAEH,MAAM,IAAI,4BAA4B,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAEhE,OAAO,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAC1C,iBAAiB,EACjB;QACE,kBAAkB;KACnB,EACD,OAAO,CACR,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { PaymentProvider } from '@unchainedshop/types/payments';
|
|
3
|
+
declare const _default: (root: Root, { paymentProviderId, paymentProvider, }: {
|
|
4
|
+
paymentProviderId: string;
|
|
5
|
+
paymentProvider: PaymentProvider;
|
|
6
|
+
}, { modules, userId }: Context) => Promise<PaymentProvider>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { PaymentProviderNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async (root, { paymentProviderId, paymentProvider, }, { modules, userId }) => {
|
|
4
|
+
log(`mutation updatePaymentProvider ${paymentProviderId}`, { userId });
|
|
5
|
+
if (!paymentProviderId)
|
|
6
|
+
throw new InvalidIdError({ paymentProviderId });
|
|
7
|
+
if (!(await modules.payment.paymentProviders.providerExists({
|
|
8
|
+
paymentProviderId,
|
|
9
|
+
})))
|
|
10
|
+
throw new PaymentProviderNotFoundError({ paymentProviderId });
|
|
11
|
+
return modules.payment.paymentProviders.update(paymentProviderId, paymentProvider, userId);
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=updatePaymentProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updatePaymentProvider.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/payment/updatePaymentProvider.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,4BAA4B,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAE/E,eAAe,KAAK,EAClB,IAAU,EACV,EACE,iBAAiB,EACjB,eAAe,GACiD,EAClE,EAAE,OAAO,EAAE,MAAM,EAAW,EAC5B,EAAE;IACF,GAAG,CAAC,kCAAkC,iBAAiB,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEvE,IAAI,CAAC,iBAAiB;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IACxE,IACE,CAAC,CAAC,MAAM,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,cAAc,CAAC;QACtD,iBAAiB;KAClB,CAAC,CAAC;QAEH,MAAM,IAAI,4BAA4B,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC;IAEhE,OAAO,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,MAAM,CAAC,iBAAiB,EAAE,eAAe,EAAE,MAAM,CAAC,CAAC;AAC7F,CAAC,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { ProductConfiguration } from '@unchainedshop/types/products';
|
|
3
|
+
export default function addProductAssignment(root: Root, params: {
|
|
4
|
+
proxyId: string;
|
|
5
|
+
productId: string;
|
|
6
|
+
vectors: Array<ProductConfiguration>;
|
|
7
|
+
}, { modules, userId }: Context): Promise<import("@unchainedshop/types/products").Product>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { ProductTypes } from '@unchainedshop/core-products';
|
|
3
|
+
import { ProductNotFoundError, InvalidIdError, ProductWrongTypeError } from '../../../errors';
|
|
4
|
+
export default async function addProductAssignment(root, params, { modules, userId }) {
|
|
5
|
+
const { proxyId, productId, vectors } = params;
|
|
6
|
+
log(`mutation addProductAssignment ${proxyId} ${productId}`, { userId });
|
|
7
|
+
if (!proxyId)
|
|
8
|
+
throw new InvalidIdError({ proxyId });
|
|
9
|
+
if (!productId)
|
|
10
|
+
throw new InvalidIdError({ productId });
|
|
11
|
+
if (!(await modules.products.productExists({ productId })))
|
|
12
|
+
throw new ProductNotFoundError({ productId });
|
|
13
|
+
const proxyProduct = await modules.products.findProduct({
|
|
14
|
+
productId: proxyId,
|
|
15
|
+
});
|
|
16
|
+
if (!proxyProduct)
|
|
17
|
+
throw new ProductNotFoundError({ proxyId });
|
|
18
|
+
if (proxyProduct.type !== ProductTypes.ConfigurableProduct)
|
|
19
|
+
throw new ProductWrongTypeError({
|
|
20
|
+
proxyId,
|
|
21
|
+
received: proxyProduct.type,
|
|
22
|
+
required: ProductTypes.ConfigurableProduct,
|
|
23
|
+
});
|
|
24
|
+
await modules.products.assignments.addProxyAssignment(productId, {
|
|
25
|
+
proxyId,
|
|
26
|
+
vectors,
|
|
27
|
+
}, userId);
|
|
28
|
+
return modules.products.findProduct({ productId: proxyId });
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=addProductAssignment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"addProductAssignment.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/addProductAssignment.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAI5D,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAE9F,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,oBAAoB,CAChD,IAAU,EACV,MAIC,EACD,EAAE,OAAO,EAAE,MAAM,EAAW;IAE5B,MAAM,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,GAAG,MAAM,CAAC;IAE/C,GAAG,CAAC,iCAAiC,OAAO,IAAI,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEzE,IAAI,CAAC,OAAO;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IACpD,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAExD,IAAI,CAAC,CAAC,MAAM,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;QACxD,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAEhD,MAAM,YAAY,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;QACtD,SAAS,EAAE,OAAO;KACnB,CAAC,CAAC;IACH,IAAI,CAAC,YAAY;QAAE,MAAM,IAAI,oBAAoB,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC;IAE/D,IAAI,YAAY,CAAC,IAAI,KAAK,YAAY,CAAC,mBAAmB;QACxD,MAAM,IAAI,qBAAqB,CAAC;YAC9B,OAAO;YACP,QAAQ,EAAE,YAAY,CAAC,IAAI;YAC3B,QAAQ,EAAE,YAAY,CAAC,mBAAmB;SAC3C,CAAC,CAAC;IAEL,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,kBAAkB,CACnD,SAAS,EACT;QACE,OAAO;QACP,OAAO;KACR,EACD,MAAM,CACP,CAAC;IAEF,OAAO,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,CAAC;AAC9D,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { ProductNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async function addProductMedia(root, { media, productId }, context) {
|
|
4
|
+
const { modules, services, userId } = context;
|
|
5
|
+
log(`mutation addProductMedia ${productId}`, { userId });
|
|
6
|
+
if (!productId)
|
|
7
|
+
throw new InvalidIdError({ productId });
|
|
8
|
+
const product = await modules.products.findProduct({ productId });
|
|
9
|
+
if (!product)
|
|
10
|
+
throw new ProductNotFoundError({ productId });
|
|
11
|
+
const file = await services.files.uploadFileFromStream({
|
|
12
|
+
directoryName: 'product-media',
|
|
13
|
+
rawFile: media,
|
|
14
|
+
meta: { productId },
|
|
15
|
+
userId,
|
|
16
|
+
}, context);
|
|
17
|
+
return modules.products.media.create({ productId, mediaId: file._id }, userId);
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=addProductMedia.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"addProductMedia.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/addProductMedia.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAEvE,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,eAAe,CAAC,IAAU,EAAE,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,OAAgB;IAC9F,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;IAC9C,GAAG,CAAC,4BAA4B,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEzD,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAExD,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAClE,IAAI,CAAC,OAAO;QAAE,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAE5D,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,KAAK,CAAC,oBAAoB,CACpD;QACE,aAAa,EAAE,eAAe;QAC9B,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,EAAE,SAAS,EAAE;QACnB,MAAM;KACP,EACD,OAAO,CACR,CAAC;IAEF,OAAO,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,OAAO,EAAE,IAAI,CAAC,GAAG,EAAE,EAAE,MAAM,CAAC,CAAC;AACjF,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { ProductReviewVoteType } from '@unchainedshop/types/products.reviews';
|
|
3
|
+
export default function addProductReviewVote(root: Root, params: {
|
|
4
|
+
type: ProductReviewVoteType;
|
|
5
|
+
meta?: any;
|
|
6
|
+
productReviewId: string;
|
|
7
|
+
}, { modules, userId }: Context): Promise<import("@unchainedshop/types/products.reviews").ProductReview>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { ProductReviewNotFoundError, InvalidIdError } from '../../../errors';
|
|
3
|
+
export default async function addProductReviewVote(root, params, { modules, userId }) {
|
|
4
|
+
const { type, meta, productReviewId } = params;
|
|
5
|
+
log(`mutation addProductReviewVote ${productReviewId}`, { userId });
|
|
6
|
+
if (!productReviewId)
|
|
7
|
+
throw new InvalidIdError({ productReviewId });
|
|
8
|
+
const productReview = await modules.products.reviews.findProductReview({
|
|
9
|
+
productReviewId,
|
|
10
|
+
});
|
|
11
|
+
if (!productReview)
|
|
12
|
+
throw new ProductReviewNotFoundError({ productReviewId });
|
|
13
|
+
return modules.products.reviews.votes.addVote(productReview, { meta, type }, userId);
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=addProductReviewVote.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"addProductReviewVote.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/addProductReviewVote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAG5C,OAAO,EAAE,0BAA0B,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAE7E,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,oBAAoB,CAChD,IAAU,EACV,MAA4E,EAC5E,EAAE,OAAO,EAAE,MAAM,EAAW;IAE5B,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,eAAe,EAAE,GAAG,MAAM,CAAC;IAC/C,GAAG,CAAC,iCAAiC,eAAe,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEpE,IAAI,CAAC,eAAe;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,eAAe,EAAE,CAAC,CAAC;IAEpE,MAAM,aAAa,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,iBAAiB,CAAC;QACrE,eAAe;KAChB,CAAC,CAAC;IACH,IAAI,CAAC,aAAa;QAAE,MAAM,IAAI,0BAA0B,CAAC,EAAE,eAAe,EAAE,CAAC,CAAC;IAE9E,OAAO,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,MAAM,CAAC,CAAC;AACvF,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { Product } from '@unchainedshop/types/products';
|
|
3
|
+
export default function createProduct(root: Root, { product }: {
|
|
4
|
+
product: Product & {
|
|
5
|
+
title: string;
|
|
6
|
+
};
|
|
7
|
+
}, { modules, userId, localeContext }: Context): Promise<Product>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
export default async function createProduct(root, { product }, { modules, userId, localeContext }) {
|
|
3
|
+
log('mutation createProduct', { userId });
|
|
4
|
+
return modules.products.create({
|
|
5
|
+
...product,
|
|
6
|
+
authorId: userId,
|
|
7
|
+
locale: localeContext.language,
|
|
8
|
+
}, userId);
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=createProduct.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createProduct.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/createProduct.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAE5C,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,aAAa,CACzC,IAAU,EACV,EAAE,OAAO,EAA4C,EACrD,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa,EAAW;IAE3C,GAAG,CAAC,wBAAwB,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAE1C,OAAO,OAAO,CAAC,QAAQ,CAAC,MAAM,CAC5B;QACE,GAAG,OAAO;QACV,QAAQ,EAAE,MAAM;QAChB,MAAM,EAAE,aAAa,CAAC,QAAQ;KAC/B,EACD,MAAM,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { ProductBundleItem } from '@unchainedshop/types/products';
|
|
3
|
+
export default function createProductBundleItem(root: Root, { productId, item }: {
|
|
4
|
+
productId: string;
|
|
5
|
+
item: ProductBundleItem;
|
|
6
|
+
}, { modules, userId }: Context): Promise<import("@unchainedshop/types/products").Product>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { ProductTypes } from '@unchainedshop/core-products';
|
|
3
|
+
import { ProductNotFoundError, InvalidIdError, ProductWrongTypeError } from '../../../errors';
|
|
4
|
+
export default async function createProductBundleItem(root, { productId, item }, { modules, userId }) {
|
|
5
|
+
log(`mutation createProductBundleItem ${productId}`, { userId, item });
|
|
6
|
+
if (!productId)
|
|
7
|
+
throw new InvalidIdError({ productId });
|
|
8
|
+
if (!item.productId)
|
|
9
|
+
throw new InvalidIdError({ bundleItemId: item.productId });
|
|
10
|
+
const product = await modules.products.findProduct({ productId });
|
|
11
|
+
if (!product)
|
|
12
|
+
throw new ProductNotFoundError({ productId });
|
|
13
|
+
if (product.type !== ProductTypes.BundleProduct)
|
|
14
|
+
throw new ProductWrongTypeError({
|
|
15
|
+
productId,
|
|
16
|
+
received: product.type,
|
|
17
|
+
required: ProductTypes.BundleProduct,
|
|
18
|
+
});
|
|
19
|
+
if (!(await modules.products.productExists({ productId: item.productId })))
|
|
20
|
+
throw new ProductNotFoundError({ productId: item.productId });
|
|
21
|
+
await modules.products.bundleItems.addBundleItem(productId, item, userId);
|
|
22
|
+
return modules.products.findProduct({ productId });
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=createProductBundleItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createProductBundleItem.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/createProductBundleItem.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAG5D,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAE9F,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,uBAAuB,CACnD,IAAU,EACV,EAAE,SAAS,EAAE,IAAI,EAAkD,EACnE,EAAE,OAAO,EAAE,MAAM,EAAW;IAE5B,GAAG,CAAC,oCAAoC,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;IAEvE,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IACxD,IAAI,CAAC,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,YAAY,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IAEhF,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAClE,IAAI,CAAC,OAAO;QAAE,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAE5D,IAAI,OAAO,CAAC,IAAI,KAAK,YAAY,CAAC,aAAa;QAC7C,MAAM,IAAI,qBAAqB,CAAC;YAC9B,SAAS;YACT,QAAQ,EAAE,OAAO,CAAC,IAAI;YACtB,QAAQ,EAAE,YAAY,CAAC,aAAa;SACrC,CAAC,CAAC;IAEL,IAAI,CAAC,CAAC,MAAM,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;QACxE,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IAEhE,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,aAAa,CAAC,SAAS,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC;IAE1E,OAAO,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;AACrD,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { ProductReview } from '@unchainedshop/types/products.reviews';
|
|
3
|
+
export default function createProductReview(root: Root, { productId, productReview }: {
|
|
4
|
+
productId: string;
|
|
5
|
+
productReview: ProductReview;
|
|
6
|
+
}, { modules, userId }: Context): Promise<ProductReview>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { log } from '@unchainedshop/logger';
|
|
2
|
+
import { InvalidIdError, ProductNotFoundError } from '../../../errors';
|
|
3
|
+
export default async function createProductReview(root, { productId, productReview }, { modules, userId }) {
|
|
4
|
+
log('mutation createProductReview', { userId, productId });
|
|
5
|
+
if (!productId)
|
|
6
|
+
throw new InvalidIdError({ productId });
|
|
7
|
+
if (!(await modules.products.productExists({ productId })))
|
|
8
|
+
throw new ProductNotFoundError({ productId });
|
|
9
|
+
return modules.products.reviews.create({
|
|
10
|
+
productId,
|
|
11
|
+
authorId: userId,
|
|
12
|
+
...productReview,
|
|
13
|
+
}, userId);
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=createProductReview.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createProductReview.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/createProductReview.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAI5C,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAEvE,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,mBAAmB,CAC/C,IAAU,EACV,EAAE,SAAS,EAAE,aAAa,EAAuD,EACjF,EAAE,OAAO,EAAE,MAAM,EAAW;IAE5B,GAAG,CAAC,8BAA8B,EAAE,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC;IAE3D,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAExD,IAAI,CAAC,CAAC,MAAM,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;QACxD,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAEhD,OAAO,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAC,MAAM,CACpC;QACE,SAAS;QACT,QAAQ,EAAE,MAAM;QAChB,GAAG,aAAa;KACjB,EACD,MAAM,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
import { ProductVariationType } from '@unchainedshop/types/products.variations';
|
|
3
|
+
export default function F(root: Root, params: {
|
|
4
|
+
productId: string;
|
|
5
|
+
variation: {
|
|
6
|
+
key: string;
|
|
7
|
+
type: ProductVariationType;
|
|
8
|
+
title: string;
|
|
9
|
+
};
|
|
10
|
+
}, { modules, localeContext, userId }: Context): Promise<import("@unchainedshop/types/products.variations").ProductVariation>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ProductTypes } from '@unchainedshop/core-products';
|
|
2
|
+
import { log } from '@unchainedshop/logger';
|
|
3
|
+
import { InvalidIdError, ProductNotFoundError, ProductWrongTypeError } from '../../../errors';
|
|
4
|
+
export default async function F(root, params, { modules, localeContext, userId }) {
|
|
5
|
+
const { variation, productId } = params;
|
|
6
|
+
log(`mutation createProductVariation ${productId}`, { userId });
|
|
7
|
+
if (!productId)
|
|
8
|
+
throw new InvalidIdError({ productId });
|
|
9
|
+
const product = await modules.products.findProduct({ productId });
|
|
10
|
+
if (!product)
|
|
11
|
+
throw new ProductNotFoundError({ productId });
|
|
12
|
+
if (product.type !== ProductTypes.ConfigurableProduct)
|
|
13
|
+
throw new ProductWrongTypeError({
|
|
14
|
+
productId,
|
|
15
|
+
received: product.type,
|
|
16
|
+
required: ProductTypes.ConfigurableProduct,
|
|
17
|
+
});
|
|
18
|
+
return modules.products.variations.create({
|
|
19
|
+
authorId: userId,
|
|
20
|
+
locale: localeContext.language,
|
|
21
|
+
options: [],
|
|
22
|
+
productId,
|
|
23
|
+
...variation,
|
|
24
|
+
}, userId);
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=createProductVariation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createProductVariation.js","sourceRoot":"","sources":["../../../../src/resolvers/mutations/products/createProductVariation.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,GAAG,EAAE,MAAM,uBAAuB,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAE9F,MAAM,CAAC,OAAO,CAAC,KAAK,UAAU,CAAC,CAC7B,IAAU,EACV,MAOC,EACD,EAAE,OAAO,EAAE,aAAa,EAAE,MAAM,EAAW;IAE3C,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,GAAG,MAAM,CAAC;IAExC,GAAG,CAAC,mCAAmC,SAAS,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC;IAEhE,IAAI,CAAC,SAAS;QAAE,MAAM,IAAI,cAAc,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAExD,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAClE,IAAI,CAAC,OAAO;QAAE,MAAM,IAAI,oBAAoB,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC;IAE5D,IAAI,OAAO,CAAC,IAAI,KAAK,YAAY,CAAC,mBAAmB;QACnD,MAAM,IAAI,qBAAqB,CAAC;YAC9B,SAAS;YACT,QAAQ,EAAE,OAAO,CAAC,IAAI;YACtB,QAAQ,EAAE,YAAY,CAAC,mBAAmB;SAC3C,CAAC,CAAC;IAEL,OAAO,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAC,MAAM,CACvC;QACE,QAAQ,EAAE,MAAM;QAChB,MAAM,EAAE,aAAa,CAAC,QAAQ;QAC9B,OAAO,EAAE,EAAE;QACX,SAAS;QACT,GAAG,SAAS;KACb,EACD,MAAM,CACP,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Context, Root } from '@unchainedshop/types/api';
|
|
2
|
+
export default function createProductVariationOption(root: Root, params: {
|
|
3
|
+
option: {
|
|
4
|
+
value: string;
|
|
5
|
+
title: string;
|
|
6
|
+
};
|
|
7
|
+
productVariationId: string;
|
|
8
|
+
}, { modules, localeContext, userId }: Context): Promise<import("@unchainedshop/types/products.variations").ProductVariation>;
|