@commercetools-frontend/mc-scripts 21.7.0 → 21.8.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 (145) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +1 -42
  3. package/application-runtime/dist/commercetools-frontend-mc-scripts-application-runtime.cjs.d.ts +1 -0
  4. package/application-runtime/dist/commercetools-frontend-mc-scripts-application-runtime.cjs.dev.js +7 -0
  5. package/application-runtime/dist/commercetools-frontend-mc-scripts-application-runtime.cjs.js +7 -0
  6. package/{build/config/application-runtime.js → application-runtime/dist/commercetools-frontend-mc-scripts-application-runtime.cjs.prod.js} +2 -2
  7. package/application-runtime/dist/commercetools-frontend-mc-scripts-application-runtime.esm.js +5 -0
  8. package/application-runtime/package.json +4 -0
  9. package/bin/cli.js +1 -1
  10. package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.d.ts +1 -0
  11. package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.dev.js +354 -0
  12. package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.js +7 -0
  13. package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.prod.js +354 -0
  14. package/cli/dist/commercetools-frontend-mc-scripts-cli.esm.js +338 -0
  15. package/cli/package.json +4 -0
  16. package/config/create-webpack-config-for-development.js +7 -1
  17. package/config/create-webpack-config-for-production.js +7 -1
  18. package/config/vendors-to-transpile.js +5 -1
  19. package/dist/build-8582b673.esm.js +209 -0
  20. package/dist/build-9395925a.cjs.prod.js +224 -0
  21. package/dist/build-97278377.cjs.dev.js +224 -0
  22. package/dist/build-vite-6c987a60.cjs.dev.js +109 -0
  23. package/dist/build-vite-76d44332.cjs.prod.js +109 -0
  24. package/dist/build-vite-a9602b19.esm.js +97 -0
  25. package/dist/commercetools-frontend-mc-scripts.cjs.d.ts +1 -0
  26. package/dist/commercetools-frontend-mc-scripts.cjs.dev.js +30 -0
  27. package/dist/commercetools-frontend-mc-scripts.cjs.js +7 -0
  28. package/dist/commercetools-frontend-mc-scripts.cjs.prod.js +30 -0
  29. package/dist/commercetools-frontend-mc-scripts.esm.js +22 -0
  30. package/dist/compile-html-0c588a89.cjs.dev.js +93 -0
  31. package/dist/compile-html-4832f8c5.esm.js +83 -0
  32. package/dist/compile-html-7654b5e6.cjs.prod.js +93 -0
  33. package/dist/config-sync-20bc05e8.esm.js +868 -0
  34. package/dist/config-sync-62824317.cjs.prod.js +887 -0
  35. package/dist/config-sync-d52e73f6.cjs.dev.js +892 -0
  36. package/dist/create-postcss-config-4cbe10ab.cjs.dev.js +90 -0
  37. package/dist/create-postcss-config-8ea16440.cjs.prod.js +90 -0
  38. package/{build/config/create-postcss-config.js → dist/create-postcss-config-c1aa3525.esm.js} +27 -25
  39. package/{build/config/create-webpack-config-for-development.js → dist/create-webpack-config-for-development-8a8b84d6.esm.js} +92 -56
  40. package/dist/create-webpack-config-for-development-a5e73092.cjs.prod.js +418 -0
  41. package/dist/create-webpack-config-for-development-e2735e02.cjs.dev.js +418 -0
  42. package/dist/create-webpack-config-for-production-4e7b56c0.cjs.prod.js +468 -0
  43. package/{build/config/create-webpack-config-for-production.js → dist/create-webpack-config-for-production-7dc669e5.esm.js} +117 -52
  44. package/dist/create-webpack-config-for-production-d9bf281c.cjs.dev.js +468 -0
  45. package/dist/declarations/src/application-runtime.d.ts +1 -0
  46. package/dist/declarations/src/cli.d.ts +4 -0
  47. package/dist/declarations/src/commands/build-vite.d.ts +2 -0
  48. package/dist/declarations/src/commands/build.d.ts +2 -0
  49. package/dist/declarations/src/commands/compile-html.d.ts +3 -0
  50. package/dist/declarations/src/commands/config-sync.d.ts +3 -0
  51. package/dist/declarations/src/commands/login.d.ts +2 -0
  52. package/dist/declarations/src/commands/serve.d.ts +2 -0
  53. package/dist/declarations/src/commands/start-vite.d.ts +2 -0
  54. package/dist/declarations/src/commands/start.d.ts +2 -0
  55. package/dist/declarations/src/config/create-postcss-config.d.ts +4 -0
  56. package/dist/declarations/src/config/create-webpack-config-for-development.d.ts +10 -0
  57. package/dist/declarations/src/config/create-webpack-config-for-production.d.ts +10 -0
  58. package/dist/declarations/src/config/has-jsx-runtime.d.ts +2 -0
  59. package/dist/declarations/src/config/paths.d.ts +12 -0
  60. package/dist/declarations/src/config/vendors-to-transpile.d.ts +2 -0
  61. package/dist/declarations/src/config/webpack-dev-server.config.d.ts +6 -0
  62. package/dist/declarations/src/deprecated-entry-points.d.ts +7 -0
  63. package/dist/declarations/src/generated/core.d.ts +710 -0
  64. package/dist/declarations/src/generated/settings.d.ts +2383 -0
  65. package/dist/declarations/src/index.d.ts +3 -0
  66. package/dist/declarations/src/postcss.d.ts +1 -0
  67. package/dist/declarations/src/types.d.ts +82 -0
  68. package/dist/declarations/src/utils/auth.d.ts +6 -0
  69. package/dist/declarations/src/utils/credentials-storage.d.ts +11 -0
  70. package/dist/declarations/src/utils/get-config-diff.d.ts +3 -0
  71. package/dist/declarations/src/utils/graphql-requests.d.ts +80 -0
  72. package/dist/declarations/src/utils/user-agent.d.ts +2 -0
  73. package/dist/declarations/src/version.d.ts +2 -0
  74. package/dist/declarations/src/webpack-plugins/final-stats-writer-plugin.d.ts +12 -0
  75. package/dist/declarations/src/webpack-plugins/local-html-webpack-plugin.d.ts +5 -0
  76. package/dist/declarations/src/webpack.d.ts +2 -0
  77. package/dist/has-jsx-runtime-0b03b72e.cjs.prod.js +17 -0
  78. package/dist/has-jsx-runtime-3d4bb633.cjs.dev.js +17 -0
  79. package/{build/config/has-jsx-runtime.js → dist/has-jsx-runtime-8314226e.esm.js} +1 -3
  80. package/dist/login-706ccc9a.cjs.prod.js +165 -0
  81. package/dist/login-779552b7.cjs.dev.js +165 -0
  82. package/dist/login-7d94659e.esm.js +155 -0
  83. package/dist/package-a98de907.esm.js +133 -0
  84. package/dist/package-aaf61bf0.cjs.dev.js +135 -0
  85. package/dist/package-b5c040f3.cjs.prod.js +135 -0
  86. package/dist/paths-16823f56.cjs.dev.js +55 -0
  87. package/dist/paths-76b66e74.cjs.prod.js +55 -0
  88. package/dist/paths-ed23d5a1.esm.js +46 -0
  89. package/dist/serve-12de323b.cjs.dev.js +70 -0
  90. package/dist/serve-784f4fcd.cjs.prod.js +70 -0
  91. package/dist/serve-d6b437b1.esm.js +62 -0
  92. package/dist/start-2b953ab0.cjs.dev.js +209 -0
  93. package/dist/start-e3ccd672.cjs.prod.js +209 -0
  94. package/dist/start-e924bd5d.esm.js +194 -0
  95. package/dist/start-vite-737bacca.cjs.dev.js +149 -0
  96. package/dist/start-vite-b0f58ae4.cjs.prod.js +149 -0
  97. package/dist/start-vite-ec5d40b5.esm.js +136 -0
  98. package/dist/user-agent-5da1830b.cjs.dev.js +106 -0
  99. package/dist/user-agent-8044acd6.esm.js +94 -0
  100. package/dist/user-agent-d18809af.cjs.prod.js +106 -0
  101. package/dist/vendors-to-transpile-367e0ba8.cjs.prod.js +5 -0
  102. package/dist/vendors-to-transpile-68e03526.esm.js +3 -0
  103. package/dist/vendors-to-transpile-b51af5d3.cjs.dev.js +5 -0
  104. package/package.json +41 -39
  105. package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.d.ts +1 -0
  106. package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.dev.js +14 -0
  107. package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.js +7 -0
  108. package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.prod.js +14 -0
  109. package/postcss/dist/commercetools-frontend-mc-scripts-postcss.esm.js +6 -0
  110. package/postcss/package.json +4 -0
  111. package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.d.ts +1 -0
  112. package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.dev.js +51 -0
  113. package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.js +7 -0
  114. package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.prod.js +51 -0
  115. package/webpack/dist/commercetools-frontend-mc-scripts-webpack.esm.js +42 -0
  116. package/webpack/package.json +4 -0
  117. package/build/bin/cli.js +0 -264
  118. package/build/commands/build-vite.js +0 -91
  119. package/build/commands/build.js +0 -140
  120. package/build/commands/compile-html.js +0 -53
  121. package/build/commands/config-sync.js +0 -176
  122. package/build/commands/login.js +0 -60
  123. package/build/commands/serve.js +0 -37
  124. package/build/commands/start-vite.js +0 -138
  125. package/build/commands/start.js +0 -108
  126. package/build/config/paths.js +0 -38
  127. package/build/config/vendors-to-transpile.js +0 -3
  128. package/build/config/webpack-dev-server.config.js +0 -69
  129. package/build/index.js +0 -16
  130. package/build/utils/auth.js +0 -34
  131. package/build/utils/auth.spec.js +0 -61
  132. package/build/utils/create-custom-application.settings.graphql +0 -8
  133. package/build/utils/credentials-storage.js +0 -72
  134. package/build/utils/credentials-storage.spec.js +0 -69
  135. package/build/utils/fetch-custom-application.settings.graphql +0 -36
  136. package/build/utils/fetch-user-organizations.core.graphql +0 -9
  137. package/build/utils/get-config-diff.js +0 -308
  138. package/build/utils/get-config-diff.spec.js +0 -285
  139. package/build/utils/graphql-requests.js +0 -105
  140. package/build/utils/graphql-requests.spec.js +0 -159
  141. package/build/utils/require-graphql.js +0 -15
  142. package/build/utils/update-custom-application.settings.graphql +0 -13
  143. package/build/utils/user-agent.js +0 -15
  144. package/build/webpack-plugins/final-stats-writer-plugin.js +0 -50
  145. package/build/webpack-plugins/local-html-webpack-plugin.js +0 -38
@@ -0,0 +1,2383 @@
1
+ export declare type Maybe<T> = T | null;
2
+ export declare type InputMaybe<T> = Maybe<T>;
3
+ export declare type Exact<T extends {
4
+ [key: string]: unknown;
5
+ }> = {
6
+ [K in keyof T]: T[K];
7
+ };
8
+ export declare type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
+ [SubKey in K]?: Maybe<T[SubKey]>;
10
+ };
11
+ export declare type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
+ [SubKey in K]: Maybe<T[SubKey]>;
13
+ };
14
+ /** All built-in and custom scalars, mapped to their actual values */
15
+ export declare type Scalars = {
16
+ ID: string;
17
+ String: string;
18
+ Boolean: boolean;
19
+ Int: number;
20
+ Float: number;
21
+ DateTime: string;
22
+ Json: {
23
+ [key: string]: unknown;
24
+ };
25
+ };
26
+ export declare type TApplicationExtension = {
27
+ __typename?: 'ApplicationExtension';
28
+ createdAt: Scalars['DateTime'];
29
+ description?: Maybe<Scalars['String']>;
30
+ id: Scalars['ID'];
31
+ isActive?: Maybe<Scalars['Boolean']>;
32
+ name: Scalars['String'];
33
+ navbarMenu?: Maybe<TNavbarMenu>;
34
+ oAuthScopes: Array<Scalars['String']>;
35
+ updatedAt: Scalars['DateTime'];
36
+ url: Scalars['String'];
37
+ };
38
+ export declare type TApplicationExtensionDataInput = {
39
+ description?: InputMaybe<Scalars['String']>;
40
+ name: Scalars['String'];
41
+ navbarMenu: TApplicationExtensionNavbarMenuDataInput;
42
+ oAuthScopes?: InputMaybe<Array<Scalars['String']>>;
43
+ url: Scalars['String'];
44
+ };
45
+ export declare type TApplicationExtensionNavbarMenuDataInput = {
46
+ featureToggle?: InputMaybe<Scalars['String']>;
47
+ icon: Scalars['String'];
48
+ key: Scalars['String'];
49
+ labelAllLocales: Array<TLocalizedFieldDataInput>;
50
+ permissions: Array<TOAuthScope>;
51
+ submenu: Array<TApplicationExtensionNavbarSubmenuDataInput>;
52
+ uriPath: Scalars['String'];
53
+ };
54
+ export declare type TApplicationExtensionNavbarSubmenuDataInput = {
55
+ featureToggle?: InputMaybe<Scalars['String']>;
56
+ key: Scalars['String'];
57
+ labelAllLocales: Array<TLocalizedFieldDataInput>;
58
+ permissions: Array<TOAuthScope>;
59
+ uriPath: Scalars['String'];
60
+ };
61
+ export declare enum TAuthPermission {
62
+ AccessToProject = "accessToProject",
63
+ LoggedInUser = "loggedInUser",
64
+ ManageMyOrganizations = "manageMyOrganizations",
65
+ ManageProjectSettings = "manageProjectSettings",
66
+ ViewCartDiscounts = "viewCartDiscounts",
67
+ ViewCustomers = "viewCustomers",
68
+ ViewDiscountCodes = "viewDiscountCodes",
69
+ ViewOrders = "viewOrders",
70
+ ViewProductDiscounts = "viewProductDiscounts",
71
+ ViewProducts = "viewProducts",
72
+ ViewProjectSettings = "viewProjectSettings",
73
+ ViewSomeDiscounts = "viewSomeDiscounts",
74
+ ViewUsersAndOrganizations = "viewUsersAndOrganizations"
75
+ }
76
+ export declare type TAverageOrderValueConfiguration = {
77
+ __typename?: 'AverageOrderValueConfiguration';
78
+ createdAt: Scalars['DateTime'];
79
+ id: Scalars['ID'];
80
+ showPreviousTimeframe: Scalars['Boolean'];
81
+ updatedAt: Scalars['DateTime'];
82
+ };
83
+ export declare type TAverageOrderValueConfigurationInput = {
84
+ showPreviousTimeframe: Scalars['Boolean'];
85
+ };
86
+ export declare type TAverageOrderValueConfigurationWhereInput = {
87
+ AND?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
88
+ NOT?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
89
+ OR?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
90
+ createdAt?: InputMaybe<Scalars['DateTime']>;
91
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
92
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
93
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
94
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
95
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
96
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
97
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
98
+ id?: InputMaybe<Scalars['ID']>;
99
+ id_contains?: InputMaybe<Scalars['ID']>;
100
+ id_ends_with?: InputMaybe<Scalars['ID']>;
101
+ id_gt?: InputMaybe<Scalars['ID']>;
102
+ id_gte?: InputMaybe<Scalars['ID']>;
103
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
104
+ id_lt?: InputMaybe<Scalars['ID']>;
105
+ id_lte?: InputMaybe<Scalars['ID']>;
106
+ id_not?: InputMaybe<Scalars['ID']>;
107
+ id_not_contains?: InputMaybe<Scalars['ID']>;
108
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
109
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
110
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
111
+ id_starts_with?: InputMaybe<Scalars['ID']>;
112
+ showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
113
+ showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
114
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
115
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
116
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
117
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
118
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
119
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
120
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
121
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
122
+ };
123
+ export declare enum TBestSellingLimit {
124
+ Fifteen = "FIFTEEN",
125
+ Five = "FIVE",
126
+ Ten = "TEN"
127
+ }
128
+ export declare type TCartDiscountsListView = {
129
+ __typename?: 'CartDiscountsListView';
130
+ createdAt: Scalars['DateTime'];
131
+ id: Scalars['ID'];
132
+ projectKey: Scalars['String'];
133
+ updatedAt: Scalars['DateTime'];
134
+ userId: Scalars['String'];
135
+ visibleColumns: Array<Scalars['String']>;
136
+ };
137
+ export declare type TCartDiscountsListViewInput = {
138
+ visibleColumns: Array<Scalars['String']>;
139
+ };
140
+ export declare enum TCategoryRecommendationSearchProperty {
141
+ Attribute = "Attribute",
142
+ MachineLearning = "MachineLearning",
143
+ ProductType = "ProductType"
144
+ }
145
+ export declare type TCategoryRecommendationSettings = {
146
+ __typename?: 'CategoryRecommendationSettings';
147
+ attributeName?: Maybe<Scalars['String']>;
148
+ createdAt: Scalars['DateTime'];
149
+ id: Scalars['ID'];
150
+ searchProperty: TCategoryRecommendationSearchProperty;
151
+ updatedAt: Scalars['DateTime'];
152
+ };
153
+ export declare type TCategoryRecommendationSettingsDataInput = {
154
+ attributeName?: InputMaybe<Scalars['String']>;
155
+ searchProperty: TCategoryRecommendationSearchProperty;
156
+ };
157
+ export declare type TContactInformation = {
158
+ __typename?: 'ContactInformation';
159
+ createdAt: Scalars['DateTime'];
160
+ email: Scalars['String'];
161
+ id: Scalars['ID'];
162
+ updatedAt: Scalars['DateTime'];
163
+ verifiedEmail?: Maybe<Scalars['String']>;
164
+ };
165
+ export declare type TContactInformationDataInput = {
166
+ email: Scalars['String'];
167
+ };
168
+ export declare type TCustomApplication = {
169
+ __typename?: 'CustomApplication';
170
+ createdAt: Scalars['DateTime'];
171
+ description?: Maybe<Scalars['String']>;
172
+ entryPointUriPath: Scalars['String'];
173
+ icon: Scalars['String'];
174
+ id: Scalars['ID'];
175
+ installedBy: Array<TCustomApplicationInstallation>;
176
+ mainMenuLink: TCustomApplicationMenuLink;
177
+ name: Scalars['String'];
178
+ owner: TOrganizationExtension;
179
+ ownerId: Scalars['String'];
180
+ permissions: Array<TCustomApplicationPermission>;
181
+ status?: Maybe<TCustomApplicationStatus>;
182
+ submenuLinks: Array<TCustomApplicationSubmenuLink>;
183
+ updatedAt: Scalars['DateTime'];
184
+ url: Scalars['String'];
185
+ };
186
+ export declare type TCustomApplicationDraftDataInput = {
187
+ description?: InputMaybe<Scalars['String']>;
188
+ entryPointUriPath: Scalars['String'];
189
+ icon: Scalars['String'];
190
+ mainMenuLink: TCustomApplicationMenuLinkDraftDataInput;
191
+ name: Scalars['String'];
192
+ permissions: Array<TCustomApplicationPermissionDataInput>;
193
+ submenuLinks: Array<TCustomApplicationSubmenuLinkDraftDataInput>;
194
+ url: Scalars['String'];
195
+ };
196
+ export declare type TCustomApplicationInstallation = {
197
+ __typename?: 'CustomApplicationInstallation';
198
+ acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
199
+ createdAt: Scalars['DateTime'];
200
+ id: Scalars['ID'];
201
+ installInAllProjects: Scalars['Boolean'];
202
+ owner: TOrganizationExtension;
203
+ ownerId: Scalars['String'];
204
+ projects?: Maybe<Array<TProjectExtension>>;
205
+ updatedAt: Scalars['DateTime'];
206
+ };
207
+ export declare type TCustomApplicationInstallationPermission = {
208
+ __typename?: 'CustomApplicationInstallationPermission';
209
+ createdAt: Scalars['DateTime'];
210
+ id: Scalars['ID'];
211
+ name: Scalars['String'];
212
+ oAuthScopes: Array<Scalars['String']>;
213
+ updatedAt: Scalars['DateTime'];
214
+ };
215
+ export declare type TCustomApplicationMenuLink = {
216
+ __typename?: 'CustomApplicationMenuLink';
217
+ createdAt: Scalars['DateTime'];
218
+ defaultLabel: Scalars['String'];
219
+ /** @deprecated This field has been moved outside of the menu link. */
220
+ icon: Scalars['String'];
221
+ /** @deprecated This field has been renamed to icon. */
222
+ iconName?: Maybe<Scalars['String']>;
223
+ id: Scalars['ID'];
224
+ labelAllLocales: Array<TLocalizedField>;
225
+ permissions: Array<Scalars['String']>;
226
+ /** @deprecated This field has been moved outside of the menu link and is now a top level field. */
227
+ submenuLinks: Array<TCustomApplicationSubmenuLink>;
228
+ updatedAt: Scalars['DateTime'];
229
+ };
230
+ export declare type TCustomApplicationMenuLinkDraftDataInput = {
231
+ defaultLabel: Scalars['String'];
232
+ labelAllLocales: Array<TLocalizedFieldDataInput>;
233
+ permissions: Array<Scalars['String']>;
234
+ };
235
+ export declare type TCustomApplicationPermission = {
236
+ __typename?: 'CustomApplicationPermission';
237
+ createdAt: Scalars['DateTime'];
238
+ id: Scalars['ID'];
239
+ name: Scalars['String'];
240
+ oAuthScopes: Array<Scalars['String']>;
241
+ updatedAt: Scalars['DateTime'];
242
+ };
243
+ export declare type TCustomApplicationPermissionDataInput = {
244
+ name: Scalars['String'];
245
+ oAuthScopes: Array<Scalars['String']>;
246
+ };
247
+ export declare type TCustomApplicationQueryInput = {
248
+ limit?: InputMaybe<Scalars['Int']>;
249
+ offset?: InputMaybe<Scalars['Int']>;
250
+ sort?: InputMaybe<Scalars['String']>;
251
+ };
252
+ export declare enum TCustomApplicationStatus {
253
+ Draft = "DRAFT",
254
+ PrivateUsage = "PRIVATE_USAGE"
255
+ }
256
+ export declare type TCustomApplicationSubmenuLink = {
257
+ __typename?: 'CustomApplicationSubmenuLink';
258
+ createdAt: Scalars['DateTime'];
259
+ defaultLabel: Scalars['String'];
260
+ id: Scalars['ID'];
261
+ labelAllLocales: Array<TLocalizedField>;
262
+ permissions: Array<Scalars['String']>;
263
+ updatedAt: Scalars['DateTime'];
264
+ uriPath: Scalars['String'];
265
+ };
266
+ export declare type TCustomApplicationSubmenuLinkDraftDataInput = {
267
+ defaultLabel: Scalars['String'];
268
+ labelAllLocales: Array<TLocalizedFieldDataInput>;
269
+ permissions: Array<Scalars['String']>;
270
+ uriPath: Scalars['String'];
271
+ };
272
+ export declare type TCustomApplicationsMaintainerContactEmailVerificationConfirmation = {
273
+ __typename?: 'CustomApplicationsMaintainerContactEmailVerificationConfirmation';
274
+ organizationId: Scalars['ID'];
275
+ };
276
+ export declare type TCustomApplicationsMaintainerContactEmailVerificationRequest = {
277
+ __typename?: 'CustomApplicationsMaintainerContactEmailVerificationRequest';
278
+ token?: Maybe<Scalars['String']>;
279
+ };
280
+ export declare type TCustomApplicationsPagedQueryResult = {
281
+ __typename?: 'CustomApplicationsPagedQueryResult';
282
+ count: Scalars['Int'];
283
+ limit: Scalars['Int'];
284
+ offset: Scalars['Int'];
285
+ results: Array<TCustomApplication>;
286
+ total: Scalars['Int'];
287
+ };
288
+ export declare type TCustomersListView = {
289
+ __typename?: 'CustomersListView';
290
+ createdAt: Scalars['DateTime'];
291
+ filters?: Maybe<Array<TFilterValues>>;
292
+ id: Scalars['ID'];
293
+ isActive?: Maybe<Scalars['Boolean']>;
294
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
295
+ projectKey: Scalars['String'];
296
+ search?: Maybe<Scalars['String']>;
297
+ sort?: Maybe<TSort>;
298
+ table?: Maybe<TTable>;
299
+ updatedAt: Scalars['DateTime'];
300
+ userId: Scalars['String'];
301
+ };
302
+ export declare type TCustomersListView_FiltersArgs = {
303
+ after?: InputMaybe<Scalars['String']>;
304
+ before?: InputMaybe<Scalars['String']>;
305
+ first?: InputMaybe<Scalars['Int']>;
306
+ last?: InputMaybe<Scalars['Int']>;
307
+ orderBy?: InputMaybe<TFilterValuesOrderByInput>;
308
+ skip?: InputMaybe<Scalars['Int']>;
309
+ where?: InputMaybe<TFilterValuesWhereInput>;
310
+ };
311
+ export declare type TCustomersListView_NameAllLocalesArgs = {
312
+ after?: InputMaybe<Scalars['String']>;
313
+ before?: InputMaybe<Scalars['String']>;
314
+ first?: InputMaybe<Scalars['Int']>;
315
+ last?: InputMaybe<Scalars['Int']>;
316
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
317
+ skip?: InputMaybe<Scalars['Int']>;
318
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
319
+ };
320
+ export declare type TCustomersListViewInput = {
321
+ filters: Array<TFilterValuesCreateInput>;
322
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
323
+ search?: InputMaybe<Scalars['String']>;
324
+ sort: TSortCreateInput;
325
+ table?: InputMaybe<TCustomersListViewTableInput>;
326
+ };
327
+ export declare type TCustomersListViewTableInput = {
328
+ visibleColumns: Array<Scalars['String']>;
329
+ };
330
+ export declare type TDashboardView = {
331
+ __typename?: 'DashboardView';
332
+ createdAt: Scalars['DateTime'];
333
+ currencyCode?: Maybe<Scalars['String']>;
334
+ id: Scalars['ID'];
335
+ isActive: Scalars['Boolean'];
336
+ layout?: Maybe<Array<TLayoutCard>>;
337
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
338
+ projectKey: Scalars['String'];
339
+ timeZone?: Maybe<Scalars['String']>;
340
+ updatedAt: Scalars['DateTime'];
341
+ userId: Scalars['String'];
342
+ };
343
+ export declare type TDashboardView_LayoutArgs = {
344
+ after?: InputMaybe<Scalars['String']>;
345
+ before?: InputMaybe<Scalars['String']>;
346
+ first?: InputMaybe<Scalars['Int']>;
347
+ last?: InputMaybe<Scalars['Int']>;
348
+ orderBy?: InputMaybe<TLayoutCardOrderByInput>;
349
+ skip?: InputMaybe<Scalars['Int']>;
350
+ where?: InputMaybe<TLayoutCardWhereInput>;
351
+ };
352
+ export declare type TDashboardView_NameAllLocalesArgs = {
353
+ after?: InputMaybe<Scalars['String']>;
354
+ before?: InputMaybe<Scalars['String']>;
355
+ first?: InputMaybe<Scalars['Int']>;
356
+ last?: InputMaybe<Scalars['Int']>;
357
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
358
+ skip?: InputMaybe<Scalars['Int']>;
359
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
360
+ };
361
+ export declare type TDashboardViewInput = {
362
+ currencyCode?: InputMaybe<Scalars['String']>;
363
+ layout: Array<TLayoutCardInput>;
364
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
365
+ timeZone?: InputMaybe<Scalars['String']>;
366
+ };
367
+ export declare enum TDateFilterType {
368
+ Custom = "CUSTOM",
369
+ Day = "DAY",
370
+ Month = "MONTH",
371
+ Quarter = "QUARTER",
372
+ Week = "WEEK",
373
+ Year = "YEAR"
374
+ }
375
+ export declare type TDiscountCodesListView = {
376
+ __typename?: 'DiscountCodesListView';
377
+ createdAt: Scalars['DateTime'];
378
+ id: Scalars['ID'];
379
+ projectKey: Scalars['String'];
380
+ updatedAt: Scalars['DateTime'];
381
+ userId: Scalars['String'];
382
+ visibleColumns: Array<Scalars['String']>;
383
+ };
384
+ export declare type TDiscountCodesListViewInput = {
385
+ visibleColumns: Array<Scalars['String']>;
386
+ };
387
+ export declare enum TDiscountType {
388
+ CartDiscount = "CartDiscount",
389
+ DiscountCode = "DiscountCode",
390
+ ProductDiscount = "ProductDiscount"
391
+ }
392
+ export declare type TDiscountsCustomView = {
393
+ __typename?: 'DiscountsCustomView';
394
+ createdAt: Scalars['DateTime'];
395
+ filters?: Maybe<Array<TFilterValues>>;
396
+ id: Scalars['ID'];
397
+ isActive?: Maybe<Scalars['Boolean']>;
398
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
399
+ projectKey: Scalars['String'];
400
+ search?: Maybe<Scalars['String']>;
401
+ sort?: Maybe<TSort>;
402
+ table?: Maybe<TTable>;
403
+ type: TDiscountType;
404
+ updatedAt: Scalars['DateTime'];
405
+ userId: Scalars['String'];
406
+ };
407
+ export declare type TDiscountsCustomView_FiltersArgs = {
408
+ after?: InputMaybe<Scalars['String']>;
409
+ before?: InputMaybe<Scalars['String']>;
410
+ first?: InputMaybe<Scalars['Int']>;
411
+ last?: InputMaybe<Scalars['Int']>;
412
+ orderBy?: InputMaybe<TFilterValuesOrderByInput>;
413
+ skip?: InputMaybe<Scalars['Int']>;
414
+ where?: InputMaybe<TFilterValuesWhereInput>;
415
+ };
416
+ export declare type TDiscountsCustomView_NameAllLocalesArgs = {
417
+ after?: InputMaybe<Scalars['String']>;
418
+ before?: InputMaybe<Scalars['String']>;
419
+ first?: InputMaybe<Scalars['Int']>;
420
+ last?: InputMaybe<Scalars['Int']>;
421
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
422
+ skip?: InputMaybe<Scalars['Int']>;
423
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
424
+ };
425
+ export declare type TDiscountsCustomViewInput = {
426
+ filters: Array<TFilterValuesCreateInput>;
427
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
428
+ search?: InputMaybe<Scalars['String']>;
429
+ sort: TSortCreateInput;
430
+ table?: InputMaybe<TOrdersListViewTableInput>;
431
+ };
432
+ export declare enum TExistence {
433
+ All = "All",
434
+ Empty = "Empty",
435
+ Filled = "Filled"
436
+ }
437
+ export declare enum TFilterType {
438
+ CustomField = "CustomField",
439
+ EqualTo = "EqualTo",
440
+ In = "In",
441
+ LessThan = "LessThan",
442
+ Missing = "Missing",
443
+ MissingIn = "MissingIn",
444
+ MoreThan = "MoreThan",
445
+ Range = "Range"
446
+ }
447
+ export declare type TFilterValues = {
448
+ __typename?: 'FilterValues';
449
+ createdAt: Scalars['DateTime'];
450
+ id: Scalars['ID'];
451
+ json: Scalars['Json'];
452
+ target: Scalars['String'];
453
+ type: TFilterType;
454
+ updatedAt: Scalars['DateTime'];
455
+ };
456
+ export declare type TFilterValuesCreateInput = {
457
+ id?: InputMaybe<Scalars['ID']>;
458
+ json: Scalars['Json'];
459
+ target: Scalars['String'];
460
+ type: TFilterType;
461
+ };
462
+ export declare enum TFilterValuesOrderByInput {
463
+ CreatedAtAsc = "createdAt_ASC",
464
+ CreatedAtDesc = "createdAt_DESC",
465
+ IdAsc = "id_ASC",
466
+ IdDesc = "id_DESC",
467
+ JsonAsc = "json_ASC",
468
+ JsonDesc = "json_DESC",
469
+ TargetAsc = "target_ASC",
470
+ TargetDesc = "target_DESC",
471
+ TypeAsc = "type_ASC",
472
+ TypeDesc = "type_DESC",
473
+ UpdatedAtAsc = "updatedAt_ASC",
474
+ UpdatedAtDesc = "updatedAt_DESC"
475
+ }
476
+ export declare type TFilterValuesWhereInput = {
477
+ AND?: InputMaybe<Array<TFilterValuesWhereInput>>;
478
+ NOT?: InputMaybe<Array<TFilterValuesWhereInput>>;
479
+ OR?: InputMaybe<Array<TFilterValuesWhereInput>>;
480
+ createdAt?: InputMaybe<Scalars['DateTime']>;
481
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
482
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
483
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
484
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
485
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
486
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
487
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
488
+ id?: InputMaybe<Scalars['ID']>;
489
+ id_contains?: InputMaybe<Scalars['ID']>;
490
+ id_ends_with?: InputMaybe<Scalars['ID']>;
491
+ id_gt?: InputMaybe<Scalars['ID']>;
492
+ id_gte?: InputMaybe<Scalars['ID']>;
493
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
494
+ id_lt?: InputMaybe<Scalars['ID']>;
495
+ id_lte?: InputMaybe<Scalars['ID']>;
496
+ id_not?: InputMaybe<Scalars['ID']>;
497
+ id_not_contains?: InputMaybe<Scalars['ID']>;
498
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
499
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
500
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
501
+ id_starts_with?: InputMaybe<Scalars['ID']>;
502
+ target?: InputMaybe<Scalars['String']>;
503
+ target_contains?: InputMaybe<Scalars['String']>;
504
+ target_ends_with?: InputMaybe<Scalars['String']>;
505
+ target_gt?: InputMaybe<Scalars['String']>;
506
+ target_gte?: InputMaybe<Scalars['String']>;
507
+ target_in?: InputMaybe<Array<Scalars['String']>>;
508
+ target_lt?: InputMaybe<Scalars['String']>;
509
+ target_lte?: InputMaybe<Scalars['String']>;
510
+ target_not?: InputMaybe<Scalars['String']>;
511
+ target_not_contains?: InputMaybe<Scalars['String']>;
512
+ target_not_ends_with?: InputMaybe<Scalars['String']>;
513
+ target_not_in?: InputMaybe<Array<Scalars['String']>>;
514
+ target_not_starts_with?: InputMaybe<Scalars['String']>;
515
+ target_starts_with?: InputMaybe<Scalars['String']>;
516
+ type?: InputMaybe<TFilterType>;
517
+ type_in?: InputMaybe<Array<TFilterType>>;
518
+ type_not?: InputMaybe<TFilterType>;
519
+ type_not_in?: InputMaybe<Array<TFilterType>>;
520
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
521
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
522
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
523
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
524
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
525
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
526
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
527
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
528
+ };
529
+ export declare type TImageRegex = {
530
+ __typename?: 'ImageRegex';
531
+ createdAt: Scalars['DateTime'];
532
+ id: Scalars['ID'];
533
+ small?: Maybe<TImageRegexOptions>;
534
+ thumb?: Maybe<TImageRegexOptions>;
535
+ updatedAt: Scalars['DateTime'];
536
+ };
537
+ export declare type TImageRegexDataInput = {
538
+ small?: InputMaybe<TImageRegexOptionsInput>;
539
+ thumb?: InputMaybe<TImageRegexOptionsInput>;
540
+ };
541
+ export declare type TImageRegexOptions = {
542
+ __typename?: 'ImageRegexOptions';
543
+ createdAt: Scalars['DateTime'];
544
+ flag: Scalars['String'];
545
+ id: Scalars['ID'];
546
+ replace: Scalars['String'];
547
+ search: Scalars['String'];
548
+ updatedAt: Scalars['DateTime'];
549
+ };
550
+ export declare type TImageRegexOptionsInput = {
551
+ flag: Scalars['String'];
552
+ replace: Scalars['String'];
553
+ search: Scalars['String'];
554
+ };
555
+ export declare type TLayoutCard = {
556
+ __typename?: 'LayoutCard';
557
+ averageOrderValueConfiguration?: Maybe<TAverageOrderValueConfiguration>;
558
+ createdAt: Scalars['DateTime'];
559
+ height: Scalars['Int'];
560
+ id: Scalars['ID'];
561
+ key: TMetricCardType;
562
+ maxHeight?: Maybe<Scalars['Int']>;
563
+ maxWidth?: Maybe<Scalars['Int']>;
564
+ minHeight?: Maybe<Scalars['Int']>;
565
+ minWidth?: Maybe<Scalars['Int']>;
566
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
567
+ orderStatusConfiguration?: Maybe<TOrderStatusConfiguration>;
568
+ resizeHandles: Array<Scalars['String']>;
569
+ resourcesNumbersConfiguration?: Maybe<TResourcesNumbersConfiguration>;
570
+ salesPerformanceConfiguration?: Maybe<TSalesPerformanceConfiguration>;
571
+ topProductsConfiguration?: Maybe<TTopProductsConfiguration>;
572
+ totalOrdersConfiguration?: Maybe<TTotalOrdersConfiguration>;
573
+ totalSalesConfiguration?: Maybe<TTotalSalesConfiguration>;
574
+ updatedAt: Scalars['DateTime'];
575
+ width: Scalars['Int'];
576
+ xPosition: Scalars['Int'];
577
+ yPosition: Scalars['Int'];
578
+ };
579
+ export declare type TLayoutCard_NameAllLocalesArgs = {
580
+ after?: InputMaybe<Scalars['String']>;
581
+ before?: InputMaybe<Scalars['String']>;
582
+ first?: InputMaybe<Scalars['Int']>;
583
+ last?: InputMaybe<Scalars['Int']>;
584
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
585
+ skip?: InputMaybe<Scalars['Int']>;
586
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
587
+ };
588
+ export declare type TLayoutCardInput = {
589
+ averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationInput>;
590
+ height: Scalars['Int'];
591
+ key: TMetricCardType;
592
+ maxHeight?: InputMaybe<Scalars['Int']>;
593
+ maxWidth?: InputMaybe<Scalars['Int']>;
594
+ minHeight?: InputMaybe<Scalars['Int']>;
595
+ minWidth?: InputMaybe<Scalars['Int']>;
596
+ nameAllLocales?: InputMaybe<Array<TLocalizedFieldCreateInput>>;
597
+ orderStatusConfiguration?: InputMaybe<TOrderStatusConfigurationInput>;
598
+ resizeHandles?: InputMaybe<Array<Scalars['String']>>;
599
+ resourcesNumbersConfiguration?: InputMaybe<TResourcesNumbersConfigurationInput>;
600
+ salesPerformanceConfiguration?: InputMaybe<TSalesPerformanceConfigurationInput>;
601
+ topProductsConfiguration?: InputMaybe<TTopProductsConfigurationInput>;
602
+ totalOrdersConfiguration?: InputMaybe<TTotalOrdersConfigurationInput>;
603
+ totalSalesConfiguration?: InputMaybe<TTotalSalesConfigurationInput>;
604
+ width: Scalars['Int'];
605
+ xPosition: Scalars['Int'];
606
+ yPosition: Scalars['Int'];
607
+ };
608
+ export declare enum TLayoutCardOrderByInput {
609
+ CreatedAtAsc = "createdAt_ASC",
610
+ CreatedAtDesc = "createdAt_DESC",
611
+ HeightAsc = "height_ASC",
612
+ HeightDesc = "height_DESC",
613
+ IdAsc = "id_ASC",
614
+ IdDesc = "id_DESC",
615
+ KeyAsc = "key_ASC",
616
+ KeyDesc = "key_DESC",
617
+ MaxHeightAsc = "maxHeight_ASC",
618
+ MaxHeightDesc = "maxHeight_DESC",
619
+ MaxWidthAsc = "maxWidth_ASC",
620
+ MaxWidthDesc = "maxWidth_DESC",
621
+ MinHeightAsc = "minHeight_ASC",
622
+ MinHeightDesc = "minHeight_DESC",
623
+ MinWidthAsc = "minWidth_ASC",
624
+ MinWidthDesc = "minWidth_DESC",
625
+ UpdatedAtAsc = "updatedAt_ASC",
626
+ UpdatedAtDesc = "updatedAt_DESC",
627
+ WidthAsc = "width_ASC",
628
+ WidthDesc = "width_DESC",
629
+ XPositionAsc = "xPosition_ASC",
630
+ XPositionDesc = "xPosition_DESC",
631
+ YPositionAsc = "yPosition_ASC",
632
+ YPositionDesc = "yPosition_DESC"
633
+ }
634
+ export declare type TLayoutCardWhereInput = {
635
+ AND?: InputMaybe<Array<TLayoutCardWhereInput>>;
636
+ NOT?: InputMaybe<Array<TLayoutCardWhereInput>>;
637
+ OR?: InputMaybe<Array<TLayoutCardWhereInput>>;
638
+ averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationWhereInput>;
639
+ createdAt?: InputMaybe<Scalars['DateTime']>;
640
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
641
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
642
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
643
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
644
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
645
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
646
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
647
+ height?: InputMaybe<Scalars['Int']>;
648
+ height_gt?: InputMaybe<Scalars['Int']>;
649
+ height_gte?: InputMaybe<Scalars['Int']>;
650
+ height_in?: InputMaybe<Array<Scalars['Int']>>;
651
+ height_lt?: InputMaybe<Scalars['Int']>;
652
+ height_lte?: InputMaybe<Scalars['Int']>;
653
+ height_not?: InputMaybe<Scalars['Int']>;
654
+ height_not_in?: InputMaybe<Array<Scalars['Int']>>;
655
+ id?: InputMaybe<Scalars['ID']>;
656
+ id_contains?: InputMaybe<Scalars['ID']>;
657
+ id_ends_with?: InputMaybe<Scalars['ID']>;
658
+ id_gt?: InputMaybe<Scalars['ID']>;
659
+ id_gte?: InputMaybe<Scalars['ID']>;
660
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
661
+ id_lt?: InputMaybe<Scalars['ID']>;
662
+ id_lte?: InputMaybe<Scalars['ID']>;
663
+ id_not?: InputMaybe<Scalars['ID']>;
664
+ id_not_contains?: InputMaybe<Scalars['ID']>;
665
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
666
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
667
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
668
+ id_starts_with?: InputMaybe<Scalars['ID']>;
669
+ key?: InputMaybe<TMetricCardType>;
670
+ key_in?: InputMaybe<Array<TMetricCardType>>;
671
+ key_not?: InputMaybe<TMetricCardType>;
672
+ key_not_in?: InputMaybe<Array<TMetricCardType>>;
673
+ maxHeight?: InputMaybe<Scalars['Int']>;
674
+ maxHeight_gt?: InputMaybe<Scalars['Int']>;
675
+ maxHeight_gte?: InputMaybe<Scalars['Int']>;
676
+ maxHeight_in?: InputMaybe<Array<Scalars['Int']>>;
677
+ maxHeight_lt?: InputMaybe<Scalars['Int']>;
678
+ maxHeight_lte?: InputMaybe<Scalars['Int']>;
679
+ maxHeight_not?: InputMaybe<Scalars['Int']>;
680
+ maxHeight_not_in?: InputMaybe<Array<Scalars['Int']>>;
681
+ maxWidth?: InputMaybe<Scalars['Int']>;
682
+ maxWidth_gt?: InputMaybe<Scalars['Int']>;
683
+ maxWidth_gte?: InputMaybe<Scalars['Int']>;
684
+ maxWidth_in?: InputMaybe<Array<Scalars['Int']>>;
685
+ maxWidth_lt?: InputMaybe<Scalars['Int']>;
686
+ maxWidth_lte?: InputMaybe<Scalars['Int']>;
687
+ maxWidth_not?: InputMaybe<Scalars['Int']>;
688
+ maxWidth_not_in?: InputMaybe<Array<Scalars['Int']>>;
689
+ minHeight?: InputMaybe<Scalars['Int']>;
690
+ minHeight_gt?: InputMaybe<Scalars['Int']>;
691
+ minHeight_gte?: InputMaybe<Scalars['Int']>;
692
+ minHeight_in?: InputMaybe<Array<Scalars['Int']>>;
693
+ minHeight_lt?: InputMaybe<Scalars['Int']>;
694
+ minHeight_lte?: InputMaybe<Scalars['Int']>;
695
+ minHeight_not?: InputMaybe<Scalars['Int']>;
696
+ minHeight_not_in?: InputMaybe<Array<Scalars['Int']>>;
697
+ minWidth?: InputMaybe<Scalars['Int']>;
698
+ minWidth_gt?: InputMaybe<Scalars['Int']>;
699
+ minWidth_gte?: InputMaybe<Scalars['Int']>;
700
+ minWidth_in?: InputMaybe<Array<Scalars['Int']>>;
701
+ minWidth_lt?: InputMaybe<Scalars['Int']>;
702
+ minWidth_lte?: InputMaybe<Scalars['Int']>;
703
+ minWidth_not?: InputMaybe<Scalars['Int']>;
704
+ minWidth_not_in?: InputMaybe<Array<Scalars['Int']>>;
705
+ nameAllLocales_every?: InputMaybe<TLocalizedFieldWhereInput>;
706
+ nameAllLocales_none?: InputMaybe<TLocalizedFieldWhereInput>;
707
+ nameAllLocales_some?: InputMaybe<TLocalizedFieldWhereInput>;
708
+ orderStatusConfiguration?: InputMaybe<TOrderStatusConfigurationWhereInput>;
709
+ resourcesNumbersConfiguration?: InputMaybe<TResourcesNumbersConfigurationWhereInput>;
710
+ salesPerformanceConfiguration?: InputMaybe<TSalesPerformanceConfigurationWhereInput>;
711
+ topProductsConfiguration?: InputMaybe<TTopProductsConfigurationWhereInput>;
712
+ totalOrdersConfiguration?: InputMaybe<TTotalOrdersConfigurationWhereInput>;
713
+ totalSalesConfiguration?: InputMaybe<TTotalSalesConfigurationWhereInput>;
714
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
715
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
716
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
717
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
718
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
719
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
720
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
721
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
722
+ width?: InputMaybe<Scalars['Int']>;
723
+ width_gt?: InputMaybe<Scalars['Int']>;
724
+ width_gte?: InputMaybe<Scalars['Int']>;
725
+ width_in?: InputMaybe<Array<Scalars['Int']>>;
726
+ width_lt?: InputMaybe<Scalars['Int']>;
727
+ width_lte?: InputMaybe<Scalars['Int']>;
728
+ width_not?: InputMaybe<Scalars['Int']>;
729
+ width_not_in?: InputMaybe<Array<Scalars['Int']>>;
730
+ xPosition?: InputMaybe<Scalars['Int']>;
731
+ xPosition_gt?: InputMaybe<Scalars['Int']>;
732
+ xPosition_gte?: InputMaybe<Scalars['Int']>;
733
+ xPosition_in?: InputMaybe<Array<Scalars['Int']>>;
734
+ xPosition_lt?: InputMaybe<Scalars['Int']>;
735
+ xPosition_lte?: InputMaybe<Scalars['Int']>;
736
+ xPosition_not?: InputMaybe<Scalars['Int']>;
737
+ xPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
738
+ yPosition?: InputMaybe<Scalars['Int']>;
739
+ yPosition_gt?: InputMaybe<Scalars['Int']>;
740
+ yPosition_gte?: InputMaybe<Scalars['Int']>;
741
+ yPosition_in?: InputMaybe<Array<Scalars['Int']>>;
742
+ yPosition_lt?: InputMaybe<Scalars['Int']>;
743
+ yPosition_lte?: InputMaybe<Scalars['Int']>;
744
+ yPosition_not?: InputMaybe<Scalars['Int']>;
745
+ yPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
746
+ };
747
+ export declare type TLegacyCustomApplication = {
748
+ __typename?: 'LegacyCustomApplication';
749
+ createdAt: Scalars['DateTime'];
750
+ description?: Maybe<Scalars['String']>;
751
+ id: Scalars['ID'];
752
+ isActive?: Maybe<Scalars['Boolean']>;
753
+ name: Scalars['String'];
754
+ navbarMenu?: Maybe<TNavbarMenu>;
755
+ oAuthScopes: Array<Scalars['String']>;
756
+ project: TProjectExtension;
757
+ updatedAt: Scalars['DateTime'];
758
+ url: Scalars['String'];
759
+ };
760
+ export declare type TLegacyCustomApplicationQueryInput = {
761
+ limit?: InputMaybe<Scalars['Int']>;
762
+ offset?: InputMaybe<Scalars['Int']>;
763
+ sort?: InputMaybe<Scalars['String']>;
764
+ };
765
+ export declare type TLegacyCustomApplicationsPagedQueryResult = {
766
+ __typename?: 'LegacyCustomApplicationsPagedQueryResult';
767
+ count: Scalars['Int'];
768
+ limit: Scalars['Int'];
769
+ offset: Scalars['Int'];
770
+ results: Array<TLegacyCustomApplication>;
771
+ total: Scalars['Int'];
772
+ };
773
+ export declare type TLocalizedField = {
774
+ __typename?: 'LocalizedField';
775
+ locale: Scalars['String'];
776
+ value: Scalars['String'];
777
+ };
778
+ export declare type TLocalizedFieldCreateInput = {
779
+ id?: InputMaybe<Scalars['ID']>;
780
+ locale: Scalars['String'];
781
+ value: Scalars['String'];
782
+ };
783
+ export declare type TLocalizedFieldDataInput = {
784
+ locale: Scalars['String'];
785
+ value: Scalars['String'];
786
+ };
787
+ export declare enum TLocalizedFieldOrderByInput {
788
+ CreatedAtAsc = "createdAt_ASC",
789
+ CreatedAtDesc = "createdAt_DESC",
790
+ IdAsc = "id_ASC",
791
+ IdDesc = "id_DESC",
792
+ LocaleAsc = "locale_ASC",
793
+ LocaleDesc = "locale_DESC",
794
+ UpdatedAtAsc = "updatedAt_ASC",
795
+ UpdatedAtDesc = "updatedAt_DESC",
796
+ ValueAsc = "value_ASC",
797
+ ValueDesc = "value_DESC"
798
+ }
799
+ export declare type TLocalizedFieldWhereInput = {
800
+ AND?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
801
+ NOT?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
802
+ OR?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
803
+ createdAt?: InputMaybe<Scalars['DateTime']>;
804
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
805
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
806
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
807
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
808
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
809
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
810
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
811
+ id?: InputMaybe<Scalars['ID']>;
812
+ id_contains?: InputMaybe<Scalars['ID']>;
813
+ id_ends_with?: InputMaybe<Scalars['ID']>;
814
+ id_gt?: InputMaybe<Scalars['ID']>;
815
+ id_gte?: InputMaybe<Scalars['ID']>;
816
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
817
+ id_lt?: InputMaybe<Scalars['ID']>;
818
+ id_lte?: InputMaybe<Scalars['ID']>;
819
+ id_not?: InputMaybe<Scalars['ID']>;
820
+ id_not_contains?: InputMaybe<Scalars['ID']>;
821
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
822
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
823
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
824
+ id_starts_with?: InputMaybe<Scalars['ID']>;
825
+ locale?: InputMaybe<Scalars['String']>;
826
+ locale_contains?: InputMaybe<Scalars['String']>;
827
+ locale_ends_with?: InputMaybe<Scalars['String']>;
828
+ locale_gt?: InputMaybe<Scalars['String']>;
829
+ locale_gte?: InputMaybe<Scalars['String']>;
830
+ locale_in?: InputMaybe<Array<Scalars['String']>>;
831
+ locale_lt?: InputMaybe<Scalars['String']>;
832
+ locale_lte?: InputMaybe<Scalars['String']>;
833
+ locale_not?: InputMaybe<Scalars['String']>;
834
+ locale_not_contains?: InputMaybe<Scalars['String']>;
835
+ locale_not_ends_with?: InputMaybe<Scalars['String']>;
836
+ locale_not_in?: InputMaybe<Array<Scalars['String']>>;
837
+ locale_not_starts_with?: InputMaybe<Scalars['String']>;
838
+ locale_starts_with?: InputMaybe<Scalars['String']>;
839
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
840
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
841
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
842
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
843
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
844
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
845
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
846
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
847
+ value?: InputMaybe<Scalars['String']>;
848
+ value_contains?: InputMaybe<Scalars['String']>;
849
+ value_ends_with?: InputMaybe<Scalars['String']>;
850
+ value_gt?: InputMaybe<Scalars['String']>;
851
+ value_gte?: InputMaybe<Scalars['String']>;
852
+ value_in?: InputMaybe<Array<Scalars['String']>>;
853
+ value_lt?: InputMaybe<Scalars['String']>;
854
+ value_lte?: InputMaybe<Scalars['String']>;
855
+ value_not?: InputMaybe<Scalars['String']>;
856
+ value_not_contains?: InputMaybe<Scalars['String']>;
857
+ value_not_ends_with?: InputMaybe<Scalars['String']>;
858
+ value_not_in?: InputMaybe<Array<Scalars['String']>>;
859
+ value_not_starts_with?: InputMaybe<Scalars['String']>;
860
+ value_starts_with?: InputMaybe<Scalars['String']>;
861
+ };
862
+ export declare enum TMetricCardType {
863
+ AverageOrderValue = "AVERAGE_ORDER_VALUE",
864
+ OrderStatus = "ORDER_STATUS",
865
+ ProductTopVariants = "PRODUCT_TOP_VARIANTS",
866
+ ResourcesNumbers = "RESOURCES_NUMBERS",
867
+ SalesPerformance = "SALES_PERFORMANCE",
868
+ TotalOrders = "TOTAL_ORDERS",
869
+ TotalSales = "TOTAL_SALES"
870
+ }
871
+ export declare type TMutation = {
872
+ __typename?: 'Mutation';
873
+ activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
874
+ activateCustomersListView?: Maybe<TCustomersListView>;
875
+ activateDashboardView?: Maybe<TDashboardView>;
876
+ activateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
877
+ activateOrdersListView?: Maybe<TOrdersListView>;
878
+ activateOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
879
+ activatePimSearchListView?: Maybe<TPimSearchListView>;
880
+ activateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
881
+ activateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
882
+ activateProjectExtensionApplication?: Maybe<TProjectExtension>;
883
+ changeCustomApplicationStatus?: Maybe<TRestrictedCustomApplicationForOrganization>;
884
+ createCartDiscountsCustomView: TDiscountsCustomView;
885
+ createCartDiscountsListView?: Maybe<TCartDiscountsListView>;
886
+ createCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
887
+ createCustomersListView: TCustomersListView;
888
+ createDashboardView: TDashboardView;
889
+ createDiscountCodesCustomView: TDiscountsCustomView;
890
+ createDiscountCodesListView?: Maybe<TDiscountCodesListView>;
891
+ createOrdersListView: TOrdersListView;
892
+ createPimSearchListView: TPimSearchListView;
893
+ createProductDiscountsCustomView: TDiscountsCustomView;
894
+ createProductDiscountsListView?: Maybe<TProductDiscountsListView>;
895
+ createProductTypeAttributesView: TProductTypeAttributesView;
896
+ createVariantPricesListView?: Maybe<TVariantPricesListView>;
897
+ deactivateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
898
+ deactivateCustomersListView?: Maybe<TOrdersListView>;
899
+ deactivateDashboardView?: Maybe<TDashboardView>;
900
+ deactivateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
901
+ deactivateOrdersListView?: Maybe<TOrdersListView>;
902
+ deactivateOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
903
+ deactivatePimSearchListView?: Maybe<TPimSearchListView>;
904
+ deactivateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
905
+ deactivateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
906
+ deactivateProjectExtensionApplication?: Maybe<TProjectExtension>;
907
+ deleteAllDashboardViews: Array<TDashboardView>;
908
+ deleteAllOrdersListViews: Array<TOrdersListView>;
909
+ deleteCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
910
+ deleteCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
911
+ deleteCustomersListView?: Maybe<TCustomersListView>;
912
+ deleteDashboardView?: Maybe<TDashboardView>;
913
+ deleteDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
914
+ deleteOrdersListView?: Maybe<TOrdersListView>;
915
+ deletePimSearchListView?: Maybe<TPimSearchListView>;
916
+ deleteProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
917
+ deleteProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
918
+ deleteProjectExtensionApplication?: Maybe<TProjectExtension>;
919
+ installCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
920
+ sendLinkToVerifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationRequest>;
921
+ setCustomApplicationsMaintainerContactInformation?: Maybe<TOrganizationExtension>;
922
+ setOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
923
+ setProjectExtensionCategoryRecommendation?: Maybe<TProjectExtension>;
924
+ setProjectExtensionImageRegex?: Maybe<TProjectExtension>;
925
+ setProjectExtensionOrderStatesVisibility?: Maybe<TProjectExtension>;
926
+ uninstallCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
927
+ updateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
928
+ updateCartDiscountsListView?: Maybe<TCartDiscountsListView>;
929
+ updateCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
930
+ updateCustomApplicationProjectsInstallation?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
931
+ updateCustomersListView?: Maybe<TCustomersListView>;
932
+ updateDashboardView?: Maybe<TDashboardView>;
933
+ updateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
934
+ updateDiscountCodesListView?: Maybe<TDiscountCodesListView>;
935
+ updateOrdersListView?: Maybe<TOrdersListView>;
936
+ updatePimSearchListView?: Maybe<TPimSearchListView>;
937
+ updateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
938
+ updateProductDiscountsListView?: Maybe<TProductDiscountsListView>;
939
+ updateProductTypeAttributesView: TProductTypeAttributesView;
940
+ updateProjectExtensionApplication?: Maybe<TProjectExtension>;
941
+ updateRuleBuilderQuickSelectionValues?: Maybe<TRuleBuilderQuickSelectionValues>;
942
+ updateVariantPricesListView?: Maybe<TVariantPricesListView>;
943
+ verifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationConfirmation>;
944
+ };
945
+ export declare type TMutation_ActivateCartDiscountsCustomViewArgs = {
946
+ id: Scalars['ID'];
947
+ };
948
+ export declare type TMutation_ActivateCustomersListViewArgs = {
949
+ id: Scalars['ID'];
950
+ };
951
+ export declare type TMutation_ActivateDashboardViewArgs = {
952
+ id: Scalars['ID'];
953
+ };
954
+ export declare type TMutation_ActivateDiscountCodesCustomViewArgs = {
955
+ id: Scalars['ID'];
956
+ };
957
+ export declare type TMutation_ActivateOrdersListViewArgs = {
958
+ id: Scalars['ID'];
959
+ };
960
+ export declare type TMutation_ActivateOrganizationExtensionOidcSsoConfigArgs = {
961
+ organizationId: Scalars['String'];
962
+ };
963
+ export declare type TMutation_ActivatePimSearchListViewArgs = {
964
+ id: Scalars['ID'];
965
+ };
966
+ export declare type TMutation_ActivateProductDiscountsCustomViewArgs = {
967
+ id: Scalars['ID'];
968
+ };
969
+ export declare type TMutation_ActivateProductTypeAttributesViewArgs = {
970
+ id: Scalars['ID'];
971
+ isVariant: Scalars['Boolean'];
972
+ productTypeId: Scalars['String'];
973
+ };
974
+ export declare type TMutation_ActivateProjectExtensionApplicationArgs = {
975
+ applicationId: Scalars['ID'];
976
+ };
977
+ export declare type TMutation_ChangeCustomApplicationStatusArgs = {
978
+ applicationId: Scalars['ID'];
979
+ organizationId: Scalars['String'];
980
+ status: TCustomApplicationStatus;
981
+ };
982
+ export declare type TMutation_CreateCartDiscountsCustomViewArgs = {
983
+ data: TDiscountsCustomViewInput;
984
+ };
985
+ export declare type TMutation_CreateCartDiscountsListViewArgs = {
986
+ data: TCartDiscountsListViewInput;
987
+ };
988
+ export declare type TMutation_CreateCustomApplicationArgs = {
989
+ data: TCustomApplicationDraftDataInput;
990
+ organizationId: Scalars['String'];
991
+ };
992
+ export declare type TMutation_CreateCustomersListViewArgs = {
993
+ data: TCustomersListViewInput;
994
+ };
995
+ export declare type TMutation_CreateDashboardViewArgs = {
996
+ data: TDashboardViewInput;
997
+ };
998
+ export declare type TMutation_CreateDiscountCodesCustomViewArgs = {
999
+ data: TDiscountsCustomViewInput;
1000
+ };
1001
+ export declare type TMutation_CreateDiscountCodesListViewArgs = {
1002
+ data: TDiscountCodesListViewInput;
1003
+ };
1004
+ export declare type TMutation_CreateOrdersListViewArgs = {
1005
+ data: TOrdersListViewInput;
1006
+ };
1007
+ export declare type TMutation_CreatePimSearchListViewArgs = {
1008
+ data: TPimSearchListViewInput;
1009
+ };
1010
+ export declare type TMutation_CreateProductDiscountsCustomViewArgs = {
1011
+ data: TDiscountsCustomViewInput;
1012
+ };
1013
+ export declare type TMutation_CreateProductDiscountsListViewArgs = {
1014
+ data: TProductDiscountsListViewInput;
1015
+ };
1016
+ export declare type TMutation_CreateProductTypeAttributesViewArgs = {
1017
+ data: TProductTypeAttributesViewInput;
1018
+ };
1019
+ export declare type TMutation_CreateVariantPricesListViewArgs = {
1020
+ data: TVariantPricesListViewInput;
1021
+ };
1022
+ export declare type TMutation_DeactivateCartDiscountsCustomViewArgs = {
1023
+ id: Scalars['ID'];
1024
+ };
1025
+ export declare type TMutation_DeactivateCustomersListViewArgs = {
1026
+ id: Scalars['ID'];
1027
+ };
1028
+ export declare type TMutation_DeactivateDashboardViewArgs = {
1029
+ id: Scalars['ID'];
1030
+ };
1031
+ export declare type TMutation_DeactivateDiscountCodesCustomViewArgs = {
1032
+ id: Scalars['ID'];
1033
+ };
1034
+ export declare type TMutation_DeactivateOrdersListViewArgs = {
1035
+ id: Scalars['ID'];
1036
+ };
1037
+ export declare type TMutation_DeactivateOrganizationExtensionOidcSsoConfigArgs = {
1038
+ organizationId: Scalars['String'];
1039
+ };
1040
+ export declare type TMutation_DeactivatePimSearchListViewArgs = {
1041
+ id: Scalars['ID'];
1042
+ };
1043
+ export declare type TMutation_DeactivateProductDiscountsCustomViewArgs = {
1044
+ id: Scalars['ID'];
1045
+ };
1046
+ export declare type TMutation_DeactivateProductTypeAttributesViewArgs = {
1047
+ id: Scalars['ID'];
1048
+ };
1049
+ export declare type TMutation_DeactivateProjectExtensionApplicationArgs = {
1050
+ applicationId: Scalars['ID'];
1051
+ };
1052
+ export declare type TMutation_DeleteCartDiscountsCustomViewArgs = {
1053
+ id: Scalars['ID'];
1054
+ };
1055
+ export declare type TMutation_DeleteCustomApplicationArgs = {
1056
+ applicationId: Scalars['ID'];
1057
+ organizationId: Scalars['String'];
1058
+ };
1059
+ export declare type TMutation_DeleteCustomersListViewArgs = {
1060
+ id: Scalars['ID'];
1061
+ };
1062
+ export declare type TMutation_DeleteDashboardViewArgs = {
1063
+ id: Scalars['ID'];
1064
+ };
1065
+ export declare type TMutation_DeleteDiscountCodesCustomViewArgs = {
1066
+ id: Scalars['ID'];
1067
+ };
1068
+ export declare type TMutation_DeleteOrdersListViewArgs = {
1069
+ id: Scalars['ID'];
1070
+ };
1071
+ export declare type TMutation_DeletePimSearchListViewArgs = {
1072
+ id: Scalars['ID'];
1073
+ };
1074
+ export declare type TMutation_DeleteProductDiscountsCustomViewArgs = {
1075
+ id: Scalars['ID'];
1076
+ };
1077
+ export declare type TMutation_DeleteProductTypeAttributesViewArgs = {
1078
+ id: Scalars['ID'];
1079
+ };
1080
+ export declare type TMutation_DeleteProjectExtensionApplicationArgs = {
1081
+ applicationId: Scalars['ID'];
1082
+ };
1083
+ export declare type TMutation_InstallCustomApplicationArgs = {
1084
+ applicationId: Scalars['ID'];
1085
+ organizationId: Scalars['String'];
1086
+ projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
1087
+ };
1088
+ export declare type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
1089
+ organizationId: Scalars['String'];
1090
+ };
1091
+ export declare type TMutation_SetCustomApplicationsMaintainerContactInformationArgs = {
1092
+ data?: InputMaybe<TContactInformationDataInput>;
1093
+ organizationId: Scalars['String'];
1094
+ };
1095
+ export declare type TMutation_SetOrganizationExtensionOidcSsoConfigArgs = {
1096
+ data: TOidcSsoConfigDataInput;
1097
+ organizationId: Scalars['String'];
1098
+ };
1099
+ export declare type TMutation_SetProjectExtensionCategoryRecommendationArgs = {
1100
+ data?: InputMaybe<TCategoryRecommendationSettingsDataInput>;
1101
+ };
1102
+ export declare type TMutation_SetProjectExtensionImageRegexArgs = {
1103
+ data?: InputMaybe<TImageRegexDataInput>;
1104
+ };
1105
+ export declare type TMutation_SetProjectExtensionOrderStatesVisibilityArgs = {
1106
+ data?: InputMaybe<Array<InputMaybe<TOrderStatesVisibility>>>;
1107
+ };
1108
+ export declare type TMutation_UninstallCustomApplicationArgs = {
1109
+ installedApplicationId: Scalars['ID'];
1110
+ organizationId: Scalars['String'];
1111
+ };
1112
+ export declare type TMutation_UpdateCartDiscountsCustomViewArgs = {
1113
+ data: TDiscountsCustomViewInput;
1114
+ id: Scalars['ID'];
1115
+ };
1116
+ export declare type TMutation_UpdateCartDiscountsListViewArgs = {
1117
+ data: TCartDiscountsListViewInput;
1118
+ id: Scalars['ID'];
1119
+ };
1120
+ export declare type TMutation_UpdateCustomApplicationArgs = {
1121
+ applicationId: Scalars['ID'];
1122
+ data: TCustomApplicationDraftDataInput;
1123
+ organizationId: Scalars['String'];
1124
+ };
1125
+ export declare type TMutation_UpdateCustomApplicationProjectsInstallationArgs = {
1126
+ installedApplicationId: Scalars['ID'];
1127
+ organizationId: Scalars['String'];
1128
+ projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
1129
+ };
1130
+ export declare type TMutation_UpdateCustomersListViewArgs = {
1131
+ data: TCustomersListViewInput;
1132
+ id: Scalars['ID'];
1133
+ };
1134
+ export declare type TMutation_UpdateDashboardViewArgs = {
1135
+ data: TDashboardViewInput;
1136
+ id: Scalars['ID'];
1137
+ };
1138
+ export declare type TMutation_UpdateDiscountCodesCustomViewArgs = {
1139
+ data: TDiscountsCustomViewInput;
1140
+ id: Scalars['ID'];
1141
+ };
1142
+ export declare type TMutation_UpdateDiscountCodesListViewArgs = {
1143
+ data: TDiscountCodesListViewInput;
1144
+ id: Scalars['ID'];
1145
+ };
1146
+ export declare type TMutation_UpdateOrdersListViewArgs = {
1147
+ data: TOrdersListViewInput;
1148
+ id: Scalars['ID'];
1149
+ };
1150
+ export declare type TMutation_UpdatePimSearchListViewArgs = {
1151
+ data: TPimSearchListViewInput;
1152
+ id: Scalars['ID'];
1153
+ };
1154
+ export declare type TMutation_UpdateProductDiscountsCustomViewArgs = {
1155
+ data: TDiscountsCustomViewInput;
1156
+ id: Scalars['ID'];
1157
+ };
1158
+ export declare type TMutation_UpdateProductDiscountsListViewArgs = {
1159
+ data: TProductDiscountsListViewInput;
1160
+ id: Scalars['ID'];
1161
+ };
1162
+ export declare type TMutation_UpdateProductTypeAttributesViewArgs = {
1163
+ data: TProductTypeAttributesViewUpdateInput;
1164
+ id: Scalars['ID'];
1165
+ };
1166
+ export declare type TMutation_UpdateProjectExtensionApplicationArgs = {
1167
+ applicationId: Scalars['ID'];
1168
+ data: TApplicationExtensionDataInput;
1169
+ };
1170
+ export declare type TMutation_UpdateRuleBuilderQuickSelectionValuesArgs = {
1171
+ data: TRuleBuilderQuickSelectionInput;
1172
+ id?: InputMaybe<Scalars['ID']>;
1173
+ };
1174
+ export declare type TMutation_UpdateVariantPricesListViewArgs = {
1175
+ data: TVariantPricesListViewInput;
1176
+ id: Scalars['ID'];
1177
+ };
1178
+ export declare type TMutation_VerifyCustomApplicationsMaintainerContactEmailArgs = {
1179
+ token: Scalars['String'];
1180
+ };
1181
+ export declare type TMyCustomApplication = {
1182
+ __typename?: 'MyCustomApplication';
1183
+ createdAt: Scalars['DateTime'];
1184
+ description?: Maybe<Scalars['String']>;
1185
+ entryPointUriPath: Scalars['String'];
1186
+ icon: Scalars['String'];
1187
+ id: Scalars['ID'];
1188
+ mainMenuLink: TCustomApplicationMenuLink;
1189
+ name: Scalars['String'];
1190
+ organizationId: Scalars['String'];
1191
+ organizationName: Scalars['String'];
1192
+ permissions: Array<TCustomApplicationPermission>;
1193
+ status: TCustomApplicationStatus;
1194
+ submenuLinks: Array<TCustomApplicationSubmenuLink>;
1195
+ updatedAt: Scalars['DateTime'];
1196
+ url: Scalars['String'];
1197
+ };
1198
+ export declare type TMyCustomApplicationQueryInput = {
1199
+ where?: InputMaybe<TMyCustomApplicationQueryWhereInput>;
1200
+ };
1201
+ export declare type TMyCustomApplicationQueryWhereInput = {
1202
+ status?: InputMaybe<TCustomApplicationStatus>;
1203
+ };
1204
+ export declare type TNavbarMenu = {
1205
+ __typename?: 'NavbarMenu';
1206
+ createdAt: Scalars['DateTime'];
1207
+ featureToggle?: Maybe<Scalars['String']>;
1208
+ icon: Scalars['String'];
1209
+ id: Scalars['ID'];
1210
+ key: Scalars['String'];
1211
+ labelAllLocales?: Maybe<Array<TLocalizedField>>;
1212
+ permissions: Array<TOAuthScope>;
1213
+ submenu?: Maybe<Array<TNavbarSubmenu>>;
1214
+ updatedAt: Scalars['DateTime'];
1215
+ uriPath: Scalars['String'];
1216
+ };
1217
+ export declare type TNavbarMenu_LabelAllLocalesArgs = {
1218
+ after?: InputMaybe<Scalars['String']>;
1219
+ before?: InputMaybe<Scalars['String']>;
1220
+ first?: InputMaybe<Scalars['Int']>;
1221
+ last?: InputMaybe<Scalars['Int']>;
1222
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
1223
+ skip?: InputMaybe<Scalars['Int']>;
1224
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
1225
+ };
1226
+ export declare type TNavbarMenu_SubmenuArgs = {
1227
+ after?: InputMaybe<Scalars['String']>;
1228
+ before?: InputMaybe<Scalars['String']>;
1229
+ first?: InputMaybe<Scalars['Int']>;
1230
+ last?: InputMaybe<Scalars['Int']>;
1231
+ orderBy?: InputMaybe<TNavbarSubmenuOrderByInput>;
1232
+ skip?: InputMaybe<Scalars['Int']>;
1233
+ where?: InputMaybe<TNavbarSubmenuWhereInput>;
1234
+ };
1235
+ export declare type TNavbarSubmenu = {
1236
+ __typename?: 'NavbarSubmenu';
1237
+ createdAt: Scalars['DateTime'];
1238
+ featureToggle?: Maybe<Scalars['String']>;
1239
+ id: Scalars['ID'];
1240
+ key: Scalars['String'];
1241
+ labelAllLocales?: Maybe<Array<TLocalizedField>>;
1242
+ permissions: Array<TOAuthScope>;
1243
+ updatedAt: Scalars['DateTime'];
1244
+ uriPath: Scalars['String'];
1245
+ };
1246
+ export declare type TNavbarSubmenu_LabelAllLocalesArgs = {
1247
+ after?: InputMaybe<Scalars['String']>;
1248
+ before?: InputMaybe<Scalars['String']>;
1249
+ first?: InputMaybe<Scalars['Int']>;
1250
+ last?: InputMaybe<Scalars['Int']>;
1251
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
1252
+ skip?: InputMaybe<Scalars['Int']>;
1253
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
1254
+ };
1255
+ export declare enum TNavbarSubmenuOrderByInput {
1256
+ CreatedAtAsc = "createdAt_ASC",
1257
+ CreatedAtDesc = "createdAt_DESC",
1258
+ FeatureToggleAsc = "featureToggle_ASC",
1259
+ FeatureToggleDesc = "featureToggle_DESC",
1260
+ IdAsc = "id_ASC",
1261
+ IdDesc = "id_DESC",
1262
+ KeyAsc = "key_ASC",
1263
+ KeyDesc = "key_DESC",
1264
+ UpdatedAtAsc = "updatedAt_ASC",
1265
+ UpdatedAtDesc = "updatedAt_DESC",
1266
+ UriPathAsc = "uriPath_ASC",
1267
+ UriPathDesc = "uriPath_DESC"
1268
+ }
1269
+ export declare type TNavbarSubmenuWhereInput = {
1270
+ AND?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
1271
+ NOT?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
1272
+ OR?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
1273
+ createdAt?: InputMaybe<Scalars['DateTime']>;
1274
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
1275
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
1276
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1277
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
1278
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
1279
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
1280
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1281
+ featureToggle?: InputMaybe<Scalars['String']>;
1282
+ featureToggle_contains?: InputMaybe<Scalars['String']>;
1283
+ featureToggle_ends_with?: InputMaybe<Scalars['String']>;
1284
+ featureToggle_gt?: InputMaybe<Scalars['String']>;
1285
+ featureToggle_gte?: InputMaybe<Scalars['String']>;
1286
+ featureToggle_in?: InputMaybe<Array<Scalars['String']>>;
1287
+ featureToggle_lt?: InputMaybe<Scalars['String']>;
1288
+ featureToggle_lte?: InputMaybe<Scalars['String']>;
1289
+ featureToggle_not?: InputMaybe<Scalars['String']>;
1290
+ featureToggle_not_contains?: InputMaybe<Scalars['String']>;
1291
+ featureToggle_not_ends_with?: InputMaybe<Scalars['String']>;
1292
+ featureToggle_not_in?: InputMaybe<Array<Scalars['String']>>;
1293
+ featureToggle_not_starts_with?: InputMaybe<Scalars['String']>;
1294
+ featureToggle_starts_with?: InputMaybe<Scalars['String']>;
1295
+ id?: InputMaybe<Scalars['ID']>;
1296
+ id_contains?: InputMaybe<Scalars['ID']>;
1297
+ id_ends_with?: InputMaybe<Scalars['ID']>;
1298
+ id_gt?: InputMaybe<Scalars['ID']>;
1299
+ id_gte?: InputMaybe<Scalars['ID']>;
1300
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1301
+ id_lt?: InputMaybe<Scalars['ID']>;
1302
+ id_lte?: InputMaybe<Scalars['ID']>;
1303
+ id_not?: InputMaybe<Scalars['ID']>;
1304
+ id_not_contains?: InputMaybe<Scalars['ID']>;
1305
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
1306
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1307
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
1308
+ id_starts_with?: InputMaybe<Scalars['ID']>;
1309
+ key?: InputMaybe<Scalars['String']>;
1310
+ key_contains?: InputMaybe<Scalars['String']>;
1311
+ key_ends_with?: InputMaybe<Scalars['String']>;
1312
+ key_gt?: InputMaybe<Scalars['String']>;
1313
+ key_gte?: InputMaybe<Scalars['String']>;
1314
+ key_in?: InputMaybe<Array<Scalars['String']>>;
1315
+ key_lt?: InputMaybe<Scalars['String']>;
1316
+ key_lte?: InputMaybe<Scalars['String']>;
1317
+ key_not?: InputMaybe<Scalars['String']>;
1318
+ key_not_contains?: InputMaybe<Scalars['String']>;
1319
+ key_not_ends_with?: InputMaybe<Scalars['String']>;
1320
+ key_not_in?: InputMaybe<Array<Scalars['String']>>;
1321
+ key_not_starts_with?: InputMaybe<Scalars['String']>;
1322
+ key_starts_with?: InputMaybe<Scalars['String']>;
1323
+ labelAllLocales_every?: InputMaybe<TLocalizedFieldWhereInput>;
1324
+ labelAllLocales_none?: InputMaybe<TLocalizedFieldWhereInput>;
1325
+ labelAllLocales_some?: InputMaybe<TLocalizedFieldWhereInput>;
1326
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
1327
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
1328
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
1329
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1330
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
1331
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
1332
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
1333
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1334
+ uriPath?: InputMaybe<Scalars['String']>;
1335
+ uriPath_contains?: InputMaybe<Scalars['String']>;
1336
+ uriPath_ends_with?: InputMaybe<Scalars['String']>;
1337
+ uriPath_gt?: InputMaybe<Scalars['String']>;
1338
+ uriPath_gte?: InputMaybe<Scalars['String']>;
1339
+ uriPath_in?: InputMaybe<Array<Scalars['String']>>;
1340
+ uriPath_lt?: InputMaybe<Scalars['String']>;
1341
+ uriPath_lte?: InputMaybe<Scalars['String']>;
1342
+ uriPath_not?: InputMaybe<Scalars['String']>;
1343
+ uriPath_not_contains?: InputMaybe<Scalars['String']>;
1344
+ uriPath_not_ends_with?: InputMaybe<Scalars['String']>;
1345
+ uriPath_not_in?: InputMaybe<Array<Scalars['String']>>;
1346
+ uriPath_not_starts_with?: InputMaybe<Scalars['String']>;
1347
+ uriPath_starts_with?: InputMaybe<Scalars['String']>;
1348
+ };
1349
+ export declare enum TOAuthScope {
1350
+ ManageCartDiscounts = "ManageCartDiscounts",
1351
+ ManageCategories = "ManageCategories",
1352
+ ManageCustomerGroups = "ManageCustomerGroups",
1353
+ ManageCustomers = "ManageCustomers",
1354
+ ManageDeveloperSettings = "ManageDeveloperSettings",
1355
+ ManageDiscountCodes = "ManageDiscountCodes",
1356
+ ManageImportSinks = "ManageImportSinks",
1357
+ ManageOrders = "ManageOrders",
1358
+ ManageProductDiscounts = "ManageProductDiscounts",
1359
+ ManageProductTypes = "ManageProductTypes",
1360
+ ManageProducts = "ManageProducts",
1361
+ ManageProject = "ManageProject",
1362
+ ManageProjectSettings = "ManageProjectSettings",
1363
+ ViewCartDiscounts = "ViewCartDiscounts",
1364
+ ViewCategories = "ViewCategories",
1365
+ ViewCustomerGroups = "ViewCustomerGroups",
1366
+ ViewCustomers = "ViewCustomers",
1367
+ ViewDeveloperSettings = "ViewDeveloperSettings",
1368
+ ViewDiscountCodes = "ViewDiscountCodes",
1369
+ ViewImportSinks = "ViewImportSinks",
1370
+ ViewOrders = "ViewOrders",
1371
+ ViewProductDiscounts = "ViewProductDiscounts",
1372
+ ViewProductTypes = "ViewProductTypes",
1373
+ ViewProducts = "ViewProducts",
1374
+ ViewProjectSettings = "ViewProjectSettings"
1375
+ }
1376
+ export declare type TOidcSsoConfig = {
1377
+ __typename?: 'OidcSsoConfig';
1378
+ authorityUrl: Scalars['String'];
1379
+ clientId: Scalars['String'];
1380
+ clientSecret?: Maybe<Scalars['String']>;
1381
+ createdAt: Scalars['DateTime'];
1382
+ id: Scalars['ID'];
1383
+ isActive?: Maybe<Scalars['Boolean']>;
1384
+ logoutUrl?: Maybe<Scalars['String']>;
1385
+ teamIdForNewUsers: Scalars['String'];
1386
+ updatedAt: Scalars['DateTime'];
1387
+ };
1388
+ export declare type TOidcSsoConfigDataInput = {
1389
+ authorityUrl: Scalars['String'];
1390
+ clientId: Scalars['String'];
1391
+ clientSecret?: InputMaybe<Scalars['String']>;
1392
+ logoutUrl?: InputMaybe<Scalars['String']>;
1393
+ teamIdForNewUsers: Scalars['String'];
1394
+ };
1395
+ export declare enum TOrderStatesVisibility {
1396
+ HideOrderState = "HideOrderState",
1397
+ HidePaymentState = "HidePaymentState",
1398
+ HideShipmentState = "HideShipmentState"
1399
+ }
1400
+ export declare type TOrderStatusConfiguration = {
1401
+ __typename?: 'OrderStatusConfiguration';
1402
+ createdAt: Scalars['DateTime'];
1403
+ dateFilterType: TDateFilterType;
1404
+ dateFrom?: Maybe<Scalars['DateTime']>;
1405
+ dateTo?: Maybe<Scalars['DateTime']>;
1406
+ id: Scalars['ID'];
1407
+ productId?: Maybe<Scalars['String']>;
1408
+ updatedAt: Scalars['DateTime'];
1409
+ };
1410
+ export declare type TOrderStatusConfigurationInput = {
1411
+ dateFilterType: TDateFilterType;
1412
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
1413
+ dateTo?: InputMaybe<Scalars['DateTime']>;
1414
+ productId?: InputMaybe<Scalars['String']>;
1415
+ };
1416
+ export declare type TOrderStatusConfigurationWhereInput = {
1417
+ AND?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
1418
+ NOT?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
1419
+ OR?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
1420
+ createdAt?: InputMaybe<Scalars['DateTime']>;
1421
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
1422
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
1423
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1424
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
1425
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
1426
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
1427
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1428
+ dateFilterType?: InputMaybe<TDateFilterType>;
1429
+ dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
1430
+ dateFilterType_not?: InputMaybe<TDateFilterType>;
1431
+ dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
1432
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
1433
+ dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
1434
+ dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
1435
+ dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
1436
+ dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
1437
+ dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
1438
+ dateFrom_not?: InputMaybe<Scalars['DateTime']>;
1439
+ dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1440
+ dateTo?: InputMaybe<Scalars['DateTime']>;
1441
+ dateTo_gt?: InputMaybe<Scalars['DateTime']>;
1442
+ dateTo_gte?: InputMaybe<Scalars['DateTime']>;
1443
+ dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
1444
+ dateTo_lt?: InputMaybe<Scalars['DateTime']>;
1445
+ dateTo_lte?: InputMaybe<Scalars['DateTime']>;
1446
+ dateTo_not?: InputMaybe<Scalars['DateTime']>;
1447
+ dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1448
+ id?: InputMaybe<Scalars['ID']>;
1449
+ id_contains?: InputMaybe<Scalars['ID']>;
1450
+ id_ends_with?: InputMaybe<Scalars['ID']>;
1451
+ id_gt?: InputMaybe<Scalars['ID']>;
1452
+ id_gte?: InputMaybe<Scalars['ID']>;
1453
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1454
+ id_lt?: InputMaybe<Scalars['ID']>;
1455
+ id_lte?: InputMaybe<Scalars['ID']>;
1456
+ id_not?: InputMaybe<Scalars['ID']>;
1457
+ id_not_contains?: InputMaybe<Scalars['ID']>;
1458
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
1459
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1460
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
1461
+ id_starts_with?: InputMaybe<Scalars['ID']>;
1462
+ productId?: InputMaybe<Scalars['String']>;
1463
+ productId_contains?: InputMaybe<Scalars['String']>;
1464
+ productId_ends_with?: InputMaybe<Scalars['String']>;
1465
+ productId_gt?: InputMaybe<Scalars['String']>;
1466
+ productId_gte?: InputMaybe<Scalars['String']>;
1467
+ productId_in?: InputMaybe<Array<Scalars['String']>>;
1468
+ productId_lt?: InputMaybe<Scalars['String']>;
1469
+ productId_lte?: InputMaybe<Scalars['String']>;
1470
+ productId_not?: InputMaybe<Scalars['String']>;
1471
+ productId_not_contains?: InputMaybe<Scalars['String']>;
1472
+ productId_not_ends_with?: InputMaybe<Scalars['String']>;
1473
+ productId_not_in?: InputMaybe<Array<Scalars['String']>>;
1474
+ productId_not_starts_with?: InputMaybe<Scalars['String']>;
1475
+ productId_starts_with?: InputMaybe<Scalars['String']>;
1476
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
1477
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
1478
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
1479
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1480
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
1481
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
1482
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
1483
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1484
+ };
1485
+ export declare type TOrdersListView = {
1486
+ __typename?: 'OrdersListView';
1487
+ createdAt: Scalars['DateTime'];
1488
+ filters?: Maybe<Array<TFilterValues>>;
1489
+ id: Scalars['ID'];
1490
+ isActive?: Maybe<Scalars['Boolean']>;
1491
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
1492
+ projectKey: Scalars['String'];
1493
+ search?: Maybe<Scalars['String']>;
1494
+ searchParams?: Maybe<Scalars['Json']>;
1495
+ sort?: Maybe<TSort>;
1496
+ table?: Maybe<TTable>;
1497
+ updatedAt: Scalars['DateTime'];
1498
+ userId: Scalars['String'];
1499
+ };
1500
+ export declare type TOrdersListView_FiltersArgs = {
1501
+ after?: InputMaybe<Scalars['String']>;
1502
+ before?: InputMaybe<Scalars['String']>;
1503
+ first?: InputMaybe<Scalars['Int']>;
1504
+ last?: InputMaybe<Scalars['Int']>;
1505
+ orderBy?: InputMaybe<TFilterValuesOrderByInput>;
1506
+ skip?: InputMaybe<Scalars['Int']>;
1507
+ where?: InputMaybe<TFilterValuesWhereInput>;
1508
+ };
1509
+ export declare type TOrdersListView_NameAllLocalesArgs = {
1510
+ after?: InputMaybe<Scalars['String']>;
1511
+ before?: InputMaybe<Scalars['String']>;
1512
+ first?: InputMaybe<Scalars['Int']>;
1513
+ last?: InputMaybe<Scalars['Int']>;
1514
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
1515
+ skip?: InputMaybe<Scalars['Int']>;
1516
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
1517
+ };
1518
+ export declare type TOrdersListViewInput = {
1519
+ filters: Array<TFilterValuesCreateInput>;
1520
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
1521
+ search?: InputMaybe<Scalars['String']>;
1522
+ searchParams?: InputMaybe<Scalars['Json']>;
1523
+ sort: TSortCreateInput;
1524
+ table?: InputMaybe<TOrdersListViewTableInput>;
1525
+ };
1526
+ export declare type TOrdersListViewTableInput = {
1527
+ visibleColumns: Array<Scalars['String']>;
1528
+ };
1529
+ export declare type TOrganizationExtension = {
1530
+ __typename?: 'OrganizationExtension';
1531
+ applicationsMaintainerContactInformation?: Maybe<TContactInformation>;
1532
+ createdAt: Scalars['DateTime'];
1533
+ id: Scalars['ID'];
1534
+ installedApplications?: Maybe<Array<TRestrictedCustomApplicationInstallationForOrganization>>;
1535
+ oidcSsoConfig?: Maybe<TOidcSsoConfig>;
1536
+ organizationId: Scalars['String'];
1537
+ registeredApplications?: Maybe<Array<TRestrictedCustomApplicationForOrganization>>;
1538
+ updatedAt: Scalars['DateTime'];
1539
+ };
1540
+ export declare type TOrganizationExtensionForCustomApplication = {
1541
+ __typename?: 'OrganizationExtensionForCustomApplication';
1542
+ application: TRestrictedCustomApplicationForOrganization;
1543
+ id: Scalars['ID'];
1544
+ organizationId: Scalars['String'];
1545
+ organizationName?: Maybe<Scalars['String']>;
1546
+ };
1547
+ export declare type TPimSearchListView = {
1548
+ __typename?: 'PimSearchListView';
1549
+ createdAt: Scalars['DateTime'];
1550
+ filters?: Maybe<Array<TFilterValues>>;
1551
+ id: Scalars['ID'];
1552
+ isActive?: Maybe<Scalars['Boolean']>;
1553
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
1554
+ projectKey: Scalars['String'];
1555
+ search?: Maybe<Scalars['String']>;
1556
+ sort?: Maybe<TSort>;
1557
+ table?: Maybe<TTable>;
1558
+ updatedAt: Scalars['DateTime'];
1559
+ userId: Scalars['String'];
1560
+ };
1561
+ export declare type TPimSearchListView_FiltersArgs = {
1562
+ after?: InputMaybe<Scalars['String']>;
1563
+ before?: InputMaybe<Scalars['String']>;
1564
+ first?: InputMaybe<Scalars['Int']>;
1565
+ last?: InputMaybe<Scalars['Int']>;
1566
+ orderBy?: InputMaybe<TFilterValuesOrderByInput>;
1567
+ skip?: InputMaybe<Scalars['Int']>;
1568
+ where?: InputMaybe<TFilterValuesWhereInput>;
1569
+ };
1570
+ export declare type TPimSearchListView_NameAllLocalesArgs = {
1571
+ after?: InputMaybe<Scalars['String']>;
1572
+ before?: InputMaybe<Scalars['String']>;
1573
+ first?: InputMaybe<Scalars['Int']>;
1574
+ last?: InputMaybe<Scalars['Int']>;
1575
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
1576
+ skip?: InputMaybe<Scalars['Int']>;
1577
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
1578
+ };
1579
+ export declare type TPimSearchListViewInput = {
1580
+ filters: Array<TFilterValuesCreateInput>;
1581
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
1582
+ search?: InputMaybe<Scalars['String']>;
1583
+ sort: TSortCreateInput;
1584
+ table?: InputMaybe<TPimSearchListViewTableInput>;
1585
+ };
1586
+ export declare type TPimSearchListViewTableInput = {
1587
+ visibleColumns: Array<Scalars['String']>;
1588
+ };
1589
+ export declare type TProductDiscountsListView = {
1590
+ __typename?: 'ProductDiscountsListView';
1591
+ createdAt: Scalars['DateTime'];
1592
+ id: Scalars['ID'];
1593
+ projectKey: Scalars['String'];
1594
+ updatedAt: Scalars['DateTime'];
1595
+ userId: Scalars['String'];
1596
+ visibleColumns: Array<Scalars['String']>;
1597
+ };
1598
+ export declare type TProductDiscountsListViewInput = {
1599
+ visibleColumns: Array<Scalars['String']>;
1600
+ };
1601
+ export declare type TProductTypeAttributesView = {
1602
+ __typename?: 'ProductTypeAttributesView';
1603
+ createdAt: Scalars['DateTime'];
1604
+ existence?: Maybe<TExistence>;
1605
+ id: Scalars['ID'];
1606
+ isActive: Scalars['Boolean'];
1607
+ isVariant?: Maybe<Scalars['Boolean']>;
1608
+ nameAllLocales?: Maybe<Array<TLocalizedField>>;
1609
+ pinnedAttributes: Array<Scalars['String']>;
1610
+ productTypeId: Scalars['String'];
1611
+ projectKey: Scalars['String'];
1612
+ searchTerm?: Maybe<Scalars['String']>;
1613
+ updatedAt: Scalars['DateTime'];
1614
+ userId: Scalars['String'];
1615
+ };
1616
+ export declare type TProductTypeAttributesView_NameAllLocalesArgs = {
1617
+ after?: InputMaybe<Scalars['String']>;
1618
+ before?: InputMaybe<Scalars['String']>;
1619
+ first?: InputMaybe<Scalars['Int']>;
1620
+ last?: InputMaybe<Scalars['Int']>;
1621
+ orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
1622
+ skip?: InputMaybe<Scalars['Int']>;
1623
+ where?: InputMaybe<TLocalizedFieldWhereInput>;
1624
+ };
1625
+ export declare type TProductTypeAttributesViewInput = {
1626
+ existence?: InputMaybe<TExistence>;
1627
+ isVariant?: InputMaybe<Scalars['Boolean']>;
1628
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
1629
+ pinnedAttributes: Array<Scalars['String']>;
1630
+ productTypeId: Scalars['String'];
1631
+ searchTerm?: InputMaybe<Scalars['String']>;
1632
+ };
1633
+ export declare type TProductTypeAttributesViewUpdateInput = {
1634
+ existence?: InputMaybe<TExistence>;
1635
+ isVariant?: InputMaybe<Scalars['Boolean']>;
1636
+ nameAllLocales: Array<TLocalizedFieldCreateInput>;
1637
+ pinnedAttributes: Array<Scalars['String']>;
1638
+ searchTerm?: InputMaybe<Scalars['String']>;
1639
+ };
1640
+ export declare type TProjectExtension = {
1641
+ __typename?: 'ProjectExtension';
1642
+ applications?: Maybe<Array<TApplicationExtension>>;
1643
+ categoryRecommendationSettings?: Maybe<TCategoryRecommendationSettings>;
1644
+ createdAt: Scalars['DateTime'];
1645
+ id: Scalars['ID'];
1646
+ imageRegex?: Maybe<TImageRegex>;
1647
+ installedApplications?: Maybe<Array<TRestrictedCustomApplicationInstallationForProject>>;
1648
+ orderStatesVisibility: Array<TOrderStatesVisibility>;
1649
+ projectKey: Scalars['String'];
1650
+ updatedAt: Scalars['DateTime'];
1651
+ };
1652
+ export declare type TProjectExtension_ApplicationsArgs = {
1653
+ where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
1654
+ };
1655
+ export declare type TQuery = {
1656
+ __typename?: 'Query';
1657
+ activeCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
1658
+ activeCustomersListView?: Maybe<TCustomersListView>;
1659
+ activeDashboardView?: Maybe<TDashboardView>;
1660
+ activeDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
1661
+ activeOrdersListView?: Maybe<TOrdersListView>;
1662
+ activePimSearchListView?: Maybe<TPimSearchListView>;
1663
+ activeProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
1664
+ activeProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
1665
+ /** @deprecated Experimental feature - For internal usage only */
1666
+ allAppliedCustomApplicationPermissions: Array<TCustomApplicationInstallationPermission>;
1667
+ /** @deprecated Experimental feature - For internal usage only */
1668
+ allCustomApplications: TCustomApplicationsPagedQueryResult;
1669
+ /** @deprecated Experimental feature - For internal usage only */
1670
+ allLegacyCustomApplications: TLegacyCustomApplicationsPagedQueryResult;
1671
+ /** @deprecated Experimental feature - For internal usage only */
1672
+ allOrganizationExtensions: Array<TOrganizationExtension>;
1673
+ allProjectExtensions: Array<TProjectExtension>;
1674
+ cartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
1675
+ cartDiscountsCustomViews: Array<Maybe<TDiscountsCustomView>>;
1676
+ cartDiscountsListView?: Maybe<TCartDiscountsListView>;
1677
+ /** @deprecated Experimental feature - For internal usage only */
1678
+ customApplication?: Maybe<TCustomApplication>;
1679
+ customersListView?: Maybe<TCustomersListView>;
1680
+ customersListViews: Array<Maybe<TCustomersListView>>;
1681
+ dashboardView?: Maybe<TDashboardView>;
1682
+ dashboardViews: Array<Maybe<TDashboardView>>;
1683
+ discountCodesCustomView?: Maybe<TDiscountsCustomView>;
1684
+ discountCodesCustomViews: Array<Maybe<TDiscountsCustomView>>;
1685
+ discountCodesListView?: Maybe<TDiscountCodesListView>;
1686
+ /** @deprecated Experimental feature - For internal usage only */
1687
+ globalOrganizationExtension?: Maybe<TOrganizationExtension>;
1688
+ /** @deprecated Experimental feature - For internal usage only */
1689
+ legacyCustomApplication?: Maybe<TLegacyCustomApplication>;
1690
+ myCustomApplications: Array<TMyCustomApplication>;
1691
+ ordersListView?: Maybe<TOrdersListView>;
1692
+ ordersListViews: Array<Maybe<TOrdersListView>>;
1693
+ organizationExtension?: Maybe<TOrganizationExtension>;
1694
+ organizationExtensionForCustomApplication?: Maybe<TOrganizationExtensionForCustomApplication>;
1695
+ pimSearchListView?: Maybe<TPimSearchListView>;
1696
+ pimSearchListViews: Array<Maybe<TPimSearchListView>>;
1697
+ productDiscountsCustomView?: Maybe<TDiscountsCustomView>;
1698
+ productDiscountsCustomViews: Array<Maybe<TDiscountsCustomView>>;
1699
+ productDiscountsListView?: Maybe<TProductDiscountsListView>;
1700
+ productTypeAttributesView?: Maybe<TProductTypeAttributesView>;
1701
+ productTypeAttributesViews?: Maybe<Array<Maybe<TProductTypeAttributesView>>>;
1702
+ projectExtension?: Maybe<TProjectExtension>;
1703
+ ruleBuilderQuickSelectionValues?: Maybe<Array<Maybe<TRuleBuilderQuickSelectionValues>>>;
1704
+ variantPricesListViews: Array<Maybe<TVariantPricesListView>>;
1705
+ };
1706
+ export declare type TQuery_ActiveProductTypeAttributesViewArgs = {
1707
+ isVariant: Scalars['Boolean'];
1708
+ productTypeId: Scalars['String'];
1709
+ };
1710
+ export declare type TQuery_AllAppliedCustomApplicationPermissionsArgs = {
1711
+ applicationId: Scalars['ID'];
1712
+ entryPointUriPath: Scalars['String'];
1713
+ };
1714
+ export declare type TQuery_AllCustomApplicationsArgs = {
1715
+ params?: InputMaybe<TCustomApplicationQueryInput>;
1716
+ };
1717
+ export declare type TQuery_AllLegacyCustomApplicationsArgs = {
1718
+ params?: InputMaybe<TLegacyCustomApplicationQueryInput>;
1719
+ };
1720
+ export declare type TQuery_AllOrganizationExtensionsArgs = {
1721
+ organizationIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
1722
+ };
1723
+ export declare type TQuery_CartDiscountsCustomViewArgs = {
1724
+ id: Scalars['ID'];
1725
+ };
1726
+ export declare type TQuery_CustomApplicationArgs = {
1727
+ applicationId: Scalars['ID'];
1728
+ };
1729
+ export declare type TQuery_CustomersListViewArgs = {
1730
+ id: Scalars['ID'];
1731
+ };
1732
+ export declare type TQuery_DashboardViewArgs = {
1733
+ id: Scalars['ID'];
1734
+ };
1735
+ export declare type TQuery_DiscountCodesCustomViewArgs = {
1736
+ id: Scalars['ID'];
1737
+ };
1738
+ export declare type TQuery_GlobalOrganizationExtensionArgs = {
1739
+ organizationId: Scalars['String'];
1740
+ };
1741
+ export declare type TQuery_LegacyCustomApplicationArgs = {
1742
+ applicationId: Scalars['ID'];
1743
+ };
1744
+ export declare type TQuery_MyCustomApplicationsArgs = {
1745
+ params?: InputMaybe<TMyCustomApplicationQueryInput>;
1746
+ };
1747
+ export declare type TQuery_OrdersListViewArgs = {
1748
+ id: Scalars['ID'];
1749
+ };
1750
+ export declare type TQuery_OrganizationExtensionArgs = {
1751
+ organizationId: Scalars['String'];
1752
+ };
1753
+ export declare type TQuery_OrganizationExtensionForCustomApplicationArgs = {
1754
+ entryPointUriPath: Scalars['String'];
1755
+ };
1756
+ export declare type TQuery_PimSearchListViewArgs = {
1757
+ id: Scalars['ID'];
1758
+ };
1759
+ export declare type TQuery_ProductDiscountsCustomViewArgs = {
1760
+ id: Scalars['ID'];
1761
+ };
1762
+ export declare type TQuery_ProductTypeAttributesViewArgs = {
1763
+ id: Scalars['ID'];
1764
+ };
1765
+ export declare type TQuery_ProductTypeAttributesViewsArgs = {
1766
+ isVariant: Scalars['Boolean'];
1767
+ productTypeId: Scalars['String'];
1768
+ };
1769
+ export declare type TQuery_RuleBuilderQuickSelectionValuesArgs = {
1770
+ ruleBuilderType: TRuleBuilderType;
1771
+ };
1772
+ export declare enum TResourceType {
1773
+ Categories = "CATEGORIES",
1774
+ PublishedProducts = "PUBLISHED_PRODUCTS",
1775
+ TotalProducts = "TOTAL_PRODUCTS",
1776
+ UnpublishedProducts = "UNPUBLISHED_PRODUCTS"
1777
+ }
1778
+ export declare type TResourcesNumbersConfiguration = {
1779
+ __typename?: 'ResourcesNumbersConfiguration';
1780
+ createdAt: Scalars['DateTime'];
1781
+ id: Scalars['ID'];
1782
+ resourceOptions: Array<TResourceType>;
1783
+ updatedAt: Scalars['DateTime'];
1784
+ };
1785
+ export declare type TResourcesNumbersConfigurationInput = {
1786
+ resourceOptions: Array<TResourceType>;
1787
+ };
1788
+ export declare type TResourcesNumbersConfigurationWhereInput = {
1789
+ AND?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
1790
+ NOT?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
1791
+ OR?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
1792
+ createdAt?: InputMaybe<Scalars['DateTime']>;
1793
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
1794
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
1795
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1796
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
1797
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
1798
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
1799
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1800
+ id?: InputMaybe<Scalars['ID']>;
1801
+ id_contains?: InputMaybe<Scalars['ID']>;
1802
+ id_ends_with?: InputMaybe<Scalars['ID']>;
1803
+ id_gt?: InputMaybe<Scalars['ID']>;
1804
+ id_gte?: InputMaybe<Scalars['ID']>;
1805
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1806
+ id_lt?: InputMaybe<Scalars['ID']>;
1807
+ id_lte?: InputMaybe<Scalars['ID']>;
1808
+ id_not?: InputMaybe<Scalars['ID']>;
1809
+ id_not_contains?: InputMaybe<Scalars['ID']>;
1810
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
1811
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1812
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
1813
+ id_starts_with?: InputMaybe<Scalars['ID']>;
1814
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
1815
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
1816
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
1817
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1818
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
1819
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
1820
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
1821
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1822
+ };
1823
+ export declare type TRestrictedApplicationExtensionWhereInput = {
1824
+ id?: InputMaybe<Scalars['ID']>;
1825
+ isActive?: InputMaybe<Scalars['Boolean']>;
1826
+ url?: InputMaybe<Scalars['String']>;
1827
+ };
1828
+ export declare type TRestrictedCustomApplicationForOrganization = {
1829
+ __typename?: 'RestrictedCustomApplicationForOrganization';
1830
+ createdAt: Scalars['DateTime'];
1831
+ description?: Maybe<Scalars['String']>;
1832
+ entryPointUriPath: Scalars['String'];
1833
+ icon: Scalars['String'];
1834
+ id: Scalars['ID'];
1835
+ mainMenuLink: TCustomApplicationMenuLink;
1836
+ name: Scalars['String'];
1837
+ permissions: Array<TCustomApplicationPermission>;
1838
+ status: TCustomApplicationStatus;
1839
+ submenuLinks: Array<TCustomApplicationSubmenuLink>;
1840
+ updatedAt: Scalars['DateTime'];
1841
+ url: Scalars['String'];
1842
+ };
1843
+ export declare type TRestrictedCustomApplicationForProject = {
1844
+ __typename?: 'RestrictedCustomApplicationForProject';
1845
+ createdAt: Scalars['DateTime'];
1846
+ description?: Maybe<Scalars['String']>;
1847
+ entryPointUriPath: Scalars['String'];
1848
+ icon: Scalars['String'];
1849
+ id: Scalars['ID'];
1850
+ mainMenuLink: TCustomApplicationMenuLink;
1851
+ /** @deprecated This field has been renamed to mainMenuLink field. The nested submenuLinks is also now a top level field. */
1852
+ menuLinks?: Maybe<TCustomApplicationMenuLink>;
1853
+ name: Scalars['String'];
1854
+ permissions: Array<TCustomApplicationPermission>;
1855
+ status?: Maybe<TCustomApplicationStatus>;
1856
+ submenuLinks: Array<TCustomApplicationSubmenuLink>;
1857
+ updatedAt: Scalars['DateTime'];
1858
+ url: Scalars['String'];
1859
+ };
1860
+ export declare type TRestrictedCustomApplicationInstallationForOrganization = {
1861
+ __typename?: 'RestrictedCustomApplicationInstallationForOrganization';
1862
+ acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
1863
+ application: TRestrictedCustomApplicationForProject;
1864
+ createdAt: Scalars['DateTime'];
1865
+ id: Scalars['ID'];
1866
+ installInAllProjects: Scalars['Boolean'];
1867
+ projects?: Maybe<Array<TProjectExtension>>;
1868
+ updatedAt: Scalars['DateTime'];
1869
+ };
1870
+ export declare type TRestrictedCustomApplicationInstallationForProject = {
1871
+ __typename?: 'RestrictedCustomApplicationInstallationForProject';
1872
+ acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
1873
+ application: TRestrictedCustomApplicationForProject;
1874
+ createdAt: Scalars['DateTime'];
1875
+ id: Scalars['ID'];
1876
+ installInAllProjects: Scalars['Boolean'];
1877
+ updatedAt: Scalars['DateTime'];
1878
+ };
1879
+ export declare type TRuleBuilderQuickSelectCreatefunctionsInput = {
1880
+ set?: InputMaybe<Array<Scalars['String']>>;
1881
+ };
1882
+ export declare type TRuleBuilderQuickSelectCreatepredicatesInput = {
1883
+ set?: InputMaybe<Array<Scalars['String']>>;
1884
+ };
1885
+ export declare type TRuleBuilderQuickSelectionInput = {
1886
+ functions?: InputMaybe<TRuleBuilderQuickSelectCreatepredicatesInput>;
1887
+ predicates?: InputMaybe<TRuleBuilderQuickSelectCreatefunctionsInput>;
1888
+ ruleBuilderType: TRuleBuilderType;
1889
+ };
1890
+ export declare type TRuleBuilderQuickSelectionValues = {
1891
+ __typename?: 'RuleBuilderQuickSelectionValues';
1892
+ createdAt: Scalars['DateTime'];
1893
+ functions: Array<Scalars['String']>;
1894
+ id: Scalars['ID'];
1895
+ predicates: Array<Scalars['String']>;
1896
+ projectKey: Scalars['String'];
1897
+ ruleBuilderType: TRuleBuilderType;
1898
+ updatedAt: Scalars['DateTime'];
1899
+ userId: Scalars['String'];
1900
+ };
1901
+ export declare enum TRuleBuilderType {
1902
+ CartDiscount = "CartDiscount",
1903
+ CartTargetDiscount = "CartTargetDiscount",
1904
+ ProductDiscount = "ProductDiscount"
1905
+ }
1906
+ export declare type TSalesPerformanceConfiguration = {
1907
+ __typename?: 'SalesPerformanceConfiguration';
1908
+ createdAt: Scalars['DateTime'];
1909
+ dateFilterType: TDateFilterType;
1910
+ dateFrom?: Maybe<Scalars['DateTime']>;
1911
+ dateTo?: Maybe<Scalars['DateTime']>;
1912
+ id: Scalars['ID'];
1913
+ showPreviousTimeframe: Scalars['Boolean'];
1914
+ updatedAt: Scalars['DateTime'];
1915
+ };
1916
+ export declare type TSalesPerformanceConfigurationInput = {
1917
+ dateFilterType: TDateFilterType;
1918
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
1919
+ dateTo?: InputMaybe<Scalars['DateTime']>;
1920
+ showPreviousTimeframe: Scalars['Boolean'];
1921
+ };
1922
+ export declare type TSalesPerformanceConfigurationWhereInput = {
1923
+ AND?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
1924
+ NOT?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
1925
+ OR?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
1926
+ createdAt?: InputMaybe<Scalars['DateTime']>;
1927
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
1928
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
1929
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1930
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
1931
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
1932
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
1933
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1934
+ dateFilterType?: InputMaybe<TDateFilterType>;
1935
+ dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
1936
+ dateFilterType_not?: InputMaybe<TDateFilterType>;
1937
+ dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
1938
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
1939
+ dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
1940
+ dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
1941
+ dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
1942
+ dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
1943
+ dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
1944
+ dateFrom_not?: InputMaybe<Scalars['DateTime']>;
1945
+ dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1946
+ dateTo?: InputMaybe<Scalars['DateTime']>;
1947
+ dateTo_gt?: InputMaybe<Scalars['DateTime']>;
1948
+ dateTo_gte?: InputMaybe<Scalars['DateTime']>;
1949
+ dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
1950
+ dateTo_lt?: InputMaybe<Scalars['DateTime']>;
1951
+ dateTo_lte?: InputMaybe<Scalars['DateTime']>;
1952
+ dateTo_not?: InputMaybe<Scalars['DateTime']>;
1953
+ dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1954
+ id?: InputMaybe<Scalars['ID']>;
1955
+ id_contains?: InputMaybe<Scalars['ID']>;
1956
+ id_ends_with?: InputMaybe<Scalars['ID']>;
1957
+ id_gt?: InputMaybe<Scalars['ID']>;
1958
+ id_gte?: InputMaybe<Scalars['ID']>;
1959
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
1960
+ id_lt?: InputMaybe<Scalars['ID']>;
1961
+ id_lte?: InputMaybe<Scalars['ID']>;
1962
+ id_not?: InputMaybe<Scalars['ID']>;
1963
+ id_not_contains?: InputMaybe<Scalars['ID']>;
1964
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
1965
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
1966
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
1967
+ id_starts_with?: InputMaybe<Scalars['ID']>;
1968
+ showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
1969
+ showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
1970
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
1971
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
1972
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
1973
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
1974
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
1975
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
1976
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
1977
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
1978
+ };
1979
+ export declare type TSort = {
1980
+ __typename?: 'Sort';
1981
+ createdAt: Scalars['DateTime'];
1982
+ id: Scalars['ID'];
1983
+ key: Scalars['String'];
1984
+ order: TSortOrder;
1985
+ updatedAt: Scalars['DateTime'];
1986
+ };
1987
+ export declare type TSortCreateInput = {
1988
+ id?: InputMaybe<Scalars['ID']>;
1989
+ key: Scalars['String'];
1990
+ order: TSortOrder;
1991
+ };
1992
+ export declare enum TSortOrder {
1993
+ Asc = "Asc",
1994
+ Desc = "Desc"
1995
+ }
1996
+ export declare type TTable = {
1997
+ __typename?: 'Table';
1998
+ createdAt: Scalars['DateTime'];
1999
+ id: Scalars['ID'];
2000
+ updatedAt: Scalars['DateTime'];
2001
+ visibleColumns: Array<Scalars['String']>;
2002
+ };
2003
+ export declare type TTopProductsConfiguration = {
2004
+ __typename?: 'TopProductsConfiguration';
2005
+ bestSellingLimit: TBestSellingLimit;
2006
+ createdAt: Scalars['DateTime'];
2007
+ id: Scalars['ID'];
2008
+ updatedAt: Scalars['DateTime'];
2009
+ };
2010
+ export declare type TTopProductsConfigurationInput = {
2011
+ bestSellingLimit?: InputMaybe<TBestSellingLimit>;
2012
+ };
2013
+ export declare type TTopProductsConfigurationWhereInput = {
2014
+ AND?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
2015
+ NOT?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
2016
+ OR?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
2017
+ bestSellingLimit?: InputMaybe<TBestSellingLimit>;
2018
+ bestSellingLimit_in?: InputMaybe<Array<TBestSellingLimit>>;
2019
+ bestSellingLimit_not?: InputMaybe<TBestSellingLimit>;
2020
+ bestSellingLimit_not_in?: InputMaybe<Array<TBestSellingLimit>>;
2021
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2022
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
2023
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
2024
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2025
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
2026
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
2027
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
2028
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2029
+ id?: InputMaybe<Scalars['ID']>;
2030
+ id_contains?: InputMaybe<Scalars['ID']>;
2031
+ id_ends_with?: InputMaybe<Scalars['ID']>;
2032
+ id_gt?: InputMaybe<Scalars['ID']>;
2033
+ id_gte?: InputMaybe<Scalars['ID']>;
2034
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
2035
+ id_lt?: InputMaybe<Scalars['ID']>;
2036
+ id_lte?: InputMaybe<Scalars['ID']>;
2037
+ id_not?: InputMaybe<Scalars['ID']>;
2038
+ id_not_contains?: InputMaybe<Scalars['ID']>;
2039
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
2040
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
2041
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
2042
+ id_starts_with?: InputMaybe<Scalars['ID']>;
2043
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
2044
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
2045
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
2046
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2047
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
2048
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
2049
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
2050
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2051
+ };
2052
+ export declare type TTotalOrdersConfiguration = {
2053
+ __typename?: 'TotalOrdersConfiguration';
2054
+ createdAt: Scalars['DateTime'];
2055
+ dateFilterType: TDateFilterType;
2056
+ dateFrom?: Maybe<Scalars['DateTime']>;
2057
+ dateTo?: Maybe<Scalars['DateTime']>;
2058
+ id: Scalars['ID'];
2059
+ productId?: Maybe<Scalars['String']>;
2060
+ showPreviousTimeframe: Scalars['Boolean'];
2061
+ updatedAt: Scalars['DateTime'];
2062
+ };
2063
+ export declare type TTotalOrdersConfigurationInput = {
2064
+ dateFilterType: TDateFilterType;
2065
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
2066
+ dateTo?: InputMaybe<Scalars['DateTime']>;
2067
+ productId?: InputMaybe<Scalars['String']>;
2068
+ showPreviousTimeframe: Scalars['Boolean'];
2069
+ };
2070
+ export declare type TTotalOrdersConfigurationWhereInput = {
2071
+ AND?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
2072
+ NOT?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
2073
+ OR?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
2074
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2075
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
2076
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
2077
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2078
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
2079
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
2080
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
2081
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2082
+ dateFilterType?: InputMaybe<TDateFilterType>;
2083
+ dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
2084
+ dateFilterType_not?: InputMaybe<TDateFilterType>;
2085
+ dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
2086
+ dateFrom?: InputMaybe<Scalars['DateTime']>;
2087
+ dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
2088
+ dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
2089
+ dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
2090
+ dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
2091
+ dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
2092
+ dateFrom_not?: InputMaybe<Scalars['DateTime']>;
2093
+ dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2094
+ dateTo?: InputMaybe<Scalars['DateTime']>;
2095
+ dateTo_gt?: InputMaybe<Scalars['DateTime']>;
2096
+ dateTo_gte?: InputMaybe<Scalars['DateTime']>;
2097
+ dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
2098
+ dateTo_lt?: InputMaybe<Scalars['DateTime']>;
2099
+ dateTo_lte?: InputMaybe<Scalars['DateTime']>;
2100
+ dateTo_not?: InputMaybe<Scalars['DateTime']>;
2101
+ dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2102
+ id?: InputMaybe<Scalars['ID']>;
2103
+ id_contains?: InputMaybe<Scalars['ID']>;
2104
+ id_ends_with?: InputMaybe<Scalars['ID']>;
2105
+ id_gt?: InputMaybe<Scalars['ID']>;
2106
+ id_gte?: InputMaybe<Scalars['ID']>;
2107
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
2108
+ id_lt?: InputMaybe<Scalars['ID']>;
2109
+ id_lte?: InputMaybe<Scalars['ID']>;
2110
+ id_not?: InputMaybe<Scalars['ID']>;
2111
+ id_not_contains?: InputMaybe<Scalars['ID']>;
2112
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
2113
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
2114
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
2115
+ id_starts_with?: InputMaybe<Scalars['ID']>;
2116
+ productId?: InputMaybe<Scalars['String']>;
2117
+ productId_contains?: InputMaybe<Scalars['String']>;
2118
+ productId_ends_with?: InputMaybe<Scalars['String']>;
2119
+ productId_gt?: InputMaybe<Scalars['String']>;
2120
+ productId_gte?: InputMaybe<Scalars['String']>;
2121
+ productId_in?: InputMaybe<Array<Scalars['String']>>;
2122
+ productId_lt?: InputMaybe<Scalars['String']>;
2123
+ productId_lte?: InputMaybe<Scalars['String']>;
2124
+ productId_not?: InputMaybe<Scalars['String']>;
2125
+ productId_not_contains?: InputMaybe<Scalars['String']>;
2126
+ productId_not_ends_with?: InputMaybe<Scalars['String']>;
2127
+ productId_not_in?: InputMaybe<Array<Scalars['String']>>;
2128
+ productId_not_starts_with?: InputMaybe<Scalars['String']>;
2129
+ productId_starts_with?: InputMaybe<Scalars['String']>;
2130
+ showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
2131
+ showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
2132
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
2133
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
2134
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
2135
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2136
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
2137
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
2138
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
2139
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2140
+ };
2141
+ export declare type TTotalSalesConfiguration = {
2142
+ __typename?: 'TotalSalesConfiguration';
2143
+ createdAt: Scalars['DateTime'];
2144
+ id: Scalars['ID'];
2145
+ productId?: Maybe<Scalars['String']>;
2146
+ updatedAt: Scalars['DateTime'];
2147
+ };
2148
+ export declare type TTotalSalesConfigurationInput = {
2149
+ productId?: InputMaybe<Scalars['String']>;
2150
+ };
2151
+ export declare type TTotalSalesConfigurationWhereInput = {
2152
+ AND?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
2153
+ NOT?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
2154
+ OR?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
2155
+ createdAt?: InputMaybe<Scalars['DateTime']>;
2156
+ createdAt_gt?: InputMaybe<Scalars['DateTime']>;
2157
+ createdAt_gte?: InputMaybe<Scalars['DateTime']>;
2158
+ createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2159
+ createdAt_lt?: InputMaybe<Scalars['DateTime']>;
2160
+ createdAt_lte?: InputMaybe<Scalars['DateTime']>;
2161
+ createdAt_not?: InputMaybe<Scalars['DateTime']>;
2162
+ createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2163
+ id?: InputMaybe<Scalars['ID']>;
2164
+ id_contains?: InputMaybe<Scalars['ID']>;
2165
+ id_ends_with?: InputMaybe<Scalars['ID']>;
2166
+ id_gt?: InputMaybe<Scalars['ID']>;
2167
+ id_gte?: InputMaybe<Scalars['ID']>;
2168
+ id_in?: InputMaybe<Array<Scalars['ID']>>;
2169
+ id_lt?: InputMaybe<Scalars['ID']>;
2170
+ id_lte?: InputMaybe<Scalars['ID']>;
2171
+ id_not?: InputMaybe<Scalars['ID']>;
2172
+ id_not_contains?: InputMaybe<Scalars['ID']>;
2173
+ id_not_ends_with?: InputMaybe<Scalars['ID']>;
2174
+ id_not_in?: InputMaybe<Array<Scalars['ID']>>;
2175
+ id_not_starts_with?: InputMaybe<Scalars['ID']>;
2176
+ id_starts_with?: InputMaybe<Scalars['ID']>;
2177
+ productId?: InputMaybe<Scalars['String']>;
2178
+ productId_contains?: InputMaybe<Scalars['String']>;
2179
+ productId_ends_with?: InputMaybe<Scalars['String']>;
2180
+ productId_gt?: InputMaybe<Scalars['String']>;
2181
+ productId_gte?: InputMaybe<Scalars['String']>;
2182
+ productId_in?: InputMaybe<Array<Scalars['String']>>;
2183
+ productId_lt?: InputMaybe<Scalars['String']>;
2184
+ productId_lte?: InputMaybe<Scalars['String']>;
2185
+ productId_not?: InputMaybe<Scalars['String']>;
2186
+ productId_not_contains?: InputMaybe<Scalars['String']>;
2187
+ productId_not_ends_with?: InputMaybe<Scalars['String']>;
2188
+ productId_not_in?: InputMaybe<Array<Scalars['String']>>;
2189
+ productId_not_starts_with?: InputMaybe<Scalars['String']>;
2190
+ productId_starts_with?: InputMaybe<Scalars['String']>;
2191
+ updatedAt?: InputMaybe<Scalars['DateTime']>;
2192
+ updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
2193
+ updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
2194
+ updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
2195
+ updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
2196
+ updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
2197
+ updatedAt_not?: InputMaybe<Scalars['DateTime']>;
2198
+ updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
2199
+ };
2200
+ export declare type TVariantPricesListView = {
2201
+ __typename?: 'VariantPricesListView';
2202
+ createdAt: Scalars['DateTime'];
2203
+ id: Scalars['ID'];
2204
+ projectKey: Scalars['String'];
2205
+ updatedAt: Scalars['DateTime'];
2206
+ userId: Scalars['String'];
2207
+ visibleColumns: Array<Scalars['String']>;
2208
+ };
2209
+ export declare type TVariantPricesListViewInput = {
2210
+ visibleColumns: Array<Scalars['String']>;
2211
+ };
2212
+ export declare type TFetchProjectExtensionImageRegexQueryVariables = Exact<{
2213
+ [key: string]: never;
2214
+ }>;
2215
+ export declare type TFetchProjectExtensionImageRegexQuery = {
2216
+ __typename?: 'Query';
2217
+ projectExtension?: {
2218
+ __typename?: 'ProjectExtension';
2219
+ id: string;
2220
+ imageRegex?: {
2221
+ __typename?: 'ImageRegex';
2222
+ thumb?: {
2223
+ __typename?: 'ImageRegexOptions';
2224
+ flag: string;
2225
+ search: string;
2226
+ replace: string;
2227
+ } | null;
2228
+ small?: {
2229
+ __typename?: 'ImageRegexOptions';
2230
+ flag: string;
2231
+ search: string;
2232
+ replace: string;
2233
+ } | null;
2234
+ } | null;
2235
+ } | null;
2236
+ };
2237
+ export declare type TImageRegexFragment = {
2238
+ __typename?: 'ImageRegexOptions';
2239
+ flag: string;
2240
+ search: string;
2241
+ replace: string;
2242
+ };
2243
+ export declare type TFetchProjectExtensionsNavbarQueryVariables = Exact<{
2244
+ [key: string]: never;
2245
+ }>;
2246
+ export declare type TFetchProjectExtensionsNavbarQuery = {
2247
+ __typename?: 'Query';
2248
+ projectExtension?: {
2249
+ __typename?: 'ProjectExtension';
2250
+ id: string;
2251
+ applications?: Array<{
2252
+ __typename?: 'ApplicationExtension';
2253
+ id: string;
2254
+ navbarMenu?: {
2255
+ __typename?: 'NavbarMenu';
2256
+ id: string;
2257
+ key: string;
2258
+ uriPath: string;
2259
+ icon: string;
2260
+ featureToggle?: string | null;
2261
+ permissions: Array<TOAuthScope>;
2262
+ labelAllLocales?: Array<{
2263
+ __typename?: 'LocalizedField';
2264
+ locale: string;
2265
+ value: string;
2266
+ }> | null;
2267
+ submenu?: Array<{
2268
+ __typename?: 'NavbarSubmenu';
2269
+ id: string;
2270
+ key: string;
2271
+ uriPath: string;
2272
+ permissions: Array<TOAuthScope>;
2273
+ featureToggle?: string | null;
2274
+ labelAllLocales?: Array<{
2275
+ __typename?: 'LocalizedField';
2276
+ locale: string;
2277
+ value: string;
2278
+ }> | null;
2279
+ }> | null;
2280
+ } | null;
2281
+ }> | null;
2282
+ installedApplications?: Array<{
2283
+ __typename?: 'RestrictedCustomApplicationInstallationForProject';
2284
+ application: {
2285
+ __typename?: 'RestrictedCustomApplicationForProject';
2286
+ id: string;
2287
+ entryPointUriPath: string;
2288
+ menuLinks?: {
2289
+ __typename?: 'CustomApplicationMenuLink';
2290
+ id: string;
2291
+ icon: string;
2292
+ permissions: Array<string>;
2293
+ defaultLabel: string;
2294
+ labelAllLocales: Array<{
2295
+ __typename?: 'LocalizedField';
2296
+ locale: string;
2297
+ value: string;
2298
+ }>;
2299
+ submenuLinks: Array<{
2300
+ __typename?: 'CustomApplicationSubmenuLink';
2301
+ id: string;
2302
+ uriPath: string;
2303
+ permissions: Array<string>;
2304
+ defaultLabel: string;
2305
+ labelAllLocales: Array<{
2306
+ __typename?: 'LocalizedField';
2307
+ locale: string;
2308
+ value: string;
2309
+ }>;
2310
+ }>;
2311
+ } | null;
2312
+ };
2313
+ }> | null;
2314
+ } | null;
2315
+ };
2316
+ export declare type TCreateCustomApplicationFromCliMutationVariables = Exact<{
2317
+ organizationId: Scalars['String'];
2318
+ data: TCustomApplicationDraftDataInput;
2319
+ }>;
2320
+ export declare type TCreateCustomApplicationFromCliMutation = {
2321
+ __typename?: 'Mutation';
2322
+ createCustomApplication?: {
2323
+ __typename?: 'RestrictedCustomApplicationForOrganization';
2324
+ id: string;
2325
+ } | null;
2326
+ };
2327
+ export declare type TFetchCustomApplicationFromCliQueryVariables = Exact<{
2328
+ entryPointUriPath: Scalars['String'];
2329
+ }>;
2330
+ export declare type TFetchCustomApplicationFromCliQuery = {
2331
+ __typename?: 'Query';
2332
+ organizationExtensionForCustomApplication?: {
2333
+ __typename?: 'OrganizationExtensionForCustomApplication';
2334
+ organizationId: string;
2335
+ application: {
2336
+ __typename?: 'RestrictedCustomApplicationForOrganization';
2337
+ id: string;
2338
+ entryPointUriPath: string;
2339
+ name: string;
2340
+ description?: string | null;
2341
+ url: string;
2342
+ icon: string;
2343
+ permissions: Array<{
2344
+ __typename?: 'CustomApplicationPermission';
2345
+ name: string;
2346
+ oAuthScopes: Array<string>;
2347
+ }>;
2348
+ mainMenuLink: {
2349
+ __typename?: 'CustomApplicationMenuLink';
2350
+ defaultLabel: string;
2351
+ permissions: Array<string>;
2352
+ labelAllLocales: Array<{
2353
+ __typename?: 'LocalizedField';
2354
+ locale: string;
2355
+ value: string;
2356
+ }>;
2357
+ };
2358
+ submenuLinks: Array<{
2359
+ __typename?: 'CustomApplicationSubmenuLink';
2360
+ uriPath: string;
2361
+ defaultLabel: string;
2362
+ permissions: Array<string>;
2363
+ labelAllLocales: Array<{
2364
+ __typename?: 'LocalizedField';
2365
+ locale: string;
2366
+ value: string;
2367
+ }>;
2368
+ }>;
2369
+ };
2370
+ } | null;
2371
+ };
2372
+ export declare type TUpdateCustomApplicationFromCliMutationVariables = Exact<{
2373
+ organizationId: Scalars['String'];
2374
+ data: TCustomApplicationDraftDataInput;
2375
+ applicationId: Scalars['ID'];
2376
+ }>;
2377
+ export declare type TUpdateCustomApplicationFromCliMutation = {
2378
+ __typename?: 'Mutation';
2379
+ updateCustomApplication?: {
2380
+ __typename?: 'RestrictedCustomApplicationForOrganization';
2381
+ id: string;
2382
+ } | null;
2383
+ };