@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,7 @@
|
|
|
1
|
+
This directory and the files immediately inside it are automatically generated
|
|
2
|
+
when you change this package's NPM dependencies. Commit the files in this
|
|
3
|
+
directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
|
|
4
|
+
so that others run the same versions of sub-dependencies.
|
|
5
|
+
|
|
6
|
+
You should NOT check in the node_modules directory that Meteor automatically
|
|
7
|
+
creates; if you are using git, the .gitignore file tells git to ignore it.
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lockfileVersion": 1,
|
|
3
|
+
"dependencies": {
|
|
4
|
+
"@colors/colors": {
|
|
5
|
+
"version": "1.5.0",
|
|
6
|
+
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
|
|
7
|
+
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="
|
|
8
|
+
},
|
|
9
|
+
"@dabh/diagnostics": {
|
|
10
|
+
"version": "2.0.3",
|
|
11
|
+
"resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
|
|
12
|
+
"integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA=="
|
|
13
|
+
},
|
|
14
|
+
"@unchainedshop/logger": {
|
|
15
|
+
"version": "1.1.3",
|
|
16
|
+
"resolved": "https://registry.npmjs.org/@unchainedshop/logger/-/logger-1.1.3.tgz",
|
|
17
|
+
"integrity": "sha512-tYQIMhkSRehRTcIG7g04lMsYj+9E5gs+rH4/KLWMGkHOMawwn6Gzy2Q3ecuDBGWoR79zTv6LaHJ4b23pAktzwA=="
|
|
18
|
+
},
|
|
19
|
+
"@unchainedshop/utils": {
|
|
20
|
+
"version": "1.1.3",
|
|
21
|
+
"resolved": "https://registry.npmjs.org/@unchainedshop/utils/-/utils-1.1.3.tgz",
|
|
22
|
+
"integrity": "sha512-5kUVHspX3RQK2dSiV6rr7FEn4VbP94M3EySxkDxH9Ck6WvZd9rVPjJiaOQwAK5ChC6EGdghqOI5D7pJQsuKi7g==",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@unchainedshop/logger": {
|
|
25
|
+
"version": "1.1.3",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@unchainedshop/logger/-/logger-1.1.3.tgz",
|
|
27
|
+
"integrity": "sha512-tYQIMhkSRehRTcIG7g04lMsYj+9E5gs+rH4/KLWMGkHOMawwn6Gzy2Q3ecuDBGWoR79zTv6LaHJ4b23pAktzwA=="
|
|
28
|
+
},
|
|
29
|
+
"lru-cache": {
|
|
30
|
+
"version": "7.10.2",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.10.2.tgz",
|
|
32
|
+
"integrity": "sha512-9zDbhgmXAUvUMPV81A705K3tVzcPiZL3Bf5/5JC/FjYJlLZ5AJCeqIRFHJqyBppiLosqF+uKB7p8/RDXylqBIw=="
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"abort-controller": {
|
|
37
|
+
"version": "3.0.0",
|
|
38
|
+
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
|
|
39
|
+
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
|
|
40
|
+
},
|
|
41
|
+
"accounting": {
|
|
42
|
+
"version": "0.4.1",
|
|
43
|
+
"resolved": "https://registry.npmjs.org/accounting/-/accounting-0.4.1.tgz",
|
|
44
|
+
"integrity": "sha512-RU6KY9Y5wllyaCNBo1W11ZOTnTHMMgOZkIwdOOs6W5ibMTp72i4xIbEA48djxVGqMNTUNbvrP/1nWg5Af5m2gQ=="
|
|
45
|
+
},
|
|
46
|
+
"async": {
|
|
47
|
+
"version": "3.2.4",
|
|
48
|
+
"resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
|
|
49
|
+
"integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="
|
|
50
|
+
},
|
|
51
|
+
"base64-js": {
|
|
52
|
+
"version": "1.5.1",
|
|
53
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
54
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
|
55
|
+
},
|
|
56
|
+
"bson": {
|
|
57
|
+
"version": "4.6.4",
|
|
58
|
+
"resolved": "https://registry.npmjs.org/bson/-/bson-4.6.4.tgz",
|
|
59
|
+
"integrity": "sha512-TdQ3FzguAu5HKPPlr0kYQCyrYUYh8tFM+CMTpxjNzVzxeiJY00Rtuj3LXLHSgiGvmaWlZ8PE+4KyM2thqE38pQ=="
|
|
60
|
+
},
|
|
61
|
+
"buffer": {
|
|
62
|
+
"version": "5.7.1",
|
|
63
|
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
|
64
|
+
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
|
|
65
|
+
},
|
|
66
|
+
"clone": {
|
|
67
|
+
"version": "2.1.2",
|
|
68
|
+
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
|
|
69
|
+
"integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w=="
|
|
70
|
+
},
|
|
71
|
+
"color": {
|
|
72
|
+
"version": "3.2.1",
|
|
73
|
+
"resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz",
|
|
74
|
+
"integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA=="
|
|
75
|
+
},
|
|
76
|
+
"color-convert": {
|
|
77
|
+
"version": "1.9.3",
|
|
78
|
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
79
|
+
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
|
|
80
|
+
},
|
|
81
|
+
"color-name": {
|
|
82
|
+
"version": "1.1.3",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
|
84
|
+
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
|
|
85
|
+
},
|
|
86
|
+
"color-string": {
|
|
87
|
+
"version": "1.9.1",
|
|
88
|
+
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
|
|
89
|
+
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="
|
|
90
|
+
},
|
|
91
|
+
"colorspace": {
|
|
92
|
+
"version": "1.1.4",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz",
|
|
94
|
+
"integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w=="
|
|
95
|
+
},
|
|
96
|
+
"dataloader": {
|
|
97
|
+
"version": "2.0.0",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/dataloader/-/dataloader-2.0.0.tgz",
|
|
99
|
+
"integrity": "sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ=="
|
|
100
|
+
},
|
|
101
|
+
"enabled": {
|
|
102
|
+
"version": "2.0.0",
|
|
103
|
+
"resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz",
|
|
104
|
+
"integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ=="
|
|
105
|
+
},
|
|
106
|
+
"event-target-shim": {
|
|
107
|
+
"version": "5.0.1",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
|
109
|
+
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
|
|
110
|
+
},
|
|
111
|
+
"fecha": {
|
|
112
|
+
"version": "4.2.3",
|
|
113
|
+
"resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz",
|
|
114
|
+
"integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="
|
|
115
|
+
},
|
|
116
|
+
"fn.name": {
|
|
117
|
+
"version": "1.1.0",
|
|
118
|
+
"resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz",
|
|
119
|
+
"integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="
|
|
120
|
+
},
|
|
121
|
+
"hashids": {
|
|
122
|
+
"version": "2.2.10",
|
|
123
|
+
"resolved": "https://registry.npmjs.org/hashids/-/hashids-2.2.10.tgz",
|
|
124
|
+
"integrity": "sha512-nXnYums7F8B5Y+GSThutLPlKMaamW1yjWNZVt0WModiJfdjaDZHnhYTWblS+h1OoBx3yjwiBwxldPP3nIbFSSA=="
|
|
125
|
+
},
|
|
126
|
+
"ieee754": {
|
|
127
|
+
"version": "1.2.1",
|
|
128
|
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
129
|
+
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
|
|
130
|
+
},
|
|
131
|
+
"inherits": {
|
|
132
|
+
"version": "2.0.4",
|
|
133
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
134
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
|
135
|
+
},
|
|
136
|
+
"is-arrayish": {
|
|
137
|
+
"version": "0.3.2",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
|
|
139
|
+
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
|
|
140
|
+
},
|
|
141
|
+
"is-stream": {
|
|
142
|
+
"version": "2.0.1",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
|
|
144
|
+
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
|
|
145
|
+
},
|
|
146
|
+
"kuler": {
|
|
147
|
+
"version": "2.0.0",
|
|
148
|
+
"resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz",
|
|
149
|
+
"integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A=="
|
|
150
|
+
},
|
|
151
|
+
"locale": {
|
|
152
|
+
"version": "0.1.0",
|
|
153
|
+
"resolved": "https://registry.npmjs.org/locale/-/locale-0.1.0.tgz",
|
|
154
|
+
"integrity": "sha512-rY3ZMnUkMfaZEix1fp/pjdwsHJkDQcE0UEcXHuYI77J03K8gddL3iD+UuJCLAmT2Z2oz5A70/0QS4J9OLCCvXw=="
|
|
155
|
+
},
|
|
156
|
+
"lodash._reinterpolate": {
|
|
157
|
+
"version": "3.0.0",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
|
|
159
|
+
"integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA=="
|
|
160
|
+
},
|
|
161
|
+
"lodash.template": {
|
|
162
|
+
"version": "4.5.0",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
|
|
164
|
+
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A=="
|
|
165
|
+
},
|
|
166
|
+
"lodash.templatesettings": {
|
|
167
|
+
"version": "4.2.0",
|
|
168
|
+
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
|
|
169
|
+
"integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="
|
|
170
|
+
},
|
|
171
|
+
"logform": {
|
|
172
|
+
"version": "2.4.1",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/logform/-/logform-2.4.1.tgz",
|
|
174
|
+
"integrity": "sha512-7XB/tqc3VRbri9pRjU6E97mQ8vC27ivJ3lct4jhyT+n0JNDd4YKldFl0D75NqDp46hk8RC7Ma1Vjv/UPf67S+A=="
|
|
175
|
+
},
|
|
176
|
+
"lru-cache": {
|
|
177
|
+
"version": "7.7.0",
|
|
178
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.7.0.tgz",
|
|
179
|
+
"integrity": "sha512-3W9Irr9YR2ZHJbfRr/hj8VtzqH7DugwWyHONyDByP6PLS/YJV7GTX5dDYS+qFe/LkVfnCjtk6vkVsxxKGol6jQ=="
|
|
180
|
+
},
|
|
181
|
+
"message-box": {
|
|
182
|
+
"version": "0.2.7",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/message-box/-/message-box-0.2.7.tgz",
|
|
184
|
+
"integrity": "sha512-C4ccA5nHb58kTS+pLrgF/JWtr7fAIkHxRDceH7tdy5fMA783nUfbYwZ7H2XLvSeYfcnWIYCig5dWW+icK9X/Ag=="
|
|
185
|
+
},
|
|
186
|
+
"mongo-object": {
|
|
187
|
+
"version": "0.1.4",
|
|
188
|
+
"resolved": "https://registry.npmjs.org/mongo-object/-/mongo-object-0.1.4.tgz",
|
|
189
|
+
"integrity": "sha512-QtYk0gupWEn2+iB+DDRt1L+WbcNYvJRaHdih/dcqthOa1DbnREUGSs2WGcW478GNYpElflo/yybZXu0sTiRXHg=="
|
|
190
|
+
},
|
|
191
|
+
"ms": {
|
|
192
|
+
"version": "2.1.3",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
194
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
|
|
195
|
+
},
|
|
196
|
+
"one-time": {
|
|
197
|
+
"version": "1.0.0",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz",
|
|
199
|
+
"integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g=="
|
|
200
|
+
},
|
|
201
|
+
"readable-stream": {
|
|
202
|
+
"version": "3.6.0",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
|
|
204
|
+
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="
|
|
205
|
+
},
|
|
206
|
+
"safe-buffer": {
|
|
207
|
+
"version": "5.2.1",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
209
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
|
210
|
+
},
|
|
211
|
+
"safe-stable-stringify": {
|
|
212
|
+
"version": "2.3.1",
|
|
213
|
+
"resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz",
|
|
214
|
+
"integrity": "sha512-kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="
|
|
215
|
+
},
|
|
216
|
+
"simpl-schema": {
|
|
217
|
+
"version": "1.12.2",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/simpl-schema/-/simpl-schema-1.12.2.tgz",
|
|
219
|
+
"integrity": "sha512-FaisAjfJEt7Ie7K39wNqb/0F7FQ1q7yXmZcNa5JEBiPA9hIt4MpWMouL9mLqNB89alGpZAEiU7U9BelDxRqCVg=="
|
|
220
|
+
},
|
|
221
|
+
"simple-swizzle": {
|
|
222
|
+
"version": "0.2.2",
|
|
223
|
+
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
|
|
224
|
+
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg=="
|
|
225
|
+
},
|
|
226
|
+
"stack-trace": {
|
|
227
|
+
"version": "0.0.10",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
|
|
229
|
+
"integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg=="
|
|
230
|
+
},
|
|
231
|
+
"string_decoder": {
|
|
232
|
+
"version": "1.3.0",
|
|
233
|
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
|
234
|
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
|
|
235
|
+
},
|
|
236
|
+
"text-hex": {
|
|
237
|
+
"version": "1.0.0",
|
|
238
|
+
"resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
|
|
239
|
+
"integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg=="
|
|
240
|
+
},
|
|
241
|
+
"triple-beam": {
|
|
242
|
+
"version": "1.3.0",
|
|
243
|
+
"resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz",
|
|
244
|
+
"integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw=="
|
|
245
|
+
},
|
|
246
|
+
"util-deprecate": {
|
|
247
|
+
"version": "1.0.2",
|
|
248
|
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
|
249
|
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
|
250
|
+
},
|
|
251
|
+
"winston": {
|
|
252
|
+
"version": "3.8.0",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/winston/-/winston-3.8.0.tgz",
|
|
254
|
+
"integrity": "sha512-Iix1w8rIq2kBDkGvclO0db2CVOHYVamCIkVWcUbs567G9i2pdB+gvqLgDgxx4B4HXHYD6U4Zybh6ojepUOqcFQ=="
|
|
255
|
+
},
|
|
256
|
+
"winston-transport": {
|
|
257
|
+
"version": "4.5.0",
|
|
258
|
+
"resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz",
|
|
259
|
+
"integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q=="
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
package/.versions
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
babel-compiler@7.9.0
|
|
2
|
+
babel-runtime@1.5.1
|
|
3
|
+
base64@1.0.12
|
|
4
|
+
boilerplate-generator@1.7.1
|
|
5
|
+
callback-hook@1.4.0
|
|
6
|
+
check@1.3.1
|
|
7
|
+
dynamic-import@0.7.2
|
|
8
|
+
ecmascript@0.16.2
|
|
9
|
+
ecmascript-runtime@0.8.0
|
|
10
|
+
ecmascript-runtime-client@0.12.1
|
|
11
|
+
ecmascript-runtime-server@0.11.0
|
|
12
|
+
ejson@1.1.2
|
|
13
|
+
fetch@0.1.1
|
|
14
|
+
inter-process-messaging@0.1.1
|
|
15
|
+
logging@1.3.1
|
|
16
|
+
meteor@1.10.0
|
|
17
|
+
modern-browsers@0.1.8
|
|
18
|
+
modules@0.18.0
|
|
19
|
+
modules-runtime@0.13.0
|
|
20
|
+
promise@0.12.0
|
|
21
|
+
react-fast-refresh@0.2.3
|
|
22
|
+
routepolicy@1.1.1
|
|
23
|
+
typescript@4.5.4
|
|
24
|
+
unchained:api@1.1.2
|
|
25
|
+
underscore@1.0.10
|
|
26
|
+
webapp@1.13.1
|
|
27
|
+
webapp-hashing@1.1.0
|
package/README.md
ADDED
package/lib/acl.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CheckPermissionArgs } from '@unchainedshop/types/roles';
|
|
2
|
+
declare const checkAction: (context: any, action: any, args?: CheckPermissionArgs, options?: any) => Promise<void>;
|
|
3
|
+
declare const checkResolver: (action: any, userOptions: any) => (fn: any, name: any) => (root: any, params: any, context: any, ...other: any[]) => Promise<any>;
|
|
4
|
+
declare const checkTypeResolver: (action: any, key: any) => (obj: any, params: any, context: any) => Promise<any>;
|
|
5
|
+
declare const resolverDecorator: (action: any, userOptions: any) => (target: any, key: any, descriptor: any) => {
|
|
6
|
+
configurable: boolean;
|
|
7
|
+
get(): (root: any, params: any, context: any, ...other: any[]) => Promise<any>;
|
|
8
|
+
};
|
|
9
|
+
export default resolverDecorator;
|
|
10
|
+
export { resolverDecorator, checkResolver, checkTypeResolver, checkAction };
|
package/lib/acl.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Roles } from '@unchainedshop/roles';
|
|
2
|
+
import { NoPermissionError, PermissionSystemError } from './errors';
|
|
3
|
+
const defaultOptions = {
|
|
4
|
+
showKey: true,
|
|
5
|
+
mapArgs: (...args) => args,
|
|
6
|
+
};
|
|
7
|
+
const emptyObject = {};
|
|
8
|
+
const emptyArray = [];
|
|
9
|
+
const ensureActionExists = (action, userOptions) => {
|
|
10
|
+
if (!action) {
|
|
11
|
+
throw new PermissionSystemError({ userOptions });
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
const ensureIsFunction = (fn, action, options, key) => {
|
|
15
|
+
if (typeof fn !== 'function') {
|
|
16
|
+
throw new PermissionSystemError({
|
|
17
|
+
action,
|
|
18
|
+
key: options.showKey ? key : '',
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const checkAction = async (context, action, args = emptyArray, options = emptyObject) => {
|
|
23
|
+
const { key } = options || emptyObject;
|
|
24
|
+
const hasPermission = await Roles.userHasPermission(context, action, args);
|
|
25
|
+
if (hasPermission)
|
|
26
|
+
return;
|
|
27
|
+
const keyText = key && key !== '' ? ` in "${key}"` : '';
|
|
28
|
+
throw new NoPermissionError({
|
|
29
|
+
userId: context.userId,
|
|
30
|
+
action,
|
|
31
|
+
key,
|
|
32
|
+
message: `The user "${context.userId || ''}" has no permission to perform the action "${action}"${keyText}`,
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
const wrapFunction = (fn, name, action, userOptions) => {
|
|
36
|
+
const key = name || fn.name;
|
|
37
|
+
const options = { ...defaultOptions, ...userOptions };
|
|
38
|
+
ensureIsFunction(fn, action, options, key);
|
|
39
|
+
return async (root, params, context, ...other) => {
|
|
40
|
+
const args = options.mapArgs(root, params, ...other);
|
|
41
|
+
await checkAction(context, action, args, {
|
|
42
|
+
key: options.showKey ? key : '',
|
|
43
|
+
});
|
|
44
|
+
return fn(root, params, context, ...other);
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
const checkResolver = (action, userOptions) => {
|
|
48
|
+
ensureActionExists(action, userOptions);
|
|
49
|
+
return (fn, name) => wrapFunction(fn, name, action, userOptions);
|
|
50
|
+
};
|
|
51
|
+
const checkTypeResolver = (action, key) => async function _checkTypeResolver(obj, params, context) {
|
|
52
|
+
await checkAction(context, action, [obj, params]);
|
|
53
|
+
if (typeof obj[key] === 'function') {
|
|
54
|
+
return obj[key](params, context);
|
|
55
|
+
}
|
|
56
|
+
return obj[key];
|
|
57
|
+
};
|
|
58
|
+
const resolverDecorator = function resolverDecorator(action, userOptions) {
|
|
59
|
+
ensureActionExists(action, userOptions);
|
|
60
|
+
return function decorator(target, key, descriptor) {
|
|
61
|
+
const fn = descriptor.value || target[key];
|
|
62
|
+
return {
|
|
63
|
+
configurable: true,
|
|
64
|
+
get() {
|
|
65
|
+
const value = wrapFunction(fn, key, action, userOptions);
|
|
66
|
+
Object.defineProperty(this, key, {
|
|
67
|
+
value,
|
|
68
|
+
configurable: true,
|
|
69
|
+
writable: true,
|
|
70
|
+
});
|
|
71
|
+
return value;
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
export default resolverDecorator;
|
|
77
|
+
// @resolverDecorator(action)
|
|
78
|
+
// resolverToBeChecked: () => ...
|
|
79
|
+
export { resolverDecorator, checkResolver, checkTypeResolver, checkAction };
|
|
80
|
+
//# sourceMappingURL=acl.js.map
|
package/lib/acl.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acl.js","sourceRoot":"","sources":["../src/acl.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { UnchainedServerOptions } from '@unchainedshop/types/api';
|
|
2
|
+
import { createContextResolver, getCurrentContextResolver, setCurrentContextResolver } from './context';
|
|
3
|
+
export * from './context';
|
|
4
|
+
export * as acl from './acl';
|
|
5
|
+
export * as errors from './errors';
|
|
6
|
+
export { hashPassword } from './hashPassword';
|
|
7
|
+
export * as roles from './roles';
|
|
8
|
+
export { createContextResolver, getCurrentContextResolver, setCurrentContextResolver };
|
|
9
|
+
export declare const startAPIServer: (options: UnchainedServerOptions) => {
|
|
10
|
+
apolloGraphQLServer: import("apollo-server-express").ApolloServer;
|
|
11
|
+
bulkImportServer: void;
|
|
12
|
+
};
|
package/lib/api-index.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import createBulkImportServer from './createBulkImportServer';
|
|
2
|
+
import createGraphQLServer from './createGraphQLServer';
|
|
3
|
+
import { createContextResolver, getCurrentContextResolver, setCurrentContextResolver } from './context';
|
|
4
|
+
export * from './context';
|
|
5
|
+
export * as acl from './acl';
|
|
6
|
+
export * as errors from './errors';
|
|
7
|
+
export { hashPassword } from './hashPassword';
|
|
8
|
+
export * as roles from './roles';
|
|
9
|
+
export { createContextResolver, getCurrentContextResolver, setCurrentContextResolver };
|
|
10
|
+
const UNCHAINED_API_VERSION = '1.1.3'; // eslint-disable-line
|
|
11
|
+
export const startAPIServer = (options) => {
|
|
12
|
+
const { unchainedAPI, roles, context: customContext, ...apolloServerOptions } = options || {};
|
|
13
|
+
const contextResolver = createContextResolver(unchainedAPI, roles, UNCHAINED_API_VERSION);
|
|
14
|
+
setCurrentContextResolver(customContext
|
|
15
|
+
? ({ req, res }) => {
|
|
16
|
+
return customContext({ req, res }, contextResolver);
|
|
17
|
+
}
|
|
18
|
+
: contextResolver);
|
|
19
|
+
const apolloGraphQLServer = createGraphQLServer(apolloServerOptions);
|
|
20
|
+
const bulkImportServer = createBulkImportServer();
|
|
21
|
+
return {
|
|
22
|
+
apolloGraphQLServer,
|
|
23
|
+
bulkImportServer,
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=api-index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api-index.js","sourceRoot":"","sources":["../src/api-index.ts"],"names":[],"mappings":"AACA,OAAO,sBAAsB,MAAM,0BAA0B,CAAC;AAC9D,OAAO,mBAAmB,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAExG,cAAc,WAAW,CAAC;AAC1B,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAC7B,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AAEjC,OAAO,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,CAAC;AAEvF,MAAM,qBAAqB,GAAG,OAAO,CAAC,CAAC,sBAAsB;AAE7D,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,OAA+B,EAAE,EAAE;IAChE,MAAM,EAAE,YAAY,EAAE,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,GAAG,mBAAmB,EAAE,GAAG,OAAO,IAAI,EAAE,CAAC;IAE9F,MAAM,eAAe,GAAG,qBAAqB,CAAC,YAAY,EAAE,KAAK,EAAE,qBAAqB,CAAC,CAAC;IAE1F,yBAAyB,CACvB,aAAa;QACX,CAAC,CAAC,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE;YACf,OAAO,aAAa,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,eAAe,CAAC,CAAC;QACtD,CAAC;QACH,CAAC,CAAC,eAAe,CACpB,CAAC;IAEF,MAAM,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;IACrE,MAAM,gBAAgB,GAAG,sBAAsB,EAAE,CAAC;IAElD,OAAO;QACL,mBAAmB;QACnB,gBAAgB;KACjB,CAAC;AACJ,CAAC,CAAC"}
|
package/lib/context.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { UnchainedAPI, UnchainedContextResolver } from '@unchainedshop/types/api';
|
|
2
|
+
export declare const getCurrentContextResolver: () => UnchainedContextResolver;
|
|
3
|
+
export declare const setCurrentContextResolver: (newContext: UnchainedContextResolver) => void;
|
|
4
|
+
export declare const createContextResolver: (unchainedAPI: UnchainedAPI, roles: any, version: string) => UnchainedContextResolver;
|
|
5
|
+
export declare const useMiddlewareWithCurrentContext: (path: any, middleware: any) => void;
|
package/lib/context.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { WebApp } from 'meteor/webapp';
|
|
2
|
+
import instantiateLoaders from './loaders';
|
|
3
|
+
import { getLocaleContext } from './locale-context';
|
|
4
|
+
import { getUserContext } from './user-context';
|
|
5
|
+
let context;
|
|
6
|
+
export const getCurrentContextResolver = () => context;
|
|
7
|
+
export const setCurrentContextResolver = (newContext) => {
|
|
8
|
+
context = newContext;
|
|
9
|
+
};
|
|
10
|
+
export const createContextResolver = (unchainedAPI, roles, version) => async ({ req, res, ...apolloContext }) => {
|
|
11
|
+
const loaders = await instantiateLoaders(req, unchainedAPI);
|
|
12
|
+
const userContext = await getUserContext(req, unchainedAPI);
|
|
13
|
+
const localeContext = await getLocaleContext(req, unchainedAPI);
|
|
14
|
+
return {
|
|
15
|
+
req,
|
|
16
|
+
res,
|
|
17
|
+
...apolloContext,
|
|
18
|
+
...unchainedAPI,
|
|
19
|
+
...userContext,
|
|
20
|
+
...localeContext,
|
|
21
|
+
loaders,
|
|
22
|
+
roles,
|
|
23
|
+
version,
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export const useMiddlewareWithCurrentContext = (path, middleware) => {
|
|
27
|
+
WebApp.connectHandlers.use(path, async (req, res, ...rest) => {
|
|
28
|
+
req.unchainedContext = await context({ req, res });
|
|
29
|
+
return middleware(req, res, ...rest);
|
|
30
|
+
});
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.js","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAEvC,OAAO,kBAAkB,MAAM,WAAW,CAAC;AAC3C,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAEhD,IAAI,OAAO,CAAC;AAEZ,MAAM,CAAC,MAAM,yBAAyB,GAAG,GAA6B,EAAE,CAAC,OAAO,CAAC;AAEjF,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,UAAoC,EAAE,EAAE;IAChF,OAAO,GAAG,UAAU,CAAC;AACvB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAChC,CAAC,YAA0B,EAAE,KAAU,EAAE,OAAe,EAA4B,EAAE,CACtF,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,aAAa,EAAE,EAAE,EAAE;IACvC,MAAM,OAAO,GAAG,MAAM,kBAAkB,CAAC,GAAG,EAAE,YAAY,CAAC,CAAC;IAC5D,MAAM,WAAW,GAAG,MAAM,cAAc,CAAC,GAAG,EAAE,YAAY,CAAC,CAAC;IAC5D,MAAM,aAAa,GAAG,MAAM,gBAAgB,CAAC,GAAG,EAAE,YAAY,CAAC,CAAC;IAEhE,OAAO;QACL,GAAG;QACH,GAAG;QACH,GAAG,aAAa;QAChB,GAAG,YAAY;QACf,GAAG,WAAW;QACd,GAAG,aAAa;QAChB,OAAO;QACP,KAAK;QACL,OAAO;KACR,CAAC;AACJ,CAAC,CAAC;AAEJ,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,IAAI,EAAE,UAAU,EAAE,EAAE;IAClE,MAAM,CAAC,eAAe,CAAC,GAAG,CACxB,IAAI,EACJ,KAAK,EAAE,GAA0D,EAAE,GAAG,EAAE,GAAG,IAAI,EAAE,EAAE;QACjF,GAAG,CAAC,gBAAgB,GAAG,MAAM,OAAO,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC;QACnD,OAAO,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,CAAC;IACvC,CAAC,CACF,CAAC;AACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { createLogger } from '@unchainedshop/logger';
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import { checkAction } from './acl';
|
|
4
|
+
import { actions } from './roles';
|
|
5
|
+
import { useMiddlewareWithCurrentContext } from './context';
|
|
6
|
+
const logger = createLogger('unchained:api');
|
|
7
|
+
const { BULK_IMPORT_API_PATH = '/bulk-import' } = process.env;
|
|
8
|
+
const errorHandler = (res) => (e) => {
|
|
9
|
+
logger.error(e.message);
|
|
10
|
+
res.writeHead(503);
|
|
11
|
+
res.end(JSON.stringify(e));
|
|
12
|
+
};
|
|
13
|
+
const methodWrongHandler = (res) => () => {
|
|
14
|
+
logger.error('Method not supported, return 404');
|
|
15
|
+
res.writeHead(404);
|
|
16
|
+
res.end();
|
|
17
|
+
};
|
|
18
|
+
const createWriteStreamToFilesystem = (cacheDirectory) => {
|
|
19
|
+
const date = new Date().toISOString();
|
|
20
|
+
const payloadFilePath = `${cacheDirectory}/${date}.json`;
|
|
21
|
+
const stream = fs.createWriteStream(payloadFilePath, { flags: 'a' });
|
|
22
|
+
return stream;
|
|
23
|
+
};
|
|
24
|
+
const createWriteStreamToMongoDB = (BulkImportPayloads) => {
|
|
25
|
+
const date = new Date().toISOString();
|
|
26
|
+
const stream = BulkImportPayloads.openUploadStreamWithId(date, `${date}.json`, {
|
|
27
|
+
contentType: 'application/json',
|
|
28
|
+
});
|
|
29
|
+
return stream;
|
|
30
|
+
};
|
|
31
|
+
const bulkImportMiddleware = async (req, res) => {
|
|
32
|
+
try {
|
|
33
|
+
if (req.method !== 'POST') {
|
|
34
|
+
methodWrongHandler(res)();
|
|
35
|
+
return;
|
|
36
|
+
}
|
|
37
|
+
const resolvedContext = req.unchainedContext;
|
|
38
|
+
await checkAction(resolvedContext, actions.bulkImport);
|
|
39
|
+
const input = {
|
|
40
|
+
createShouldUpsertIfIDExists: !!req.query?.createShouldUpsertIfIDExists,
|
|
41
|
+
skipCacheInvalidation: !!req.query?.skipCacheInvalidation,
|
|
42
|
+
fsPayloadCacheDirectory: req.query?.fsPayloadCacheDirectory,
|
|
43
|
+
remoteAddress: resolvedContext.remoteAddress,
|
|
44
|
+
};
|
|
45
|
+
const stream = input.fsPayloadCacheDirectory
|
|
46
|
+
? createWriteStreamToFilesystem(input.fsPayloadCacheDirectory)
|
|
47
|
+
: createWriteStreamToMongoDB(resolvedContext.bulkImporter.BulkImportPayloads);
|
|
48
|
+
req
|
|
49
|
+
.pipe(stream)
|
|
50
|
+
.on('error', errorHandler(res))
|
|
51
|
+
.on('finish', async (file) => {
|
|
52
|
+
try {
|
|
53
|
+
if (input.fsPayloadCacheDirectory) {
|
|
54
|
+
input.payloadFilePath = stream.path;
|
|
55
|
+
}
|
|
56
|
+
else {
|
|
57
|
+
input.payloadId = file._id;
|
|
58
|
+
input.payloadSize = file.length;
|
|
59
|
+
}
|
|
60
|
+
const work = await resolvedContext.modules.worker.addWork({
|
|
61
|
+
type: 'BULK_IMPORT',
|
|
62
|
+
input: Object.fromEntries(Object.entries(input).filter(([, value]) => Boolean(value))),
|
|
63
|
+
retries: 0,
|
|
64
|
+
priority: 10,
|
|
65
|
+
}, resolvedContext.userId);
|
|
66
|
+
res.writeHead(200);
|
|
67
|
+
res.end(JSON.stringify(work));
|
|
68
|
+
}
|
|
69
|
+
catch (e) {
|
|
70
|
+
errorHandler(res)(e);
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
catch (e) {
|
|
75
|
+
errorHandler(res)(e);
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
export default () => {
|
|
79
|
+
useMiddlewareWithCurrentContext(BULK_IMPORT_API_PATH, bulkImportMiddleware);
|
|
80
|
+
};
|
|
81
|
+
//# sourceMappingURL=createBulkImportServer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createBulkImportServer.js","sourceRoot":"","sources":["../src/createBulkImportServer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAErD,OAAO,EAAE,MAAM,IAAI,CAAC;AAEpB,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,OAAO,EAAE,+BAA+B,EAAE,MAAM,WAAW,CAAC;AAE5D,MAAM,MAAM,GAAG,YAAY,CAAC,eAAe,CAAC,CAAC;AAE7C,MAAM,EAAE,oBAAoB,GAAG,cAAc,EAAE,GAAG,OAAO,CAAC,GAAG,CAAC;AAE9D,MAAM,YAAY,GAAG,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,EAAE;IAClC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;IACxB,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;IACnB,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;AAC7B,CAAC,CAAC;AAEF,MAAM,kBAAkB,GAAG,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,EAAE;IACvC,MAAM,CAAC,KAAK,CAAC,kCAAkC,CAAC,CAAC;IACjD,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;IACnB,GAAG,CAAC,GAAG,EAAE,CAAC;AACZ,CAAC,CAAC;AAEF,MAAM,6BAA6B,GAAG,CAAC,cAAc,EAAE,EAAE;IACvD,MAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;IACtC,MAAM,eAAe,GAAG,GAAG,cAAc,IAAI,IAAI,OAAO,CAAC;IACzD,MAAM,MAAM,GAAG,EAAE,CAAC,iBAAiB,CAAC,eAAe,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IACrE,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAEF,MAAM,0BAA0B,GAAG,CAAC,kBAAkB,EAAE,EAAE;IACxD,MAAM,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAC;IACtC,MAAM,MAAM,GAAG,kBAAkB,CAAC,sBAAsB,CAAC,IAAI,EAAE,GAAG,IAAI,OAAO,EAAE;QAC7E,WAAW,EAAE,kBAAkB;KAChC,CAAC,CAAC;IACH,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC;AAEF,MAAM,oBAAoB,GAAG,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE;IAC9C,IAAI;QACF,IAAI,GAAG,CAAC,MAAM,KAAK,MAAM,EAAE;YACzB,kBAAkB,CAAC,GAAG,CAAC,EAAE,CAAC;YAC1B,OAAO;SACR;QAED,MAAM,eAAe,GAAG,GAAG,CAAC,gBAA2B,CAAC;QACxD,MAAM,WAAW,CAAC,eAAe,EAAG,OAAe,CAAC,UAAU,CAAC,CAAC;QAEhE,MAAM,KAAK,GAAQ;YACjB,4BAA4B,EAAE,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,4BAA4B;YACvE,qBAAqB,EAAE,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,qBAAqB;YACzD,uBAAuB,EAAE,GAAG,CAAC,KAAK,EAAE,uBAAuB;YAC3D,aAAa,EAAE,eAAe,CAAC,aAAa;SAC7C,CAAC;QAEF,MAAM,MAAM,GAAG,KAAK,CAAC,uBAAuB;YAC1C,CAAC,CAAC,6BAA6B,CAAC,KAAK,CAAC,uBAAuB,CAAC;YAC9D,CAAC,CAAC,0BAA0B,CAAC,eAAe,CAAC,YAAY,CAAC,kBAAkB,CAAC,CAAC;QAEhF,GAAG;aACA,IAAI,CAAC,MAAM,CAAC;aACZ,EAAE,CAAC,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;aAC9B,EAAE,CAAC,QAAQ,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE;YAC3B,IAAI;gBACF,IAAI,KAAK,CAAC,uBAAuB,EAAE;oBACjC,KAAK,CAAC,eAAe,GAAG,MAAM,CAAC,IAAI,CAAC;iBACrC;qBAAM;oBACL,KAAK,CAAC,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC;oBAC3B,KAAK,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC;iBACjC;gBACD,MAAM,IAAI,GAAG,MAAM,eAAe,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CACvD;oBACE,IAAI,EAAE,aAAa;oBACnB,KAAK,EAAE,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC;oBACtF,OAAO,EAAE,CAAC;oBACV,QAAQ,EAAE,EAAE;iBACb,EACD,eAAe,CAAC,MAAM,CACvB,CAAC;gBACF,GAAG,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;gBACnB,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAAC;aAC/B;YAAC,OAAO,CAAC,EAAE;gBACV,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;aACtB;QACH,CAAC,CAAC,CAAC;KACN;IAAC,OAAO,CAAC,EAAE;QACV,YAAY,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;KACtB;AACH,CAAC,CAAC;AAEF,eAAe,GAAG,EAAE;IAClB,+BAA+B,CAAC,oBAAoB,EAAE,oBAAoB,CAAC,CAAC;AAC9E,CAAC,CAAC"}
|