@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,23 @@
|
|
|
1
|
+
import { Quotation as QuotationType } from '@unchainedshop/types/quotations';
|
|
2
|
+
import { Context } from '@unchainedshop/types/api';
|
|
3
|
+
import { User } from '@unchainedshop/types/user';
|
|
4
|
+
import { Product } from '@unchainedshop/types/products';
|
|
5
|
+
import { Country } from '@unchainedshop/types/countries';
|
|
6
|
+
import { Currency } from '@unchainedshop/types/currencies';
|
|
7
|
+
import { File } from '@unchainedshop/types/files';
|
|
8
|
+
declare type HelperType<P, T> = (quotation: QuotationType, params: P, context: Context) => T;
|
|
9
|
+
declare type QuotationHelperTypes = {
|
|
10
|
+
country: HelperType<never, Promise<Country>>;
|
|
11
|
+
currency: HelperType<never, Promise<Currency>>;
|
|
12
|
+
documents: HelperType<{
|
|
13
|
+
type: string;
|
|
14
|
+
}, Promise<Array<File>>>;
|
|
15
|
+
isExpired: HelperType<{
|
|
16
|
+
referenceDate: Date;
|
|
17
|
+
}, boolean>;
|
|
18
|
+
status: HelperType<never, string>;
|
|
19
|
+
product: HelperType<never, Promise<Product>>;
|
|
20
|
+
user: HelperType<never, Promise<User>>;
|
|
21
|
+
};
|
|
22
|
+
export declare const Quotation: QuotationHelperTypes;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export const Quotation = {
|
|
2
|
+
country: async (obj, _, { modules }) => modules.countries.findCountry({ isoCode: obj.countryCode }),
|
|
3
|
+
currency: async (obj, _, { modules }) => modules.currencies.findCurrency({ isoCode: obj.currency }),
|
|
4
|
+
documents: (obj, { type }, { modules }) => modules.files.findFilesByMetaData({
|
|
5
|
+
meta: {
|
|
6
|
+
quotationId: obj._id,
|
|
7
|
+
type,
|
|
8
|
+
},
|
|
9
|
+
}, {
|
|
10
|
+
sort: {
|
|
11
|
+
'meta.date': -1,
|
|
12
|
+
},
|
|
13
|
+
}),
|
|
14
|
+
isExpired: (obj, { referenceDate }, { modules }) => modules.quotations.isExpired(obj, { referenceDate }),
|
|
15
|
+
product: (obj, _, { modules }) => modules.products.findProduct({
|
|
16
|
+
productId: obj.productId,
|
|
17
|
+
}),
|
|
18
|
+
status: (obj, _, { modules }) => modules.quotations.normalizedStatus(obj),
|
|
19
|
+
user: (obj, _, { modules }) => modules.users.findUserById(obj.userId),
|
|
20
|
+
};
|
|
21
|
+
//# sourceMappingURL=quotation-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quotation-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/quotation-types.ts"],"names":[],"mappings":"AAoBA,MAAM,CAAC,MAAM,SAAS,GAAyB;IAC7C,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC,WAAW,EAAE,CAAC;IAEnG,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,YAAY,CAAC,EAAE,OAAO,EAAE,GAAG,CAAC,QAAQ,EAAE,CAAC;IAEnG,SAAS,EAAE,CAAC,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CACxC,OAAO,CAAC,KAAK,CAAC,mBAAmB,CAC/B;QACE,IAAI,EAAE;YACJ,WAAW,EAAE,GAAG,CAAC,GAAG;YACpB,IAAI;SACL;KACF,EACD;QACE,IAAI,EAAE;YACJ,WAAW,EAAE,CAAC,CAAC;SAChB;KACF,CACF;IAEH,SAAS,EAAE,CAAC,GAAG,EAAE,EAAE,aAAa,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CACjD,OAAO,CAAC,UAAU,CAAC,SAAS,CAAC,GAAG,EAAE,EAAE,aAAa,EAAE,CAAC;IAEtD,OAAO,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAC/B,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;QAC3B,SAAS,EAAE,GAAG,CAAC,SAAS;KACzB,CAAC;IAEJ,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC,GAAG,CAAC;IAEzE,IAAI,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,YAAY,CAAC,GAAG,CAAC,MAAM,CAAC;CACtE,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Context } from '@unchainedshop/types/api';
|
|
2
|
+
import { Country } from '@unchainedshop/types/countries';
|
|
3
|
+
import { Language } from '@unchainedshop/types/languages';
|
|
4
|
+
declare type HelperType<T> = (root: never, params: never, context: Context) => Promise<T>;
|
|
5
|
+
interface ShopHelperTypes {
|
|
6
|
+
_id: () => string;
|
|
7
|
+
country: HelperType<Country>;
|
|
8
|
+
language: HelperType<Language>;
|
|
9
|
+
userRoles: HelperType<Array<string>>;
|
|
10
|
+
}
|
|
11
|
+
export declare const Shop: ShopHelperTypes;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { checkAction } from '../../acl';
|
|
2
|
+
import { allRoles, actions } from '../../roles';
|
|
3
|
+
export const Shop = {
|
|
4
|
+
_id() {
|
|
5
|
+
return 'root';
|
|
6
|
+
},
|
|
7
|
+
language: async (_root, _params, { localeContext, modules }) => {
|
|
8
|
+
return modules.languages.findLanguage({ isoCode: localeContext.language });
|
|
9
|
+
},
|
|
10
|
+
country: async (_root, _params, { countryContext, modules }) => {
|
|
11
|
+
return modules.countries.findCountry({ isoCode: countryContext });
|
|
12
|
+
},
|
|
13
|
+
userRoles: async (_root, _params, context) => {
|
|
14
|
+
await checkAction(context, actions.manageUsers);
|
|
15
|
+
return Object.values(allRoles)
|
|
16
|
+
.map(({ name }) => name)
|
|
17
|
+
.filter((name) => name.substring(0, 2) !== '__');
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
//# sourceMappingURL=shop-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shop-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/shop-types.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAWhD,MAAM,CAAC,MAAM,IAAI,GAAoB;IACnC,GAAG;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,aAAa,EAAE,OAAO,EAAE,EAAE,EAAE;QAC7D,OAAO,OAAO,CAAC,SAAS,CAAC,YAAY,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC7E,CAAC;IACD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,cAAc,EAAE,OAAO,EAAE,EAAE,EAAE;QAC7D,OAAO,OAAO,CAAC,SAAS,CAAC,WAAW,CAAC,EAAE,OAAO,EAAE,cAAc,EAAE,CAAC,CAAC;IACpE,CAAC;IAED,SAAS,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE;QAC3C,MAAM,WAAW,CAAC,OAAO,EAAG,OAAe,CAAC,WAAW,CAAC,CAAC;QACzD,OAAO,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC;aAC3B,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,IAAI,CAAC;aACvB,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC;IACrD,CAAC;CACF,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DeliveryProvider } from '@unchainedshop/types/delivery';
|
|
2
|
+
import { Product } from '@unchainedshop/types/products';
|
|
3
|
+
import { WarehousingProvider } from '@unchainedshop/types/warehousing';
|
|
4
|
+
export declare const Stock: {
|
|
5
|
+
_id: (params: {
|
|
6
|
+
product: Product;
|
|
7
|
+
deliveryProvider: DeliveryProvider;
|
|
8
|
+
warehousingProvider: WarehousingProvider;
|
|
9
|
+
referenceDate: Date;
|
|
10
|
+
country: string;
|
|
11
|
+
userId?: string;
|
|
12
|
+
}) => string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import crypto from 'crypto';
|
|
2
|
+
export const Stock = {
|
|
3
|
+
_id: (params) => crypto
|
|
4
|
+
.createHash('sha256')
|
|
5
|
+
.update([
|
|
6
|
+
params.product._id,
|
|
7
|
+
params.deliveryProvider._id,
|
|
8
|
+
params.warehousingProvider._id,
|
|
9
|
+
params.referenceDate,
|
|
10
|
+
params.country,
|
|
11
|
+
params.userId || 'ANONYMOUS',
|
|
12
|
+
].join(''))
|
|
13
|
+
.digest('hex'),
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=stock-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stock-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/stock-types.ts"],"names":[],"mappings":"AAGA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAE5B,MAAM,CAAC,MAAM,KAAK,GAAG;IACnB,GAAG,EAAE,CAAC,MAOL,EAAE,EAAE,CACH,MAAM;SACH,UAAU,CAAC,QAAQ,CAAC;SACpB,MAAM,CACL;QACE,MAAM,CAAC,OAAO,CAAC,GAAG;QAClB,MAAM,CAAC,gBAAgB,CAAC,GAAG;QAC3B,MAAM,CAAC,mBAAmB,CAAC,GAAG;QAC9B,MAAM,CAAC,aAAa;QACpB,MAAM,CAAC,OAAO;QACd,MAAM,CAAC,MAAM,IAAI,WAAW;KAC7B,CAAC,IAAI,CAAC,EAAE,CAAC,CACX;SACA,MAAM,CAAC,KAAK,CAAC;CACnB,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Context } from '@unchainedshop/types/api';
|
|
2
|
+
import { Bookmark } from '@unchainedshop/types/bookmarks';
|
|
3
|
+
import { Contact } from '@unchainedshop/types/common';
|
|
4
|
+
import { Country } from '@unchainedshop/types/countries';
|
|
5
|
+
import { Enrollment } from '@unchainedshop/types/enrollments';
|
|
6
|
+
import { File } from '@unchainedshop/types/files';
|
|
7
|
+
import { Language } from '@unchainedshop/types/languages';
|
|
8
|
+
import { Order } from '@unchainedshop/types/orders';
|
|
9
|
+
import { PaymentCredentials } from '@unchainedshop/types/payments';
|
|
10
|
+
import { Quotation } from '@unchainedshop/types/quotations';
|
|
11
|
+
import { Email, User as UserType, UserProfile } from '@unchainedshop/types/user';
|
|
12
|
+
import { Locale } from 'locale';
|
|
13
|
+
declare type HelperType<P, T> = (user: UserType, params: P, context: Context) => Promise<T>;
|
|
14
|
+
export interface UserHelperTypes {
|
|
15
|
+
_id: HelperType<any, boolean>;
|
|
16
|
+
avatar: HelperType<{
|
|
17
|
+
localeContext: Locale;
|
|
18
|
+
}, File>;
|
|
19
|
+
bookmarks: HelperType<any, Array<Bookmark>>;
|
|
20
|
+
cart: HelperType<{
|
|
21
|
+
orderNumber?: string;
|
|
22
|
+
}, Order>;
|
|
23
|
+
country: HelperType<{
|
|
24
|
+
localeContext: Locale;
|
|
25
|
+
}, Country>;
|
|
26
|
+
email: HelperType<any, string>;
|
|
27
|
+
emails: HelperType<any, Array<string>>;
|
|
28
|
+
enrollments: HelperType<any, Array<Enrollment>>;
|
|
29
|
+
isEmailVerified: HelperType<any, boolean>;
|
|
30
|
+
isGuest: HelperType<any, boolean>;
|
|
31
|
+
isInitialPassword: HelperType<any, boolean>;
|
|
32
|
+
isTwoFactorEnabled: HelperType<any, boolean>;
|
|
33
|
+
language: HelperType<{
|
|
34
|
+
localeContext: Locale;
|
|
35
|
+
}, Language>;
|
|
36
|
+
lastBillingAddress: HelperType<any, UserType['lastBillingAddress']>;
|
|
37
|
+
lastContact: HelperType<any, Contact>;
|
|
38
|
+
lastLogin: HelperType<any, UserType['lastLogin']>;
|
|
39
|
+
allowedActions: HelperType<any, Array<string>>;
|
|
40
|
+
name: HelperType<any, string>;
|
|
41
|
+
orders: HelperType<{
|
|
42
|
+
includeCarts: boolean;
|
|
43
|
+
}, Array<Order>>;
|
|
44
|
+
paymentCredentials: HelperType<any, Array<PaymentCredentials>>;
|
|
45
|
+
primaryEmail: HelperType<any, Email>;
|
|
46
|
+
profile: HelperType<any, UserProfile>;
|
|
47
|
+
quotations: HelperType<any, Array<Quotation>>;
|
|
48
|
+
roles: HelperType<any, Array<string>>;
|
|
49
|
+
tags: HelperType<any, Array<string>>;
|
|
50
|
+
username: HelperType<any, string>;
|
|
51
|
+
}
|
|
52
|
+
export declare const User: UserHelperTypes;
|
|
53
|
+
export {};
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { log, LogLevel } from '@unchainedshop/logger';
|
|
2
|
+
import { checkAction, checkTypeResolver } from '../../acl';
|
|
3
|
+
import { actions } from '../../roles';
|
|
4
|
+
const { viewUserPrivateInfos, viewUserPublicInfos, viewUserOrders, viewUserEnrollments, viewUserQuotations, } = actions;
|
|
5
|
+
const getPrimaryEmail = (user) => {
|
|
6
|
+
return (user.emails || []).sort((left, right) => Number(right.verified) - Number(left.verified))?.[0];
|
|
7
|
+
};
|
|
8
|
+
export const User = {
|
|
9
|
+
_id: checkTypeResolver(viewUserPublicInfos, '_id'),
|
|
10
|
+
emails: checkTypeResolver(viewUserPrivateInfos, 'emails'),
|
|
11
|
+
lastBillingAddress: checkTypeResolver(viewUserPrivateInfos, 'lastBillingAddress'),
|
|
12
|
+
lastContact: checkTypeResolver(viewUserPrivateInfos, 'lastContact'),
|
|
13
|
+
lastLogin: checkTypeResolver(viewUserPrivateInfos, 'lastLogin'),
|
|
14
|
+
profile: checkTypeResolver(viewUserPrivateInfos, 'profile'),
|
|
15
|
+
roles: checkTypeResolver(viewUserPrivateInfos, 'roles'),
|
|
16
|
+
tags: checkTypeResolver(viewUserPrivateInfos, 'tags'),
|
|
17
|
+
username: checkTypeResolver(viewUserPrivateInfos, 'username'),
|
|
18
|
+
name: async (user, params, context) => {
|
|
19
|
+
await checkAction(context, viewUserPublicInfos, [user, params]);
|
|
20
|
+
const { profile } = user;
|
|
21
|
+
if (profile && profile.displayName && profile.displayName !== '')
|
|
22
|
+
return profile.displayName;
|
|
23
|
+
const primaryEmail = getPrimaryEmail(user);
|
|
24
|
+
return primaryEmail?.address || user._id;
|
|
25
|
+
},
|
|
26
|
+
primaryEmail: async (user, params, context) => {
|
|
27
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
28
|
+
return getPrimaryEmail(user);
|
|
29
|
+
},
|
|
30
|
+
email: async (user, params, context) => {
|
|
31
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
32
|
+
return getPrimaryEmail(user)?.address;
|
|
33
|
+
},
|
|
34
|
+
isEmailVerified: async (user, params, context) => {
|
|
35
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
36
|
+
log('user.isEmailVerified is deprecated, please use user.primaryEmail.verified', {
|
|
37
|
+
level: LogLevel.Warning,
|
|
38
|
+
});
|
|
39
|
+
return !!getPrimaryEmail(user)?.verified;
|
|
40
|
+
},
|
|
41
|
+
isInitialPassword: async (user, params, context) => {
|
|
42
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
43
|
+
const { password: { initial } = { initial: undefined } } = user.services || {};
|
|
44
|
+
return user.initialPassword || !!initial;
|
|
45
|
+
},
|
|
46
|
+
isTwoFactorEnabled: async (user, params, context) => {
|
|
47
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
48
|
+
const { 'two-factor': { secret } = { secret: undefined } } = user.services || {};
|
|
49
|
+
return !!secret;
|
|
50
|
+
},
|
|
51
|
+
isGuest: async (user, params, context) => {
|
|
52
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
53
|
+
return !!user.guest;
|
|
54
|
+
},
|
|
55
|
+
avatar: async (user, params, context) => {
|
|
56
|
+
await checkAction(context, viewUserPublicInfos, [user, params]);
|
|
57
|
+
return context.modules.files.findFile({
|
|
58
|
+
fileId: user.avatarId,
|
|
59
|
+
});
|
|
60
|
+
},
|
|
61
|
+
bookmarks: async (user, params, context) => {
|
|
62
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
63
|
+
return context.modules.bookmarks.findByUserId(user._id);
|
|
64
|
+
},
|
|
65
|
+
async cart(user, params, context) {
|
|
66
|
+
const { modules, countryContext } = context;
|
|
67
|
+
await checkAction(context, viewUserOrders, [user, params]);
|
|
68
|
+
return modules.orders.cart({ countryContext, orderNumber: params.orderNumber }, user);
|
|
69
|
+
},
|
|
70
|
+
country: async (user, params, context) => {
|
|
71
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
72
|
+
return context.services.users.getUserCountry(user, params, context);
|
|
73
|
+
},
|
|
74
|
+
enrollments: async (user, params, context) => {
|
|
75
|
+
await checkAction(context, viewUserEnrollments, [user, params]);
|
|
76
|
+
return context.modules.enrollments.findEnrollments({
|
|
77
|
+
userId: user._id,
|
|
78
|
+
});
|
|
79
|
+
},
|
|
80
|
+
language: async (user, params, context) => {
|
|
81
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
82
|
+
return context.services.users.getUserLanguage(user, params, context);
|
|
83
|
+
},
|
|
84
|
+
allowedActions: async (user, params, context) => {
|
|
85
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
86
|
+
return context.services.users.getUserRoleActions(user, context);
|
|
87
|
+
},
|
|
88
|
+
// locale: async (user, params, context) => {
|
|
89
|
+
// await checkAction(context, viewUserPrivateInfos, [user, params, context]);
|
|
90
|
+
// return context.modules.users.userLocale(user, params);
|
|
91
|
+
// },
|
|
92
|
+
orders: async (user, params, context) => {
|
|
93
|
+
await checkAction(context, viewUserOrders, [user, params]);
|
|
94
|
+
return context.modules.orders.findOrders({ userId: user._id, includeCarts: params.includeCarts }, {
|
|
95
|
+
sort: {
|
|
96
|
+
updated: -1,
|
|
97
|
+
},
|
|
98
|
+
});
|
|
99
|
+
},
|
|
100
|
+
paymentCredentials: async (user, params, context) => {
|
|
101
|
+
await checkAction(context, viewUserPrivateInfos, [user, params]);
|
|
102
|
+
return context.modules.payment.paymentCredentials.findPaymentCredentials({ ...params.selector, userId: user._id }, {
|
|
103
|
+
sort: {
|
|
104
|
+
created: -1,
|
|
105
|
+
},
|
|
106
|
+
});
|
|
107
|
+
},
|
|
108
|
+
quotations: async (user, params, context) => {
|
|
109
|
+
await checkAction(context, viewUserQuotations, [user, params]);
|
|
110
|
+
return context.modules.quotations.findQuotations({ userId: user._id }, {
|
|
111
|
+
sort: {
|
|
112
|
+
created: -1,
|
|
113
|
+
},
|
|
114
|
+
});
|
|
115
|
+
},
|
|
116
|
+
};
|
|
117
|
+
//# sourceMappingURL=user-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"user-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/user-types.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const WarehousingProvider = {
|
|
2
|
+
interface(obj, _, context) {
|
|
3
|
+
const Interface = context.modules.warehousing.findInterface(obj);
|
|
4
|
+
if (!Interface)
|
|
5
|
+
return null;
|
|
6
|
+
return Interface;
|
|
7
|
+
},
|
|
8
|
+
async configurationError(obj, _, context) {
|
|
9
|
+
return context.modules.warehousing.configurationError(obj, context);
|
|
10
|
+
},
|
|
11
|
+
async isActive(obj, _, context) {
|
|
12
|
+
return context.modules.warehousing.isActive(obj, context);
|
|
13
|
+
},
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=warehousing-provider-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"warehousing-provider-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/warehousing-provider-types.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,mBAAmB,GAAmC;IACjE,SAAS,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO;QACvB,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;QACjE,IAAI,CAAC,SAAS;YAAE,OAAO,IAAI,CAAC;QAC5B,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,KAAK,CAAC,kBAAkB,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO;QACtC,OAAO,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,kBAAkB,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IACtE,CAAC;IAED,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,EAAE,OAAO;QAC5B,OAAO,OAAO,CAAC,OAAO,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,EAAE,OAAO,CAAC,CAAC;IAC5D,CAAC;CACF,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Context } from '@unchainedshop/types/api';
|
|
2
|
+
import { Work as WorkType } from '@unchainedshop/types/worker';
|
|
3
|
+
declare type HelperType<P, T> = (work: WorkType, params: P, context: Context) => T;
|
|
4
|
+
export interface WorkHelperTypes {
|
|
5
|
+
status: HelperType<never, string>;
|
|
6
|
+
type: HelperType<never, string>;
|
|
7
|
+
original: HelperType<never, Promise<WorkType>>;
|
|
8
|
+
}
|
|
9
|
+
export declare const Work: WorkHelperTypes;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export const Work = {
|
|
2
|
+
status: (obj, _, { modules }) => {
|
|
3
|
+
return modules.worker.status(obj);
|
|
4
|
+
},
|
|
5
|
+
type: (obj, _, { modules }) => {
|
|
6
|
+
return modules.worker.type(obj);
|
|
7
|
+
},
|
|
8
|
+
original: async (obj, _, { modules }) => {
|
|
9
|
+
if (!obj.originalWorkId)
|
|
10
|
+
return null;
|
|
11
|
+
return modules.worker.findWork({ workId: obj.originalWorkId });
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=work-types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"work-types.js","sourceRoot":"","sources":["../../../src/resolvers/type/work-types.ts"],"names":[],"mappings":"AAWA,MAAM,CAAC,MAAM,IAAI,GAAoB;IACnC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;QAC9B,OAAO,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IACpC,CAAC;IAED,IAAI,EAAE,CAAC,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;QAC5B,OAAO,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IAClC,CAAC;IAED,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;QACtC,IAAI,CAAC,GAAG,CAAC,cAAc;YAAE,OAAO,IAAI,CAAC;QACrC,OAAO,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,cAAc,EAAE,CAAC,CAAC;IACjE,CAAC;CACF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const admin: (role: any, actions: any) => void;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
export const admin = (role, actions) => {
|
|
2
|
+
role.allow(actions.viewEvent, () => true);
|
|
3
|
+
role.allow(actions.viewEvents, () => true);
|
|
4
|
+
role.allow(actions.viewUser, () => true);
|
|
5
|
+
role.allow(actions.viewUsers, () => true);
|
|
6
|
+
role.allow(actions.viewPaymentProviders, () => true);
|
|
7
|
+
role.allow(actions.viewPaymentProvider, () => true);
|
|
8
|
+
role.allow(actions.viewPaymentInterfaces, () => true);
|
|
9
|
+
role.allow(actions.viewDeliveryProviders, () => true);
|
|
10
|
+
role.allow(actions.viewDeliveryProvider, () => true);
|
|
11
|
+
role.allow(actions.viewDeliveryInterfaces, () => true);
|
|
12
|
+
role.allow(actions.viewWarehousingProviders, () => true);
|
|
13
|
+
role.allow(actions.viewWarehousingProvider, () => true);
|
|
14
|
+
role.allow(actions.viewWarehousingInterfaces, () => true);
|
|
15
|
+
role.allow(actions.viewTranslations, () => true);
|
|
16
|
+
role.allow(actions.viewOrders, () => true);
|
|
17
|
+
role.allow(actions.viewOrder, () => true);
|
|
18
|
+
role.allow(actions.viewProducts, () => true);
|
|
19
|
+
role.allow(actions.manageLanguages, () => true);
|
|
20
|
+
role.allow(actions.manageCountries, () => true);
|
|
21
|
+
role.allow(actions.manageProducts, () => true);
|
|
22
|
+
role.allow(actions.manageCurrencies, () => true);
|
|
23
|
+
role.allow(actions.managePaymentProviders, () => true);
|
|
24
|
+
role.allow(actions.manageDeliveryProviders, () => true);
|
|
25
|
+
role.allow(actions.manageWarehousingProviders, () => true);
|
|
26
|
+
role.allow(actions.manageUsers, () => true);
|
|
27
|
+
role.allow(actions.updateUser, () => true);
|
|
28
|
+
role.allow(actions.updateUsername, () => true);
|
|
29
|
+
role.allow(actions.manageAssortments, () => true);
|
|
30
|
+
role.allow(actions.manageFilters, () => true);
|
|
31
|
+
role.allow(actions.updateCart, () => true);
|
|
32
|
+
role.allow(actions.createCart, () => true);
|
|
33
|
+
role.allow(actions.sendEmail, () => true);
|
|
34
|
+
role.allow(actions.updateOrder, () => true);
|
|
35
|
+
role.allow(actions.updateOrderDiscount, () => true);
|
|
36
|
+
role.allow(actions.updateOrderItem, () => true);
|
|
37
|
+
role.allow(actions.updateOrderDelivery, () => true);
|
|
38
|
+
role.allow(actions.updateOrderPayment, () => true);
|
|
39
|
+
role.allow(actions.markOrderConfirmed, () => true);
|
|
40
|
+
role.allow(actions.markOrderRejected, () => true);
|
|
41
|
+
role.allow(actions.markOrderPaid, () => true);
|
|
42
|
+
role.allow(actions.markOrderDelivered, () => true);
|
|
43
|
+
role.allow(actions.viewLogs, () => true);
|
|
44
|
+
role.allow(actions.viewUserRoles, () => true);
|
|
45
|
+
role.allow(actions.viewUserOrders, () => true);
|
|
46
|
+
role.allow(actions.viewUserQuotations, () => true);
|
|
47
|
+
role.allow(actions.viewUserPublicInfos, () => true);
|
|
48
|
+
role.allow(actions.viewUserPrivateInfos, () => true);
|
|
49
|
+
role.allow(actions.viewUserEnrollments, () => true);
|
|
50
|
+
role.allow(actions.reviewProduct, () => true);
|
|
51
|
+
role.allow(actions.updateProductReview, () => true);
|
|
52
|
+
role.allow(actions.manageProductReviews, () => true);
|
|
53
|
+
role.allow(actions.requestQuotation, () => true);
|
|
54
|
+
role.allow(actions.viewQuotations, () => true);
|
|
55
|
+
role.allow(actions.viewQuotation, () => true);
|
|
56
|
+
role.allow(actions.manageQuotations, () => true);
|
|
57
|
+
role.allow(actions.answerQuotation, () => true);
|
|
58
|
+
role.allow(actions.bookmarkProduct, () => true);
|
|
59
|
+
role.allow(actions.manageBookmarks, () => true);
|
|
60
|
+
role.allow(actions.voteProductReview, () => true);
|
|
61
|
+
role.allow(actions.manageWorker, () => true);
|
|
62
|
+
role.allow(actions.viewEnrollments, () => true);
|
|
63
|
+
role.allow(actions.viewEnrollment, () => true);
|
|
64
|
+
role.allow(actions.updateEnrollment, () => true);
|
|
65
|
+
role.allow(actions.registerPaymentCredentials, () => true);
|
|
66
|
+
role.allow(actions.managePaymentCredentials, () => true);
|
|
67
|
+
role.allow(actions.bulkImport, () => true);
|
|
68
|
+
role.allow(actions.authTwoFactor, () => true);
|
|
69
|
+
role.allow(actions.manageTwoFactor, () => true);
|
|
70
|
+
role.allow(actions.impersonate, () => true);
|
|
71
|
+
};
|
|
72
|
+
//# sourceMappingURL=admin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"admin.js","sourceRoot":"","sources":["../../src/roles/admin.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const all: (role: any, actions: any) => void;
|
package/lib/roles/all.js
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
export const all = (role, actions) => {
|
|
2
|
+
const isInLoginMutationResponse = (root) => {
|
|
3
|
+
// eslint-disable-next-line
|
|
4
|
+
if (root && root._inLoginMethodResponse) {
|
|
5
|
+
return true;
|
|
6
|
+
}
|
|
7
|
+
return false;
|
|
8
|
+
};
|
|
9
|
+
role.allow(actions.viewEvent, () => false);
|
|
10
|
+
role.allow(actions.viewEvents, () => false);
|
|
11
|
+
role.allow(actions.viewUser, () => false);
|
|
12
|
+
role.allow(actions.viewUsers, () => false);
|
|
13
|
+
role.allow(actions.viewPaymentProviders, () => false);
|
|
14
|
+
role.allow(actions.viewPaymentProvider, () => false);
|
|
15
|
+
role.allow(actions.viewPaymentInterfaces, () => false);
|
|
16
|
+
role.allow(actions.viewDeliveryProviders, () => false);
|
|
17
|
+
role.allow(actions.viewDeliveryProvider, () => false);
|
|
18
|
+
role.allow(actions.viewDeliveryInterfaces, () => false);
|
|
19
|
+
role.allow(actions.viewWarehousingProviders, () => false);
|
|
20
|
+
role.allow(actions.viewWarehousingProvider, () => false);
|
|
21
|
+
role.allow(actions.viewWarehousingInterfaces, () => false);
|
|
22
|
+
role.allow(actions.viewOrders, () => false);
|
|
23
|
+
role.allow(actions.sendEmail, () => false);
|
|
24
|
+
role.allow(actions.updateUser, () => false);
|
|
25
|
+
role.allow(actions.updateUsername, () => false);
|
|
26
|
+
role.allow(actions.manageLanguages, () => false);
|
|
27
|
+
role.allow(actions.manageCountries, () => false);
|
|
28
|
+
role.allow(actions.manageProducts, () => false);
|
|
29
|
+
role.allow(actions.manageCurrencies, () => false);
|
|
30
|
+
role.allow(actions.managePaymentProviders, () => false);
|
|
31
|
+
role.allow(actions.manageDeliveryProviders, () => false);
|
|
32
|
+
role.allow(actions.manageWarehousingProviders, () => false);
|
|
33
|
+
role.allow(actions.manageAssortments, () => false);
|
|
34
|
+
role.allow(actions.manageFilters, () => false);
|
|
35
|
+
role.allow(actions.manageUsers, () => false);
|
|
36
|
+
role.allow(actions.updateCart, () => false);
|
|
37
|
+
role.allow(actions.createCart, () => false);
|
|
38
|
+
role.allow(actions.checkoutCart, () => false);
|
|
39
|
+
role.allow(actions.updateOrder, () => false);
|
|
40
|
+
role.allow(actions.updateOrderDiscount, () => false);
|
|
41
|
+
role.allow(actions.updateOrderItem, () => false);
|
|
42
|
+
role.allow(actions.updateOrderDelivery, () => false);
|
|
43
|
+
role.allow(actions.updateOrderPayment, () => false);
|
|
44
|
+
role.allow(actions.markOrderConfirmed, () => false);
|
|
45
|
+
role.allow(actions.markOrderRejected, () => false);
|
|
46
|
+
role.allow(actions.markOrderPaid, () => false);
|
|
47
|
+
role.allow(actions.markOrderDelivered, () => false);
|
|
48
|
+
role.allow(actions.viewLogs, isInLoginMutationResponse);
|
|
49
|
+
role.allow(actions.viewUserRoles, isInLoginMutationResponse);
|
|
50
|
+
role.allow(actions.viewUserOrders, isInLoginMutationResponse);
|
|
51
|
+
role.allow(actions.viewUserQuotations, isInLoginMutationResponse);
|
|
52
|
+
role.allow(actions.viewUserPrivateInfos, isInLoginMutationResponse);
|
|
53
|
+
role.allow(actions.viewUserEnrollments, isInLoginMutationResponse);
|
|
54
|
+
role.allow(actions.reviewProduct, () => false);
|
|
55
|
+
role.allow(actions.updateProductReview, () => false);
|
|
56
|
+
role.allow(actions.manageProductReviews, () => false);
|
|
57
|
+
role.allow(actions.requestQuotation, () => false);
|
|
58
|
+
role.allow(actions.viewQuotations, () => false);
|
|
59
|
+
role.allow(actions.manageQuotations, () => false);
|
|
60
|
+
role.allow(actions.answerQuotation, () => false);
|
|
61
|
+
role.allow(actions.manageBookmarks, () => false);
|
|
62
|
+
role.allow(actions.bookmarkProduct, () => false);
|
|
63
|
+
role.allow(actions.voteProductReview, () => false);
|
|
64
|
+
role.allow(actions.manageWorker, () => false);
|
|
65
|
+
role.allow(actions.viewEnrollment, () => false);
|
|
66
|
+
role.allow(actions.viewEnrollments, () => false);
|
|
67
|
+
role.allow(actions.updateEnrollment, () => false);
|
|
68
|
+
role.allow(actions.createEnrollment, () => false);
|
|
69
|
+
role.allow(actions.registerPaymentCredentials, () => false);
|
|
70
|
+
role.allow(actions.managePaymentCredentials, () => false);
|
|
71
|
+
role.allow(actions.bulkImport, () => false);
|
|
72
|
+
role.allow(actions.viewOrder, () => false);
|
|
73
|
+
role.allow(actions.viewQuotation, () => false);
|
|
74
|
+
role.allow(actions.viewEnrollment, () => false);
|
|
75
|
+
role.allow(actions.authTwoFactor, () => false);
|
|
76
|
+
role.allow(actions.manageTwoFactor, () => false);
|
|
77
|
+
role.allow(actions.impersonate, () => false);
|
|
78
|
+
// only allow if query is not demanding for drafts
|
|
79
|
+
role.allow(actions.viewProducts, (root, { includeDrafts }) => !includeDrafts);
|
|
80
|
+
// public
|
|
81
|
+
role.allow(actions.viewUserPublicInfos, () => true);
|
|
82
|
+
role.allow(actions.viewProduct, () => true);
|
|
83
|
+
role.allow(actions.viewLanguages, () => true);
|
|
84
|
+
role.allow(actions.viewLanguage, () => true);
|
|
85
|
+
role.allow(actions.viewCountries, () => true);
|
|
86
|
+
role.allow(actions.viewCountry, () => true);
|
|
87
|
+
role.allow(actions.viewCurrencies, () => true);
|
|
88
|
+
role.allow(actions.viewCurrency, () => true);
|
|
89
|
+
role.allow(actions.viewShopInfo, () => true);
|
|
90
|
+
role.allow(actions.viewAssortments, () => true);
|
|
91
|
+
role.allow(actions.viewAssortment, () => true);
|
|
92
|
+
role.allow(actions.viewFilter, () => true);
|
|
93
|
+
role.allow(actions.viewFilters, () => true);
|
|
94
|
+
role.allow(actions.viewTranslations, () => true);
|
|
95
|
+
role.allow(actions.search, () => true);
|
|
96
|
+
};
|
|
97
|
+
//# sourceMappingURL=all.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../src/roles/all.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const allRoles: {
|
|
2
|
+
ADMIN: import("@unchainedshop/types/roles").RoleInterface;
|
|
3
|
+
LOGGEDIN: import("@unchainedshop/types/roles").RoleInterface;
|
|
4
|
+
ALL: import("@unchainedshop/types/roles").RoleInterface;
|
|
5
|
+
};
|
|
6
|
+
declare const actions: {};
|
|
7
|
+
declare const configureRoles: ({ additionalRoles, additionalActions }: {
|
|
8
|
+
additionalRoles?: {};
|
|
9
|
+
additionalActions?: any[];
|
|
10
|
+
}) => {
|
|
11
|
+
ADMIN: import("@unchainedshop/types/roles").RoleInterface;
|
|
12
|
+
LOGGEDIN: import("@unchainedshop/types/roles").RoleInterface;
|
|
13
|
+
ALL: import("@unchainedshop/types/roles").RoleInterface;
|
|
14
|
+
};
|
|
15
|
+
declare const updateUserRole: (context: any, roleName: any) => Promise<any>;
|
|
16
|
+
export { allRoles, actions, configureRoles, updateUserRole };
|