@evenicanpm/storefront-core 1.3.0 → 1.4.0

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.
Files changed (188) hide show
  1. package/__mocks__/get-product-by-id.ts +0 -1
  2. package/__mocks__/query-client.ts +1 -1
  3. package/package.json +3 -3
  4. package/src/api-manager/datasources/d365/d365-address.datasource.ts +2 -2
  5. package/src/api-manager/datasources/d365/d365-cart.datasource.ts +4 -5
  6. package/src/api-manager/datasources/d365/d365-categories.datasource.ts +1 -1
  7. package/src/api-manager/datasources/d365/d365-product.datasource.ts +21 -7
  8. package/src/api-manager/datasources/d365/d365-session.datasource.ts +5 -7
  9. package/src/api-manager/datasources/d365/d365-user.datasource.ts +12 -23
  10. package/src/api-manager/datasources/d365/d365.datasource.ts +0 -2
  11. package/src/api-manager/datasources/d365/index.ts +2 -4
  12. package/src/api-manager/datasources/d365/utils/decode-jwt.ts +1 -2
  13. package/src/api-manager/datasources/d365/utils/parse-object.ts +1 -1
  14. package/src/api-manager/datasources/e4/address/e4-address.remaps.ts +2 -2
  15. package/src/api-manager/datasources/e4/address/e4-address.translator.ts +1 -1
  16. package/src/api-manager/datasources/e4/cart/e4-cart.datasource.ts +28 -27
  17. package/src/api-manager/datasources/e4/cart/e4-cart.remaps.ts +1 -1
  18. package/src/api-manager/datasources/e4/cart/e4-cart.translator.ts +1 -1
  19. package/src/api-manager/datasources/e4/categories/e4-categories.translator.ts +20 -20
  20. package/src/api-manager/datasources/e4/graphqlRequestSdk.ts +471 -7
  21. package/src/api-manager/datasources/e4/order/e4-order.remaps.ts +2 -2
  22. package/src/api-manager/datasources/e4/organization/e4-organization.datasource.ts +2 -8
  23. package/src/api-manager/datasources/e4/product/e4-product.remaps.ts +3 -3
  24. package/src/api-manager/datasources/e4/product/e4-product.translator.ts +13 -29
  25. package/src/api-manager/datasources/e4/session/e4-session.datasource.ts +1 -3
  26. package/src/api-manager/datasources/e4/user/e4-user.remaps.ts +2 -4
  27. package/src/api-manager/datasources/e4/utils/unwrap-e4-variants.ts +4 -4
  28. package/src/api-manager/index.ts +1 -1
  29. package/src/api-manager/lib/category-helpers.ts +3 -2
  30. package/src/api-manager/lib/get-graphql-client.ts +1 -2
  31. package/src/api-manager/services/cart/mutations/add-discount-code.ts +2 -2
  32. package/src/api-manager/services/cart/mutations/add-to-cart.ts +2 -2
  33. package/src/api-manager/services/product/server/product.server.ts +1 -1
  34. package/src/api-manager/types/Datasource.ts +4 -9
  35. package/src/auth/auth-options.test.ts +2 -58
  36. package/src/auth/auth-options.ts +1 -2
  37. package/src/auth/next-auth-cookie-manager.ts +0 -2
  38. package/src/auth/refresh-token.ts +3 -8
  39. package/src/auth/signout.ts +1 -1
  40. package/src/cms/blocks/block-manager.tsx +3 -3
  41. package/src/cms/blocks/components/category-card.tsx +1 -1
  42. package/src/cms/blocks/components/category-carousel/index.tsx +3 -1
  43. package/src/cms/blocks/components/footer/index.tsx +2 -2
  44. package/src/cms/blocks/components/footer/sections/footer-links.tsx +2 -2
  45. package/src/cms/blocks/components/footer/sections/footer-logo.tsx +1 -1
  46. package/src/cms/blocks/components/footer/sections/footer-social-links.tsx +10 -2
  47. package/src/cms/blocks/components/hero-carousel/index.tsx +29 -25
  48. package/src/cms/blocks/components/media-card.tsx +1 -1
  49. package/src/cms/blocks/components/product-carousel/index.tsx +1 -1
  50. package/src/cms/blocks/components/product-section-fullwidth/index.tsx +2 -2
  51. package/src/cms/blocks/components/seo/index.tsx +5 -1
  52. package/src/cms/blocks/components/services/index.tsx +1 -1
  53. package/src/cms/blocks/components/services/service-card.tsx +1 -1
  54. package/src/cms/blocks/components/shared/featured-product-card.tsx +4 -1
  55. package/src/cms/blocks/components/shared/product-category-item.tsx +1 -1
  56. package/src/cms/blocks/components/shared/product-grid.tsx +4 -1
  57. package/src/cms/blocks/components/shared/top-categories-card.tsx +5 -1
  58. package/src/cms/blocks/components/shared/top-rating-product-card.tsx +1 -1
  59. package/src/components-v2/BazaarImage.tsx +1 -1
  60. package/src/components-v2/BazaarMenu.tsx +2 -2
  61. package/src/components-v2/BazaarTextField.tsx +3 -3
  62. package/src/components-v2/BorderShadowCard.stories.tsx +1 -1
  63. package/src/components-v2/DropZone.tsx +1 -2
  64. package/src/components-v2/Typography.tsx +12 -12
  65. package/src/components-v2/accordion/accordion-header.tsx +1 -1
  66. package/src/components-v2/categories/category-list/styles.ts +0 -7
  67. package/src/components-v2/categories/category-list-item/category-menu-item.tsx +1 -1
  68. package/src/components-v2/categories/category-menu.tsx +16 -13
  69. package/src/components-v2/categories/mega-menu/mega-menu-1.tsx +1 -1
  70. package/src/components-v2/categories/mega-menu/mega-menu-2.tsx +2 -2
  71. package/src/components-v2/header/components/user.tsx +5 -5
  72. package/src/components-v2/mini-cart/__tests__/cart-item.test.tsx +13 -13
  73. package/src/components-v2/mini-cart/components/bottom-actions.tsx +1 -1
  74. package/src/components-v2/mini-cart/components/cart-item.tsx +3 -3
  75. package/src/components-v2/mini-cart/components/top-header.tsx +2 -2
  76. package/src/components-v2/mobile-navigation/mobile-navigation-bar.tsx +1 -1
  77. package/src/components-v2/nav-link/nav-link-2.tsx +1 -1
  78. package/src/components-v2/nav-link/nav-link-3.tsx +1 -1
  79. package/src/components-v2/nav-link/nav-link.tsx +1 -1
  80. package/src/components-v2/navbar/categories.tsx +3 -1
  81. package/src/components-v2/navbar/category-based-menu/category-based-menu.tsx +2 -2
  82. package/src/components-v2/navbar/mobile-menu/mobile-menu.tsx +11 -3
  83. package/src/components-v2/navbar/nav-list/nav-item-child.tsx +1 -1
  84. package/src/components-v2/navbar/nav-list/nav-list.tsx +118 -80
  85. package/src/components-v2/navbar/navbar.tsx +1 -1
  86. package/src/components-v2/no-records.tsx +1 -1
  87. package/src/components-v2/product-cards/favorite-button.tsx +1 -1
  88. package/src/components-v2/product-cards/product-card/product-card.tsx +5 -7
  89. package/src/components-v2/product-cards/product-card-plp/product-card.tsx +7 -6
  90. package/src/components-v2/product-cards/product-card-plp-list/components/tags.tsx +1 -1
  91. package/src/components-v2/product-cards/product-card-plp-list/product-card.tsx +7 -4
  92. package/src/components-v2/product-cards/product-card-search/product-card.tsx +4 -2
  93. package/src/components-v2/product-cards/product-price.tsx +1 -1
  94. package/src/components-v2/product-cards/product-rating.tsx +1 -1
  95. package/src/components-v2/product-cards/product-title.tsx +1 -1
  96. package/src/components-v2/product-cards/quantity-buttons.tsx +1 -1
  97. package/src/components-v2/product-dialog/compound/product-dialog.tsx +2 -2
  98. package/src/components-v2/product-dialog/index.tsx +1 -1
  99. package/src/components-v2/product-dimensions/compound/dimensions-group-list.tsx +6 -1
  100. package/src/components-v2/product-dimensions/index.tsx +3 -3
  101. package/src/components-v2/product-quantity-buttons/compound/quantity-buttons-root.tsx +1 -1
  102. package/src/components-v2/product-quantity-variants/index.tsx +1 -2
  103. package/src/components-v2/products-view/ProductsList.stories.tsx +0 -2
  104. package/src/components-v2/products-view/compound/products-grid-view.tsx +2 -2
  105. package/src/components-v2/products-view/compound/products-list-view.tsx +3 -3
  106. package/src/components-v2/products-view/index.tsx +2 -2
  107. package/src/components-v2/progress/progress.tsx +1 -1
  108. package/src/components-v2/scrollbar/scrollbar.tsx +1 -1
  109. package/src/components-v2/search-bar/compound/results-suspense.tsx +1 -2
  110. package/src/components-v2/search-bar/compound/results.tsx +6 -3
  111. package/src/components-v2/search-bar/compound/search-bar-root.tsx +4 -2
  112. package/src/components-v2/search-bar/compound/textfield-adornment-category.tsx +25 -27
  113. package/src/components-v2/search-bar/compound/textfield.tsx +0 -1
  114. package/src/components-v2/search-bar/hooks/use-search.ts +1 -1
  115. package/src/components-v2/section/Section.stories.tsx +1 -1
  116. package/src/components-v2/side-nav/side-nav.tsx +1 -1
  117. package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-dialog.tsx +1 -1
  118. package/src/components-v2/wishlist-dialogs/add-to-wishlist/compound/add-to-wishlist-list.tsx +2 -2
  119. package/src/components-v2/wishlist-dialogs/add-to-wishlist/hooks/use-add-to-wishlist.ts +2 -0
  120. package/src/components-v2/wishlist-dialogs/add-to-wishlist/index.tsx +11 -13
  121. package/src/components-v2/wishlist-dialogs/create-wishlist/compound/create-wishlist-dialog.tsx +2 -1
  122. package/src/hooks/use-variants.ts +25 -27
  123. package/src/lib/build-detail-url.ts +1 -1
  124. package/src/lib/category-helpers.ts +3 -3
  125. package/src/lib/get-palette-color.ts +35 -15
  126. package/src/lib/hexToLuma.ts +2 -2
  127. package/src/lib/store-hours-helper.ts +5 -5
  128. package/src/pages-v2/account/addresses/address-form.tsx +10 -8
  129. package/src/pages-v2/account/addresses/address-item.tsx +1 -1
  130. package/src/pages-v2/account/orders/order-progress.tsx +1 -1
  131. package/src/pages-v2/account/orders/ordered-products.tsx +1 -1
  132. package/src/pages-v2/account/profile/user-info.tsx +1 -2
  133. package/src/pages-v2/account/wishlist/create-new-list.tsx +1 -0
  134. package/src/pages-v2/account/wishlist/wishlist-item.tsx +2 -1
  135. package/src/pages-v2/blog/blog-card.tsx +1 -1
  136. package/src/pages-v2/cart/__tests__/cart-item.test.tsx +0 -1
  137. package/src/pages-v2/cart/__tests__/checkout-form.test.tsx +0 -8
  138. package/src/pages-v2/cart/cart-item.tsx +86 -77
  139. package/src/pages-v2/cart/checkout-form.tsx +4 -4
  140. package/src/pages-v2/cart/coupon-entry.tsx +3 -3
  141. package/src/pages-v2/cart/estimate-shipping.tsx +6 -6
  142. package/src/pages-v2/checkout/checkout-alt-form/checkout-form.tsx +2 -2
  143. package/src/pages-v2/checkout/checkout-alt-form/checkout-step.tsx +2 -2
  144. package/src/pages-v2/checkout/checkout-alt-form/step-heading.tsx +1 -1
  145. package/src/pages-v2/checkout/checkout-alt-form/steps/address/delivery-address.tsx +12 -10
  146. package/src/pages-v2/checkout/checkout-alt-form/steps/address/new-address-form.tsx +5 -6
  147. package/src/pages-v2/checkout/checkout-alt-form/steps/customer-info/customer-information.tsx +8 -9
  148. package/src/pages-v2/checkout/checkout-alt-form/steps/payment/payment-details.tsx +17 -20
  149. package/src/pages-v2/checkout/checkout-alt-form/steps/shipping/delivery-date.tsx +1 -1
  150. package/src/pages-v2/checkout/checkout-alt-form/steps/shipping/delivery-options.tsx +14 -15
  151. package/src/pages-v2/confirmation/confirmation-summary.tsx +8 -7
  152. package/src/pages-v2/confirmation/ordered-products.tsx +3 -3
  153. package/src/pages-v2/product-details/bopis/pickup-option-select.tsx +1 -1
  154. package/src/pages-v2/product-details/bopis/store-card/shop-card.tsx +1 -1
  155. package/src/pages-v2/product-details/checkbox-label.tsx +1 -1
  156. package/src/pages-v2/product-details/frequently-bought.tsx +1 -1
  157. package/src/pages-v2/product-details/frequently-product-card.tsx +1 -1
  158. package/src/pages-v2/product-details/product-comment.tsx +1 -1
  159. package/src/pages-v2/product-details/product-description.tsx +2 -2
  160. package/src/pages-v2/product-details/product-filter-card.tsx +4 -1
  161. package/src/pages-v2/product-details/product-intro/compound/product-intro-images.tsx +36 -31
  162. package/src/pages-v2/product-details/product-intro/compound/product-intro.tsx +1 -1
  163. package/src/pages-v2/product-details/product-intro/compound/thumbnail-with-skeleton.tsx +1 -1
  164. package/src/pages-v2/product-details/product-intro/utils.ts +2 -4
  165. package/src/pages-v2/product-details/product-review.tsx +1 -1
  166. package/src/pages-v2/product-details/product-tabs.tsx +5 -2
  167. package/src/pages-v2/product-details/related-products.tsx +7 -4
  168. package/src/pages-v2/product-list/breadcrumbs.tsx +1 -1
  169. package/src/pages-v2/product-list/checkbox-label.tsx +1 -1
  170. package/src/pages-v2/product-list/facet-group.tsx +1 -1
  171. package/src/pages-v2/product-list/list-filter.tsx +2 -2
  172. package/src/pages-v2/product-list/product-list-context.tsx +5 -1
  173. package/src/pages-v2/product-list/product-list-view.tsx +4 -1
  174. package/src/pages-v2/product-list/product-rating.tsx +4 -1
  175. package/src/pages-v2/product-list/quick-view-dialog-content.tsx +2 -4
  176. package/src/pages-v2/product-list/quick-view-dialog.tsx +5 -1
  177. package/src/pages-v2/product-list/range-filter.tsx +0 -1
  178. package/src/pages-v2/product-list/scrollbar.tsx +1 -1
  179. package/src/pages-v2/product-list/side-nav.tsx +1 -1
  180. package/src/pages-v2/product-list/swatch.tsx +12 -7
  181. package/src/pages-v2/product-list/utils/getCategoryFilterFromSlug.ts +33 -68
  182. package/src/pages-v2/product-list/utils/product-list-helper.ts +1 -1
  183. package/src/pages-v2/product-list/utils/search-for-category.ts +2 -2
  184. package/src/pages-v2/quickorder/order-upload.tsx +90 -76
  185. package/src/pages-v2/quickorder/provider.tsx +6 -4
  186. package/src/pages-v2/quickorder/quick-order-row.tsx +1 -1
  187. package/src/pages-v2/quickorder/quick-order.tsx +28 -21
  188. package/src/providers/notifications/notification-context.tsx +0 -1
@@ -26,6 +26,47 @@ export type Scalars = {
26
26
  Upload: { input: any; output: any; }
27
27
  };
28
28
 
29
+ export type AaModule = {
30
+ __typename?: 'AAModule';
31
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
32
+ description?: Maybe<Scalars['String']['output']>;
33
+ id: Scalars['ID']['output'];
34
+ isActive: Scalars['Boolean']['output'];
35
+ name: Scalars['String']['output'];
36
+ };
37
+
38
+ export type AaRole = {
39
+ __typename?: 'AARole';
40
+ createdAt: Scalars['DateTime']['output'];
41
+ createdByEmail?: Maybe<Scalars['String']['output']>;
42
+ createdByName?: Maybe<Scalars['String']['output']>;
43
+ description?: Maybe<Scalars['String']['output']>;
44
+ id: Scalars['ID']['output'];
45
+ isEditable: Scalars['Boolean']['output'];
46
+ moduleName: Scalars['String']['output'];
47
+ name: Scalars['String']['output'];
48
+ updatedAt: Scalars['DateTime']['output'];
49
+ updatedByEmail?: Maybe<Scalars['String']['output']>;
50
+ updatedByName?: Maybe<Scalars['String']['output']>;
51
+ };
52
+
53
+ export type AaRoleInput = {
54
+ description: Scalars['String']['input'];
55
+ moduleId: Scalars['String']['input'];
56
+ name: Scalars['String']['input'];
57
+ };
58
+
59
+ export type AaUser = {
60
+ __typename?: 'AAUser';
61
+ createdAt: Scalars['DateTime']['output'];
62
+ displayName: Scalars['String']['output'];
63
+ email: Scalars['String']['output'];
64
+ id: Scalars['ID']['output'];
65
+ isActive: Scalars['Boolean']['output'];
66
+ roleNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
67
+ updatedAt: Scalars['DateTime']['output'];
68
+ };
69
+
29
70
  export type Account = {
30
71
  __typename?: 'Account';
31
72
  /** @deprecated Only for backward compatibility. Please use id property */
@@ -192,6 +233,11 @@ export type AccountType = Node & {
192
233
  name?: Maybe<Scalars['String']['output']>;
193
234
  };
194
235
 
236
+ export type ActivateUserInput = {
237
+ isActive: Scalars['Boolean']['input'];
238
+ userId: Scalars['ID']['input'];
239
+ };
240
+
195
241
  export type AddNotificationMutationResponse = MutationResponse & {
196
242
  __typename?: 'AddNotificationMutationResponse';
197
243
  code: Scalars['String']['output'];
@@ -482,12 +528,44 @@ export enum AssetTypeEnum {
482
528
  Folder = 'FOLDER'
483
529
  }
484
530
 
531
+ export type AssignPermissionsInput = {
532
+ permissionIds: Array<Scalars['ID']['input']>;
533
+ roleId: Scalars['ID']['input'];
534
+ };
535
+
536
+ export type AssignRolesInput = {
537
+ roleIds: Array<Scalars['ID']['input']>;
538
+ userId: Scalars['ID']['input'];
539
+ };
540
+
485
541
  /** Add user to the role. */
486
542
  export type AssignUserToRoleInput = {
487
543
  roleId: Scalars['ID']['input'];
488
544
  userId: Scalars['ID']['input'];
489
545
  };
490
546
 
547
+ export type AssignedPermission = {
548
+ __typename?: 'AssignedPermission';
549
+ assignedAt: Scalars['DateTime']['output'];
550
+ assignedByEmail?: Maybe<Scalars['String']['output']>;
551
+ assignedByName?: Maybe<Scalars['String']['output']>;
552
+ description?: Maybe<Scalars['String']['output']>;
553
+ id: Scalars['ID']['output'];
554
+ key: Scalars['String']['output'];
555
+ };
556
+
557
+ export type AssignedRole = {
558
+ __typename?: 'AssignedRole';
559
+ assignedAt?: Maybe<Scalars['DateTime']['output']>;
560
+ assignedByEmail?: Maybe<Scalars['String']['output']>;
561
+ assignedByName?: Maybe<Scalars['String']['output']>;
562
+ description?: Maybe<Scalars['String']['output']>;
563
+ id: Scalars['ID']['output'];
564
+ isEditable: Scalars['Boolean']['output'];
565
+ moduleName: Scalars['String']['output'];
566
+ name: Scalars['String']['output'];
567
+ };
568
+
491
569
  export type Attribute = {
492
570
  __typename?: 'Attribute';
493
571
  /** @deprecated Please use id field. Will be removed in 1.0.0 */
@@ -1193,6 +1271,11 @@ export type ChannelUpdateInput = {
1193
1271
  PublishPath?: InputMaybe<Scalars['String']['input']>;
1194
1272
  };
1195
1273
 
1274
+ export type CheckUniqueIdentifierResponse = {
1275
+ __typename?: 'CheckUniqueIdentifierResponse';
1276
+ isUnique: Scalars['Boolean']['output'];
1277
+ };
1278
+
1196
1279
  export type CheckoutSettings = {
1197
1280
  __typename?: 'CheckoutSettings';
1198
1281
  enableGuestCheckout?: Maybe<Scalars['Boolean']['output']>;
@@ -1303,11 +1386,10 @@ export type ConfigImport = {
1303
1386
  export type ConfigMerge = {
1304
1387
  code?: InputMaybe<Scalars['String']['input']>;
1305
1388
  connectionName?: InputMaybe<Scalars['String']['input']>;
1306
- dataDescription?: InputMaybe<Scalars['String']['input']>;
1307
1389
  directoryPath?: InputMaybe<Scalars['String']['input']>;
1308
1390
  endpointRoute?: InputMaybe<Scalars['String']['input']>;
1309
1391
  fileType?: InputMaybe<Scalars['String']['input']>;
1310
- header?: InputMaybe<Scalars['String']['input']>;
1392
+ header?: InputMaybe<Scalars['JSON']['input']>;
1311
1393
  maxEndpointMessageAttempts?: InputMaybe<Scalars['Int']['input']>;
1312
1394
  name?: InputMaybe<Scalars['String']['input']>;
1313
1395
  parallelProcessingGroup?: InputMaybe<Scalars['Int']['input']>;
@@ -1316,14 +1398,19 @@ export type ConfigMerge = {
1316
1398
  postStoredProc?: InputMaybe<Scalars['String']['input']>;
1317
1399
  preStoredProc?: InputMaybe<Scalars['String']['input']>;
1318
1400
  processId?: InputMaybe<Scalars['ID']['input']>;
1401
+ processTaskId?: InputMaybe<Scalars['ID']['input']>;
1319
1402
  processTemplateId: Scalars['ID']['input'];
1320
1403
  properties?: InputMaybe<Scalars['JSON']['input']>;
1321
- requestOptions?: InputMaybe<Scalars['String']['input']>;
1404
+ queues?: InputMaybe<Scalars['String']['input']>;
1405
+ requestOptions?: InputMaybe<Scalars['JSON']['input']>;
1322
1406
  requestType?: InputMaybe<Scalars['String']['input']>;
1323
1407
  seed?: InputMaybe<Scalars['ID']['input']>;
1324
1408
  sort?: InputMaybe<Scalars['Int']['input']>;
1409
+ source?: InputMaybe<Scalars['String']['input']>;
1325
1410
  stagedFields?: InputMaybe<Scalars['JSON']['input']>;
1326
1411
  subscriptions?: InputMaybe<Scalars['JSON']['input']>;
1412
+ taskName?: InputMaybe<Scalars['String']['input']>;
1413
+ uniqueIdentifier?: InputMaybe<Scalars['String']['input']>;
1327
1414
  };
1328
1415
 
1329
1416
  export type Contact = {
@@ -1673,6 +1760,10 @@ export type DeleteResult = {
1673
1760
  status: Scalars['Int']['output'];
1674
1761
  };
1675
1762
 
1763
+ export type DeleteRobotsVersionInput = {
1764
+ id: Scalars['ID']['input'];
1765
+ };
1766
+
1676
1767
  export type DeleteSavedCartResponse = MutationResponse & {
1677
1768
  __typename?: 'DeleteSavedCartResponse';
1678
1769
  code: Scalars['String']['output'];
@@ -1988,7 +2079,7 @@ export type Endpoint = {
1988
2079
  processTemplate?: Maybe<ProcessTemplate>;
1989
2080
  stagingTableName?: Maybe<Scalars['String']['output']>;
1990
2081
  stagingTableSchema?: Maybe<Scalars['String']['output']>;
1991
- templateConfig?: Maybe<Scalars['String']['output']>;
2082
+ templateConfig?: Maybe<Scalars['JSON']['output']>;
1992
2083
  };
1993
2084
 
1994
2085
  export type EndpointConnection = {
@@ -2031,9 +2122,9 @@ export type EndpointExport = {
2031
2122
  Metadata?: Maybe<Scalars['String']['output']>;
2032
2123
  Name?: Maybe<Scalars['String']['output']>;
2033
2124
  ProcessTemplateId?: Maybe<Scalars['ID']['output']>;
2125
+ Queues?: Maybe<Array<Maybe<EndpointSubscriptionExport>>>;
2034
2126
  StagingTableName?: Maybe<Scalars['String']['output']>;
2035
2127
  StagingTableSchema?: Maybe<Scalars['String']['output']>;
2036
- Subscriptions?: Maybe<Array<Maybe<EndpointSubscriptionExport>>>;
2037
2128
  TemplateConfig?: Maybe<Scalars['JSON']['output']>;
2038
2129
  };
2039
2130
 
@@ -2047,9 +2138,9 @@ export type EndpointImport = {
2047
2138
  Metadata?: InputMaybe<Scalars['String']['input']>;
2048
2139
  Name?: InputMaybe<Scalars['String']['input']>;
2049
2140
  ProcessTemplateId?: InputMaybe<Scalars['ID']['input']>;
2141
+ Queues?: InputMaybe<Array<InputMaybe<EndpointSubscriptionImport>>>;
2050
2142
  StagingTableName?: InputMaybe<Scalars['String']['input']>;
2051
2143
  StagingTableSchema?: InputMaybe<Scalars['String']['input']>;
2052
- Subscriptions?: InputMaybe<Array<InputMaybe<EndpointSubscriptionImport>>>;
2053
2144
  TemplateConfig?: InputMaybe<Scalars['JSON']['input']>;
2054
2145
  };
2055
2146
 
@@ -2423,6 +2514,19 @@ export type FieldType = {
2423
2514
  stagingDataType?: Maybe<Scalars['String']['output']>;
2424
2515
  };
2425
2516
 
2517
+ export type FieldValue = {
2518
+ __typename?: 'FieldValue';
2519
+ name?: Maybe<Scalars['String']['output']>;
2520
+ value?: Maybe<Scalars['String']['output']>;
2521
+ };
2522
+
2523
+ export type FieldValueResult = {
2524
+ __typename?: 'FieldValueResult';
2525
+ fieldName?: Maybe<Scalars['String']['output']>;
2526
+ message?: Maybe<Scalars['String']['output']>;
2527
+ values?: Maybe<Array<Maybe<FieldValue>>>;
2528
+ };
2529
+
2426
2530
  export type Filter = {
2427
2531
  age?: InputMaybe<Scalars['Int']['input']>;
2428
2532
  orderType?: InputMaybe<OrderType>;
@@ -2482,6 +2586,13 @@ export enum GenerationType {
2482
2586
  Scheduled = 'SCHEDULED'
2483
2587
  }
2484
2588
 
2589
+ export type GenericMutationResponse = MutationResponse & {
2590
+ __typename?: 'GenericMutationResponse';
2591
+ code: Scalars['String']['output'];
2592
+ message: Scalars['String']['output'];
2593
+ success: Scalars['Boolean']['output'];
2594
+ };
2595
+
2485
2596
  export enum GenericQueryStatus {
2486
2597
  Active = 'ACTIVE',
2487
2598
  All = 'ALL',
@@ -3149,7 +3260,11 @@ export enum MessageType {
3149
3260
  export type Mutation = {
3150
3261
  __typename?: 'Mutation';
3151
3262
  _placeholder?: Maybe<Scalars['Int']['output']>;
3263
+ aaCreateRole?: Maybe<AaRole>;
3264
+ aaDeleteRole?: Maybe<GenericMutationResponse>;
3265
+ aaUpdateRole?: Maybe<AaRole>;
3152
3266
  activateStopWord?: Maybe<StopWord>;
3267
+ activateUser?: Maybe<GenericMutationResponse>;
3153
3268
  addAccountNotification?: Maybe<AddNotificationMutationResponse>;
3154
3269
  addArticleToCategory?: Maybe<Scalars['String']['output']>;
3155
3270
  addItemToWishlist: WishList;
@@ -3166,6 +3281,8 @@ export type Mutation = {
3166
3281
  articleCreate?: Maybe<ArticleMutationResponse>;
3167
3282
  articleDelete?: Maybe<ArticleMutationResponse>;
3168
3283
  articleUpdate?: Maybe<ArticleMutationResponse>;
3284
+ assignPermissions?: Maybe<GenericMutationResponse>;
3285
+ assignRoles?: Maybe<GenericMutationResponse>;
3169
3286
  assignUserToRole?: Maybe<UserRole>;
3170
3287
  authorizeToken?: Maybe<PaymentTokenResponse>;
3171
3288
  broadcastCreate?: Maybe<BroadcastMutationResponse>;
@@ -3273,6 +3390,7 @@ export type Mutation = {
3273
3390
  deleteProduct?: Maybe<ProductMutationResponse>;
3274
3391
  deleteProductEntity?: Maybe<ProductEntityMutationResponse>;
3275
3392
  deleteProductStatus?: Maybe<ProductStatusMutationResponse>;
3393
+ deleteRobotsVersion: RobotsMutationResponse;
3276
3394
  deleteRoleClaim?: Maybe<RoleClaim>;
3277
3395
  deleteSavedCart?: Maybe<DeleteSavedCartResponse>;
3278
3396
  deleteSearchWord?: Maybe<Array<Maybe<DeletedRecord>>>;
@@ -3302,6 +3420,7 @@ export type Mutation = {
3302
3420
  moveMedia?: Maybe<Media>;
3303
3421
  paymentToken?: Maybe<PaymentTokenResponse>;
3304
3422
  publishChannel?: Maybe<Scalars['String']['output']>;
3423
+ publishRobots: RobotsMutationResponse;
3305
3424
  refreshToken?: Maybe<LoginResponse>;
3306
3425
  register?: Maybe<RegistrationResponse>;
3307
3426
  registerAdmin?: Maybe<RegistrationResponse>;
@@ -3385,6 +3504,8 @@ export type Mutation = {
3385
3504
  updateProductEntity?: Maybe<ProductEntityMutationResponse>;
3386
3505
  updateProductStatus?: Maybe<ProductStatusMutationResponse>;
3387
3506
  updateProfile?: Maybe<Me>;
3507
+ updateRobotsHistoryLimit: RobotsMutationResponse;
3508
+ updateRobotsSettings: RobotsMutationResponse;
3388
3509
  updateRole?: Maybe<Role>;
3389
3510
  updateRoleClaim?: Maybe<RoleClaim>;
3390
3511
  updateSearchWord?: Maybe<SearchWord>;
@@ -3403,11 +3524,32 @@ export type Mutation = {
3403
3524
  };
3404
3525
 
3405
3526
 
3527
+ export type MutationAaCreateRoleArgs = {
3528
+ input: AaRoleInput;
3529
+ };
3530
+
3531
+
3532
+ export type MutationAaDeleteRoleArgs = {
3533
+ id: Scalars['ID']['input'];
3534
+ };
3535
+
3536
+
3537
+ export type MutationAaUpdateRoleArgs = {
3538
+ id: Scalars['ID']['input'];
3539
+ input: AaRoleInput;
3540
+ };
3541
+
3542
+
3406
3543
  export type MutationActivateStopWordArgs = {
3407
3544
  id: Scalars['ID']['input'];
3408
3545
  };
3409
3546
 
3410
3547
 
3548
+ export type MutationActivateUserArgs = {
3549
+ input: ActivateUserInput;
3550
+ };
3551
+
3552
+
3411
3553
  export type MutationAddAccountNotificationArgs = {
3412
3554
  input?: InputMaybe<AccountNotificationInput>;
3413
3555
  };
@@ -3459,6 +3601,16 @@ export type MutationArticleUpdateArgs = {
3459
3601
  };
3460
3602
 
3461
3603
 
3604
+ export type MutationAssignPermissionsArgs = {
3605
+ input: AssignPermissionsInput;
3606
+ };
3607
+
3608
+
3609
+ export type MutationAssignRolesArgs = {
3610
+ input: AssignRolesInput;
3611
+ };
3612
+
3613
+
3462
3614
  export type MutationAssignUserToRoleArgs = {
3463
3615
  input: UserRoleInput;
3464
3616
  };
@@ -3970,6 +4122,11 @@ export type MutationDeleteProductStatusArgs = {
3970
4122
  };
3971
4123
 
3972
4124
 
4125
+ export type MutationDeleteRobotsVersionArgs = {
4126
+ input: DeleteRobotsVersionInput;
4127
+ };
4128
+
4129
+
3973
4130
  export type MutationDeleteRoleClaimArgs = {
3974
4131
  input: RoleClaimInput;
3975
4132
  };
@@ -4096,6 +4253,11 @@ export type MutationMoveMediaArgs = {
4096
4253
  };
4097
4254
 
4098
4255
 
4256
+ export type MutationPublishRobotsArgs = {
4257
+ input: PublishRobotsInput;
4258
+ };
4259
+
4260
+
4099
4261
  export type MutationRefreshTokenArgs = {
4100
4262
  accessToken: Scalars['String']['input'];
4101
4263
  refreshToken: Scalars['String']['input'];
@@ -4462,6 +4624,16 @@ export type MutationUpdateProfileArgs = {
4462
4624
  };
4463
4625
 
4464
4626
 
4627
+ export type MutationUpdateRobotsHistoryLimitArgs = {
4628
+ input: UpdateRobotsHistoryLimitInput;
4629
+ };
4630
+
4631
+
4632
+ export type MutationUpdateRobotsSettingsArgs = {
4633
+ input: UpdateRobotsSettingsInput;
4634
+ };
4635
+
4636
+
4465
4637
  export type MutationUpdateRoleArgs = {
4466
4638
  input: CreateRoleInput;
4467
4639
  };
@@ -5039,6 +5211,13 @@ export type PerformanceTrackerUnit = {
5039
5211
  succeeded?: Maybe<Scalars['Int']['output']>;
5040
5212
  };
5041
5213
 
5214
+ export type Permission = {
5215
+ __typename?: 'Permission';
5216
+ description?: Maybe<Scalars['String']['output']>;
5217
+ id: Scalars['ID']['output'];
5218
+ key: Scalars['String']['output'];
5219
+ };
5220
+
5042
5221
  export type Phone = Node & {
5043
5222
  __typename?: 'Phone';
5044
5223
  account: Account;
@@ -5859,10 +6038,12 @@ export type ProcessTemplateGroupConnection = {
5859
6038
  export type ProcessTemplateInput = {
5860
6039
  __typename?: 'ProcessTemplateInput';
5861
6040
  created: Scalars['DateTime']['output'];
6041
+ defaultValue?: Maybe<Scalars['String']['output']>;
5862
6042
  fieldName?: Maybe<Scalars['String']['output']>;
5863
6043
  helpText?: Maybe<Scalars['String']['output']>;
5864
6044
  id: Scalars['ID']['output'];
5865
6045
  inputType?: Maybe<Scalars['String']['output']>;
6046
+ isEditableAfterCreate?: Maybe<Scalars['Boolean']['output']>;
5866
6047
  isRequired?: Maybe<Scalars['Boolean']['output']>;
5867
6048
  label?: Maybe<Scalars['String']['output']>;
5868
6049
  modified: Scalars['DateTime']['output'];
@@ -5870,6 +6051,8 @@ export type ProcessTemplateInput = {
5870
6051
  queryName?: Maybe<Scalars['String']['output']>;
5871
6052
  schemas?: Maybe<Array<Maybe<ProcessTemplateInputSchema>>>;
5872
6053
  sort?: Maybe<Scalars['Int']['output']>;
6054
+ validationQueryOnCheck?: Maybe<Scalars['String']['output']>;
6055
+ validationQueryOnSubmit?: Maybe<Scalars['String']['output']>;
5873
6056
  validationRegex?: Maybe<Scalars['String']['output']>;
5874
6057
  };
5875
6058
 
@@ -5881,11 +6064,32 @@ export type ProcessTemplateInputSchema = {
5881
6064
  inputType?: Maybe<Scalars['String']['output']>;
5882
6065
  isRequired?: Maybe<Scalars['Boolean']['output']>;
5883
6066
  label?: Maybe<Scalars['String']['output']>;
5884
- options?: Maybe<Scalars['JSON']['output']>;
6067
+ options?: Maybe<Array<Maybe<ProcessTemplateInputSchemaOption>>>;
5885
6068
  sort?: Maybe<Scalars['Int']['output']>;
5886
6069
  validationRegex?: Maybe<Scalars['String']['output']>;
5887
6070
  };
5888
6071
 
6072
+ export type ProcessTemplateInputSchemaOption = {
6073
+ __typename?: 'ProcessTemplateInputSchemaOption';
6074
+ id: Scalars['ID']['output'];
6075
+ label?: Maybe<Scalars['String']['output']>;
6076
+ optionValue?: Maybe<Scalars['String']['output']>;
6077
+ sort?: Maybe<Scalars['Int']['output']>;
6078
+ };
6079
+
6080
+ export type ProcessTemplateInputType = {
6081
+ __typename?: 'ProcessTemplateInputType';
6082
+ code?: Maybe<Scalars['String']['output']>;
6083
+ created: Scalars['DateTime']['output'];
6084
+ extendedFields?: Maybe<Scalars['String']['output']>;
6085
+ id: Scalars['ID']['output'];
6086
+ modified: Scalars['DateTime']['output'];
6087
+ modifiedBy?: Maybe<Scalars['Int']['output']>;
6088
+ name?: Maybe<Scalars['String']['output']>;
6089
+ originCode?: Maybe<Scalars['String']['output']>;
6090
+ originId?: Maybe<Scalars['Int']['output']>;
6091
+ };
6092
+
5889
6093
  export type ProcessTemplatePage = {
5890
6094
  __typename?: 'ProcessTemplatePage';
5891
6095
  description?: Maybe<Scalars['String']['output']>;
@@ -6196,6 +6400,13 @@ export type ProfileInput = {
6196
6400
  primaryAddressId?: InputMaybe<Scalars['String']['input']>;
6197
6401
  };
6198
6402
 
6403
+ export type PublishRobotsInput = {
6404
+ builderState: RobotsBuilderStateInput;
6405
+ notifyBing: Scalars['Boolean']['input'];
6406
+ notifyGoogle: Scalars['Boolean']['input'];
6407
+ text: Scalars['String']['input'];
6408
+ };
6409
+
6199
6410
  export type Query = {
6200
6411
  __typename?: 'Query';
6201
6412
  _placeholder?: Maybe<Scalars['Int']['output']>;
@@ -6241,6 +6452,7 @@ export type Query = {
6241
6452
  categoryStatuses: Array<CategoryStatus>;
6242
6453
  channelById?: Maybe<Channel>;
6243
6454
  checkElavonIp?: Maybe<Scalars['String']['output']>;
6455
+ checkUniqueIdentifier?: Maybe<CheckUniqueIdentifierResponse>;
6244
6456
  claim?: Maybe<Claim>;
6245
6457
  claimType?: Maybe<ClaimType>;
6246
6458
  claimTypes?: Maybe<Array<Maybe<ClaimType>>>;
@@ -6296,6 +6508,7 @@ export type Query = {
6296
6508
  getChannelByChannelGroupId?: Maybe<ChannelListWrapper>;
6297
6509
  getCheckoutAddresses?: Maybe<Array<Maybe<Address>>>;
6298
6510
  getDataDescriptions?: Maybe<Array<Maybe<DataDescriptionResult>>>;
6511
+ getFieldValues?: Maybe<FieldValueResult>;
6299
6512
  getFolderContent: Array<StaticAsset>;
6300
6513
  getFonts?: Maybe<Array<Maybe<Font>>>;
6301
6514
  getMediaById?: Maybe<StaticAsset>;
@@ -6306,6 +6519,7 @@ export type Query = {
6306
6519
  getMediaStatusList?: Maybe<MediaStatusConnection>;
6307
6520
  getMediaTypeById?: Maybe<MediaType>;
6308
6521
  getMediaTypes: Array<MediaType>;
6522
+ getModules?: Maybe<Array<Maybe<AaModule>>>;
6309
6523
  getOrderAddresses?: Maybe<Array<Maybe<Address>>>;
6310
6524
  getOrderById?: Maybe<Order>;
6311
6525
  getOrderCount?: Maybe<Scalars['Int']['output']>;
@@ -6314,12 +6528,17 @@ export type Query = {
6314
6528
  getOrderProfile?: Maybe<Order>;
6315
6529
  getOrderYears: Array<Scalars['Int']['output']>;
6316
6530
  getOrdersByUserId: OrderConnection;
6531
+ getPermissions?: Maybe<Array<Maybe<Permission>>>;
6317
6532
  getPrimaryVariant?: Maybe<Array<Maybe<VariantOptions>>>;
6318
6533
  getProductsByIds?: Maybe<Array<Maybe<Product>>>;
6534
+ getRoleById?: Maybe<RoleDetails>;
6535
+ getRoles?: Maybe<RoleWrapper>;
6319
6536
  getSavedCartDetail?: Maybe<DetailSavedCartListConnection>;
6320
6537
  getSavedCarts?: Maybe<SavedCartsListConnection>;
6321
6538
  getShippingByMethodId?: Maybe<Shipping>;
6322
6539
  getSourceEndpoints?: Maybe<Array<Maybe<Endpoint>>>;
6540
+ getUserById?: Maybe<UserDetails>;
6541
+ getUsers?: Maybe<UserWrapper>;
6323
6542
  groupSet?: Maybe<GroupSet>;
6324
6543
  groupSetList?: Maybe<GroupSetConnection>;
6325
6544
  groupSetType?: Maybe<GroupSetType>;
@@ -6418,6 +6637,8 @@ export type Query = {
6418
6637
  products_disabled?: Maybe<ProductsWrapper>;
6419
6638
  readArticleImages?: Maybe<Scalars['String']['output']>;
6420
6639
  review?: Maybe<Review>;
6640
+ robotsState: RobotsState;
6641
+ robotsVersion?: Maybe<RobotsVersion>;
6421
6642
  role?: Maybe<Role>;
6422
6643
  roleByName?: Maybe<Role>;
6423
6644
  roles: Array<Maybe<Role>>;
@@ -6462,6 +6683,8 @@ export type Query = {
6462
6683
  unitOfMeasureGroups?: Maybe<UnitOfMeasureGroupConnection>;
6463
6684
  unitOfMeasures?: Maybe<UnitOfMeasureConnection>;
6464
6685
  usersInRole: Array<Maybe<Me>>;
6686
+ validateFieldOnCheck?: Maybe<WizardFieldValidationResult>;
6687
+ validateFieldOnSubmit?: Maybe<Array<Maybe<WizardFieldValidationResult>>>;
6465
6688
  validationFailureActionById?: Maybe<ValidationFailureAction>;
6466
6689
  website: Website;
6467
6690
  websites?: Maybe<WebsiteConnection>;
@@ -6626,6 +6849,11 @@ export type QueryChannelByIdArgs = {
6626
6849
  };
6627
6850
 
6628
6851
 
6852
+ export type QueryCheckUniqueIdentifierArgs = {
6853
+ uniqueIdentifier?: InputMaybe<Scalars['String']['input']>;
6854
+ };
6855
+
6856
+
6629
6857
  export type QueryClaimArgs = {
6630
6858
  id: Scalars['String']['input'];
6631
6859
  };
@@ -6856,6 +7084,11 @@ export type QueryGetDataDescriptionsArgs = {
6856
7084
  };
6857
7085
 
6858
7086
 
7087
+ export type QueryGetFieldValuesArgs = {
7088
+ input?: InputMaybe<WizardFieldValidationInput>;
7089
+ };
7090
+
7091
+
6859
7092
  export type QueryGetFolderContentArgs = {
6860
7093
  folderId?: InputMaybe<Scalars['ID']['input']>;
6861
7094
  };
@@ -6951,6 +7184,16 @@ export type QueryGetProductsByIdsArgs = {
6951
7184
  };
6952
7185
 
6953
7186
 
7187
+ export type QueryGetRoleByIdArgs = {
7188
+ id: Scalars['ID']['input'];
7189
+ };
7190
+
7191
+
7192
+ export type QueryGetRolesArgs = {
7193
+ input: RolesInput;
7194
+ };
7195
+
7196
+
6954
7197
  export type QueryGetSavedCartDetailArgs = {
6955
7198
  savedCartId: Scalars['ID']['input'];
6956
7199
  };
@@ -6972,6 +7215,16 @@ export type QueryGetSourceEndpointsArgs = {
6972
7215
  };
6973
7216
 
6974
7217
 
7218
+ export type QueryGetUserByIdArgs = {
7219
+ id: Scalars['ID']['input'];
7220
+ };
7221
+
7222
+
7223
+ export type QueryGetUsersArgs = {
7224
+ input: UsersInput;
7225
+ };
7226
+
7227
+
6975
7228
  export type QueryGroupSetArgs = {
6976
7229
  id: Scalars['ID']['input'];
6977
7230
  };
@@ -7355,6 +7608,11 @@ export type QueryReviewArgs = {
7355
7608
  };
7356
7609
 
7357
7610
 
7611
+ export type QueryRobotsVersionArgs = {
7612
+ id: Scalars['ID']['input'];
7613
+ };
7614
+
7615
+
7358
7616
  export type QueryRoleArgs = {
7359
7617
  id: Scalars['ID']['input'];
7360
7618
  };
@@ -7488,6 +7746,16 @@ export type QueryUsersInRoleArgs = {
7488
7746
  };
7489
7747
 
7490
7748
 
7749
+ export type QueryValidateFieldOnCheckArgs = {
7750
+ input?: InputMaybe<WizardFieldCheckValidationInput>;
7751
+ };
7752
+
7753
+
7754
+ export type QueryValidateFieldOnSubmitArgs = {
7755
+ input?: InputMaybe<Array<InputMaybe<WizardFieldValidationInput>>>;
7756
+ };
7757
+
7758
+
7491
7759
  export type QueryValidationFailureActionByIdArgs = {
7492
7760
  id: Scalars['ID']['input'];
7493
7761
  };
@@ -7670,6 +7938,126 @@ export type ReviewForCreation = {
7670
7938
  title?: InputMaybe<Scalars['String']['input']>;
7671
7939
  };
7672
7940
 
7941
+ export type RobotsAgentRule = {
7942
+ __typename?: 'RobotsAgentRule';
7943
+ agent: Scalars['String']['output'];
7944
+ crawlDelay?: Maybe<Scalars['Int']['output']>;
7945
+ id: Scalars['ID']['output'];
7946
+ };
7947
+
7948
+ export type RobotsAgentRuleInput = {
7949
+ agent: Scalars['String']['input'];
7950
+ crawlDelay?: InputMaybe<Scalars['Int']['input']>;
7951
+ id: Scalars['ID']['input'];
7952
+ };
7953
+
7954
+ export type RobotsAutomationInput = {
7955
+ agentId: Scalars['ID']['input'];
7956
+ enabled: Scalars['Boolean']['input'];
7957
+ };
7958
+
7959
+ export type RobotsAutomationToggle = {
7960
+ __typename?: 'RobotsAutomationToggle';
7961
+ agentId: Scalars['ID']['output'];
7962
+ enabled: Scalars['Boolean']['output'];
7963
+ };
7964
+
7965
+ export type RobotsBlockedArea = {
7966
+ __typename?: 'RobotsBlockedArea';
7967
+ blocked: Scalars['Boolean']['output'];
7968
+ id: Scalars['ID']['output'];
7969
+ path: Scalars['String']['output'];
7970
+ };
7971
+
7972
+ export type RobotsBlockedAreaInput = {
7973
+ blocked: Scalars['Boolean']['input'];
7974
+ id: Scalars['ID']['input'];
7975
+ path: Scalars['String']['input'];
7976
+ };
7977
+
7978
+ export type RobotsBuilderState = {
7979
+ __typename?: 'RobotsBuilderState';
7980
+ agentAutomation: Array<RobotsAutomationToggle>;
7981
+ agentRules: Array<RobotsAgentRule>;
7982
+ blockedAreas: Array<RobotsBlockedArea>;
7983
+ collections: Array<RobotsCollection>;
7984
+ pdpAllowed: Scalars['Boolean']['output'];
7985
+ };
7986
+
7987
+ export type RobotsBuilderStateInput = {
7988
+ agentAutomation: Array<RobotsAutomationInput>;
7989
+ agentRules: Array<RobotsAgentRuleInput>;
7990
+ blockedAreas: Array<RobotsBlockedAreaInput>;
7991
+ collections: Array<RobotsCollectionInput>;
7992
+ pdpAllowed: Scalars['Boolean']['input'];
7993
+ };
7994
+
7995
+ export type RobotsCollection = {
7996
+ __typename?: 'RobotsCollection';
7997
+ allowed: Scalars['Boolean']['output'];
7998
+ id: Scalars['ID']['output'];
7999
+ name: Scalars['String']['output'];
8000
+ };
8001
+
8002
+ export type RobotsCollectionInput = {
8003
+ allowed: Scalars['Boolean']['input'];
8004
+ id: Scalars['ID']['input'];
8005
+ name: Scalars['String']['input'];
8006
+ };
8007
+
8008
+ export type RobotsLogItem = {
8009
+ __typename?: 'RobotsLogItem';
8010
+ at: Scalars['DateTime']['output'];
8011
+ id: Scalars['ID']['output'];
8012
+ level: RobotsLogLevel;
8013
+ message: Scalars['String']['output'];
8014
+ };
8015
+
8016
+ export enum RobotsLogLevel {
8017
+ Error = 'error',
8018
+ Info = 'info',
8019
+ Warning = 'warning'
8020
+ }
8021
+
8022
+ export type RobotsMutationResponse = {
8023
+ __typename?: 'RobotsMutationResponse';
8024
+ code: Scalars['String']['output'];
8025
+ message: Scalars['String']['output'];
8026
+ state?: Maybe<RobotsState>;
8027
+ success: Scalars['Boolean']['output'];
8028
+ };
8029
+
8030
+ export type RobotsState = {
8031
+ __typename?: 'RobotsState';
8032
+ agentAutomation: Array<RobotsAutomationToggle>;
8033
+ agentRules: Array<RobotsAgentRule>;
8034
+ blockedAreas: Array<RobotsBlockedArea>;
8035
+ collections: Array<RobotsCollection>;
8036
+ historyLimit: Scalars['Int']['output'];
8037
+ id: Scalars['ID']['output'];
8038
+ lastModifiedAt?: Maybe<Scalars['DateTime']['output']>;
8039
+ lastModifiedBy?: Maybe<Scalars['String']['output']>;
8040
+ log: Array<RobotsLogItem>;
8041
+ notifyBing: Scalars['Boolean']['output'];
8042
+ notifyGoogle: Scalars['Boolean']['output'];
8043
+ pdpAllowed: Scalars['Boolean']['output'];
8044
+ publishedUrl?: Maybe<Scalars['String']['output']>;
8045
+ robotsText: Scalars['String']['output'];
8046
+ versions: Array<RobotsVersion>;
8047
+ };
8048
+
8049
+ export type RobotsVersion = {
8050
+ __typename?: 'RobotsVersion';
8051
+ builderState: RobotsBuilderState;
8052
+ createdAt: Scalars['DateTime']['output'];
8053
+ createdBy?: Maybe<Scalars['String']['output']>;
8054
+ id: Scalars['ID']['output'];
8055
+ label: Scalars['String']['output'];
8056
+ notifyBing: Scalars['Boolean']['output'];
8057
+ notifyGoogle: Scalars['Boolean']['output'];
8058
+ text: Scalars['String']['output'];
8059
+ };
8060
+
7673
8061
  export type Role = {
7674
8062
  __typename?: 'Role';
7675
8063
  /**
@@ -7703,6 +8091,29 @@ export type RoleClaimInput = {
7703
8091
  roleId?: InputMaybe<Scalars['String']['input']>;
7704
8092
  };
7705
8093
 
8094
+ export type RoleDetails = {
8095
+ __typename?: 'RoleDetails';
8096
+ assignedPermissions?: Maybe<Array<Maybe<AssignedPermission>>>;
8097
+ role: AaRole;
8098
+ };
8099
+
8100
+ export type RoleWrapper = {
8101
+ __typename?: 'RoleWrapper';
8102
+ recordCount: Scalars['Int']['output'];
8103
+ resultsReturned: Scalars['Int']['output'];
8104
+ roles: Array<Maybe<AaRole>>;
8105
+ skip: Scalars['Int']['output'];
8106
+ top: Scalars['Int']['output'];
8107
+ };
8108
+
8109
+ export type RolesInput = {
8110
+ includeAll?: InputMaybe<Scalars['Boolean']['input']>;
8111
+ skip?: InputMaybe<Scalars['Int']['input']>;
8112
+ sort?: InputMaybe<Scalars['String']['input']>;
8113
+ sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
8114
+ top?: InputMaybe<Scalars['Int']['input']>;
8115
+ };
8116
+
7706
8117
  export type RunProcessWebhookResult = {
7707
8118
  __typename?: 'RunProcessWebhookResult';
7708
8119
  id?: Maybe<Scalars['ID']['output']>;
@@ -8764,6 +9175,16 @@ export type UpdateProductStatusInput = {
8764
9175
  name?: InputMaybe<Scalars['String']['input']>;
8765
9176
  };
8766
9177
 
9178
+ export type UpdateRobotsHistoryLimitInput = {
9179
+ limit: Scalars['Int']['input'];
9180
+ };
9181
+
9182
+ export type UpdateRobotsSettingsInput = {
9183
+ builderState?: InputMaybe<RobotsBuilderStateInput>;
9184
+ notifyBing?: InputMaybe<Scalars['Boolean']['input']>;
9185
+ notifyGoogle?: InputMaybe<Scalars['Boolean']['input']>;
9186
+ };
9187
+
8767
9188
  /** Input for scheduling automatic sitemap generation */
8768
9189
  export type UpdateSitemapScheduleInput = {
8769
9190
  frequency: Scalars['String']['input'];
@@ -8785,9 +9206,17 @@ export type User = {
8785
9206
  aspNetUserId?: Maybe<Scalars['String']['output']>;
8786
9207
  claims?: Maybe<Array<Maybe<Claim>>>;
8787
9208
  contactId?: Maybe<Scalars['String']['output']>;
9209
+ displayName?: Maybe<Scalars['String']['output']>;
8788
9210
  email?: Maybe<Scalars['String']['output']>;
8789
9211
  firstName?: Maybe<Scalars['String']['output']>;
8790
9212
  lastName?: Maybe<Scalars['String']['output']>;
9213
+ permissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
9214
+ };
9215
+
9216
+ export type UserDetails = {
9217
+ __typename?: 'UserDetails';
9218
+ roles?: Maybe<Array<Maybe<AssignedRole>>>;
9219
+ user: AaUser;
8791
9220
  };
8792
9221
 
8793
9222
  export type UserInRoleQuery = {
@@ -8816,6 +9245,22 @@ export type UserRoleInput = {
8816
9245
  userId: Scalars['ID']['input'];
8817
9246
  };
8818
9247
 
9248
+ export type UserWrapper = {
9249
+ __typename?: 'UserWrapper';
9250
+ recordCount: Scalars['Int']['output'];
9251
+ resultsReturned: Scalars['Int']['output'];
9252
+ skip: Scalars['Int']['output'];
9253
+ top: Scalars['Int']['output'];
9254
+ users: Array<Maybe<AaUser>>;
9255
+ };
9256
+
9257
+ export type UsersInput = {
9258
+ skip?: InputMaybe<Scalars['Int']['input']>;
9259
+ sort?: InputMaybe<Scalars['String']['input']>;
9260
+ sortDesc?: InputMaybe<Scalars['Boolean']['input']>;
9261
+ top?: InputMaybe<Scalars['Int']['input']>;
9262
+ };
9263
+
8819
9264
  export type ValidationFailureAction = {
8820
9265
  __typename?: 'ValidationFailureAction';
8821
9266
  code?: Maybe<Scalars['String']['output']>;
@@ -9016,6 +9461,25 @@ export type WishListWrapper = {
9016
9461
  top?: Maybe<Scalars['Int']['output']>;
9017
9462
  };
9018
9463
 
9464
+ export type WizardFieldCheckValidationInput = {
9465
+ fieldId: Scalars['ID']['input'];
9466
+ fieldName?: InputMaybe<Scalars['String']['input']>;
9467
+ value?: InputMaybe<Scalars['String']['input']>;
9468
+ };
9469
+
9470
+ export type WizardFieldValidationInput = {
9471
+ fieldName?: InputMaybe<Scalars['String']['input']>;
9472
+ validationQuery: Scalars['ID']['input'];
9473
+ value?: InputMaybe<Scalars['String']['input']>;
9474
+ };
9475
+
9476
+ export type WizardFieldValidationResult = {
9477
+ __typename?: 'WizardFieldValidationResult';
9478
+ fieldName?: Maybe<Scalars['String']['output']>;
9479
+ isValid?: Maybe<Scalars['Boolean']['output']>;
9480
+ message?: Maybe<Scalars['String']['output']>;
9481
+ };
9482
+
9019
9483
  export type MoveMediaInput = {
9020
9484
  id: Scalars['ID']['input'];
9021
9485
  mediaFolderId: Scalars['ID']['input'];