@commercetools-frontend/mc-scripts 21.23.6 → 21.23.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.dev.js +5 -5
- package/cli/dist/commercetools-frontend-mc-scripts-cli.cjs.prod.js +5 -5
- package/cli/dist/commercetools-frontend-mc-scripts-cli.esm.js +5 -5
- package/dist/{build-46e17838.esm.js → build-af471e4f.esm.js} +3 -3
- package/dist/{build-9005f39b.cjs.dev.js → build-e5e28d0f.cjs.dev.js} +3 -3
- package/dist/{build-94e2e5f6.cjs.prod.js → build-f4623154.cjs.prod.js} +3 -3
- package/dist/commercetools-frontend-mc-scripts.cjs.dev.js +1 -1
- package/dist/commercetools-frontend-mc-scripts.cjs.prod.js +1 -1
- package/dist/commercetools-frontend-mc-scripts.esm.js +1 -1
- package/dist/{config-sync-0821ad80.cjs.prod.js → config-sync-12891321.cjs.prod.js} +2 -2
- package/dist/{config-sync-0d1593ad.cjs.dev.js → config-sync-325ebf94.cjs.dev.js} +2 -2
- package/dist/{config-sync-a76dd6be.esm.js → config-sync-998cb259.esm.js} +2 -2
- package/dist/{create-postcss-config-a33c9daa.cjs.prod.js → create-postcss-config-3b210dc2.cjs.prod.js} +1 -1
- package/dist/{create-postcss-config-20610e17.esm.js → create-postcss-config-4448f310.esm.js} +1 -1
- package/dist/{create-postcss-config-25c9b250.cjs.dev.js → create-postcss-config-9c225b30.cjs.dev.js} +1 -1
- package/dist/{create-webpack-config-for-development-966028b5.cjs.dev.js → create-webpack-config-for-development-1364741a.cjs.dev.js} +1 -1
- package/dist/{create-webpack-config-for-development-9d5abada.esm.js → create-webpack-config-for-development-24c08049.esm.js} +1 -1
- package/dist/{create-webpack-config-for-development-4a62b618.cjs.prod.js → create-webpack-config-for-development-aa559235.cjs.prod.js} +1 -1
- package/dist/{create-webpack-config-for-production-73189249.esm.js → create-webpack-config-for-production-38d6c9e5.esm.js} +1 -2
- package/dist/{create-webpack-config-for-production-66e0db31.cjs.dev.js → create-webpack-config-for-production-421dc0c2.cjs.dev.js} +1 -2
- package/dist/{create-webpack-config-for-production-740b2cec.cjs.prod.js → create-webpack-config-for-production-e1822868.cjs.prod.js} +1 -2
- package/dist/declarations/src/generated/core.d.ts +108 -108
- package/dist/declarations/src/generated/settings.d.ts +248 -248
- package/dist/declarations/src/types.d.ts +11 -11
- package/dist/declarations/src/utils/auth.d.ts +1 -1
- package/dist/declarations/src/utils/graphql-requests.d.ts +4 -4
- package/dist/declarations/src/webpack-plugins/final-stats-writer-plugin.d.ts +1 -1
- package/dist/{login-bce601d2.esm.js → login-7a1112bb.esm.js} +2 -2
- package/dist/{login-097ab0a0.cjs.prod.js → login-a5ad29ca.cjs.prod.js} +2 -2
- package/dist/{login-93e3a4e1.cjs.dev.js → login-b81a3bd6.cjs.dev.js} +2 -2
- package/dist/{package-3ea6111c.cjs.dev.js → package-0ddd3656.cjs.prod.js} +30 -31
- package/dist/{package-28ee8399.cjs.prod.js → package-1afdc76b.cjs.dev.js} +30 -31
- package/dist/{package-b516a92c.esm.js → package-9b19982d.esm.js} +30 -31
- package/dist/{start-078cf31e.cjs.prod.js → start-48b418c7.cjs.prod.js} +3 -3
- package/dist/{start-3d695718.cjs.dev.js → start-ad9a3fcd.cjs.dev.js} +3 -3
- package/dist/{start-808eee24.esm.js → start-afd01505.esm.js} +3 -3
- package/dist/{user-agent-3637fa80.cjs.dev.js → user-agent-1395f804.cjs.dev.js} +1 -1
- package/dist/{user-agent-79eab940.cjs.prod.js → user-agent-18eb79a4.cjs.prod.js} +1 -1
- package/dist/{user-agent-d21136ff.esm.js → user-agent-94e2d7c3.esm.js} +1 -1
- package/package.json +30 -31
- package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.dev.js +2 -2
- package/postcss/dist/commercetools-frontend-mc-scripts-postcss.cjs.prod.js +2 -2
- package/postcss/dist/commercetools-frontend-mc-scripts-postcss.esm.js +2 -2
- package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.dev.js +4 -4
- package/webpack/dist/commercetools-frontend-mc-scripts-webpack.cjs.prod.js +4 -4
- package/webpack/dist/commercetools-frontend-mc-scripts-webpack.esm.js +4 -4
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
1
|
+
export type Maybe<T> = T | null;
|
|
2
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
+
export type Exact<T extends {
|
|
4
4
|
[key: string]: unknown;
|
|
5
5
|
}> = {
|
|
6
6
|
[K in keyof T]: T[K];
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
9
|
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
12
|
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
13
|
};
|
|
14
14
|
/** All built-in and custom scalars, mapped to their actual values */
|
|
15
|
-
export
|
|
15
|
+
export type Scalars = {
|
|
16
16
|
ID: string;
|
|
17
17
|
String: string;
|
|
18
18
|
Boolean: boolean;
|
|
@@ -23,7 +23,7 @@ export declare type Scalars = {
|
|
|
23
23
|
[key: string]: unknown;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
export
|
|
26
|
+
export type TApplicationExtension = {
|
|
27
27
|
__typename?: 'ApplicationExtension';
|
|
28
28
|
createdAt: Scalars['DateTime'];
|
|
29
29
|
description?: Maybe<Scalars['String']>;
|
|
@@ -35,14 +35,14 @@ export declare type TApplicationExtension = {
|
|
|
35
35
|
updatedAt: Scalars['DateTime'];
|
|
36
36
|
url: Scalars['String'];
|
|
37
37
|
};
|
|
38
|
-
export
|
|
38
|
+
export type TApplicationExtensionDataInput = {
|
|
39
39
|
description?: InputMaybe<Scalars['String']>;
|
|
40
40
|
name: Scalars['String'];
|
|
41
41
|
navbarMenu: TApplicationExtensionNavbarMenuDataInput;
|
|
42
42
|
oAuthScopes?: InputMaybe<Array<Scalars['String']>>;
|
|
43
43
|
url: Scalars['String'];
|
|
44
44
|
};
|
|
45
|
-
export
|
|
45
|
+
export type TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport = {
|
|
46
46
|
__typename?: 'ApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport';
|
|
47
47
|
entryPointUriPath: Scalars['String'];
|
|
48
48
|
id: Scalars['ID'];
|
|
@@ -51,14 +51,14 @@ export declare type TApplicationExtensionInfoForLegacyCustomApplicationsMigratio
|
|
|
51
51
|
name: Scalars['String'];
|
|
52
52
|
url: Scalars['String'];
|
|
53
53
|
};
|
|
54
|
-
export
|
|
54
|
+
export type TApplicationExtensionMigrationMatchingScore = {
|
|
55
55
|
__typename?: 'ApplicationExtensionMigrationMatchingScore';
|
|
56
56
|
applicationId: Scalars['String'];
|
|
57
57
|
matchByEntryPointUriPath: TMigrationMatchingScore;
|
|
58
58
|
matchByName: TMigrationMatchingScore;
|
|
59
59
|
matchByUrl: TMigrationMatchingScore;
|
|
60
60
|
};
|
|
61
|
-
export
|
|
61
|
+
export type TApplicationExtensionNavbarMenuDataInput = {
|
|
62
62
|
featureToggle?: InputMaybe<Scalars['String']>;
|
|
63
63
|
icon: Scalars['String'];
|
|
64
64
|
key: Scalars['String'];
|
|
@@ -67,14 +67,14 @@ export declare type TApplicationExtensionNavbarMenuDataInput = {
|
|
|
67
67
|
submenu: Array<TApplicationExtensionNavbarSubmenuDataInput>;
|
|
68
68
|
uriPath: Scalars['String'];
|
|
69
69
|
};
|
|
70
|
-
export
|
|
70
|
+
export type TApplicationExtensionNavbarSubmenuDataInput = {
|
|
71
71
|
featureToggle?: InputMaybe<Scalars['String']>;
|
|
72
72
|
key: Scalars['String'];
|
|
73
73
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
74
74
|
permissions: Array<TOAuthScope>;
|
|
75
75
|
uriPath: Scalars['String'];
|
|
76
76
|
};
|
|
77
|
-
export
|
|
77
|
+
export type TApplicationInfoForLegacyCustomApplicationsMigrationReport = {
|
|
78
78
|
__typename?: 'ApplicationInfoForLegacyCustomApplicationsMigrationReport';
|
|
79
79
|
entryPointUriPath: Scalars['String'];
|
|
80
80
|
id: Scalars['ID'];
|
|
@@ -98,17 +98,17 @@ export declare enum TAuthPermission {
|
|
|
98
98
|
ViewSomeDiscounts = "viewSomeDiscounts",
|
|
99
99
|
ViewUsersAndOrganizations = "viewUsersAndOrganizations"
|
|
100
100
|
}
|
|
101
|
-
export
|
|
101
|
+
export type TAverageOrderValueConfiguration = {
|
|
102
102
|
__typename?: 'AverageOrderValueConfiguration';
|
|
103
103
|
createdAt: Scalars['DateTime'];
|
|
104
104
|
id: Scalars['ID'];
|
|
105
105
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
106
106
|
updatedAt: Scalars['DateTime'];
|
|
107
107
|
};
|
|
108
|
-
export
|
|
108
|
+
export type TAverageOrderValueConfigurationInput = {
|
|
109
109
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
110
110
|
};
|
|
111
|
-
export
|
|
111
|
+
export type TAverageOrderValueConfigurationWhereInput = {
|
|
112
112
|
AND?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
113
113
|
NOT?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
114
114
|
OR?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
@@ -155,7 +155,7 @@ export declare enum TCategoryRecommendationSearchProperty {
|
|
|
155
155
|
MachineLearning = "MachineLearning",
|
|
156
156
|
ProductType = "ProductType"
|
|
157
157
|
}
|
|
158
|
-
export
|
|
158
|
+
export type TCategoryRecommendationSettings = {
|
|
159
159
|
__typename?: 'CategoryRecommendationSettings';
|
|
160
160
|
attributeName?: Maybe<Scalars['String']>;
|
|
161
161
|
createdAt: Scalars['DateTime'];
|
|
@@ -163,11 +163,11 @@ export declare type TCategoryRecommendationSettings = {
|
|
|
163
163
|
searchProperty: TCategoryRecommendationSearchProperty;
|
|
164
164
|
updatedAt: Scalars['DateTime'];
|
|
165
165
|
};
|
|
166
|
-
export
|
|
166
|
+
export type TCategoryRecommendationSettingsDataInput = {
|
|
167
167
|
attributeName?: InputMaybe<Scalars['String']>;
|
|
168
168
|
searchProperty: TCategoryRecommendationSearchProperty;
|
|
169
169
|
};
|
|
170
|
-
export
|
|
170
|
+
export type TContactInformation = {
|
|
171
171
|
__typename?: 'ContactInformation';
|
|
172
172
|
createdAt: Scalars['DateTime'];
|
|
173
173
|
email: Scalars['String'];
|
|
@@ -175,10 +175,10 @@ export declare type TContactInformation = {
|
|
|
175
175
|
updatedAt: Scalars['DateTime'];
|
|
176
176
|
verifiedEmail?: Maybe<Scalars['String']>;
|
|
177
177
|
};
|
|
178
|
-
export
|
|
178
|
+
export type TContactInformationDataInput = {
|
|
179
179
|
email: Scalars['String'];
|
|
180
180
|
};
|
|
181
|
-
export
|
|
181
|
+
export type TCustomApplication = {
|
|
182
182
|
__typename?: 'CustomApplication';
|
|
183
183
|
createdAt: Scalars['DateTime'];
|
|
184
184
|
description?: Maybe<Scalars['String']>;
|
|
@@ -196,7 +196,7 @@ export declare type TCustomApplication = {
|
|
|
196
196
|
updatedAt: Scalars['DateTime'];
|
|
197
197
|
url: Scalars['String'];
|
|
198
198
|
};
|
|
199
|
-
export
|
|
199
|
+
export type TCustomApplicationDraftDataInput = {
|
|
200
200
|
description?: InputMaybe<Scalars['String']>;
|
|
201
201
|
entryPointUriPath: Scalars['String'];
|
|
202
202
|
icon: Scalars['String'];
|
|
@@ -206,7 +206,7 @@ export declare type TCustomApplicationDraftDataInput = {
|
|
|
206
206
|
submenuLinks: Array<TCustomApplicationSubmenuLinkDraftDataInput>;
|
|
207
207
|
url: Scalars['String'];
|
|
208
208
|
};
|
|
209
|
-
export
|
|
209
|
+
export type TCustomApplicationInstallation = {
|
|
210
210
|
__typename?: 'CustomApplicationInstallation';
|
|
211
211
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
212
212
|
createdAt: Scalars['DateTime'];
|
|
@@ -217,7 +217,7 @@ export declare type TCustomApplicationInstallation = {
|
|
|
217
217
|
projects?: Maybe<Array<TProjectExtension>>;
|
|
218
218
|
updatedAt: Scalars['DateTime'];
|
|
219
219
|
};
|
|
220
|
-
export
|
|
220
|
+
export type TCustomApplicationInstallationPermission = {
|
|
221
221
|
__typename?: 'CustomApplicationInstallationPermission';
|
|
222
222
|
createdAt: Scalars['DateTime'];
|
|
223
223
|
id: Scalars['ID'];
|
|
@@ -225,7 +225,7 @@ export declare type TCustomApplicationInstallationPermission = {
|
|
|
225
225
|
oAuthScopes: Array<Scalars['String']>;
|
|
226
226
|
updatedAt: Scalars['DateTime'];
|
|
227
227
|
};
|
|
228
|
-
export
|
|
228
|
+
export type TCustomApplicationMenuLink = {
|
|
229
229
|
__typename?: 'CustomApplicationMenuLink';
|
|
230
230
|
createdAt: Scalars['DateTime'];
|
|
231
231
|
defaultLabel: Scalars['String'];
|
|
@@ -240,12 +240,12 @@ export declare type TCustomApplicationMenuLink = {
|
|
|
240
240
|
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
241
241
|
updatedAt: Scalars['DateTime'];
|
|
242
242
|
};
|
|
243
|
-
export
|
|
243
|
+
export type TCustomApplicationMenuLinkDraftDataInput = {
|
|
244
244
|
defaultLabel: Scalars['String'];
|
|
245
245
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
246
246
|
permissions: Array<Scalars['String']>;
|
|
247
247
|
};
|
|
248
|
-
export
|
|
248
|
+
export type TCustomApplicationPermission = {
|
|
249
249
|
__typename?: 'CustomApplicationPermission';
|
|
250
250
|
createdAt: Scalars['DateTime'];
|
|
251
251
|
id: Scalars['ID'];
|
|
@@ -253,17 +253,17 @@ export declare type TCustomApplicationPermission = {
|
|
|
253
253
|
oAuthScopes: Array<Scalars['String']>;
|
|
254
254
|
updatedAt: Scalars['DateTime'];
|
|
255
255
|
};
|
|
256
|
-
export
|
|
256
|
+
export type TCustomApplicationPermissionDataInput = {
|
|
257
257
|
name: Scalars['String'];
|
|
258
258
|
oAuthScopes: Array<Scalars['String']>;
|
|
259
259
|
};
|
|
260
|
-
export
|
|
260
|
+
export type TCustomApplicationQueryInput = {
|
|
261
261
|
limit?: InputMaybe<Scalars['Int']>;
|
|
262
262
|
offset?: InputMaybe<Scalars['Int']>;
|
|
263
263
|
sort?: InputMaybe<Scalars['String']>;
|
|
264
264
|
where?: InputMaybe<TCustomApplicationQueryWhereInput>;
|
|
265
265
|
};
|
|
266
|
-
export
|
|
266
|
+
export type TCustomApplicationQueryWhereInput = {
|
|
267
267
|
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
268
268
|
id?: InputMaybe<Scalars['ID']>;
|
|
269
269
|
name?: InputMaybe<Scalars['String']>;
|
|
@@ -273,7 +273,7 @@ export declare enum TCustomApplicationStatus {
|
|
|
273
273
|
Draft = "DRAFT",
|
|
274
274
|
PrivateUsage = "PRIVATE_USAGE"
|
|
275
275
|
}
|
|
276
|
-
export
|
|
276
|
+
export type TCustomApplicationSubmenuLink = {
|
|
277
277
|
__typename?: 'CustomApplicationSubmenuLink';
|
|
278
278
|
createdAt: Scalars['DateTime'];
|
|
279
279
|
defaultLabel: Scalars['String'];
|
|
@@ -283,21 +283,21 @@ export declare type TCustomApplicationSubmenuLink = {
|
|
|
283
283
|
updatedAt: Scalars['DateTime'];
|
|
284
284
|
uriPath: Scalars['String'];
|
|
285
285
|
};
|
|
286
|
-
export
|
|
286
|
+
export type TCustomApplicationSubmenuLinkDraftDataInput = {
|
|
287
287
|
defaultLabel: Scalars['String'];
|
|
288
288
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
289
289
|
permissions: Array<Scalars['String']>;
|
|
290
290
|
uriPath: Scalars['String'];
|
|
291
291
|
};
|
|
292
|
-
export
|
|
292
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationConfirmation = {
|
|
293
293
|
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationConfirmation';
|
|
294
294
|
organizationId: Scalars['ID'];
|
|
295
295
|
};
|
|
296
|
-
export
|
|
296
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationRequest = {
|
|
297
297
|
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationRequest';
|
|
298
298
|
token?: Maybe<Scalars['String']>;
|
|
299
299
|
};
|
|
300
|
-
export
|
|
300
|
+
export type TCustomApplicationsPagedQueryResult = {
|
|
301
301
|
__typename?: 'CustomApplicationsPagedQueryResult';
|
|
302
302
|
count: Scalars['Int'];
|
|
303
303
|
limit: Scalars['Int'];
|
|
@@ -305,7 +305,7 @@ export declare type TCustomApplicationsPagedQueryResult = {
|
|
|
305
305
|
results: Array<TCustomApplication>;
|
|
306
306
|
total: Scalars['Int'];
|
|
307
307
|
};
|
|
308
|
-
export
|
|
308
|
+
export type TCustomersListView = {
|
|
309
309
|
__typename?: 'CustomersListView';
|
|
310
310
|
createdAt: Scalars['DateTime'];
|
|
311
311
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -320,7 +320,7 @@ export declare type TCustomersListView = {
|
|
|
320
320
|
updatedAt: Scalars['DateTime'];
|
|
321
321
|
userId: Scalars['String'];
|
|
322
322
|
};
|
|
323
|
-
export
|
|
323
|
+
export type TCustomersListView_FiltersArgs = {
|
|
324
324
|
after?: InputMaybe<Scalars['String']>;
|
|
325
325
|
before?: InputMaybe<Scalars['String']>;
|
|
326
326
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -329,7 +329,7 @@ export declare type TCustomersListView_FiltersArgs = {
|
|
|
329
329
|
skip?: InputMaybe<Scalars['Int']>;
|
|
330
330
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
331
331
|
};
|
|
332
|
-
export
|
|
332
|
+
export type TCustomersListView_NameAllLocalesArgs = {
|
|
333
333
|
after?: InputMaybe<Scalars['String']>;
|
|
334
334
|
before?: InputMaybe<Scalars['String']>;
|
|
335
335
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -338,17 +338,17 @@ export declare type TCustomersListView_NameAllLocalesArgs = {
|
|
|
338
338
|
skip?: InputMaybe<Scalars['Int']>;
|
|
339
339
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
340
340
|
};
|
|
341
|
-
export
|
|
341
|
+
export type TCustomersListViewInput = {
|
|
342
342
|
filters: Array<TFilterValuesCreateInput>;
|
|
343
343
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
344
344
|
search?: InputMaybe<Scalars['String']>;
|
|
345
345
|
sort: TSortCreateInput;
|
|
346
346
|
table?: InputMaybe<TCustomersListViewTableInput>;
|
|
347
347
|
};
|
|
348
|
-
export
|
|
348
|
+
export type TCustomersListViewTableInput = {
|
|
349
349
|
visibleColumns: Array<Scalars['String']>;
|
|
350
350
|
};
|
|
351
|
-
export
|
|
351
|
+
export type TDashboardView = {
|
|
352
352
|
__typename?: 'DashboardView';
|
|
353
353
|
createdAt: Scalars['DateTime'];
|
|
354
354
|
currencyCode?: Maybe<Scalars['String']>;
|
|
@@ -362,7 +362,7 @@ export declare type TDashboardView = {
|
|
|
362
362
|
updatedAt: Scalars['DateTime'];
|
|
363
363
|
userId: Scalars['String'];
|
|
364
364
|
};
|
|
365
|
-
export
|
|
365
|
+
export type TDashboardView_LayoutArgs = {
|
|
366
366
|
after?: InputMaybe<Scalars['String']>;
|
|
367
367
|
before?: InputMaybe<Scalars['String']>;
|
|
368
368
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -371,7 +371,7 @@ export declare type TDashboardView_LayoutArgs = {
|
|
|
371
371
|
skip?: InputMaybe<Scalars['Int']>;
|
|
372
372
|
where?: InputMaybe<TLayoutCardWhereInput>;
|
|
373
373
|
};
|
|
374
|
-
export
|
|
374
|
+
export type TDashboardView_NameAllLocalesArgs = {
|
|
375
375
|
after?: InputMaybe<Scalars['String']>;
|
|
376
376
|
before?: InputMaybe<Scalars['String']>;
|
|
377
377
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -380,7 +380,7 @@ export declare type TDashboardView_NameAllLocalesArgs = {
|
|
|
380
380
|
skip?: InputMaybe<Scalars['Int']>;
|
|
381
381
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
382
382
|
};
|
|
383
|
-
export
|
|
383
|
+
export type TDashboardViewInput = {
|
|
384
384
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
385
385
|
layout: Array<TLayoutCardInput>;
|
|
386
386
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -399,7 +399,7 @@ export declare enum TDiscountType {
|
|
|
399
399
|
DiscountCode = "DiscountCode",
|
|
400
400
|
ProductDiscount = "ProductDiscount"
|
|
401
401
|
}
|
|
402
|
-
export
|
|
402
|
+
export type TDiscountsCustomView = {
|
|
403
403
|
__typename?: 'DiscountsCustomView';
|
|
404
404
|
createdAt: Scalars['DateTime'];
|
|
405
405
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -415,7 +415,7 @@ export declare type TDiscountsCustomView = {
|
|
|
415
415
|
updatedAt: Scalars['DateTime'];
|
|
416
416
|
userId: Scalars['String'];
|
|
417
417
|
};
|
|
418
|
-
export
|
|
418
|
+
export type TDiscountsCustomView_FiltersArgs = {
|
|
419
419
|
after?: InputMaybe<Scalars['String']>;
|
|
420
420
|
before?: InputMaybe<Scalars['String']>;
|
|
421
421
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -424,7 +424,7 @@ export declare type TDiscountsCustomView_FiltersArgs = {
|
|
|
424
424
|
skip?: InputMaybe<Scalars['Int']>;
|
|
425
425
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
426
426
|
};
|
|
427
|
-
export
|
|
427
|
+
export type TDiscountsCustomView_NameAllLocalesArgs = {
|
|
428
428
|
after?: InputMaybe<Scalars['String']>;
|
|
429
429
|
before?: InputMaybe<Scalars['String']>;
|
|
430
430
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -433,7 +433,7 @@ export declare type TDiscountsCustomView_NameAllLocalesArgs = {
|
|
|
433
433
|
skip?: InputMaybe<Scalars['Int']>;
|
|
434
434
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
435
435
|
};
|
|
436
|
-
export
|
|
436
|
+
export type TDiscountsCustomViewInput = {
|
|
437
437
|
filters: Array<TFilterValuesCreateInput>;
|
|
438
438
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
439
439
|
search?: InputMaybe<Scalars['String']>;
|
|
@@ -455,7 +455,7 @@ export declare enum TFilterType {
|
|
|
455
455
|
MoreThan = "MoreThan",
|
|
456
456
|
Range = "Range"
|
|
457
457
|
}
|
|
458
|
-
export
|
|
458
|
+
export type TFilterValues = {
|
|
459
459
|
__typename?: 'FilterValues';
|
|
460
460
|
createdAt: Scalars['DateTime'];
|
|
461
461
|
id: Scalars['ID'];
|
|
@@ -464,7 +464,7 @@ export declare type TFilterValues = {
|
|
|
464
464
|
type: TFilterType;
|
|
465
465
|
updatedAt: Scalars['DateTime'];
|
|
466
466
|
};
|
|
467
|
-
export
|
|
467
|
+
export type TFilterValuesCreateInput = {
|
|
468
468
|
id?: InputMaybe<Scalars['ID']>;
|
|
469
469
|
json: Scalars['Json'];
|
|
470
470
|
target: Scalars['String'];
|
|
@@ -484,7 +484,7 @@ export declare enum TFilterValuesOrderByInput {
|
|
|
484
484
|
UpdatedAtAsc = "updatedAt_ASC",
|
|
485
485
|
UpdatedAtDesc = "updatedAt_DESC"
|
|
486
486
|
}
|
|
487
|
-
export
|
|
487
|
+
export type TFilterValuesWhereInput = {
|
|
488
488
|
AND?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
489
489
|
NOT?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
490
490
|
OR?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
@@ -537,7 +537,7 @@ export declare type TFilterValuesWhereInput = {
|
|
|
537
537
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
538
538
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
539
539
|
};
|
|
540
|
-
export
|
|
540
|
+
export type TImageRegex = {
|
|
541
541
|
__typename?: 'ImageRegex';
|
|
542
542
|
createdAt: Scalars['DateTime'];
|
|
543
543
|
id: Scalars['ID'];
|
|
@@ -545,22 +545,22 @@ export declare type TImageRegex = {
|
|
|
545
545
|
thumb?: Maybe<TImageRegexOptions>;
|
|
546
546
|
updatedAt: Scalars['DateTime'];
|
|
547
547
|
};
|
|
548
|
-
export
|
|
548
|
+
export type TImageRegexDataInput = {
|
|
549
549
|
small?: InputMaybe<TImageRegexOptionsInput>;
|
|
550
550
|
thumb?: InputMaybe<TImageRegexOptionsInput>;
|
|
551
551
|
};
|
|
552
|
-
export
|
|
552
|
+
export type TImageRegexOptions = {
|
|
553
553
|
__typename?: 'ImageRegexOptions';
|
|
554
554
|
flag?: Maybe<Scalars['String']>;
|
|
555
555
|
replace: Scalars['String'];
|
|
556
556
|
search: Scalars['String'];
|
|
557
557
|
};
|
|
558
|
-
export
|
|
558
|
+
export type TImageRegexOptionsInput = {
|
|
559
559
|
flag?: InputMaybe<Scalars['String']>;
|
|
560
560
|
replace: Scalars['String'];
|
|
561
561
|
search: Scalars['String'];
|
|
562
562
|
};
|
|
563
|
-
export
|
|
563
|
+
export type TLayoutCard = {
|
|
564
564
|
__typename?: 'LayoutCard';
|
|
565
565
|
averageOrderValueConfiguration?: Maybe<TAverageOrderValueConfiguration>;
|
|
566
566
|
createdAt: Scalars['DateTime'];
|
|
@@ -584,7 +584,7 @@ export declare type TLayoutCard = {
|
|
|
584
584
|
xPosition: Scalars['Int'];
|
|
585
585
|
yPosition: Scalars['Int'];
|
|
586
586
|
};
|
|
587
|
-
export
|
|
587
|
+
export type TLayoutCard_NameAllLocalesArgs = {
|
|
588
588
|
after?: InputMaybe<Scalars['String']>;
|
|
589
589
|
before?: InputMaybe<Scalars['String']>;
|
|
590
590
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -593,7 +593,7 @@ export declare type TLayoutCard_NameAllLocalesArgs = {
|
|
|
593
593
|
skip?: InputMaybe<Scalars['Int']>;
|
|
594
594
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
595
595
|
};
|
|
596
|
-
export
|
|
596
|
+
export type TLayoutCardInput = {
|
|
597
597
|
averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationInput>;
|
|
598
598
|
height: Scalars['Int'];
|
|
599
599
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -640,7 +640,7 @@ export declare enum TLayoutCardOrderByInput {
|
|
|
640
640
|
YPositionAsc = "yPosition_ASC",
|
|
641
641
|
YPositionDesc = "yPosition_DESC"
|
|
642
642
|
}
|
|
643
|
-
export
|
|
643
|
+
export type TLayoutCardWhereInput = {
|
|
644
644
|
AND?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
645
645
|
NOT?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
646
646
|
OR?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
@@ -753,7 +753,7 @@ export declare type TLayoutCardWhereInput = {
|
|
|
753
753
|
yPosition_not?: InputMaybe<Scalars['Int']>;
|
|
754
754
|
yPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
755
755
|
};
|
|
756
|
-
export
|
|
756
|
+
export type TLegacyCustomApplication = {
|
|
757
757
|
__typename?: 'LegacyCustomApplication';
|
|
758
758
|
createdAt: Scalars['DateTime'];
|
|
759
759
|
description?: Maybe<Scalars['String']>;
|
|
@@ -766,19 +766,19 @@ export declare type TLegacyCustomApplication = {
|
|
|
766
766
|
updatedAt: Scalars['DateTime'];
|
|
767
767
|
url: Scalars['String'];
|
|
768
768
|
};
|
|
769
|
-
export
|
|
769
|
+
export type TLegacyCustomApplicationQueryInput = {
|
|
770
770
|
limit?: InputMaybe<Scalars['Int']>;
|
|
771
771
|
offset?: InputMaybe<Scalars['Int']>;
|
|
772
772
|
sort?: InputMaybe<Scalars['String']>;
|
|
773
773
|
where?: InputMaybe<TLegacyCustomApplicationQueryWhereInput>;
|
|
774
774
|
};
|
|
775
|
-
export
|
|
775
|
+
export type TLegacyCustomApplicationQueryWhereInput = {
|
|
776
776
|
id?: InputMaybe<Scalars['ID']>;
|
|
777
777
|
name?: InputMaybe<Scalars['String']>;
|
|
778
778
|
projectKey?: InputMaybe<Scalars['String']>;
|
|
779
779
|
uriPath?: InputMaybe<Scalars['String']>;
|
|
780
780
|
};
|
|
781
|
-
export
|
|
781
|
+
export type TLegacyCustomApplicationsMigrationReport = {
|
|
782
782
|
__typename?: 'LegacyCustomApplicationsMigrationReport';
|
|
783
783
|
applications: Array<TApplicationInfoForLegacyCustomApplicationsMigrationReport>;
|
|
784
784
|
organizationExtensionId?: Maybe<Scalars['ID']>;
|
|
@@ -786,7 +786,7 @@ export declare type TLegacyCustomApplicationsMigrationReport = {
|
|
|
786
786
|
organizationName?: Maybe<Scalars['String']>;
|
|
787
787
|
projects: Array<TProjectInfoForLegacyCustomApplicationsMigrationReport>;
|
|
788
788
|
};
|
|
789
|
-
export
|
|
789
|
+
export type TLegacyCustomApplicationsPagedQueryResult = {
|
|
790
790
|
__typename?: 'LegacyCustomApplicationsPagedQueryResult';
|
|
791
791
|
count: Scalars['Int'];
|
|
792
792
|
limit: Scalars['Int'];
|
|
@@ -794,17 +794,17 @@ export declare type TLegacyCustomApplicationsPagedQueryResult = {
|
|
|
794
794
|
results: Array<TLegacyCustomApplication>;
|
|
795
795
|
total: Scalars['Int'];
|
|
796
796
|
};
|
|
797
|
-
export
|
|
797
|
+
export type TLocalizedField = {
|
|
798
798
|
__typename?: 'LocalizedField';
|
|
799
799
|
locale: Scalars['String'];
|
|
800
800
|
value: Scalars['String'];
|
|
801
801
|
};
|
|
802
|
-
export
|
|
802
|
+
export type TLocalizedFieldCreateInput = {
|
|
803
803
|
id?: InputMaybe<Scalars['ID']>;
|
|
804
804
|
locale: Scalars['String'];
|
|
805
805
|
value: Scalars['String'];
|
|
806
806
|
};
|
|
807
|
-
export
|
|
807
|
+
export type TLocalizedFieldDataInput = {
|
|
808
808
|
locale: Scalars['String'];
|
|
809
809
|
value: Scalars['String'];
|
|
810
810
|
};
|
|
@@ -820,7 +820,7 @@ export declare enum TLocalizedFieldOrderByInput {
|
|
|
820
820
|
ValueAsc = "value_ASC",
|
|
821
821
|
ValueDesc = "value_DESC"
|
|
822
822
|
}
|
|
823
|
-
export
|
|
823
|
+
export type TLocalizedFieldWhereInput = {
|
|
824
824
|
AND?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
825
825
|
NOT?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
826
826
|
OR?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
@@ -892,20 +892,20 @@ export declare enum TMetricCardType {
|
|
|
892
892
|
TotalOrders = "TOTAL_ORDERS",
|
|
893
893
|
TotalSales = "TOTAL_SALES"
|
|
894
894
|
}
|
|
895
|
-
export
|
|
895
|
+
export type TMigrationMatchingScore = {
|
|
896
896
|
__typename?: 'MigrationMatchingScore';
|
|
897
897
|
matchFrom: Scalars['String'];
|
|
898
898
|
matchTo: Scalars['String'];
|
|
899
899
|
score: Scalars['Float'];
|
|
900
900
|
};
|
|
901
|
-
export
|
|
901
|
+
export type TMigrationResult = {
|
|
902
902
|
__typename?: 'MigrationResult';
|
|
903
903
|
failed: Scalars['Int'];
|
|
904
904
|
failedIds?: Maybe<Array<Scalars['ID']>>;
|
|
905
905
|
skipped: Scalars['Int'];
|
|
906
906
|
succeeded: Scalars['Int'];
|
|
907
907
|
};
|
|
908
|
-
export
|
|
908
|
+
export type TMutation = {
|
|
909
909
|
__typename?: 'Mutation';
|
|
910
910
|
activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
911
911
|
activateCustomersListView?: Maybe<TCustomersListView>;
|
|
@@ -1009,312 +1009,312 @@ export declare type TMutation = {
|
|
|
1009
1009
|
updateVariantPricesListView?: Maybe<TVariantPricesListView>;
|
|
1010
1010
|
verifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationConfirmation>;
|
|
1011
1011
|
};
|
|
1012
|
-
export
|
|
1012
|
+
export type TMutation_ActivateCartDiscountsCustomViewArgs = {
|
|
1013
1013
|
id: Scalars['ID'];
|
|
1014
1014
|
};
|
|
1015
|
-
export
|
|
1015
|
+
export type TMutation_ActivateCustomersListViewArgs = {
|
|
1016
1016
|
id: Scalars['ID'];
|
|
1017
1017
|
};
|
|
1018
|
-
export
|
|
1018
|
+
export type TMutation_ActivateDashboardViewArgs = {
|
|
1019
1019
|
id: Scalars['ID'];
|
|
1020
1020
|
};
|
|
1021
|
-
export
|
|
1021
|
+
export type TMutation_ActivateDiscountCodesCustomViewArgs = {
|
|
1022
1022
|
id: Scalars['ID'];
|
|
1023
1023
|
};
|
|
1024
|
-
export
|
|
1024
|
+
export type TMutation_ActivateOrdersListViewArgs = {
|
|
1025
1025
|
id: Scalars['ID'];
|
|
1026
1026
|
};
|
|
1027
|
-
export
|
|
1027
|
+
export type TMutation_ActivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
1028
1028
|
organizationId: Scalars['String'];
|
|
1029
1029
|
};
|
|
1030
|
-
export
|
|
1030
|
+
export type TMutation_ActivatePimSearchListViewArgs = {
|
|
1031
1031
|
id: Scalars['ID'];
|
|
1032
1032
|
};
|
|
1033
|
-
export
|
|
1033
|
+
export type TMutation_ActivateProductDiscountsCustomViewArgs = {
|
|
1034
1034
|
id: Scalars['ID'];
|
|
1035
1035
|
};
|
|
1036
|
-
export
|
|
1036
|
+
export type TMutation_ActivateProductTypeAttributesViewArgs = {
|
|
1037
1037
|
id: Scalars['ID'];
|
|
1038
1038
|
isVariant: Scalars['Boolean'];
|
|
1039
1039
|
productTypeId: Scalars['String'];
|
|
1040
1040
|
};
|
|
1041
|
-
export
|
|
1041
|
+
export type TMutation_ActivateProjectExtensionApplicationArgs = {
|
|
1042
1042
|
applicationId: Scalars['ID'];
|
|
1043
1043
|
};
|
|
1044
|
-
export
|
|
1044
|
+
export type TMutation_ChangeCustomApplicationStatusArgs = {
|
|
1045
1045
|
applicationId: Scalars['ID'];
|
|
1046
1046
|
organizationId: Scalars['String'];
|
|
1047
1047
|
status: TCustomApplicationStatus;
|
|
1048
1048
|
};
|
|
1049
|
-
export
|
|
1049
|
+
export type TMutation_CreateCartDiscountsCustomViewArgs = {
|
|
1050
1050
|
data: TDiscountsCustomViewInput;
|
|
1051
1051
|
};
|
|
1052
|
-
export
|
|
1052
|
+
export type TMutation_CreateCustomApplicationArgs = {
|
|
1053
1053
|
data: TCustomApplicationDraftDataInput;
|
|
1054
1054
|
organizationId: Scalars['String'];
|
|
1055
1055
|
};
|
|
1056
|
-
export
|
|
1056
|
+
export type TMutation_CreateCustomersListViewArgs = {
|
|
1057
1057
|
data: TCustomersListViewInput;
|
|
1058
1058
|
};
|
|
1059
|
-
export
|
|
1059
|
+
export type TMutation_CreateDashboardViewArgs = {
|
|
1060
1060
|
data: TDashboardViewInput;
|
|
1061
1061
|
};
|
|
1062
|
-
export
|
|
1062
|
+
export type TMutation_CreateDiscountCodesCustomViewArgs = {
|
|
1063
1063
|
data: TDiscountsCustomViewInput;
|
|
1064
1064
|
};
|
|
1065
|
-
export
|
|
1065
|
+
export type TMutation_CreateOrdersListViewArgs = {
|
|
1066
1066
|
data: TOrdersListViewInput;
|
|
1067
1067
|
};
|
|
1068
|
-
export
|
|
1068
|
+
export type TMutation_CreatePimSearchListViewArgs = {
|
|
1069
1069
|
data: TPimSearchListViewInput;
|
|
1070
1070
|
};
|
|
1071
|
-
export
|
|
1071
|
+
export type TMutation_CreateProductDiscountsCustomViewArgs = {
|
|
1072
1072
|
data: TDiscountsCustomViewInput;
|
|
1073
1073
|
};
|
|
1074
|
-
export
|
|
1074
|
+
export type TMutation_CreateProductTypeAttributesViewArgs = {
|
|
1075
1075
|
data: TProductTypeAttributesViewInput;
|
|
1076
1076
|
};
|
|
1077
|
-
export
|
|
1077
|
+
export type TMutation_CreateVariantPricesListViewArgs = {
|
|
1078
1078
|
data: TVariantPricesListViewInput;
|
|
1079
1079
|
};
|
|
1080
|
-
export
|
|
1080
|
+
export type TMutation_DeactivateCartDiscountsCustomViewArgs = {
|
|
1081
1081
|
id: Scalars['ID'];
|
|
1082
1082
|
};
|
|
1083
|
-
export
|
|
1083
|
+
export type TMutation_DeactivateCustomersListViewArgs = {
|
|
1084
1084
|
id: Scalars['ID'];
|
|
1085
1085
|
};
|
|
1086
|
-
export
|
|
1086
|
+
export type TMutation_DeactivateDashboardViewArgs = {
|
|
1087
1087
|
id: Scalars['ID'];
|
|
1088
1088
|
};
|
|
1089
|
-
export
|
|
1089
|
+
export type TMutation_DeactivateDiscountCodesCustomViewArgs = {
|
|
1090
1090
|
id: Scalars['ID'];
|
|
1091
1091
|
};
|
|
1092
|
-
export
|
|
1092
|
+
export type TMutation_DeactivateOrdersListViewArgs = {
|
|
1093
1093
|
id: Scalars['ID'];
|
|
1094
1094
|
};
|
|
1095
|
-
export
|
|
1095
|
+
export type TMutation_DeactivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
1096
1096
|
organizationId: Scalars['String'];
|
|
1097
1097
|
};
|
|
1098
|
-
export
|
|
1098
|
+
export type TMutation_DeactivatePimSearchListViewArgs = {
|
|
1099
1099
|
id: Scalars['ID'];
|
|
1100
1100
|
};
|
|
1101
|
-
export
|
|
1101
|
+
export type TMutation_DeactivateProductDiscountsCustomViewArgs = {
|
|
1102
1102
|
id: Scalars['ID'];
|
|
1103
1103
|
};
|
|
1104
|
-
export
|
|
1104
|
+
export type TMutation_DeactivateProductTypeAttributesViewArgs = {
|
|
1105
1105
|
id: Scalars['ID'];
|
|
1106
1106
|
};
|
|
1107
|
-
export
|
|
1107
|
+
export type TMutation_DeactivateProjectExtensionApplicationArgs = {
|
|
1108
1108
|
applicationId: Scalars['ID'];
|
|
1109
1109
|
};
|
|
1110
|
-
export
|
|
1110
|
+
export type TMutation_DeleteCartDiscountsCustomViewArgs = {
|
|
1111
1111
|
id: Scalars['ID'];
|
|
1112
1112
|
};
|
|
1113
|
-
export
|
|
1113
|
+
export type TMutation_DeleteCustomApplicationArgs = {
|
|
1114
1114
|
applicationId: Scalars['ID'];
|
|
1115
1115
|
organizationId: Scalars['String'];
|
|
1116
1116
|
};
|
|
1117
|
-
export
|
|
1117
|
+
export type TMutation_DeleteCustomersListViewArgs = {
|
|
1118
1118
|
id: Scalars['ID'];
|
|
1119
1119
|
};
|
|
1120
|
-
export
|
|
1120
|
+
export type TMutation_DeleteDashboardViewArgs = {
|
|
1121
1121
|
id: Scalars['ID'];
|
|
1122
1122
|
};
|
|
1123
|
-
export
|
|
1123
|
+
export type TMutation_DeleteDiscountCodesCustomViewArgs = {
|
|
1124
1124
|
id: Scalars['ID'];
|
|
1125
1125
|
};
|
|
1126
|
-
export
|
|
1126
|
+
export type TMutation_DeleteOrdersListViewArgs = {
|
|
1127
1127
|
id: Scalars['ID'];
|
|
1128
1128
|
};
|
|
1129
|
-
export
|
|
1129
|
+
export type TMutation_DeletePimSearchListViewArgs = {
|
|
1130
1130
|
id: Scalars['ID'];
|
|
1131
1131
|
};
|
|
1132
|
-
export
|
|
1132
|
+
export type TMutation_DeleteProductDiscountsCustomViewArgs = {
|
|
1133
1133
|
id: Scalars['ID'];
|
|
1134
1134
|
};
|
|
1135
|
-
export
|
|
1135
|
+
export type TMutation_DeleteProductTypeAttributesViewArgs = {
|
|
1136
1136
|
id: Scalars['ID'];
|
|
1137
1137
|
};
|
|
1138
|
-
export
|
|
1138
|
+
export type TMutation_DeleteProjectExtensionApplicationArgs = {
|
|
1139
1139
|
applicationId: Scalars['ID'];
|
|
1140
1140
|
};
|
|
1141
|
-
export
|
|
1141
|
+
export type TMutation_InstallCustomApplicationArgs = {
|
|
1142
1142
|
applicationId: Scalars['ID'];
|
|
1143
1143
|
organizationId: Scalars['String'];
|
|
1144
1144
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1145
1145
|
};
|
|
1146
|
-
export
|
|
1146
|
+
export type TMutation_MigrateCustomersListViewsArgs = {
|
|
1147
1147
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1148
1148
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1149
1149
|
userEmail: Scalars['String'];
|
|
1150
1150
|
};
|
|
1151
|
-
export
|
|
1151
|
+
export type TMutation_MigrateDashboardViewsArgs = {
|
|
1152
1152
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1153
1153
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1154
1154
|
userEmail: Scalars['String'];
|
|
1155
1155
|
};
|
|
1156
|
-
export
|
|
1156
|
+
export type TMutation_MigrateDiscountsListViewsArgs = {
|
|
1157
1157
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1158
1158
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1159
1159
|
userEmail: Scalars['String'];
|
|
1160
1160
|
};
|
|
1161
|
-
export
|
|
1161
|
+
export type TMutation_MigrateOrdersListViewsArgs = {
|
|
1162
1162
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1163
1163
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1164
1164
|
userEmail: Scalars['String'];
|
|
1165
1165
|
};
|
|
1166
|
-
export
|
|
1166
|
+
export type TMutation_MigrateOrganizationExtensionsOidcSsoConfigArgs = {
|
|
1167
1167
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1168
1168
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1169
1169
|
userEmail: Scalars['String'];
|
|
1170
1170
|
};
|
|
1171
|
-
export
|
|
1171
|
+
export type TMutation_MigratePimSearchListViewsArgs = {
|
|
1172
1172
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1173
1173
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1174
1174
|
userEmail: Scalars['String'];
|
|
1175
1175
|
};
|
|
1176
|
-
export
|
|
1176
|
+
export type TMutation_MigrateProductTypeAttributesViewsArgs = {
|
|
1177
1177
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1178
1178
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1179
1179
|
userEmail: Scalars['String'];
|
|
1180
1180
|
};
|
|
1181
|
-
export
|
|
1181
|
+
export type TMutation_MigrateProjectExtensionsArgs = {
|
|
1182
1182
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1183
1183
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1184
1184
|
userEmail: Scalars['String'];
|
|
1185
1185
|
};
|
|
1186
|
-
export
|
|
1186
|
+
export type TMutation_MigrateRuleBuilderQuickSelectionValuesArgs = {
|
|
1187
1187
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1188
1188
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1189
1189
|
userEmail: Scalars['String'];
|
|
1190
1190
|
};
|
|
1191
|
-
export
|
|
1191
|
+
export type TMutation_MigrateVariantPricesListViewsArgs = {
|
|
1192
1192
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1193
1193
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1194
1194
|
userEmail: Scalars['String'];
|
|
1195
1195
|
};
|
|
1196
|
-
export
|
|
1196
|
+
export type TMutation_RevertCustomersListViewsMigrationArgs = {
|
|
1197
1197
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1198
1198
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1199
1199
|
userEmail: Scalars['String'];
|
|
1200
1200
|
};
|
|
1201
|
-
export
|
|
1201
|
+
export type TMutation_RevertDashboardViewsMigrationArgs = {
|
|
1202
1202
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1203
1203
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1204
1204
|
userEmail: Scalars['String'];
|
|
1205
1205
|
};
|
|
1206
|
-
export
|
|
1206
|
+
export type TMutation_RevertDiscountsListViewsMigrationArgs = {
|
|
1207
1207
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1208
1208
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1209
1209
|
userEmail: Scalars['String'];
|
|
1210
1210
|
};
|
|
1211
|
-
export
|
|
1211
|
+
export type TMutation_RevertOrdersListViewsMigrationArgs = {
|
|
1212
1212
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1213
1213
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1214
1214
|
userEmail: Scalars['String'];
|
|
1215
1215
|
};
|
|
1216
|
-
export
|
|
1216
|
+
export type TMutation_RevertPimSearchListViewsMigrationArgs = {
|
|
1217
1217
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1218
1218
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1219
1219
|
userEmail: Scalars['String'];
|
|
1220
1220
|
};
|
|
1221
|
-
export
|
|
1221
|
+
export type TMutation_RevertProductTypeAttributesViewsMigrationArgs = {
|
|
1222
1222
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1223
1223
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1224
1224
|
userEmail: Scalars['String'];
|
|
1225
1225
|
};
|
|
1226
|
-
export
|
|
1226
|
+
export type TMutation_RevertRuleBuilderQuickSelectionValuesMigrationArgs = {
|
|
1227
1227
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1228
1228
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1229
1229
|
userEmail: Scalars['String'];
|
|
1230
1230
|
};
|
|
1231
|
-
export
|
|
1231
|
+
export type TMutation_RevertVariantPricesListViewsMigrationArgs = {
|
|
1232
1232
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1233
1233
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1234
1234
|
userEmail: Scalars['String'];
|
|
1235
1235
|
};
|
|
1236
|
-
export
|
|
1236
|
+
export type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1237
1237
|
organizationId: Scalars['String'];
|
|
1238
1238
|
};
|
|
1239
|
-
export
|
|
1239
|
+
export type TMutation_SetCustomApplicationsMaintainerContactInformationArgs = {
|
|
1240
1240
|
data?: InputMaybe<TContactInformationDataInput>;
|
|
1241
1241
|
organizationId: Scalars['String'];
|
|
1242
1242
|
};
|
|
1243
|
-
export
|
|
1243
|
+
export type TMutation_SetOrganizationExtensionOidcSsoConfigArgs = {
|
|
1244
1244
|
data: TOidcSsoConfigDataInput;
|
|
1245
1245
|
organizationId: Scalars['String'];
|
|
1246
1246
|
};
|
|
1247
|
-
export
|
|
1247
|
+
export type TMutation_SetProjectExtensionCategoryRecommendationArgs = {
|
|
1248
1248
|
data?: InputMaybe<TCategoryRecommendationSettingsDataInput>;
|
|
1249
1249
|
};
|
|
1250
|
-
export
|
|
1250
|
+
export type TMutation_SetProjectExtensionImageRegexArgs = {
|
|
1251
1251
|
data?: InputMaybe<TImageRegexDataInput>;
|
|
1252
1252
|
};
|
|
1253
|
-
export
|
|
1253
|
+
export type TMutation_SetProjectExtensionOrderStatesVisibilityArgs = {
|
|
1254
1254
|
data?: InputMaybe<Array<InputMaybe<TOrderStatesVisibility>>>;
|
|
1255
1255
|
};
|
|
1256
|
-
export
|
|
1256
|
+
export type TMutation_UninstallCustomApplicationArgs = {
|
|
1257
1257
|
installedApplicationId: Scalars['ID'];
|
|
1258
1258
|
organizationId: Scalars['String'];
|
|
1259
1259
|
};
|
|
1260
|
-
export
|
|
1260
|
+
export type TMutation_UpdateCartDiscountsCustomViewArgs = {
|
|
1261
1261
|
data: TDiscountsCustomViewInput;
|
|
1262
1262
|
id: Scalars['ID'];
|
|
1263
1263
|
};
|
|
1264
|
-
export
|
|
1264
|
+
export type TMutation_UpdateCustomApplicationArgs = {
|
|
1265
1265
|
applicationId: Scalars['ID'];
|
|
1266
1266
|
data: TCustomApplicationDraftDataInput;
|
|
1267
1267
|
organizationId: Scalars['String'];
|
|
1268
1268
|
};
|
|
1269
|
-
export
|
|
1269
|
+
export type TMutation_UpdateCustomApplicationProjectsInstallationArgs = {
|
|
1270
1270
|
installedApplicationId: Scalars['ID'];
|
|
1271
1271
|
organizationId: Scalars['String'];
|
|
1272
1272
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1273
1273
|
};
|
|
1274
|
-
export
|
|
1274
|
+
export type TMutation_UpdateCustomersListViewArgs = {
|
|
1275
1275
|
data: TCustomersListViewInput;
|
|
1276
1276
|
id: Scalars['ID'];
|
|
1277
1277
|
};
|
|
1278
|
-
export
|
|
1278
|
+
export type TMutation_UpdateDashboardViewArgs = {
|
|
1279
1279
|
data: TDashboardViewInput;
|
|
1280
1280
|
id: Scalars['ID'];
|
|
1281
1281
|
};
|
|
1282
|
-
export
|
|
1282
|
+
export type TMutation_UpdateDiscountCodesCustomViewArgs = {
|
|
1283
1283
|
data: TDiscountsCustomViewInput;
|
|
1284
1284
|
id: Scalars['ID'];
|
|
1285
1285
|
};
|
|
1286
|
-
export
|
|
1286
|
+
export type TMutation_UpdateOrdersListViewArgs = {
|
|
1287
1287
|
data: TOrdersListViewInput;
|
|
1288
1288
|
id: Scalars['ID'];
|
|
1289
1289
|
};
|
|
1290
|
-
export
|
|
1290
|
+
export type TMutation_UpdatePimSearchListViewArgs = {
|
|
1291
1291
|
data: TPimSearchListViewInput;
|
|
1292
1292
|
id: Scalars['ID'];
|
|
1293
1293
|
};
|
|
1294
|
-
export
|
|
1294
|
+
export type TMutation_UpdateProductDiscountsCustomViewArgs = {
|
|
1295
1295
|
data: TDiscountsCustomViewInput;
|
|
1296
1296
|
id: Scalars['ID'];
|
|
1297
1297
|
};
|
|
1298
|
-
export
|
|
1298
|
+
export type TMutation_UpdateProductTypeAttributesViewArgs = {
|
|
1299
1299
|
data: TProductTypeAttributesViewUpdateInput;
|
|
1300
1300
|
id: Scalars['ID'];
|
|
1301
1301
|
};
|
|
1302
|
-
export
|
|
1302
|
+
export type TMutation_UpdateProjectExtensionApplicationArgs = {
|
|
1303
1303
|
applicationId: Scalars['ID'];
|
|
1304
1304
|
data: TApplicationExtensionDataInput;
|
|
1305
1305
|
};
|
|
1306
|
-
export
|
|
1306
|
+
export type TMutation_UpdateRuleBuilderQuickSelectionValuesArgs = {
|
|
1307
1307
|
data: TRuleBuilderQuickSelectionInput;
|
|
1308
1308
|
id?: InputMaybe<Scalars['ID']>;
|
|
1309
1309
|
};
|
|
1310
|
-
export
|
|
1310
|
+
export type TMutation_UpdateVariantPricesListViewArgs = {
|
|
1311
1311
|
data: TVariantPricesListViewInput;
|
|
1312
1312
|
id: Scalars['ID'];
|
|
1313
1313
|
};
|
|
1314
|
-
export
|
|
1314
|
+
export type TMutation_VerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1315
1315
|
token: Scalars['String'];
|
|
1316
1316
|
};
|
|
1317
|
-
export
|
|
1317
|
+
export type TMyCustomApplication = {
|
|
1318
1318
|
__typename?: 'MyCustomApplication';
|
|
1319
1319
|
createdAt: Scalars['DateTime'];
|
|
1320
1320
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1331,13 +1331,13 @@ export declare type TMyCustomApplication = {
|
|
|
1331
1331
|
updatedAt: Scalars['DateTime'];
|
|
1332
1332
|
url: Scalars['String'];
|
|
1333
1333
|
};
|
|
1334
|
-
export
|
|
1334
|
+
export type TMyCustomApplicationQueryInput = {
|
|
1335
1335
|
where?: InputMaybe<TMyCustomApplicationQueryWhereInput>;
|
|
1336
1336
|
};
|
|
1337
|
-
export
|
|
1337
|
+
export type TMyCustomApplicationQueryWhereInput = {
|
|
1338
1338
|
status?: InputMaybe<TCustomApplicationStatus>;
|
|
1339
1339
|
};
|
|
1340
|
-
export
|
|
1340
|
+
export type TNavbarMenu = {
|
|
1341
1341
|
__typename?: 'NavbarMenu';
|
|
1342
1342
|
createdAt: Scalars['DateTime'];
|
|
1343
1343
|
featureToggle?: Maybe<Scalars['String']>;
|
|
@@ -1350,7 +1350,7 @@ export declare type TNavbarMenu = {
|
|
|
1350
1350
|
updatedAt: Scalars['DateTime'];
|
|
1351
1351
|
uriPath: Scalars['String'];
|
|
1352
1352
|
};
|
|
1353
|
-
export
|
|
1353
|
+
export type TNavbarMenu_LabelAllLocalesArgs = {
|
|
1354
1354
|
after?: InputMaybe<Scalars['String']>;
|
|
1355
1355
|
before?: InputMaybe<Scalars['String']>;
|
|
1356
1356
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1359,7 +1359,7 @@ export declare type TNavbarMenu_LabelAllLocalesArgs = {
|
|
|
1359
1359
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1360
1360
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1361
1361
|
};
|
|
1362
|
-
export
|
|
1362
|
+
export type TNavbarMenu_SubmenuArgs = {
|
|
1363
1363
|
after?: InputMaybe<Scalars['String']>;
|
|
1364
1364
|
before?: InputMaybe<Scalars['String']>;
|
|
1365
1365
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1368,7 +1368,7 @@ export declare type TNavbarMenu_SubmenuArgs = {
|
|
|
1368
1368
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1369
1369
|
where?: InputMaybe<TNavbarSubmenuWhereInput>;
|
|
1370
1370
|
};
|
|
1371
|
-
export
|
|
1371
|
+
export type TNavbarSubmenu = {
|
|
1372
1372
|
__typename?: 'NavbarSubmenu';
|
|
1373
1373
|
createdAt: Scalars['DateTime'];
|
|
1374
1374
|
featureToggle?: Maybe<Scalars['String']>;
|
|
@@ -1379,7 +1379,7 @@ export declare type TNavbarSubmenu = {
|
|
|
1379
1379
|
updatedAt: Scalars['DateTime'];
|
|
1380
1380
|
uriPath: Scalars['String'];
|
|
1381
1381
|
};
|
|
1382
|
-
export
|
|
1382
|
+
export type TNavbarSubmenu_LabelAllLocalesArgs = {
|
|
1383
1383
|
after?: InputMaybe<Scalars['String']>;
|
|
1384
1384
|
before?: InputMaybe<Scalars['String']>;
|
|
1385
1385
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1402,7 +1402,7 @@ export declare enum TNavbarSubmenuOrderByInput {
|
|
|
1402
1402
|
UriPathAsc = "uriPath_ASC",
|
|
1403
1403
|
UriPathDesc = "uriPath_DESC"
|
|
1404
1404
|
}
|
|
1405
|
-
export
|
|
1405
|
+
export type TNavbarSubmenuWhereInput = {
|
|
1406
1406
|
AND?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1407
1407
|
NOT?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1408
1408
|
OR?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
@@ -1509,7 +1509,7 @@ export declare enum TOAuthScope {
|
|
|
1509
1509
|
ViewProducts = "ViewProducts",
|
|
1510
1510
|
ViewProjectSettings = "ViewProjectSettings"
|
|
1511
1511
|
}
|
|
1512
|
-
export
|
|
1512
|
+
export type TOidcSsoConfig = {
|
|
1513
1513
|
__typename?: 'OidcSsoConfig';
|
|
1514
1514
|
authorityUrl: Scalars['String'];
|
|
1515
1515
|
clientId: Scalars['String'];
|
|
@@ -1521,7 +1521,7 @@ export declare type TOidcSsoConfig = {
|
|
|
1521
1521
|
teamIdForNewUsers: Scalars['String'];
|
|
1522
1522
|
updatedAt: Scalars['DateTime'];
|
|
1523
1523
|
};
|
|
1524
|
-
export
|
|
1524
|
+
export type TOidcSsoConfigDataInput = {
|
|
1525
1525
|
authorityUrl: Scalars['String'];
|
|
1526
1526
|
clientId: Scalars['String'];
|
|
1527
1527
|
clientSecret?: InputMaybe<Scalars['String']>;
|
|
@@ -1533,7 +1533,7 @@ export declare enum TOrderStatesVisibility {
|
|
|
1533
1533
|
HidePaymentState = "HidePaymentState",
|
|
1534
1534
|
HideShipmentState = "HideShipmentState"
|
|
1535
1535
|
}
|
|
1536
|
-
export
|
|
1536
|
+
export type TOrderStatusConfiguration = {
|
|
1537
1537
|
__typename?: 'OrderStatusConfiguration';
|
|
1538
1538
|
createdAt: Scalars['DateTime'];
|
|
1539
1539
|
dateFilterType: TDateFilterType;
|
|
@@ -1543,13 +1543,13 @@ export declare type TOrderStatusConfiguration = {
|
|
|
1543
1543
|
productId?: Maybe<Scalars['String']>;
|
|
1544
1544
|
updatedAt: Scalars['DateTime'];
|
|
1545
1545
|
};
|
|
1546
|
-
export
|
|
1546
|
+
export type TOrderStatusConfigurationInput = {
|
|
1547
1547
|
dateFilterType: TDateFilterType;
|
|
1548
1548
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
1549
1549
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1550
1550
|
productId?: InputMaybe<Scalars['String']>;
|
|
1551
1551
|
};
|
|
1552
|
-
export
|
|
1552
|
+
export type TOrderStatusConfigurationWhereInput = {
|
|
1553
1553
|
AND?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1554
1554
|
NOT?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1555
1555
|
OR?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
@@ -1618,7 +1618,7 @@ export declare type TOrderStatusConfigurationWhereInput = {
|
|
|
1618
1618
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1619
1619
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1620
1620
|
};
|
|
1621
|
-
export
|
|
1621
|
+
export type TOrdersListView = {
|
|
1622
1622
|
__typename?: 'OrdersListView';
|
|
1623
1623
|
createdAt: Scalars['DateTime'];
|
|
1624
1624
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -1634,7 +1634,7 @@ export declare type TOrdersListView = {
|
|
|
1634
1634
|
updatedAt: Scalars['DateTime'];
|
|
1635
1635
|
userId: Scalars['String'];
|
|
1636
1636
|
};
|
|
1637
|
-
export
|
|
1637
|
+
export type TOrdersListView_FiltersArgs = {
|
|
1638
1638
|
after?: InputMaybe<Scalars['String']>;
|
|
1639
1639
|
before?: InputMaybe<Scalars['String']>;
|
|
1640
1640
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1643,7 +1643,7 @@ export declare type TOrdersListView_FiltersArgs = {
|
|
|
1643
1643
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1644
1644
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1645
1645
|
};
|
|
1646
|
-
export
|
|
1646
|
+
export type TOrdersListView_NameAllLocalesArgs = {
|
|
1647
1647
|
after?: InputMaybe<Scalars['String']>;
|
|
1648
1648
|
before?: InputMaybe<Scalars['String']>;
|
|
1649
1649
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1652,7 +1652,7 @@ export declare type TOrdersListView_NameAllLocalesArgs = {
|
|
|
1652
1652
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1653
1653
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1654
1654
|
};
|
|
1655
|
-
export
|
|
1655
|
+
export type TOrdersListViewInput = {
|
|
1656
1656
|
filters: Array<TFilterValuesCreateInput>;
|
|
1657
1657
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1658
1658
|
search?: InputMaybe<Scalars['String']>;
|
|
@@ -1660,10 +1660,10 @@ export declare type TOrdersListViewInput = {
|
|
|
1660
1660
|
sort: TSortCreateInput;
|
|
1661
1661
|
table?: InputMaybe<TOrdersListViewTableInput>;
|
|
1662
1662
|
};
|
|
1663
|
-
export
|
|
1663
|
+
export type TOrdersListViewTableInput = {
|
|
1664
1664
|
visibleColumns: Array<Scalars['String']>;
|
|
1665
1665
|
};
|
|
1666
|
-
export
|
|
1666
|
+
export type TOrganizationExtension = {
|
|
1667
1667
|
__typename?: 'OrganizationExtension';
|
|
1668
1668
|
applicationsMaintainerContactInformation?: Maybe<TContactInformation>;
|
|
1669
1669
|
createdAt: Scalars['DateTime'];
|
|
@@ -1674,14 +1674,14 @@ export declare type TOrganizationExtension = {
|
|
|
1674
1674
|
registeredApplications?: Maybe<Array<TRestrictedCustomApplicationForOrganization>>;
|
|
1675
1675
|
updatedAt: Scalars['DateTime'];
|
|
1676
1676
|
};
|
|
1677
|
-
export
|
|
1677
|
+
export type TOrganizationExtensionForCustomApplication = {
|
|
1678
1678
|
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
1679
1679
|
application: TRestrictedCustomApplicationForOrganization;
|
|
1680
1680
|
id: Scalars['ID'];
|
|
1681
1681
|
organizationId: Scalars['String'];
|
|
1682
1682
|
organizationName?: Maybe<Scalars['String']>;
|
|
1683
1683
|
};
|
|
1684
|
-
export
|
|
1684
|
+
export type TPimSearchListView = {
|
|
1685
1685
|
__typename?: 'PimSearchListView';
|
|
1686
1686
|
createdAt: Scalars['DateTime'];
|
|
1687
1687
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -1696,7 +1696,7 @@ export declare type TPimSearchListView = {
|
|
|
1696
1696
|
updatedAt: Scalars['DateTime'];
|
|
1697
1697
|
userId: Scalars['String'];
|
|
1698
1698
|
};
|
|
1699
|
-
export
|
|
1699
|
+
export type TPimSearchListView_FiltersArgs = {
|
|
1700
1700
|
after?: InputMaybe<Scalars['String']>;
|
|
1701
1701
|
before?: InputMaybe<Scalars['String']>;
|
|
1702
1702
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1705,7 +1705,7 @@ export declare type TPimSearchListView_FiltersArgs = {
|
|
|
1705
1705
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1706
1706
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1707
1707
|
};
|
|
1708
|
-
export
|
|
1708
|
+
export type TPimSearchListView_NameAllLocalesArgs = {
|
|
1709
1709
|
after?: InputMaybe<Scalars['String']>;
|
|
1710
1710
|
before?: InputMaybe<Scalars['String']>;
|
|
1711
1711
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1714,17 +1714,17 @@ export declare type TPimSearchListView_NameAllLocalesArgs = {
|
|
|
1714
1714
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1715
1715
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1716
1716
|
};
|
|
1717
|
-
export
|
|
1717
|
+
export type TPimSearchListViewInput = {
|
|
1718
1718
|
filters: Array<TFilterValuesCreateInput>;
|
|
1719
1719
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1720
1720
|
search?: InputMaybe<Scalars['String']>;
|
|
1721
1721
|
sort: TSortCreateInput;
|
|
1722
1722
|
table?: InputMaybe<TPimSearchListViewTableInput>;
|
|
1723
1723
|
};
|
|
1724
|
-
export
|
|
1724
|
+
export type TPimSearchListViewTableInput = {
|
|
1725
1725
|
visibleColumns: Array<Scalars['String']>;
|
|
1726
1726
|
};
|
|
1727
|
-
export
|
|
1727
|
+
export type TProductTypeAttributesView = {
|
|
1728
1728
|
__typename?: 'ProductTypeAttributesView';
|
|
1729
1729
|
createdAt: Scalars['DateTime'];
|
|
1730
1730
|
existence?: Maybe<TExistence>;
|
|
@@ -1740,7 +1740,7 @@ export declare type TProductTypeAttributesView = {
|
|
|
1740
1740
|
updatedAt: Scalars['DateTime'];
|
|
1741
1741
|
userId: Scalars['String'];
|
|
1742
1742
|
};
|
|
1743
|
-
export
|
|
1743
|
+
export type TProductTypeAttributesView_NameAllLocalesArgs = {
|
|
1744
1744
|
after?: InputMaybe<Scalars['String']>;
|
|
1745
1745
|
before?: InputMaybe<Scalars['String']>;
|
|
1746
1746
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1749,7 +1749,7 @@ export declare type TProductTypeAttributesView_NameAllLocalesArgs = {
|
|
|
1749
1749
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1750
1750
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1751
1751
|
};
|
|
1752
|
-
export
|
|
1752
|
+
export type TProductTypeAttributesViewInput = {
|
|
1753
1753
|
existence?: InputMaybe<TExistence>;
|
|
1754
1754
|
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1755
1755
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -1757,14 +1757,14 @@ export declare type TProductTypeAttributesViewInput = {
|
|
|
1757
1757
|
productTypeId: Scalars['String'];
|
|
1758
1758
|
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1759
1759
|
};
|
|
1760
|
-
export
|
|
1760
|
+
export type TProductTypeAttributesViewUpdateInput = {
|
|
1761
1761
|
existence?: InputMaybe<TExistence>;
|
|
1762
1762
|
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1763
1763
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1764
1764
|
pinnedAttributes: Array<Scalars['String']>;
|
|
1765
1765
|
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1766
1766
|
};
|
|
1767
|
-
export
|
|
1767
|
+
export type TProjectExtension = {
|
|
1768
1768
|
__typename?: 'ProjectExtension';
|
|
1769
1769
|
applications?: Maybe<Array<TApplicationExtension>>;
|
|
1770
1770
|
categoryRecommendationSettings?: Maybe<TCategoryRecommendationSettings>;
|
|
@@ -1776,16 +1776,16 @@ export declare type TProjectExtension = {
|
|
|
1776
1776
|
projectKey: Scalars['String'];
|
|
1777
1777
|
updatedAt: Scalars['DateTime'];
|
|
1778
1778
|
};
|
|
1779
|
-
export
|
|
1779
|
+
export type TProjectExtension_ApplicationsArgs = {
|
|
1780
1780
|
where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
|
|
1781
1781
|
};
|
|
1782
|
-
export
|
|
1782
|
+
export type TProjectInfoForLegacyCustomApplicationsMigrationReport = {
|
|
1783
1783
|
__typename?: 'ProjectInfoForLegacyCustomApplicationsMigrationReport';
|
|
1784
1784
|
applicationExtensions: Array<TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport>;
|
|
1785
1785
|
projectExtensionId: Scalars['ID'];
|
|
1786
1786
|
projectKey: Scalars['String'];
|
|
1787
1787
|
};
|
|
1788
|
-
export
|
|
1788
|
+
export type TQuery = {
|
|
1789
1789
|
__typename?: 'Query';
|
|
1790
1790
|
activeCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1791
1791
|
activeCustomersListView?: Maybe<TCustomersListView>;
|
|
@@ -1835,70 +1835,70 @@ export declare type TQuery = {
|
|
|
1835
1835
|
ruleBuilderQuickSelectionValues?: Maybe<Array<Maybe<TRuleBuilderQuickSelectionValues>>>;
|
|
1836
1836
|
variantPricesListViews: Array<Maybe<TVariantPricesListView>>;
|
|
1837
1837
|
};
|
|
1838
|
-
export
|
|
1838
|
+
export type TQuery_ActiveProductTypeAttributesViewArgs = {
|
|
1839
1839
|
isVariant: Scalars['Boolean'];
|
|
1840
1840
|
productTypeId: Scalars['String'];
|
|
1841
1841
|
};
|
|
1842
|
-
export
|
|
1842
|
+
export type TQuery_AllAppliedCustomApplicationPermissionsArgs = {
|
|
1843
1843
|
applicationId: Scalars['ID'];
|
|
1844
1844
|
entryPointUriPath: Scalars['String'];
|
|
1845
1845
|
};
|
|
1846
|
-
export
|
|
1846
|
+
export type TQuery_AllCustomApplicationsArgs = {
|
|
1847
1847
|
params?: InputMaybe<TCustomApplicationQueryInput>;
|
|
1848
1848
|
};
|
|
1849
|
-
export
|
|
1849
|
+
export type TQuery_AllLegacyCustomApplicationsArgs = {
|
|
1850
1850
|
params?: InputMaybe<TLegacyCustomApplicationQueryInput>;
|
|
1851
1851
|
};
|
|
1852
|
-
export
|
|
1852
|
+
export type TQuery_AllOrganizationExtensionsArgs = {
|
|
1853
1853
|
organizationIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1854
1854
|
};
|
|
1855
|
-
export
|
|
1855
|
+
export type TQuery_CartDiscountsCustomViewArgs = {
|
|
1856
1856
|
id: Scalars['ID'];
|
|
1857
1857
|
};
|
|
1858
|
-
export
|
|
1858
|
+
export type TQuery_CustomApplicationArgs = {
|
|
1859
1859
|
applicationId: Scalars['ID'];
|
|
1860
1860
|
};
|
|
1861
|
-
export
|
|
1861
|
+
export type TQuery_CustomersListViewArgs = {
|
|
1862
1862
|
id: Scalars['ID'];
|
|
1863
1863
|
};
|
|
1864
|
-
export
|
|
1864
|
+
export type TQuery_DashboardViewArgs = {
|
|
1865
1865
|
id: Scalars['ID'];
|
|
1866
1866
|
};
|
|
1867
|
-
export
|
|
1867
|
+
export type TQuery_DiscountCodesCustomViewArgs = {
|
|
1868
1868
|
id: Scalars['ID'];
|
|
1869
1869
|
};
|
|
1870
|
-
export
|
|
1870
|
+
export type TQuery_GlobalOrganizationExtensionArgs = {
|
|
1871
1871
|
organizationId: Scalars['String'];
|
|
1872
1872
|
};
|
|
1873
|
-
export
|
|
1873
|
+
export type TQuery_LegacyCustomApplicationArgs = {
|
|
1874
1874
|
applicationId: Scalars['ID'];
|
|
1875
1875
|
};
|
|
1876
|
-
export
|
|
1876
|
+
export type TQuery_MyCustomApplicationsArgs = {
|
|
1877
1877
|
params?: InputMaybe<TMyCustomApplicationQueryInput>;
|
|
1878
1878
|
};
|
|
1879
|
-
export
|
|
1879
|
+
export type TQuery_OrdersListViewArgs = {
|
|
1880
1880
|
id: Scalars['ID'];
|
|
1881
1881
|
};
|
|
1882
|
-
export
|
|
1882
|
+
export type TQuery_OrganizationExtensionArgs = {
|
|
1883
1883
|
organizationId: Scalars['String'];
|
|
1884
1884
|
};
|
|
1885
|
-
export
|
|
1885
|
+
export type TQuery_OrganizationExtensionForCustomApplicationArgs = {
|
|
1886
1886
|
entryPointUriPath: Scalars['String'];
|
|
1887
1887
|
};
|
|
1888
|
-
export
|
|
1888
|
+
export type TQuery_PimSearchListViewArgs = {
|
|
1889
1889
|
id: Scalars['ID'];
|
|
1890
1890
|
};
|
|
1891
|
-
export
|
|
1891
|
+
export type TQuery_ProductDiscountsCustomViewArgs = {
|
|
1892
1892
|
id: Scalars['ID'];
|
|
1893
1893
|
};
|
|
1894
|
-
export
|
|
1894
|
+
export type TQuery_ProductTypeAttributesViewArgs = {
|
|
1895
1895
|
id: Scalars['ID'];
|
|
1896
1896
|
};
|
|
1897
|
-
export
|
|
1897
|
+
export type TQuery_ProductTypeAttributesViewsArgs = {
|
|
1898
1898
|
isVariant: Scalars['Boolean'];
|
|
1899
1899
|
productTypeId: Scalars['String'];
|
|
1900
1900
|
};
|
|
1901
|
-
export
|
|
1901
|
+
export type TQuery_RuleBuilderQuickSelectionValuesArgs = {
|
|
1902
1902
|
ruleBuilderType: TRuleBuilderType;
|
|
1903
1903
|
};
|
|
1904
1904
|
export declare enum TResourceType {
|
|
@@ -1907,17 +1907,17 @@ export declare enum TResourceType {
|
|
|
1907
1907
|
TotalProducts = "TOTAL_PRODUCTS",
|
|
1908
1908
|
UnpublishedProducts = "UNPUBLISHED_PRODUCTS"
|
|
1909
1909
|
}
|
|
1910
|
-
export
|
|
1910
|
+
export type TResourcesNumbersConfiguration = {
|
|
1911
1911
|
__typename?: 'ResourcesNumbersConfiguration';
|
|
1912
1912
|
createdAt: Scalars['DateTime'];
|
|
1913
1913
|
id: Scalars['ID'];
|
|
1914
1914
|
resourceOptions: Array<TResourceType>;
|
|
1915
1915
|
updatedAt: Scalars['DateTime'];
|
|
1916
1916
|
};
|
|
1917
|
-
export
|
|
1917
|
+
export type TResourcesNumbersConfigurationInput = {
|
|
1918
1918
|
resourceOptions: Array<TResourceType>;
|
|
1919
1919
|
};
|
|
1920
|
-
export
|
|
1920
|
+
export type TResourcesNumbersConfigurationWhereInput = {
|
|
1921
1921
|
AND?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1922
1922
|
NOT?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1923
1923
|
OR?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
@@ -1952,12 +1952,12 @@ export declare type TResourcesNumbersConfigurationWhereInput = {
|
|
|
1952
1952
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1953
1953
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1954
1954
|
};
|
|
1955
|
-
export
|
|
1955
|
+
export type TRestrictedApplicationExtensionWhereInput = {
|
|
1956
1956
|
id?: InputMaybe<Scalars['ID']>;
|
|
1957
1957
|
isActive?: InputMaybe<Scalars['Boolean']>;
|
|
1958
1958
|
url?: InputMaybe<Scalars['String']>;
|
|
1959
1959
|
};
|
|
1960
|
-
export
|
|
1960
|
+
export type TRestrictedCustomApplicationForOrganization = {
|
|
1961
1961
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1962
1962
|
createdAt: Scalars['DateTime'];
|
|
1963
1963
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1972,7 +1972,7 @@ export declare type TRestrictedCustomApplicationForOrganization = {
|
|
|
1972
1972
|
updatedAt: Scalars['DateTime'];
|
|
1973
1973
|
url: Scalars['String'];
|
|
1974
1974
|
};
|
|
1975
|
-
export
|
|
1975
|
+
export type TRestrictedCustomApplicationForProject = {
|
|
1976
1976
|
__typename?: 'RestrictedCustomApplicationForProject';
|
|
1977
1977
|
createdAt: Scalars['DateTime'];
|
|
1978
1978
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1989,7 +1989,7 @@ export declare type TRestrictedCustomApplicationForProject = {
|
|
|
1989
1989
|
updatedAt: Scalars['DateTime'];
|
|
1990
1990
|
url: Scalars['String'];
|
|
1991
1991
|
};
|
|
1992
|
-
export
|
|
1992
|
+
export type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
1993
1993
|
__typename?: 'RestrictedCustomApplicationInstallationForOrganization';
|
|
1994
1994
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1995
1995
|
application: TRestrictedCustomApplicationForProject;
|
|
@@ -1999,7 +1999,7 @@ export declare type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
|
1999
1999
|
projects?: Maybe<Array<TProjectExtension>>;
|
|
2000
2000
|
updatedAt: Scalars['DateTime'];
|
|
2001
2001
|
};
|
|
2002
|
-
export
|
|
2002
|
+
export type TRestrictedCustomApplicationInstallationForProject = {
|
|
2003
2003
|
__typename?: 'RestrictedCustomApplicationInstallationForProject';
|
|
2004
2004
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
2005
2005
|
application: TRestrictedCustomApplicationForProject;
|
|
@@ -2008,23 +2008,23 @@ export declare type TRestrictedCustomApplicationInstallationForProject = {
|
|
|
2008
2008
|
installInAllProjects: Scalars['Boolean'];
|
|
2009
2009
|
updatedAt: Scalars['DateTime'];
|
|
2010
2010
|
};
|
|
2011
|
-
export
|
|
2011
|
+
export type TReversionResult = {
|
|
2012
2012
|
__typename?: 'ReversionResult';
|
|
2013
2013
|
revertedIds?: Maybe<Array<Scalars['ID']>>;
|
|
2014
2014
|
skipped?: Maybe<Scalars['Int']>;
|
|
2015
2015
|
};
|
|
2016
|
-
export
|
|
2016
|
+
export type TRuleBuilderQuickSelectCreatefunctionsInput = {
|
|
2017
2017
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
2018
2018
|
};
|
|
2019
|
-
export
|
|
2019
|
+
export type TRuleBuilderQuickSelectCreatepredicatesInput = {
|
|
2020
2020
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
2021
2021
|
};
|
|
2022
|
-
export
|
|
2022
|
+
export type TRuleBuilderQuickSelectionInput = {
|
|
2023
2023
|
functions?: InputMaybe<TRuleBuilderQuickSelectCreatepredicatesInput>;
|
|
2024
2024
|
predicates?: InputMaybe<TRuleBuilderQuickSelectCreatefunctionsInput>;
|
|
2025
2025
|
ruleBuilderType: TRuleBuilderType;
|
|
2026
2026
|
};
|
|
2027
|
-
export
|
|
2027
|
+
export type TRuleBuilderQuickSelectionValues = {
|
|
2028
2028
|
__typename?: 'RuleBuilderQuickSelectionValues';
|
|
2029
2029
|
createdAt: Scalars['DateTime'];
|
|
2030
2030
|
functions: Array<Scalars['String']>;
|
|
@@ -2041,7 +2041,7 @@ export declare enum TRuleBuilderType {
|
|
|
2041
2041
|
CartTargetDiscount = "CartTargetDiscount",
|
|
2042
2042
|
ProductDiscount = "ProductDiscount"
|
|
2043
2043
|
}
|
|
2044
|
-
export
|
|
2044
|
+
export type TSalesPerformanceConfiguration = {
|
|
2045
2045
|
__typename?: 'SalesPerformanceConfiguration';
|
|
2046
2046
|
createdAt: Scalars['DateTime'];
|
|
2047
2047
|
dateFilterType: TDateFilterType;
|
|
@@ -2051,13 +2051,13 @@ export declare type TSalesPerformanceConfiguration = {
|
|
|
2051
2051
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2052
2052
|
updatedAt: Scalars['DateTime'];
|
|
2053
2053
|
};
|
|
2054
|
-
export
|
|
2054
|
+
export type TSalesPerformanceConfigurationInput = {
|
|
2055
2055
|
dateFilterType: TDateFilterType;
|
|
2056
2056
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2057
2057
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2058
2058
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2059
2059
|
};
|
|
2060
|
-
export
|
|
2060
|
+
export type TSalesPerformanceConfigurationWhereInput = {
|
|
2061
2061
|
AND?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2062
2062
|
NOT?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2063
2063
|
OR?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
@@ -2114,7 +2114,7 @@ export declare type TSalesPerformanceConfigurationWhereInput = {
|
|
|
2114
2114
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2115
2115
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2116
2116
|
};
|
|
2117
|
-
export
|
|
2117
|
+
export type TSort = {
|
|
2118
2118
|
__typename?: 'Sort';
|
|
2119
2119
|
createdAt: Scalars['DateTime'];
|
|
2120
2120
|
id: Scalars['ID'];
|
|
@@ -2122,7 +2122,7 @@ export declare type TSort = {
|
|
|
2122
2122
|
order: TSortOrder;
|
|
2123
2123
|
updatedAt: Scalars['DateTime'];
|
|
2124
2124
|
};
|
|
2125
|
-
export
|
|
2125
|
+
export type TSortCreateInput = {
|
|
2126
2126
|
id?: InputMaybe<Scalars['ID']>;
|
|
2127
2127
|
key: Scalars['String'];
|
|
2128
2128
|
order: TSortOrder;
|
|
@@ -2131,24 +2131,24 @@ export declare enum TSortOrder {
|
|
|
2131
2131
|
Asc = "Asc",
|
|
2132
2132
|
Desc = "Desc"
|
|
2133
2133
|
}
|
|
2134
|
-
export
|
|
2134
|
+
export type TTable = {
|
|
2135
2135
|
__typename?: 'Table';
|
|
2136
2136
|
createdAt: Scalars['DateTime'];
|
|
2137
2137
|
id: Scalars['ID'];
|
|
2138
2138
|
updatedAt: Scalars['DateTime'];
|
|
2139
2139
|
visibleColumns: Array<Scalars['String']>;
|
|
2140
2140
|
};
|
|
2141
|
-
export
|
|
2141
|
+
export type TTopProductsConfiguration = {
|
|
2142
2142
|
__typename?: 'TopProductsConfiguration';
|
|
2143
2143
|
bestSellingLimit: TBestSellingLimit;
|
|
2144
2144
|
createdAt: Scalars['DateTime'];
|
|
2145
2145
|
id: Scalars['ID'];
|
|
2146
2146
|
updatedAt: Scalars['DateTime'];
|
|
2147
2147
|
};
|
|
2148
|
-
export
|
|
2148
|
+
export type TTopProductsConfigurationInput = {
|
|
2149
2149
|
bestSellingLimit?: InputMaybe<TBestSellingLimit>;
|
|
2150
2150
|
};
|
|
2151
|
-
export
|
|
2151
|
+
export type TTopProductsConfigurationWhereInput = {
|
|
2152
2152
|
AND?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2153
2153
|
NOT?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2154
2154
|
OR?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
@@ -2187,7 +2187,7 @@ export declare type TTopProductsConfigurationWhereInput = {
|
|
|
2187
2187
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2188
2188
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2189
2189
|
};
|
|
2190
|
-
export
|
|
2190
|
+
export type TTotalOrdersConfiguration = {
|
|
2191
2191
|
__typename?: 'TotalOrdersConfiguration';
|
|
2192
2192
|
createdAt: Scalars['DateTime'];
|
|
2193
2193
|
dateFilterType: TDateFilterType;
|
|
@@ -2198,14 +2198,14 @@ export declare type TTotalOrdersConfiguration = {
|
|
|
2198
2198
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2199
2199
|
updatedAt: Scalars['DateTime'];
|
|
2200
2200
|
};
|
|
2201
|
-
export
|
|
2201
|
+
export type TTotalOrdersConfigurationInput = {
|
|
2202
2202
|
dateFilterType: TDateFilterType;
|
|
2203
2203
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2204
2204
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2205
2205
|
productId?: InputMaybe<Scalars['String']>;
|
|
2206
2206
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2207
2207
|
};
|
|
2208
|
-
export
|
|
2208
|
+
export type TTotalOrdersConfigurationWhereInput = {
|
|
2209
2209
|
AND?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2210
2210
|
NOT?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2211
2211
|
OR?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
@@ -2276,17 +2276,17 @@ export declare type TTotalOrdersConfigurationWhereInput = {
|
|
|
2276
2276
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2277
2277
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2278
2278
|
};
|
|
2279
|
-
export
|
|
2279
|
+
export type TTotalSalesConfiguration = {
|
|
2280
2280
|
__typename?: 'TotalSalesConfiguration';
|
|
2281
2281
|
createdAt: Scalars['DateTime'];
|
|
2282
2282
|
id: Scalars['ID'];
|
|
2283
2283
|
productId?: Maybe<Scalars['String']>;
|
|
2284
2284
|
updatedAt: Scalars['DateTime'];
|
|
2285
2285
|
};
|
|
2286
|
-
export
|
|
2286
|
+
export type TTotalSalesConfigurationInput = {
|
|
2287
2287
|
productId?: InputMaybe<Scalars['String']>;
|
|
2288
2288
|
};
|
|
2289
|
-
export
|
|
2289
|
+
export type TTotalSalesConfigurationWhereInput = {
|
|
2290
2290
|
AND?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2291
2291
|
NOT?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2292
2292
|
OR?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
@@ -2335,7 +2335,7 @@ export declare type TTotalSalesConfigurationWhereInput = {
|
|
|
2335
2335
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2336
2336
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2337
2337
|
};
|
|
2338
|
-
export
|
|
2338
|
+
export type TVariantPricesListView = {
|
|
2339
2339
|
__typename?: 'VariantPricesListView';
|
|
2340
2340
|
createdAt: Scalars['DateTime'];
|
|
2341
2341
|
id: Scalars['ID'];
|
|
@@ -2345,13 +2345,13 @@ export declare type TVariantPricesListView = {
|
|
|
2345
2345
|
userId: Scalars['String'];
|
|
2346
2346
|
visibleColumns: Array<Scalars['String']>;
|
|
2347
2347
|
};
|
|
2348
|
-
export
|
|
2348
|
+
export type TVariantPricesListViewInput = {
|
|
2349
2349
|
visibleColumns: Array<Scalars['String']>;
|
|
2350
2350
|
};
|
|
2351
|
-
export
|
|
2351
|
+
export type TFetchProjectExtensionImageRegexQueryVariables = Exact<{
|
|
2352
2352
|
[key: string]: never;
|
|
2353
2353
|
}>;
|
|
2354
|
-
export
|
|
2354
|
+
export type TFetchProjectExtensionImageRegexQuery = {
|
|
2355
2355
|
__typename?: 'Query';
|
|
2356
2356
|
projectExtension?: {
|
|
2357
2357
|
__typename?: 'ProjectExtension';
|
|
@@ -2373,16 +2373,16 @@ export declare type TFetchProjectExtensionImageRegexQuery = {
|
|
|
2373
2373
|
} | null;
|
|
2374
2374
|
} | null;
|
|
2375
2375
|
};
|
|
2376
|
-
export
|
|
2376
|
+
export type TImageRegexFragment = {
|
|
2377
2377
|
__typename?: 'ImageRegexOptions';
|
|
2378
2378
|
flag?: string | null;
|
|
2379
2379
|
search: string;
|
|
2380
2380
|
replace: string;
|
|
2381
2381
|
};
|
|
2382
|
-
export
|
|
2382
|
+
export type TFetchProjectExtensionsNavbarQueryVariables = Exact<{
|
|
2383
2383
|
[key: string]: never;
|
|
2384
2384
|
}>;
|
|
2385
|
-
export
|
|
2385
|
+
export type TFetchProjectExtensionsNavbarQuery = {
|
|
2386
2386
|
__typename?: 'Query';
|
|
2387
2387
|
projectExtension?: {
|
|
2388
2388
|
__typename?: 'ProjectExtension';
|
|
@@ -2452,21 +2452,21 @@ export declare type TFetchProjectExtensionsNavbarQuery = {
|
|
|
2452
2452
|
}> | null;
|
|
2453
2453
|
} | null;
|
|
2454
2454
|
};
|
|
2455
|
-
export
|
|
2455
|
+
export type TCreateCustomApplicationFromCliMutationVariables = Exact<{
|
|
2456
2456
|
organizationId: Scalars['String'];
|
|
2457
2457
|
data: TCustomApplicationDraftDataInput;
|
|
2458
2458
|
}>;
|
|
2459
|
-
export
|
|
2459
|
+
export type TCreateCustomApplicationFromCliMutation = {
|
|
2460
2460
|
__typename?: 'Mutation';
|
|
2461
2461
|
createCustomApplication?: {
|
|
2462
2462
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
2463
2463
|
id: string;
|
|
2464
2464
|
} | null;
|
|
2465
2465
|
};
|
|
2466
|
-
export
|
|
2466
|
+
export type TFetchCustomApplicationFromCliQueryVariables = Exact<{
|
|
2467
2467
|
entryPointUriPath: Scalars['String'];
|
|
2468
2468
|
}>;
|
|
2469
|
-
export
|
|
2469
|
+
export type TFetchCustomApplicationFromCliQuery = {
|
|
2470
2470
|
__typename?: 'Query';
|
|
2471
2471
|
organizationExtensionForCustomApplication?: {
|
|
2472
2472
|
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
@@ -2508,12 +2508,12 @@ export declare type TFetchCustomApplicationFromCliQuery = {
|
|
|
2508
2508
|
};
|
|
2509
2509
|
} | null;
|
|
2510
2510
|
};
|
|
2511
|
-
export
|
|
2511
|
+
export type TUpdateCustomApplicationFromCliMutationVariables = Exact<{
|
|
2512
2512
|
organizationId: Scalars['String'];
|
|
2513
2513
|
data: TCustomApplicationDraftDataInput;
|
|
2514
2514
|
applicationId: Scalars['ID'];
|
|
2515
2515
|
}>;
|
|
2516
|
-
export
|
|
2516
|
+
export type TUpdateCustomApplicationFromCliMutation = {
|
|
2517
2517
|
__typename?: 'Mutation';
|
|
2518
2518
|
updateCustomApplication?: {
|
|
2519
2519
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|