@evenicanpm/storefront-core 1.0.3 → 1.0.5
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/docs.tsconfig.json +35 -0
- package/package.json +13 -12
- package/src/api-manager/datasources/d365/d365-address.datasource.ts +2 -2
- package/src/api-manager/datasources/d365/d365-cart.datasource.ts +3 -3
- package/src/api-manager/datasources/d365/d365-categories.datasource.ts +2 -2
- package/src/api-manager/datasources/d365/d365-order.datasource.ts +3 -3
- package/src/api-manager/datasources/d365/d365-organization.datasource.ts +2 -2
- package/src/api-manager/datasources/d365/d365-product.datasource.ts +5 -5
- package/src/api-manager/datasources/d365/d365-session.datasource.ts +2 -2
- package/src/api-manager/datasources/d365/d365-user.datasource.ts +2 -2
- package/src/api-manager/datasources/d365/d365.datasource.ts +8 -8
- package/src/api-manager/datasources/d365/index.ts +2 -2
- package/src/api-manager/datasources/e4/address/e4-address.datasource.ts +4 -4
- package/src/api-manager/datasources/e4/address/e4-address.remaps.ts +1 -1
- package/src/api-manager/datasources/e4/address/e4-address.translator.ts +7 -3
- package/src/api-manager/datasources/e4/cart/e4-cart.datasource.ts +7 -7
- package/src/api-manager/datasources/e4/cart/e4-cart.remaps.ts +7 -3
- package/src/api-manager/datasources/e4/cart/e4-cart.translator.ts +2 -2
- package/src/api-manager/datasources/e4/categories/e4-categories.datasource.ts +2 -2
- package/src/api-manager/datasources/e4/categories/e4-categories.translator.ts +1 -1
- package/src/api-manager/datasources/e4/e4.datasource.ts +9 -9
- package/src/api-manager/datasources/e4/graphqlRequestSdk.ts +2175 -138
- package/src/api-manager/datasources/e4/order/e4-order.datasource.ts +6 -3
- package/src/api-manager/datasources/e4/order/e4-order.remaps.ts +2 -2
- package/src/api-manager/datasources/e4/organization/e4-organization.datasource.ts +1 -1
- package/src/api-manager/datasources/e4/product/e4-product.datasource.ts +4 -4
- package/src/api-manager/datasources/e4/product/e4-product.remaps.ts +2 -2
- package/src/api-manager/datasources/e4/product/e4-product.translator.ts +3 -3
- package/src/api-manager/datasources/e4/session/e4-session.datasource.ts +2 -2
- package/src/api-manager/datasources/e4/session/e4-session.translator.ts +1 -1
- package/src/api-manager/datasources/e4/user/e4-user.datasource.ts +4 -4
- package/src/api-manager/datasources/e4/user/e4-user.remaps.ts +5 -2
- package/src/api-manager/datasources/e4/user/e4-user.translator.ts +5 -2
- package/src/api-manager/datasources/e4/utils/unwrap-e4-variants.ts +6 -2
- package/src/api-manager/index.ts +4 -4
- package/src/api-manager/lib/get-graphql-client.ts +1 -1
- package/src/api-manager/schemas/address.schema.ts +1 -1
- package/src/api-manager/schemas/cart.schema.ts +1 -1
- package/src/api-manager/schemas/order.schema.ts +1 -1
- package/src/api-manager/schemas/organization.schema.ts +1 -1
- package/src/api-manager/schemas/product.schema.ts +1 -2
- package/src/api-manager/schemas/session.schema.ts +2 -2
- package/src/api-manager/schemas/user.schema.ts +1 -1
- package/src/api-manager/services/address/mutations/create-address.ts +2 -2
- package/src/api-manager/services/address/mutations/delete-address.ts +2 -2
- package/src/api-manager/services/address/mutations/get-delivery-options.ts +2 -2
- package/src/api-manager/services/address/mutations/update-address.ts +2 -2
- package/src/api-manager/services/address/queries/get-countries.ts +2 -2
- package/src/api-manager/services/address/queries/get-states.ts +4 -1
- package/src/api-manager/services/cart/mutations/add-discount-code.ts +3 -3
- package/src/api-manager/services/cart/mutations/add-to-cart.ts +3 -3
- package/src/api-manager/services/cart/mutations/checkout.ts +2 -2
- package/src/api-manager/services/cart/mutations/delete-cart-line.ts +3 -3
- package/src/api-manager/services/cart/mutations/get-payment-accept-result.ts +2 -2
- package/src/api-manager/services/cart/mutations/remove-cart-line-delivery-mode.ts +3 -3
- package/src/api-manager/services/cart/mutations/remove-discount-code.ts +3 -3
- package/src/api-manager/services/cart/mutations/update-cart-line-delivery-mode.ts +3 -3
- package/src/api-manager/services/cart/mutations/update-cart-lines.ts +3 -3
- package/src/api-manager/services/cart/mutations/update-cart.ts +3 -3
- package/src/api-manager/services/cart/queries/get-cart-lines-inventory.ts +4 -1
- package/src/api-manager/services/cart/queries/get-cart.ts +2 -2
- package/src/api-manager/services/cart/queries/get-payment-accept-point.ts +4 -1
- package/src/api-manager/services/categories/queries/get-categories.ts +5 -2
- package/src/api-manager/services/create-mutation.ts +2 -2
- package/src/api-manager/services/create-query.ts +12 -2
- package/src/api-manager/services/order/queries/get-order-details.ts +4 -1
- package/src/api-manager/services/order/queries/get-orders.ts +4 -1
- package/src/api-manager/services/organization/queries/get-channel-configuration.ts +4 -1
- package/src/api-manager/services/organization/queries/get-stores.ts +4 -1
- package/src/api-manager/services/product/mutations/search-products.ts +1 -1
- package/src/api-manager/services/product/queries/get-product-availability.ts +5 -2
- package/src/api-manager/services/product/queries/get-product-by-id.ts +5 -2
- package/src/api-manager/services/product/queries/get-product-by-ids.ts +5 -2
- package/src/api-manager/services/product/queries/get-product-list.ts +4 -1
- package/src/api-manager/services/product/queries/get-product-prices.ts +4 -1
- package/src/api-manager/services/product/queries/get-related-products.ts +5 -2
- package/src/api-manager/services/product/queries/search-products.ts +4 -1
- package/src/api-manager/services/product/server/product.server.ts +2 -2
- package/src/api-manager/services/session/mutations/session-init.ts +2 -2
- package/src/api-manager/services/session/mutations/session-logout.ts +2 -2
- package/src/api-manager/services/session/queries/get-session.ts +4 -1
- package/src/api-manager/services/user/mutations/add-to-wishlist.ts +27 -5
- package/src/api-manager/services/user/mutations/copy-cart-to-wishlist.ts +2 -2
- package/src/api-manager/services/user/mutations/create-wishlist.ts +2 -2
- package/src/api-manager/services/user/mutations/delete-wishlist.ts +3 -3
- package/src/api-manager/services/user/mutations/remove-from-wishlist.ts +28 -3
- package/src/api-manager/services/user/mutations/update-user.ts +2 -2
- package/src/api-manager/services/user/mutations/update-wishlist.ts +2 -2
- package/src/api-manager/services/user/queries/get-user-counts.ts +4 -1
- package/src/api-manager/services/user/queries/get-user.ts +4 -1
- package/src/api-manager/services/user/queries/get-wishlist-details.ts +4 -1
- package/src/api-manager/services/user/queries/get-wishlists.ts +4 -1
- package/src/api-manager/types/Datasource.ts +2 -2
- package/src/auth/auth-options.test.ts +1 -1
- package/src/auth/auth-options.ts +1 -1
- package/src/auth/providers/index.ts +3 -3
- package/src/auth/refresh-token.ts +2 -2
- package/src/cms/blocks/{BlockManager.tsx → block-manager.tsx} +2 -2
- package/src/cms/blocks/{Components/BrandLogosScroller.tsx → components/brand-logos-scroller.tsx} +1 -1
- package/src/cms/blocks/{Components/CategoryCarousel → components/category-carousel}/index.tsx +9 -10
- package/src/cms/blocks/{Components/FeaturePill.tsx → components/feature-pill.tsx} +1 -1
- package/src/cms/blocks/{Components/FeaturedCategories.tsx → components/featured-categories.tsx} +2 -2
- package/src/cms/blocks/{Components/FeaturedProducts.tsx → components/featured-products.tsx} +2 -2
- package/src/cms/blocks/{Components/Footer → components/footer}/index.tsx +7 -4
- package/src/cms/blocks/{Components/Footer/sections/FooterContact.tsx → components/footer/sections/footer-contact.tsx} +3 -3
- package/src/cms/blocks/{Components/Footer/sections/FooterLinks.tsx → components/footer/sections/footer-links.tsx} +5 -2
- package/src/cms/blocks/{Components/Footer/sections/FooterSocialLinks.tsx → components/footer/sections/footer-social-links.tsx} +1 -1
- package/src/cms/blocks/{Components/Footer.tsx → components/footer.tsx} +1 -1
- package/src/cms/blocks/components/hero-carousel/index.tsx +48 -0
- package/src/cms/blocks/{Components/Hero.tsx → components/hero.tsx} +1 -1
- package/src/cms/blocks/{Components/Image.tsx → components/image.tsx} +1 -1
- package/src/cms/blocks/components/product-carousel/index.tsx +88 -0
- package/src/cms/blocks/{Components/ProductSectionFullWidth → components/product-section-fullwidth}/index.tsx +9 -5
- package/src/cms/blocks/{Components/Seo → components/seo}/index.tsx +1 -1
- package/src/cms/blocks/{Components/Services → components/services}/index.tsx +2 -2
- package/src/cms/blocks/{Components/Services → components/services}/service-card.tsx +1 -1
- package/src/cms/blocks/components/shared/product-grid.tsx +63 -0
- package/src/cms/blocks/{Icons → icons}/index.ts +7 -7
- package/src/cms/blocks/index.tsx +15 -15
- package/src/cms/blog.ts +2 -2
- package/src/cms/endpoints.ts +1 -1
- package/src/cms/interfaces/navigation.ts +9 -9
- package/src/cms/pages.ts +1 -1
- package/src/components/_components/wishlist/add-to-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist/remove-from-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist-modal/add-to-wishlist-dialog.tsx +1 -1
- package/src/components/_components/wishlist-modal/remove-from-wishlist-dialog.tsx +1 -1
- package/src/components-v2/BazaarMenu.tsx +2 -0
- package/src/components-v2/BazaarTextField.tsx +1 -1
- package/src/components-v2/DropZone.tsx +4 -1
- package/src/components-v2/ImageWithFallback.tsx +1 -1
- package/src/components-v2/accordion/index.ts +1 -1
- package/src/components-v2/carousel/carousel.tsx +70 -36
- package/src/components-v2/carousel/components/carousel-arrows.tsx +41 -47
- package/src/components-v2/carousel/components/carousel-dots.tsx +14 -14
- package/src/components-v2/carousel/index.ts +1 -3
- package/src/components-v2/carousel-cards/carousel-card-1/carousel-card-1.tsx +69 -50
- package/src/components-v2/carousel-cards/carousel-card-1/index.ts +1 -1
- package/src/components-v2/categories/category-list/category-list.tsx +88 -43
- package/src/components-v2/categories/category-list/index.ts +1 -1
- package/src/components-v2/categories/category-list/styles.ts +8 -2
- package/src/components-v2/categories/category-list-item/category-menu-item.tsx +1 -1
- package/src/components-v2/categories/category-list-item/index.ts +1 -1
- package/src/components-v2/categories/category-menu.tsx +3 -1
- package/src/components-v2/categories/mega-menu/banner.tsx +68 -37
- package/src/components-v2/categories/mega-menu/column-list.tsx +60 -53
- package/src/components-v2/categories/mega-menu/mega-menu-1.tsx +21 -3
- package/src/components-v2/categories/mega-menu/mega-menu-2.tsx +36 -6
- package/src/components-v2/flex-box/index.ts +3 -3
- package/src/components-v2/header/{components → __tests__}/user.test.tsx +51 -29
- package/src/components-v2/header/components/mobile-header.tsx +121 -48
- package/src/components-v2/header/components/user.tsx +167 -118
- package/src/components-v2/header/header.tsx +69 -46
- package/src/components-v2/header/index.ts +1 -1
- package/src/components-v2/header/sticky-header.tsx +34 -2
- package/src/components-v2/mini-cart/__tests__/cart-item.test.tsx +31 -40
- package/src/components-v2/mini-cart/__tests__/mini-cart.test.tsx +7 -8
- package/src/components-v2/mini-cart/components/bottom-actions.tsx +71 -17
- package/src/components-v2/mini-cart/components/cart-item.tsx +159 -101
- package/src/components-v2/mini-cart/components/empty-view.tsx +59 -19
- package/src/components-v2/mini-cart/components/top-header.tsx +61 -22
- package/src/components-v2/mini-cart/index.ts +1 -1
- package/src/components-v2/mini-cart/mini-cart-trigger.tsx +99 -0
- package/src/components-v2/mini-cart/mini-cart.tsx +115 -47
- package/src/components-v2/mobile-navigation/index.ts +1 -1
- package/src/components-v2/mobile-navigation/mobile-navigation-bar.tsx +98 -48
- package/src/components-v2/nav-link/index.ts +3 -3
- package/src/components-v2/navbar/categories.tsx +71 -17
- package/src/components-v2/navbar/category-based-menu/category-based-menu.tsx +135 -41
- package/src/components-v2/navbar/category-based-menu/index.ts +1 -1
- package/src/components-v2/navbar/index.ts +1 -1
- package/src/components-v2/navbar/mega-menu/index.ts +1 -1
- package/src/components-v2/navbar/mega-menu/mega-menu.tsx +120 -48
- package/src/components-v2/navbar/mobile-menu/index.ts +1 -1
- package/src/components-v2/navbar/mobile-menu/mobile-menu.test.tsx +105 -0
- package/src/components-v2/navbar/mobile-menu/mobile-menu.tsx +127 -56
- package/src/components-v2/navbar/nav-list/cms-nav.test.tsx +16 -10
- package/src/components-v2/navbar/nav-list/index.ts +1 -1
- package/src/components-v2/navbar/nav-list/nav-item-child.tsx +4 -1
- package/src/components-v2/navbar/nav-list/nav-list.tsx +130 -104
- package/src/components-v2/navbar/navbar.tsx +78 -23
- package/src/components-v2/navbar/utils/transform-nav.test.ts +4 -1
- package/src/components-v2/product-cards/{product-card-wishlist → product-card}/components/hover-actions.tsx +1 -1
- package/src/components-v2/product-cards/{product-card-1 → product-card}/components/quantity-buttons.tsx +1 -1
- package/src/components-v2/product-cards/product-card/index.ts +1 -0
- package/src/components-v2/product-cards/product-card/product-card.tsx +414 -0
- package/src/components-v2/product-cards/{product-card-1 → product-card}/styles/index.ts +6 -0
- package/src/components-v2/product-cards/product-card-plp/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-plp/product-card.tsx +161 -0
- package/src/components-v2/product-cards/product-card-plp-list/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-plp-list/product-card.tsx +218 -0
- package/src/components-v2/product-cards/product-card-search/index.ts +1 -0
- package/src/components-v2/product-cards/product-card-search/product-card.tsx +166 -0
- package/src/components-v2/product-dialog/compound/product-dialog.tsx +241 -0
- package/src/components-v2/product-dialog/index.tsx +28 -0
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-error.tsx +4 -4
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-label.tsx +2 -2
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-list-chip.tsx +2 -2
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group-list.tsx +3 -3
- package/src/components-v2/product-dimensions/{components → compound}/dimensions-group.tsx +4 -4
- package/src/components-v2/product-dimensions/{components → compound}/dimensions.tsx +1 -4
- package/src/components-v2/product-dimensions/index.tsx +1 -1
- package/src/components-v2/product-quantity-buttons/compound/quantity-buttons-root.tsx +181 -0
- package/src/components-v2/product-quantity-buttons/index.tsx +22 -0
- package/src/components-v2/product-quantity-variants/index.tsx +90 -0
- package/src/components-v2/products-view/compound/context.ts +25 -0
- package/src/components-v2/products-view/compound/products-grid-view.tsx +109 -0
- package/src/components-v2/products-view/compound/products-list-view.tsx +98 -0
- package/src/components-v2/products-view/compound/types.ts +12 -0
- package/src/components-v2/products-view/index.tsx +45 -0
- package/src/components-v2/products-view/products-grid-view.tsx +24 -11
- package/src/components-v2/products-view/products-list-view.tsx +29 -12
- package/src/components-v2/progress/index.ts +1 -1
- package/src/components-v2/scrollbar/index.ts +1 -1
- package/src/components-v2/scrollbar/scrollbar.tsx +1 -1
- package/src/components-v2/search-bar/compound/context.ts +31 -0
- package/src/components-v2/search-bar/compound/results-item-lg.tsx +46 -0
- package/src/components-v2/search-bar/compound/results-item-sm.tsx +51 -0
- package/src/components-v2/search-bar/compound/results-suspense.tsx +49 -0
- package/src/components-v2/search-bar/compound/results.tsx +45 -0
- package/src/components-v2/search-bar/compound/search-bar-root.tsx +64 -0
- package/src/components-v2/search-bar/compound/textfield-adornment-button.tsx +22 -0
- package/src/components-v2/{search-box/components/category-dropdown.tsx → search-bar/compound/textfield-adornment-category.tsx} +30 -8
- package/src/components-v2/search-bar/compound/textfield-adornment-search-icon.tsx +34 -0
- package/src/components-v2/search-bar/compound/textfield.tsx +58 -0
- package/src/components-v2/search-bar/hooks/use-click-outside.ts +20 -0
- package/src/components-v2/search-bar/hooks/use-search.ts +63 -0
- package/src/components-v2/search-bar/index.tsx +36 -0
- package/src/components-v2/{search-box → search-bar}/styles/index.ts +5 -3
- package/src/components-v2/search-bar/utils/findCategoryNameById.ts +18 -0
- package/src/components-v2/section/compound/section-header.tsx +66 -0
- package/src/components-v2/section/compound/section.tsx +26 -0
- package/src/components-v2/section/index.ts +1 -0
- package/src/components-v2/side-nav/index.ts +1 -1
- package/src/components-v2/side-nav/side-nav.tsx +4 -5
- package/src/components-v2/sticky/index.ts +1 -1
- package/src/components-v2/sticky/{Sticky.tsx → sticky.tsx} +1 -1
- package/src/components-v2/wishlist-dialogs/__tests__/create-new-list.test.tsx +82 -0
- package/src/components-v2/wishlist-dialogs/__tests__/wishlistDetailData.json +280 -0
- package/src/components-v2/wishlist-dialogs/__tests__/wishlistsData.json +38 -0
- package/src/components-v2/{wishlist-modal → wishlist-dialogs/add-to-wishlist}/add-to-wishlist-button.tsx +1 -1
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-bottom-ui.tsx +35 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-dialog.tsx +79 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-list.tsx +44 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/context.ts +29 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/wishlist-dialog-header.tsx +74 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/wishlist-dialog-item.tsx +85 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/hooks/use-add-to-wishlist.ts +152 -0
- package/src/components-v2/wishlist-dialogs/add-to-wishlist/index.tsx +39 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/context.ts +2 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-bottom-ui.tsx +42 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-dialog.tsx +92 -0
- package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-form.tsx +96 -0
- package/src/components-v2/{wishlist/components → wishlist-dialogs/create-wishlist}/create-wishlist-button.tsx +5 -3
- package/src/components-v2/wishlist-dialogs/create-wishlist/index.tsx +22 -0
- package/src/hooks/use-cart.ts +29 -23
- package/src/hooks/use-variants.ts +106 -53
- package/src/lib/build-detail-url.ts +3 -2
- package/src/lib/cart-cookie-handler.ts +1 -1
- package/src/pages/product-details/product-intro/product-intro.tsx +26 -23
- package/src/pages/product-list/quick-view-dialog-content.tsx +18 -9
- package/src/pages-v2/account/account-navigation.tsx +183 -0
- package/src/pages-v2/account/addresses/address-form.tsx +187 -186
- package/src/pages-v2/account/addresses/address-item.tsx +118 -56
- package/src/pages-v2/account/dashboard-header.tsx +103 -76
- package/src/pages-v2/account/orders/order-progress.tsx +104 -65
- package/src/pages-v2/account/orders/order-row.tsx +69 -32
- package/src/pages-v2/account/orders/order-summary.tsx +96 -62
- package/src/pages-v2/account/orders/ordered-products.tsx +128 -87
- package/src/pages-v2/account/profile/profile-button.test.tsx +1 -1
- package/src/pages-v2/account/profile/user-info.tsx +59 -34
- package/src/pages-v2/account/wishlist/create-new-list.tsx +181 -127
- package/src/pages-v2/account/wishlist/create-wishlist-button.tsx +16 -3
- package/src/pages-v2/account/wishlist/wishlist-item.tsx +93 -42
- package/src/pages-v2/cart/__tests__/cart-item.test.tsx +225 -0
- package/src/pages-v2/cart/__tests__/cart-with-items.json +811 -0
- package/src/pages-v2/cart/__tests__/checkout-form.test.tsx +148 -0
- package/src/pages-v2/cart/__tests__/conutries.json +19407 -0
- package/src/pages-v2/cart/__tests__/estimate-shipping.test.tsx +86 -0
- package/src/pages-v2/cart/cart-item.tsx +387 -258
- package/src/pages-v2/cart/checkout-form.tsx +141 -48
- package/src/pages-v2/cart/coupon-entry.tsx +121 -58
- package/src/pages-v2/cart/estimate-shipping.tsx +174 -118
- package/src/pages-v2/checkout/checkout-alt-form/checkout-form.tsx +153 -76
- package/src/pages-v2/checkout/checkout-alt-form/checkout-step.tsx +128 -77
- package/src/pages-v2/checkout/checkout-alt-form/index.ts +1 -1
- package/src/pages-v2/checkout/checkout-alt-form/{heading.tsx → step-heading.tsx} +1 -1
- package/src/pages-v2/checkout/checkout-alt-form/steps/address/address-card.tsx +131 -0
- package/src/pages-v2/checkout/checkout-alt-form/steps/address/delivery-address.tsx +450 -0
- package/src/pages-v2/checkout/checkout-alt-form/steps/address/new-address-form.tsx +322 -0
- package/src/pages-v2/checkout/checkout-alt-form/steps/address/styles.ts +27 -0
- package/src/pages-v2/checkout/checkout-alt-form/steps/customer-info/customer-information.tsx +139 -0
- package/src/pages-v2/checkout/checkout-alt-form/{payment-details.tsx → steps/payment/payment-details.tsx} +123 -141
- package/src/pages-v2/checkout/checkout-alt-form/{delivery-date.tsx → steps/shipping/delivery-date.tsx} +3 -3
- package/src/pages-v2/checkout/checkout-alt-form/{delivery-options.tsx → steps/shipping/delivery-options.tsx} +97 -50
- package/src/pages-v2/checkout/checkout-alt-summary/cart-item.tsx +58 -28
- package/src/pages-v2/checkout/checkout-alt-summary/checkout-alt-summary.tsx +69 -22
- package/src/pages-v2/checkout/checkout-alt-summary/index.ts +1 -1
- package/src/pages-v2/checkout/checkout-alt-summary/list-item.tsx +56 -14
- package/src/pages-v2/confirmation/address.tsx +37 -15
- package/src/pages-v2/confirmation/confirmation-summary.tsx +80 -41
- package/src/pages-v2/confirmation/ordered-products.tsx +127 -95
- package/src/pages-v2/product-details/bopis/find-in-store-button.tsx +11 -10
- package/src/pages-v2/product-details/bopis/find-in-store-modal.tsx +5 -5
- package/src/pages-v2/product-details/bopis/pickup-option-select.tsx +1 -1
- package/src/pages-v2/product-details/bopis/store-card/index.ts +1 -0
- package/src/{components-v2/shop-card → pages-v2/product-details/bopis/store-card}/shop-card.tsx +18 -49
- package/src/pages-v2/product-details/bopis/store-card/utils/convertSecondsToTime.ts +8 -0
- package/src/pages-v2/product-details/bopis/store-card/utils/getDaysResources.ts +25 -0
- package/src/pages-v2/product-details/frequently-bought.tsx +1 -1
- package/src/pages-v2/product-details/product-filter-card.tsx +2 -2
- package/src/pages-v2/product-details/product-intro/compound/context.ts +49 -0
- package/src/pages-v2/product-details/product-intro/compound/product-info.tsx +234 -0
- package/src/pages-v2/product-details/product-intro/compound/product-intro-images.tsx +127 -0
- package/src/pages-v2/product-details/product-intro/compound/product-intro.tsx +49 -0
- package/src/pages-v2/product-details/product-intro/compound/thumbnail-with-skeleton.tsx +28 -0
- package/src/pages-v2/product-details/product-intro/utils.ts +41 -0
- package/src/pages-v2/product-details/product-review.tsx +5 -2
- package/src/pages-v2/product-details/product-tabs.tsx +88 -22
- package/src/pages-v2/product-details/related-products.tsx +26 -12
- package/src/pages-v2/product-list/quick-view-dialog-content.tsx +17 -10
- package/src/pages-v2/quickorder/context.ts +39 -0
- package/src/pages-v2/quickorder/index.tsx +31 -0
- package/src/pages-v2/quickorder/order-upload.tsx +19 -26
- package/src/pages-v2/quickorder/provider.tsx +187 -0
- package/src/pages-v2/quickorder/quick-order-actions.tsx +30 -0
- package/src/pages-v2/quickorder/quick-order-header.tsx +22 -0
- package/src/pages-v2/quickorder/quick-order-row.tsx +8 -17
- package/src/pages-v2/quickorder/quick-order-table.tsx +63 -0
- package/src/pages-v2/quickorder/quick-order-upload.tsx +20 -0
- package/src/providers/nav-provider/index.tsx +1 -1
- package/src/providers/notifications/notification-context.tsx +1 -1
- package/src/providers/notifications/use-notification.ts +1 -1
- package/tsconfig.json +2 -1
- package/typedoc.js +3 -1
- package/src/api-manager/lib/get-graphql-client.test.ts +0 -106
- package/src/cms/blocks/Components/HeroCarousel/index.tsx +0 -42
- package/src/cms/blocks/Components/ProductCarousel/index.tsx +0 -82
- package/src/cms/blocks/Components/shared/product-grid.tsx +0 -48
- package/src/components/_components/header/components/user.test.tsx +0 -200
- package/src/components/_components/mini-cart/__tests__/cart-item.test.tsx +0 -174
- package/src/components/_components/mini-cart/__tests__/mini-cart.test.tsx +0 -121
- package/src/components/_components/mini-cart/__tests__/test-cart-empty.json +0 -84
- package/src/components/_components/mini-cart/__tests__/test-cart-with-item.json +0 -244
- package/src/components/_components/navbar/mobile-menu/render-levels.test.tsx +0 -71
- package/src/components/_components/navbar/nav-list/cms-nav.test.tsx +0 -84
- package/src/components/_components/navbar/utils/transform-nav.test.ts +0 -209
- package/src/components/_components/search-box/__test__/search-input-category.test.tsx +0 -110
- package/src/components/_components/search-box/__test__/search-input.test.tsx +0 -137
- package/src/components/_components/search-box/__test__/search-results.json +0 -165
- package/src/components/_components/search-box/search-input-category.test.tsx +0 -110
- package/src/components/_components/search-box/search-input.test.tsx +0 -41
- package/src/components-v2/MiniCartClient.tsx +0 -65
- package/src/components-v2/bazaar-types.ts +0 -84
- package/src/components-v2/carousel-cards/carousel-card-2/carousel-card-2.tsx +0 -78
- package/src/components-v2/carousel-cards/carousel-card-2/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-2/styles.ts +0 -26
- package/src/components-v2/carousel-cards/carousel-card-3/carousel-card-3.tsx +0 -37
- package/src/components-v2/carousel-cards/carousel-card-3/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-3/styles.ts +0 -28
- package/src/components-v2/carousel-cards/carousel-card-4/carousel-card-4.tsx +0 -81
- package/src/components-v2/carousel-cards/carousel-card-4/index.ts +0 -1
- package/src/components-v2/carousel-cards/carousel-card-4/styles.ts +0 -27
- package/src/components-v2/category-cards/category-card-1/category-card-1.tsx +0 -21
- package/src/components-v2/category-cards/category-card-1/index.ts +0 -1
- package/src/components-v2/category-cards/category-card-1/styles.ts +0 -37
- package/src/components-v2/countdown/count-box.tsx +0 -19
- package/src/components-v2/countdown/count-down.tsx +0 -24
- package/src/components-v2/countdown/index.tsx +0 -2
- package/src/components-v2/countdown/useCountDown.ts +0 -41
- package/src/components-v2/data-table/index.ts +0 -2
- package/src/components-v2/data-table/table-header.tsx +0 -91
- package/src/components-v2/data-table/table-pagination.tsx +0 -36
- package/src/components-v2/footer/components/about-links.tsx +0 -23
- package/src/components-v2/footer/components/app-store.tsx +0 -38
- package/src/components-v2/footer/components/customer-care-links.tsx +0 -21
- package/src/components-v2/footer/components/logo.tsx +0 -23
- package/src/components-v2/footer/components/social-links.tsx +0 -43
- package/src/components-v2/footer/data/index.ts +0 -54
- package/src/components-v2/footer/footer-1.tsx +0 -62
- package/src/components-v2/footer/footer-2.tsx +0 -57
- package/src/components-v2/footer/footer-3.tsx +0 -53
- package/src/components-v2/footer/footer-4.tsx +0 -71
- package/src/components-v2/footer/index.ts +0 -4
- package/src/components-v2/footer/styles/index.ts +0 -42
- package/src/components-v2/navbar/category-based-menu/components/categories.tsx +0 -44
- package/src/components-v2/navbar/category-based-menu/components/category-item.tsx +0 -31
- package/src/components-v2/navbar/category-based-menu/components/child-categories.tsx +0 -38
- package/src/components-v2/navbar/mega-menu/category-list.tsx +0 -29
- package/src/components-v2/navbar/mobile-menu/render-levels.test.tsx +0 -71
- package/src/components-v2/navbar/mobile-menu/render-levels.tsx +0 -62
- package/src/components-v2/newsletter/index.ts +0 -1
- package/src/components-v2/newsletter/newsletter.tsx +0 -112
- package/src/components-v2/newsletter/social-icons.tsx +0 -35
- package/src/components-v2/newsletter/styles.ts +0 -65
- package/src/components-v2/page-sidenav/grocery-side-nav/components/link-item.tsx +0 -21
- package/src/components-v2/page-sidenav/grocery-side-nav/components/list-item.tsx +0 -27
- package/src/components-v2/page-sidenav/grocery-side-nav/components/nav-accordion.tsx +0 -36
- package/src/components-v2/page-sidenav/grocery-side-nav/components/render-child.tsx +0 -26
- package/src/components-v2/page-sidenav/grocery-side-nav/grocery-side-nav.tsx +0 -32
- package/src/components-v2/page-sidenav/grocery-side-nav/index.ts +0 -1
- package/src/components-v2/page-sidenav/grocery-side-nav/styles/index.ts +0 -11
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/list-item.tsx +0 -27
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/nav-accordion.tsx +0 -44
- package/src/components-v2/page-sidenav/health-beauty-side-nav/components/render-child.tsx +0 -20
- package/src/components-v2/page-sidenav/health-beauty-side-nav/health-beauty-side-nav.tsx +0 -43
- package/src/components-v2/page-sidenav/health-beauty-side-nav/index.ts +0 -1
- package/src/components-v2/page-sidenav/health-beauty-side-nav/styles/index.ts +0 -27
- package/src/components-v2/page-sidenav/side-navbar/components/list-item.tsx +0 -25
- package/src/components-v2/page-sidenav/side-navbar/components/nav-accordion.tsx +0 -46
- package/src/components-v2/page-sidenav/side-navbar/components/render-child.tsx +0 -20
- package/src/components-v2/page-sidenav/side-navbar/index.ts +0 -1
- package/src/components-v2/page-sidenav/side-navbar/side-nav-bar.tsx +0 -77
- package/src/components-v2/page-sidenav/side-navbar/styles/index.ts +0 -73
- package/src/components-v2/page-sidenav/side-navbar-2/components/button-content.tsx +0 -32
- package/src/components-v2/page-sidenav/side-navbar-2/components/sidebar-accordion.tsx +0 -66
- package/src/components-v2/page-sidenav/side-navbar-2/index.ts +0 -1
- package/src/components-v2/page-sidenav/side-navbar-2/side-navbar-2.tsx +0 -63
- package/src/components-v2/page-sidenav/side-navbar-2/styles/index.ts +0 -68
- package/src/components-v2/product-cards/product-card-1/components/hover-actions.tsx +0 -37
- package/src/components-v2/product-cards/product-card-1/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-1/product-card-1-wrapper.tsx +0 -304
- package/src/components-v2/product-cards/product-card-1/product-card.tsx +0 -107
- package/src/components-v2/product-cards/product-card-10/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-10/product-card.tsx +0 -128
- package/src/components-v2/product-cards/product-card-10/styles/index.ts +0 -38
- package/src/components-v2/product-cards/product-card-11/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-11/product-card.tsx +0 -66
- package/src/components-v2/product-cards/product-card-11/styles/index.ts +0 -16
- package/src/components-v2/product-cards/product-card-12/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-12/product-card.tsx +0 -42
- package/src/components-v2/product-cards/product-card-12/styles/index.ts +0 -16
- package/src/components-v2/product-cards/product-card-13/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-13/product-card.tsx +0 -48
- package/src/components-v2/product-cards/product-card-13/styles/index.ts +0 -25
- package/src/components-v2/product-cards/product-card-14/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-14/product-card.tsx +0 -125
- package/src/components-v2/product-cards/product-card-14/styles/index.ts +0 -40
- package/src/components-v2/product-cards/product-card-15/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-15/product-card.tsx +0 -121
- package/src/components-v2/product-cards/product-card-15/styles/index.ts +0 -57
- package/src/components-v2/product-cards/product-card-16/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-16/product-card.tsx +0 -116
- package/src/components-v2/product-cards/product-card-2/components/favorite-button.tsx +0 -29
- package/src/components-v2/product-cards/product-card-2/components/product-price.tsx +0 -26
- package/src/components-v2/product-cards/product-card-2/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-2/product-card.tsx +0 -70
- package/src/components-v2/product-cards/product-card-3/components/hover-actions.tsx +0 -83
- package/src/components-v2/product-cards/product-card-3/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-3/product-card.tsx +0 -110
- package/src/components-v2/product-cards/product-card-3/styles/index.ts +0 -89
- package/src/components-v2/product-cards/product-card-4/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-4/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-4/product-card.tsx +0 -128
- package/src/components-v2/product-cards/product-card-4/styles/index.ts +0 -66
- package/src/components-v2/product-cards/product-card-5/components/button-actions.tsx +0 -49
- package/src/components-v2/product-cards/product-card-5/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-5/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-5/product-card.tsx +0 -137
- package/src/components-v2/product-cards/product-card-5/styles/index.ts +0 -94
- package/src/components-v2/product-cards/product-card-6/components/hover-actions.tsx +0 -50
- package/src/components-v2/product-cards/product-card-6/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-6/product-card.tsx +0 -121
- package/src/components-v2/product-cards/product-card-6/styles/index.ts +0 -63
- package/src/components-v2/product-cards/product-card-7/components/product-status.tsx +0 -18
- package/src/components-v2/product-cards/product-card-7/components/quantity-buttons.tsx +0 -47
- package/src/components-v2/product-cards/product-card-7/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-7/product-card.tsx +0 -139
- package/src/components-v2/product-cards/product-card-7/styles/index.ts +0 -98
- package/src/components-v2/product-cards/product-card-8/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-8/product-card.tsx +0 -151
- package/src/components-v2/product-cards/product-card-9/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-9/product-card.tsx +0 -169
- package/src/components-v2/product-cards/product-card-wishlist/index.ts +0 -1
- package/src/components-v2/product-cards/product-card-wishlist/product-card.tsx +0 -118
- package/src/components-v2/product-cards/product-card-wishlist/styles/index.ts +0 -53
- package/src/components-v2/product-quantity-buttons/product-quantity-buttons.tsx +0 -88
- package/src/components-v2/products-view/product-view-dialog.tsx +0 -218
- package/src/components-v2/search-box/__test__/search-input-category.test.tsx +0 -110
- package/src/components-v2/search-box/__test__/search-input.test.tsx +0 -137
- package/src/components-v2/search-box/__test__/search-results.json +0 -165
- package/src/components-v2/search-box/components/search-result.tsx +0 -86
- package/src/components-v2/search-box/hooks/use-search.ts +0 -63
- package/src/components-v2/search-box/index.ts +0 -2
- package/src/components-v2/search-box/search-input-category.test.tsx +0 -110
- package/src/components-v2/search-box/search-input-category.tsx +0 -203
- package/src/components-v2/search-box/search-input.test.tsx +0 -41
- package/src/components-v2/search-box/search-input.tsx +0 -66
- package/src/components-v2/section-header/index.ts +0 -2
- package/src/components-v2/section-header/section-creator.tsx +0 -29
- package/src/components-v2/section-header/section-header.tsx +0 -44
- package/src/components-v2/service-cards/icon-component.tsx +0 -18
- package/src/components-v2/service-cards/service-card-1/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-1/service-card-1.tsx +0 -42
- package/src/components-v2/service-cards/service-card-2/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-2/service-card-2.tsx +0 -37
- package/src/components-v2/service-cards/service-card-3/index.ts +0 -1
- package/src/components-v2/service-cards/service-card-3/service-card-3.tsx +0 -28
- package/src/components-v2/service-cards/service-card-3/styles.ts +0 -23
- package/src/components-v2/settings/index.ts +0 -1
- package/src/components-v2/settings/setting.tsx +0 -141
- package/src/components-v2/settings/styles.ts +0 -57
- package/src/components-v2/shop-card/index.ts +0 -1
- package/src/components-v2/sticky-wrapper/index.ts +0 -1
- package/src/components-v2/sticky-wrapper/sticky-wrapper.tsx +0 -21
- package/src/components-v2/sticky-wrapper/styles.ts +0 -25
- package/src/components-v2/stories/story-content/index.ts +0 -1
- package/src/components-v2/stories/story-content/story-content.tsx +0 -28
- package/src/components-v2/stories/story-content/styles.ts +0 -22
- package/src/components-v2/stories/story-item/index.ts +0 -1
- package/src/components-v2/stories/story-item/story-item.tsx +0 -24
- package/src/components-v2/stories/story-item/styles.ts +0 -11
- package/src/components-v2/stories/story-viewer/index.ts +0 -1
- package/src/components-v2/stories/story-viewer/story-viewer.tsx +0 -44
- package/src/components-v2/stories/story-viewer/styles.ts +0 -15
- package/src/components-v2/subscribe-input/index.ts +0 -1
- package/src/components-v2/subscribe-input/styles.ts +0 -14
- package/src/components-v2/subscribe-input/subscribe-input.tsx +0 -43
- package/src/components-v2/topbar/index.ts +0 -1
- package/src/components-v2/topbar/styles.ts +0 -55
- package/src/components-v2/topbar/top-bar.tsx +0 -115
- package/src/components-v2/wishlist/add-to-wishlist-dialog.tsx +0 -161
- package/src/components-v2/wishlist/components/create-new-list.tsx +0 -167
- package/src/components-v2/wishlist/components/dashboard-header.tsx +0 -123
- package/src/components-v2/wishlist/components/navigation.tsx +0 -87
- package/src/components-v2/wishlist/components/wishlist-modal-item.tsx +0 -66
- package/src/components-v2/wishlist/remove-from-wishlist-dialog.tsx +0 -175
- package/src/components-v2/wishlist-modal/TODO.md +0 -10
- package/src/components-v2/wishlist-modal/add-to-wishlist-dialog.tsx +0 -161
- package/src/components-v2/wishlist-modal/remove-from-wishlist-dialog.tsx +0 -174
- package/src/components-v2/wishlist-modal/wishlist-modal-item.tsx +0 -65
- package/src/pages-v2/account/navigation.tsx +0 -87
- package/src/pages-v2/account/no-records.tsx +0 -20
- package/src/pages-v2/checkout/checkout-alt-form/address-card.tsx +0 -76
- package/src/pages-v2/checkout/checkout-alt-form/customer-information.tsx +0 -94
- package/src/pages-v2/checkout/checkout-alt-form/delivery-address.tsx +0 -174
- package/src/pages-v2/checkout/checkout-alt-form/edit-address-form.tsx +0 -130
- package/src/pages-v2/checkout/checkout-alt-form/new-address-form.tsx +0 -299
- package/src/pages-v2/product-details/product-intro/product-intro-images.tsx +0 -90
- package/src/pages-v2/product-details/product-intro/product-intro.tsx +0 -256
- package/src/pages-v2/quickorder/quick-order-form.tsx +0 -346
- /package/src/cms/blocks/{Components/CategoryCard.tsx → components/category-card.tsx} +0 -0
- /package/src/cms/blocks/{Components/Footer → components/footer}/data/index.ts +0 -0
- /package/src/cms/blocks/{Components/Footer → components/footer}/interfaces.ts +0 -0
- /package/src/cms/blocks/{Components/Footer/sections/FooterAppStore.tsx → components/footer/sections/footer-app-store.tsx} +0 -0
- /package/src/cms/blocks/{Components/Footer/sections/FooterLogo.tsx → components/footer/sections/footer-logo.tsx} +0 -0
- /package/src/cms/blocks/{Components/Footer → components/footer}/styles/index.ts +0 -0
- /package/src/cms/blocks/{Components/MediaCard.tsx → components/media-card.tsx} +0 -0
- /package/src/cms/blocks/{Components/RichText.tsx → components/rich-text.tsx} +0 -0
- /package/src/cms/blocks/{Components → components}/shared/featured-product-card.tsx +0 -0
- /package/src/cms/blocks/{Components → components}/shared/product-category-item.tsx +0 -0
- /package/src/cms/blocks/{Components → components}/shared/top-categories-card.tsx +0 -0
- /package/src/cms/blocks/{Components → components}/shared/top-rating-product-card.tsx +0 -0
- /package/src/cms/blocks/{Icons/Components/Category.tsx → icons/components/category.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/DottedStar.tsx → icons/components/dotted-star.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/FallbackIcon.tsx → icons/components/fallback-icon.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/GiftBox.tsx → icons/components/gift-box.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/Light.tsx → icons/components/light.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/NewArrival.tsx → icons/components/new-arrival.tsx} +0 -0
- /package/src/cms/blocks/{Icons/Components/RankBadge.tsx → icons/components/rank-badge.tsx} +0 -0
- /package/src/cms/interfaces/{productData.ts → product-data.ts} +0 -0
- /package/src/components-v2/{wishlist/components/no-records.tsx → no-records.tsx} +0 -0
- /package/src/components-v2/product-cards/{product-card-16 → product-card-plp}/components/quantity-buttons.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-16 → product-card-plp}/styles/index.ts +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/add-to-cart.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/favorite-button.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-9 → product-card-plp-list}/components/tags.tsx +0 -0
- /package/src/components-v2/product-cards/{product-card-8 → product-card-search}/styles/index.ts +0 -0
- /package/src/components-v2/{wishlist → wishlist-dialogs}/styles.ts +0 -0
- /package/src/pages-v2/checkout/checkout-alt-form/{safe-card-preview-data.tsx → steps/payment/safe-card-preview-data.tsx} +0 -0
- /package/src/{components-v2/shop-card → pages-v2/product-details/bopis/store-card}/styles.ts +0 -0
|
@@ -1262,6 +1262,25 @@ export type CompleteCartMutationResponse = MutationResponse & {
|
|
|
1262
1262
|
success: Scalars['Boolean']['output'];
|
|
1263
1263
|
};
|
|
1264
1264
|
|
|
1265
|
+
export type ConfigExport = {
|
|
1266
|
+
__typename?: 'ConfigExport';
|
|
1267
|
+
DepotGroups?: Maybe<Array<Maybe<DepotGroupExport>>>;
|
|
1268
|
+
Depots?: Maybe<Array<Maybe<DepotExport>>>;
|
|
1269
|
+
Endpoints?: Maybe<Array<Maybe<EndpointExport>>>;
|
|
1270
|
+
Entities?: Maybe<Array<Maybe<EntityExport>>>;
|
|
1271
|
+
Processes?: Maybe<Array<Maybe<ProcessExport>>>;
|
|
1272
|
+
};
|
|
1273
|
+
|
|
1274
|
+
export type ConfigImport = {
|
|
1275
|
+
CreateIntegrationProc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1276
|
+
DepotGroups?: InputMaybe<Array<InputMaybe<DepotGroupImport>>>;
|
|
1277
|
+
Depots?: InputMaybe<Array<InputMaybe<DepotImport>>>;
|
|
1278
|
+
Endpoints?: InputMaybe<Array<InputMaybe<EndpointImport>>>;
|
|
1279
|
+
Entities?: InputMaybe<Array<InputMaybe<EntityImport>>>;
|
|
1280
|
+
Processes?: InputMaybe<Array<InputMaybe<ProcessImport>>>;
|
|
1281
|
+
RecreateStagingTable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1282
|
+
};
|
|
1283
|
+
|
|
1265
1284
|
export type Contact = {
|
|
1266
1285
|
__typename?: 'Contact';
|
|
1267
1286
|
account: Account;
|
|
@@ -1379,6 +1398,12 @@ export type ContactsConnection = {
|
|
|
1379
1398
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
1380
1399
|
};
|
|
1381
1400
|
|
|
1401
|
+
export type CopiedProcess = {
|
|
1402
|
+
__typename?: 'CopiedProcess';
|
|
1403
|
+
process?: Maybe<Process>;
|
|
1404
|
+
processTasks?: Maybe<Array<Maybe<ProcessTask>>>;
|
|
1405
|
+
};
|
|
1406
|
+
|
|
1382
1407
|
export type Country = {
|
|
1383
1408
|
__typename?: 'Country';
|
|
1384
1409
|
created?: Maybe<Scalars['String']['output']>;
|
|
@@ -1519,6 +1544,17 @@ export type CustomersSettings = {
|
|
|
1519
1544
|
resultsPerPage?: Maybe<Scalars['String']['output']>;
|
|
1520
1545
|
};
|
|
1521
1546
|
|
|
1547
|
+
export type DateRange = {
|
|
1548
|
+
__typename?: 'DateRange';
|
|
1549
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1550
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1551
|
+
};
|
|
1552
|
+
|
|
1553
|
+
export type DateRangeInput = {
|
|
1554
|
+
endDate: Scalars['DateTime']['input'];
|
|
1555
|
+
startDate: Scalars['DateTime']['input'];
|
|
1556
|
+
};
|
|
1557
|
+
|
|
1522
1558
|
/**
|
|
1523
1559
|
* Allows removal of the assets. This is a generic method that
|
|
1524
1560
|
* removes entity by provided type.
|
|
@@ -1537,12 +1573,11 @@ export type DeleteCartLineInput = {
|
|
|
1537
1573
|
|
|
1538
1574
|
/** Removes document from the search index */
|
|
1539
1575
|
export type DeleteDocumentInput = {
|
|
1576
|
+
/** Alias name of the active index that should be updated. Defaults to 'products' */
|
|
1577
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
1540
1578
|
/** Id of the document in the index to remove */
|
|
1541
1579
|
id: Scalars['ID']['input'];
|
|
1542
|
-
/**
|
|
1543
|
-
* Index name from which the item should be removed.
|
|
1544
|
-
* Default: products
|
|
1545
|
-
*/
|
|
1580
|
+
/** Index name that should be updated. Used when alias is not provided */
|
|
1546
1581
|
index?: InputMaybe<Scalars['String']['input']>;
|
|
1547
1582
|
};
|
|
1548
1583
|
|
|
@@ -1601,6 +1636,100 @@ export type DeleteWishlistInput = {
|
|
|
1601
1636
|
wishlistId: Scalars['ID']['input'];
|
|
1602
1637
|
};
|
|
1603
1638
|
|
|
1639
|
+
export type DeletedRecord = {
|
|
1640
|
+
__typename?: 'DeletedRecord';
|
|
1641
|
+
id: Scalars['ID']['output'];
|
|
1642
|
+
};
|
|
1643
|
+
|
|
1644
|
+
export type Depot = {
|
|
1645
|
+
__typename?: 'Depot';
|
|
1646
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1647
|
+
created: Scalars['DateTime']['output'];
|
|
1648
|
+
depotGroup?: Maybe<DepotGroup>;
|
|
1649
|
+
endpointType?: Maybe<EndpointType>;
|
|
1650
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1651
|
+
id: Scalars['ID']['output'];
|
|
1652
|
+
modified: Scalars['DateTime']['output'];
|
|
1653
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1654
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
1655
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
1656
|
+
};
|
|
1657
|
+
|
|
1658
|
+
export type DepotCreate = {
|
|
1659
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1660
|
+
depotGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
1661
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
1662
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1663
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1664
|
+
};
|
|
1665
|
+
|
|
1666
|
+
export type DepotExport = {
|
|
1667
|
+
__typename?: 'DepotExport';
|
|
1668
|
+
Depot: Scalars['String']['output'];
|
|
1669
|
+
DepotGroup: Scalars['String']['output'];
|
|
1670
|
+
DepotId?: Maybe<Scalars['ID']['output']>;
|
|
1671
|
+
};
|
|
1672
|
+
|
|
1673
|
+
export type DepotGroup = {
|
|
1674
|
+
__typename?: 'DepotGroup';
|
|
1675
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
1676
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1677
|
+
created: Scalars['DateTime']['output'];
|
|
1678
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1679
|
+
id: Scalars['ID']['output'];
|
|
1680
|
+
modified: Scalars['DateTime']['output'];
|
|
1681
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1682
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
1683
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
1684
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
1685
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
export type DepotGroupCreate = {
|
|
1689
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1690
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
1691
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1692
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1693
|
+
/** Specify new group's parent. If null, new group is root. */
|
|
1694
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
1695
|
+
};
|
|
1696
|
+
|
|
1697
|
+
export type DepotGroupExport = {
|
|
1698
|
+
__typename?: 'DepotGroupExport';
|
|
1699
|
+
DepotGroup: Scalars['String']['output'];
|
|
1700
|
+
DepotGroupId?: Maybe<Scalars['ID']['output']>;
|
|
1701
|
+
};
|
|
1702
|
+
|
|
1703
|
+
export type DepotGroupImport = {
|
|
1704
|
+
DepotGroup: Scalars['String']['input'];
|
|
1705
|
+
DepotGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
1706
|
+
};
|
|
1707
|
+
|
|
1708
|
+
export type DepotGroupUpdate = {
|
|
1709
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1710
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
1711
|
+
id: Scalars['ID']['input'];
|
|
1712
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1713
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1714
|
+
};
|
|
1715
|
+
|
|
1716
|
+
export type DepotImport = {
|
|
1717
|
+
Depot: Scalars['String']['input'];
|
|
1718
|
+
DepotGroup: Scalars['String']['input'];
|
|
1719
|
+
DepotId?: InputMaybe<Scalars['ID']['input']>;
|
|
1720
|
+
};
|
|
1721
|
+
|
|
1722
|
+
export type DepotUpdate = {
|
|
1723
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1724
|
+
depotGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
1725
|
+
endpointTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
1726
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
1727
|
+
id: Scalars['ID']['input'];
|
|
1728
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1729
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1730
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
1731
|
+
};
|
|
1732
|
+
|
|
1604
1733
|
export type DetailSavedCartEdge = {
|
|
1605
1734
|
__typename?: 'DetailSavedCartEdge';
|
|
1606
1735
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -1666,166 +1795,661 @@ export type Dimensions = {
|
|
|
1666
1795
|
Label?: Maybe<Scalars['String']['output']>;
|
|
1667
1796
|
};
|
|
1668
1797
|
|
|
1669
|
-
export type
|
|
1670
|
-
__typename?: '
|
|
1671
|
-
|
|
1798
|
+
export type Document = {
|
|
1799
|
+
__typename?: 'Document';
|
|
1800
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1672
1801
|
created: Scalars['DateTime']['output'];
|
|
1673
|
-
|
|
1802
|
+
documentGroup?: Maybe<DocumentGroup>;
|
|
1803
|
+
documentType: DocumentType;
|
|
1804
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1674
1805
|
id: Scalars['ID']['output'];
|
|
1675
|
-
|
|
1676
|
-
modified
|
|
1677
|
-
|
|
1678
|
-
};
|
|
1679
|
-
|
|
1680
|
-
export type EntityAttribute = {
|
|
1681
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
1806
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
1807
|
+
modified: Scalars['DateTime']['output'];
|
|
1808
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1682
1809
|
};
|
|
1683
1810
|
|
|
1684
|
-
export type
|
|
1685
|
-
__typename?: '
|
|
1811
|
+
export type DocumentField = {
|
|
1812
|
+
__typename?: 'DocumentField';
|
|
1686
1813
|
code?: Maybe<Scalars['String']['output']>;
|
|
1687
|
-
|
|
1814
|
+
created: Scalars['DateTime']['output'];
|
|
1815
|
+
decimalPlaces?: Maybe<Scalars['Int']['output']>;
|
|
1816
|
+
document: Document;
|
|
1817
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1818
|
+
fieldType: FieldType;
|
|
1688
1819
|
id: Scalars['ID']['output'];
|
|
1820
|
+
isOptional?: Maybe<Scalars['Int']['output']>;
|
|
1821
|
+
length?: Maybe<Scalars['Int']['output']>;
|
|
1822
|
+
modified: Scalars['DateTime']['output'];
|
|
1823
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1689
1824
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
1825
|
+
validationFailureAction?: Maybe<ValidationFailureAction>;
|
|
1690
1826
|
};
|
|
1691
1827
|
|
|
1692
|
-
export type
|
|
1828
|
+
export type DocumentFieldCreate = {
|
|
1693
1829
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
1694
|
-
|
|
1695
|
-
|
|
1830
|
+
decimalPlaces?: InputMaybe<Scalars['Int']['input']>;
|
|
1831
|
+
documentId: Scalars['ID']['input'];
|
|
1832
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
1833
|
+
fieldTypeId: Scalars['ID']['input'];
|
|
1834
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
1835
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1836
|
+
isOptional?: InputMaybe<Scalars['Int']['input']>;
|
|
1837
|
+
length?: InputMaybe<Scalars['Int']['input']>;
|
|
1838
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1696
1839
|
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1840
|
+
validationFailureActionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1697
1841
|
};
|
|
1698
1842
|
|
|
1699
|
-
export type
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1843
|
+
export type DocumentFieldUpdate = {
|
|
1844
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1845
|
+
decimalPlaces?: InputMaybe<Scalars['Int']['input']>;
|
|
1846
|
+
documentId?: InputMaybe<Scalars['ID']['input']>;
|
|
1847
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
1848
|
+
fieldTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
1849
|
+
id: Scalars['ID']['input'];
|
|
1850
|
+
isOptional?: InputMaybe<Scalars['Int']['input']>;
|
|
1851
|
+
length?: InputMaybe<Scalars['Int']['input']>;
|
|
1852
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1853
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1854
|
+
validationFailureActionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1705
1855
|
};
|
|
1706
1856
|
|
|
1707
|
-
export type
|
|
1708
|
-
|
|
1857
|
+
export type DocumentGroup = {
|
|
1858
|
+
__typename?: 'DocumentGroup';
|
|
1859
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
1860
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1861
|
+
created: Scalars['DateTime']['output'];
|
|
1862
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1863
|
+
id: Scalars['ID']['output'];
|
|
1864
|
+
modified: Scalars['DateTime']['output'];
|
|
1865
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1866
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
1867
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
1868
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
1869
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
1709
1870
|
};
|
|
1710
1871
|
|
|
1711
|
-
export type
|
|
1712
|
-
__typename?: '
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1872
|
+
export type DocumentType = {
|
|
1873
|
+
__typename?: 'DocumentType';
|
|
1874
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1875
|
+
created: Scalars['DateTime']['output'];
|
|
1876
|
+
id: Scalars['ID']['output'];
|
|
1877
|
+
metadataSchema?: Maybe<Scalars['String']['output']>;
|
|
1878
|
+
modified: Scalars['DateTime']['output'];
|
|
1879
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1880
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
1881
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
1718
1882
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
1883
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
1719
1884
|
};
|
|
1720
1885
|
|
|
1721
|
-
export type
|
|
1722
|
-
|
|
1723
|
-
|
|
1886
|
+
export type Email = Node & {
|
|
1887
|
+
__typename?: 'Email';
|
|
1888
|
+
contact: Contact;
|
|
1889
|
+
created: Scalars['DateTime']['output'];
|
|
1890
|
+
email: Scalars['String']['output'];
|
|
1891
|
+
id: Scalars['ID']['output'];
|
|
1892
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
1893
|
+
modified?: Maybe<Scalars['DateTime']['output']>;
|
|
1894
|
+
modifiedBy?: Maybe<Contact>;
|
|
1724
1895
|
};
|
|
1725
1896
|
|
|
1726
|
-
export type
|
|
1727
|
-
__typename?: '
|
|
1728
|
-
|
|
1897
|
+
export type Endpoint = {
|
|
1898
|
+
__typename?: 'Endpoint';
|
|
1899
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1900
|
+
collectionPropertyName?: Maybe<Scalars['String']['output']>;
|
|
1729
1901
|
created: Scalars['DateTime']['output'];
|
|
1730
|
-
|
|
1731
|
-
|
|
1902
|
+
defaultProcessTaskType?: Maybe<ProcessTaskType>;
|
|
1903
|
+
depot?: Maybe<Depot>;
|
|
1904
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1905
|
+
document?: Maybe<Document>;
|
|
1906
|
+
endpointStatus?: Maybe<EndpointStatus>;
|
|
1907
|
+
endpointType?: Maybe<EndpointType>;
|
|
1908
|
+
entity?: Maybe<Entity>;
|
|
1732
1909
|
id: Scalars['ID']['output'];
|
|
1733
|
-
|
|
1734
|
-
|
|
1910
|
+
isPublish?: Maybe<Scalars['Int']['output']>;
|
|
1911
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
1735
1912
|
modified: Scalars['DateTime']['output'];
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
tier: Scalars['Int']['output'];
|
|
1740
|
-
type: Scalars['String']['output'];
|
|
1913
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1914
|
+
stagingTableName?: Maybe<Scalars['String']['output']>;
|
|
1915
|
+
stagingTableSchema?: Maybe<Scalars['String']['output']>;
|
|
1741
1916
|
};
|
|
1742
1917
|
|
|
1918
|
+
export type EndpointConnection = {
|
|
1919
|
+
__typename?: 'EndpointConnection';
|
|
1920
|
+
edges: Array<EndpointEdge>;
|
|
1921
|
+
nodes?: Maybe<Array<Maybe<Endpoint>>>;
|
|
1922
|
+
pageInfo: PageInfo;
|
|
1923
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
1924
|
+
};
|
|
1743
1925
|
|
|
1744
|
-
export type
|
|
1745
|
-
|
|
1926
|
+
export type EndpointCreate = {
|
|
1927
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1928
|
+
collectionPropertyName?: InputMaybe<Scalars['String']['input']>;
|
|
1929
|
+
depotId?: InputMaybe<Scalars['ID']['input']>;
|
|
1930
|
+
endpointTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
1931
|
+
entityId?: InputMaybe<Scalars['ID']['input']>;
|
|
1932
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
1933
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1934
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1935
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1936
|
+
stagingTableName?: InputMaybe<Scalars['String']['input']>;
|
|
1937
|
+
stagingTableSchema?: InputMaybe<Scalars['String']['input']>;
|
|
1746
1938
|
};
|
|
1747
1939
|
|
|
1748
|
-
export type
|
|
1749
|
-
__typename?: '
|
|
1940
|
+
export type EndpointEdge = {
|
|
1941
|
+
__typename?: 'EndpointEdge';
|
|
1942
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
1943
|
+
node: Endpoint;
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
export type EndpointExport = {
|
|
1947
|
+
__typename?: 'EndpointExport';
|
|
1948
|
+
Depot?: Maybe<Scalars['String']['output']>;
|
|
1949
|
+
Endpoint?: Maybe<Scalars['String']['output']>;
|
|
1950
|
+
EndpointId?: Maybe<Scalars['ID']['output']>;
|
|
1951
|
+
EndpointType?: Maybe<Scalars['String']['output']>;
|
|
1952
|
+
Entity?: Maybe<Scalars['String']['output']>;
|
|
1953
|
+
Metadata?: Maybe<Scalars['String']['output']>;
|
|
1954
|
+
StagingTableName?: Maybe<Scalars['String']['output']>;
|
|
1955
|
+
StagingTableSchema?: Maybe<Scalars['String']['output']>;
|
|
1956
|
+
Subscriptions?: Maybe<Array<Maybe<EndpointSubscriptionExport>>>;
|
|
1957
|
+
};
|
|
1958
|
+
|
|
1959
|
+
export type EndpointImport = {
|
|
1960
|
+
Depot?: InputMaybe<Scalars['String']['input']>;
|
|
1961
|
+
Endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
1962
|
+
EndpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
1963
|
+
EndpointType?: InputMaybe<Scalars['String']['input']>;
|
|
1964
|
+
Entity?: InputMaybe<Scalars['String']['input']>;
|
|
1965
|
+
KeyHint?: InputMaybe<Scalars['String']['input']>;
|
|
1966
|
+
Metadata?: InputMaybe<Scalars['String']['input']>;
|
|
1967
|
+
StagingTableName?: InputMaybe<Scalars['String']['input']>;
|
|
1968
|
+
StagingTableSchema?: InputMaybe<Scalars['String']['input']>;
|
|
1969
|
+
Subscriptions?: InputMaybe<Array<InputMaybe<EndpointSubscriptionImport>>>;
|
|
1970
|
+
};
|
|
1971
|
+
|
|
1972
|
+
export type EndpointQueue = {
|
|
1973
|
+
__typename?: 'EndpointQueue';
|
|
1974
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1975
|
+
created: Scalars['DateTime']['output'];
|
|
1976
|
+
endpoint: Endpoint;
|
|
1977
|
+
endpointQueueStatus?: Maybe<EndpointQueueStatus>;
|
|
1978
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1750
1979
|
id: Scalars['ID']['output'];
|
|
1751
|
-
|
|
1752
|
-
|
|
1980
|
+
modified: Scalars['DateTime']['output'];
|
|
1981
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1753
1982
|
};
|
|
1754
1983
|
|
|
1755
|
-
export type
|
|
1756
|
-
|
|
1757
|
-
|
|
1984
|
+
export type EndpointQueueCreate = {
|
|
1985
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
1986
|
+
endpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
1987
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
1988
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
1989
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1758
1990
|
};
|
|
1759
1991
|
|
|
1760
|
-
export
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
Inactive = 'INACTIVE'
|
|
1764
|
-
}
|
|
1765
|
-
|
|
1766
|
-
export enum GenericStatus {
|
|
1767
|
-
Active = 'ACTIVE',
|
|
1768
|
-
Inactive = 'INACTIVE'
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
export type GroupSet = Node & {
|
|
1772
|
-
__typename?: 'GroupSet';
|
|
1773
|
-
code: Scalars['String']['output'];
|
|
1992
|
+
export type EndpointQueueStatus = {
|
|
1993
|
+
__typename?: 'EndpointQueueStatus';
|
|
1994
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
1774
1995
|
created: Scalars['DateTime']['output'];
|
|
1996
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1775
1997
|
id: Scalars['ID']['output'];
|
|
1776
|
-
modified
|
|
1777
|
-
|
|
1778
|
-
name: Scalars['String']['output'];
|
|
1779
|
-
sort?: Maybe<Scalars['Int']['output']>;
|
|
1780
|
-
status: GroupSetStatus;
|
|
1781
|
-
tier?: Maybe<Scalars['Int']['output']>;
|
|
1782
|
-
type?: Maybe<GroupSetType>;
|
|
1998
|
+
modified: Scalars['DateTime']['output'];
|
|
1999
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1783
2000
|
};
|
|
1784
2001
|
|
|
1785
|
-
export type
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
2002
|
+
export type EndpointQueueUpdate = {
|
|
2003
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2004
|
+
endpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
2005
|
+
endpointQueueStatusId?: InputMaybe<Scalars['ID']['input']>;
|
|
2006
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2007
|
+
id: Scalars['ID']['input'];
|
|
2008
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1791
2009
|
};
|
|
1792
2010
|
|
|
1793
|
-
export type
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
2011
|
+
export type EndpointStatus = {
|
|
2012
|
+
__typename?: 'EndpointStatus';
|
|
2013
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2014
|
+
created: Scalars['DateTime']['output'];
|
|
2015
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2016
|
+
id: Scalars['ID']['output'];
|
|
2017
|
+
modified: Scalars['DateTime']['output'];
|
|
2018
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
1798
2019
|
};
|
|
1799
2020
|
|
|
1800
|
-
export type
|
|
1801
|
-
|
|
2021
|
+
export type EndpointSubscription = {
|
|
2022
|
+
__typename?: 'EndpointSubscription';
|
|
2023
|
+
created: Scalars['DateTime']['output'];
|
|
2024
|
+
endpoint: Endpoint;
|
|
2025
|
+
endpointQueue: EndpointQueue;
|
|
2026
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2027
|
+
id: Scalars['ID']['output'];
|
|
2028
|
+
modified: Scalars['DateTime']['output'];
|
|
2029
|
+
subscriptionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1802
2030
|
};
|
|
1803
2031
|
|
|
1804
|
-
export type
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
2032
|
+
export type EndpointSubscriptionCreate = {
|
|
2033
|
+
endpointId: Scalars['ID']['input'];
|
|
2034
|
+
endpointQueueId: Scalars['ID']['input'];
|
|
2035
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
2036
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2037
|
+
subscriptionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1808
2038
|
};
|
|
1809
2039
|
|
|
1810
|
-
export type
|
|
1811
|
-
__typename?: '
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
2040
|
+
export type EndpointSubscriptionExport = {
|
|
2041
|
+
__typename?: 'EndpointSubscriptionExport';
|
|
2042
|
+
EndpointQueueId?: Maybe<Scalars['ID']['output']>;
|
|
2043
|
+
EndpointSubscriptionId?: Maybe<Scalars['ID']['output']>;
|
|
2044
|
+
TargetEndpoint?: Maybe<Scalars['String']['output']>;
|
|
2045
|
+
Transformations?: Maybe<Array<Maybe<TransformationExport>>>;
|
|
1816
2046
|
};
|
|
1817
2047
|
|
|
1818
|
-
export type
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1824
|
-
top?: InputMaybe<Scalars['Int']['input']>;
|
|
2048
|
+
export type EndpointSubscriptionImport = {
|
|
2049
|
+
EndpointQueueId?: InputMaybe<Scalars['ID']['input']>;
|
|
2050
|
+
EndpointSubscriptionId?: InputMaybe<Scalars['ID']['input']>;
|
|
2051
|
+
TargetEndpoint?: InputMaybe<Scalars['String']['input']>;
|
|
2052
|
+
Transformations?: InputMaybe<Array<InputMaybe<TransformationImport>>>;
|
|
1825
2053
|
};
|
|
1826
2054
|
|
|
1827
|
-
export type
|
|
1828
|
-
|
|
2055
|
+
export type EndpointSubscriptionUpdate = {
|
|
2056
|
+
endpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
2057
|
+
endpointQueueId?: InputMaybe<Scalars['ID']['input']>;
|
|
2058
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2059
|
+
id: Scalars['ID']['input'];
|
|
2060
|
+
subscriptionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2061
|
+
};
|
|
2062
|
+
|
|
2063
|
+
export type EndpointType = {
|
|
2064
|
+
__typename?: 'EndpointType';
|
|
2065
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
2066
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2067
|
+
created: Scalars['DateTime']['output'];
|
|
2068
|
+
id: Scalars['ID']['output'];
|
|
2069
|
+
metadataSchema?: Maybe<Scalars['String']['output']>;
|
|
2070
|
+
modified: Scalars['DateTime']['output'];
|
|
2071
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2072
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
2073
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
2074
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2075
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
2076
|
+
};
|
|
2077
|
+
|
|
2078
|
+
export type EndpointUpdate = {
|
|
2079
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2080
|
+
collectionPropertyName?: InputMaybe<Scalars['String']['input']>;
|
|
2081
|
+
defaultProcessTaskTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
2082
|
+
depotId?: InputMaybe<Scalars['ID']['input']>;
|
|
2083
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2084
|
+
documentId?: InputMaybe<Scalars['ID']['input']>;
|
|
2085
|
+
endpointStatusId?: InputMaybe<Scalars['ID']['input']>;
|
|
2086
|
+
endpointTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
2087
|
+
entityId?: InputMaybe<Scalars['ID']['input']>;
|
|
2088
|
+
id: Scalars['ID']['input'];
|
|
2089
|
+
isPublish?: InputMaybe<Scalars['Int']['input']>;
|
|
2090
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
2091
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2092
|
+
stagingTableName?: InputMaybe<Scalars['String']['input']>;
|
|
2093
|
+
stagingTableSchema?: InputMaybe<Scalars['String']['input']>;
|
|
2094
|
+
};
|
|
2095
|
+
|
|
2096
|
+
export type Entity = {
|
|
2097
|
+
__typename?: 'Entity';
|
|
2098
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2099
|
+
created: Scalars['DateTime']['output'];
|
|
2100
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
2101
|
+
enableParse?: Maybe<Scalars['Int']['output']>;
|
|
2102
|
+
entityGroup?: Maybe<EntityGroup>;
|
|
2103
|
+
entitySchema?: Maybe<Scalars['String']['output']>;
|
|
2104
|
+
entityType?: Maybe<EntityType>;
|
|
2105
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2106
|
+
id: Scalars['ID']['output'];
|
|
2107
|
+
modified: Scalars['DateTime']['output'];
|
|
2108
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2109
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
2110
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
2111
|
+
sourceEntityName?: Maybe<Scalars['String']['output']>;
|
|
2112
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
2113
|
+
};
|
|
2114
|
+
|
|
2115
|
+
export type EntityAttribute = {
|
|
2116
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
2117
|
+
};
|
|
2118
|
+
|
|
2119
|
+
export type EntityCreate = {
|
|
2120
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2121
|
+
enableParse?: InputMaybe<Scalars['Int']['input']>;
|
|
2122
|
+
entitySchema?: InputMaybe<Scalars['String']['input']>;
|
|
2123
|
+
entityTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
2124
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2125
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
2126
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2127
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2128
|
+
sourceEntityName?: InputMaybe<Scalars['String']['input']>;
|
|
2129
|
+
};
|
|
2130
|
+
|
|
2131
|
+
export type EntityExport = {
|
|
2132
|
+
__typename?: 'EntityExport';
|
|
2133
|
+
EnableParse?: Maybe<Scalars['Int']['output']>;
|
|
2134
|
+
Entity?: Maybe<Scalars['String']['output']>;
|
|
2135
|
+
EntityFields?: Maybe<Array<Maybe<EntityFieldExport>>>;
|
|
2136
|
+
EntityId?: Maybe<Scalars['ID']['output']>;
|
|
2137
|
+
EntitySchema?: Maybe<Scalars['String']['output']>;
|
|
2138
|
+
EntityType?: Maybe<Scalars['String']['output']>;
|
|
2139
|
+
ExtendedFields?: Maybe<Scalars['String']['output']>;
|
|
2140
|
+
SourceEntityName?: Maybe<Scalars['String']['output']>;
|
|
2141
|
+
};
|
|
2142
|
+
|
|
2143
|
+
export type EntityField = {
|
|
2144
|
+
__typename?: 'EntityField';
|
|
2145
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2146
|
+
created: Scalars['DateTime']['output'];
|
|
2147
|
+
decimalPlaces?: Maybe<Scalars['Int']['output']>;
|
|
2148
|
+
entity: Entity;
|
|
2149
|
+
enumId?: Maybe<Scalars['ID']['output']>;
|
|
2150
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2151
|
+
fieldType: FieldType;
|
|
2152
|
+
id: Scalars['ID']['output'];
|
|
2153
|
+
isDisplay?: Maybe<Scalars['Int']['output']>;
|
|
2154
|
+
isEditable?: Maybe<Scalars['Int']['output']>;
|
|
2155
|
+
isKey?: Maybe<Scalars['Int']['output']>;
|
|
2156
|
+
isRequired?: Maybe<Scalars['Int']['output']>;
|
|
2157
|
+
length?: Maybe<Scalars['Int']['output']>;
|
|
2158
|
+
modified: Scalars['DateTime']['output'];
|
|
2159
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2160
|
+
parentEntityFieldId?: Maybe<Scalars['ID']['output']>;
|
|
2161
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
2162
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2163
|
+
subEntityId?: Maybe<Scalars['ID']['output']>;
|
|
2164
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
2165
|
+
};
|
|
2166
|
+
|
|
2167
|
+
export type EntityFieldCreate = {
|
|
2168
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2169
|
+
decimalPlaces?: InputMaybe<Scalars['Int']['input']>;
|
|
2170
|
+
entityId: Scalars['ID']['input'];
|
|
2171
|
+
fieldTypeId: Scalars['ID']['input'];
|
|
2172
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
2173
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
2174
|
+
isEditable?: InputMaybe<Scalars['Int']['input']>;
|
|
2175
|
+
isKey?: InputMaybe<Scalars['Int']['input']>;
|
|
2176
|
+
isRequired?: InputMaybe<Scalars['Int']['input']>;
|
|
2177
|
+
length?: InputMaybe<Scalars['Int']['input']>;
|
|
2178
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2179
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
2180
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
2181
|
+
};
|
|
2182
|
+
|
|
2183
|
+
export type EntityFieldExport = {
|
|
2184
|
+
__typename?: 'EntityFieldExport';
|
|
2185
|
+
EntityField?: Maybe<Scalars['String']['output']>;
|
|
2186
|
+
EntityFieldId?: Maybe<Scalars['ID']['output']>;
|
|
2187
|
+
FieldType?: Maybe<Scalars['String']['output']>;
|
|
2188
|
+
IsEditable?: Maybe<Scalars['Int']['output']>;
|
|
2189
|
+
IsKey?: Maybe<Scalars['Int']['output']>;
|
|
2190
|
+
IsRequired?: Maybe<Scalars['Int']['output']>;
|
|
2191
|
+
Length?: Maybe<Scalars['Int']['output']>;
|
|
2192
|
+
Path?: Maybe<Scalars['String']['output']>;
|
|
2193
|
+
Sort?: Maybe<Scalars['Int']['output']>;
|
|
2194
|
+
};
|
|
2195
|
+
|
|
2196
|
+
export type EntityFieldImport = {
|
|
2197
|
+
EntityField?: InputMaybe<Scalars['String']['input']>;
|
|
2198
|
+
EntityFieldId?: InputMaybe<Scalars['ID']['input']>;
|
|
2199
|
+
FieldType?: InputMaybe<Scalars['String']['input']>;
|
|
2200
|
+
IsEditable?: InputMaybe<Scalars['Int']['input']>;
|
|
2201
|
+
IsKey?: InputMaybe<Scalars['Int']['input']>;
|
|
2202
|
+
IsRequired?: InputMaybe<Scalars['Int']['input']>;
|
|
2203
|
+
Length?: InputMaybe<Scalars['Int']['input']>;
|
|
2204
|
+
Path?: InputMaybe<Scalars['String']['input']>;
|
|
2205
|
+
Sort?: InputMaybe<Scalars['Int']['input']>;
|
|
2206
|
+
};
|
|
2207
|
+
|
|
2208
|
+
export type EntityFieldUpdate = {
|
|
2209
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2210
|
+
decimalPlaces?: InputMaybe<Scalars['Int']['input']>;
|
|
2211
|
+
entityId?: InputMaybe<Scalars['ID']['input']>;
|
|
2212
|
+
enumId?: InputMaybe<Scalars['ID']['input']>;
|
|
2213
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2214
|
+
fieldTypeID?: InputMaybe<Scalars['ID']['input']>;
|
|
2215
|
+
id: Scalars['ID']['input'];
|
|
2216
|
+
isDisplay?: InputMaybe<Scalars['Int']['input']>;
|
|
2217
|
+
isEditable?: InputMaybe<Scalars['Int']['input']>;
|
|
2218
|
+
isKey?: InputMaybe<Scalars['Int']['input']>;
|
|
2219
|
+
isRequired?: InputMaybe<Scalars['Int']['input']>;
|
|
2220
|
+
length?: InputMaybe<Scalars['Int']['input']>;
|
|
2221
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2222
|
+
parentEntityFieldId?: InputMaybe<Scalars['ID']['input']>;
|
|
2223
|
+
path?: InputMaybe<Scalars['String']['input']>;
|
|
2224
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
2225
|
+
subEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
2226
|
+
tier?: InputMaybe<Scalars['Int']['input']>;
|
|
2227
|
+
};
|
|
2228
|
+
|
|
2229
|
+
export type EntityGroup = {
|
|
2230
|
+
__typename?: 'EntityGroup';
|
|
2231
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
2232
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2233
|
+
created: Scalars['DateTime']['output'];
|
|
2234
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2235
|
+
id: Scalars['ID']['output'];
|
|
2236
|
+
modified: Scalars['DateTime']['output'];
|
|
2237
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2238
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
2239
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
2240
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2241
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
2242
|
+
};
|
|
2243
|
+
|
|
2244
|
+
export type EntityImport = {
|
|
2245
|
+
EnableParse?: InputMaybe<Scalars['Int']['input']>;
|
|
2246
|
+
Entity?: InputMaybe<Scalars['String']['input']>;
|
|
2247
|
+
EntityFields?: InputMaybe<Array<InputMaybe<EntityFieldImport>>>;
|
|
2248
|
+
EntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
2249
|
+
EntitySchema?: InputMaybe<Scalars['String']['input']>;
|
|
2250
|
+
EntityType?: InputMaybe<Scalars['String']['input']>;
|
|
2251
|
+
ExtendedFields?: InputMaybe<Scalars['String']['input']>;
|
|
2252
|
+
SourceEntityName?: InputMaybe<Scalars['String']['input']>;
|
|
2253
|
+
};
|
|
2254
|
+
|
|
2255
|
+
export type EntityType = {
|
|
2256
|
+
__typename?: 'EntityType';
|
|
2257
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2258
|
+
created: Scalars['DateTime']['output'];
|
|
2259
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2260
|
+
id: Scalars['ID']['output'];
|
|
2261
|
+
modified: Scalars['DateTime']['output'];
|
|
2262
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2263
|
+
};
|
|
2264
|
+
|
|
2265
|
+
export type EntityUpdate = {
|
|
2266
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2267
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2268
|
+
enableParse?: InputMaybe<Scalars['Int']['input']>;
|
|
2269
|
+
entityGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
2270
|
+
entitySchema?: InputMaybe<Scalars['String']['input']>;
|
|
2271
|
+
entityTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
2272
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2273
|
+
id: Scalars['ID']['input'];
|
|
2274
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2275
|
+
sourceEntityName?: InputMaybe<Scalars['String']['input']>;
|
|
2276
|
+
};
|
|
2277
|
+
|
|
2278
|
+
export type Enum = {
|
|
2279
|
+
__typename?: 'Enum';
|
|
2280
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2281
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
2282
|
+
id: Scalars['ID']['output'];
|
|
2283
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
export type EnumInput = {
|
|
2287
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
2288
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
2289
|
+
id: Scalars['ID']['input'];
|
|
2290
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
2291
|
+
};
|
|
2292
|
+
|
|
2293
|
+
export type EnumValue = {
|
|
2294
|
+
__typename?: 'EnumValue';
|
|
2295
|
+
CdnURL?: Maybe<Scalars['String']['output']>;
|
|
2296
|
+
Name?: Maybe<Scalars['String']['output']>;
|
|
2297
|
+
Value?: Maybe<Scalars['String']['output']>;
|
|
2298
|
+
id: Scalars['ID']['output'];
|
|
2299
|
+
};
|
|
2300
|
+
|
|
2301
|
+
export type Error = {
|
|
2302
|
+
message: Scalars['String']['output'];
|
|
2303
|
+
};
|
|
2304
|
+
|
|
2305
|
+
export type ExecutionStatus = {
|
|
2306
|
+
__typename?: 'ExecutionStatus';
|
|
2307
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2308
|
+
created: Scalars['DateTime']['output'];
|
|
2309
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2310
|
+
id: Scalars['ID']['output'];
|
|
2311
|
+
modified: Scalars['DateTime']['output'];
|
|
2312
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2313
|
+
};
|
|
2314
|
+
|
|
2315
|
+
export type FacetFilter = {
|
|
2316
|
+
__typename?: 'FacetFilter';
|
|
2317
|
+
attributeId?: Maybe<Scalars['String']['output']>;
|
|
2318
|
+
attributeName?: Maybe<Scalars['String']['output']>;
|
|
2319
|
+
attributeValue?: Maybe<Scalars['String']['output']>;
|
|
2320
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2321
|
+
enumValueId?: Maybe<Scalars['String']['output']>;
|
|
2322
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2323
|
+
};
|
|
2324
|
+
|
|
2325
|
+
export type FieldType = {
|
|
2326
|
+
__typename?: 'FieldType';
|
|
2327
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
2328
|
+
created: Scalars['DateTime']['output'];
|
|
2329
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2330
|
+
id: Scalars['ID']['output'];
|
|
2331
|
+
modified: Scalars['DateTime']['output'];
|
|
2332
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2333
|
+
stagingDataType?: Maybe<Scalars['String']['output']>;
|
|
2334
|
+
};
|
|
2335
|
+
|
|
2336
|
+
export type Filter = {
|
|
2337
|
+
age?: InputMaybe<Scalars['Int']['input']>;
|
|
2338
|
+
orderType?: InputMaybe<OrderType>;
|
|
2339
|
+
};
|
|
2340
|
+
|
|
2341
|
+
export type FilterQueryInput = {
|
|
2342
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2343
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
2344
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2345
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
2346
|
+
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2347
|
+
top?: InputMaybe<Scalars['Int']['input']>;
|
|
2348
|
+
};
|
|
2349
|
+
|
|
2350
|
+
export type Folder = Node & {
|
|
2351
|
+
__typename?: 'Folder';
|
|
2352
|
+
breadcrumb: Array<FolderBreadcrumb>;
|
|
2353
|
+
created: Scalars['DateTime']['output'];
|
|
2354
|
+
createdBy: Scalars['String']['output'];
|
|
2355
|
+
folderPath: Scalars['String']['output'];
|
|
2356
|
+
id: Scalars['ID']['output'];
|
|
2357
|
+
list?: Maybe<MediaConnection>;
|
|
2358
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
2359
|
+
modified: Scalars['DateTime']['output'];
|
|
2360
|
+
modifiedBy?: Maybe<Contact>;
|
|
2361
|
+
name: Scalars['String']['output'];
|
|
2362
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
2363
|
+
tier: Scalars['Int']['output'];
|
|
2364
|
+
type: Scalars['String']['output'];
|
|
2365
|
+
};
|
|
2366
|
+
|
|
2367
|
+
|
|
2368
|
+
export type FolderListArgs = {
|
|
2369
|
+
input?: InputMaybe<MediaQueryInput>;
|
|
2370
|
+
};
|
|
2371
|
+
|
|
2372
|
+
export type FolderBreadcrumb = {
|
|
2373
|
+
__typename?: 'FolderBreadcrumb';
|
|
2374
|
+
id: Scalars['ID']['output'];
|
|
2375
|
+
name: Scalars['String']['output'];
|
|
2376
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2377
|
+
};
|
|
2378
|
+
|
|
2379
|
+
export type Font = {
|
|
2380
|
+
__typename?: 'Font';
|
|
2381
|
+
family?: Maybe<Scalars['String']['output']>;
|
|
2382
|
+
};
|
|
2383
|
+
|
|
2384
|
+
export enum GenericQueryStatus {
|
|
2385
|
+
Active = 'ACTIVE',
|
|
2386
|
+
All = 'ALL',
|
|
2387
|
+
Inactive = 'INACTIVE'
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
export enum GenericStatus {
|
|
2391
|
+
Active = 'ACTIVE',
|
|
2392
|
+
Inactive = 'INACTIVE'
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
export type GroupSet = Node & {
|
|
2396
|
+
__typename?: 'GroupSet';
|
|
2397
|
+
code: Scalars['String']['output'];
|
|
2398
|
+
created: Scalars['DateTime']['output'];
|
|
2399
|
+
id: Scalars['ID']['output'];
|
|
2400
|
+
modified?: Maybe<Scalars['DateTime']['output']>;
|
|
2401
|
+
modifiedBy?: Maybe<Contact>;
|
|
2402
|
+
name: Scalars['String']['output'];
|
|
2403
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
2404
|
+
status: GroupSetStatus;
|
|
2405
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
2406
|
+
type?: Maybe<GroupSetType>;
|
|
2407
|
+
};
|
|
2408
|
+
|
|
2409
|
+
export type GroupSetConnection = {
|
|
2410
|
+
__typename?: 'GroupSetConnection';
|
|
2411
|
+
edges?: Maybe<Array<Maybe<GroupSetEdge>>>;
|
|
2412
|
+
nodes?: Maybe<Array<Maybe<GroupSet>>>;
|
|
2413
|
+
pageInfo: PageInfo;
|
|
2414
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
2415
|
+
};
|
|
2416
|
+
|
|
2417
|
+
export type GroupSetCreate = {
|
|
2418
|
+
code: Scalars['String']['input'];
|
|
2419
|
+
groupSetStatusId: Scalars['ID']['input'];
|
|
2420
|
+
groupSetTypeId: Scalars['ID']['input'];
|
|
2421
|
+
name: Scalars['String']['input'];
|
|
2422
|
+
};
|
|
2423
|
+
|
|
2424
|
+
export type GroupSetDelete = {
|
|
2425
|
+
id: Scalars['ID']['input'];
|
|
2426
|
+
};
|
|
2427
|
+
|
|
2428
|
+
export type GroupSetEdge = {
|
|
2429
|
+
__typename?: 'GroupSetEdge';
|
|
2430
|
+
cursor: Scalars['String']['output'];
|
|
2431
|
+
node?: Maybe<GroupSet>;
|
|
2432
|
+
};
|
|
2433
|
+
|
|
2434
|
+
export type GroupSetMutationResponse = MutationResponse & {
|
|
2435
|
+
__typename?: 'GroupSetMutationResponse';
|
|
2436
|
+
code: Scalars['String']['output'];
|
|
2437
|
+
groupSet?: Maybe<GroupSet>;
|
|
2438
|
+
message: Scalars['String']['output'];
|
|
2439
|
+
success: Scalars['Boolean']['output'];
|
|
2440
|
+
};
|
|
2441
|
+
|
|
2442
|
+
export type GroupSetQuery = {
|
|
2443
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
2444
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
2445
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
2446
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
2447
|
+
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2448
|
+
top?: InputMaybe<Scalars['Int']['input']>;
|
|
2449
|
+
};
|
|
2450
|
+
|
|
2451
|
+
export type GroupSetStatus = Node & {
|
|
2452
|
+
__typename?: 'GroupSetStatus';
|
|
1829
2453
|
code: Scalars['String']['output'];
|
|
1830
2454
|
created: Scalars['DateTime']['output'];
|
|
1831
2455
|
id: Scalars['ID']['output'];
|
|
@@ -1905,6 +2529,44 @@ export type Image = {
|
|
|
1905
2529
|
id: Scalars['ID']['output'];
|
|
1906
2530
|
};
|
|
1907
2531
|
|
|
2532
|
+
export type ImportRecord = {
|
|
2533
|
+
__typename?: 'ImportRecord';
|
|
2534
|
+
created?: Maybe<Scalars['Int']['output']>;
|
|
2535
|
+
updated?: Maybe<Scalars['Int']['output']>;
|
|
2536
|
+
};
|
|
2537
|
+
|
|
2538
|
+
export type ImportRecordEndpoint = {
|
|
2539
|
+
__typename?: 'ImportRecordEndpoint';
|
|
2540
|
+
created?: Maybe<Scalars['Int']['output']>;
|
|
2541
|
+
subscriptions?: Maybe<ImportRecord>;
|
|
2542
|
+
updated?: Maybe<Scalars['Int']['output']>;
|
|
2543
|
+
};
|
|
2544
|
+
|
|
2545
|
+
export type ImportRecordEntity = {
|
|
2546
|
+
__typename?: 'ImportRecordEntity';
|
|
2547
|
+
created?: Maybe<Scalars['Int']['output']>;
|
|
2548
|
+
entityFields?: Maybe<ImportRecord>;
|
|
2549
|
+
updated?: Maybe<Scalars['Int']['output']>;
|
|
2550
|
+
};
|
|
2551
|
+
|
|
2552
|
+
export type ImportRecordProcess = {
|
|
2553
|
+
__typename?: 'ImportRecordProcess';
|
|
2554
|
+
created?: Maybe<Scalars['Int']['output']>;
|
|
2555
|
+
processTasks?: Maybe<ImportRecord>;
|
|
2556
|
+
updated?: Maybe<Scalars['Int']['output']>;
|
|
2557
|
+
};
|
|
2558
|
+
|
|
2559
|
+
export type ImportResult = {
|
|
2560
|
+
__typename?: 'ImportResult';
|
|
2561
|
+
depotGroups?: Maybe<ImportRecord>;
|
|
2562
|
+
depots?: Maybe<ImportRecord>;
|
|
2563
|
+
endpoints?: Maybe<ImportRecordEndpoint>;
|
|
2564
|
+
entities?: Maybe<ImportRecordEntity>;
|
|
2565
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
2566
|
+
processes?: Maybe<ImportRecordProcess>;
|
|
2567
|
+
success: Scalars['Boolean']['output'];
|
|
2568
|
+
};
|
|
2569
|
+
|
|
1908
2570
|
export type IndexAttemptResponse = {
|
|
1909
2571
|
__typename?: 'IndexAttemptResponse';
|
|
1910
2572
|
/** Unique id identifying the operation */
|
|
@@ -2406,6 +3068,8 @@ export type Mutation = {
|
|
|
2406
3068
|
clearCache?: Maybe<ClearCacheResponse>;
|
|
2407
3069
|
clearItemsFromWishlist?: Maybe<Scalars['String']['output']>;
|
|
2408
3070
|
completeCart?: Maybe<CompleteCartMutationResponse>;
|
|
3071
|
+
configurationImport?: Maybe<ImportResult>;
|
|
3072
|
+
copyProcess?: Maybe<CopiedProcess>;
|
|
2409
3073
|
createAddress?: Maybe<Address>;
|
|
2410
3074
|
createCategories: Array<Category>;
|
|
2411
3075
|
createCategoryMediaLink?: Maybe<CreateCategoryMediaLinkMutationResponse>;
|
|
@@ -2416,6 +3080,14 @@ export type Mutation = {
|
|
|
2416
3080
|
createClaim?: Maybe<Claim>;
|
|
2417
3081
|
createClaimType?: Maybe<ClaimType>;
|
|
2418
3082
|
createContact?: Maybe<CreateContactMutationResponse>;
|
|
3083
|
+
createDepot?: Maybe<Depot>;
|
|
3084
|
+
createDepotGroup?: Maybe<DepotGroup>;
|
|
3085
|
+
createDocumentField?: Maybe<DocumentField>;
|
|
3086
|
+
createEndpoint?: Maybe<Endpoint>;
|
|
3087
|
+
createEndpointQueue?: Maybe<EndpointQueue>;
|
|
3088
|
+
createEndpointSubscription?: Maybe<EndpointSubscription>;
|
|
3089
|
+
createEntity?: Maybe<Entity>;
|
|
3090
|
+
createEntityField?: Maybe<EntityField>;
|
|
2419
3091
|
createFolder?: Maybe<CreateFolderMutationResponse>;
|
|
2420
3092
|
/** Create a new index type. */
|
|
2421
3093
|
createIndex: IndexAttemptResponse;
|
|
@@ -2423,7 +3095,14 @@ export type Mutation = {
|
|
|
2423
3095
|
createMediaMimeType?: Maybe<MediaMimeType>;
|
|
2424
3096
|
createMediaType: MediaType;
|
|
2425
3097
|
createNewTheme?: Maybe<ThemeItem>;
|
|
3098
|
+
createNotification?: Maybe<NotificationIntegrate>;
|
|
3099
|
+
createNotificationGroup?: Maybe<NotificationGroup>;
|
|
3100
|
+
createNotificationTemplate?: Maybe<NotificationTemplate>;
|
|
2426
3101
|
createOrderAddress?: Maybe<Address>;
|
|
3102
|
+
createProcess?: Maybe<Process>;
|
|
3103
|
+
createProcessSchedule?: Maybe<ProcessSchedule>;
|
|
3104
|
+
createProcessTask?: Maybe<ProcessTask>;
|
|
3105
|
+
createProcessTaskLink?: Maybe<ProcessTaskLink>;
|
|
2427
3106
|
createProduct?: Maybe<ProductMutationResponse>;
|
|
2428
3107
|
createProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
2429
3108
|
createProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
@@ -2448,7 +3127,15 @@ export type Mutation = {
|
|
|
2448
3127
|
deleteChannel?: Maybe<Scalars['String']['output']>;
|
|
2449
3128
|
deleteClaim?: Maybe<Claim>;
|
|
2450
3129
|
deleteClaimType?: Maybe<ClaimType>;
|
|
3130
|
+
deleteDepotGroups?: Maybe<Array<Maybe<DepotGroup>>>;
|
|
3131
|
+
deleteDepots?: Maybe<Array<Maybe<Depot>>>;
|
|
2451
3132
|
deleteDocument?: Maybe<Scalars['ID']['output']>;
|
|
3133
|
+
deleteDocumentFields?: Maybe<Array<Maybe<DocumentField>>>;
|
|
3134
|
+
deleteEndpointQueues?: Maybe<Array<Maybe<EndpointQueue>>>;
|
|
3135
|
+
deleteEndpointSubscriptions?: Maybe<Array<Maybe<EndpointSubscription>>>;
|
|
3136
|
+
deleteEndpoints?: Maybe<Array<Maybe<Endpoint>>>;
|
|
3137
|
+
deleteEntities?: Maybe<Array<Maybe<Entity>>>;
|
|
3138
|
+
deleteEntityFields?: Maybe<Array<Maybe<EntityField>>>;
|
|
2452
3139
|
/** Removed specified file by id. */
|
|
2453
3140
|
deleteFile?: Maybe<Media>;
|
|
2454
3141
|
/** Removes specific folder by provided Id and all the assets inside the folder. */
|
|
@@ -2457,15 +3144,22 @@ export type Mutation = {
|
|
|
2457
3144
|
deleteItemFromAllWishlists?: Maybe<Scalars['String']['output']>;
|
|
2458
3145
|
deleteItemFromWishlist?: Maybe<Scalars['String']['output']>;
|
|
2459
3146
|
deleteMappingField?: Maybe<Scalars['ID']['output']>;
|
|
2460
|
-
deleteMappingFields: Array<
|
|
3147
|
+
deleteMappingFields: Array<DeletedRecord>;
|
|
2461
3148
|
deleteMediaType?: Maybe<MediaType>;
|
|
3149
|
+
deleteNotificationGroups?: Maybe<Array<Maybe<NotificationGroup>>>;
|
|
3150
|
+
deleteNotificationTemplates?: Maybe<Array<Maybe<NotificationTemplate>>>;
|
|
3151
|
+
deleteNotifications?: Maybe<Array<Maybe<NotificationIntegrate>>>;
|
|
3152
|
+
deleteProcessSchedules?: Maybe<Array<Maybe<ProcessSchedule>>>;
|
|
3153
|
+
deleteProcessTaskLinks?: Maybe<Array<Maybe<ProcessTaskLink>>>;
|
|
3154
|
+
deleteProcessTasks?: Maybe<Array<Maybe<ProcessTask>>>;
|
|
3155
|
+
deleteProcesses?: Maybe<Array<Maybe<Process>>>;
|
|
2462
3156
|
deleteProduct?: Maybe<ProductMutationResponse>;
|
|
2463
3157
|
deleteProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
2464
3158
|
deleteProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
2465
3159
|
deleteRoleClaim?: Maybe<RoleClaim>;
|
|
2466
3160
|
deleteSavedCart?: Maybe<DeleteSavedCartResponse>;
|
|
2467
|
-
deleteSearchWord?: Maybe<
|
|
2468
|
-
deleteSearchWordSynonym?: Maybe<
|
|
3161
|
+
deleteSearchWord?: Maybe<Array<Maybe<DeletedRecord>>>;
|
|
3162
|
+
deleteSearchWordSynonym?: Maybe<Array<Maybe<DeletedRecord>>>;
|
|
2469
3163
|
deleteStopWord?: Maybe<StopWord>;
|
|
2470
3164
|
deleteTheme?: Maybe<DeleteSuccess>;
|
|
2471
3165
|
deleteUser: DeleteUserResponse;
|
|
@@ -2544,10 +3238,25 @@ export type Mutation = {
|
|
|
2544
3238
|
updateClaim?: Maybe<Claim>;
|
|
2545
3239
|
updateClaimType?: Maybe<ClaimType>;
|
|
2546
3240
|
updateContact?: Maybe<Me>;
|
|
3241
|
+
updateDepot?: Maybe<Depot>;
|
|
3242
|
+
updateDepotGroup?: Maybe<DepotGroup>;
|
|
2547
3243
|
updateDocument?: Maybe<Scalars['ID']['output']>;
|
|
3244
|
+
updateDocumentField?: Maybe<DocumentField>;
|
|
3245
|
+
updateEndpoint?: Maybe<Endpoint>;
|
|
3246
|
+
updateEndpointQueue?: Maybe<EndpointQueue>;
|
|
3247
|
+
updateEndpointSubscription?: Maybe<EndpointSubscription>;
|
|
3248
|
+
updateEntity?: Maybe<Entity>;
|
|
3249
|
+
updateEntityField?: Maybe<EntityField>;
|
|
2548
3250
|
updateMapping: Array<MappingField>;
|
|
2549
3251
|
updateMappings: Array<MappingField>;
|
|
2550
3252
|
updateMediaType: MediaType;
|
|
3253
|
+
updateNotification?: Maybe<NotificationIntegrate>;
|
|
3254
|
+
updateNotificationGroup?: Maybe<NotificationGroup>;
|
|
3255
|
+
updateNotificationTemplate?: Maybe<NotificationTemplate>;
|
|
3256
|
+
updateProcess?: Maybe<Process>;
|
|
3257
|
+
updateProcessSchedule?: Maybe<ProcessSchedule>;
|
|
3258
|
+
updateProcessTask?: Maybe<ProcessTask>;
|
|
3259
|
+
updateProcessTaskLink?: Maybe<ProcessTaskLink>;
|
|
2551
3260
|
updateProduct?: Maybe<ProductMutationResponse>;
|
|
2552
3261
|
updateProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
2553
3262
|
updateProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
@@ -2690,6 +3399,17 @@ export type MutationCompleteCartArgs = {
|
|
|
2690
3399
|
};
|
|
2691
3400
|
|
|
2692
3401
|
|
|
3402
|
+
export type MutationConfigurationImportArgs = {
|
|
3403
|
+
config?: InputMaybe<ConfigImport>;
|
|
3404
|
+
};
|
|
3405
|
+
|
|
3406
|
+
|
|
3407
|
+
export type MutationCopyProcessArgs = {
|
|
3408
|
+
sourceId: Scalars['ID']['input'];
|
|
3409
|
+
targetId: Scalars['ID']['input'];
|
|
3410
|
+
};
|
|
3411
|
+
|
|
3412
|
+
|
|
2693
3413
|
export type MutationCreateAddressArgs = {
|
|
2694
3414
|
address: AddressInput;
|
|
2695
3415
|
};
|
|
@@ -2741,6 +3461,46 @@ export type MutationCreateContactArgs = {
|
|
|
2741
3461
|
};
|
|
2742
3462
|
|
|
2743
3463
|
|
|
3464
|
+
export type MutationCreateDepotArgs = {
|
|
3465
|
+
input: DepotCreate;
|
|
3466
|
+
};
|
|
3467
|
+
|
|
3468
|
+
|
|
3469
|
+
export type MutationCreateDepotGroupArgs = {
|
|
3470
|
+
input: DepotGroupCreate;
|
|
3471
|
+
};
|
|
3472
|
+
|
|
3473
|
+
|
|
3474
|
+
export type MutationCreateDocumentFieldArgs = {
|
|
3475
|
+
input?: InputMaybe<DocumentFieldCreate>;
|
|
3476
|
+
};
|
|
3477
|
+
|
|
3478
|
+
|
|
3479
|
+
export type MutationCreateEndpointArgs = {
|
|
3480
|
+
input: EndpointCreate;
|
|
3481
|
+
};
|
|
3482
|
+
|
|
3483
|
+
|
|
3484
|
+
export type MutationCreateEndpointQueueArgs = {
|
|
3485
|
+
input: EndpointQueueCreate;
|
|
3486
|
+
};
|
|
3487
|
+
|
|
3488
|
+
|
|
3489
|
+
export type MutationCreateEndpointSubscriptionArgs = {
|
|
3490
|
+
input: EndpointSubscriptionCreate;
|
|
3491
|
+
};
|
|
3492
|
+
|
|
3493
|
+
|
|
3494
|
+
export type MutationCreateEntityArgs = {
|
|
3495
|
+
input: EntityCreate;
|
|
3496
|
+
};
|
|
3497
|
+
|
|
3498
|
+
|
|
3499
|
+
export type MutationCreateEntityFieldArgs = {
|
|
3500
|
+
input: EntityFieldCreate;
|
|
3501
|
+
};
|
|
3502
|
+
|
|
3503
|
+
|
|
2744
3504
|
export type MutationCreateFolderArgs = {
|
|
2745
3505
|
input?: InputMaybe<CreateFolderInput>;
|
|
2746
3506
|
};
|
|
@@ -2773,11 +3533,46 @@ export type MutationCreateNewThemeArgs = {
|
|
|
2773
3533
|
};
|
|
2774
3534
|
|
|
2775
3535
|
|
|
3536
|
+
export type MutationCreateNotificationArgs = {
|
|
3537
|
+
input: NotificationCreate;
|
|
3538
|
+
};
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
export type MutationCreateNotificationGroupArgs = {
|
|
3542
|
+
input: NotificationGroupCreate;
|
|
3543
|
+
};
|
|
3544
|
+
|
|
3545
|
+
|
|
3546
|
+
export type MutationCreateNotificationTemplateArgs = {
|
|
3547
|
+
input: NotificationTemplateCreate;
|
|
3548
|
+
};
|
|
3549
|
+
|
|
3550
|
+
|
|
2776
3551
|
export type MutationCreateOrderAddressArgs = {
|
|
2777
3552
|
address: AddressInput;
|
|
2778
3553
|
};
|
|
2779
3554
|
|
|
2780
3555
|
|
|
3556
|
+
export type MutationCreateProcessArgs = {
|
|
3557
|
+
input: ProcessCreate;
|
|
3558
|
+
};
|
|
3559
|
+
|
|
3560
|
+
|
|
3561
|
+
export type MutationCreateProcessScheduleArgs = {
|
|
3562
|
+
input: ProcessScheduleCreate;
|
|
3563
|
+
};
|
|
3564
|
+
|
|
3565
|
+
|
|
3566
|
+
export type MutationCreateProcessTaskArgs = {
|
|
3567
|
+
input: ProcessTaskCreate;
|
|
3568
|
+
};
|
|
3569
|
+
|
|
3570
|
+
|
|
3571
|
+
export type MutationCreateProcessTaskLinkArgs = {
|
|
3572
|
+
input: ProcessTaskLinkCreate;
|
|
3573
|
+
};
|
|
3574
|
+
|
|
3575
|
+
|
|
2781
3576
|
export type MutationCreateProductArgs = {
|
|
2782
3577
|
input: CreateProductInput;
|
|
2783
3578
|
};
|
|
@@ -2887,11 +3682,51 @@ export type MutationDeleteClaimTypeArgs = {
|
|
|
2887
3682
|
};
|
|
2888
3683
|
|
|
2889
3684
|
|
|
3685
|
+
export type MutationDeleteDepotGroupsArgs = {
|
|
3686
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3687
|
+
};
|
|
3688
|
+
|
|
3689
|
+
|
|
3690
|
+
export type MutationDeleteDepotsArgs = {
|
|
3691
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3692
|
+
};
|
|
3693
|
+
|
|
3694
|
+
|
|
2890
3695
|
export type MutationDeleteDocumentArgs = {
|
|
2891
3696
|
input?: InputMaybe<DeleteDocumentInput>;
|
|
2892
3697
|
};
|
|
2893
3698
|
|
|
2894
3699
|
|
|
3700
|
+
export type MutationDeleteDocumentFieldsArgs = {
|
|
3701
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3702
|
+
};
|
|
3703
|
+
|
|
3704
|
+
|
|
3705
|
+
export type MutationDeleteEndpointQueuesArgs = {
|
|
3706
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3707
|
+
};
|
|
3708
|
+
|
|
3709
|
+
|
|
3710
|
+
export type MutationDeleteEndpointSubscriptionsArgs = {
|
|
3711
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3712
|
+
};
|
|
3713
|
+
|
|
3714
|
+
|
|
3715
|
+
export type MutationDeleteEndpointsArgs = {
|
|
3716
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3717
|
+
};
|
|
3718
|
+
|
|
3719
|
+
|
|
3720
|
+
export type MutationDeleteEntitiesArgs = {
|
|
3721
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3722
|
+
};
|
|
3723
|
+
|
|
3724
|
+
|
|
3725
|
+
export type MutationDeleteEntityFieldsArgs = {
|
|
3726
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3727
|
+
};
|
|
3728
|
+
|
|
3729
|
+
|
|
2895
3730
|
export type MutationDeleteFileArgs = {
|
|
2896
3731
|
id: Scalars['ID']['input'];
|
|
2897
3732
|
};
|
|
@@ -2932,6 +3767,41 @@ export type MutationDeleteMediaTypeArgs = {
|
|
|
2932
3767
|
};
|
|
2933
3768
|
|
|
2934
3769
|
|
|
3770
|
+
export type MutationDeleteNotificationGroupsArgs = {
|
|
3771
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3772
|
+
};
|
|
3773
|
+
|
|
3774
|
+
|
|
3775
|
+
export type MutationDeleteNotificationTemplatesArgs = {
|
|
3776
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3777
|
+
};
|
|
3778
|
+
|
|
3779
|
+
|
|
3780
|
+
export type MutationDeleteNotificationsArgs = {
|
|
3781
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3782
|
+
};
|
|
3783
|
+
|
|
3784
|
+
|
|
3785
|
+
export type MutationDeleteProcessSchedulesArgs = {
|
|
3786
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3787
|
+
};
|
|
3788
|
+
|
|
3789
|
+
|
|
3790
|
+
export type MutationDeleteProcessTaskLinksArgs = {
|
|
3791
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3792
|
+
};
|
|
3793
|
+
|
|
3794
|
+
|
|
3795
|
+
export type MutationDeleteProcessTasksArgs = {
|
|
3796
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3797
|
+
};
|
|
3798
|
+
|
|
3799
|
+
|
|
3800
|
+
export type MutationDeleteProcessesArgs = {
|
|
3801
|
+
ids: Array<Scalars['ID']['input']>;
|
|
3802
|
+
};
|
|
3803
|
+
|
|
3804
|
+
|
|
2935
3805
|
export type MutationDeleteProductArgs = {
|
|
2936
3806
|
id: Scalars['ID']['input'];
|
|
2937
3807
|
};
|
|
@@ -3298,11 +4168,51 @@ export type MutationUpdateContactArgs = {
|
|
|
3298
4168
|
};
|
|
3299
4169
|
|
|
3300
4170
|
|
|
4171
|
+
export type MutationUpdateDepotArgs = {
|
|
4172
|
+
input: DepotUpdate;
|
|
4173
|
+
};
|
|
4174
|
+
|
|
4175
|
+
|
|
4176
|
+
export type MutationUpdateDepotGroupArgs = {
|
|
4177
|
+
input: DepotGroupUpdate;
|
|
4178
|
+
};
|
|
4179
|
+
|
|
4180
|
+
|
|
3301
4181
|
export type MutationUpdateDocumentArgs = {
|
|
3302
4182
|
input?: InputMaybe<UpdateDocumentInput>;
|
|
3303
4183
|
};
|
|
3304
4184
|
|
|
3305
4185
|
|
|
4186
|
+
export type MutationUpdateDocumentFieldArgs = {
|
|
4187
|
+
input?: InputMaybe<DocumentFieldCreate>;
|
|
4188
|
+
};
|
|
4189
|
+
|
|
4190
|
+
|
|
4191
|
+
export type MutationUpdateEndpointArgs = {
|
|
4192
|
+
input: EndpointUpdate;
|
|
4193
|
+
};
|
|
4194
|
+
|
|
4195
|
+
|
|
4196
|
+
export type MutationUpdateEndpointQueueArgs = {
|
|
4197
|
+
input: EndpointQueueUpdate;
|
|
4198
|
+
};
|
|
4199
|
+
|
|
4200
|
+
|
|
4201
|
+
export type MutationUpdateEndpointSubscriptionArgs = {
|
|
4202
|
+
input: EndpointSubscriptionUpdate;
|
|
4203
|
+
};
|
|
4204
|
+
|
|
4205
|
+
|
|
4206
|
+
export type MutationUpdateEntityArgs = {
|
|
4207
|
+
input: EntityUpdate;
|
|
4208
|
+
};
|
|
4209
|
+
|
|
4210
|
+
|
|
4211
|
+
export type MutationUpdateEntityFieldArgs = {
|
|
4212
|
+
input: EntityFieldUpdate;
|
|
4213
|
+
};
|
|
4214
|
+
|
|
4215
|
+
|
|
3306
4216
|
export type MutationUpdateMappingArgs = {
|
|
3307
4217
|
mapping: Array<MappingFieldInput>;
|
|
3308
4218
|
};
|
|
@@ -3319,6 +4229,41 @@ export type MutationUpdateMediaTypeArgs = {
|
|
|
3319
4229
|
};
|
|
3320
4230
|
|
|
3321
4231
|
|
|
4232
|
+
export type MutationUpdateNotificationArgs = {
|
|
4233
|
+
input: NotificationUpdate;
|
|
4234
|
+
};
|
|
4235
|
+
|
|
4236
|
+
|
|
4237
|
+
export type MutationUpdateNotificationGroupArgs = {
|
|
4238
|
+
input: NotificationGroupUpdate;
|
|
4239
|
+
};
|
|
4240
|
+
|
|
4241
|
+
|
|
4242
|
+
export type MutationUpdateNotificationTemplateArgs = {
|
|
4243
|
+
input: NotificationTemplateUpdate;
|
|
4244
|
+
};
|
|
4245
|
+
|
|
4246
|
+
|
|
4247
|
+
export type MutationUpdateProcessArgs = {
|
|
4248
|
+
input: ProcessUpdate;
|
|
4249
|
+
};
|
|
4250
|
+
|
|
4251
|
+
|
|
4252
|
+
export type MutationUpdateProcessScheduleArgs = {
|
|
4253
|
+
input: ProcessScheduleUpdate;
|
|
4254
|
+
};
|
|
4255
|
+
|
|
4256
|
+
|
|
4257
|
+
export type MutationUpdateProcessTaskArgs = {
|
|
4258
|
+
input: ProcessTaskUpdate;
|
|
4259
|
+
};
|
|
4260
|
+
|
|
4261
|
+
|
|
4262
|
+
export type MutationUpdateProcessTaskLinkArgs = {
|
|
4263
|
+
input: ProcessTaskLinkUpdate;
|
|
4264
|
+
};
|
|
4265
|
+
|
|
4266
|
+
|
|
3322
4267
|
export type MutationUpdateProductArgs = {
|
|
3323
4268
|
input: UpdateProductInput;
|
|
3324
4269
|
};
|
|
@@ -3429,19 +4374,112 @@ export type NotificationConnection = {
|
|
|
3429
4374
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
3430
4375
|
};
|
|
3431
4376
|
|
|
4377
|
+
export type NotificationCreate = {
|
|
4378
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4379
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
4380
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4381
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4382
|
+
notificationGroupId: Scalars['ID']['input'];
|
|
4383
|
+
};
|
|
4384
|
+
|
|
3432
4385
|
export type NotificationEdge = {
|
|
3433
4386
|
__typename?: 'NotificationEdge';
|
|
3434
4387
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
3435
4388
|
node?: Maybe<Notification>;
|
|
3436
4389
|
};
|
|
3437
4390
|
|
|
3438
|
-
export type
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
4391
|
+
export type NotificationGroup = {
|
|
4392
|
+
__typename?: 'NotificationGroup';
|
|
4393
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
4394
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4395
|
+
created: Scalars['DateTime']['output'];
|
|
4396
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
4397
|
+
id: Scalars['ID']['output'];
|
|
4398
|
+
modified: Scalars['DateTime']['output'];
|
|
4399
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4400
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
4401
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
4402
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
4403
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
4404
|
+
};
|
|
4405
|
+
|
|
4406
|
+
export type NotificationGroupConnection = {
|
|
4407
|
+
__typename?: 'NotificationGroupConnection';
|
|
4408
|
+
edges: Array<NotificationGroupEdge>;
|
|
4409
|
+
nodes?: Maybe<Array<Maybe<NotificationGroup>>>;
|
|
4410
|
+
pageInfo: PageInfo;
|
|
4411
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
4412
|
+
};
|
|
4413
|
+
|
|
4414
|
+
export type NotificationGroupCreate = {
|
|
4415
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4416
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
4417
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4418
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4419
|
+
/** Specify new group's parent. If null, new group is root. */
|
|
4420
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
4421
|
+
};
|
|
4422
|
+
|
|
4423
|
+
export type NotificationGroupEdge = {
|
|
4424
|
+
__typename?: 'NotificationGroupEdge';
|
|
4425
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
4426
|
+
node: NotificationGroup;
|
|
4427
|
+
};
|
|
4428
|
+
|
|
4429
|
+
export type NotificationGroupTree = {
|
|
4430
|
+
__typename?: 'NotificationGroupTree';
|
|
4431
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
4432
|
+
children?: Maybe<Array<Maybe<NotificationGroupTree>>>;
|
|
4433
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4434
|
+
id: Scalars['ID']['output'];
|
|
4435
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
4436
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4437
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
4438
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
4439
|
+
};
|
|
4440
|
+
|
|
4441
|
+
export type NotificationGroupUpdate = {
|
|
4442
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4443
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
4444
|
+
id: Scalars['ID']['input'];
|
|
4445
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4446
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
4447
|
+
};
|
|
4448
|
+
|
|
4449
|
+
export type NotificationInput = {
|
|
4450
|
+
body: Scalars['String']['input'];
|
|
4451
|
+
contactId: Array<Scalars['ID']['input']>;
|
|
4452
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
4453
|
+
/** Optional notification type to insert. If not specified default type will be used. */
|
|
4454
|
+
notificationTypeCode?: InputMaybe<Scalars['String']['input']>;
|
|
4455
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
4456
|
+
};
|
|
4457
|
+
|
|
4458
|
+
export type NotificationIntegrate = {
|
|
4459
|
+
__typename?: 'NotificationIntegrate';
|
|
4460
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4461
|
+
created: Scalars['DateTime']['output'];
|
|
4462
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
4463
|
+
id: Scalars['ID']['output'];
|
|
4464
|
+
modified: Scalars['DateTime']['output'];
|
|
4465
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4466
|
+
notificationGroup: NotificationGroup;
|
|
4467
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
4468
|
+
status?: Maybe<Scalars['Int']['output']>;
|
|
4469
|
+
};
|
|
4470
|
+
|
|
4471
|
+
export type NotificationIntegrateConnection = {
|
|
4472
|
+
__typename?: 'NotificationIntegrateConnection';
|
|
4473
|
+
edges: Array<NotificationIntegrateEdge>;
|
|
4474
|
+
nodes?: Maybe<Array<Maybe<NotificationIntegrate>>>;
|
|
4475
|
+
pageInfo: PageInfo;
|
|
4476
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
4477
|
+
};
|
|
4478
|
+
|
|
4479
|
+
export type NotificationIntegrateEdge = {
|
|
4480
|
+
__typename?: 'NotificationIntegrateEdge';
|
|
4481
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
4482
|
+
node: NotificationIntegrate;
|
|
3445
4483
|
};
|
|
3446
4484
|
|
|
3447
4485
|
export type NotificationQueryInput = {
|
|
@@ -3453,17 +4491,119 @@ export type NotificationQueryInput = {
|
|
|
3453
4491
|
top?: InputMaybe<Scalars['Int']['input']>;
|
|
3454
4492
|
};
|
|
3455
4493
|
|
|
4494
|
+
export type NotificationTemplate = {
|
|
4495
|
+
__typename?: 'NotificationTemplate';
|
|
4496
|
+
attachment?: Maybe<Scalars['String']['output']>;
|
|
4497
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
4498
|
+
breadcrumbIds?: Maybe<Scalars['String']['output']>;
|
|
4499
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4500
|
+
created: Scalars['DateTime']['output'];
|
|
4501
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
4502
|
+
emailBcc?: Maybe<Scalars['String']['output']>;
|
|
4503
|
+
emailCc?: Maybe<Scalars['String']['output']>;
|
|
4504
|
+
emailFrom?: Maybe<Scalars['String']['output']>;
|
|
4505
|
+
emailReplyTo?: Maybe<Scalars['String']['output']>;
|
|
4506
|
+
emailTo?: Maybe<Scalars['String']['output']>;
|
|
4507
|
+
id: Scalars['ID']['output'];
|
|
4508
|
+
isHtml?: Maybe<Scalars['Int']['output']>;
|
|
4509
|
+
modified: Scalars['DateTime']['output'];
|
|
4510
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4511
|
+
notification: NotificationIntegrate;
|
|
4512
|
+
notificationTemplateType?: Maybe<NotificationTemplateType>;
|
|
4513
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
4514
|
+
populateStoredProcedure?: Maybe<Scalars['String']['output']>;
|
|
4515
|
+
rootId?: Maybe<Scalars['ID']['output']>;
|
|
4516
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
4517
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
4518
|
+
textTo?: Maybe<Scalars['String']['output']>;
|
|
4519
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
4520
|
+
};
|
|
4521
|
+
|
|
4522
|
+
export type NotificationTemplateCreate = {
|
|
4523
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4524
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
4525
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
4526
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4527
|
+
notificationId: Scalars['ID']['input'];
|
|
4528
|
+
notificationTemplateTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4529
|
+
/** Specify new group's parent. If null, new group is root. */
|
|
4530
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
4531
|
+
};
|
|
4532
|
+
|
|
4533
|
+
export type NotificationTemplateType = {
|
|
4534
|
+
__typename?: 'NotificationTemplateType';
|
|
4535
|
+
created: Scalars['DateTime']['output'];
|
|
4536
|
+
id: Scalars['ID']['output'];
|
|
4537
|
+
modified: Scalars['DateTime']['output'];
|
|
4538
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4539
|
+
};
|
|
4540
|
+
|
|
4541
|
+
export type NotificationTemplateUpdate = {
|
|
4542
|
+
attachment?: InputMaybe<Scalars['String']['input']>;
|
|
4543
|
+
body?: InputMaybe<Scalars['String']['input']>;
|
|
4544
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4545
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
4546
|
+
emailBcc?: InputMaybe<Scalars['String']['input']>;
|
|
4547
|
+
emailCc?: InputMaybe<Scalars['String']['input']>;
|
|
4548
|
+
emailFrom?: InputMaybe<Scalars['String']['input']>;
|
|
4549
|
+
emailReplyTo?: InputMaybe<Scalars['String']['input']>;
|
|
4550
|
+
emailTo?: InputMaybe<Scalars['String']['input']>;
|
|
4551
|
+
id: Scalars['ID']['input'];
|
|
4552
|
+
isHtml?: InputMaybe<Scalars['Int']['input']>;
|
|
4553
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4554
|
+
notificationId?: InputMaybe<Scalars['ID']['input']>;
|
|
4555
|
+
notificationTemplateTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
4556
|
+
populateStoredProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
4557
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
4558
|
+
subject?: InputMaybe<Scalars['String']['input']>;
|
|
4559
|
+
textTo?: InputMaybe<Scalars['String']['input']>;
|
|
4560
|
+
};
|
|
4561
|
+
|
|
3456
4562
|
export type NotificationType = {
|
|
3457
4563
|
__typename?: 'NotificationType';
|
|
3458
4564
|
code?: Maybe<Scalars['String']['output']>;
|
|
3459
4565
|
id: Scalars['ID']['output'];
|
|
3460
4566
|
};
|
|
3461
4567
|
|
|
4568
|
+
export type NotificationUpdate = {
|
|
4569
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
4570
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
4571
|
+
id: Scalars['ID']['input'];
|
|
4572
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4573
|
+
notificationGroupId?: InputMaybe<Scalars['ID']['input']>;
|
|
4574
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
4575
|
+
status?: InputMaybe<Scalars['Int']['input']>;
|
|
4576
|
+
};
|
|
4577
|
+
|
|
3462
4578
|
export type ODataFilter = {
|
|
3463
4579
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
3464
4580
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
3465
4581
|
};
|
|
3466
4582
|
|
|
4583
|
+
export type OrchestrationType = {
|
|
4584
|
+
__typename?: 'OrchestrationType';
|
|
4585
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4586
|
+
created: Scalars['DateTime']['output'];
|
|
4587
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
4588
|
+
id: Scalars['ID']['output'];
|
|
4589
|
+
modified: Scalars['DateTime']['output'];
|
|
4590
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4591
|
+
};
|
|
4592
|
+
|
|
4593
|
+
export type OrchestrationTypeConnection = {
|
|
4594
|
+
__typename?: 'OrchestrationTypeConnection';
|
|
4595
|
+
edges: Array<OrchestrationTypeEdge>;
|
|
4596
|
+
nodes?: Maybe<Array<Maybe<OrchestrationType>>>;
|
|
4597
|
+
pageInfo: PageInfo;
|
|
4598
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
4599
|
+
};
|
|
4600
|
+
|
|
4601
|
+
export type OrchestrationTypeEdge = {
|
|
4602
|
+
__typename?: 'OrchestrationTypeEdge';
|
|
4603
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
4604
|
+
node: OrchestrationType;
|
|
4605
|
+
};
|
|
4606
|
+
|
|
3467
4607
|
export type Order = {
|
|
3468
4608
|
__typename?: 'Order';
|
|
3469
4609
|
account: Account;
|
|
@@ -3576,6 +4716,25 @@ export type PageInfo = {
|
|
|
3576
4716
|
top?: Maybe<Scalars['Int']['output']>;
|
|
3577
4717
|
};
|
|
3578
4718
|
|
|
4719
|
+
/** Extended PageInfo type that includes executionStatusIds and dateRange, for ProcessExecutionConnection */
|
|
4720
|
+
export type PageInfoProcessExecution = {
|
|
4721
|
+
__typename?: 'PageInfoProcessExecution';
|
|
4722
|
+
currentPage: Scalars['Int']['output'];
|
|
4723
|
+
dateRange?: Maybe<DateRange>;
|
|
4724
|
+
endCursor: Scalars['String']['output'];
|
|
4725
|
+
executionStatusIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
4726
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4727
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4728
|
+
pages: Array<Page>;
|
|
4729
|
+
resultsReturned: Scalars['Int']['output'];
|
|
4730
|
+
search?: Maybe<Scalars['String']['output']>;
|
|
4731
|
+
skip?: Maybe<Scalars['Int']['output']>;
|
|
4732
|
+
sort?: Maybe<Scalars['String']['output']>;
|
|
4733
|
+
sortDesc?: Maybe<Scalars['Boolean']['output']>;
|
|
4734
|
+
startCursor: Scalars['String']['output'];
|
|
4735
|
+
top?: Maybe<Scalars['Int']['output']>;
|
|
4736
|
+
};
|
|
4737
|
+
|
|
3579
4738
|
export type PaginationSettings = {
|
|
3580
4739
|
__typename?: 'PaginationSettings';
|
|
3581
4740
|
resultsPerPage?: Maybe<Scalars['String']['output']>;
|
|
@@ -3625,6 +4784,30 @@ export type PaymentsSettings = {
|
|
|
3625
4784
|
paymentProviders?: Maybe<Scalars['String']['output']>;
|
|
3626
4785
|
};
|
|
3627
4786
|
|
|
4787
|
+
export type PerformanceTracker = {
|
|
4788
|
+
__typename?: 'PerformanceTracker';
|
|
4789
|
+
interval?: Maybe<Scalars['Int']['output']>;
|
|
4790
|
+
/** Unit of interval (e.g. seconds) 0 = s, 1 = m, 2 = h */
|
|
4791
|
+
intervalUnit?: Maybe<Scalars['Int']['output']>;
|
|
4792
|
+
performanceTracker?: Maybe<Array<Maybe<PerformanceTrackerUnit>>>;
|
|
4793
|
+
/** e.g. 45m, 24h */
|
|
4794
|
+
period?: Maybe<Scalars['String']['output']>;
|
|
4795
|
+
};
|
|
4796
|
+
|
|
4797
|
+
export type PerformanceTrackerUnit = {
|
|
4798
|
+
__typename?: 'PerformanceTrackerUnit';
|
|
4799
|
+
/** Processes created within interval */
|
|
4800
|
+
created?: Maybe<Scalars['Int']['output']>;
|
|
4801
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4802
|
+
/** Processes executed completely within interval (succeeded + failed) */
|
|
4803
|
+
executed?: Maybe<Scalars['Int']['output']>;
|
|
4804
|
+
/** Process executions errored within interval */
|
|
4805
|
+
failed?: Maybe<Scalars['Int']['output']>;
|
|
4806
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
4807
|
+
/** Process executions completed successfully within interval */
|
|
4808
|
+
succeeded?: Maybe<Scalars['Int']['output']>;
|
|
4809
|
+
};
|
|
4810
|
+
|
|
3628
4811
|
export type Phone = Node & {
|
|
3629
4812
|
__typename?: 'Phone';
|
|
3630
4813
|
account: Account;
|
|
@@ -3791,19 +4974,459 @@ export type PriceMethodConnection = {
|
|
|
3791
4974
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
3792
4975
|
};
|
|
3793
4976
|
|
|
3794
|
-
export type PriceMethodEdge = {
|
|
3795
|
-
__typename?: 'PriceMethodEdge';
|
|
3796
|
-
cursor: Scalars['String']['output'];
|
|
3797
|
-
node?: Maybe<PriceMethod>;
|
|
4977
|
+
export type PriceMethodEdge = {
|
|
4978
|
+
__typename?: 'PriceMethodEdge';
|
|
4979
|
+
cursor: Scalars['String']['output'];
|
|
4980
|
+
node?: Maybe<PriceMethod>;
|
|
4981
|
+
};
|
|
4982
|
+
|
|
4983
|
+
export type PriceMethodInput = {
|
|
4984
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4985
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
4986
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
4987
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
4988
|
+
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4989
|
+
top?: InputMaybe<Scalars['Int']['input']>;
|
|
4990
|
+
};
|
|
4991
|
+
|
|
4992
|
+
export type Process = {
|
|
4993
|
+
__typename?: 'Process';
|
|
4994
|
+
allowParallelProcessExecution?: Maybe<Scalars['Int']['output']>;
|
|
4995
|
+
allowParallelTaskExecution?: Maybe<Scalars['Int']['output']>;
|
|
4996
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
4997
|
+
created: Scalars['DateTime']['output'];
|
|
4998
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
4999
|
+
id: Scalars['ID']['output'];
|
|
5000
|
+
maxConcurrentExecutions?: Maybe<Scalars['Int']['output']>;
|
|
5001
|
+
maxRetryAttempts: Scalars['Int']['output'];
|
|
5002
|
+
modified: Scalars['DateTime']['output'];
|
|
5003
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5004
|
+
nextExecutionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5005
|
+
orchestratorInstanceId?: Maybe<Scalars['ID']['output']>;
|
|
5006
|
+
previousExecutionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5007
|
+
timeout?: Maybe<Scalars['Int']['output']>;
|
|
5008
|
+
};
|
|
5009
|
+
|
|
5010
|
+
export type ProcessConnection = {
|
|
5011
|
+
__typename?: 'ProcessConnection';
|
|
5012
|
+
edges: Array<ProcessEdge>;
|
|
5013
|
+
nodes?: Maybe<Array<Maybe<Process>>>;
|
|
5014
|
+
pageInfo: PageInfo;
|
|
5015
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5016
|
+
};
|
|
5017
|
+
|
|
5018
|
+
export type ProcessCreate = {
|
|
5019
|
+
allowParallelProcessExecution?: InputMaybe<Scalars['Int']['input']>;
|
|
5020
|
+
allowParallelTaskExecution?: InputMaybe<Scalars['Int']['input']>;
|
|
5021
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5022
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
5023
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5024
|
+
maxConcurrentExecutions?: InputMaybe<Scalars['Int']['input']>;
|
|
5025
|
+
maxRetryAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
5026
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5027
|
+
orchestratorInstanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
5028
|
+
};
|
|
5029
|
+
|
|
5030
|
+
export type ProcessEdge = {
|
|
5031
|
+
__typename?: 'ProcessEdge';
|
|
5032
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5033
|
+
node: Process;
|
|
5034
|
+
};
|
|
5035
|
+
|
|
5036
|
+
export type ProcessExecution = {
|
|
5037
|
+
__typename?: 'ProcessExecution';
|
|
5038
|
+
allowParallelProcessExecution?: Maybe<Scalars['Int']['output']>;
|
|
5039
|
+
allowParallelTaskExecution?: Maybe<Scalars['Int']['output']>;
|
|
5040
|
+
attempt: Scalars['Int']['output'];
|
|
5041
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5042
|
+
copyFromId?: Maybe<Scalars['ID']['output']>;
|
|
5043
|
+
created: Scalars['DateTime']['output'];
|
|
5044
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5045
|
+
executionStatus?: Maybe<ExecutionStatus>;
|
|
5046
|
+
executionStatusMessage?: Maybe<Scalars['String']['output']>;
|
|
5047
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5048
|
+
id: Scalars['ID']['output'];
|
|
5049
|
+
messageSize?: Maybe<Scalars['Float']['output']>;
|
|
5050
|
+
modified: Scalars['DateTime']['output'];
|
|
5051
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5052
|
+
process?: Maybe<Process>;
|
|
5053
|
+
processBatchId?: Maybe<Scalars['ID']['output']>;
|
|
5054
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5055
|
+
retryProcessBatchId?: Maybe<Scalars['ID']['output']>;
|
|
5056
|
+
scheduledDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5057
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5058
|
+
timeout?: Maybe<Scalars['Int']['output']>;
|
|
5059
|
+
};
|
|
5060
|
+
|
|
5061
|
+
export type ProcessExecutionConnection = {
|
|
5062
|
+
__typename?: 'ProcessExecutionConnection';
|
|
5063
|
+
edges: Array<ProcessExecutionEdge>;
|
|
5064
|
+
nodes?: Maybe<Array<Maybe<ProcessExecution>>>;
|
|
5065
|
+
pageInfo: PageInfoProcessExecution;
|
|
5066
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5067
|
+
};
|
|
5068
|
+
|
|
5069
|
+
export type ProcessExecutionDetails = {
|
|
5070
|
+
__typename?: 'ProcessExecutionDetails';
|
|
5071
|
+
allowParallelProcessExecution?: Maybe<Scalars['Int']['output']>;
|
|
5072
|
+
allowParallelTaskExecution?: Maybe<Scalars['Int']['output']>;
|
|
5073
|
+
attempt: Scalars['Int']['output'];
|
|
5074
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5075
|
+
copyFromId?: Maybe<Scalars['ID']['output']>;
|
|
5076
|
+
created: Scalars['DateTime']['output'];
|
|
5077
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5078
|
+
executionStatus?: Maybe<ExecutionStatus>;
|
|
5079
|
+
executionStatusMessage?: Maybe<Scalars['String']['output']>;
|
|
5080
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5081
|
+
id: Scalars['ID']['output'];
|
|
5082
|
+
messageSize?: Maybe<Scalars['Float']['output']>;
|
|
5083
|
+
modified: Scalars['DateTime']['output'];
|
|
5084
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5085
|
+
processTaskExecutions?: Maybe<Array<Maybe<ProcessTaskExecution>>>;
|
|
5086
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5087
|
+
retryProcessBatchId?: Maybe<Scalars['ID']['output']>;
|
|
5088
|
+
scheduledDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5089
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5090
|
+
timeout?: Maybe<Scalars['Int']['output']>;
|
|
5091
|
+
};
|
|
5092
|
+
|
|
5093
|
+
export type ProcessExecutionEdge = {
|
|
5094
|
+
__typename?: 'ProcessExecutionEdge';
|
|
5095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5096
|
+
node: ProcessExecution;
|
|
5097
|
+
};
|
|
5098
|
+
|
|
5099
|
+
export type ProcessExecutionInput = {
|
|
5100
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5101
|
+
dateRange?: InputMaybe<DateRangeInput>;
|
|
5102
|
+
executionStatusIds?: InputMaybe<Array<InputMaybe<Scalars['Int']['input']>>>;
|
|
5103
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
5104
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
5105
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
5106
|
+
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5107
|
+
top?: InputMaybe<Scalars['Int']['input']>;
|
|
5108
|
+
};
|
|
5109
|
+
|
|
5110
|
+
export type ProcessExport = {
|
|
5111
|
+
__typename?: 'ProcessExport';
|
|
5112
|
+
AllowParallelProcessExecution?: Maybe<Scalars['Boolean']['output']>;
|
|
5113
|
+
AllowParallelTaskExecution?: Maybe<Scalars['Boolean']['output']>;
|
|
5114
|
+
EndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5115
|
+
MaxConcurrentExecutions?: Maybe<Scalars['Int']['output']>;
|
|
5116
|
+
MaxRetryAttempts?: Maybe<Scalars['Int']['output']>;
|
|
5117
|
+
OrchestratorInstanceId?: Maybe<Scalars['ID']['output']>;
|
|
5118
|
+
Process?: Maybe<Scalars['String']['output']>;
|
|
5119
|
+
ProcessId?: Maybe<Scalars['ID']['output']>;
|
|
5120
|
+
ProcessScheduleId?: Maybe<Scalars['ID']['output']>;
|
|
5121
|
+
ProcessTasks?: Maybe<Array<Maybe<ProcessTaskExport>>>;
|
|
5122
|
+
SchedulePeriod?: Maybe<Scalars['String']['output']>;
|
|
5123
|
+
StartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5124
|
+
};
|
|
5125
|
+
|
|
5126
|
+
export type ProcessImport = {
|
|
5127
|
+
AllowParallelProcessExecution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5128
|
+
AllowParallelTaskExecution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
5129
|
+
EndDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5130
|
+
MaxConcurrentExecutions?: InputMaybe<Scalars['Int']['input']>;
|
|
5131
|
+
MaxRetryAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
5132
|
+
OrchestratorInstanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
5133
|
+
Process?: InputMaybe<Scalars['String']['input']>;
|
|
5134
|
+
ProcessId?: InputMaybe<Scalars['ID']['input']>;
|
|
5135
|
+
ProcessScheduleId?: InputMaybe<Scalars['ID']['input']>;
|
|
5136
|
+
/** If a ProcessTask of a separate Process is included, it is updated to be under this Process. */
|
|
5137
|
+
ProcessTasks?: InputMaybe<Array<InputMaybe<ProcessTaskImport>>>;
|
|
5138
|
+
SchedulePeriod?: InputMaybe<Scalars['String']['input']>;
|
|
5139
|
+
StartDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5140
|
+
};
|
|
5141
|
+
|
|
5142
|
+
export type ProcessSchedule = {
|
|
5143
|
+
__typename?: 'ProcessSchedule';
|
|
5144
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5145
|
+
created: Scalars['DateTime']['output'];
|
|
5146
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5147
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5148
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5149
|
+
id: Scalars['ID']['output'];
|
|
5150
|
+
interval?: Maybe<Scalars['Int']['output']>;
|
|
5151
|
+
intervalTypeId?: Maybe<Scalars['ID']['output']>;
|
|
5152
|
+
intervalUnit?: Maybe<Scalars['String']['output']>;
|
|
5153
|
+
intervalUnitId?: Maybe<Scalars['ID']['output']>;
|
|
5154
|
+
isFriday?: Maybe<Scalars['Int']['output']>;
|
|
5155
|
+
isMonday?: Maybe<Scalars['Int']['output']>;
|
|
5156
|
+
isSaturday?: Maybe<Scalars['Int']['output']>;
|
|
5157
|
+
isSunday?: Maybe<Scalars['Int']['output']>;
|
|
5158
|
+
isThursday?: Maybe<Scalars['Int']['output']>;
|
|
5159
|
+
isTuesday?: Maybe<Scalars['Int']['output']>;
|
|
5160
|
+
isWednesday?: Maybe<Scalars['Int']['output']>;
|
|
5161
|
+
modified: Scalars['DateTime']['output'];
|
|
5162
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5163
|
+
nextExecutionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5164
|
+
onceDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
5165
|
+
previousExecutionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5166
|
+
process: Process;
|
|
5167
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5168
|
+
};
|
|
5169
|
+
|
|
5170
|
+
export type ProcessScheduleConnection = {
|
|
5171
|
+
__typename?: 'ProcessScheduleConnection';
|
|
5172
|
+
edges: Array<ProcessScheduleEdge>;
|
|
5173
|
+
nodes?: Maybe<Array<Maybe<ProcessSchedule>>>;
|
|
5174
|
+
pageInfo: PageInfo;
|
|
5175
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5176
|
+
};
|
|
5177
|
+
|
|
5178
|
+
export type ProcessScheduleCreate = {
|
|
5179
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5180
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5181
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
5182
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5183
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
5184
|
+
intervalTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5185
|
+
intervalUnitId?: InputMaybe<Scalars['ID']['input']>;
|
|
5186
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5187
|
+
processId: Scalars['ID']['input'];
|
|
5188
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5189
|
+
};
|
|
5190
|
+
|
|
5191
|
+
export type ProcessScheduleEdge = {
|
|
5192
|
+
__typename?: 'ProcessScheduleEdge';
|
|
5193
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5194
|
+
node: ProcessSchedule;
|
|
5195
|
+
};
|
|
5196
|
+
|
|
5197
|
+
export type ProcessScheduleUpdate = {
|
|
5198
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5199
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5200
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5201
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
5202
|
+
id: Scalars['ID']['input'];
|
|
5203
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
5204
|
+
intervalTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5205
|
+
intervalUnit?: InputMaybe<Scalars['String']['input']>;
|
|
5206
|
+
intervalUnitId?: InputMaybe<Scalars['ID']['input']>;
|
|
5207
|
+
isFriday?: InputMaybe<Scalars['Int']['input']>;
|
|
5208
|
+
isMonday?: InputMaybe<Scalars['Int']['input']>;
|
|
5209
|
+
isSaturday?: InputMaybe<Scalars['Int']['input']>;
|
|
5210
|
+
isSunday?: InputMaybe<Scalars['Int']['input']>;
|
|
5211
|
+
isThursday?: InputMaybe<Scalars['Int']['input']>;
|
|
5212
|
+
isTuesday?: InputMaybe<Scalars['Int']['input']>;
|
|
5213
|
+
isWednesday?: InputMaybe<Scalars['Int']['input']>;
|
|
5214
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5215
|
+
nextExecutionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5216
|
+
onceDateTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5217
|
+
previousExecutionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5218
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5219
|
+
};
|
|
5220
|
+
|
|
5221
|
+
export type ProcessTask = {
|
|
5222
|
+
__typename?: 'ProcessTask';
|
|
5223
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5224
|
+
created: Scalars['DateTime']['output'];
|
|
5225
|
+
endpoint?: Maybe<Endpoint>;
|
|
5226
|
+
executionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5227
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5228
|
+
id: Scalars['ID']['output'];
|
|
5229
|
+
maxEndpointMessageAttempts?: Maybe<Scalars['Int']['output']>;
|
|
5230
|
+
modified: Scalars['DateTime']['output'];
|
|
5231
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5232
|
+
orchestrationType?: Maybe<OrchestrationType>;
|
|
5233
|
+
parallelProcessingGroup?: Maybe<Scalars['Int']['output']>;
|
|
5234
|
+
params?: Maybe<Scalars['JSON']['output']>;
|
|
5235
|
+
postExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5236
|
+
preExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5237
|
+
process: Process;
|
|
5238
|
+
processTaskType?: Maybe<ProcessTaskType>;
|
|
5239
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
5240
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
5241
|
+
};
|
|
5242
|
+
|
|
5243
|
+
export type ProcessTaskConnection = {
|
|
5244
|
+
__typename?: 'ProcessTaskConnection';
|
|
5245
|
+
edges: Array<ProcessTaskEdge>;
|
|
5246
|
+
nodes?: Maybe<Array<Maybe<ProcessTask>>>;
|
|
5247
|
+
pageInfo: PageInfo;
|
|
5248
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5249
|
+
};
|
|
5250
|
+
|
|
5251
|
+
export type ProcessTaskCreate = {
|
|
5252
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5253
|
+
endpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
5254
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
5255
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5256
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5257
|
+
orchestrationTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5258
|
+
parallelProcessingGroup?: InputMaybe<Scalars['Int']['input']>;
|
|
5259
|
+
params?: InputMaybe<Scalars['String']['input']>;
|
|
5260
|
+
postExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5261
|
+
preExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5262
|
+
processId: Scalars['ID']['input'];
|
|
5263
|
+
processTaskTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5264
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
5265
|
+
};
|
|
5266
|
+
|
|
5267
|
+
export type ProcessTaskEdge = {
|
|
5268
|
+
__typename?: 'ProcessTaskEdge';
|
|
5269
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5270
|
+
node: ProcessTask;
|
|
5271
|
+
};
|
|
5272
|
+
|
|
5273
|
+
export type ProcessTaskExecution = {
|
|
5274
|
+
__typename?: 'ProcessTaskExecution';
|
|
5275
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5276
|
+
copyFromId?: Maybe<Scalars['ID']['output']>;
|
|
5277
|
+
created: Scalars['DateTime']['output'];
|
|
5278
|
+
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5279
|
+
endpoint?: Maybe<Endpoint>;
|
|
5280
|
+
executionStatus?: Maybe<ExecutionStatus>;
|
|
5281
|
+
executionStatusMessage?: Maybe<Scalars['String']['output']>;
|
|
5282
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5283
|
+
id: Scalars['ID']['output'];
|
|
5284
|
+
maxEndpointMessageAttempts?: Maybe<Scalars['Int']['output']>;
|
|
5285
|
+
messageSize?: Maybe<Scalars['Int']['output']>;
|
|
5286
|
+
modified: Scalars['DateTime']['output'];
|
|
5287
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5288
|
+
orchestrationType?: Maybe<OrchestrationType>;
|
|
5289
|
+
parallelProcessingGroup?: Maybe<Scalars['Int']['output']>;
|
|
5290
|
+
params?: Maybe<Scalars['String']['output']>;
|
|
5291
|
+
postExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5292
|
+
preExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5293
|
+
processExecution?: Maybe<ProcessExecution>;
|
|
5294
|
+
processTask?: Maybe<ProcessTask>;
|
|
5295
|
+
processTaskType?: Maybe<ProcessTaskType>;
|
|
5296
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5297
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
5298
|
+
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5299
|
+
};
|
|
5300
|
+
|
|
5301
|
+
export type ProcessTaskExport = {
|
|
5302
|
+
__typename?: 'ProcessTaskExport';
|
|
5303
|
+
Endpoint?: Maybe<Scalars['String']['output']>;
|
|
5304
|
+
OrchestrationType?: Maybe<Scalars['String']['output']>;
|
|
5305
|
+
ParallelProcessingGroup?: Maybe<Scalars['Int']['output']>;
|
|
5306
|
+
Params?: Maybe<Scalars['String']['output']>;
|
|
5307
|
+
PostExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5308
|
+
PreExecutionProcedure?: Maybe<Scalars['String']['output']>;
|
|
5309
|
+
ProcessTask?: Maybe<Scalars['String']['output']>;
|
|
5310
|
+
ProcessTaskId?: Maybe<Scalars['ID']['output']>;
|
|
5311
|
+
ProcessTaskType?: Maybe<Scalars['String']['output']>;
|
|
5312
|
+
Sort?: Maybe<Scalars['Int']['output']>;
|
|
5313
|
+
};
|
|
5314
|
+
|
|
5315
|
+
export type ProcessTaskImport = {
|
|
5316
|
+
Endpoint?: InputMaybe<Scalars['String']['input']>;
|
|
5317
|
+
OrchestrationType?: InputMaybe<Scalars['String']['input']>;
|
|
5318
|
+
ParallelProcessingGroup?: InputMaybe<Scalars['Int']['input']>;
|
|
5319
|
+
Params?: InputMaybe<Scalars['String']['input']>;
|
|
5320
|
+
PostExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5321
|
+
PreExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5322
|
+
ProcessTask?: InputMaybe<Scalars['String']['input']>;
|
|
5323
|
+
ProcessTaskId?: InputMaybe<Scalars['ID']['input']>;
|
|
5324
|
+
ProcessTaskType?: InputMaybe<Scalars['String']['input']>;
|
|
5325
|
+
Sort?: InputMaybe<Scalars['Int']['input']>;
|
|
5326
|
+
};
|
|
5327
|
+
|
|
5328
|
+
export type ProcessTaskLink = {
|
|
5329
|
+
__typename?: 'ProcessTaskLink';
|
|
5330
|
+
created: Scalars['DateTime']['output'];
|
|
5331
|
+
criteria?: Maybe<Scalars['String']['output']>;
|
|
5332
|
+
destinationFlowId?: Maybe<Scalars['ID']['output']>;
|
|
5333
|
+
destinationTask?: Maybe<ProcessTask>;
|
|
5334
|
+
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
5335
|
+
id: Scalars['ID']['output'];
|
|
5336
|
+
modified: Scalars['DateTime']['output'];
|
|
5337
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
5338
|
+
sourceFlowId?: Maybe<Scalars['ID']['output']>;
|
|
5339
|
+
sourceTask?: Maybe<ProcessTask>;
|
|
5340
|
+
};
|
|
5341
|
+
|
|
5342
|
+
export type ProcessTaskLinkConnection = {
|
|
5343
|
+
__typename?: 'ProcessTaskLinkConnection';
|
|
5344
|
+
edges: Array<ProcessTaskLinkEdge>;
|
|
5345
|
+
nodes?: Maybe<Array<Maybe<ProcessTaskLink>>>;
|
|
5346
|
+
pageInfo: PageInfo;
|
|
5347
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5348
|
+
};
|
|
5349
|
+
|
|
5350
|
+
export type ProcessTaskLinkCreate = {
|
|
5351
|
+
destinationTaskId: Scalars['ID']['input'];
|
|
5352
|
+
/** New entry uses this ID. If omitted, generates a random ID. Make sure the ID is not in use already! */
|
|
5353
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
5354
|
+
sourceTaskId: Scalars['ID']['input'];
|
|
5355
|
+
};
|
|
5356
|
+
|
|
5357
|
+
export type ProcessTaskLinkEdge = {
|
|
5358
|
+
__typename?: 'ProcessTaskLinkEdge';
|
|
5359
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5360
|
+
node: ProcessTaskLink;
|
|
5361
|
+
};
|
|
5362
|
+
|
|
5363
|
+
export type ProcessTaskLinkUpdate = {
|
|
5364
|
+
criteria?: InputMaybe<Scalars['String']['input']>;
|
|
5365
|
+
destinationFlowId?: InputMaybe<Scalars['ID']['input']>;
|
|
5366
|
+
destinationTaskId?: InputMaybe<Scalars['ID']['input']>;
|
|
5367
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
5368
|
+
id: Scalars['ID']['input'];
|
|
5369
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
5370
|
+
sourceFlowId?: InputMaybe<Scalars['ID']['input']>;
|
|
5371
|
+
sourceTaskId?: InputMaybe<Scalars['ID']['input']>;
|
|
5372
|
+
};
|
|
5373
|
+
|
|
5374
|
+
export type ProcessTaskType = {
|
|
5375
|
+
__typename?: 'ProcessTaskType';
|
|
5376
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
5377
|
+
created: Scalars['DateTime']['output'];
|
|
5378
|
+
id: Scalars['ID']['output'];
|
|
5379
|
+
modified: Scalars['DateTime']['output'];
|
|
5380
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5381
|
+
paramSchema?: Maybe<Scalars['JSON']['output']>;
|
|
5382
|
+
};
|
|
5383
|
+
|
|
5384
|
+
export type ProcessTaskTypeConnection = {
|
|
5385
|
+
__typename?: 'ProcessTaskTypeConnection';
|
|
5386
|
+
edges: Array<ProcessTaskTypeEdge>;
|
|
5387
|
+
nodes?: Maybe<Array<Maybe<ProcessTaskType>>>;
|
|
5388
|
+
pageInfo: PageInfo;
|
|
5389
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5390
|
+
};
|
|
5391
|
+
|
|
5392
|
+
export type ProcessTaskTypeEdge = {
|
|
5393
|
+
__typename?: 'ProcessTaskTypeEdge';
|
|
5394
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
5395
|
+
node: ProcessTaskType;
|
|
3798
5396
|
};
|
|
3799
5397
|
|
|
3800
|
-
export type
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
|
-
|
|
5398
|
+
export type ProcessTaskUpdate = {
|
|
5399
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5400
|
+
endpointId?: InputMaybe<Scalars['ID']['input']>;
|
|
5401
|
+
executionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5402
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
5403
|
+
id: Scalars['ID']['input'];
|
|
5404
|
+
maxEndpointMessageAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
5405
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5406
|
+
orchestrationTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5407
|
+
parallelProcessingGroup?: InputMaybe<Scalars['Int']['input']>;
|
|
5408
|
+
params?: InputMaybe<Scalars['JSON']['input']>;
|
|
5409
|
+
postExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5410
|
+
preExecutionProcedure?: InputMaybe<Scalars['String']['input']>;
|
|
5411
|
+
processId?: InputMaybe<Scalars['ID']['input']>;
|
|
5412
|
+
processTaskTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5413
|
+
properties?: InputMaybe<Scalars['String']['input']>;
|
|
5414
|
+
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
5415
|
+
};
|
|
5416
|
+
|
|
5417
|
+
export type ProcessUpdate = {
|
|
5418
|
+
allowParallelProcessExecution?: InputMaybe<Scalars['Int']['input']>;
|
|
5419
|
+
allowParallelTaskExecution?: InputMaybe<Scalars['Int']['input']>;
|
|
5420
|
+
code?: InputMaybe<Scalars['String']['input']>;
|
|
5421
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
5422
|
+
id: Scalars['ID']['input'];
|
|
5423
|
+
maxConcurrentExecutions?: InputMaybe<Scalars['Int']['input']>;
|
|
5424
|
+
maxRetryAttempts?: InputMaybe<Scalars['Int']['input']>;
|
|
5425
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5426
|
+
nextExecutionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5427
|
+
orchestratorInstanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
5428
|
+
previousExecutionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
5429
|
+
timeout?: InputMaybe<Scalars['Int']['input']>;
|
|
3807
5430
|
};
|
|
3808
5431
|
|
|
3809
5432
|
export type Product = Node & {
|
|
@@ -3994,6 +5617,7 @@ export type ProductStatusMutationResponse = MutationResponse & {
|
|
|
3994
5617
|
};
|
|
3995
5618
|
|
|
3996
5619
|
export type ProductTypeaheadInput = {
|
|
5620
|
+
categoryId?: InputMaybe<Scalars['String']['input']>;
|
|
3997
5621
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
3998
5622
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
3999
5623
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -4121,6 +5745,12 @@ export type Query = {
|
|
|
4121
5745
|
claims?: Maybe<Array<Maybe<Claim>>>;
|
|
4122
5746
|
claimsByRoleId?: Maybe<Array<Maybe<Claim>>>;
|
|
4123
5747
|
claimsByUserId?: Maybe<Array<Maybe<Claim>>>;
|
|
5748
|
+
/**
|
|
5749
|
+
* Generate and export configuration as an object containing Depots, Entities, Endpoints, Processes.
|
|
5750
|
+
* processId specifies which Process to generate config for (default exports for all processes).
|
|
5751
|
+
* includeIds specifies whether to export ids (default does not export ids).
|
|
5752
|
+
*/
|
|
5753
|
+
configurationExport?: Maybe<ConfigExport>;
|
|
4124
5754
|
contact?: Maybe<Contact>;
|
|
4125
5755
|
contacts?: Maybe<ContactsConnection>;
|
|
4126
5756
|
contactsByType?: Maybe<ContactsConnection>;
|
|
@@ -4128,8 +5758,32 @@ export type Query = {
|
|
|
4128
5758
|
countries?: Maybe<Array<Country>>;
|
|
4129
5759
|
country?: Maybe<Country>;
|
|
4130
5760
|
currentPayment?: Maybe<CartPaymentToken>;
|
|
5761
|
+
depotById?: Maybe<Depot>;
|
|
5762
|
+
depotGroupById?: Maybe<DepotGroup>;
|
|
4131
5763
|
digitalInstanceList?: Maybe<Array<Maybe<DigitalInstance>>>;
|
|
4132
5764
|
digitalInstanceRead?: Maybe<DigitalInstance>;
|
|
5765
|
+
documentById?: Maybe<Document>;
|
|
5766
|
+
documentFieldById?: Maybe<DocumentField>;
|
|
5767
|
+
documentFieldsByDocument?: Maybe<Array<Maybe<DocumentField>>>;
|
|
5768
|
+
documentGroupById?: Maybe<DocumentGroup>;
|
|
5769
|
+
documentTypeById?: Maybe<DocumentType>;
|
|
5770
|
+
endpointById?: Maybe<Endpoint>;
|
|
5771
|
+
endpointQueueById?: Maybe<EndpointQueue>;
|
|
5772
|
+
endpointQueueStatusById?: Maybe<EndpointQueueStatus>;
|
|
5773
|
+
endpointQueues?: Maybe<Array<Maybe<EndpointQueue>>>;
|
|
5774
|
+
endpointStatusById?: Maybe<EndpointStatus>;
|
|
5775
|
+
endpointSubscriptionById?: Maybe<EndpointSubscription>;
|
|
5776
|
+
endpointSubscriptionsByQueue?: Maybe<Array<Maybe<EndpointSubscription>>>;
|
|
5777
|
+
endpointTypeById?: Maybe<EndpointType>;
|
|
5778
|
+
endpoints?: Maybe<EndpointConnection>;
|
|
5779
|
+
entityById?: Maybe<Entity>;
|
|
5780
|
+
entityFieldById?: Maybe<EntityField>;
|
|
5781
|
+
entityFieldsByEntity?: Maybe<Array<Maybe<EntityField>>>;
|
|
5782
|
+
entityGroupById?: Maybe<EntityGroup>;
|
|
5783
|
+
entityTypeById?: Maybe<EntityType>;
|
|
5784
|
+
executionStatusById?: Maybe<ExecutionStatus>;
|
|
5785
|
+
fieldTypeById?: Maybe<FieldType>;
|
|
5786
|
+
fieldTypes?: Maybe<Array<Maybe<FieldType>>>;
|
|
4133
5787
|
getAddress?: Maybe<Address>;
|
|
4134
5788
|
getAddressCount: Scalars['Int']['output'];
|
|
4135
5789
|
getAddresses: Array<Maybe<Address>>;
|
|
@@ -4180,8 +5834,35 @@ export type Query = {
|
|
|
4180
5834
|
linkedAccounts?: Maybe<AccountConnection>;
|
|
4181
5835
|
mapping: Array<MappingField>;
|
|
4182
5836
|
me?: Maybe<Me>;
|
|
5837
|
+
notificationById?: Maybe<NotificationIntegrate>;
|
|
5838
|
+
notificationGroupById?: Maybe<NotificationGroup>;
|
|
5839
|
+
notificationGroupTree?: Maybe<NotificationGroupTree>;
|
|
5840
|
+
notificationGroups?: Maybe<NotificationGroupConnection>;
|
|
5841
|
+
/** Get all notification groups in this group's subtree, excluding itself. */
|
|
5842
|
+
notificationGroupsAllChildren?: Maybe<Array<Maybe<NotificationGroup>>>;
|
|
5843
|
+
notificationGroupsByParent?: Maybe<NotificationGroupConnection>;
|
|
5844
|
+
notificationTemplateById?: Maybe<NotificationTemplate>;
|
|
5845
|
+
notificationTemplateTypeById?: Maybe<NotificationTemplateType>;
|
|
5846
|
+
notificationTemplateTypes?: Maybe<Array<Maybe<NotificationTemplateType>>>;
|
|
5847
|
+
notificationTemplates?: Maybe<Array<Maybe<NotificationTemplate>>>;
|
|
5848
|
+
/** Get all notification templates in this template's subtree, excluding itself. */
|
|
5849
|
+
notificationTemplatesAllChildren?: Maybe<Array<Maybe<NotificationTemplate>>>;
|
|
5850
|
+
notificationTemplatesByParent?: Maybe<Array<Maybe<NotificationTemplate>>>;
|
|
4183
5851
|
notificationUnReadCount: Scalars['Int']['output'];
|
|
4184
5852
|
notifications?: Maybe<NotificationConnection>;
|
|
5853
|
+
notificationsAll?: Maybe<NotificationIntegrateConnection>;
|
|
5854
|
+
notificationsByGroup?: Maybe<NotificationIntegrateConnection>;
|
|
5855
|
+
orchestrationTypeById?: Maybe<OrchestrationType>;
|
|
5856
|
+
orchestrationTypes?: Maybe<OrchestrationTypeConnection>;
|
|
5857
|
+
/**
|
|
5858
|
+
* Retrieve performance data of integrations, including number executed, succeeded, failed, etc. over specified period.
|
|
5859
|
+
* interval is the number of intervalUnits for the period
|
|
5860
|
+
* intervalUnit is 0, 1, 2 for seconds, minutes, hours, respectively
|
|
5861
|
+
* E.g. interval = 24, intervalUnit = 2 --> 24h interval
|
|
5862
|
+
* length is number of intervals to retrieve, > 0
|
|
5863
|
+
* fromDate specifies the date up to which data is retrieved, null = today
|
|
5864
|
+
*/
|
|
5865
|
+
performanceTracker?: Maybe<PerformanceTracker>;
|
|
4185
5866
|
phone?: Maybe<Phone>;
|
|
4186
5867
|
phoneList?: Maybe<PhoneConnection>;
|
|
4187
5868
|
phoneType?: Maybe<PhoneType>;
|
|
@@ -4193,6 +5874,26 @@ export type Query = {
|
|
|
4193
5874
|
priceMethods?: Maybe<PriceMethodConnection>;
|
|
4194
5875
|
prices: Array<Price>;
|
|
4195
5876
|
primaryAddress?: Maybe<Address>;
|
|
5877
|
+
processById?: Maybe<Process>;
|
|
5878
|
+
processExecutionById?: Maybe<ProcessExecution>;
|
|
5879
|
+
processExecutionDetails?: Maybe<ProcessExecutionDetails>;
|
|
5880
|
+
processExecutions?: Maybe<ProcessExecutionConnection>;
|
|
5881
|
+
processExecutionsByProcess?: Maybe<ProcessExecutionConnection>;
|
|
5882
|
+
processScheduleById?: Maybe<ProcessSchedule>;
|
|
5883
|
+
processSchedules?: Maybe<ProcessScheduleConnection>;
|
|
5884
|
+
processSchedulesByProcess?: Maybe<ProcessScheduleConnection>;
|
|
5885
|
+
processTaskById?: Maybe<ProcessTask>;
|
|
5886
|
+
/** ProcessTaskExecutions of a ProcessExecution ordered by (ParallelProcessingGroup, Sort) */
|
|
5887
|
+
processTaskExecutionsByProcessExecution?: Maybe<Array<Maybe<ProcessTaskExecution>>>;
|
|
5888
|
+
processTaskLinkById?: Maybe<ProcessTaskLink>;
|
|
5889
|
+
processTaskLinks?: Maybe<ProcessTaskLinkConnection>;
|
|
5890
|
+
processTaskLinksByDest?: Maybe<ProcessTaskLinkConnection>;
|
|
5891
|
+
processTaskLinksBySource?: Maybe<ProcessTaskLinkConnection>;
|
|
5892
|
+
processTaskTypeById?: Maybe<ProcessTaskType>;
|
|
5893
|
+
processTaskTypes?: Maybe<ProcessTaskTypeConnection>;
|
|
5894
|
+
processTasks?: Maybe<ProcessTaskConnection>;
|
|
5895
|
+
processTasksByProcess?: Maybe<ProcessTaskConnection>;
|
|
5896
|
+
processes?: Maybe<ProcessConnection>;
|
|
4196
5897
|
product?: Maybe<Product>;
|
|
4197
5898
|
productEntities?: Maybe<ProductEntityConnection>;
|
|
4198
5899
|
productEntity?: Maybe<ProductEntity>;
|
|
@@ -4244,6 +5945,7 @@ export type Query = {
|
|
|
4244
5945
|
unitOfMeasureGroups?: Maybe<UnitOfMeasureGroupConnection>;
|
|
4245
5946
|
unitOfMeasures?: Maybe<UnitOfMeasureConnection>;
|
|
4246
5947
|
usersInRole: Array<Maybe<Me>>;
|
|
5948
|
+
validationFailureActionById?: Maybe<ValidationFailureAction>;
|
|
4247
5949
|
website: Website;
|
|
4248
5950
|
websites?: Maybe<WebsiteConnection>;
|
|
4249
5951
|
wishList?: Maybe<WishList>;
|
|
@@ -4432,6 +6134,12 @@ export type QueryClaimsByUserIdArgs = {
|
|
|
4432
6134
|
};
|
|
4433
6135
|
|
|
4434
6136
|
|
|
6137
|
+
export type QueryConfigurationExportArgs = {
|
|
6138
|
+
includeIds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6139
|
+
processId?: InputMaybe<Scalars['ID']['input']>;
|
|
6140
|
+
};
|
|
6141
|
+
|
|
6142
|
+
|
|
4435
6143
|
export type QueryContactArgs = {
|
|
4436
6144
|
id: Scalars['String']['input'];
|
|
4437
6145
|
};
|
|
@@ -4464,6 +6172,16 @@ export type QueryCountryArgs = {
|
|
|
4464
6172
|
};
|
|
4465
6173
|
|
|
4466
6174
|
|
|
6175
|
+
export type QueryDepotByIdArgs = {
|
|
6176
|
+
id: Scalars['ID']['input'];
|
|
6177
|
+
};
|
|
6178
|
+
|
|
6179
|
+
|
|
6180
|
+
export type QueryDepotGroupByIdArgs = {
|
|
6181
|
+
id: Scalars['ID']['input'];
|
|
6182
|
+
};
|
|
6183
|
+
|
|
6184
|
+
|
|
4467
6185
|
export type QueryDigitalInstanceListArgs = {
|
|
4468
6186
|
input?: InputMaybe<DigitalInstanceListInput>;
|
|
4469
6187
|
};
|
|
@@ -4474,6 +6192,106 @@ export type QueryDigitalInstanceReadArgs = {
|
|
|
4474
6192
|
};
|
|
4475
6193
|
|
|
4476
6194
|
|
|
6195
|
+
export type QueryDocumentByIdArgs = {
|
|
6196
|
+
id: Scalars['ID']['input'];
|
|
6197
|
+
};
|
|
6198
|
+
|
|
6199
|
+
|
|
6200
|
+
export type QueryDocumentFieldByIdArgs = {
|
|
6201
|
+
id: Scalars['ID']['input'];
|
|
6202
|
+
};
|
|
6203
|
+
|
|
6204
|
+
|
|
6205
|
+
export type QueryDocumentFieldsByDocumentArgs = {
|
|
6206
|
+
documentId: Scalars['ID']['input'];
|
|
6207
|
+
};
|
|
6208
|
+
|
|
6209
|
+
|
|
6210
|
+
export type QueryDocumentGroupByIdArgs = {
|
|
6211
|
+
id: Scalars['ID']['input'];
|
|
6212
|
+
};
|
|
6213
|
+
|
|
6214
|
+
|
|
6215
|
+
export type QueryDocumentTypeByIdArgs = {
|
|
6216
|
+
id: Scalars['ID']['input'];
|
|
6217
|
+
};
|
|
6218
|
+
|
|
6219
|
+
|
|
6220
|
+
export type QueryEndpointByIdArgs = {
|
|
6221
|
+
id: Scalars['ID']['input'];
|
|
6222
|
+
};
|
|
6223
|
+
|
|
6224
|
+
|
|
6225
|
+
export type QueryEndpointQueueByIdArgs = {
|
|
6226
|
+
id: Scalars['ID']['input'];
|
|
6227
|
+
};
|
|
6228
|
+
|
|
6229
|
+
|
|
6230
|
+
export type QueryEndpointQueueStatusByIdArgs = {
|
|
6231
|
+
id: Scalars['ID']['input'];
|
|
6232
|
+
};
|
|
6233
|
+
|
|
6234
|
+
|
|
6235
|
+
export type QueryEndpointStatusByIdArgs = {
|
|
6236
|
+
id: Scalars['ID']['input'];
|
|
6237
|
+
};
|
|
6238
|
+
|
|
6239
|
+
|
|
6240
|
+
export type QueryEndpointSubscriptionByIdArgs = {
|
|
6241
|
+
id: Scalars['ID']['input'];
|
|
6242
|
+
};
|
|
6243
|
+
|
|
6244
|
+
|
|
6245
|
+
export type QueryEndpointSubscriptionsByQueueArgs = {
|
|
6246
|
+
endpointQueueId: Scalars['ID']['input'];
|
|
6247
|
+
};
|
|
6248
|
+
|
|
6249
|
+
|
|
6250
|
+
export type QueryEndpointTypeByIdArgs = {
|
|
6251
|
+
id: Scalars['ID']['input'];
|
|
6252
|
+
};
|
|
6253
|
+
|
|
6254
|
+
|
|
6255
|
+
export type QueryEndpointsArgs = {
|
|
6256
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6257
|
+
};
|
|
6258
|
+
|
|
6259
|
+
|
|
6260
|
+
export type QueryEntityByIdArgs = {
|
|
6261
|
+
id: Scalars['ID']['input'];
|
|
6262
|
+
};
|
|
6263
|
+
|
|
6264
|
+
|
|
6265
|
+
export type QueryEntityFieldByIdArgs = {
|
|
6266
|
+
id: Scalars['ID']['input'];
|
|
6267
|
+
};
|
|
6268
|
+
|
|
6269
|
+
|
|
6270
|
+
export type QueryEntityFieldsByEntityArgs = {
|
|
6271
|
+
entityId: Scalars['ID']['input'];
|
|
6272
|
+
};
|
|
6273
|
+
|
|
6274
|
+
|
|
6275
|
+
export type QueryEntityGroupByIdArgs = {
|
|
6276
|
+
id: Scalars['ID']['input'];
|
|
6277
|
+
};
|
|
6278
|
+
|
|
6279
|
+
|
|
6280
|
+
export type QueryEntityTypeByIdArgs = {
|
|
6281
|
+
id: Scalars['ID']['input'];
|
|
6282
|
+
};
|
|
6283
|
+
|
|
6284
|
+
|
|
6285
|
+
export type QueryExecutionStatusByIdArgs = {
|
|
6286
|
+
id: Scalars['ID']['input'];
|
|
6287
|
+
};
|
|
6288
|
+
|
|
6289
|
+
|
|
6290
|
+
export type QueryFieldTypeByIdArgs = {
|
|
6291
|
+
id: Scalars['ID']['input'];
|
|
6292
|
+
};
|
|
6293
|
+
|
|
6294
|
+
|
|
4477
6295
|
export type QueryGetAddressArgs = {
|
|
4478
6296
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
4479
6297
|
};
|
|
@@ -4667,6 +6485,63 @@ export type QueryMappingArgs = {
|
|
|
4667
6485
|
};
|
|
4668
6486
|
|
|
4669
6487
|
|
|
6488
|
+
export type QueryNotificationByIdArgs = {
|
|
6489
|
+
id: Scalars['ID']['input'];
|
|
6490
|
+
};
|
|
6491
|
+
|
|
6492
|
+
|
|
6493
|
+
export type QueryNotificationGroupByIdArgs = {
|
|
6494
|
+
id: Scalars['ID']['input'];
|
|
6495
|
+
};
|
|
6496
|
+
|
|
6497
|
+
|
|
6498
|
+
export type QueryNotificationGroupTreeArgs = {
|
|
6499
|
+
rootId: Scalars['ID']['input'];
|
|
6500
|
+
};
|
|
6501
|
+
|
|
6502
|
+
|
|
6503
|
+
export type QueryNotificationGroupsArgs = {
|
|
6504
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6505
|
+
rootOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6506
|
+
};
|
|
6507
|
+
|
|
6508
|
+
|
|
6509
|
+
export type QueryNotificationGroupsAllChildrenArgs = {
|
|
6510
|
+
id: Scalars['ID']['input'];
|
|
6511
|
+
};
|
|
6512
|
+
|
|
6513
|
+
|
|
6514
|
+
export type QueryNotificationGroupsByParentArgs = {
|
|
6515
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6516
|
+
parentId: Scalars['ID']['input'];
|
|
6517
|
+
};
|
|
6518
|
+
|
|
6519
|
+
|
|
6520
|
+
export type QueryNotificationTemplateByIdArgs = {
|
|
6521
|
+
id: Scalars['ID']['input'];
|
|
6522
|
+
};
|
|
6523
|
+
|
|
6524
|
+
|
|
6525
|
+
export type QueryNotificationTemplateTypeByIdArgs = {
|
|
6526
|
+
id: Scalars['ID']['input'];
|
|
6527
|
+
};
|
|
6528
|
+
|
|
6529
|
+
|
|
6530
|
+
export type QueryNotificationTemplatesArgs = {
|
|
6531
|
+
rootOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6532
|
+
};
|
|
6533
|
+
|
|
6534
|
+
|
|
6535
|
+
export type QueryNotificationTemplatesAllChildrenArgs = {
|
|
6536
|
+
id: Scalars['ID']['input'];
|
|
6537
|
+
};
|
|
6538
|
+
|
|
6539
|
+
|
|
6540
|
+
export type QueryNotificationTemplatesByParentArgs = {
|
|
6541
|
+
parentId: Scalars['ID']['input'];
|
|
6542
|
+
};
|
|
6543
|
+
|
|
6544
|
+
|
|
4670
6545
|
export type QueryNotificationUnReadCountArgs = {
|
|
4671
6546
|
contactId?: InputMaybe<Scalars['ID']['input']>;
|
|
4672
6547
|
};
|
|
@@ -4681,6 +6556,35 @@ export type QueryNotificationsArgs = {
|
|
|
4681
6556
|
};
|
|
4682
6557
|
|
|
4683
6558
|
|
|
6559
|
+
export type QueryNotificationsAllArgs = {
|
|
6560
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6561
|
+
};
|
|
6562
|
+
|
|
6563
|
+
|
|
6564
|
+
export type QueryNotificationsByGroupArgs = {
|
|
6565
|
+
groupId: Scalars['ID']['input'];
|
|
6566
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6567
|
+
};
|
|
6568
|
+
|
|
6569
|
+
|
|
6570
|
+
export type QueryOrchestrationTypeByIdArgs = {
|
|
6571
|
+
id: Scalars['ID']['input'];
|
|
6572
|
+
};
|
|
6573
|
+
|
|
6574
|
+
|
|
6575
|
+
export type QueryOrchestrationTypesArgs = {
|
|
6576
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6577
|
+
};
|
|
6578
|
+
|
|
6579
|
+
|
|
6580
|
+
export type QueryPerformanceTrackerArgs = {
|
|
6581
|
+
fromDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
6582
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
6583
|
+
intervalUnit?: InputMaybe<Scalars['Int']['input']>;
|
|
6584
|
+
length?: InputMaybe<Scalars['Int']['input']>;
|
|
6585
|
+
};
|
|
6586
|
+
|
|
6587
|
+
|
|
4684
6588
|
export type QueryPhoneArgs = {
|
|
4685
6589
|
id: Scalars['ID']['input'];
|
|
4686
6590
|
};
|
|
@@ -4716,6 +6620,106 @@ export type QueryPrimaryAddressArgs = {
|
|
|
4716
6620
|
};
|
|
4717
6621
|
|
|
4718
6622
|
|
|
6623
|
+
export type QueryProcessByIdArgs = {
|
|
6624
|
+
id: Scalars['ID']['input'];
|
|
6625
|
+
};
|
|
6626
|
+
|
|
6627
|
+
|
|
6628
|
+
export type QueryProcessExecutionByIdArgs = {
|
|
6629
|
+
id: Scalars['ID']['input'];
|
|
6630
|
+
};
|
|
6631
|
+
|
|
6632
|
+
|
|
6633
|
+
export type QueryProcessExecutionDetailsArgs = {
|
|
6634
|
+
id: Scalars['ID']['input'];
|
|
6635
|
+
};
|
|
6636
|
+
|
|
6637
|
+
|
|
6638
|
+
export type QueryProcessExecutionsArgs = {
|
|
6639
|
+
input?: InputMaybe<ProcessExecutionInput>;
|
|
6640
|
+
};
|
|
6641
|
+
|
|
6642
|
+
|
|
6643
|
+
export type QueryProcessExecutionsByProcessArgs = {
|
|
6644
|
+
input?: InputMaybe<ProcessExecutionInput>;
|
|
6645
|
+
processId: Scalars['ID']['input'];
|
|
6646
|
+
};
|
|
6647
|
+
|
|
6648
|
+
|
|
6649
|
+
export type QueryProcessScheduleByIdArgs = {
|
|
6650
|
+
id: Scalars['ID']['input'];
|
|
6651
|
+
};
|
|
6652
|
+
|
|
6653
|
+
|
|
6654
|
+
export type QueryProcessSchedulesArgs = {
|
|
6655
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6656
|
+
};
|
|
6657
|
+
|
|
6658
|
+
|
|
6659
|
+
export type QueryProcessSchedulesByProcessArgs = {
|
|
6660
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6661
|
+
processId: Scalars['ID']['input'];
|
|
6662
|
+
};
|
|
6663
|
+
|
|
6664
|
+
|
|
6665
|
+
export type QueryProcessTaskByIdArgs = {
|
|
6666
|
+
id: Scalars['ID']['input'];
|
|
6667
|
+
};
|
|
6668
|
+
|
|
6669
|
+
|
|
6670
|
+
export type QueryProcessTaskExecutionsByProcessExecutionArgs = {
|
|
6671
|
+
processExecutionId: Scalars['ID']['input'];
|
|
6672
|
+
};
|
|
6673
|
+
|
|
6674
|
+
|
|
6675
|
+
export type QueryProcessTaskLinkByIdArgs = {
|
|
6676
|
+
id: Scalars['ID']['input'];
|
|
6677
|
+
};
|
|
6678
|
+
|
|
6679
|
+
|
|
6680
|
+
export type QueryProcessTaskLinksArgs = {
|
|
6681
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6682
|
+
};
|
|
6683
|
+
|
|
6684
|
+
|
|
6685
|
+
export type QueryProcessTaskLinksByDestArgs = {
|
|
6686
|
+
destId: Scalars['ID']['input'];
|
|
6687
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6688
|
+
};
|
|
6689
|
+
|
|
6690
|
+
|
|
6691
|
+
export type QueryProcessTaskLinksBySourceArgs = {
|
|
6692
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6693
|
+
sourceId: Scalars['ID']['input'];
|
|
6694
|
+
};
|
|
6695
|
+
|
|
6696
|
+
|
|
6697
|
+
export type QueryProcessTaskTypeByIdArgs = {
|
|
6698
|
+
id: Scalars['ID']['input'];
|
|
6699
|
+
};
|
|
6700
|
+
|
|
6701
|
+
|
|
6702
|
+
export type QueryProcessTaskTypesArgs = {
|
|
6703
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6704
|
+
};
|
|
6705
|
+
|
|
6706
|
+
|
|
6707
|
+
export type QueryProcessTasksArgs = {
|
|
6708
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6709
|
+
};
|
|
6710
|
+
|
|
6711
|
+
|
|
6712
|
+
export type QueryProcessTasksByProcessArgs = {
|
|
6713
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6714
|
+
processId: Scalars['ID']['input'];
|
|
6715
|
+
};
|
|
6716
|
+
|
|
6717
|
+
|
|
6718
|
+
export type QueryProcessesArgs = {
|
|
6719
|
+
input?: InputMaybe<FilterQueryInput>;
|
|
6720
|
+
};
|
|
6721
|
+
|
|
6722
|
+
|
|
4719
6723
|
export type QueryProductArgs = {
|
|
4720
6724
|
id: Scalars['String']['input'];
|
|
4721
6725
|
productLookupType?: ProductLookupType;
|
|
@@ -4895,6 +6899,11 @@ export type QueryUsersInRoleArgs = {
|
|
|
4895
6899
|
};
|
|
4896
6900
|
|
|
4897
6901
|
|
|
6902
|
+
export type QueryValidationFailureActionByIdArgs = {
|
|
6903
|
+
id: Scalars['ID']['input'];
|
|
6904
|
+
};
|
|
6905
|
+
|
|
6906
|
+
|
|
4898
6907
|
export type QueryWebsiteArgs = {
|
|
4899
6908
|
id: Scalars['ID']['input'];
|
|
4900
6909
|
};
|
|
@@ -5169,7 +7178,7 @@ export type SearchIndex = {
|
|
|
5169
7178
|
export type SearchWord = {
|
|
5170
7179
|
__typename?: 'SearchWord';
|
|
5171
7180
|
/** Name of the associated SearchAlias. If not populated then search word is global. */
|
|
5172
|
-
alias
|
|
7181
|
+
alias?: Maybe<Scalars['String']['output']>;
|
|
5173
7182
|
/** Time data value when the search word was created */
|
|
5174
7183
|
createdAt: Scalars['String']['output'];
|
|
5175
7184
|
/** Id of the user that created the search word */
|
|
@@ -5772,6 +7781,23 @@ export type TransactStatusWrapper = {
|
|
|
5772
7781
|
recordCount: Scalars['Int']['output'];
|
|
5773
7782
|
};
|
|
5774
7783
|
|
|
7784
|
+
export type TransformationExport = {
|
|
7785
|
+
__typename?: 'TransformationExport';
|
|
7786
|
+
Enabled?: Maybe<Scalars['Int']['output']>;
|
|
7787
|
+
JSLT?: Maybe<Scalars['String']['output']>;
|
|
7788
|
+
Params?: Maybe<Scalars['String']['output']>;
|
|
7789
|
+
Sort?: Maybe<Scalars['Int']['output']>;
|
|
7790
|
+
TransformationType?: Maybe<Scalars['String']['output']>;
|
|
7791
|
+
};
|
|
7792
|
+
|
|
7793
|
+
export type TransformationImport = {
|
|
7794
|
+
Enabled?: InputMaybe<Scalars['Int']['input']>;
|
|
7795
|
+
JSLT?: InputMaybe<Scalars['String']['input']>;
|
|
7796
|
+
Params?: InputMaybe<Scalars['String']['input']>;
|
|
7797
|
+
Sort?: InputMaybe<Scalars['Int']['input']>;
|
|
7798
|
+
TransformationType?: InputMaybe<Scalars['String']['input']>;
|
|
7799
|
+
};
|
|
7800
|
+
|
|
5775
7801
|
export type Typography = {
|
|
5776
7802
|
__typename?: 'Typography';
|
|
5777
7803
|
fontFamily?: Maybe<Scalars['String']['output']>;
|
|
@@ -5915,7 +7941,7 @@ export type UpdateCartInput = {
|
|
|
5915
7941
|
export type UpdateCartLineInput = {
|
|
5916
7942
|
productId: Scalars['ID']['input'];
|
|
5917
7943
|
quantity?: Scalars['Int']['input'];
|
|
5918
|
-
unitOfMeasureId
|
|
7944
|
+
unitOfMeasureId?: InputMaybe<Scalars['ID']['input']>;
|
|
5919
7945
|
};
|
|
5920
7946
|
|
|
5921
7947
|
export type UpdateContactInput = {
|
|
@@ -5927,11 +7953,13 @@ export type UpdateContactInput = {
|
|
|
5927
7953
|
|
|
5928
7954
|
/** Update document in the index */
|
|
5929
7955
|
export type UpdateDocumentInput = {
|
|
7956
|
+
/** Alias name of the active index that should be updated. Defaults to 'products' */
|
|
7957
|
+
alias?: InputMaybe<Scalars['String']['input']>;
|
|
5930
7958
|
/** JSON representation of a document to update */
|
|
5931
7959
|
document?: InputMaybe<Scalars['GraphQLJSON']['input']>;
|
|
5932
7960
|
/** Id of the document to update */
|
|
5933
7961
|
id: Scalars['ID']['input'];
|
|
5934
|
-
/** Index name that should be updated.
|
|
7962
|
+
/** Index name that should be updated. Used when alias is not provided */
|
|
5935
7963
|
index?: InputMaybe<Scalars['String']['input']>;
|
|
5936
7964
|
};
|
|
5937
7965
|
|
|
@@ -6003,6 +8031,15 @@ export type UserRoleInput = {
|
|
|
6003
8031
|
userId: Scalars['ID']['input'];
|
|
6004
8032
|
};
|
|
6005
8033
|
|
|
8034
|
+
export type ValidationFailureAction = {
|
|
8035
|
+
__typename?: 'ValidationFailureAction';
|
|
8036
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
8037
|
+
created: Scalars['DateTime']['output'];
|
|
8038
|
+
id: Scalars['ID']['output'];
|
|
8039
|
+
modified: Scalars['DateTime']['output'];
|
|
8040
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8041
|
+
};
|
|
8042
|
+
|
|
6006
8043
|
export type VariantOptions = {
|
|
6007
8044
|
__typename?: 'VariantOptions';
|
|
6008
8045
|
cdnURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -7091,7 +9128,7 @@ export type BulkMappingMutationVariables = Exact<{
|
|
|
7091
9128
|
}>;
|
|
7092
9129
|
|
|
7093
9130
|
|
|
7094
|
-
export type BulkMappingMutation = { __typename?: 'Mutation', createMappings: Array<{ __typename?: 'MappingField', id: string, parentId?: string | null, fieldName: string, fieldType: string, displayName: string, isKey: boolean, sort: number, searchable: boolean, facetable: boolean, sortable: boolean, suggestable: boolean }>, updateMappings: Array<{ __typename?: 'MappingField', id: string, parentId?: string | null, fieldName: string, fieldType: string, displayName: string, isKey: boolean, sort: number, searchable: boolean, facetable: boolean, sortable: boolean, suggestable: boolean }>, deleteMappingFields: Array<{ __typename?: '
|
|
9131
|
+
export type BulkMappingMutation = { __typename?: 'Mutation', createMappings: Array<{ __typename?: 'MappingField', id: string, parentId?: string | null, fieldName: string, fieldType: string, displayName: string, isKey: boolean, sort: number, searchable: boolean, facetable: boolean, sortable: boolean, suggestable: boolean }>, updateMappings: Array<{ __typename?: 'MappingField', id: string, parentId?: string | null, fieldName: string, fieldType: string, displayName: string, isKey: boolean, sort: number, searchable: boolean, facetable: boolean, sortable: boolean, suggestable: boolean }>, deleteMappingFields: Array<{ __typename?: 'DeletedRecord', id: string }> };
|
|
7095
9132
|
|
|
7096
9133
|
export type ClaimTypesQueryVariables = Exact<{
|
|
7097
9134
|
type: Scalars['String']['input'];
|