@commercetools-frontend/application-shell-connectors 21.23.6 → 21.23.8
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/dist/commercetools-frontend-application-shell-connectors.cjs.dev.js +1 -1
- package/dist/commercetools-frontend-application-shell-connectors.cjs.prod.js +1 -1
- package/dist/commercetools-frontend-application-shell-connectors.esm.js +1 -1
- package/dist/declarations/src/components/application-context/application-context.d.ts +14 -14
- package/dist/declarations/src/components/application-context/index.d.ts +6 -6
- package/dist/declarations/src/components/application-context/normalizers.d.ts +9 -9
- package/dist/declarations/src/components/project-extension-image-regex/index.d.ts +1 -1
- package/dist/declarations/src/components/project-extension-image-regex/project-extension-image-regex.d.ts +3 -3
- package/dist/declarations/src/export-types.d.ts +7 -7
- package/dist/declarations/src/types/generated/mc.d.ts +103 -103
- package/dist/declarations/src/types/generated/settings.d.ts +248 -248
- package/package.json +10 -10
|
@@ -1,17 +1,17 @@
|
|
|
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
|
-
export
|
|
14
|
+
export type Scalars = {
|
|
15
15
|
ID: string;
|
|
16
16
|
String: string;
|
|
17
17
|
Boolean: boolean;
|
|
@@ -22,7 +22,7 @@ export declare type Scalars = {
|
|
|
22
22
|
[key: string]: unknown;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
-
export
|
|
25
|
+
export type TApplicationExtension = {
|
|
26
26
|
__typename?: 'ApplicationExtension';
|
|
27
27
|
createdAt: Scalars['DateTime'];
|
|
28
28
|
description?: Maybe<Scalars['String']>;
|
|
@@ -34,14 +34,14 @@ export declare type TApplicationExtension = {
|
|
|
34
34
|
updatedAt: Scalars['DateTime'];
|
|
35
35
|
url: Scalars['String'];
|
|
36
36
|
};
|
|
37
|
-
export
|
|
37
|
+
export type TApplicationExtensionDataInput = {
|
|
38
38
|
description?: InputMaybe<Scalars['String']>;
|
|
39
39
|
name: Scalars['String'];
|
|
40
40
|
navbarMenu: TApplicationExtensionNavbarMenuDataInput;
|
|
41
41
|
oAuthScopes?: InputMaybe<Array<Scalars['String']>>;
|
|
42
42
|
url: Scalars['String'];
|
|
43
43
|
};
|
|
44
|
-
export
|
|
44
|
+
export type TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport = {
|
|
45
45
|
__typename?: 'ApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport';
|
|
46
46
|
entryPointUriPath: Scalars['String'];
|
|
47
47
|
id: Scalars['ID'];
|
|
@@ -50,14 +50,14 @@ export declare type TApplicationExtensionInfoForLegacyCustomApplicationsMigratio
|
|
|
50
50
|
name: Scalars['String'];
|
|
51
51
|
url: Scalars['String'];
|
|
52
52
|
};
|
|
53
|
-
export
|
|
53
|
+
export type TApplicationExtensionMigrationMatchingScore = {
|
|
54
54
|
__typename?: 'ApplicationExtensionMigrationMatchingScore';
|
|
55
55
|
applicationId: Scalars['String'];
|
|
56
56
|
matchByEntryPointUriPath: TMigrationMatchingScore;
|
|
57
57
|
matchByName: TMigrationMatchingScore;
|
|
58
58
|
matchByUrl: TMigrationMatchingScore;
|
|
59
59
|
};
|
|
60
|
-
export
|
|
60
|
+
export type TApplicationExtensionNavbarMenuDataInput = {
|
|
61
61
|
featureToggle?: InputMaybe<Scalars['String']>;
|
|
62
62
|
icon: Scalars['String'];
|
|
63
63
|
key: Scalars['String'];
|
|
@@ -66,14 +66,14 @@ export declare type TApplicationExtensionNavbarMenuDataInput = {
|
|
|
66
66
|
submenu: Array<TApplicationExtensionNavbarSubmenuDataInput>;
|
|
67
67
|
uriPath: Scalars['String'];
|
|
68
68
|
};
|
|
69
|
-
export
|
|
69
|
+
export type TApplicationExtensionNavbarSubmenuDataInput = {
|
|
70
70
|
featureToggle?: InputMaybe<Scalars['String']>;
|
|
71
71
|
key: Scalars['String'];
|
|
72
72
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
73
73
|
permissions: Array<TOAuthScope>;
|
|
74
74
|
uriPath: Scalars['String'];
|
|
75
75
|
};
|
|
76
|
-
export
|
|
76
|
+
export type TApplicationInfoForLegacyCustomApplicationsMigrationReport = {
|
|
77
77
|
__typename?: 'ApplicationInfoForLegacyCustomApplicationsMigrationReport';
|
|
78
78
|
entryPointUriPath: Scalars['String'];
|
|
79
79
|
id: Scalars['ID'];
|
|
@@ -97,17 +97,17 @@ export declare enum TAuthPermission {
|
|
|
97
97
|
ViewSomeDiscounts = "viewSomeDiscounts",
|
|
98
98
|
ViewUsersAndOrganizations = "viewUsersAndOrganizations"
|
|
99
99
|
}
|
|
100
|
-
export
|
|
100
|
+
export type TAverageOrderValueConfiguration = {
|
|
101
101
|
__typename?: 'AverageOrderValueConfiguration';
|
|
102
102
|
createdAt: Scalars['DateTime'];
|
|
103
103
|
id: Scalars['ID'];
|
|
104
104
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
105
105
|
updatedAt: Scalars['DateTime'];
|
|
106
106
|
};
|
|
107
|
-
export
|
|
107
|
+
export type TAverageOrderValueConfigurationInput = {
|
|
108
108
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
109
109
|
};
|
|
110
|
-
export
|
|
110
|
+
export type TAverageOrderValueConfigurationWhereInput = {
|
|
111
111
|
AND?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
112
112
|
NOT?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
113
113
|
OR?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
@@ -154,7 +154,7 @@ export declare enum TCategoryRecommendationSearchProperty {
|
|
|
154
154
|
MachineLearning = "MachineLearning",
|
|
155
155
|
ProductType = "ProductType"
|
|
156
156
|
}
|
|
157
|
-
export
|
|
157
|
+
export type TCategoryRecommendationSettings = {
|
|
158
158
|
__typename?: 'CategoryRecommendationSettings';
|
|
159
159
|
attributeName?: Maybe<Scalars['String']>;
|
|
160
160
|
createdAt: Scalars['DateTime'];
|
|
@@ -162,11 +162,11 @@ export declare type TCategoryRecommendationSettings = {
|
|
|
162
162
|
searchProperty: TCategoryRecommendationSearchProperty;
|
|
163
163
|
updatedAt: Scalars['DateTime'];
|
|
164
164
|
};
|
|
165
|
-
export
|
|
165
|
+
export type TCategoryRecommendationSettingsDataInput = {
|
|
166
166
|
attributeName?: InputMaybe<Scalars['String']>;
|
|
167
167
|
searchProperty: TCategoryRecommendationSearchProperty;
|
|
168
168
|
};
|
|
169
|
-
export
|
|
169
|
+
export type TContactInformation = {
|
|
170
170
|
__typename?: 'ContactInformation';
|
|
171
171
|
createdAt: Scalars['DateTime'];
|
|
172
172
|
email: Scalars['String'];
|
|
@@ -174,10 +174,10 @@ export declare type TContactInformation = {
|
|
|
174
174
|
updatedAt: Scalars['DateTime'];
|
|
175
175
|
verifiedEmail?: Maybe<Scalars['String']>;
|
|
176
176
|
};
|
|
177
|
-
export
|
|
177
|
+
export type TContactInformationDataInput = {
|
|
178
178
|
email: Scalars['String'];
|
|
179
179
|
};
|
|
180
|
-
export
|
|
180
|
+
export type TCustomApplication = {
|
|
181
181
|
__typename?: 'CustomApplication';
|
|
182
182
|
createdAt: Scalars['DateTime'];
|
|
183
183
|
description?: Maybe<Scalars['String']>;
|
|
@@ -195,7 +195,7 @@ export declare type TCustomApplication = {
|
|
|
195
195
|
updatedAt: Scalars['DateTime'];
|
|
196
196
|
url: Scalars['String'];
|
|
197
197
|
};
|
|
198
|
-
export
|
|
198
|
+
export type TCustomApplicationDraftDataInput = {
|
|
199
199
|
description?: InputMaybe<Scalars['String']>;
|
|
200
200
|
entryPointUriPath: Scalars['String'];
|
|
201
201
|
icon: Scalars['String'];
|
|
@@ -205,7 +205,7 @@ export declare type TCustomApplicationDraftDataInput = {
|
|
|
205
205
|
submenuLinks: Array<TCustomApplicationSubmenuLinkDraftDataInput>;
|
|
206
206
|
url: Scalars['String'];
|
|
207
207
|
};
|
|
208
|
-
export
|
|
208
|
+
export type TCustomApplicationInstallation = {
|
|
209
209
|
__typename?: 'CustomApplicationInstallation';
|
|
210
210
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
211
211
|
createdAt: Scalars['DateTime'];
|
|
@@ -216,7 +216,7 @@ export declare type TCustomApplicationInstallation = {
|
|
|
216
216
|
projects?: Maybe<Array<TProjectExtension>>;
|
|
217
217
|
updatedAt: Scalars['DateTime'];
|
|
218
218
|
};
|
|
219
|
-
export
|
|
219
|
+
export type TCustomApplicationInstallationPermission = {
|
|
220
220
|
__typename?: 'CustomApplicationInstallationPermission';
|
|
221
221
|
createdAt: Scalars['DateTime'];
|
|
222
222
|
id: Scalars['ID'];
|
|
@@ -224,7 +224,7 @@ export declare type TCustomApplicationInstallationPermission = {
|
|
|
224
224
|
oAuthScopes: Array<Scalars['String']>;
|
|
225
225
|
updatedAt: Scalars['DateTime'];
|
|
226
226
|
};
|
|
227
|
-
export
|
|
227
|
+
export type TCustomApplicationMenuLink = {
|
|
228
228
|
__typename?: 'CustomApplicationMenuLink';
|
|
229
229
|
createdAt: Scalars['DateTime'];
|
|
230
230
|
defaultLabel: Scalars['String'];
|
|
@@ -236,12 +236,12 @@ export declare type TCustomApplicationMenuLink = {
|
|
|
236
236
|
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
237
237
|
updatedAt: Scalars['DateTime'];
|
|
238
238
|
};
|
|
239
|
-
export
|
|
239
|
+
export type TCustomApplicationMenuLinkDraftDataInput = {
|
|
240
240
|
defaultLabel: Scalars['String'];
|
|
241
241
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
242
242
|
permissions: Array<Scalars['String']>;
|
|
243
243
|
};
|
|
244
|
-
export
|
|
244
|
+
export type TCustomApplicationPermission = {
|
|
245
245
|
__typename?: 'CustomApplicationPermission';
|
|
246
246
|
createdAt: Scalars['DateTime'];
|
|
247
247
|
id: Scalars['ID'];
|
|
@@ -249,17 +249,17 @@ export declare type TCustomApplicationPermission = {
|
|
|
249
249
|
oAuthScopes: Array<Scalars['String']>;
|
|
250
250
|
updatedAt: Scalars['DateTime'];
|
|
251
251
|
};
|
|
252
|
-
export
|
|
252
|
+
export type TCustomApplicationPermissionDataInput = {
|
|
253
253
|
name: Scalars['String'];
|
|
254
254
|
oAuthScopes: Array<Scalars['String']>;
|
|
255
255
|
};
|
|
256
|
-
export
|
|
256
|
+
export type TCustomApplicationQueryInput = {
|
|
257
257
|
limit?: InputMaybe<Scalars['Int']>;
|
|
258
258
|
offset?: InputMaybe<Scalars['Int']>;
|
|
259
259
|
sort?: InputMaybe<Scalars['String']>;
|
|
260
260
|
where?: InputMaybe<TCustomApplicationQueryWhereInput>;
|
|
261
261
|
};
|
|
262
|
-
export
|
|
262
|
+
export type TCustomApplicationQueryWhereInput = {
|
|
263
263
|
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
264
264
|
id?: InputMaybe<Scalars['ID']>;
|
|
265
265
|
name?: InputMaybe<Scalars['String']>;
|
|
@@ -269,7 +269,7 @@ export declare enum TCustomApplicationStatus {
|
|
|
269
269
|
Draft = "DRAFT",
|
|
270
270
|
PrivateUsage = "PRIVATE_USAGE"
|
|
271
271
|
}
|
|
272
|
-
export
|
|
272
|
+
export type TCustomApplicationSubmenuLink = {
|
|
273
273
|
__typename?: 'CustomApplicationSubmenuLink';
|
|
274
274
|
createdAt: Scalars['DateTime'];
|
|
275
275
|
defaultLabel: Scalars['String'];
|
|
@@ -279,21 +279,21 @@ export declare type TCustomApplicationSubmenuLink = {
|
|
|
279
279
|
updatedAt: Scalars['DateTime'];
|
|
280
280
|
uriPath: Scalars['String'];
|
|
281
281
|
};
|
|
282
|
-
export
|
|
282
|
+
export type TCustomApplicationSubmenuLinkDraftDataInput = {
|
|
283
283
|
defaultLabel: Scalars['String'];
|
|
284
284
|
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
285
285
|
permissions: Array<Scalars['String']>;
|
|
286
286
|
uriPath: Scalars['String'];
|
|
287
287
|
};
|
|
288
|
-
export
|
|
288
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationConfirmation = {
|
|
289
289
|
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationConfirmation';
|
|
290
290
|
organizationId: Scalars['ID'];
|
|
291
291
|
};
|
|
292
|
-
export
|
|
292
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationRequest = {
|
|
293
293
|
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationRequest';
|
|
294
294
|
token?: Maybe<Scalars['String']>;
|
|
295
295
|
};
|
|
296
|
-
export
|
|
296
|
+
export type TCustomApplicationsPagedQueryResult = {
|
|
297
297
|
__typename?: 'CustomApplicationsPagedQueryResult';
|
|
298
298
|
count: Scalars['Int'];
|
|
299
299
|
limit: Scalars['Int'];
|
|
@@ -301,7 +301,7 @@ export declare type TCustomApplicationsPagedQueryResult = {
|
|
|
301
301
|
results: Array<TCustomApplication>;
|
|
302
302
|
total: Scalars['Int'];
|
|
303
303
|
};
|
|
304
|
-
export
|
|
304
|
+
export type TCustomersListView = {
|
|
305
305
|
__typename?: 'CustomersListView';
|
|
306
306
|
createdAt: Scalars['DateTime'];
|
|
307
307
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -316,7 +316,7 @@ export declare type TCustomersListView = {
|
|
|
316
316
|
updatedAt: Scalars['DateTime'];
|
|
317
317
|
userId: Scalars['String'];
|
|
318
318
|
};
|
|
319
|
-
export
|
|
319
|
+
export type TCustomersListView_FiltersArgs = {
|
|
320
320
|
after?: InputMaybe<Scalars['String']>;
|
|
321
321
|
before?: InputMaybe<Scalars['String']>;
|
|
322
322
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -325,7 +325,7 @@ export declare type TCustomersListView_FiltersArgs = {
|
|
|
325
325
|
skip?: InputMaybe<Scalars['Int']>;
|
|
326
326
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
327
327
|
};
|
|
328
|
-
export
|
|
328
|
+
export type TCustomersListView_NameAllLocalesArgs = {
|
|
329
329
|
after?: InputMaybe<Scalars['String']>;
|
|
330
330
|
before?: InputMaybe<Scalars['String']>;
|
|
331
331
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -334,17 +334,17 @@ export declare type TCustomersListView_NameAllLocalesArgs = {
|
|
|
334
334
|
skip?: InputMaybe<Scalars['Int']>;
|
|
335
335
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
336
336
|
};
|
|
337
|
-
export
|
|
337
|
+
export type TCustomersListViewInput = {
|
|
338
338
|
filters: Array<TFilterValuesCreateInput>;
|
|
339
339
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
340
340
|
search?: InputMaybe<Scalars['String']>;
|
|
341
341
|
sort: TSortCreateInput;
|
|
342
342
|
table?: InputMaybe<TCustomersListViewTableInput>;
|
|
343
343
|
};
|
|
344
|
-
export
|
|
344
|
+
export type TCustomersListViewTableInput = {
|
|
345
345
|
visibleColumns: Array<Scalars['String']>;
|
|
346
346
|
};
|
|
347
|
-
export
|
|
347
|
+
export type TDashboardView = {
|
|
348
348
|
__typename?: 'DashboardView';
|
|
349
349
|
createdAt: Scalars['DateTime'];
|
|
350
350
|
currencyCode?: Maybe<Scalars['String']>;
|
|
@@ -358,7 +358,7 @@ export declare type TDashboardView = {
|
|
|
358
358
|
updatedAt: Scalars['DateTime'];
|
|
359
359
|
userId: Scalars['String'];
|
|
360
360
|
};
|
|
361
|
-
export
|
|
361
|
+
export type TDashboardView_LayoutArgs = {
|
|
362
362
|
after?: InputMaybe<Scalars['String']>;
|
|
363
363
|
before?: InputMaybe<Scalars['String']>;
|
|
364
364
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -367,7 +367,7 @@ export declare type TDashboardView_LayoutArgs = {
|
|
|
367
367
|
skip?: InputMaybe<Scalars['Int']>;
|
|
368
368
|
where?: InputMaybe<TLayoutCardWhereInput>;
|
|
369
369
|
};
|
|
370
|
-
export
|
|
370
|
+
export type TDashboardView_NameAllLocalesArgs = {
|
|
371
371
|
after?: InputMaybe<Scalars['String']>;
|
|
372
372
|
before?: InputMaybe<Scalars['String']>;
|
|
373
373
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -376,7 +376,7 @@ export declare type TDashboardView_NameAllLocalesArgs = {
|
|
|
376
376
|
skip?: InputMaybe<Scalars['Int']>;
|
|
377
377
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
378
378
|
};
|
|
379
|
-
export
|
|
379
|
+
export type TDashboardViewInput = {
|
|
380
380
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
381
381
|
layout: Array<TLayoutCardInput>;
|
|
382
382
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -395,7 +395,7 @@ export declare enum TDiscountType {
|
|
|
395
395
|
DiscountCode = "DiscountCode",
|
|
396
396
|
ProductDiscount = "ProductDiscount"
|
|
397
397
|
}
|
|
398
|
-
export
|
|
398
|
+
export type TDiscountsCustomView = {
|
|
399
399
|
__typename?: 'DiscountsCustomView';
|
|
400
400
|
createdAt: Scalars['DateTime'];
|
|
401
401
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -411,7 +411,7 @@ export declare type TDiscountsCustomView = {
|
|
|
411
411
|
updatedAt: Scalars['DateTime'];
|
|
412
412
|
userId: Scalars['String'];
|
|
413
413
|
};
|
|
414
|
-
export
|
|
414
|
+
export type TDiscountsCustomView_FiltersArgs = {
|
|
415
415
|
after?: InputMaybe<Scalars['String']>;
|
|
416
416
|
before?: InputMaybe<Scalars['String']>;
|
|
417
417
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -420,7 +420,7 @@ export declare type TDiscountsCustomView_FiltersArgs = {
|
|
|
420
420
|
skip?: InputMaybe<Scalars['Int']>;
|
|
421
421
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
422
422
|
};
|
|
423
|
-
export
|
|
423
|
+
export type TDiscountsCustomView_NameAllLocalesArgs = {
|
|
424
424
|
after?: InputMaybe<Scalars['String']>;
|
|
425
425
|
before?: InputMaybe<Scalars['String']>;
|
|
426
426
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -429,7 +429,7 @@ export declare type TDiscountsCustomView_NameAllLocalesArgs = {
|
|
|
429
429
|
skip?: InputMaybe<Scalars['Int']>;
|
|
430
430
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
431
431
|
};
|
|
432
|
-
export
|
|
432
|
+
export type TDiscountsCustomViewInput = {
|
|
433
433
|
filters: Array<TFilterValuesCreateInput>;
|
|
434
434
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
435
435
|
search?: InputMaybe<Scalars['String']>;
|
|
@@ -451,7 +451,7 @@ export declare enum TFilterType {
|
|
|
451
451
|
MoreThan = "MoreThan",
|
|
452
452
|
Range = "Range"
|
|
453
453
|
}
|
|
454
|
-
export
|
|
454
|
+
export type TFilterValues = {
|
|
455
455
|
__typename?: 'FilterValues';
|
|
456
456
|
createdAt: Scalars['DateTime'];
|
|
457
457
|
id: Scalars['ID'];
|
|
@@ -460,7 +460,7 @@ export declare type TFilterValues = {
|
|
|
460
460
|
type: TFilterType;
|
|
461
461
|
updatedAt: Scalars['DateTime'];
|
|
462
462
|
};
|
|
463
|
-
export
|
|
463
|
+
export type TFilterValuesCreateInput = {
|
|
464
464
|
id?: InputMaybe<Scalars['ID']>;
|
|
465
465
|
json: Scalars['Json'];
|
|
466
466
|
target: Scalars['String'];
|
|
@@ -480,7 +480,7 @@ export declare enum TFilterValuesOrderByInput {
|
|
|
480
480
|
UpdatedAtAsc = "updatedAt_ASC",
|
|
481
481
|
UpdatedAtDesc = "updatedAt_DESC"
|
|
482
482
|
}
|
|
483
|
-
export
|
|
483
|
+
export type TFilterValuesWhereInput = {
|
|
484
484
|
AND?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
485
485
|
NOT?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
486
486
|
OR?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
@@ -533,7 +533,7 @@ export declare type TFilterValuesWhereInput = {
|
|
|
533
533
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
534
534
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
535
535
|
};
|
|
536
|
-
export
|
|
536
|
+
export type TImageRegex = {
|
|
537
537
|
__typename?: 'ImageRegex';
|
|
538
538
|
createdAt: Scalars['DateTime'];
|
|
539
539
|
id: Scalars['ID'];
|
|
@@ -541,22 +541,22 @@ export declare type TImageRegex = {
|
|
|
541
541
|
thumb?: Maybe<TImageRegexOptions>;
|
|
542
542
|
updatedAt: Scalars['DateTime'];
|
|
543
543
|
};
|
|
544
|
-
export
|
|
544
|
+
export type TImageRegexDataInput = {
|
|
545
545
|
small?: InputMaybe<TImageRegexOptionsInput>;
|
|
546
546
|
thumb?: InputMaybe<TImageRegexOptionsInput>;
|
|
547
547
|
};
|
|
548
|
-
export
|
|
548
|
+
export type TImageRegexOptions = {
|
|
549
549
|
__typename?: 'ImageRegexOptions';
|
|
550
550
|
flag?: Maybe<Scalars['String']>;
|
|
551
551
|
replace: Scalars['String'];
|
|
552
552
|
search: Scalars['String'];
|
|
553
553
|
};
|
|
554
|
-
export
|
|
554
|
+
export type TImageRegexOptionsInput = {
|
|
555
555
|
flag?: InputMaybe<Scalars['String']>;
|
|
556
556
|
replace: Scalars['String'];
|
|
557
557
|
search: Scalars['String'];
|
|
558
558
|
};
|
|
559
|
-
export
|
|
559
|
+
export type TLayoutCard = {
|
|
560
560
|
__typename?: 'LayoutCard';
|
|
561
561
|
averageOrderValueConfiguration?: Maybe<TAverageOrderValueConfiguration>;
|
|
562
562
|
createdAt: Scalars['DateTime'];
|
|
@@ -580,7 +580,7 @@ export declare type TLayoutCard = {
|
|
|
580
580
|
xPosition: Scalars['Int'];
|
|
581
581
|
yPosition: Scalars['Int'];
|
|
582
582
|
};
|
|
583
|
-
export
|
|
583
|
+
export type TLayoutCard_NameAllLocalesArgs = {
|
|
584
584
|
after?: InputMaybe<Scalars['String']>;
|
|
585
585
|
before?: InputMaybe<Scalars['String']>;
|
|
586
586
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -589,7 +589,7 @@ export declare type TLayoutCard_NameAllLocalesArgs = {
|
|
|
589
589
|
skip?: InputMaybe<Scalars['Int']>;
|
|
590
590
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
591
591
|
};
|
|
592
|
-
export
|
|
592
|
+
export type TLayoutCardInput = {
|
|
593
593
|
averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationInput>;
|
|
594
594
|
height: Scalars['Int'];
|
|
595
595
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -636,7 +636,7 @@ export declare enum TLayoutCardOrderByInput {
|
|
|
636
636
|
YPositionAsc = "yPosition_ASC",
|
|
637
637
|
YPositionDesc = "yPosition_DESC"
|
|
638
638
|
}
|
|
639
|
-
export
|
|
639
|
+
export type TLayoutCardWhereInput = {
|
|
640
640
|
AND?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
641
641
|
NOT?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
642
642
|
OR?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
@@ -749,7 +749,7 @@ export declare type TLayoutCardWhereInput = {
|
|
|
749
749
|
yPosition_not?: InputMaybe<Scalars['Int']>;
|
|
750
750
|
yPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
751
751
|
};
|
|
752
|
-
export
|
|
752
|
+
export type TLegacyCustomApplication = {
|
|
753
753
|
__typename?: 'LegacyCustomApplication';
|
|
754
754
|
createdAt: Scalars['DateTime'];
|
|
755
755
|
description?: Maybe<Scalars['String']>;
|
|
@@ -762,19 +762,19 @@ export declare type TLegacyCustomApplication = {
|
|
|
762
762
|
updatedAt: Scalars['DateTime'];
|
|
763
763
|
url: Scalars['String'];
|
|
764
764
|
};
|
|
765
|
-
export
|
|
765
|
+
export type TLegacyCustomApplicationQueryInput = {
|
|
766
766
|
limit?: InputMaybe<Scalars['Int']>;
|
|
767
767
|
offset?: InputMaybe<Scalars['Int']>;
|
|
768
768
|
sort?: InputMaybe<Scalars['String']>;
|
|
769
769
|
where?: InputMaybe<TLegacyCustomApplicationQueryWhereInput>;
|
|
770
770
|
};
|
|
771
|
-
export
|
|
771
|
+
export type TLegacyCustomApplicationQueryWhereInput = {
|
|
772
772
|
id?: InputMaybe<Scalars['ID']>;
|
|
773
773
|
name?: InputMaybe<Scalars['String']>;
|
|
774
774
|
projectKey?: InputMaybe<Scalars['String']>;
|
|
775
775
|
uriPath?: InputMaybe<Scalars['String']>;
|
|
776
776
|
};
|
|
777
|
-
export
|
|
777
|
+
export type TLegacyCustomApplicationsMigrationReport = {
|
|
778
778
|
__typename?: 'LegacyCustomApplicationsMigrationReport';
|
|
779
779
|
applications: Array<TApplicationInfoForLegacyCustomApplicationsMigrationReport>;
|
|
780
780
|
organizationExtensionId?: Maybe<Scalars['ID']>;
|
|
@@ -782,7 +782,7 @@ export declare type TLegacyCustomApplicationsMigrationReport = {
|
|
|
782
782
|
organizationName?: Maybe<Scalars['String']>;
|
|
783
783
|
projects: Array<TProjectInfoForLegacyCustomApplicationsMigrationReport>;
|
|
784
784
|
};
|
|
785
|
-
export
|
|
785
|
+
export type TLegacyCustomApplicationsPagedQueryResult = {
|
|
786
786
|
__typename?: 'LegacyCustomApplicationsPagedQueryResult';
|
|
787
787
|
count: Scalars['Int'];
|
|
788
788
|
limit: Scalars['Int'];
|
|
@@ -790,17 +790,17 @@ export declare type TLegacyCustomApplicationsPagedQueryResult = {
|
|
|
790
790
|
results: Array<TLegacyCustomApplication>;
|
|
791
791
|
total: Scalars['Int'];
|
|
792
792
|
};
|
|
793
|
-
export
|
|
793
|
+
export type TLocalizedField = {
|
|
794
794
|
__typename?: 'LocalizedField';
|
|
795
795
|
locale: Scalars['String'];
|
|
796
796
|
value: Scalars['String'];
|
|
797
797
|
};
|
|
798
|
-
export
|
|
798
|
+
export type TLocalizedFieldCreateInput = {
|
|
799
799
|
id?: InputMaybe<Scalars['ID']>;
|
|
800
800
|
locale: Scalars['String'];
|
|
801
801
|
value: Scalars['String'];
|
|
802
802
|
};
|
|
803
|
-
export
|
|
803
|
+
export type TLocalizedFieldDataInput = {
|
|
804
804
|
locale: Scalars['String'];
|
|
805
805
|
value: Scalars['String'];
|
|
806
806
|
};
|
|
@@ -816,7 +816,7 @@ export declare enum TLocalizedFieldOrderByInput {
|
|
|
816
816
|
ValueAsc = "value_ASC",
|
|
817
817
|
ValueDesc = "value_DESC"
|
|
818
818
|
}
|
|
819
|
-
export
|
|
819
|
+
export type TLocalizedFieldWhereInput = {
|
|
820
820
|
AND?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
821
821
|
NOT?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
822
822
|
OR?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
@@ -888,20 +888,20 @@ export declare enum TMetricCardType {
|
|
|
888
888
|
TotalOrders = "TOTAL_ORDERS",
|
|
889
889
|
TotalSales = "TOTAL_SALES"
|
|
890
890
|
}
|
|
891
|
-
export
|
|
891
|
+
export type TMigrationMatchingScore = {
|
|
892
892
|
__typename?: 'MigrationMatchingScore';
|
|
893
893
|
matchFrom: Scalars['String'];
|
|
894
894
|
matchTo: Scalars['String'];
|
|
895
895
|
score: Scalars['Float'];
|
|
896
896
|
};
|
|
897
|
-
export
|
|
897
|
+
export type TMigrationResult = {
|
|
898
898
|
__typename?: 'MigrationResult';
|
|
899
899
|
failed: Scalars['Int'];
|
|
900
900
|
failedIds?: Maybe<Array<Scalars['ID']>>;
|
|
901
901
|
skipped: Scalars['Int'];
|
|
902
902
|
succeeded: Scalars['Int'];
|
|
903
903
|
};
|
|
904
|
-
export
|
|
904
|
+
export type TMutation = {
|
|
905
905
|
__typename?: 'Mutation';
|
|
906
906
|
activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
907
907
|
activateCustomersListView?: Maybe<TCustomersListView>;
|
|
@@ -987,312 +987,312 @@ export declare type TMutation = {
|
|
|
987
987
|
updateVariantPricesListView?: Maybe<TVariantPricesListView>;
|
|
988
988
|
verifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationConfirmation>;
|
|
989
989
|
};
|
|
990
|
-
export
|
|
990
|
+
export type TMutation_ActivateCartDiscountsCustomViewArgs = {
|
|
991
991
|
id: Scalars['ID'];
|
|
992
992
|
};
|
|
993
|
-
export
|
|
993
|
+
export type TMutation_ActivateCustomersListViewArgs = {
|
|
994
994
|
id: Scalars['ID'];
|
|
995
995
|
};
|
|
996
|
-
export
|
|
996
|
+
export type TMutation_ActivateDashboardViewArgs = {
|
|
997
997
|
id: Scalars['ID'];
|
|
998
998
|
};
|
|
999
|
-
export
|
|
999
|
+
export type TMutation_ActivateDiscountCodesCustomViewArgs = {
|
|
1000
1000
|
id: Scalars['ID'];
|
|
1001
1001
|
};
|
|
1002
|
-
export
|
|
1002
|
+
export type TMutation_ActivateOrdersListViewArgs = {
|
|
1003
1003
|
id: Scalars['ID'];
|
|
1004
1004
|
};
|
|
1005
|
-
export
|
|
1005
|
+
export type TMutation_ActivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
1006
1006
|
organizationId: Scalars['String'];
|
|
1007
1007
|
};
|
|
1008
|
-
export
|
|
1008
|
+
export type TMutation_ActivatePimSearchListViewArgs = {
|
|
1009
1009
|
id: Scalars['ID'];
|
|
1010
1010
|
};
|
|
1011
|
-
export
|
|
1011
|
+
export type TMutation_ActivateProductDiscountsCustomViewArgs = {
|
|
1012
1012
|
id: Scalars['ID'];
|
|
1013
1013
|
};
|
|
1014
|
-
export
|
|
1014
|
+
export type TMutation_ActivateProductTypeAttributesViewArgs = {
|
|
1015
1015
|
id: Scalars['ID'];
|
|
1016
1016
|
isVariant: Scalars['Boolean'];
|
|
1017
1017
|
productTypeId: Scalars['String'];
|
|
1018
1018
|
};
|
|
1019
|
-
export
|
|
1019
|
+
export type TMutation_ActivateProjectExtensionApplicationArgs = {
|
|
1020
1020
|
applicationId: Scalars['ID'];
|
|
1021
1021
|
};
|
|
1022
|
-
export
|
|
1022
|
+
export type TMutation_ChangeCustomApplicationStatusArgs = {
|
|
1023
1023
|
applicationId: Scalars['ID'];
|
|
1024
1024
|
organizationId: Scalars['String'];
|
|
1025
1025
|
status: TCustomApplicationStatus;
|
|
1026
1026
|
};
|
|
1027
|
-
export
|
|
1027
|
+
export type TMutation_CreateCartDiscountsCustomViewArgs = {
|
|
1028
1028
|
data: TDiscountsCustomViewInput;
|
|
1029
1029
|
};
|
|
1030
|
-
export
|
|
1030
|
+
export type TMutation_CreateCustomApplicationArgs = {
|
|
1031
1031
|
data: TCustomApplicationDraftDataInput;
|
|
1032
1032
|
organizationId: Scalars['String'];
|
|
1033
1033
|
};
|
|
1034
|
-
export
|
|
1034
|
+
export type TMutation_CreateCustomersListViewArgs = {
|
|
1035
1035
|
data: TCustomersListViewInput;
|
|
1036
1036
|
};
|
|
1037
|
-
export
|
|
1037
|
+
export type TMutation_CreateDashboardViewArgs = {
|
|
1038
1038
|
data: TDashboardViewInput;
|
|
1039
1039
|
};
|
|
1040
|
-
export
|
|
1040
|
+
export type TMutation_CreateDiscountCodesCustomViewArgs = {
|
|
1041
1041
|
data: TDiscountsCustomViewInput;
|
|
1042
1042
|
};
|
|
1043
|
-
export
|
|
1043
|
+
export type TMutation_CreateOrdersListViewArgs = {
|
|
1044
1044
|
data: TOrdersListViewInput;
|
|
1045
1045
|
};
|
|
1046
|
-
export
|
|
1046
|
+
export type TMutation_CreatePimSearchListViewArgs = {
|
|
1047
1047
|
data: TPimSearchListViewInput;
|
|
1048
1048
|
};
|
|
1049
|
-
export
|
|
1049
|
+
export type TMutation_CreateProductDiscountsCustomViewArgs = {
|
|
1050
1050
|
data: TDiscountsCustomViewInput;
|
|
1051
1051
|
};
|
|
1052
|
-
export
|
|
1052
|
+
export type TMutation_CreateProductTypeAttributesViewArgs = {
|
|
1053
1053
|
data: TProductTypeAttributesViewInput;
|
|
1054
1054
|
};
|
|
1055
|
-
export
|
|
1055
|
+
export type TMutation_CreateVariantPricesListViewArgs = {
|
|
1056
1056
|
data: TVariantPricesListViewInput;
|
|
1057
1057
|
};
|
|
1058
|
-
export
|
|
1058
|
+
export type TMutation_DeactivateCartDiscountsCustomViewArgs = {
|
|
1059
1059
|
id: Scalars['ID'];
|
|
1060
1060
|
};
|
|
1061
|
-
export
|
|
1061
|
+
export type TMutation_DeactivateCustomersListViewArgs = {
|
|
1062
1062
|
id: Scalars['ID'];
|
|
1063
1063
|
};
|
|
1064
|
-
export
|
|
1064
|
+
export type TMutation_DeactivateDashboardViewArgs = {
|
|
1065
1065
|
id: Scalars['ID'];
|
|
1066
1066
|
};
|
|
1067
|
-
export
|
|
1067
|
+
export type TMutation_DeactivateDiscountCodesCustomViewArgs = {
|
|
1068
1068
|
id: Scalars['ID'];
|
|
1069
1069
|
};
|
|
1070
|
-
export
|
|
1070
|
+
export type TMutation_DeactivateOrdersListViewArgs = {
|
|
1071
1071
|
id: Scalars['ID'];
|
|
1072
1072
|
};
|
|
1073
|
-
export
|
|
1073
|
+
export type TMutation_DeactivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
1074
1074
|
organizationId: Scalars['String'];
|
|
1075
1075
|
};
|
|
1076
|
-
export
|
|
1076
|
+
export type TMutation_DeactivatePimSearchListViewArgs = {
|
|
1077
1077
|
id: Scalars['ID'];
|
|
1078
1078
|
};
|
|
1079
|
-
export
|
|
1079
|
+
export type TMutation_DeactivateProductDiscountsCustomViewArgs = {
|
|
1080
1080
|
id: Scalars['ID'];
|
|
1081
1081
|
};
|
|
1082
|
-
export
|
|
1082
|
+
export type TMutation_DeactivateProductTypeAttributesViewArgs = {
|
|
1083
1083
|
id: Scalars['ID'];
|
|
1084
1084
|
};
|
|
1085
|
-
export
|
|
1085
|
+
export type TMutation_DeactivateProjectExtensionApplicationArgs = {
|
|
1086
1086
|
applicationId: Scalars['ID'];
|
|
1087
1087
|
};
|
|
1088
|
-
export
|
|
1088
|
+
export type TMutation_DeleteCartDiscountsCustomViewArgs = {
|
|
1089
1089
|
id: Scalars['ID'];
|
|
1090
1090
|
};
|
|
1091
|
-
export
|
|
1091
|
+
export type TMutation_DeleteCustomApplicationArgs = {
|
|
1092
1092
|
applicationId: Scalars['ID'];
|
|
1093
1093
|
organizationId: Scalars['String'];
|
|
1094
1094
|
};
|
|
1095
|
-
export
|
|
1095
|
+
export type TMutation_DeleteCustomersListViewArgs = {
|
|
1096
1096
|
id: Scalars['ID'];
|
|
1097
1097
|
};
|
|
1098
|
-
export
|
|
1098
|
+
export type TMutation_DeleteDashboardViewArgs = {
|
|
1099
1099
|
id: Scalars['ID'];
|
|
1100
1100
|
};
|
|
1101
|
-
export
|
|
1101
|
+
export type TMutation_DeleteDiscountCodesCustomViewArgs = {
|
|
1102
1102
|
id: Scalars['ID'];
|
|
1103
1103
|
};
|
|
1104
|
-
export
|
|
1104
|
+
export type TMutation_DeleteOrdersListViewArgs = {
|
|
1105
1105
|
id: Scalars['ID'];
|
|
1106
1106
|
};
|
|
1107
|
-
export
|
|
1107
|
+
export type TMutation_DeletePimSearchListViewArgs = {
|
|
1108
1108
|
id: Scalars['ID'];
|
|
1109
1109
|
};
|
|
1110
|
-
export
|
|
1110
|
+
export type TMutation_DeleteProductDiscountsCustomViewArgs = {
|
|
1111
1111
|
id: Scalars['ID'];
|
|
1112
1112
|
};
|
|
1113
|
-
export
|
|
1113
|
+
export type TMutation_DeleteProductTypeAttributesViewArgs = {
|
|
1114
1114
|
id: Scalars['ID'];
|
|
1115
1115
|
};
|
|
1116
|
-
export
|
|
1116
|
+
export type TMutation_DeleteProjectExtensionApplicationArgs = {
|
|
1117
1117
|
applicationId: Scalars['ID'];
|
|
1118
1118
|
};
|
|
1119
|
-
export
|
|
1119
|
+
export type TMutation_InstallCustomApplicationArgs = {
|
|
1120
1120
|
applicationId: Scalars['ID'];
|
|
1121
1121
|
organizationId: Scalars['String'];
|
|
1122
1122
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1123
1123
|
};
|
|
1124
|
-
export
|
|
1124
|
+
export type TMutation_MigrateCustomersListViewsArgs = {
|
|
1125
1125
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1126
1126
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1127
1127
|
userEmail: Scalars['String'];
|
|
1128
1128
|
};
|
|
1129
|
-
export
|
|
1129
|
+
export type TMutation_MigrateDashboardViewsArgs = {
|
|
1130
1130
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1131
1131
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1132
1132
|
userEmail: Scalars['String'];
|
|
1133
1133
|
};
|
|
1134
|
-
export
|
|
1134
|
+
export type TMutation_MigrateDiscountsListViewsArgs = {
|
|
1135
1135
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1136
1136
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1137
1137
|
userEmail: Scalars['String'];
|
|
1138
1138
|
};
|
|
1139
|
-
export
|
|
1139
|
+
export type TMutation_MigrateOrdersListViewsArgs = {
|
|
1140
1140
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1141
1141
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1142
1142
|
userEmail: Scalars['String'];
|
|
1143
1143
|
};
|
|
1144
|
-
export
|
|
1144
|
+
export type TMutation_MigrateOrganizationExtensionsOidcSsoConfigArgs = {
|
|
1145
1145
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1146
1146
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1147
1147
|
userEmail: Scalars['String'];
|
|
1148
1148
|
};
|
|
1149
|
-
export
|
|
1149
|
+
export type TMutation_MigratePimSearchListViewsArgs = {
|
|
1150
1150
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1151
1151
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1152
1152
|
userEmail: Scalars['String'];
|
|
1153
1153
|
};
|
|
1154
|
-
export
|
|
1154
|
+
export type TMutation_MigrateProductTypeAttributesViewsArgs = {
|
|
1155
1155
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1156
1156
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1157
1157
|
userEmail: Scalars['String'];
|
|
1158
1158
|
};
|
|
1159
|
-
export
|
|
1159
|
+
export type TMutation_MigrateProjectExtensionsArgs = {
|
|
1160
1160
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1161
1161
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1162
1162
|
userEmail: Scalars['String'];
|
|
1163
1163
|
};
|
|
1164
|
-
export
|
|
1164
|
+
export type TMutation_MigrateRuleBuilderQuickSelectionValuesArgs = {
|
|
1165
1165
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1166
1166
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1167
1167
|
userEmail: Scalars['String'];
|
|
1168
1168
|
};
|
|
1169
|
-
export
|
|
1169
|
+
export type TMutation_MigrateVariantPricesListViewsArgs = {
|
|
1170
1170
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1171
1171
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1172
1172
|
userEmail: Scalars['String'];
|
|
1173
1173
|
};
|
|
1174
|
-
export
|
|
1174
|
+
export type TMutation_RevertCustomersListViewsMigrationArgs = {
|
|
1175
1175
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1176
1176
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1177
1177
|
userEmail: Scalars['String'];
|
|
1178
1178
|
};
|
|
1179
|
-
export
|
|
1179
|
+
export type TMutation_RevertDashboardViewsMigrationArgs = {
|
|
1180
1180
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1181
1181
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1182
1182
|
userEmail: Scalars['String'];
|
|
1183
1183
|
};
|
|
1184
|
-
export
|
|
1184
|
+
export type TMutation_RevertDiscountsListViewsMigrationArgs = {
|
|
1185
1185
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1186
1186
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1187
1187
|
userEmail: Scalars['String'];
|
|
1188
1188
|
};
|
|
1189
|
-
export
|
|
1189
|
+
export type TMutation_RevertOrdersListViewsMigrationArgs = {
|
|
1190
1190
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1191
1191
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1192
1192
|
userEmail: Scalars['String'];
|
|
1193
1193
|
};
|
|
1194
|
-
export
|
|
1194
|
+
export type TMutation_RevertPimSearchListViewsMigrationArgs = {
|
|
1195
1195
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1196
1196
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1197
1197
|
userEmail: Scalars['String'];
|
|
1198
1198
|
};
|
|
1199
|
-
export
|
|
1199
|
+
export type TMutation_RevertProductTypeAttributesViewsMigrationArgs = {
|
|
1200
1200
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1201
1201
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1202
1202
|
userEmail: Scalars['String'];
|
|
1203
1203
|
};
|
|
1204
|
-
export
|
|
1204
|
+
export type TMutation_RevertRuleBuilderQuickSelectionValuesMigrationArgs = {
|
|
1205
1205
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1206
1206
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1207
1207
|
userEmail: Scalars['String'];
|
|
1208
1208
|
};
|
|
1209
|
-
export
|
|
1209
|
+
export type TMutation_RevertVariantPricesListViewsMigrationArgs = {
|
|
1210
1210
|
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1211
1211
|
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1212
1212
|
userEmail: Scalars['String'];
|
|
1213
1213
|
};
|
|
1214
|
-
export
|
|
1214
|
+
export type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1215
1215
|
organizationId: Scalars['String'];
|
|
1216
1216
|
};
|
|
1217
|
-
export
|
|
1217
|
+
export type TMutation_SetCustomApplicationsMaintainerContactInformationArgs = {
|
|
1218
1218
|
data?: InputMaybe<TContactInformationDataInput>;
|
|
1219
1219
|
organizationId: Scalars['String'];
|
|
1220
1220
|
};
|
|
1221
|
-
export
|
|
1221
|
+
export type TMutation_SetOrganizationExtensionOidcSsoConfigArgs = {
|
|
1222
1222
|
data: TOidcSsoConfigDataInput;
|
|
1223
1223
|
organizationId: Scalars['String'];
|
|
1224
1224
|
};
|
|
1225
|
-
export
|
|
1225
|
+
export type TMutation_SetProjectExtensionCategoryRecommendationArgs = {
|
|
1226
1226
|
data?: InputMaybe<TCategoryRecommendationSettingsDataInput>;
|
|
1227
1227
|
};
|
|
1228
|
-
export
|
|
1228
|
+
export type TMutation_SetProjectExtensionImageRegexArgs = {
|
|
1229
1229
|
data?: InputMaybe<TImageRegexDataInput>;
|
|
1230
1230
|
};
|
|
1231
|
-
export
|
|
1231
|
+
export type TMutation_SetProjectExtensionOrderStatesVisibilityArgs = {
|
|
1232
1232
|
data?: InputMaybe<Array<InputMaybe<TOrderStatesVisibility>>>;
|
|
1233
1233
|
};
|
|
1234
|
-
export
|
|
1234
|
+
export type TMutation_UninstallCustomApplicationArgs = {
|
|
1235
1235
|
installedApplicationId: Scalars['ID'];
|
|
1236
1236
|
organizationId: Scalars['String'];
|
|
1237
1237
|
};
|
|
1238
|
-
export
|
|
1238
|
+
export type TMutation_UpdateCartDiscountsCustomViewArgs = {
|
|
1239
1239
|
data: TDiscountsCustomViewInput;
|
|
1240
1240
|
id: Scalars['ID'];
|
|
1241
1241
|
};
|
|
1242
|
-
export
|
|
1242
|
+
export type TMutation_UpdateCustomApplicationArgs = {
|
|
1243
1243
|
applicationId: Scalars['ID'];
|
|
1244
1244
|
data: TCustomApplicationDraftDataInput;
|
|
1245
1245
|
organizationId: Scalars['String'];
|
|
1246
1246
|
};
|
|
1247
|
-
export
|
|
1247
|
+
export type TMutation_UpdateCustomApplicationProjectsInstallationArgs = {
|
|
1248
1248
|
installedApplicationId: Scalars['ID'];
|
|
1249
1249
|
organizationId: Scalars['String'];
|
|
1250
1250
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1251
1251
|
};
|
|
1252
|
-
export
|
|
1252
|
+
export type TMutation_UpdateCustomersListViewArgs = {
|
|
1253
1253
|
data: TCustomersListViewInput;
|
|
1254
1254
|
id: Scalars['ID'];
|
|
1255
1255
|
};
|
|
1256
|
-
export
|
|
1256
|
+
export type TMutation_UpdateDashboardViewArgs = {
|
|
1257
1257
|
data: TDashboardViewInput;
|
|
1258
1258
|
id: Scalars['ID'];
|
|
1259
1259
|
};
|
|
1260
|
-
export
|
|
1260
|
+
export type TMutation_UpdateDiscountCodesCustomViewArgs = {
|
|
1261
1261
|
data: TDiscountsCustomViewInput;
|
|
1262
1262
|
id: Scalars['ID'];
|
|
1263
1263
|
};
|
|
1264
|
-
export
|
|
1264
|
+
export type TMutation_UpdateOrdersListViewArgs = {
|
|
1265
1265
|
data: TOrdersListViewInput;
|
|
1266
1266
|
id: Scalars['ID'];
|
|
1267
1267
|
};
|
|
1268
|
-
export
|
|
1268
|
+
export type TMutation_UpdatePimSearchListViewArgs = {
|
|
1269
1269
|
data: TPimSearchListViewInput;
|
|
1270
1270
|
id: Scalars['ID'];
|
|
1271
1271
|
};
|
|
1272
|
-
export
|
|
1272
|
+
export type TMutation_UpdateProductDiscountsCustomViewArgs = {
|
|
1273
1273
|
data: TDiscountsCustomViewInput;
|
|
1274
1274
|
id: Scalars['ID'];
|
|
1275
1275
|
};
|
|
1276
|
-
export
|
|
1276
|
+
export type TMutation_UpdateProductTypeAttributesViewArgs = {
|
|
1277
1277
|
data: TProductTypeAttributesViewUpdateInput;
|
|
1278
1278
|
id: Scalars['ID'];
|
|
1279
1279
|
};
|
|
1280
|
-
export
|
|
1280
|
+
export type TMutation_UpdateProjectExtensionApplicationArgs = {
|
|
1281
1281
|
applicationId: Scalars['ID'];
|
|
1282
1282
|
data: TApplicationExtensionDataInput;
|
|
1283
1283
|
};
|
|
1284
|
-
export
|
|
1284
|
+
export type TMutation_UpdateRuleBuilderQuickSelectionValuesArgs = {
|
|
1285
1285
|
data: TRuleBuilderQuickSelectionInput;
|
|
1286
1286
|
id?: InputMaybe<Scalars['ID']>;
|
|
1287
1287
|
};
|
|
1288
|
-
export
|
|
1288
|
+
export type TMutation_UpdateVariantPricesListViewArgs = {
|
|
1289
1289
|
data: TVariantPricesListViewInput;
|
|
1290
1290
|
id: Scalars['ID'];
|
|
1291
1291
|
};
|
|
1292
|
-
export
|
|
1292
|
+
export type TMutation_VerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1293
1293
|
token: Scalars['String'];
|
|
1294
1294
|
};
|
|
1295
|
-
export
|
|
1295
|
+
export type TMyCustomApplication = {
|
|
1296
1296
|
__typename?: 'MyCustomApplication';
|
|
1297
1297
|
createdAt: Scalars['DateTime'];
|
|
1298
1298
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1309,13 +1309,13 @@ export declare type TMyCustomApplication = {
|
|
|
1309
1309
|
updatedAt: Scalars['DateTime'];
|
|
1310
1310
|
url: Scalars['String'];
|
|
1311
1311
|
};
|
|
1312
|
-
export
|
|
1312
|
+
export type TMyCustomApplicationQueryInput = {
|
|
1313
1313
|
where?: InputMaybe<TMyCustomApplicationQueryWhereInput>;
|
|
1314
1314
|
};
|
|
1315
|
-
export
|
|
1315
|
+
export type TMyCustomApplicationQueryWhereInput = {
|
|
1316
1316
|
status?: InputMaybe<TCustomApplicationStatus>;
|
|
1317
1317
|
};
|
|
1318
|
-
export
|
|
1318
|
+
export type TNavbarMenu = {
|
|
1319
1319
|
__typename?: 'NavbarMenu';
|
|
1320
1320
|
createdAt: Scalars['DateTime'];
|
|
1321
1321
|
featureToggle?: Maybe<Scalars['String']>;
|
|
@@ -1328,7 +1328,7 @@ export declare type TNavbarMenu = {
|
|
|
1328
1328
|
updatedAt: Scalars['DateTime'];
|
|
1329
1329
|
uriPath: Scalars['String'];
|
|
1330
1330
|
};
|
|
1331
|
-
export
|
|
1331
|
+
export type TNavbarMenu_LabelAllLocalesArgs = {
|
|
1332
1332
|
after?: InputMaybe<Scalars['String']>;
|
|
1333
1333
|
before?: InputMaybe<Scalars['String']>;
|
|
1334
1334
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1337,7 +1337,7 @@ export declare type TNavbarMenu_LabelAllLocalesArgs = {
|
|
|
1337
1337
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1338
1338
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1339
1339
|
};
|
|
1340
|
-
export
|
|
1340
|
+
export type TNavbarMenu_SubmenuArgs = {
|
|
1341
1341
|
after?: InputMaybe<Scalars['String']>;
|
|
1342
1342
|
before?: InputMaybe<Scalars['String']>;
|
|
1343
1343
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1346,7 +1346,7 @@ export declare type TNavbarMenu_SubmenuArgs = {
|
|
|
1346
1346
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1347
1347
|
where?: InputMaybe<TNavbarSubmenuWhereInput>;
|
|
1348
1348
|
};
|
|
1349
|
-
export
|
|
1349
|
+
export type TNavbarSubmenu = {
|
|
1350
1350
|
__typename?: 'NavbarSubmenu';
|
|
1351
1351
|
createdAt: Scalars['DateTime'];
|
|
1352
1352
|
featureToggle?: Maybe<Scalars['String']>;
|
|
@@ -1357,7 +1357,7 @@ export declare type TNavbarSubmenu = {
|
|
|
1357
1357
|
updatedAt: Scalars['DateTime'];
|
|
1358
1358
|
uriPath: Scalars['String'];
|
|
1359
1359
|
};
|
|
1360
|
-
export
|
|
1360
|
+
export type TNavbarSubmenu_LabelAllLocalesArgs = {
|
|
1361
1361
|
after?: InputMaybe<Scalars['String']>;
|
|
1362
1362
|
before?: InputMaybe<Scalars['String']>;
|
|
1363
1363
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1380,7 +1380,7 @@ export declare enum TNavbarSubmenuOrderByInput {
|
|
|
1380
1380
|
UriPathAsc = "uriPath_ASC",
|
|
1381
1381
|
UriPathDesc = "uriPath_DESC"
|
|
1382
1382
|
}
|
|
1383
|
-
export
|
|
1383
|
+
export type TNavbarSubmenuWhereInput = {
|
|
1384
1384
|
AND?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1385
1385
|
NOT?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1386
1386
|
OR?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
@@ -1487,7 +1487,7 @@ export declare enum TOAuthScope {
|
|
|
1487
1487
|
ViewProducts = "ViewProducts",
|
|
1488
1488
|
ViewProjectSettings = "ViewProjectSettings"
|
|
1489
1489
|
}
|
|
1490
|
-
export
|
|
1490
|
+
export type TOidcSsoConfig = {
|
|
1491
1491
|
__typename?: 'OidcSsoConfig';
|
|
1492
1492
|
authorityUrl: Scalars['String'];
|
|
1493
1493
|
clientId: Scalars['String'];
|
|
@@ -1499,7 +1499,7 @@ export declare type TOidcSsoConfig = {
|
|
|
1499
1499
|
teamIdForNewUsers: Scalars['String'];
|
|
1500
1500
|
updatedAt: Scalars['DateTime'];
|
|
1501
1501
|
};
|
|
1502
|
-
export
|
|
1502
|
+
export type TOidcSsoConfigDataInput = {
|
|
1503
1503
|
authorityUrl: Scalars['String'];
|
|
1504
1504
|
clientId: Scalars['String'];
|
|
1505
1505
|
clientSecret?: InputMaybe<Scalars['String']>;
|
|
@@ -1511,7 +1511,7 @@ export declare enum TOrderStatesVisibility {
|
|
|
1511
1511
|
HidePaymentState = "HidePaymentState",
|
|
1512
1512
|
HideShipmentState = "HideShipmentState"
|
|
1513
1513
|
}
|
|
1514
|
-
export
|
|
1514
|
+
export type TOrderStatusConfiguration = {
|
|
1515
1515
|
__typename?: 'OrderStatusConfiguration';
|
|
1516
1516
|
createdAt: Scalars['DateTime'];
|
|
1517
1517
|
dateFilterType: TDateFilterType;
|
|
@@ -1521,13 +1521,13 @@ export declare type TOrderStatusConfiguration = {
|
|
|
1521
1521
|
productId?: Maybe<Scalars['String']>;
|
|
1522
1522
|
updatedAt: Scalars['DateTime'];
|
|
1523
1523
|
};
|
|
1524
|
-
export
|
|
1524
|
+
export type TOrderStatusConfigurationInput = {
|
|
1525
1525
|
dateFilterType: TDateFilterType;
|
|
1526
1526
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
1527
1527
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1528
1528
|
productId?: InputMaybe<Scalars['String']>;
|
|
1529
1529
|
};
|
|
1530
|
-
export
|
|
1530
|
+
export type TOrderStatusConfigurationWhereInput = {
|
|
1531
1531
|
AND?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1532
1532
|
NOT?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1533
1533
|
OR?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
@@ -1596,7 +1596,7 @@ export declare type TOrderStatusConfigurationWhereInput = {
|
|
|
1596
1596
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1597
1597
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1598
1598
|
};
|
|
1599
|
-
export
|
|
1599
|
+
export type TOrdersListView = {
|
|
1600
1600
|
__typename?: 'OrdersListView';
|
|
1601
1601
|
createdAt: Scalars['DateTime'];
|
|
1602
1602
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -1612,7 +1612,7 @@ export declare type TOrdersListView = {
|
|
|
1612
1612
|
updatedAt: Scalars['DateTime'];
|
|
1613
1613
|
userId: Scalars['String'];
|
|
1614
1614
|
};
|
|
1615
|
-
export
|
|
1615
|
+
export type TOrdersListView_FiltersArgs = {
|
|
1616
1616
|
after?: InputMaybe<Scalars['String']>;
|
|
1617
1617
|
before?: InputMaybe<Scalars['String']>;
|
|
1618
1618
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1621,7 +1621,7 @@ export declare type TOrdersListView_FiltersArgs = {
|
|
|
1621
1621
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1622
1622
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1623
1623
|
};
|
|
1624
|
-
export
|
|
1624
|
+
export type TOrdersListView_NameAllLocalesArgs = {
|
|
1625
1625
|
after?: InputMaybe<Scalars['String']>;
|
|
1626
1626
|
before?: InputMaybe<Scalars['String']>;
|
|
1627
1627
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1630,7 +1630,7 @@ export declare type TOrdersListView_NameAllLocalesArgs = {
|
|
|
1630
1630
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1631
1631
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1632
1632
|
};
|
|
1633
|
-
export
|
|
1633
|
+
export type TOrdersListViewInput = {
|
|
1634
1634
|
filters: Array<TFilterValuesCreateInput>;
|
|
1635
1635
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1636
1636
|
search?: InputMaybe<Scalars['String']>;
|
|
@@ -1638,10 +1638,10 @@ export declare type TOrdersListViewInput = {
|
|
|
1638
1638
|
sort: TSortCreateInput;
|
|
1639
1639
|
table?: InputMaybe<TOrdersListViewTableInput>;
|
|
1640
1640
|
};
|
|
1641
|
-
export
|
|
1641
|
+
export type TOrdersListViewTableInput = {
|
|
1642
1642
|
visibleColumns: Array<Scalars['String']>;
|
|
1643
1643
|
};
|
|
1644
|
-
export
|
|
1644
|
+
export type TOrganizationExtension = {
|
|
1645
1645
|
__typename?: 'OrganizationExtension';
|
|
1646
1646
|
applicationsMaintainerContactInformation?: Maybe<TContactInformation>;
|
|
1647
1647
|
createdAt: Scalars['DateTime'];
|
|
@@ -1652,14 +1652,14 @@ export declare type TOrganizationExtension = {
|
|
|
1652
1652
|
registeredApplications?: Maybe<Array<TRestrictedCustomApplicationForOrganization>>;
|
|
1653
1653
|
updatedAt: Scalars['DateTime'];
|
|
1654
1654
|
};
|
|
1655
|
-
export
|
|
1655
|
+
export type TOrganizationExtensionForCustomApplication = {
|
|
1656
1656
|
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
1657
1657
|
application: TRestrictedCustomApplicationForOrganization;
|
|
1658
1658
|
id: Scalars['ID'];
|
|
1659
1659
|
organizationId: Scalars['String'];
|
|
1660
1660
|
organizationName?: Maybe<Scalars['String']>;
|
|
1661
1661
|
};
|
|
1662
|
-
export
|
|
1662
|
+
export type TPimSearchListView = {
|
|
1663
1663
|
__typename?: 'PimSearchListView';
|
|
1664
1664
|
createdAt: Scalars['DateTime'];
|
|
1665
1665
|
filters?: Maybe<Array<TFilterValues>>;
|
|
@@ -1674,7 +1674,7 @@ export declare type TPimSearchListView = {
|
|
|
1674
1674
|
updatedAt: Scalars['DateTime'];
|
|
1675
1675
|
userId: Scalars['String'];
|
|
1676
1676
|
};
|
|
1677
|
-
export
|
|
1677
|
+
export type TPimSearchListView_FiltersArgs = {
|
|
1678
1678
|
after?: InputMaybe<Scalars['String']>;
|
|
1679
1679
|
before?: InputMaybe<Scalars['String']>;
|
|
1680
1680
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1683,7 +1683,7 @@ export declare type TPimSearchListView_FiltersArgs = {
|
|
|
1683
1683
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1684
1684
|
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1685
1685
|
};
|
|
1686
|
-
export
|
|
1686
|
+
export type TPimSearchListView_NameAllLocalesArgs = {
|
|
1687
1687
|
after?: InputMaybe<Scalars['String']>;
|
|
1688
1688
|
before?: InputMaybe<Scalars['String']>;
|
|
1689
1689
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1692,17 +1692,17 @@ export declare type TPimSearchListView_NameAllLocalesArgs = {
|
|
|
1692
1692
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1693
1693
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1694
1694
|
};
|
|
1695
|
-
export
|
|
1695
|
+
export type TPimSearchListViewInput = {
|
|
1696
1696
|
filters: Array<TFilterValuesCreateInput>;
|
|
1697
1697
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1698
1698
|
search?: InputMaybe<Scalars['String']>;
|
|
1699
1699
|
sort: TSortCreateInput;
|
|
1700
1700
|
table?: InputMaybe<TPimSearchListViewTableInput>;
|
|
1701
1701
|
};
|
|
1702
|
-
export
|
|
1702
|
+
export type TPimSearchListViewTableInput = {
|
|
1703
1703
|
visibleColumns: Array<Scalars['String']>;
|
|
1704
1704
|
};
|
|
1705
|
-
export
|
|
1705
|
+
export type TProductTypeAttributesView = {
|
|
1706
1706
|
__typename?: 'ProductTypeAttributesView';
|
|
1707
1707
|
createdAt: Scalars['DateTime'];
|
|
1708
1708
|
existence?: Maybe<TExistence>;
|
|
@@ -1718,7 +1718,7 @@ export declare type TProductTypeAttributesView = {
|
|
|
1718
1718
|
updatedAt: Scalars['DateTime'];
|
|
1719
1719
|
userId: Scalars['String'];
|
|
1720
1720
|
};
|
|
1721
|
-
export
|
|
1721
|
+
export type TProductTypeAttributesView_NameAllLocalesArgs = {
|
|
1722
1722
|
after?: InputMaybe<Scalars['String']>;
|
|
1723
1723
|
before?: InputMaybe<Scalars['String']>;
|
|
1724
1724
|
first?: InputMaybe<Scalars['Int']>;
|
|
@@ -1727,7 +1727,7 @@ export declare type TProductTypeAttributesView_NameAllLocalesArgs = {
|
|
|
1727
1727
|
skip?: InputMaybe<Scalars['Int']>;
|
|
1728
1728
|
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1729
1729
|
};
|
|
1730
|
-
export
|
|
1730
|
+
export type TProductTypeAttributesViewInput = {
|
|
1731
1731
|
existence?: InputMaybe<TExistence>;
|
|
1732
1732
|
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1733
1733
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -1735,14 +1735,14 @@ export declare type TProductTypeAttributesViewInput = {
|
|
|
1735
1735
|
productTypeId: Scalars['String'];
|
|
1736
1736
|
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1737
1737
|
};
|
|
1738
|
-
export
|
|
1738
|
+
export type TProductTypeAttributesViewUpdateInput = {
|
|
1739
1739
|
existence?: InputMaybe<TExistence>;
|
|
1740
1740
|
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1741
1741
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1742
1742
|
pinnedAttributes: Array<Scalars['String']>;
|
|
1743
1743
|
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1744
1744
|
};
|
|
1745
|
-
export
|
|
1745
|
+
export type TProjectExtension = {
|
|
1746
1746
|
__typename?: 'ProjectExtension';
|
|
1747
1747
|
applications?: Maybe<Array<TApplicationExtension>>;
|
|
1748
1748
|
categoryRecommendationSettings?: Maybe<TCategoryRecommendationSettings>;
|
|
@@ -1754,16 +1754,16 @@ export declare type TProjectExtension = {
|
|
|
1754
1754
|
projectKey: Scalars['String'];
|
|
1755
1755
|
updatedAt: Scalars['DateTime'];
|
|
1756
1756
|
};
|
|
1757
|
-
export
|
|
1757
|
+
export type TProjectExtension_ApplicationsArgs = {
|
|
1758
1758
|
where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
|
|
1759
1759
|
};
|
|
1760
|
-
export
|
|
1760
|
+
export type TProjectInfoForLegacyCustomApplicationsMigrationReport = {
|
|
1761
1761
|
__typename?: 'ProjectInfoForLegacyCustomApplicationsMigrationReport';
|
|
1762
1762
|
applicationExtensions: Array<TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport>;
|
|
1763
1763
|
projectExtensionId: Scalars['ID'];
|
|
1764
1764
|
projectKey: Scalars['String'];
|
|
1765
1765
|
};
|
|
1766
|
-
export
|
|
1766
|
+
export type TQuery = {
|
|
1767
1767
|
__typename?: 'Query';
|
|
1768
1768
|
activeCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1769
1769
|
activeCustomersListView?: Maybe<TCustomersListView>;
|
|
@@ -1805,70 +1805,70 @@ export declare type TQuery = {
|
|
|
1805
1805
|
ruleBuilderQuickSelectionValues?: Maybe<Array<Maybe<TRuleBuilderQuickSelectionValues>>>;
|
|
1806
1806
|
variantPricesListViews: Array<Maybe<TVariantPricesListView>>;
|
|
1807
1807
|
};
|
|
1808
|
-
export
|
|
1808
|
+
export type TQuery_ActiveProductTypeAttributesViewArgs = {
|
|
1809
1809
|
isVariant: Scalars['Boolean'];
|
|
1810
1810
|
productTypeId: Scalars['String'];
|
|
1811
1811
|
};
|
|
1812
|
-
export
|
|
1812
|
+
export type TQuery_AllAppliedCustomApplicationPermissionsArgs = {
|
|
1813
1813
|
applicationId: Scalars['ID'];
|
|
1814
1814
|
entryPointUriPath: Scalars['String'];
|
|
1815
1815
|
};
|
|
1816
|
-
export
|
|
1816
|
+
export type TQuery_AllCustomApplicationsArgs = {
|
|
1817
1817
|
params?: InputMaybe<TCustomApplicationQueryInput>;
|
|
1818
1818
|
};
|
|
1819
|
-
export
|
|
1819
|
+
export type TQuery_AllLegacyCustomApplicationsArgs = {
|
|
1820
1820
|
params?: InputMaybe<TLegacyCustomApplicationQueryInput>;
|
|
1821
1821
|
};
|
|
1822
|
-
export
|
|
1822
|
+
export type TQuery_AllOrganizationExtensionsArgs = {
|
|
1823
1823
|
organizationIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1824
1824
|
};
|
|
1825
|
-
export
|
|
1825
|
+
export type TQuery_CartDiscountsCustomViewArgs = {
|
|
1826
1826
|
id: Scalars['ID'];
|
|
1827
1827
|
};
|
|
1828
|
-
export
|
|
1828
|
+
export type TQuery_CustomApplicationArgs = {
|
|
1829
1829
|
applicationId: Scalars['ID'];
|
|
1830
1830
|
};
|
|
1831
|
-
export
|
|
1831
|
+
export type TQuery_CustomersListViewArgs = {
|
|
1832
1832
|
id: Scalars['ID'];
|
|
1833
1833
|
};
|
|
1834
|
-
export
|
|
1834
|
+
export type TQuery_DashboardViewArgs = {
|
|
1835
1835
|
id: Scalars['ID'];
|
|
1836
1836
|
};
|
|
1837
|
-
export
|
|
1837
|
+
export type TQuery_DiscountCodesCustomViewArgs = {
|
|
1838
1838
|
id: Scalars['ID'];
|
|
1839
1839
|
};
|
|
1840
|
-
export
|
|
1840
|
+
export type TQuery_GlobalOrganizationExtensionArgs = {
|
|
1841
1841
|
organizationId: Scalars['String'];
|
|
1842
1842
|
};
|
|
1843
|
-
export
|
|
1843
|
+
export type TQuery_LegacyCustomApplicationArgs = {
|
|
1844
1844
|
applicationId: Scalars['ID'];
|
|
1845
1845
|
};
|
|
1846
|
-
export
|
|
1846
|
+
export type TQuery_MyCustomApplicationsArgs = {
|
|
1847
1847
|
params?: InputMaybe<TMyCustomApplicationQueryInput>;
|
|
1848
1848
|
};
|
|
1849
|
-
export
|
|
1849
|
+
export type TQuery_OrdersListViewArgs = {
|
|
1850
1850
|
id: Scalars['ID'];
|
|
1851
1851
|
};
|
|
1852
|
-
export
|
|
1852
|
+
export type TQuery_OrganizationExtensionArgs = {
|
|
1853
1853
|
organizationId: Scalars['String'];
|
|
1854
1854
|
};
|
|
1855
|
-
export
|
|
1855
|
+
export type TQuery_OrganizationExtensionForCustomApplicationArgs = {
|
|
1856
1856
|
entryPointUriPath: Scalars['String'];
|
|
1857
1857
|
};
|
|
1858
|
-
export
|
|
1858
|
+
export type TQuery_PimSearchListViewArgs = {
|
|
1859
1859
|
id: Scalars['ID'];
|
|
1860
1860
|
};
|
|
1861
|
-
export
|
|
1861
|
+
export type TQuery_ProductDiscountsCustomViewArgs = {
|
|
1862
1862
|
id: Scalars['ID'];
|
|
1863
1863
|
};
|
|
1864
|
-
export
|
|
1864
|
+
export type TQuery_ProductTypeAttributesViewArgs = {
|
|
1865
1865
|
id: Scalars['ID'];
|
|
1866
1866
|
};
|
|
1867
|
-
export
|
|
1867
|
+
export type TQuery_ProductTypeAttributesViewsArgs = {
|
|
1868
1868
|
isVariant: Scalars['Boolean'];
|
|
1869
1869
|
productTypeId: Scalars['String'];
|
|
1870
1870
|
};
|
|
1871
|
-
export
|
|
1871
|
+
export type TQuery_RuleBuilderQuickSelectionValuesArgs = {
|
|
1872
1872
|
ruleBuilderType: TRuleBuilderType;
|
|
1873
1873
|
};
|
|
1874
1874
|
export declare enum TResourceType {
|
|
@@ -1877,17 +1877,17 @@ export declare enum TResourceType {
|
|
|
1877
1877
|
TotalProducts = "TOTAL_PRODUCTS",
|
|
1878
1878
|
UnpublishedProducts = "UNPUBLISHED_PRODUCTS"
|
|
1879
1879
|
}
|
|
1880
|
-
export
|
|
1880
|
+
export type TResourcesNumbersConfiguration = {
|
|
1881
1881
|
__typename?: 'ResourcesNumbersConfiguration';
|
|
1882
1882
|
createdAt: Scalars['DateTime'];
|
|
1883
1883
|
id: Scalars['ID'];
|
|
1884
1884
|
resourceOptions: Array<TResourceType>;
|
|
1885
1885
|
updatedAt: Scalars['DateTime'];
|
|
1886
1886
|
};
|
|
1887
|
-
export
|
|
1887
|
+
export type TResourcesNumbersConfigurationInput = {
|
|
1888
1888
|
resourceOptions: Array<TResourceType>;
|
|
1889
1889
|
};
|
|
1890
|
-
export
|
|
1890
|
+
export type TResourcesNumbersConfigurationWhereInput = {
|
|
1891
1891
|
AND?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1892
1892
|
NOT?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1893
1893
|
OR?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
@@ -1922,12 +1922,12 @@ export declare type TResourcesNumbersConfigurationWhereInput = {
|
|
|
1922
1922
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1923
1923
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1924
1924
|
};
|
|
1925
|
-
export
|
|
1925
|
+
export type TRestrictedApplicationExtensionWhereInput = {
|
|
1926
1926
|
id?: InputMaybe<Scalars['ID']>;
|
|
1927
1927
|
isActive?: InputMaybe<Scalars['Boolean']>;
|
|
1928
1928
|
url?: InputMaybe<Scalars['String']>;
|
|
1929
1929
|
};
|
|
1930
|
-
export
|
|
1930
|
+
export type TRestrictedCustomApplicationForOrganization = {
|
|
1931
1931
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1932
1932
|
createdAt: Scalars['DateTime'];
|
|
1933
1933
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1942,7 +1942,7 @@ export declare type TRestrictedCustomApplicationForOrganization = {
|
|
|
1942
1942
|
updatedAt: Scalars['DateTime'];
|
|
1943
1943
|
url: Scalars['String'];
|
|
1944
1944
|
};
|
|
1945
|
-
export
|
|
1945
|
+
export type TRestrictedCustomApplicationForProject = {
|
|
1946
1946
|
__typename?: 'RestrictedCustomApplicationForProject';
|
|
1947
1947
|
createdAt: Scalars['DateTime'];
|
|
1948
1948
|
description?: Maybe<Scalars['String']>;
|
|
@@ -1958,7 +1958,7 @@ export declare type TRestrictedCustomApplicationForProject = {
|
|
|
1958
1958
|
updatedAt: Scalars['DateTime'];
|
|
1959
1959
|
url: Scalars['String'];
|
|
1960
1960
|
};
|
|
1961
|
-
export
|
|
1961
|
+
export type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
1962
1962
|
__typename?: 'RestrictedCustomApplicationInstallationForOrganization';
|
|
1963
1963
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1964
1964
|
application: TRestrictedCustomApplicationForProject;
|
|
@@ -1968,7 +1968,7 @@ export declare type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
|
1968
1968
|
projects?: Maybe<Array<TProjectExtension>>;
|
|
1969
1969
|
updatedAt: Scalars['DateTime'];
|
|
1970
1970
|
};
|
|
1971
|
-
export
|
|
1971
|
+
export type TRestrictedCustomApplicationInstallationForProject = {
|
|
1972
1972
|
__typename?: 'RestrictedCustomApplicationInstallationForProject';
|
|
1973
1973
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1974
1974
|
application: TRestrictedCustomApplicationForProject;
|
|
@@ -1977,23 +1977,23 @@ export declare type TRestrictedCustomApplicationInstallationForProject = {
|
|
|
1977
1977
|
installInAllProjects: Scalars['Boolean'];
|
|
1978
1978
|
updatedAt: Scalars['DateTime'];
|
|
1979
1979
|
};
|
|
1980
|
-
export
|
|
1980
|
+
export type TReversionResult = {
|
|
1981
1981
|
__typename?: 'ReversionResult';
|
|
1982
1982
|
revertedIds?: Maybe<Array<Scalars['ID']>>;
|
|
1983
1983
|
skipped?: Maybe<Scalars['Int']>;
|
|
1984
1984
|
};
|
|
1985
|
-
export
|
|
1985
|
+
export type TRuleBuilderQuickSelectCreatefunctionsInput = {
|
|
1986
1986
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
1987
1987
|
};
|
|
1988
|
-
export
|
|
1988
|
+
export type TRuleBuilderQuickSelectCreatepredicatesInput = {
|
|
1989
1989
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
1990
1990
|
};
|
|
1991
|
-
export
|
|
1991
|
+
export type TRuleBuilderQuickSelectionInput = {
|
|
1992
1992
|
functions?: InputMaybe<TRuleBuilderQuickSelectCreatepredicatesInput>;
|
|
1993
1993
|
predicates?: InputMaybe<TRuleBuilderQuickSelectCreatefunctionsInput>;
|
|
1994
1994
|
ruleBuilderType: TRuleBuilderType;
|
|
1995
1995
|
};
|
|
1996
|
-
export
|
|
1996
|
+
export type TRuleBuilderQuickSelectionValues = {
|
|
1997
1997
|
__typename?: 'RuleBuilderQuickSelectionValues';
|
|
1998
1998
|
createdAt: Scalars['DateTime'];
|
|
1999
1999
|
functions: Array<Scalars['String']>;
|
|
@@ -2010,7 +2010,7 @@ export declare enum TRuleBuilderType {
|
|
|
2010
2010
|
CartTargetDiscount = "CartTargetDiscount",
|
|
2011
2011
|
ProductDiscount = "ProductDiscount"
|
|
2012
2012
|
}
|
|
2013
|
-
export
|
|
2013
|
+
export type TSalesPerformanceConfiguration = {
|
|
2014
2014
|
__typename?: 'SalesPerformanceConfiguration';
|
|
2015
2015
|
createdAt: Scalars['DateTime'];
|
|
2016
2016
|
dateFilterType: TDateFilterType;
|
|
@@ -2020,13 +2020,13 @@ export declare type TSalesPerformanceConfiguration = {
|
|
|
2020
2020
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2021
2021
|
updatedAt: Scalars['DateTime'];
|
|
2022
2022
|
};
|
|
2023
|
-
export
|
|
2023
|
+
export type TSalesPerformanceConfigurationInput = {
|
|
2024
2024
|
dateFilterType: TDateFilterType;
|
|
2025
2025
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2026
2026
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2027
2027
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2028
2028
|
};
|
|
2029
|
-
export
|
|
2029
|
+
export type TSalesPerformanceConfigurationWhereInput = {
|
|
2030
2030
|
AND?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2031
2031
|
NOT?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2032
2032
|
OR?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
@@ -2083,7 +2083,7 @@ export declare type TSalesPerformanceConfigurationWhereInput = {
|
|
|
2083
2083
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2084
2084
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2085
2085
|
};
|
|
2086
|
-
export
|
|
2086
|
+
export type TSort = {
|
|
2087
2087
|
__typename?: 'Sort';
|
|
2088
2088
|
createdAt: Scalars['DateTime'];
|
|
2089
2089
|
id: Scalars['ID'];
|
|
@@ -2091,7 +2091,7 @@ export declare type TSort = {
|
|
|
2091
2091
|
order: TSortOrder;
|
|
2092
2092
|
updatedAt: Scalars['DateTime'];
|
|
2093
2093
|
};
|
|
2094
|
-
export
|
|
2094
|
+
export type TSortCreateInput = {
|
|
2095
2095
|
id?: InputMaybe<Scalars['ID']>;
|
|
2096
2096
|
key: Scalars['String'];
|
|
2097
2097
|
order: TSortOrder;
|
|
@@ -2100,24 +2100,24 @@ export declare enum TSortOrder {
|
|
|
2100
2100
|
Asc = "Asc",
|
|
2101
2101
|
Desc = "Desc"
|
|
2102
2102
|
}
|
|
2103
|
-
export
|
|
2103
|
+
export type TTable = {
|
|
2104
2104
|
__typename?: 'Table';
|
|
2105
2105
|
createdAt: Scalars['DateTime'];
|
|
2106
2106
|
id: Scalars['ID'];
|
|
2107
2107
|
updatedAt: Scalars['DateTime'];
|
|
2108
2108
|
visibleColumns: Array<Scalars['String']>;
|
|
2109
2109
|
};
|
|
2110
|
-
export
|
|
2110
|
+
export type TTopProductsConfiguration = {
|
|
2111
2111
|
__typename?: 'TopProductsConfiguration';
|
|
2112
2112
|
bestSellingLimit: TBestSellingLimit;
|
|
2113
2113
|
createdAt: Scalars['DateTime'];
|
|
2114
2114
|
id: Scalars['ID'];
|
|
2115
2115
|
updatedAt: Scalars['DateTime'];
|
|
2116
2116
|
};
|
|
2117
|
-
export
|
|
2117
|
+
export type TTopProductsConfigurationInput = {
|
|
2118
2118
|
bestSellingLimit?: InputMaybe<TBestSellingLimit>;
|
|
2119
2119
|
};
|
|
2120
|
-
export
|
|
2120
|
+
export type TTopProductsConfigurationWhereInput = {
|
|
2121
2121
|
AND?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2122
2122
|
NOT?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2123
2123
|
OR?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
@@ -2156,7 +2156,7 @@ export declare type TTopProductsConfigurationWhereInput = {
|
|
|
2156
2156
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2157
2157
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2158
2158
|
};
|
|
2159
|
-
export
|
|
2159
|
+
export type TTotalOrdersConfiguration = {
|
|
2160
2160
|
__typename?: 'TotalOrdersConfiguration';
|
|
2161
2161
|
createdAt: Scalars['DateTime'];
|
|
2162
2162
|
dateFilterType: TDateFilterType;
|
|
@@ -2167,14 +2167,14 @@ export declare type TTotalOrdersConfiguration = {
|
|
|
2167
2167
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2168
2168
|
updatedAt: Scalars['DateTime'];
|
|
2169
2169
|
};
|
|
2170
|
-
export
|
|
2170
|
+
export type TTotalOrdersConfigurationInput = {
|
|
2171
2171
|
dateFilterType: TDateFilterType;
|
|
2172
2172
|
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2173
2173
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2174
2174
|
productId?: InputMaybe<Scalars['String']>;
|
|
2175
2175
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2176
2176
|
};
|
|
2177
|
-
export
|
|
2177
|
+
export type TTotalOrdersConfigurationWhereInput = {
|
|
2178
2178
|
AND?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2179
2179
|
NOT?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2180
2180
|
OR?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
@@ -2245,17 +2245,17 @@ export declare type TTotalOrdersConfigurationWhereInput = {
|
|
|
2245
2245
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2246
2246
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2247
2247
|
};
|
|
2248
|
-
export
|
|
2248
|
+
export type TTotalSalesConfiguration = {
|
|
2249
2249
|
__typename?: 'TotalSalesConfiguration';
|
|
2250
2250
|
createdAt: Scalars['DateTime'];
|
|
2251
2251
|
id: Scalars['ID'];
|
|
2252
2252
|
productId?: Maybe<Scalars['String']>;
|
|
2253
2253
|
updatedAt: Scalars['DateTime'];
|
|
2254
2254
|
};
|
|
2255
|
-
export
|
|
2255
|
+
export type TTotalSalesConfigurationInput = {
|
|
2256
2256
|
productId?: InputMaybe<Scalars['String']>;
|
|
2257
2257
|
};
|
|
2258
|
-
export
|
|
2258
|
+
export type TTotalSalesConfigurationWhereInput = {
|
|
2259
2259
|
AND?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2260
2260
|
NOT?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2261
2261
|
OR?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
@@ -2304,7 +2304,7 @@ export declare type TTotalSalesConfigurationWhereInput = {
|
|
|
2304
2304
|
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2305
2305
|
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2306
2306
|
};
|
|
2307
|
-
export
|
|
2307
|
+
export type TVariantPricesListView = {
|
|
2308
2308
|
__typename?: 'VariantPricesListView';
|
|
2309
2309
|
createdAt: Scalars['DateTime'];
|
|
2310
2310
|
id: Scalars['ID'];
|
|
@@ -2314,13 +2314,13 @@ export declare type TVariantPricesListView = {
|
|
|
2314
2314
|
userId: Scalars['String'];
|
|
2315
2315
|
visibleColumns: Array<Scalars['String']>;
|
|
2316
2316
|
};
|
|
2317
|
-
export
|
|
2317
|
+
export type TVariantPricesListViewInput = {
|
|
2318
2318
|
visibleColumns: Array<Scalars['String']>;
|
|
2319
2319
|
};
|
|
2320
|
-
export
|
|
2320
|
+
export type TFetchProjectExtensionImageRegexQueryVariables = Exact<{
|
|
2321
2321
|
[key: string]: never;
|
|
2322
2322
|
}>;
|
|
2323
|
-
export
|
|
2323
|
+
export type TFetchProjectExtensionImageRegexQuery = {
|
|
2324
2324
|
__typename?: 'Query';
|
|
2325
2325
|
projectExtension?: {
|
|
2326
2326
|
__typename?: 'ProjectExtension';
|
|
@@ -2342,16 +2342,16 @@ export declare type TFetchProjectExtensionImageRegexQuery = {
|
|
|
2342
2342
|
} | null;
|
|
2343
2343
|
} | null;
|
|
2344
2344
|
};
|
|
2345
|
-
export
|
|
2345
|
+
export type TImageRegexFragment = {
|
|
2346
2346
|
__typename?: 'ImageRegexOptions';
|
|
2347
2347
|
flag?: string | null;
|
|
2348
2348
|
search: string;
|
|
2349
2349
|
replace: string;
|
|
2350
2350
|
};
|
|
2351
|
-
export
|
|
2351
|
+
export type TFetchProjectExtensionsNavbarQueryVariables = Exact<{
|
|
2352
2352
|
[key: string]: never;
|
|
2353
2353
|
}>;
|
|
2354
|
-
export
|
|
2354
|
+
export type TFetchProjectExtensionsNavbarQuery = {
|
|
2355
2355
|
__typename?: 'Query';
|
|
2356
2356
|
projectExtension?: {
|
|
2357
2357
|
__typename?: 'ProjectExtension';
|
|
@@ -2421,21 +2421,21 @@ export declare type TFetchProjectExtensionsNavbarQuery = {
|
|
|
2421
2421
|
}> | null;
|
|
2422
2422
|
} | null;
|
|
2423
2423
|
};
|
|
2424
|
-
export
|
|
2424
|
+
export type TCreateCustomApplicationFromCliMutationVariables = Exact<{
|
|
2425
2425
|
organizationId: Scalars['String'];
|
|
2426
2426
|
data: TCustomApplicationDraftDataInput;
|
|
2427
2427
|
}>;
|
|
2428
|
-
export
|
|
2428
|
+
export type TCreateCustomApplicationFromCliMutation = {
|
|
2429
2429
|
__typename?: 'Mutation';
|
|
2430
2430
|
createCustomApplication?: {
|
|
2431
2431
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
2432
2432
|
id: string;
|
|
2433
2433
|
} | null;
|
|
2434
2434
|
};
|
|
2435
|
-
export
|
|
2435
|
+
export type TFetchCustomApplicationFromCliQueryVariables = Exact<{
|
|
2436
2436
|
entryPointUriPath: Scalars['String'];
|
|
2437
2437
|
}>;
|
|
2438
|
-
export
|
|
2438
|
+
export type TFetchCustomApplicationFromCliQuery = {
|
|
2439
2439
|
__typename?: 'Query';
|
|
2440
2440
|
organizationExtensionForCustomApplication?: {
|
|
2441
2441
|
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
@@ -2477,12 +2477,12 @@ export declare type TFetchCustomApplicationFromCliQuery = {
|
|
|
2477
2477
|
};
|
|
2478
2478
|
} | null;
|
|
2479
2479
|
};
|
|
2480
|
-
export
|
|
2480
|
+
export type TUpdateCustomApplicationFromCliMutationVariables = Exact<{
|
|
2481
2481
|
organizationId: Scalars['String'];
|
|
2482
2482
|
data: TCustomApplicationDraftDataInput;
|
|
2483
2483
|
applicationId: Scalars['ID'];
|
|
2484
2484
|
}>;
|
|
2485
|
-
export
|
|
2485
|
+
export type TUpdateCustomApplicationFromCliMutation = {
|
|
2486
2486
|
__typename?: 'Mutation';
|
|
2487
2487
|
updateCustomApplication?: {
|
|
2488
2488
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|