@evenicanpm/storefront-core 1.0.0 → 1.0.2
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/package.json +3 -2
- package/src/api-manager/datasources/d365/d365-address.datasource.ts +1 -1
- package/src/api-manager/datasources/d365/d365-user.datasource.ts +0 -19
- package/src/api-manager/datasources/e4/e4-cart.datasource.ts +2 -2
- package/src/api-manager/datasources/e4/e4-product.datasource.ts +19 -4
- package/src/api-manager/datasources/e4/e4.datasource.ts +1 -2
- package/src/api-manager/datasources/e4/e4.remaps.ts +24 -0
- package/src/api-manager/datasources/e4/e4.translator.ts +17 -0
- package/src/api-manager/datasources/e4/graphqlRequestSdk.ts +131 -2168
- package/src/api-manager/datasources/e4/{e4-user.datasource.ts → user/e4-user.datasource.ts} +5 -7
- package/src/api-manager/datasources/e4/user/e4-user.remaps.ts +4 -0
- package/src/api-manager/datasources/e4/user/e4-user.translator.ts +10 -0
- package/src/api-manager/index.ts +21 -6
- package/src/api-manager/schemas/product.schema.ts +1 -1
- package/src/api-manager/services/address/queries/get-states.ts +1 -1
- package/src/api-manager/services/create-query.ts +10 -3
- package/src/api-manager/types/Datasource.ts +9 -9
- package/src/components/Blocks/Components/ProductCarousel/index.tsx +6 -6
- package/src/components/_components/navbar/category-based-menu/components/categories.tsx +1 -1
- package/src/components/_components/navbar/mega-menu/mega-menu.tsx +1 -1
- package/src/components/_components/navbar/nav-list/nav-item-child.tsx +2 -2
- package/src/components/_components/product-dimensions/product-dimensions.tsx +114 -0
- package/src/components/_components/product-quantity-buttons/product-quantity-buttons.tsx +88 -0
- package/src/components/_components/section-header/section-header.tsx +1 -1
- package/src/components/_components/settings/setting.tsx +1 -1
- package/src/components/_components/wishlist-modal/TODO.md +10 -0
- package/src/components/_components/wishlist-modal/add-to-wishlist-button.tsx +68 -0
- package/src/components/_components/wishlist-modal/add-to-wishlist-dialog.tsx +161 -0
- package/src/components/_components/wishlist-modal/remove-from-wishlist-dialog.tsx +174 -0
- package/src/components/_components/wishlist-modal/wishlist-modal-item.tsx +65 -0
- package/src/components/countries-input.tsx +1 -0
- package/src/hooks/use-cart.tsx +82 -0
- package/src/hooks/use-variants.tsx +85 -0
- package/src/pages/account/addresses/address-form.tsx +289 -0
- package/src/pages/account/addresses/address-item.tsx +104 -0
- package/src/pages/account/dashboard-header.tsx +123 -0
- package/src/pages/account/navigation.tsx +84 -0
- package/src/pages/account/no-records.tsx +20 -0
- package/src/pages/account/orders/icons/delivery.tsx +14 -0
- package/src/pages/account/orders/icons/package-box.tsx +13 -0
- package/src/pages/account/orders/icons/truck-filled.tsx +14 -0
- package/src/pages/account/orders/order-progress.tsx +111 -0
- package/src/pages/account/orders/order-row.tsx +61 -0
- package/src/pages/account/orders/order-summary.tsx +83 -0
- package/src/pages/account/orders/ordered-products.tsx +114 -0
- package/src/pages/account/profile/profile-button.test.tsx +59 -0
- package/src/pages/account/profile/profile-button.tsx +50 -0
- package/src/pages/account/profile/user-info.tsx +59 -0
- package/src/pages/account/styles.ts +32 -0
- package/src/pages/account/table-row.tsx +19 -0
- package/src/pages/account/wishlist/create-new-list.tsx +167 -0
- package/src/pages/account/wishlist/create-wishlist-button.tsx +40 -0
- package/src/pages/account/wishlist/wishlist-item.tsx +82 -0
- package/src/pages/blog/pagination.tsx +38 -0
- package/src/pages/cart/cart-item.tsx +312 -0
- package/src/pages/cart/checkout-form.tsx +122 -0
- package/src/pages/cart/coupon-entry.tsx +90 -0
- package/src/pages/cart/estimate-shipping.tsx +183 -0
- package/src/pages/cart/wrapper.tsx +30 -0
- package/src/pages/checkout/checkout-alt-form/address-card.tsx +73 -0
- package/src/pages/checkout/checkout-alt-form/checkout-form.tsx +133 -0
- package/src/pages/checkout/checkout-alt-form/checkout-step.tsx +120 -0
- package/src/pages/checkout/checkout-alt-form/customer-information.tsx +94 -0
- package/src/pages/checkout/checkout-alt-form/delivery-address.tsx +170 -0
- package/src/pages/checkout/checkout-alt-form/delivery-date.tsx +114 -0
- package/src/pages/checkout/checkout-alt-form/delivery-options.tsx +186 -0
- package/src/pages/checkout/checkout-alt-form/edit-address-form.tsx +130 -0
- package/src/pages/checkout/checkout-alt-form/heading.tsx +50 -0
- package/src/pages/checkout/checkout-alt-form/index.ts +1 -0
- package/src/pages/checkout/checkout-alt-form/new-address-form.tsx +294 -0
- package/src/pages/checkout/checkout-alt-form/node.tsx +9 -0
- package/src/pages/checkout/checkout-alt-form/payment-details.tsx +344 -0
- package/src/pages/checkout/checkout-alt-form/safe-card-preview-data.tsx +36 -0
- package/src/pages/checkout/checkout-alt-form/types.ts +20 -0
- package/src/pages/checkout/checkout-alt-summary/cart-item.tsx +39 -0
- package/src/pages/checkout/checkout-alt-summary/checkout-alt-summary.tsx +40 -0
- package/src/pages/checkout/checkout-alt-summary/index.ts +1 -0
- package/src/pages/checkout/checkout-alt-summary/list-item.tsx +31 -0
- package/src/pages/confirmation/address.tsx +22 -0
- package/src/pages/confirmation/confirmation-summary.tsx +52 -0
- package/src/pages/confirmation/ordered-products.tsx +108 -0
- package/src/pages/product-details/available-shops.tsx +48 -0
- package/src/pages/product-details/bopis/find-in-store-button.tsx +63 -0
- package/src/pages/product-details/bopis/find-in-store-modal.tsx +257 -0
- package/src/pages/product-details/bopis/pickup-option-select.tsx +127 -0
- package/src/pages/product-details/bopis/search-header.tsx +69 -0
- package/src/pages/product-details/checkbox-label.tsx +20 -0
- package/src/pages/product-details/currency.ts +64 -0
- package/src/pages/product-details/frequently-bought.tsx +90 -0
- package/src/pages/product-details/frequently-product-card.tsx +60 -0
- package/src/pages/product-details/product-comment.tsx +44 -0
- package/src/pages/product-details/product-description.tsx +22 -0
- package/src/pages/product-details/product-filter-card.tsx +257 -0
- package/src/pages/product-details/product-intro/product-intro-images.tsx +87 -0
- package/src/pages/product-details/product-intro/product-intro.tsx +250 -0
- package/src/pages/product-details/product-review.tsx +131 -0
- package/src/pages/product-details/product-tabs.tsx +51 -0
- package/src/pages/product-details/related-products.tsx +42 -0
- package/src/pages/product-details/types.ts +11 -0
- package/src/pages/product-list/breadcrumbs.tsx +39 -0
- package/src/pages/product-list/checkbox-label.tsx +20 -0
- package/src/pages/product-list/facet-group.tsx +125 -0
- package/src/pages/product-list/facet.tsx +36 -0
- package/src/pages/product-list/list-filter.tsx +40 -0
- package/src/pages/product-list/pagination.tsx +80 -0
- package/src/pages/product-list/product-list-context.tsx +302 -0
- package/src/pages/product-list/product-list-state.ts +187 -0
- package/src/pages/product-list/product-rating.tsx +16 -0
- package/src/pages/product-list/quick-view-dialog-content.tsx +205 -0
- package/src/pages/product-list/quick-view-dialog.tsx +54 -0
- package/src/pages/product-list/range-filter.tsx +125 -0
- package/src/pages/product-list/scrollbar.tsx +38 -0
- package/src/pages/product-list/search-bar.tsx +162 -0
- package/src/pages/product-list/selected-facets.tsx +80 -0
- package/src/pages/product-list/side-nav.tsx +49 -0
- package/src/pages/product-list/swatch.tsx +80 -0
- package/src/pages/product-list/types.ts +18 -0
- package/src/pages/product-list/use-product-list.ts +12 -0
- package/src/pages/product-list/useCategoryFilter.tsx +26 -0
- package/src/pages/product-list/utils/facet-helpers.ts +5 -0
- package/src/pages/product-list/utils/generate-breadcrumbs.ts +30 -0
- package/src/pages/product-list/utils/getCategoryFilterFromSlug.ts +153 -0
- package/src/pages/product-list/utils/product-list-helper.ts +111 -0
- package/src/pages/product-list/utils/product-list-types.ts +41 -0
- package/src/pages/product-list/utils/search-for-category.ts +76 -0
- package/src/pages/product-list/utils/sort-options.ts +44 -0
- package/src/pages/product-list/utils/use-previous-refiners.ts +14 -0
- package/src/pages/quickorder/order-upload.tsx +150 -0
- package/src/pages/quickorder/quick-order-form.tsx +343 -0
- package/src/pages/quickorder/quick-order-row.tsx +144 -0
- package/tsconfig.json +1 -0
- /package/src/{components/_components/hooks/useOverflowDetect.ts → hooks/use-overflow-detect.ts} +0 -0
- /package/src/{components/_components/hooks/useSettings.ts → hooks/use-settings.ts} +0 -0
|
@@ -1262,25 +1262,6 @@ 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
|
-
|
|
1284
1265
|
export type Contact = {
|
|
1285
1266
|
__typename?: 'Contact';
|
|
1286
1267
|
account: Account;
|
|
@@ -1398,12 +1379,6 @@ export type ContactsConnection = {
|
|
|
1398
1379
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
1399
1380
|
};
|
|
1400
1381
|
|
|
1401
|
-
export type CopiedProcess = {
|
|
1402
|
-
__typename?: 'CopiedProcess';
|
|
1403
|
-
process?: Maybe<Process>;
|
|
1404
|
-
processTasks?: Maybe<Array<Maybe<ProcessTask>>>;
|
|
1405
|
-
};
|
|
1406
|
-
|
|
1407
1382
|
export type Country = {
|
|
1408
1383
|
__typename?: 'Country';
|
|
1409
1384
|
created?: Maybe<Scalars['String']['output']>;
|
|
@@ -1544,17 +1519,6 @@ export type CustomersSettings = {
|
|
|
1544
1519
|
resultsPerPage?: Maybe<Scalars['String']['output']>;
|
|
1545
1520
|
};
|
|
1546
1521
|
|
|
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
|
-
|
|
1558
1522
|
/**
|
|
1559
1523
|
* Allows removal of the assets. This is a generic method that
|
|
1560
1524
|
* removes entity by provided type.
|
|
@@ -1573,11 +1537,12 @@ export type DeleteCartLineInput = {
|
|
|
1573
1537
|
|
|
1574
1538
|
/** Removes document from the search index */
|
|
1575
1539
|
export type DeleteDocumentInput = {
|
|
1576
|
-
/** Alias name of the active index that should be updated. Defaults to 'products' */
|
|
1577
|
-
alias?: InputMaybe<Scalars['String']['input']>;
|
|
1578
1540
|
/** Id of the document in the index to remove */
|
|
1579
1541
|
id: Scalars['ID']['input'];
|
|
1580
|
-
/**
|
|
1542
|
+
/**
|
|
1543
|
+
* Index name from which the item should be removed.
|
|
1544
|
+
* Default: products
|
|
1545
|
+
*/
|
|
1581
1546
|
index?: InputMaybe<Scalars['String']['input']>;
|
|
1582
1547
|
};
|
|
1583
1548
|
|
|
@@ -1636,100 +1601,6 @@ export type DeleteWishlistInput = {
|
|
|
1636
1601
|
wishlistId: Scalars['ID']['input'];
|
|
1637
1602
|
};
|
|
1638
1603
|
|
|
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
|
-
|
|
1733
1604
|
export type DetailSavedCartEdge = {
|
|
1734
1605
|
__typename?: 'DetailSavedCartEdge';
|
|
1735
1606
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -1795,648 +1666,153 @@ export type Dimensions = {
|
|
|
1795
1666
|
Label?: Maybe<Scalars['String']['output']>;
|
|
1796
1667
|
};
|
|
1797
1668
|
|
|
1798
|
-
export type
|
|
1799
|
-
__typename?: '
|
|
1800
|
-
|
|
1669
|
+
export type Email = Node & {
|
|
1670
|
+
__typename?: 'Email';
|
|
1671
|
+
contact: Contact;
|
|
1801
1672
|
created: Scalars['DateTime']['output'];
|
|
1802
|
-
|
|
1803
|
-
documentType: DocumentType;
|
|
1804
|
-
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1673
|
+
email: Scalars['String']['output'];
|
|
1805
1674
|
id: Scalars['ID']['output'];
|
|
1806
|
-
|
|
1807
|
-
modified
|
|
1808
|
-
|
|
1675
|
+
isPrimary: Scalars['Boolean']['output'];
|
|
1676
|
+
modified?: Maybe<Scalars['DateTime']['output']>;
|
|
1677
|
+
modifiedBy?: Maybe<Contact>;
|
|
1678
|
+
};
|
|
1679
|
+
|
|
1680
|
+
export type EntityAttribute = {
|
|
1681
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
1809
1682
|
};
|
|
1810
1683
|
|
|
1811
|
-
export type
|
|
1812
|
-
__typename?: '
|
|
1684
|
+
export type Enum = {
|
|
1685
|
+
__typename?: 'Enum';
|
|
1813
1686
|
code?: Maybe<Scalars['String']['output']>;
|
|
1814
|
-
|
|
1815
|
-
decimalPlaces?: Maybe<Scalars['Int']['output']>;
|
|
1816
|
-
document: Document;
|
|
1817
|
-
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1818
|
-
fieldType: FieldType;
|
|
1687
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1819
1688
|
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']>;
|
|
1824
1689
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
1825
|
-
validationFailureAction?: Maybe<ValidationFailureAction>;
|
|
1826
|
-
};
|
|
1827
|
-
|
|
1828
|
-
export type DocumentFieldCreate = {
|
|
1829
|
-
code?: InputMaybe<Scalars['String']['input']>;
|
|
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']>;
|
|
1839
|
-
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1840
|
-
validationFailureActionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1841
1690
|
};
|
|
1842
1691
|
|
|
1843
|
-
export type
|
|
1692
|
+
export type EnumInput = {
|
|
1844
1693
|
code?: InputMaybe<Scalars['String']['input']>;
|
|
1845
|
-
|
|
1846
|
-
documentId?: InputMaybe<Scalars['ID']['input']>;
|
|
1847
|
-
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
1848
|
-
fieldTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
1694
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
1849
1695
|
id: Scalars['ID']['input'];
|
|
1850
|
-
isOptional?: InputMaybe<Scalars['Int']['input']>;
|
|
1851
|
-
length?: InputMaybe<Scalars['Int']['input']>;
|
|
1852
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
1853
1696
|
sort?: InputMaybe<Scalars['Int']['input']>;
|
|
1854
|
-
validationFailureActionId?: InputMaybe<Scalars['ID']['input']>;
|
|
1855
1697
|
};
|
|
1856
1698
|
|
|
1857
|
-
export type
|
|
1858
|
-
__typename?: '
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
1699
|
+
export type EnumValue = {
|
|
1700
|
+
__typename?: 'EnumValue';
|
|
1701
|
+
CdnURL?: Maybe<Scalars['String']['output']>;
|
|
1702
|
+
Name?: Maybe<Scalars['String']['output']>;
|
|
1703
|
+
Value?: Maybe<Scalars['String']['output']>;
|
|
1863
1704
|
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']>;
|
|
1870
1705
|
};
|
|
1871
1706
|
|
|
1872
|
-
export type
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1707
|
+
export type Error = {
|
|
1708
|
+
message: Scalars['String']['output'];
|
|
1709
|
+
};
|
|
1710
|
+
|
|
1711
|
+
export type FacetFilter = {
|
|
1712
|
+
__typename?: 'FacetFilter';
|
|
1713
|
+
attributeId?: Maybe<Scalars['String']['output']>;
|
|
1714
|
+
attributeName?: Maybe<Scalars['String']['output']>;
|
|
1715
|
+
attributeValue?: Maybe<Scalars['String']['output']>;
|
|
1716
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
1717
|
+
enumValueId?: Maybe<Scalars['String']['output']>;
|
|
1882
1718
|
sort?: Maybe<Scalars['Int']['output']>;
|
|
1883
|
-
tier?: Maybe<Scalars['Int']['output']>;
|
|
1884
1719
|
};
|
|
1885
1720
|
|
|
1886
|
-
export type
|
|
1887
|
-
|
|
1888
|
-
|
|
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>;
|
|
1721
|
+
export type Filter = {
|
|
1722
|
+
age?: InputMaybe<Scalars['Int']['input']>;
|
|
1723
|
+
orderType?: InputMaybe<OrderType>;
|
|
1895
1724
|
};
|
|
1896
1725
|
|
|
1897
|
-
export type
|
|
1898
|
-
__typename?: '
|
|
1899
|
-
|
|
1900
|
-
collectionPropertyName?: Maybe<Scalars['String']['output']>;
|
|
1726
|
+
export type Folder = Node & {
|
|
1727
|
+
__typename?: 'Folder';
|
|
1728
|
+
breadcrumb: Array<FolderBreadcrumb>;
|
|
1901
1729
|
created: Scalars['DateTime']['output'];
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
1905
|
-
document?: Maybe<Document>;
|
|
1906
|
-
endpointStatus?: Maybe<EndpointStatus>;
|
|
1907
|
-
endpointType?: Maybe<EndpointType>;
|
|
1908
|
-
entity?: Maybe<Entity>;
|
|
1730
|
+
createdBy: Scalars['String']['output'];
|
|
1731
|
+
folderPath: Scalars['String']['output'];
|
|
1909
1732
|
id: Scalars['ID']['output'];
|
|
1910
|
-
|
|
1911
|
-
|
|
1733
|
+
list?: Maybe<MediaConnection>;
|
|
1734
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
1912
1735
|
modified: Scalars['DateTime']['output'];
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1736
|
+
modifiedBy?: Maybe<Contact>;
|
|
1737
|
+
name: Scalars['String']['output'];
|
|
1738
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
1739
|
+
tier: Scalars['Int']['output'];
|
|
1740
|
+
type: Scalars['String']['output'];
|
|
1916
1741
|
};
|
|
1917
1742
|
|
|
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
|
-
};
|
|
1925
1743
|
|
|
1926
|
-
export type
|
|
1927
|
-
|
|
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']>;
|
|
1744
|
+
export type FolderListArgs = {
|
|
1745
|
+
input?: InputMaybe<MediaQueryInput>;
|
|
1938
1746
|
};
|
|
1939
1747
|
|
|
1940
|
-
export type
|
|
1941
|
-
__typename?: '
|
|
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']>;
|
|
1748
|
+
export type FolderBreadcrumb = {
|
|
1749
|
+
__typename?: 'FolderBreadcrumb';
|
|
1979
1750
|
id: Scalars['ID']['output'];
|
|
1980
|
-
|
|
1981
|
-
|
|
1751
|
+
name: Scalars['String']['output'];
|
|
1752
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
1982
1753
|
};
|
|
1983
1754
|
|
|
1984
|
-
export type
|
|
1985
|
-
|
|
1986
|
-
|
|
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']>;
|
|
1755
|
+
export type Font = {
|
|
1756
|
+
__typename?: 'Font';
|
|
1757
|
+
family?: Maybe<Scalars['String']['output']>;
|
|
1990
1758
|
};
|
|
1991
1759
|
|
|
1992
|
-
export
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
id: Scalars['ID']['output'];
|
|
1998
|
-
modified: Scalars['DateTime']['output'];
|
|
1999
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
2000
|
-
};
|
|
1760
|
+
export enum GenericQueryStatus {
|
|
1761
|
+
Active = 'ACTIVE',
|
|
1762
|
+
All = 'ALL',
|
|
1763
|
+
Inactive = 'INACTIVE'
|
|
1764
|
+
}
|
|
2001
1765
|
|
|
2002
|
-
export
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
2007
|
-
id: Scalars['ID']['input'];
|
|
2008
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
2009
|
-
};
|
|
1766
|
+
export enum GenericStatus {
|
|
1767
|
+
Active = 'ACTIVE',
|
|
1768
|
+
Inactive = 'INACTIVE'
|
|
1769
|
+
}
|
|
2010
1770
|
|
|
2011
|
-
export type
|
|
2012
|
-
__typename?: '
|
|
2013
|
-
code
|
|
1771
|
+
export type GroupSet = Node & {
|
|
1772
|
+
__typename?: 'GroupSet';
|
|
1773
|
+
code: Scalars['String']['output'];
|
|
2014
1774
|
created: Scalars['DateTime']['output'];
|
|
2015
|
-
extendedFields?: Maybe<Scalars['JSON']['output']>;
|
|
2016
1775
|
id: Scalars['ID']['output'];
|
|
2017
|
-
modified
|
|
2018
|
-
|
|
1776
|
+
modified?: Maybe<Scalars['DateTime']['output']>;
|
|
1777
|
+
modifiedBy?: Maybe<Contact>;
|
|
1778
|
+
name: Scalars['String']['output'];
|
|
1779
|
+
sort?: Maybe<Scalars['Int']['output']>;
|
|
1780
|
+
status: GroupSetStatus;
|
|
1781
|
+
tier?: Maybe<Scalars['Int']['output']>;
|
|
1782
|
+
type?: Maybe<GroupSetType>;
|
|
2019
1783
|
};
|
|
2020
1784
|
|
|
2021
|
-
export type
|
|
2022
|
-
__typename?: '
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
id: Scalars['ID']['output'];
|
|
2028
|
-
modified: Scalars['DateTime']['output'];
|
|
2029
|
-
subscriptionDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1785
|
+
export type GroupSetConnection = {
|
|
1786
|
+
__typename?: 'GroupSetConnection';
|
|
1787
|
+
edges?: Maybe<Array<Maybe<GroupSetEdge>>>;
|
|
1788
|
+
nodes?: Maybe<Array<Maybe<GroupSet>>>;
|
|
1789
|
+
pageInfo: PageInfo;
|
|
1790
|
+
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
2030
1791
|
};
|
|
2031
1792
|
|
|
2032
|
-
export type
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
subscriptionDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1793
|
+
export type GroupSetCreate = {
|
|
1794
|
+
code: Scalars['String']['input'];
|
|
1795
|
+
groupSetStatusId: Scalars['ID']['input'];
|
|
1796
|
+
groupSetTypeId: Scalars['ID']['input'];
|
|
1797
|
+
name: Scalars['String']['input'];
|
|
2038
1798
|
};
|
|
2039
1799
|
|
|
2040
|
-
export type
|
|
2041
|
-
|
|
2042
|
-
EndpointQueueId?: Maybe<Scalars['ID']['output']>;
|
|
2043
|
-
EndpointSubscriptionId?: Maybe<Scalars['ID']['output']>;
|
|
2044
|
-
TargetEndpoint?: Maybe<Scalars['String']['output']>;
|
|
2045
|
-
Transformations?: Maybe<Array<Maybe<TransformationExport>>>;
|
|
1800
|
+
export type GroupSetDelete = {
|
|
1801
|
+
id: Scalars['ID']['input'];
|
|
2046
1802
|
};
|
|
2047
1803
|
|
|
2048
|
-
export type
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
Transformations?: InputMaybe<Array<InputMaybe<TransformationImport>>>;
|
|
1804
|
+
export type GroupSetEdge = {
|
|
1805
|
+
__typename?: 'GroupSetEdge';
|
|
1806
|
+
cursor: Scalars['String']['output'];
|
|
1807
|
+
node?: Maybe<GroupSet>;
|
|
2053
1808
|
};
|
|
2054
1809
|
|
|
2055
|
-
export type
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
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'];
|
|
1810
|
+
export type GroupSetMutationResponse = MutationResponse & {
|
|
1811
|
+
__typename?: 'GroupSetMutationResponse';
|
|
1812
|
+
code: Scalars['String']['output'];
|
|
1813
|
+
groupSet?: Maybe<GroupSet>;
|
|
1814
|
+
message: Scalars['String']['output'];
|
|
1815
|
+
success: Scalars['Boolean']['output'];
|
|
2440
1816
|
};
|
|
2441
1817
|
|
|
2442
1818
|
export type GroupSetQuery = {
|
|
@@ -2529,44 +1905,6 @@ export type Image = {
|
|
|
2529
1905
|
id: Scalars['ID']['output'];
|
|
2530
1906
|
};
|
|
2531
1907
|
|
|
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
|
-
|
|
2570
1908
|
export type IndexAttemptResponse = {
|
|
2571
1909
|
__typename?: 'IndexAttemptResponse';
|
|
2572
1910
|
/** Unique id identifying the operation */
|
|
@@ -3068,8 +2406,6 @@ export type Mutation = {
|
|
|
3068
2406
|
clearCache?: Maybe<ClearCacheResponse>;
|
|
3069
2407
|
clearItemsFromWishlist?: Maybe<Scalars['String']['output']>;
|
|
3070
2408
|
completeCart?: Maybe<CompleteCartMutationResponse>;
|
|
3071
|
-
configurationImport?: Maybe<ImportResult>;
|
|
3072
|
-
copyProcess?: Maybe<CopiedProcess>;
|
|
3073
2409
|
createAddress?: Maybe<Address>;
|
|
3074
2410
|
createCategories: Array<Category>;
|
|
3075
2411
|
createCategoryMediaLink?: Maybe<CreateCategoryMediaLinkMutationResponse>;
|
|
@@ -3080,14 +2416,6 @@ export type Mutation = {
|
|
|
3080
2416
|
createClaim?: Maybe<Claim>;
|
|
3081
2417
|
createClaimType?: Maybe<ClaimType>;
|
|
3082
2418
|
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>;
|
|
3091
2419
|
createFolder?: Maybe<CreateFolderMutationResponse>;
|
|
3092
2420
|
/** Create a new index type. */
|
|
3093
2421
|
createIndex: IndexAttemptResponse;
|
|
@@ -3095,14 +2423,7 @@ export type Mutation = {
|
|
|
3095
2423
|
createMediaMimeType?: Maybe<MediaMimeType>;
|
|
3096
2424
|
createMediaType: MediaType;
|
|
3097
2425
|
createNewTheme?: Maybe<ThemeItem>;
|
|
3098
|
-
createNotification?: Maybe<NotificationIntegrate>;
|
|
3099
|
-
createNotificationGroup?: Maybe<NotificationGroup>;
|
|
3100
|
-
createNotificationTemplate?: Maybe<NotificationTemplate>;
|
|
3101
2426
|
createOrderAddress?: Maybe<Address>;
|
|
3102
|
-
createProcess?: Maybe<Process>;
|
|
3103
|
-
createProcessSchedule?: Maybe<ProcessSchedule>;
|
|
3104
|
-
createProcessTask?: Maybe<ProcessTask>;
|
|
3105
|
-
createProcessTaskLink?: Maybe<ProcessTaskLink>;
|
|
3106
2427
|
createProduct?: Maybe<ProductMutationResponse>;
|
|
3107
2428
|
createProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
3108
2429
|
createProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
@@ -3127,15 +2448,7 @@ export type Mutation = {
|
|
|
3127
2448
|
deleteChannel?: Maybe<Scalars['String']['output']>;
|
|
3128
2449
|
deleteClaim?: Maybe<Claim>;
|
|
3129
2450
|
deleteClaimType?: Maybe<ClaimType>;
|
|
3130
|
-
deleteDepotGroups?: Maybe<Array<Maybe<DepotGroup>>>;
|
|
3131
|
-
deleteDepots?: Maybe<Array<Maybe<Depot>>>;
|
|
3132
2451
|
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>>>;
|
|
3139
2452
|
/** Removed specified file by id. */
|
|
3140
2453
|
deleteFile?: Maybe<Media>;
|
|
3141
2454
|
/** Removes specific folder by provided Id and all the assets inside the folder. */
|
|
@@ -3144,22 +2457,15 @@ export type Mutation = {
|
|
|
3144
2457
|
deleteItemFromAllWishlists?: Maybe<Scalars['String']['output']>;
|
|
3145
2458
|
deleteItemFromWishlist?: Maybe<Scalars['String']['output']>;
|
|
3146
2459
|
deleteMappingField?: Maybe<Scalars['ID']['output']>;
|
|
3147
|
-
deleteMappingFields: Array<
|
|
2460
|
+
deleteMappingFields: Array<MappingField>;
|
|
3148
2461
|
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>>>;
|
|
3156
2462
|
deleteProduct?: Maybe<ProductMutationResponse>;
|
|
3157
2463
|
deleteProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
3158
2464
|
deleteProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
3159
2465
|
deleteRoleClaim?: Maybe<RoleClaim>;
|
|
3160
2466
|
deleteSavedCart?: Maybe<DeleteSavedCartResponse>;
|
|
3161
|
-
deleteSearchWord?: Maybe<
|
|
3162
|
-
deleteSearchWordSynonym?: Maybe<
|
|
2467
|
+
deleteSearchWord?: Maybe<SearchWord>;
|
|
2468
|
+
deleteSearchWordSynonym?: Maybe<SearchWordSynonym>;
|
|
3163
2469
|
deleteStopWord?: Maybe<StopWord>;
|
|
3164
2470
|
deleteTheme?: Maybe<DeleteSuccess>;
|
|
3165
2471
|
deleteUser: DeleteUserResponse;
|
|
@@ -3238,25 +2544,10 @@ export type Mutation = {
|
|
|
3238
2544
|
updateClaim?: Maybe<Claim>;
|
|
3239
2545
|
updateClaimType?: Maybe<ClaimType>;
|
|
3240
2546
|
updateContact?: Maybe<Me>;
|
|
3241
|
-
updateDepot?: Maybe<Depot>;
|
|
3242
|
-
updateDepotGroup?: Maybe<DepotGroup>;
|
|
3243
2547
|
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>;
|
|
3250
2548
|
updateMapping: Array<MappingField>;
|
|
3251
2549
|
updateMappings: Array<MappingField>;
|
|
3252
2550
|
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>;
|
|
3260
2551
|
updateProduct?: Maybe<ProductMutationResponse>;
|
|
3261
2552
|
updateProductEntity?: Maybe<ProductEntityMutationResponse>;
|
|
3262
2553
|
updateProductStatus?: Maybe<ProductStatusMutationResponse>;
|
|
@@ -3399,17 +2690,6 @@ export type MutationCompleteCartArgs = {
|
|
|
3399
2690
|
};
|
|
3400
2691
|
|
|
3401
2692
|
|
|
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
|
-
|
|
3413
2693
|
export type MutationCreateAddressArgs = {
|
|
3414
2694
|
address: AddressInput;
|
|
3415
2695
|
};
|
|
@@ -3461,46 +2741,6 @@ export type MutationCreateContactArgs = {
|
|
|
3461
2741
|
};
|
|
3462
2742
|
|
|
3463
2743
|
|
|
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
|
-
|
|
3504
2744
|
export type MutationCreateFolderArgs = {
|
|
3505
2745
|
input?: InputMaybe<CreateFolderInput>;
|
|
3506
2746
|
};
|
|
@@ -3533,46 +2773,11 @@ export type MutationCreateNewThemeArgs = {
|
|
|
3533
2773
|
};
|
|
3534
2774
|
|
|
3535
2775
|
|
|
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
|
-
|
|
3551
2776
|
export type MutationCreateOrderAddressArgs = {
|
|
3552
2777
|
address: AddressInput;
|
|
3553
2778
|
};
|
|
3554
2779
|
|
|
3555
2780
|
|
|
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
|
-
|
|
3576
2781
|
export type MutationCreateProductArgs = {
|
|
3577
2782
|
input: CreateProductInput;
|
|
3578
2783
|
};
|
|
@@ -3682,51 +2887,11 @@ export type MutationDeleteClaimTypeArgs = {
|
|
|
3682
2887
|
};
|
|
3683
2888
|
|
|
3684
2889
|
|
|
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
|
-
|
|
3695
2890
|
export type MutationDeleteDocumentArgs = {
|
|
3696
2891
|
input?: InputMaybe<DeleteDocumentInput>;
|
|
3697
2892
|
};
|
|
3698
2893
|
|
|
3699
2894
|
|
|
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
|
-
|
|
3730
2895
|
export type MutationDeleteFileArgs = {
|
|
3731
2896
|
id: Scalars['ID']['input'];
|
|
3732
2897
|
};
|
|
@@ -3767,41 +2932,6 @@ export type MutationDeleteMediaTypeArgs = {
|
|
|
3767
2932
|
};
|
|
3768
2933
|
|
|
3769
2934
|
|
|
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
|
-
|
|
3805
2935
|
export type MutationDeleteProductArgs = {
|
|
3806
2936
|
id: Scalars['ID']['input'];
|
|
3807
2937
|
};
|
|
@@ -4168,51 +3298,11 @@ export type MutationUpdateContactArgs = {
|
|
|
4168
3298
|
};
|
|
4169
3299
|
|
|
4170
3300
|
|
|
4171
|
-
export type MutationUpdateDepotArgs = {
|
|
4172
|
-
input: DepotUpdate;
|
|
4173
|
-
};
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
export type MutationUpdateDepotGroupArgs = {
|
|
4177
|
-
input: DepotGroupUpdate;
|
|
4178
|
-
};
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
3301
|
export type MutationUpdateDocumentArgs = {
|
|
4182
3302
|
input?: InputMaybe<UpdateDocumentInput>;
|
|
4183
3303
|
};
|
|
4184
3304
|
|
|
4185
3305
|
|
|
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
|
-
|
|
4216
3306
|
export type MutationUpdateMappingArgs = {
|
|
4217
3307
|
mapping: Array<MappingFieldInput>;
|
|
4218
3308
|
};
|
|
@@ -4229,41 +3319,6 @@ export type MutationUpdateMediaTypeArgs = {
|
|
|
4229
3319
|
};
|
|
4230
3320
|
|
|
4231
3321
|
|
|
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
|
-
|
|
4267
3322
|
export type MutationUpdateProductArgs = {
|
|
4268
3323
|
input: UpdateProductInput;
|
|
4269
3324
|
};
|
|
@@ -4374,112 +3429,19 @@ export type NotificationConnection = {
|
|
|
4374
3429
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
4375
3430
|
};
|
|
4376
3431
|
|
|
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
|
-
|
|
4385
3432
|
export type NotificationEdge = {
|
|
4386
3433
|
__typename?: 'NotificationEdge';
|
|
4387
3434
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
4388
3435
|
node?: Maybe<Notification>;
|
|
4389
3436
|
};
|
|
4390
3437
|
|
|
4391
|
-
export type
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
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;
|
|
3438
|
+
export type NotificationInput = {
|
|
3439
|
+
body: Scalars['String']['input'];
|
|
3440
|
+
contactId: Array<Scalars['ID']['input']>;
|
|
3441
|
+
extendedFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
3442
|
+
/** Optional notification type to insert. If not specified default type will be used. */
|
|
3443
|
+
notificationTypeCode?: InputMaybe<Scalars['String']['input']>;
|
|
3444
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
4483
3445
|
};
|
|
4484
3446
|
|
|
4485
3447
|
export type NotificationQueryInput = {
|
|
@@ -4491,119 +3453,17 @@ export type NotificationQueryInput = {
|
|
|
4491
3453
|
top?: InputMaybe<Scalars['Int']['input']>;
|
|
4492
3454
|
};
|
|
4493
3455
|
|
|
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
|
-
|
|
4562
3456
|
export type NotificationType = {
|
|
4563
3457
|
__typename?: 'NotificationType';
|
|
4564
3458
|
code?: Maybe<Scalars['String']['output']>;
|
|
4565
3459
|
id: Scalars['ID']['output'];
|
|
4566
3460
|
};
|
|
4567
3461
|
|
|
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
|
-
|
|
4578
3462
|
export type ODataFilter = {
|
|
4579
3463
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
4580
3464
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
4581
3465
|
};
|
|
4582
3466
|
|
|
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
|
-
|
|
4607
3467
|
export type Order = {
|
|
4608
3468
|
__typename?: 'Order';
|
|
4609
3469
|
account: Account;
|
|
@@ -4716,25 +3576,6 @@ export type PageInfo = {
|
|
|
4716
3576
|
top?: Maybe<Scalars['Int']['output']>;
|
|
4717
3577
|
};
|
|
4718
3578
|
|
|
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
|
-
|
|
4738
3579
|
export type PaginationSettings = {
|
|
4739
3580
|
__typename?: 'PaginationSettings';
|
|
4740
3581
|
resultsPerPage?: Maybe<Scalars['String']['output']>;
|
|
@@ -4784,30 +3625,6 @@ export type PaymentsSettings = {
|
|
|
4784
3625
|
paymentProviders?: Maybe<Scalars['String']['output']>;
|
|
4785
3626
|
};
|
|
4786
3627
|
|
|
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
|
-
|
|
4811
3628
|
export type Phone = Node & {
|
|
4812
3629
|
__typename?: 'Phone';
|
|
4813
3630
|
account: Account;
|
|
@@ -4968,465 +3785,25 @@ export type PriceMethod = Node & {
|
|
|
4968
3785
|
|
|
4969
3786
|
export type PriceMethodConnection = {
|
|
4970
3787
|
__typename?: 'PriceMethodConnection';
|
|
4971
|
-
edges?: Maybe<Array<Maybe<PriceMethodEdge>>>;
|
|
4972
|
-
nodes?: Maybe<Array<Maybe<PriceMethod>>>;
|
|
4973
|
-
pageInfo: PageInfo;
|
|
4974
|
-
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
4975
|
-
};
|
|
4976
|
-
|
|
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>>>;
|
|
3788
|
+
edges?: Maybe<Array<Maybe<PriceMethodEdge>>>;
|
|
3789
|
+
nodes?: Maybe<Array<Maybe<PriceMethod>>>;
|
|
5388
3790
|
pageInfo: PageInfo;
|
|
5389
3791
|
recordCount?: Maybe<Scalars['Int']['output']>;
|
|
5390
3792
|
};
|
|
5391
3793
|
|
|
5392
|
-
export type
|
|
5393
|
-
__typename?: '
|
|
5394
|
-
cursor
|
|
5395
|
-
node
|
|
5396
|
-
};
|
|
5397
|
-
|
|
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']>;
|
|
3794
|
+
export type PriceMethodEdge = {
|
|
3795
|
+
__typename?: 'PriceMethodEdge';
|
|
3796
|
+
cursor: Scalars['String']['output'];
|
|
3797
|
+
node?: Maybe<PriceMethod>;
|
|
5415
3798
|
};
|
|
5416
3799
|
|
|
5417
|
-
export type
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
|
|
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']>;
|
|
3800
|
+
export type PriceMethodInput = {
|
|
3801
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3802
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
3803
|
+
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
3804
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
3805
|
+
sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3806
|
+
top?: InputMaybe<Scalars['Int']['input']>;
|
|
5430
3807
|
};
|
|
5431
3808
|
|
|
5432
3809
|
export type Product = Node & {
|
|
@@ -5617,7 +3994,6 @@ export type ProductStatusMutationResponse = MutationResponse & {
|
|
|
5617
3994
|
};
|
|
5618
3995
|
|
|
5619
3996
|
export type ProductTypeaheadInput = {
|
|
5620
|
-
categoryId?: InputMaybe<Scalars['String']['input']>;
|
|
5621
3997
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
5622
3998
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
5623
3999
|
skip?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -5745,12 +4121,6 @@ export type Query = {
|
|
|
5745
4121
|
claims?: Maybe<Array<Maybe<Claim>>>;
|
|
5746
4122
|
claimsByRoleId?: Maybe<Array<Maybe<Claim>>>;
|
|
5747
4123
|
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>;
|
|
5754
4124
|
contact?: Maybe<Contact>;
|
|
5755
4125
|
contacts?: Maybe<ContactsConnection>;
|
|
5756
4126
|
contactsByType?: Maybe<ContactsConnection>;
|
|
@@ -5758,32 +4128,8 @@ export type Query = {
|
|
|
5758
4128
|
countries?: Maybe<Array<Country>>;
|
|
5759
4129
|
country?: Maybe<Country>;
|
|
5760
4130
|
currentPayment?: Maybe<CartPaymentToken>;
|
|
5761
|
-
depotById?: Maybe<Depot>;
|
|
5762
|
-
depotGroupById?: Maybe<DepotGroup>;
|
|
5763
4131
|
digitalInstanceList?: Maybe<Array<Maybe<DigitalInstance>>>;
|
|
5764
4132
|
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>>>;
|
|
5787
4133
|
getAddress?: Maybe<Address>;
|
|
5788
4134
|
getAddressCount: Scalars['Int']['output'];
|
|
5789
4135
|
getAddresses: Array<Maybe<Address>>;
|
|
@@ -5834,35 +4180,8 @@ export type Query = {
|
|
|
5834
4180
|
linkedAccounts?: Maybe<AccountConnection>;
|
|
5835
4181
|
mapping: Array<MappingField>;
|
|
5836
4182
|
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>>>;
|
|
5851
4183
|
notificationUnReadCount: Scalars['Int']['output'];
|
|
5852
4184
|
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>;
|
|
5866
4185
|
phone?: Maybe<Phone>;
|
|
5867
4186
|
phoneList?: Maybe<PhoneConnection>;
|
|
5868
4187
|
phoneType?: Maybe<PhoneType>;
|
|
@@ -5874,26 +4193,6 @@ export type Query = {
|
|
|
5874
4193
|
priceMethods?: Maybe<PriceMethodConnection>;
|
|
5875
4194
|
prices: Array<Price>;
|
|
5876
4195
|
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>;
|
|
5897
4196
|
product?: Maybe<Product>;
|
|
5898
4197
|
productEntities?: Maybe<ProductEntityConnection>;
|
|
5899
4198
|
productEntity?: Maybe<ProductEntity>;
|
|
@@ -5945,7 +4244,6 @@ export type Query = {
|
|
|
5945
4244
|
unitOfMeasureGroups?: Maybe<UnitOfMeasureGroupConnection>;
|
|
5946
4245
|
unitOfMeasures?: Maybe<UnitOfMeasureConnection>;
|
|
5947
4246
|
usersInRole: Array<Maybe<Me>>;
|
|
5948
|
-
validationFailureActionById?: Maybe<ValidationFailureAction>;
|
|
5949
4247
|
website: Website;
|
|
5950
4248
|
websites?: Maybe<WebsiteConnection>;
|
|
5951
4249
|
wishList?: Maybe<WishList>;
|
|
@@ -6134,12 +4432,6 @@ export type QueryClaimsByUserIdArgs = {
|
|
|
6134
4432
|
};
|
|
6135
4433
|
|
|
6136
4434
|
|
|
6137
|
-
export type QueryConfigurationExportArgs = {
|
|
6138
|
-
includeIds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6139
|
-
processId?: InputMaybe<Scalars['ID']['input']>;
|
|
6140
|
-
};
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
4435
|
export type QueryContactArgs = {
|
|
6144
4436
|
id: Scalars['String']['input'];
|
|
6145
4437
|
};
|
|
@@ -6172,16 +4464,6 @@ export type QueryCountryArgs = {
|
|
|
6172
4464
|
};
|
|
6173
4465
|
|
|
6174
4466
|
|
|
6175
|
-
export type QueryDepotByIdArgs = {
|
|
6176
|
-
id: Scalars['ID']['input'];
|
|
6177
|
-
};
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
export type QueryDepotGroupByIdArgs = {
|
|
6181
|
-
id: Scalars['ID']['input'];
|
|
6182
|
-
};
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
4467
|
export type QueryDigitalInstanceListArgs = {
|
|
6186
4468
|
input?: InputMaybe<DigitalInstanceListInput>;
|
|
6187
4469
|
};
|
|
@@ -6192,106 +4474,6 @@ export type QueryDigitalInstanceReadArgs = {
|
|
|
6192
4474
|
};
|
|
6193
4475
|
|
|
6194
4476
|
|
|
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
|
-
|
|
6295
4477
|
export type QueryGetAddressArgs = {
|
|
6296
4478
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
6297
4479
|
};
|
|
@@ -6485,63 +4667,6 @@ export type QueryMappingArgs = {
|
|
|
6485
4667
|
};
|
|
6486
4668
|
|
|
6487
4669
|
|
|
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
|
-
|
|
6545
4670
|
export type QueryNotificationUnReadCountArgs = {
|
|
6546
4671
|
contactId?: InputMaybe<Scalars['ID']['input']>;
|
|
6547
4672
|
};
|
|
@@ -6556,35 +4681,6 @@ export type QueryNotificationsArgs = {
|
|
|
6556
4681
|
};
|
|
6557
4682
|
|
|
6558
4683
|
|
|
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
|
-
|
|
6588
4684
|
export type QueryPhoneArgs = {
|
|
6589
4685
|
id: Scalars['ID']['input'];
|
|
6590
4686
|
};
|
|
@@ -6620,106 +4716,6 @@ export type QueryPrimaryAddressArgs = {
|
|
|
6620
4716
|
};
|
|
6621
4717
|
|
|
6622
4718
|
|
|
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
|
-
|
|
6723
4719
|
export type QueryProductArgs = {
|
|
6724
4720
|
id: Scalars['String']['input'];
|
|
6725
4721
|
productLookupType?: ProductLookupType;
|
|
@@ -6899,11 +4895,6 @@ export type QueryUsersInRoleArgs = {
|
|
|
6899
4895
|
};
|
|
6900
4896
|
|
|
6901
4897
|
|
|
6902
|
-
export type QueryValidationFailureActionByIdArgs = {
|
|
6903
|
-
id: Scalars['ID']['input'];
|
|
6904
|
-
};
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
4898
|
export type QueryWebsiteArgs = {
|
|
6908
4899
|
id: Scalars['ID']['input'];
|
|
6909
4900
|
};
|
|
@@ -7178,7 +5169,7 @@ export type SearchIndex = {
|
|
|
7178
5169
|
export type SearchWord = {
|
|
7179
5170
|
__typename?: 'SearchWord';
|
|
7180
5171
|
/** Name of the associated SearchAlias. If not populated then search word is global. */
|
|
7181
|
-
alias
|
|
5172
|
+
alias: Scalars['String']['output'];
|
|
7182
5173
|
/** Time data value when the search word was created */
|
|
7183
5174
|
createdAt: Scalars['String']['output'];
|
|
7184
5175
|
/** Id of the user that created the search word */
|
|
@@ -7781,23 +5772,6 @@ export type TransactStatusWrapper = {
|
|
|
7781
5772
|
recordCount: Scalars['Int']['output'];
|
|
7782
5773
|
};
|
|
7783
5774
|
|
|
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
|
-
|
|
7801
5775
|
export type Typography = {
|
|
7802
5776
|
__typename?: 'Typography';
|
|
7803
5777
|
fontFamily?: Maybe<Scalars['String']['output']>;
|
|
@@ -7941,7 +5915,7 @@ export type UpdateCartInput = {
|
|
|
7941
5915
|
export type UpdateCartLineInput = {
|
|
7942
5916
|
productId: Scalars['ID']['input'];
|
|
7943
5917
|
quantity?: Scalars['Int']['input'];
|
|
7944
|
-
unitOfMeasureId
|
|
5918
|
+
unitOfMeasureId: Scalars['ID']['input'];
|
|
7945
5919
|
};
|
|
7946
5920
|
|
|
7947
5921
|
export type UpdateContactInput = {
|
|
@@ -7953,13 +5927,11 @@ export type UpdateContactInput = {
|
|
|
7953
5927
|
|
|
7954
5928
|
/** Update document in the index */
|
|
7955
5929
|
export type UpdateDocumentInput = {
|
|
7956
|
-
/** Alias name of the active index that should be updated. Defaults to 'products' */
|
|
7957
|
-
alias?: InputMaybe<Scalars['String']['input']>;
|
|
7958
5930
|
/** JSON representation of a document to update */
|
|
7959
5931
|
document?: InputMaybe<Scalars['GraphQLJSON']['input']>;
|
|
7960
5932
|
/** Id of the document to update */
|
|
7961
5933
|
id: Scalars['ID']['input'];
|
|
7962
|
-
/** Index name that should be updated.
|
|
5934
|
+
/** Index name that should be updated. Defaults to 'products' */
|
|
7963
5935
|
index?: InputMaybe<Scalars['String']['input']>;
|
|
7964
5936
|
};
|
|
7965
5937
|
|
|
@@ -8031,15 +6003,6 @@ export type UserRoleInput = {
|
|
|
8031
6003
|
userId: Scalars['ID']['input'];
|
|
8032
6004
|
};
|
|
8033
6005
|
|
|
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
|
-
|
|
8043
6006
|
export type VariantOptions = {
|
|
8044
6007
|
__typename?: 'VariantOptions';
|
|
8045
6008
|
cdnURL?: Maybe<Scalars['String']['output']>;
|
|
@@ -9025,7 +6988,7 @@ export type ProductTypeaheadSearchByCategoryQueryVariables = Exact<{
|
|
|
9025
6988
|
}>;
|
|
9026
6989
|
|
|
9027
6990
|
|
|
9028
|
-
export type ProductTypeaheadSearchByCategoryQuery = { __typename?: 'Query', productsTypeAhead: Array<{ __typename?: 'Product', id: string, code?: string | null, sku?: string | null, name?: string | null, category?: Array<{ __typename?: 'Category', name?: string | null, id: string, parentId?: string | null } | null> | null }> };
|
|
6991
|
+
export type ProductTypeaheadSearchByCategoryQuery = { __typename?: 'Query', productsTypeAhead: Array<{ __typename?: 'Product', id: string, code?: string | null, sku?: string | null, name?: string | null, img: Array<{ __typename?: 'Image', id: string, cdnURL: string, alt?: string | null }>, category?: Array<{ __typename?: 'Category', name?: string | null, id: string, parentId?: string | null } | null> | null }> };
|
|
9029
6992
|
|
|
9030
6993
|
export type AddReviewMutationVariables = Exact<{
|
|
9031
6994
|
review?: InputMaybe<ReviewForCreation>;
|
|
@@ -9128,7 +7091,7 @@ export type BulkMappingMutationVariables = Exact<{
|
|
|
9128
7091
|
}>;
|
|
9129
7092
|
|
|
9130
7093
|
|
|
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?: '
|
|
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?: 'MappingField', id: string }> };
|
|
9132
7095
|
|
|
9133
7096
|
export type ClaimTypesQueryVariables = Exact<{
|
|
9134
7097
|
type: Scalars['String']['input'];
|
|
@@ -9696,7 +7659,7 @@ export const E4ProductSearchXsDocument = {"kind":"Document","definitions":[{"kin
|
|
|
9696
7659
|
export const E4ProductSearchSmDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"e4ProductSearchSM"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"search"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"top"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skip"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ODataFilter"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"products"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"search"},"value":{"kind":"Variable","name":{"kind":"Name","value":"search"}}},{"kind":"Argument","name":{"kind":"Name","value":"top"},"value":{"kind":"Variable","name":{"kind":"Name","value":"top"}}},{"kind":"Argument","name":{"kind":"Name","value":"skip"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skip"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"sortDesc"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"resultsReturned"}},{"kind":"Field","name":{"kind":"Name","value":"recordCount"}},{"kind":"Field","name":{"kind":"Name","value":"top"}},{"kind":"Field","name":{"kind":"Name","value":"skip"}},{"kind":"Field","name":{"kind":"Name","value":"selectedSort"}},{"kind":"Field","name":{"kind":"Name","value":"search"}},{"kind":"Field","name":{"kind":"Name","value":"products"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ProductFragmentSM"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ProductFragmentSM"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Product"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"sku"}},{"kind":"Field","name":{"kind":"Name","value":"seoName"}},{"kind":"Field","name":{"kind":"Name","value":"listPrice"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"isDimensionedProduct"}},{"kind":"Field","name":{"kind":"Name","value":"img"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cdnURL"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}}]}}]}}]} as unknown as DocumentNode;
|
|
9697
7660
|
export const E4ProductSearchMdDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"e4ProductSearchMD"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"search"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"top"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skip"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ODataFilter"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"products"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"search"},"value":{"kind":"Variable","name":{"kind":"Name","value":"search"}}},{"kind":"Argument","name":{"kind":"Name","value":"top"},"value":{"kind":"Variable","name":{"kind":"Name","value":"top"}}},{"kind":"Argument","name":{"kind":"Name","value":"skip"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skip"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"sortDesc"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"resultsReturned"}},{"kind":"Field","name":{"kind":"Name","value":"recordCount"}},{"kind":"Field","name":{"kind":"Name","value":"top"}},{"kind":"Field","name":{"kind":"Name","value":"skip"}},{"kind":"Field","name":{"kind":"Name","value":"selectedSort"}},{"kind":"Field","name":{"kind":"Name","value":"search"}},{"kind":"Field","name":{"kind":"Name","value":"filters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeName"}},{"kind":"Field","name":{"kind":"Name","value":"value"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AttributeValueFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"products"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ProductFragmentMD"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ProductFragmentMD"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Product"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"sku"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"breadcrumb"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"CategoryId"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}},{"kind":"Field","name":{"kind":"Name","value":"seoName"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"seoName"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"listPrice"}},{"kind":"Field","name":{"kind":"Name","value":"Available"}},{"kind":"Field","name":{"kind":"Name","value":"uom"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"nodes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"shortDescription"}},{"kind":"Field","name":{"kind":"Name","value":"longDescription"}},{"kind":"Field","name":{"kind":"Name","value":"img"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cdnURL"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"Dimensions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"Label"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"Variants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ProductId"}},{"kind":"Field","name":{"kind":"Name","value":"MasterProductId"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}},{"kind":"Field","name":{"kind":"Name","value":"Code"}},{"kind":"Field","name":{"kind":"Name","value":"ListPrice"}},{"kind":"Field","name":{"kind":"Name","value":"Price"}},{"kind":"Field","name":{"kind":"Name","value":"DiscountAmount"}},{"kind":"Field","name":{"kind":"Name","value":"IsGiftCard"}},{"kind":"Field","name":{"kind":"Name","value":"OnHand"}},{"kind":"Field","name":{"kind":"Name","value":"Available"}},{"kind":"Field","name":{"kind":"Name","value":"Attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"ValueId"}},{"kind":"Field","name":{"kind":"Name","value":"Value"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeGroupName"}},{"kind":"Field","name":{"kind":"Name","value":"ValueId"}},{"kind":"Field","name":{"kind":"Name","value":"Value"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}},{"kind":"Field","name":{"kind":"Name","value":"Sort"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AttributeValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AttributeValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeValueId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeValue"}},{"kind":"Field","name":{"kind":"Name","value":"Count"}},{"kind":"Field","name":{"kind":"Name","value":"IsSelected"}},{"kind":"Field","name":{"kind":"Name","value":"Rank"}}]}}]} as unknown as DocumentNode;
|
|
9698
7661
|
export const E4ProductSearchLgDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"e4ProductSearchLG"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"search"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"top"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"skip"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Int"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sort"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"Boolean"}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"filters"}},"type":{"kind":"ListType","type":{"kind":"NamedType","name":{"kind":"Name","value":"ODataFilter"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"products"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"search"},"value":{"kind":"Variable","name":{"kind":"Name","value":"search"}}},{"kind":"Argument","name":{"kind":"Name","value":"top"},"value":{"kind":"Variable","name":{"kind":"Name","value":"top"}}},{"kind":"Argument","name":{"kind":"Name","value":"skip"},"value":{"kind":"Variable","name":{"kind":"Name","value":"skip"}}},{"kind":"Argument","name":{"kind":"Name","value":"sort"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sort"}}},{"kind":"Argument","name":{"kind":"Name","value":"sortDesc"},"value":{"kind":"Variable","name":{"kind":"Name","value":"sortDesc"}}},{"kind":"Argument","name":{"kind":"Name","value":"filters"},"value":{"kind":"Variable","name":{"kind":"Name","value":"filters"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"resultsReturned"}},{"kind":"Field","name":{"kind":"Name","value":"recordCount"}},{"kind":"Field","name":{"kind":"Name","value":"top"}},{"kind":"Field","name":{"kind":"Name","value":"skip"}},{"kind":"Field","name":{"kind":"Name","value":"selectedSort"}},{"kind":"Field","name":{"kind":"Name","value":"search"}},{"kind":"Field","name":{"kind":"Name","value":"filters"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeName"}},{"kind":"Field","name":{"kind":"Name","value":"value"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"AttributeValueFragment"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"products"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"ProductFragmentLG"}}]}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"ProductFragmentLG"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Product"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"sku"}},{"kind":"Field","name":{"kind":"Name","value":"seoName"}},{"kind":"Field","name":{"kind":"Name","value":"price"}},{"kind":"Field","name":{"kind":"Name","value":"listPrice"}},{"kind":"Field","name":{"kind":"Name","value":"Available"}},{"kind":"Field","name":{"kind":"Name","value":"shortDescription"}},{"kind":"Field","name":{"kind":"Name","value":"longDescription"}},{"kind":"Field","name":{"kind":"Name","value":"Dimensions"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"Label"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}}]}},{"kind":"Field","name":{"kind":"Name","value":"Variants"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"ProductId"}},{"kind":"Field","name":{"kind":"Name","value":"MasterProductId"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}},{"kind":"Field","name":{"kind":"Name","value":"Code"}},{"kind":"Field","name":{"kind":"Name","value":"ListPrice"}},{"kind":"Field","name":{"kind":"Name","value":"Price"}},{"kind":"Field","name":{"kind":"Name","value":"DiscountAmount"}},{"kind":"Field","name":{"kind":"Name","value":"IsGiftCard"}},{"kind":"Field","name":{"kind":"Name","value":"OnHand"}},{"kind":"Field","name":{"kind":"Name","value":"Available"}},{"kind":"Field","name":{"kind":"Name","value":"Attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"ValueId"}},{"kind":"Field","name":{"kind":"Name","value":"Value"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}}]}}]}},{"kind":"Field","name":{"kind":"Name","value":"img"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cdnURL"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"attributes"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeGroupName"}},{"kind":"Field","name":{"kind":"Name","value":"ValueId"}},{"kind":"Field","name":{"kind":"Name","value":"Value"}},{"kind":"Field","name":{"kind":"Name","value":"Name"}},{"kind":"Field","name":{"kind":"Name","value":"Sort"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"AttributeValueFragment"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"AttributeValue"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeValueId"}},{"kind":"Field","name":{"kind":"Name","value":"AttributeValue"}},{"kind":"Field","name":{"kind":"Name","value":"Count"}},{"kind":"Field","name":{"kind":"Name","value":"IsSelected"}},{"kind":"Field","name":{"kind":"Name","value":"Rank"}}]}}]} as unknown as DocumentNode;
|
|
9699
|
-
export const ProductTypeaheadSearchByCategoryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"productTypeaheadSearchByCategory"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductTypeaheadInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"productsTypeAhead"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"sku"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}}]}}]}}]}}]} as unknown as DocumentNode;
|
|
7662
|
+
export const ProductTypeaheadSearchByCategoryDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"productTypeaheadSearchByCategory"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ProductTypeaheadInput"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"productsTypeAhead"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"sku"}},{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"img"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"cdnURL"}},{"kind":"Field","name":{"kind":"Name","value":"alt"}}]}},{"kind":"Field","name":{"kind":"Name","value":"category"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"name"}},{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"parentId"}}]}}]}}]}}]} as unknown as DocumentNode;
|
|
9700
7663
|
export const AddReviewDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"AddReview"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"review"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"ReviewForCreation"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"addReview"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"review"},"value":{"kind":"Variable","name":{"kind":"Name","value":"review"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"Body"}},{"kind":"Field","name":{"kind":"Name","value":"ContactId"}},{"kind":"Field","name":{"kind":"Name","value":"Created"}},{"kind":"Field","name":{"kind":"Name","value":"IsVerifiedPurchase"}},{"kind":"Field","name":{"kind":"Name","value":"Modified"}},{"kind":"Field","name":{"kind":"Name","value":"ModifiedBy"}},{"kind":"Field","name":{"kind":"Name","value":"OriginCode"}},{"kind":"Field","name":{"kind":"Name","value":"ProductId"}},{"kind":"Field","name":{"kind":"Name","value":"ProductReviewId"}},{"kind":"Field","name":{"kind":"Name","value":"ProductReviewStatusId"}},{"kind":"Field","name":{"kind":"Name","value":"PurchaseDate"}},{"kind":"Field","name":{"kind":"Name","value":"Rating"}},{"kind":"Field","name":{"kind":"Name","value":"Sort"}},{"kind":"Field","name":{"kind":"Name","value":"Title"}}]}}]}}]} as unknown as DocumentNode;
|
|
9701
7664
|
export const CustomerInitSessionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"customerInitSession"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"CustomerInitSessionInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"customerInitSession"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"FragmentSpread","name":{"kind":"Name","value":"SessionFragmentSM"}}]}}]}},{"kind":"FragmentDefinition","name":{"kind":"Name","value":"SessionFragmentSM"},"typeCondition":{"kind":"NamedType","name":{"kind":"Name","value":"Session"}},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"user"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"aspNetUserId"}},{"kind":"Field","name":{"kind":"Name","value":"firstName"}},{"kind":"Field","name":{"kind":"Name","value":"lastName"}},{"kind":"Field","name":{"kind":"Name","value":"email"}}]}}]}}]} as unknown as DocumentNode;
|
|
9702
7665
|
export const E4CustomerLogoutSessionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"e4CustomerLogoutSession"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"customerLogout"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"success"}},{"kind":"Field","name":{"kind":"Name","value":"code"}},{"kind":"Field","name":{"kind":"Name","value":"message"}}]}}]}}]} as unknown as DocumentNode;
|