@commercetools-frontend/application-shell-connectors 22.2.0 → 22.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commercetools-frontend-application-shell-connectors.cjs.dev.js +42 -77
- package/dist/commercetools-frontend-application-shell-connectors.cjs.prod.js +41 -76
- package/dist/commercetools-frontend-application-shell-connectors.esm.js +42 -77
- package/dist/declarations/src/components/application-context/application-context.d.ts +2 -2
- package/dist/declarations/src/components/project-extension-image-regex/project-extension-image-regex.d.ts +3 -3
- package/dist/declarations/src/types/generated/settings.d.ts +89 -1151
- package/package.json +26 -9
- package/test-utils/dist/commercetools-frontend-application-shell-connectors-test-utils.cjs.dev.js +0 -1
- package/test-utils/dist/commercetools-frontend-application-shell-connectors-test-utils.cjs.prod.js +0 -1
- package/test-utils/dist/commercetools-frontend-application-shell-connectors-test-utils.esm.js +0 -1
|
@@ -34,59 +34,12 @@ export type TApplicationExtension = {
|
|
|
34
34
|
updatedAt: Scalars['DateTime'];
|
|
35
35
|
url: Scalars['String'];
|
|
36
36
|
};
|
|
37
|
-
export type TApplicationExtensionDataInput = {
|
|
38
|
-
description?: InputMaybe<Scalars['String']>;
|
|
39
|
-
name: Scalars['String'];
|
|
40
|
-
navbarMenu: TApplicationExtensionNavbarMenuDataInput;
|
|
41
|
-
oAuthScopes?: InputMaybe<Array<Scalars['String']>>;
|
|
42
|
-
url: Scalars['String'];
|
|
43
|
-
};
|
|
44
|
-
export type TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport = {
|
|
45
|
-
__typename?: 'ApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport';
|
|
46
|
-
entryPointUriPath: Scalars['String'];
|
|
47
|
-
id: Scalars['ID'];
|
|
48
|
-
isActive: Scalars['Boolean'];
|
|
49
|
-
migratedTo: Array<TApplicationExtensionMigrationMatchingScore>;
|
|
50
|
-
name: Scalars['String'];
|
|
51
|
-
url: Scalars['String'];
|
|
52
|
-
};
|
|
53
|
-
export type TApplicationExtensionMigrationMatchingScore = {
|
|
54
|
-
__typename?: 'ApplicationExtensionMigrationMatchingScore';
|
|
55
|
-
applicationId: Scalars['String'];
|
|
56
|
-
matchByEntryPointUriPath: TMigrationMatchingScore;
|
|
57
|
-
matchByName: TMigrationMatchingScore;
|
|
58
|
-
matchByUrl: TMigrationMatchingScore;
|
|
59
|
-
};
|
|
60
|
-
export type TApplicationExtensionNavbarMenuDataInput = {
|
|
61
|
-
featureToggle?: InputMaybe<Scalars['String']>;
|
|
62
|
-
icon: Scalars['String'];
|
|
63
|
-
key: Scalars['String'];
|
|
64
|
-
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
65
|
-
permissions: Array<TOAuthScope>;
|
|
66
|
-
submenu: Array<TApplicationExtensionNavbarSubmenuDataInput>;
|
|
67
|
-
uriPath: Scalars['String'];
|
|
68
|
-
};
|
|
69
|
-
export type TApplicationExtensionNavbarSubmenuDataInput = {
|
|
70
|
-
featureToggle?: InputMaybe<Scalars['String']>;
|
|
71
|
-
key: Scalars['String'];
|
|
72
|
-
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
73
|
-
permissions: Array<TOAuthScope>;
|
|
74
|
-
uriPath: Scalars['String'];
|
|
75
|
-
};
|
|
76
|
-
export type TApplicationInfoForLegacyCustomApplicationsMigrationReport = {
|
|
77
|
-
__typename?: 'ApplicationInfoForLegacyCustomApplicationsMigrationReport';
|
|
78
|
-
entryPointUriPath: Scalars['String'];
|
|
79
|
-
id: Scalars['ID'];
|
|
80
|
-
name: Scalars['String'];
|
|
81
|
-
url: Scalars['String'];
|
|
82
|
-
};
|
|
83
37
|
export declare enum TAuthPermission {
|
|
84
38
|
AccessToProject = "accessToProject",
|
|
85
39
|
LoggedInUser = "loggedInUser",
|
|
86
40
|
ManageMyOrganizations = "manageMyOrganizations",
|
|
87
41
|
ManageProjectSettings = "manageProjectSettings",
|
|
88
42
|
PerformDataCleanups = "performDataCleanups",
|
|
89
|
-
PerformMigrations = "performMigrations",
|
|
90
43
|
ViewCartDiscounts = "viewCartDiscounts",
|
|
91
44
|
ViewCustomers = "viewCustomers",
|
|
92
45
|
ViewDiscountCodes = "viewDiscountCodes",
|
|
@@ -107,43 +60,6 @@ export type TAverageOrderValueConfiguration = {
|
|
|
107
60
|
export type TAverageOrderValueConfigurationInput = {
|
|
108
61
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
109
62
|
};
|
|
110
|
-
export type TAverageOrderValueConfigurationWhereInput = {
|
|
111
|
-
AND?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
112
|
-
NOT?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
113
|
-
OR?: InputMaybe<Array<TAverageOrderValueConfigurationWhereInput>>;
|
|
114
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
115
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
116
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
117
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
118
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
119
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
120
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
121
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
122
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
123
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
124
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
125
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
126
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
127
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
128
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
129
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
130
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
131
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
132
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
133
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
134
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
135
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
136
|
-
showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
|
|
137
|
-
showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
|
|
138
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
139
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
140
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
141
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
142
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
143
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
144
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
145
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
146
|
-
};
|
|
147
63
|
export declare enum TBestSellingLimit {
|
|
148
64
|
Fifteen = "FIFTEEN",
|
|
149
65
|
Five = "FIVE",
|
|
@@ -180,6 +96,7 @@ export type TContactInformationDataInput = {
|
|
|
180
96
|
export type TCustomApplication = {
|
|
181
97
|
__typename?: 'CustomApplication';
|
|
182
98
|
createdAt: Scalars['DateTime'];
|
|
99
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
183
100
|
description?: Maybe<Scalars['String']>;
|
|
184
101
|
entryPointUriPath: Scalars['String'];
|
|
185
102
|
icon: Scalars['String'];
|
|
@@ -195,6 +112,27 @@ export type TCustomApplication = {
|
|
|
195
112
|
updatedAt: Scalars['DateTime'];
|
|
196
113
|
url: Scalars['String'];
|
|
197
114
|
};
|
|
115
|
+
export type TCustomApplication_DeploymentsArgs = {
|
|
116
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
117
|
+
};
|
|
118
|
+
export type TCustomApplicationDeploymentPreview = {
|
|
119
|
+
__typename?: 'CustomApplicationDeploymentPreview';
|
|
120
|
+
alias?: Maybe<Scalars['String']>;
|
|
121
|
+
createdAt: Scalars['DateTime'];
|
|
122
|
+
id: Scalars['ID'];
|
|
123
|
+
updatedAt: Scalars['DateTime'];
|
|
124
|
+
url: Scalars['String'];
|
|
125
|
+
};
|
|
126
|
+
export type TCustomApplicationDeploymentPreviewCreateInput = {
|
|
127
|
+
alias?: InputMaybe<Scalars['String']>;
|
|
128
|
+
url: Scalars['String'];
|
|
129
|
+
};
|
|
130
|
+
export type TCustomApplicationDeploymentPreviewUpdateInput = {
|
|
131
|
+
url: Scalars['String'];
|
|
132
|
+
};
|
|
133
|
+
export type TCustomApplicationDeploymentPreviewsQueryInput = {
|
|
134
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
135
|
+
};
|
|
198
136
|
export type TCustomApplicationDraftDataInput = {
|
|
199
137
|
description?: InputMaybe<Scalars['String']>;
|
|
200
138
|
entryPointUriPath: Scalars['String'];
|
|
@@ -307,7 +245,6 @@ export type TCustomersListView = {
|
|
|
307
245
|
filters?: Maybe<Array<TFilterValues>>;
|
|
308
246
|
id: Scalars['ID'];
|
|
309
247
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
310
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
311
248
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
312
249
|
projectKey: Scalars['String'];
|
|
313
250
|
search?: Maybe<Scalars['String']>;
|
|
@@ -316,24 +253,6 @@ export type TCustomersListView = {
|
|
|
316
253
|
updatedAt: Scalars['DateTime'];
|
|
317
254
|
userId: Scalars['String'];
|
|
318
255
|
};
|
|
319
|
-
export type TCustomersListView_FiltersArgs = {
|
|
320
|
-
after?: InputMaybe<Scalars['String']>;
|
|
321
|
-
before?: InputMaybe<Scalars['String']>;
|
|
322
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
323
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
324
|
-
orderBy?: InputMaybe<TFilterValuesOrderByInput>;
|
|
325
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
326
|
-
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
327
|
-
};
|
|
328
|
-
export type TCustomersListView_NameAllLocalesArgs = {
|
|
329
|
-
after?: InputMaybe<Scalars['String']>;
|
|
330
|
-
before?: InputMaybe<Scalars['String']>;
|
|
331
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
332
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
333
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
334
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
335
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
336
|
-
};
|
|
337
256
|
export type TCustomersListViewInput = {
|
|
338
257
|
filters: Array<TFilterValuesCreateInput>;
|
|
339
258
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -351,31 +270,12 @@ export type TDashboardView = {
|
|
|
351
270
|
id: Scalars['ID'];
|
|
352
271
|
isActive: Scalars['Boolean'];
|
|
353
272
|
layout?: Maybe<Array<TLayoutCard>>;
|
|
354
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
355
273
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
356
274
|
projectKey: Scalars['String'];
|
|
357
275
|
timeZone?: Maybe<Scalars['String']>;
|
|
358
276
|
updatedAt: Scalars['DateTime'];
|
|
359
277
|
userId: Scalars['String'];
|
|
360
278
|
};
|
|
361
|
-
export type TDashboardView_LayoutArgs = {
|
|
362
|
-
after?: InputMaybe<Scalars['String']>;
|
|
363
|
-
before?: InputMaybe<Scalars['String']>;
|
|
364
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
365
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
366
|
-
orderBy?: InputMaybe<TLayoutCardOrderByInput>;
|
|
367
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
368
|
-
where?: InputMaybe<TLayoutCardWhereInput>;
|
|
369
|
-
};
|
|
370
|
-
export type TDashboardView_NameAllLocalesArgs = {
|
|
371
|
-
after?: InputMaybe<Scalars['String']>;
|
|
372
|
-
before?: InputMaybe<Scalars['String']>;
|
|
373
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
374
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
375
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
376
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
377
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
378
|
-
};
|
|
379
279
|
export type TDashboardViewInput = {
|
|
380
280
|
currencyCode?: InputMaybe<Scalars['String']>;
|
|
381
281
|
layout: Array<TLayoutCardInput>;
|
|
@@ -401,7 +301,6 @@ export type TDiscountsCustomView = {
|
|
|
401
301
|
filters?: Maybe<Array<TFilterValues>>;
|
|
402
302
|
id: Scalars['ID'];
|
|
403
303
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
404
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
405
304
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
406
305
|
projectKey: Scalars['String'];
|
|
407
306
|
search?: Maybe<Scalars['String']>;
|
|
@@ -411,24 +310,6 @@ export type TDiscountsCustomView = {
|
|
|
411
310
|
updatedAt: Scalars['DateTime'];
|
|
412
311
|
userId: Scalars['String'];
|
|
413
312
|
};
|
|
414
|
-
export type TDiscountsCustomView_FiltersArgs = {
|
|
415
|
-
after?: InputMaybe<Scalars['String']>;
|
|
416
|
-
before?: InputMaybe<Scalars['String']>;
|
|
417
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
418
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
419
|
-
orderBy?: InputMaybe<TFilterValuesOrderByInput>;
|
|
420
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
421
|
-
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
422
|
-
};
|
|
423
|
-
export type TDiscountsCustomView_NameAllLocalesArgs = {
|
|
424
|
-
after?: InputMaybe<Scalars['String']>;
|
|
425
|
-
before?: InputMaybe<Scalars['String']>;
|
|
426
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
427
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
428
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
429
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
430
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
431
|
-
};
|
|
432
313
|
export type TDiscountsCustomViewInput = {
|
|
433
314
|
filters: Array<TFilterValuesCreateInput>;
|
|
434
315
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -441,6 +322,16 @@ export declare enum TExistence {
|
|
|
441
322
|
Empty = "Empty",
|
|
442
323
|
Filled = "Filled"
|
|
443
324
|
}
|
|
325
|
+
export type TFeature = {
|
|
326
|
+
__typename?: 'Feature';
|
|
327
|
+
name: Scalars['String'];
|
|
328
|
+
reason?: Maybe<Scalars['String']>;
|
|
329
|
+
value: Scalars['Boolean'];
|
|
330
|
+
};
|
|
331
|
+
export type TFeatureQueryInput = {
|
|
332
|
+
organizationId?: InputMaybe<Scalars['String']>;
|
|
333
|
+
projectKey?: InputMaybe<Scalars['String']>;
|
|
334
|
+
};
|
|
444
335
|
export declare enum TFilterType {
|
|
445
336
|
CustomField = "CustomField",
|
|
446
337
|
EqualTo = "EqualTo",
|
|
@@ -466,73 +357,6 @@ export type TFilterValuesCreateInput = {
|
|
|
466
357
|
target: Scalars['String'];
|
|
467
358
|
type: TFilterType;
|
|
468
359
|
};
|
|
469
|
-
export declare enum TFilterValuesOrderByInput {
|
|
470
|
-
CreatedAtAsc = "createdAt_ASC",
|
|
471
|
-
CreatedAtDesc = "createdAt_DESC",
|
|
472
|
-
IdAsc = "id_ASC",
|
|
473
|
-
IdDesc = "id_DESC",
|
|
474
|
-
JsonAsc = "json_ASC",
|
|
475
|
-
JsonDesc = "json_DESC",
|
|
476
|
-
TargetAsc = "target_ASC",
|
|
477
|
-
TargetDesc = "target_DESC",
|
|
478
|
-
TypeAsc = "type_ASC",
|
|
479
|
-
TypeDesc = "type_DESC",
|
|
480
|
-
UpdatedAtAsc = "updatedAt_ASC",
|
|
481
|
-
UpdatedAtDesc = "updatedAt_DESC"
|
|
482
|
-
}
|
|
483
|
-
export type TFilterValuesWhereInput = {
|
|
484
|
-
AND?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
485
|
-
NOT?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
486
|
-
OR?: InputMaybe<Array<TFilterValuesWhereInput>>;
|
|
487
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
488
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
489
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
490
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
491
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
492
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
493
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
494
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
495
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
496
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
497
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
498
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
499
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
500
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
501
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
502
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
503
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
504
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
505
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
506
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
507
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
508
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
509
|
-
target?: InputMaybe<Scalars['String']>;
|
|
510
|
-
target_contains?: InputMaybe<Scalars['String']>;
|
|
511
|
-
target_ends_with?: InputMaybe<Scalars['String']>;
|
|
512
|
-
target_gt?: InputMaybe<Scalars['String']>;
|
|
513
|
-
target_gte?: InputMaybe<Scalars['String']>;
|
|
514
|
-
target_in?: InputMaybe<Array<Scalars['String']>>;
|
|
515
|
-
target_lt?: InputMaybe<Scalars['String']>;
|
|
516
|
-
target_lte?: InputMaybe<Scalars['String']>;
|
|
517
|
-
target_not?: InputMaybe<Scalars['String']>;
|
|
518
|
-
target_not_contains?: InputMaybe<Scalars['String']>;
|
|
519
|
-
target_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
520
|
-
target_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
521
|
-
target_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
522
|
-
target_starts_with?: InputMaybe<Scalars['String']>;
|
|
523
|
-
type?: InputMaybe<TFilterType>;
|
|
524
|
-
type_in?: InputMaybe<Array<TFilterType>>;
|
|
525
|
-
type_not?: InputMaybe<TFilterType>;
|
|
526
|
-
type_not_in?: InputMaybe<Array<TFilterType>>;
|
|
527
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
528
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
529
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
530
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
531
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
532
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
533
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
534
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
535
|
-
};
|
|
536
360
|
export type TImageRegex = {
|
|
537
361
|
__typename?: 'ImageRegex';
|
|
538
362
|
createdAt: Scalars['DateTime'];
|
|
@@ -580,15 +404,6 @@ export type TLayoutCard = {
|
|
|
580
404
|
xPosition: Scalars['Int'];
|
|
581
405
|
yPosition: Scalars['Int'];
|
|
582
406
|
};
|
|
583
|
-
export type TLayoutCard_NameAllLocalesArgs = {
|
|
584
|
-
after?: InputMaybe<Scalars['String']>;
|
|
585
|
-
before?: InputMaybe<Scalars['String']>;
|
|
586
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
587
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
588
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
589
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
590
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
591
|
-
};
|
|
592
407
|
export type TLayoutCardInput = {
|
|
593
408
|
averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationInput>;
|
|
594
409
|
height: Scalars['Int'];
|
|
@@ -610,186 +425,6 @@ export type TLayoutCardInput = {
|
|
|
610
425
|
xPosition: Scalars['Int'];
|
|
611
426
|
yPosition: Scalars['Int'];
|
|
612
427
|
};
|
|
613
|
-
export declare enum TLayoutCardOrderByInput {
|
|
614
|
-
CreatedAtAsc = "createdAt_ASC",
|
|
615
|
-
CreatedAtDesc = "createdAt_DESC",
|
|
616
|
-
HeightAsc = "height_ASC",
|
|
617
|
-
HeightDesc = "height_DESC",
|
|
618
|
-
IdAsc = "id_ASC",
|
|
619
|
-
IdDesc = "id_DESC",
|
|
620
|
-
KeyAsc = "key_ASC",
|
|
621
|
-
KeyDesc = "key_DESC",
|
|
622
|
-
MaxHeightAsc = "maxHeight_ASC",
|
|
623
|
-
MaxHeightDesc = "maxHeight_DESC",
|
|
624
|
-
MaxWidthAsc = "maxWidth_ASC",
|
|
625
|
-
MaxWidthDesc = "maxWidth_DESC",
|
|
626
|
-
MinHeightAsc = "minHeight_ASC",
|
|
627
|
-
MinHeightDesc = "minHeight_DESC",
|
|
628
|
-
MinWidthAsc = "minWidth_ASC",
|
|
629
|
-
MinWidthDesc = "minWidth_DESC",
|
|
630
|
-
UpdatedAtAsc = "updatedAt_ASC",
|
|
631
|
-
UpdatedAtDesc = "updatedAt_DESC",
|
|
632
|
-
WidthAsc = "width_ASC",
|
|
633
|
-
WidthDesc = "width_DESC",
|
|
634
|
-
XPositionAsc = "xPosition_ASC",
|
|
635
|
-
XPositionDesc = "xPosition_DESC",
|
|
636
|
-
YPositionAsc = "yPosition_ASC",
|
|
637
|
-
YPositionDesc = "yPosition_DESC"
|
|
638
|
-
}
|
|
639
|
-
export type TLayoutCardWhereInput = {
|
|
640
|
-
AND?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
641
|
-
NOT?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
642
|
-
OR?: InputMaybe<Array<TLayoutCardWhereInput>>;
|
|
643
|
-
averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationWhereInput>;
|
|
644
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
645
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
646
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
647
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
648
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
649
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
650
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
651
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
652
|
-
height?: InputMaybe<Scalars['Int']>;
|
|
653
|
-
height_gt?: InputMaybe<Scalars['Int']>;
|
|
654
|
-
height_gte?: InputMaybe<Scalars['Int']>;
|
|
655
|
-
height_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
656
|
-
height_lt?: InputMaybe<Scalars['Int']>;
|
|
657
|
-
height_lte?: InputMaybe<Scalars['Int']>;
|
|
658
|
-
height_not?: InputMaybe<Scalars['Int']>;
|
|
659
|
-
height_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
660
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
661
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
662
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
663
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
664
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
665
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
666
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
667
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
668
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
669
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
670
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
671
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
672
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
673
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
674
|
-
key?: InputMaybe<TMetricCardType>;
|
|
675
|
-
key_in?: InputMaybe<Array<TMetricCardType>>;
|
|
676
|
-
key_not?: InputMaybe<TMetricCardType>;
|
|
677
|
-
key_not_in?: InputMaybe<Array<TMetricCardType>>;
|
|
678
|
-
maxHeight?: InputMaybe<Scalars['Int']>;
|
|
679
|
-
maxHeight_gt?: InputMaybe<Scalars['Int']>;
|
|
680
|
-
maxHeight_gte?: InputMaybe<Scalars['Int']>;
|
|
681
|
-
maxHeight_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
682
|
-
maxHeight_lt?: InputMaybe<Scalars['Int']>;
|
|
683
|
-
maxHeight_lte?: InputMaybe<Scalars['Int']>;
|
|
684
|
-
maxHeight_not?: InputMaybe<Scalars['Int']>;
|
|
685
|
-
maxHeight_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
686
|
-
maxWidth?: InputMaybe<Scalars['Int']>;
|
|
687
|
-
maxWidth_gt?: InputMaybe<Scalars['Int']>;
|
|
688
|
-
maxWidth_gte?: InputMaybe<Scalars['Int']>;
|
|
689
|
-
maxWidth_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
690
|
-
maxWidth_lt?: InputMaybe<Scalars['Int']>;
|
|
691
|
-
maxWidth_lte?: InputMaybe<Scalars['Int']>;
|
|
692
|
-
maxWidth_not?: InputMaybe<Scalars['Int']>;
|
|
693
|
-
maxWidth_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
694
|
-
minHeight?: InputMaybe<Scalars['Int']>;
|
|
695
|
-
minHeight_gt?: InputMaybe<Scalars['Int']>;
|
|
696
|
-
minHeight_gte?: InputMaybe<Scalars['Int']>;
|
|
697
|
-
minHeight_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
698
|
-
minHeight_lt?: InputMaybe<Scalars['Int']>;
|
|
699
|
-
minHeight_lte?: InputMaybe<Scalars['Int']>;
|
|
700
|
-
minHeight_not?: InputMaybe<Scalars['Int']>;
|
|
701
|
-
minHeight_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
702
|
-
minWidth?: InputMaybe<Scalars['Int']>;
|
|
703
|
-
minWidth_gt?: InputMaybe<Scalars['Int']>;
|
|
704
|
-
minWidth_gte?: InputMaybe<Scalars['Int']>;
|
|
705
|
-
minWidth_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
706
|
-
minWidth_lt?: InputMaybe<Scalars['Int']>;
|
|
707
|
-
minWidth_lte?: InputMaybe<Scalars['Int']>;
|
|
708
|
-
minWidth_not?: InputMaybe<Scalars['Int']>;
|
|
709
|
-
minWidth_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
710
|
-
nameAllLocales_every?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
711
|
-
nameAllLocales_none?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
712
|
-
nameAllLocales_some?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
713
|
-
orderStatusConfiguration?: InputMaybe<TOrderStatusConfigurationWhereInput>;
|
|
714
|
-
resourcesNumbersConfiguration?: InputMaybe<TResourcesNumbersConfigurationWhereInput>;
|
|
715
|
-
salesPerformanceConfiguration?: InputMaybe<TSalesPerformanceConfigurationWhereInput>;
|
|
716
|
-
topProductsConfiguration?: InputMaybe<TTopProductsConfigurationWhereInput>;
|
|
717
|
-
totalOrdersConfiguration?: InputMaybe<TTotalOrdersConfigurationWhereInput>;
|
|
718
|
-
totalSalesConfiguration?: InputMaybe<TTotalSalesConfigurationWhereInput>;
|
|
719
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
720
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
721
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
722
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
723
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
724
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
725
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
726
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
727
|
-
width?: InputMaybe<Scalars['Int']>;
|
|
728
|
-
width_gt?: InputMaybe<Scalars['Int']>;
|
|
729
|
-
width_gte?: InputMaybe<Scalars['Int']>;
|
|
730
|
-
width_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
731
|
-
width_lt?: InputMaybe<Scalars['Int']>;
|
|
732
|
-
width_lte?: InputMaybe<Scalars['Int']>;
|
|
733
|
-
width_not?: InputMaybe<Scalars['Int']>;
|
|
734
|
-
width_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
735
|
-
xPosition?: InputMaybe<Scalars['Int']>;
|
|
736
|
-
xPosition_gt?: InputMaybe<Scalars['Int']>;
|
|
737
|
-
xPosition_gte?: InputMaybe<Scalars['Int']>;
|
|
738
|
-
xPosition_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
739
|
-
xPosition_lt?: InputMaybe<Scalars['Int']>;
|
|
740
|
-
xPosition_lte?: InputMaybe<Scalars['Int']>;
|
|
741
|
-
xPosition_not?: InputMaybe<Scalars['Int']>;
|
|
742
|
-
xPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
743
|
-
yPosition?: InputMaybe<Scalars['Int']>;
|
|
744
|
-
yPosition_gt?: InputMaybe<Scalars['Int']>;
|
|
745
|
-
yPosition_gte?: InputMaybe<Scalars['Int']>;
|
|
746
|
-
yPosition_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
747
|
-
yPosition_lt?: InputMaybe<Scalars['Int']>;
|
|
748
|
-
yPosition_lte?: InputMaybe<Scalars['Int']>;
|
|
749
|
-
yPosition_not?: InputMaybe<Scalars['Int']>;
|
|
750
|
-
yPosition_not_in?: InputMaybe<Array<Scalars['Int']>>;
|
|
751
|
-
};
|
|
752
|
-
export type TLegacyCustomApplication = {
|
|
753
|
-
__typename?: 'LegacyCustomApplication';
|
|
754
|
-
createdAt: Scalars['DateTime'];
|
|
755
|
-
description?: Maybe<Scalars['String']>;
|
|
756
|
-
id: Scalars['ID'];
|
|
757
|
-
isActive?: Maybe<Scalars['Boolean']>;
|
|
758
|
-
name: Scalars['String'];
|
|
759
|
-
navbarMenu?: Maybe<TNavbarMenu>;
|
|
760
|
-
oAuthScopes: Array<Scalars['String']>;
|
|
761
|
-
project: TProjectExtension;
|
|
762
|
-
updatedAt: Scalars['DateTime'];
|
|
763
|
-
url: Scalars['String'];
|
|
764
|
-
};
|
|
765
|
-
export type TLegacyCustomApplicationQueryInput = {
|
|
766
|
-
limit?: InputMaybe<Scalars['Int']>;
|
|
767
|
-
offset?: InputMaybe<Scalars['Int']>;
|
|
768
|
-
sort?: InputMaybe<Scalars['String']>;
|
|
769
|
-
where?: InputMaybe<TLegacyCustomApplicationQueryWhereInput>;
|
|
770
|
-
};
|
|
771
|
-
export type TLegacyCustomApplicationQueryWhereInput = {
|
|
772
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
773
|
-
name?: InputMaybe<Scalars['String']>;
|
|
774
|
-
projectKey?: InputMaybe<Scalars['String']>;
|
|
775
|
-
uriPath?: InputMaybe<Scalars['String']>;
|
|
776
|
-
};
|
|
777
|
-
export type TLegacyCustomApplicationsMigrationReport = {
|
|
778
|
-
__typename?: 'LegacyCustomApplicationsMigrationReport';
|
|
779
|
-
applications: Array<TApplicationInfoForLegacyCustomApplicationsMigrationReport>;
|
|
780
|
-
organizationExtensionId?: Maybe<Scalars['ID']>;
|
|
781
|
-
organizationId: Scalars['String'];
|
|
782
|
-
organizationName?: Maybe<Scalars['String']>;
|
|
783
|
-
projects: Array<TProjectInfoForLegacyCustomApplicationsMigrationReport>;
|
|
784
|
-
};
|
|
785
|
-
export type TLegacyCustomApplicationsPagedQueryResult = {
|
|
786
|
-
__typename?: 'LegacyCustomApplicationsPagedQueryResult';
|
|
787
|
-
count: Scalars['Int'];
|
|
788
|
-
limit: Scalars['Int'];
|
|
789
|
-
offset: Scalars['Int'];
|
|
790
|
-
results: Array<TLegacyCustomApplication>;
|
|
791
|
-
total: Scalars['Int'];
|
|
792
|
-
};
|
|
793
428
|
export type TLocalizedField = {
|
|
794
429
|
__typename?: 'LocalizedField';
|
|
795
430
|
locale: Scalars['String'];
|
|
@@ -804,81 +439,6 @@ export type TLocalizedFieldDataInput = {
|
|
|
804
439
|
locale: Scalars['String'];
|
|
805
440
|
value: Scalars['String'];
|
|
806
441
|
};
|
|
807
|
-
export declare enum TLocalizedFieldOrderByInput {
|
|
808
|
-
CreatedAtAsc = "createdAt_ASC",
|
|
809
|
-
CreatedAtDesc = "createdAt_DESC",
|
|
810
|
-
IdAsc = "id_ASC",
|
|
811
|
-
IdDesc = "id_DESC",
|
|
812
|
-
LocaleAsc = "locale_ASC",
|
|
813
|
-
LocaleDesc = "locale_DESC",
|
|
814
|
-
UpdatedAtAsc = "updatedAt_ASC",
|
|
815
|
-
UpdatedAtDesc = "updatedAt_DESC",
|
|
816
|
-
ValueAsc = "value_ASC",
|
|
817
|
-
ValueDesc = "value_DESC"
|
|
818
|
-
}
|
|
819
|
-
export type TLocalizedFieldWhereInput = {
|
|
820
|
-
AND?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
821
|
-
NOT?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
822
|
-
OR?: InputMaybe<Array<TLocalizedFieldWhereInput>>;
|
|
823
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
824
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
825
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
826
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
827
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
828
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
829
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
830
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
831
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
832
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
833
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
834
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
835
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
836
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
837
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
838
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
839
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
840
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
841
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
842
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
843
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
844
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
845
|
-
locale?: InputMaybe<Scalars['String']>;
|
|
846
|
-
locale_contains?: InputMaybe<Scalars['String']>;
|
|
847
|
-
locale_ends_with?: InputMaybe<Scalars['String']>;
|
|
848
|
-
locale_gt?: InputMaybe<Scalars['String']>;
|
|
849
|
-
locale_gte?: InputMaybe<Scalars['String']>;
|
|
850
|
-
locale_in?: InputMaybe<Array<Scalars['String']>>;
|
|
851
|
-
locale_lt?: InputMaybe<Scalars['String']>;
|
|
852
|
-
locale_lte?: InputMaybe<Scalars['String']>;
|
|
853
|
-
locale_not?: InputMaybe<Scalars['String']>;
|
|
854
|
-
locale_not_contains?: InputMaybe<Scalars['String']>;
|
|
855
|
-
locale_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
856
|
-
locale_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
857
|
-
locale_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
858
|
-
locale_starts_with?: InputMaybe<Scalars['String']>;
|
|
859
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
860
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
861
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
862
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
863
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
864
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
865
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
866
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
867
|
-
value?: InputMaybe<Scalars['String']>;
|
|
868
|
-
value_contains?: InputMaybe<Scalars['String']>;
|
|
869
|
-
value_ends_with?: InputMaybe<Scalars['String']>;
|
|
870
|
-
value_gt?: InputMaybe<Scalars['String']>;
|
|
871
|
-
value_gte?: InputMaybe<Scalars['String']>;
|
|
872
|
-
value_in?: InputMaybe<Array<Scalars['String']>>;
|
|
873
|
-
value_lt?: InputMaybe<Scalars['String']>;
|
|
874
|
-
value_lte?: InputMaybe<Scalars['String']>;
|
|
875
|
-
value_not?: InputMaybe<Scalars['String']>;
|
|
876
|
-
value_not_contains?: InputMaybe<Scalars['String']>;
|
|
877
|
-
value_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
878
|
-
value_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
879
|
-
value_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
880
|
-
value_starts_with?: InputMaybe<Scalars['String']>;
|
|
881
|
-
};
|
|
882
442
|
export declare enum TMetricCardType {
|
|
883
443
|
AverageOrderValue = "AVERAGE_ORDER_VALUE",
|
|
884
444
|
OrderStatus = "ORDER_STATUS",
|
|
@@ -894,13 +454,6 @@ export type TMigrationMatchingScore = {
|
|
|
894
454
|
matchTo: Scalars['String'];
|
|
895
455
|
score: Scalars['Float'];
|
|
896
456
|
};
|
|
897
|
-
export type TMigrationResult = {
|
|
898
|
-
__typename?: 'MigrationResult';
|
|
899
|
-
failed: Scalars['Int'];
|
|
900
|
-
failedIds?: Maybe<Array<Scalars['ID']>>;
|
|
901
|
-
skipped: Scalars['Int'];
|
|
902
|
-
succeeded: Scalars['Int'];
|
|
903
|
-
};
|
|
904
457
|
export type TMutation = {
|
|
905
458
|
__typename?: 'Mutation';
|
|
906
459
|
activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
@@ -912,10 +465,10 @@ export type TMutation = {
|
|
|
912
465
|
activatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
913
466
|
activateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
914
467
|
activateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
915
|
-
activateProjectExtensionApplication?: Maybe<TProjectExtension>;
|
|
916
468
|
changeCustomApplicationStatus?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
917
469
|
createCartDiscountsCustomView: TDiscountsCustomView;
|
|
918
470
|
createCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
471
|
+
createCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
919
472
|
createCustomersListView: TCustomersListView;
|
|
920
473
|
createDashboardView: TDashboardView;
|
|
921
474
|
createDiscountCodesCustomView: TDiscountsCustomView;
|
|
@@ -933,11 +486,11 @@ export type TMutation = {
|
|
|
933
486
|
deactivatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
934
487
|
deactivateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
935
488
|
deactivateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
936
|
-
deactivateProjectExtensionApplication?: Maybe<TProjectExtension>;
|
|
937
489
|
deleteAllDashboardViews: Array<TDashboardView>;
|
|
938
490
|
deleteAllOrdersListViews: Array<TOrdersListView>;
|
|
939
491
|
deleteCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
940
492
|
deleteCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
493
|
+
deleteCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
941
494
|
deleteCustomersListView?: Maybe<TCustomersListView>;
|
|
942
495
|
deleteDashboardView?: Maybe<TDashboardView>;
|
|
943
496
|
deleteDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
@@ -945,26 +498,8 @@ export type TMutation = {
|
|
|
945
498
|
deletePimSearchListView?: Maybe<TPimSearchListView>;
|
|
946
499
|
deleteProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
947
500
|
deleteProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
948
|
-
deleteProjectExtensionApplication?: Maybe<TProjectExtension>;
|
|
949
501
|
installCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
950
|
-
|
|
951
|
-
migrateDashboardViews?: Maybe<TMigrationResult>;
|
|
952
|
-
migrateDiscountsListViews?: Maybe<TMigrationResult>;
|
|
953
|
-
migrateOrdersListViews?: Maybe<TMigrationResult>;
|
|
954
|
-
migrateOrganizationExtensionsOidcSsoConfig: TMigrationResult;
|
|
955
|
-
migratePimSearchListViews?: Maybe<TMigrationResult>;
|
|
956
|
-
migrateProductTypeAttributesViews?: Maybe<TMigrationResult>;
|
|
957
|
-
migrateProjectExtensions: TMigrationResult;
|
|
958
|
-
migrateRuleBuilderQuickSelectionValues?: Maybe<TMigrationResult>;
|
|
959
|
-
migrateVariantPricesListViews?: Maybe<TMigrationResult>;
|
|
960
|
-
revertCustomersListViewsMigration: TReversionResult;
|
|
961
|
-
revertDashboardViewsMigration: TReversionResult;
|
|
962
|
-
revertDiscountsListViewsMigration: TReversionResult;
|
|
963
|
-
revertOrdersListViewsMigration: TReversionResult;
|
|
964
|
-
revertPimSearchListViewsMigration: TReversionResult;
|
|
965
|
-
revertProductTypeAttributesViewsMigration: TReversionResult;
|
|
966
|
-
revertRuleBuilderQuickSelectionValuesMigration: TReversionResult;
|
|
967
|
-
revertVariantPricesListViewsMigration: TReversionResult;
|
|
502
|
+
random: Scalars['String'];
|
|
968
503
|
sendLinkToVerifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationRequest>;
|
|
969
504
|
setCustomApplicationsMaintainerContactInformation?: Maybe<TOrganizationExtension>;
|
|
970
505
|
setOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
|
|
@@ -974,6 +509,7 @@ export type TMutation = {
|
|
|
974
509
|
uninstallCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
975
510
|
updateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
976
511
|
updateCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
512
|
+
updateCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
977
513
|
updateCustomApplicationProjectsInstallation?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
978
514
|
updateCustomersListView?: Maybe<TCustomersListView>;
|
|
979
515
|
updateDashboardView?: Maybe<TDashboardView>;
|
|
@@ -982,7 +518,6 @@ export type TMutation = {
|
|
|
982
518
|
updatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
983
519
|
updateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
984
520
|
updateProductTypeAttributesView: TProductTypeAttributesView;
|
|
985
|
-
updateProjectExtensionApplication?: Maybe<TProjectExtension>;
|
|
986
521
|
updateRuleBuilderQuickSelectionValues?: Maybe<TRuleBuilderQuickSelectionValues>;
|
|
987
522
|
updateVariantPricesListView?: Maybe<TVariantPricesListView>;
|
|
988
523
|
verifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationConfirmation>;
|
|
@@ -1016,9 +551,6 @@ export type TMutation_ActivateProductTypeAttributesViewArgs = {
|
|
|
1016
551
|
isVariant: Scalars['Boolean'];
|
|
1017
552
|
productTypeId: Scalars['String'];
|
|
1018
553
|
};
|
|
1019
|
-
export type TMutation_ActivateProjectExtensionApplicationArgs = {
|
|
1020
|
-
applicationId: Scalars['ID'];
|
|
1021
|
-
};
|
|
1022
554
|
export type TMutation_ChangeCustomApplicationStatusArgs = {
|
|
1023
555
|
applicationId: Scalars['ID'];
|
|
1024
556
|
organizationId: Scalars['String'];
|
|
@@ -1031,6 +563,11 @@ export type TMutation_CreateCustomApplicationArgs = {
|
|
|
1031
563
|
data: TCustomApplicationDraftDataInput;
|
|
1032
564
|
organizationId: Scalars['String'];
|
|
1033
565
|
};
|
|
566
|
+
export type TMutation_CreateCustomApplicationDeploymentPreviewArgs = {
|
|
567
|
+
applicationId: Scalars['ID'];
|
|
568
|
+
data: TCustomApplicationDeploymentPreviewCreateInput;
|
|
569
|
+
organizationId: Scalars['String'];
|
|
570
|
+
};
|
|
1034
571
|
export type TMutation_CreateCustomersListViewArgs = {
|
|
1035
572
|
data: TCustomersListViewInput;
|
|
1036
573
|
};
|
|
@@ -1082,9 +619,6 @@ export type TMutation_DeactivateProductDiscountsCustomViewArgs = {
|
|
|
1082
619
|
export type TMutation_DeactivateProductTypeAttributesViewArgs = {
|
|
1083
620
|
id: Scalars['ID'];
|
|
1084
621
|
};
|
|
1085
|
-
export type TMutation_DeactivateProjectExtensionApplicationArgs = {
|
|
1086
|
-
applicationId: Scalars['ID'];
|
|
1087
|
-
};
|
|
1088
622
|
export type TMutation_DeleteCartDiscountsCustomViewArgs = {
|
|
1089
623
|
id: Scalars['ID'];
|
|
1090
624
|
};
|
|
@@ -1092,6 +626,10 @@ export type TMutation_DeleteCustomApplicationArgs = {
|
|
|
1092
626
|
applicationId: Scalars['ID'];
|
|
1093
627
|
organizationId: Scalars['String'];
|
|
1094
628
|
};
|
|
629
|
+
export type TMutation_DeleteCustomApplicationDeploymentPreviewArgs = {
|
|
630
|
+
deploymentId: Scalars['ID'];
|
|
631
|
+
organizationId: Scalars['String'];
|
|
632
|
+
};
|
|
1095
633
|
export type TMutation_DeleteCustomersListViewArgs = {
|
|
1096
634
|
id: Scalars['ID'];
|
|
1097
635
|
};
|
|
@@ -1113,103 +651,13 @@ export type TMutation_DeleteProductDiscountsCustomViewArgs = {
|
|
|
1113
651
|
export type TMutation_DeleteProductTypeAttributesViewArgs = {
|
|
1114
652
|
id: Scalars['ID'];
|
|
1115
653
|
};
|
|
1116
|
-
export type TMutation_DeleteProjectExtensionApplicationArgs = {
|
|
1117
|
-
applicationId: Scalars['ID'];
|
|
1118
|
-
};
|
|
1119
654
|
export type TMutation_InstallCustomApplicationArgs = {
|
|
1120
655
|
applicationId: Scalars['ID'];
|
|
1121
656
|
organizationId: Scalars['String'];
|
|
1122
657
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1123
658
|
};
|
|
1124
|
-
export type
|
|
1125
|
-
|
|
1126
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1127
|
-
userEmail: Scalars['String'];
|
|
1128
|
-
};
|
|
1129
|
-
export type TMutation_MigrateDashboardViewsArgs = {
|
|
1130
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1131
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1132
|
-
userEmail: Scalars['String'];
|
|
1133
|
-
};
|
|
1134
|
-
export type TMutation_MigrateDiscountsListViewsArgs = {
|
|
1135
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1136
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1137
|
-
userEmail: Scalars['String'];
|
|
1138
|
-
};
|
|
1139
|
-
export type TMutation_MigrateOrdersListViewsArgs = {
|
|
1140
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1141
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1142
|
-
userEmail: Scalars['String'];
|
|
1143
|
-
};
|
|
1144
|
-
export type TMutation_MigrateOrganizationExtensionsOidcSsoConfigArgs = {
|
|
1145
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1146
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1147
|
-
userEmail: Scalars['String'];
|
|
1148
|
-
};
|
|
1149
|
-
export type TMutation_MigratePimSearchListViewsArgs = {
|
|
1150
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1151
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1152
|
-
userEmail: Scalars['String'];
|
|
1153
|
-
};
|
|
1154
|
-
export type TMutation_MigrateProductTypeAttributesViewsArgs = {
|
|
1155
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1156
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1157
|
-
userEmail: Scalars['String'];
|
|
1158
|
-
};
|
|
1159
|
-
export type TMutation_MigrateProjectExtensionsArgs = {
|
|
1160
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1161
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1162
|
-
userEmail: Scalars['String'];
|
|
1163
|
-
};
|
|
1164
|
-
export type TMutation_MigrateRuleBuilderQuickSelectionValuesArgs = {
|
|
1165
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1166
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1167
|
-
userEmail: Scalars['String'];
|
|
1168
|
-
};
|
|
1169
|
-
export type TMutation_MigrateVariantPricesListViewsArgs = {
|
|
1170
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1171
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1172
|
-
userEmail: Scalars['String'];
|
|
1173
|
-
};
|
|
1174
|
-
export type TMutation_RevertCustomersListViewsMigrationArgs = {
|
|
1175
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1176
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1177
|
-
userEmail: Scalars['String'];
|
|
1178
|
-
};
|
|
1179
|
-
export type TMutation_RevertDashboardViewsMigrationArgs = {
|
|
1180
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1181
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1182
|
-
userEmail: Scalars['String'];
|
|
1183
|
-
};
|
|
1184
|
-
export type TMutation_RevertDiscountsListViewsMigrationArgs = {
|
|
1185
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1186
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1187
|
-
userEmail: Scalars['String'];
|
|
1188
|
-
};
|
|
1189
|
-
export type TMutation_RevertOrdersListViewsMigrationArgs = {
|
|
1190
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1191
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1192
|
-
userEmail: Scalars['String'];
|
|
1193
|
-
};
|
|
1194
|
-
export type TMutation_RevertPimSearchListViewsMigrationArgs = {
|
|
1195
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1196
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1197
|
-
userEmail: Scalars['String'];
|
|
1198
|
-
};
|
|
1199
|
-
export type TMutation_RevertProductTypeAttributesViewsMigrationArgs = {
|
|
1200
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1201
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1202
|
-
userEmail: Scalars['String'];
|
|
1203
|
-
};
|
|
1204
|
-
export type TMutation_RevertRuleBuilderQuickSelectionValuesMigrationArgs = {
|
|
1205
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1206
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1207
|
-
userEmail: Scalars['String'];
|
|
1208
|
-
};
|
|
1209
|
-
export type TMutation_RevertVariantPricesListViewsMigrationArgs = {
|
|
1210
|
-
dryRun?: InputMaybe<Scalars['Boolean']>;
|
|
1211
|
-
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1212
|
-
userEmail: Scalars['String'];
|
|
659
|
+
export type TMutation_RandomArgs = {
|
|
660
|
+
byteLength: Scalars['Int'];
|
|
1213
661
|
};
|
|
1214
662
|
export type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1215
663
|
organizationId: Scalars['String'];
|
|
@@ -1244,6 +692,11 @@ export type TMutation_UpdateCustomApplicationArgs = {
|
|
|
1244
692
|
data: TCustomApplicationDraftDataInput;
|
|
1245
693
|
organizationId: Scalars['String'];
|
|
1246
694
|
};
|
|
695
|
+
export type TMutation_UpdateCustomApplicationDeploymentPreviewArgs = {
|
|
696
|
+
data: TCustomApplicationDeploymentPreviewUpdateInput;
|
|
697
|
+
deploymentId: Scalars['ID'];
|
|
698
|
+
organizationId: Scalars['String'];
|
|
699
|
+
};
|
|
1247
700
|
export type TMutation_UpdateCustomApplicationProjectsInstallationArgs = {
|
|
1248
701
|
installedApplicationId: Scalars['ID'];
|
|
1249
702
|
organizationId: Scalars['String'];
|
|
@@ -1277,10 +730,6 @@ export type TMutation_UpdateProductTypeAttributesViewArgs = {
|
|
|
1277
730
|
data: TProductTypeAttributesViewUpdateInput;
|
|
1278
731
|
id: Scalars['ID'];
|
|
1279
732
|
};
|
|
1280
|
-
export type TMutation_UpdateProjectExtensionApplicationArgs = {
|
|
1281
|
-
applicationId: Scalars['ID'];
|
|
1282
|
-
data: TApplicationExtensionDataInput;
|
|
1283
|
-
};
|
|
1284
733
|
export type TMutation_UpdateRuleBuilderQuickSelectionValuesArgs = {
|
|
1285
734
|
data: TRuleBuilderQuickSelectionInput;
|
|
1286
735
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -1322,144 +771,23 @@ export type TNavbarMenu = {
|
|
|
1322
771
|
icon: Scalars['String'];
|
|
1323
772
|
id: Scalars['ID'];
|
|
1324
773
|
key: Scalars['String'];
|
|
1325
|
-
labelAllLocales
|
|
774
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
1326
775
|
permissions: Array<TOAuthScope>;
|
|
1327
|
-
submenu
|
|
776
|
+
submenu: Array<TNavbarSubmenu>;
|
|
1328
777
|
updatedAt: Scalars['DateTime'];
|
|
1329
778
|
uriPath: Scalars['String'];
|
|
1330
779
|
};
|
|
1331
|
-
export type TNavbarMenu_LabelAllLocalesArgs = {
|
|
1332
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1333
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1334
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1335
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1336
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
1337
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1338
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1339
|
-
};
|
|
1340
|
-
export type TNavbarMenu_SubmenuArgs = {
|
|
1341
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1342
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1343
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1344
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1345
|
-
orderBy?: InputMaybe<TNavbarSubmenuOrderByInput>;
|
|
1346
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1347
|
-
where?: InputMaybe<TNavbarSubmenuWhereInput>;
|
|
1348
|
-
};
|
|
1349
780
|
export type TNavbarSubmenu = {
|
|
1350
781
|
__typename?: 'NavbarSubmenu';
|
|
1351
782
|
createdAt: Scalars['DateTime'];
|
|
1352
783
|
featureToggle?: Maybe<Scalars['String']>;
|
|
1353
784
|
id: Scalars['ID'];
|
|
1354
785
|
key: Scalars['String'];
|
|
1355
|
-
labelAllLocales
|
|
786
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
1356
787
|
permissions: Array<TOAuthScope>;
|
|
1357
788
|
updatedAt: Scalars['DateTime'];
|
|
1358
789
|
uriPath: Scalars['String'];
|
|
1359
790
|
};
|
|
1360
|
-
export type TNavbarSubmenu_LabelAllLocalesArgs = {
|
|
1361
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1362
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1363
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1364
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1365
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
1366
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1367
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1368
|
-
};
|
|
1369
|
-
export declare enum TNavbarSubmenuOrderByInput {
|
|
1370
|
-
CreatedAtAsc = "createdAt_ASC",
|
|
1371
|
-
CreatedAtDesc = "createdAt_DESC",
|
|
1372
|
-
FeatureToggleAsc = "featureToggle_ASC",
|
|
1373
|
-
FeatureToggleDesc = "featureToggle_DESC",
|
|
1374
|
-
IdAsc = "id_ASC",
|
|
1375
|
-
IdDesc = "id_DESC",
|
|
1376
|
-
KeyAsc = "key_ASC",
|
|
1377
|
-
KeyDesc = "key_DESC",
|
|
1378
|
-
UpdatedAtAsc = "updatedAt_ASC",
|
|
1379
|
-
UpdatedAtDesc = "updatedAt_DESC",
|
|
1380
|
-
UriPathAsc = "uriPath_ASC",
|
|
1381
|
-
UriPathDesc = "uriPath_DESC"
|
|
1382
|
-
}
|
|
1383
|
-
export type TNavbarSubmenuWhereInput = {
|
|
1384
|
-
AND?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1385
|
-
NOT?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1386
|
-
OR?: InputMaybe<Array<TNavbarSubmenuWhereInput>>;
|
|
1387
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
1388
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1389
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1390
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1391
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1392
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1393
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1394
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1395
|
-
featureToggle?: InputMaybe<Scalars['String']>;
|
|
1396
|
-
featureToggle_contains?: InputMaybe<Scalars['String']>;
|
|
1397
|
-
featureToggle_ends_with?: InputMaybe<Scalars['String']>;
|
|
1398
|
-
featureToggle_gt?: InputMaybe<Scalars['String']>;
|
|
1399
|
-
featureToggle_gte?: InputMaybe<Scalars['String']>;
|
|
1400
|
-
featureToggle_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1401
|
-
featureToggle_lt?: InputMaybe<Scalars['String']>;
|
|
1402
|
-
featureToggle_lte?: InputMaybe<Scalars['String']>;
|
|
1403
|
-
featureToggle_not?: InputMaybe<Scalars['String']>;
|
|
1404
|
-
featureToggle_not_contains?: InputMaybe<Scalars['String']>;
|
|
1405
|
-
featureToggle_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1406
|
-
featureToggle_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1407
|
-
featureToggle_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
1408
|
-
featureToggle_starts_with?: InputMaybe<Scalars['String']>;
|
|
1409
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1410
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
1411
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1412
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
1413
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
1414
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1415
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
1416
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1417
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
1418
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
1419
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1420
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1421
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1422
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1423
|
-
key?: InputMaybe<Scalars['String']>;
|
|
1424
|
-
key_contains?: InputMaybe<Scalars['String']>;
|
|
1425
|
-
key_ends_with?: InputMaybe<Scalars['String']>;
|
|
1426
|
-
key_gt?: InputMaybe<Scalars['String']>;
|
|
1427
|
-
key_gte?: InputMaybe<Scalars['String']>;
|
|
1428
|
-
key_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1429
|
-
key_lt?: InputMaybe<Scalars['String']>;
|
|
1430
|
-
key_lte?: InputMaybe<Scalars['String']>;
|
|
1431
|
-
key_not?: InputMaybe<Scalars['String']>;
|
|
1432
|
-
key_not_contains?: InputMaybe<Scalars['String']>;
|
|
1433
|
-
key_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1434
|
-
key_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1435
|
-
key_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
1436
|
-
key_starts_with?: InputMaybe<Scalars['String']>;
|
|
1437
|
-
labelAllLocales_every?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1438
|
-
labelAllLocales_none?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1439
|
-
labelAllLocales_some?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1440
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1441
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1442
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1443
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1444
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1445
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1446
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1447
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1448
|
-
uriPath?: InputMaybe<Scalars['String']>;
|
|
1449
|
-
uriPath_contains?: InputMaybe<Scalars['String']>;
|
|
1450
|
-
uriPath_ends_with?: InputMaybe<Scalars['String']>;
|
|
1451
|
-
uriPath_gt?: InputMaybe<Scalars['String']>;
|
|
1452
|
-
uriPath_gte?: InputMaybe<Scalars['String']>;
|
|
1453
|
-
uriPath_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1454
|
-
uriPath_lt?: InputMaybe<Scalars['String']>;
|
|
1455
|
-
uriPath_lte?: InputMaybe<Scalars['String']>;
|
|
1456
|
-
uriPath_not?: InputMaybe<Scalars['String']>;
|
|
1457
|
-
uriPath_not_contains?: InputMaybe<Scalars['String']>;
|
|
1458
|
-
uriPath_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1459
|
-
uriPath_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1460
|
-
uriPath_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
1461
|
-
uriPath_starts_with?: InputMaybe<Scalars['String']>;
|
|
1462
|
-
};
|
|
1463
791
|
export declare enum TOAuthScope {
|
|
1464
792
|
ManageCartDiscounts = "ManageCartDiscounts",
|
|
1465
793
|
ManageCategories = "ManageCategories",
|
|
@@ -1496,6 +824,7 @@ export type TOidcSsoConfig = {
|
|
|
1496
824
|
id: Scalars['ID'];
|
|
1497
825
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
1498
826
|
logoutUrl?: Maybe<Scalars['String']>;
|
|
827
|
+
sessionTokenExpTimeSeconds?: Maybe<Scalars['Int']>;
|
|
1499
828
|
teamIdForNewUsers: Scalars['String'];
|
|
1500
829
|
updatedAt: Scalars['DateTime'];
|
|
1501
830
|
};
|
|
@@ -1504,6 +833,7 @@ export type TOidcSsoConfigDataInput = {
|
|
|
1504
833
|
clientId: Scalars['String'];
|
|
1505
834
|
clientSecret?: InputMaybe<Scalars['String']>;
|
|
1506
835
|
logoutUrl?: InputMaybe<Scalars['String']>;
|
|
836
|
+
sessionTokenExpTimeSeconds?: InputMaybe<Scalars['Int']>;
|
|
1507
837
|
teamIdForNewUsers: Scalars['String'];
|
|
1508
838
|
};
|
|
1509
839
|
export declare enum TOrderStatesVisibility {
|
|
@@ -1527,82 +857,12 @@ export type TOrderStatusConfigurationInput = {
|
|
|
1527
857
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1528
858
|
productId?: InputMaybe<Scalars['String']>;
|
|
1529
859
|
};
|
|
1530
|
-
export type TOrderStatusConfigurationWhereInput = {
|
|
1531
|
-
AND?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1532
|
-
NOT?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1533
|
-
OR?: InputMaybe<Array<TOrderStatusConfigurationWhereInput>>;
|
|
1534
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
1535
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1536
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1537
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1538
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1539
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1540
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1541
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1542
|
-
dateFilterType?: InputMaybe<TDateFilterType>;
|
|
1543
|
-
dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
|
|
1544
|
-
dateFilterType_not?: InputMaybe<TDateFilterType>;
|
|
1545
|
-
dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
|
|
1546
|
-
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
1547
|
-
dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1548
|
-
dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1549
|
-
dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1550
|
-
dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1551
|
-
dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1552
|
-
dateFrom_not?: InputMaybe<Scalars['DateTime']>;
|
|
1553
|
-
dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1554
|
-
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1555
|
-
dateTo_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1556
|
-
dateTo_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1557
|
-
dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1558
|
-
dateTo_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1559
|
-
dateTo_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1560
|
-
dateTo_not?: InputMaybe<Scalars['DateTime']>;
|
|
1561
|
-
dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1562
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1563
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
1564
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1565
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
1566
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
1567
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1568
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
1569
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1570
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
1571
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
1572
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1573
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1574
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1575
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1576
|
-
productId?: InputMaybe<Scalars['String']>;
|
|
1577
|
-
productId_contains?: InputMaybe<Scalars['String']>;
|
|
1578
|
-
productId_ends_with?: InputMaybe<Scalars['String']>;
|
|
1579
|
-
productId_gt?: InputMaybe<Scalars['String']>;
|
|
1580
|
-
productId_gte?: InputMaybe<Scalars['String']>;
|
|
1581
|
-
productId_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1582
|
-
productId_lt?: InputMaybe<Scalars['String']>;
|
|
1583
|
-
productId_lte?: InputMaybe<Scalars['String']>;
|
|
1584
|
-
productId_not?: InputMaybe<Scalars['String']>;
|
|
1585
|
-
productId_not_contains?: InputMaybe<Scalars['String']>;
|
|
1586
|
-
productId_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
1587
|
-
productId_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
1588
|
-
productId_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
1589
|
-
productId_starts_with?: InputMaybe<Scalars['String']>;
|
|
1590
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1591
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1592
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1593
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1594
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1595
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1596
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1597
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1598
|
-
};
|
|
1599
860
|
export type TOrdersListView = {
|
|
1600
861
|
__typename?: 'OrdersListView';
|
|
1601
862
|
createdAt: Scalars['DateTime'];
|
|
1602
863
|
filters?: Maybe<Array<TFilterValues>>;
|
|
1603
864
|
id: Scalars['ID'];
|
|
1604
865
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
1605
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
1606
866
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1607
867
|
projectKey: Scalars['String'];
|
|
1608
868
|
search?: Maybe<Scalars['String']>;
|
|
@@ -1612,24 +872,6 @@ export type TOrdersListView = {
|
|
|
1612
872
|
updatedAt: Scalars['DateTime'];
|
|
1613
873
|
userId: Scalars['String'];
|
|
1614
874
|
};
|
|
1615
|
-
export type TOrdersListView_FiltersArgs = {
|
|
1616
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1617
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1618
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1619
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1620
|
-
orderBy?: InputMaybe<TFilterValuesOrderByInput>;
|
|
1621
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1622
|
-
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1623
|
-
};
|
|
1624
|
-
export type TOrdersListView_NameAllLocalesArgs = {
|
|
1625
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1626
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1627
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1628
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1629
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
1630
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1631
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1632
|
-
};
|
|
1633
875
|
export type TOrdersListViewInput = {
|
|
1634
876
|
filters: Array<TFilterValuesCreateInput>;
|
|
1635
877
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -1665,7 +907,6 @@ export type TPimSearchListView = {
|
|
|
1665
907
|
filters?: Maybe<Array<TFilterValues>>;
|
|
1666
908
|
id: Scalars['ID'];
|
|
1667
909
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
1668
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
1669
910
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1670
911
|
projectKey: Scalars['String'];
|
|
1671
912
|
search?: Maybe<Scalars['String']>;
|
|
@@ -1674,24 +915,6 @@ export type TPimSearchListView = {
|
|
|
1674
915
|
updatedAt: Scalars['DateTime'];
|
|
1675
916
|
userId: Scalars['String'];
|
|
1676
917
|
};
|
|
1677
|
-
export type TPimSearchListView_FiltersArgs = {
|
|
1678
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1679
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1680
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1681
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1682
|
-
orderBy?: InputMaybe<TFilterValuesOrderByInput>;
|
|
1683
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1684
|
-
where?: InputMaybe<TFilterValuesWhereInput>;
|
|
1685
|
-
};
|
|
1686
|
-
export type TPimSearchListView_NameAllLocalesArgs = {
|
|
1687
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1688
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1689
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1690
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1691
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
1692
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1693
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1694
|
-
};
|
|
1695
918
|
export type TPimSearchListViewInput = {
|
|
1696
919
|
filters: Array<TFilterValuesCreateInput>;
|
|
1697
920
|
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
@@ -1709,7 +932,6 @@ export type TProductTypeAttributesView = {
|
|
|
1709
932
|
id: Scalars['ID'];
|
|
1710
933
|
isActive: Scalars['Boolean'];
|
|
1711
934
|
isVariant?: Maybe<Scalars['Boolean']>;
|
|
1712
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
1713
935
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1714
936
|
pinnedAttributes: Array<Scalars['String']>;
|
|
1715
937
|
productTypeId: Scalars['String'];
|
|
@@ -1718,15 +940,6 @@ export type TProductTypeAttributesView = {
|
|
|
1718
940
|
updatedAt: Scalars['DateTime'];
|
|
1719
941
|
userId: Scalars['String'];
|
|
1720
942
|
};
|
|
1721
|
-
export type TProductTypeAttributesView_NameAllLocalesArgs = {
|
|
1722
|
-
after?: InputMaybe<Scalars['String']>;
|
|
1723
|
-
before?: InputMaybe<Scalars['String']>;
|
|
1724
|
-
first?: InputMaybe<Scalars['Int']>;
|
|
1725
|
-
last?: InputMaybe<Scalars['Int']>;
|
|
1726
|
-
orderBy?: InputMaybe<TLocalizedFieldOrderByInput>;
|
|
1727
|
-
skip?: InputMaybe<Scalars['Int']>;
|
|
1728
|
-
where?: InputMaybe<TLocalizedFieldWhereInput>;
|
|
1729
|
-
};
|
|
1730
943
|
export type TProductTypeAttributesViewInput = {
|
|
1731
944
|
existence?: InputMaybe<TExistence>;
|
|
1732
945
|
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -1757,11 +970,23 @@ export type TProjectExtension = {
|
|
|
1757
970
|
export type TProjectExtension_ApplicationsArgs = {
|
|
1758
971
|
where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
|
|
1759
972
|
};
|
|
1760
|
-
export type
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
973
|
+
export type TProjectExtension_InstalledApplicationsArgs = {
|
|
974
|
+
where?: InputMaybe<TRestrictedCustomApplicationInstallationForProjectWhereInput>;
|
|
975
|
+
};
|
|
976
|
+
export type TPublicCustomApplicationDevelopedByCommercetools = {
|
|
977
|
+
__typename?: 'PublicCustomApplicationDevelopedByCommercetools';
|
|
978
|
+
createdAt: Scalars['DateTime'];
|
|
979
|
+
description?: Maybe<Scalars['String']>;
|
|
980
|
+
entryPointUriPath: Scalars['String'];
|
|
981
|
+
icon: Scalars['String'];
|
|
982
|
+
id: Scalars['ID'];
|
|
983
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
984
|
+
name: Scalars['String'];
|
|
985
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
986
|
+
status: TCustomApplicationStatus;
|
|
987
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
988
|
+
updatedAt: Scalars['DateTime'];
|
|
989
|
+
url: Scalars['String'];
|
|
1765
990
|
};
|
|
1766
991
|
export type TQuery = {
|
|
1767
992
|
__typename?: 'Query';
|
|
@@ -1775,9 +1000,10 @@ export type TQuery = {
|
|
|
1775
1000
|
activeProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
1776
1001
|
allAppliedCustomApplicationPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1777
1002
|
allCustomApplications: TCustomApplicationsPagedQueryResult;
|
|
1778
|
-
|
|
1003
|
+
allFeatures: Array<TFeature>;
|
|
1779
1004
|
allOrganizationExtensions: Array<TOrganizationExtension>;
|
|
1780
1005
|
allProjectExtensions: Array<TProjectExtension>;
|
|
1006
|
+
allPublicCustomApplicationsDevelopedByCommercetools: Array<TPublicCustomApplicationDevelopedByCommercetools>;
|
|
1781
1007
|
cartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1782
1008
|
cartDiscountsCustomViews: Array<Maybe<TDiscountsCustomView>>;
|
|
1783
1009
|
customApplication?: Maybe<TCustomApplication>;
|
|
@@ -1788,8 +1014,6 @@ export type TQuery = {
|
|
|
1788
1014
|
discountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
1789
1015
|
discountCodesCustomViews: Array<Maybe<TDiscountsCustomView>>;
|
|
1790
1016
|
globalOrganizationExtension?: Maybe<TOrganizationExtension>;
|
|
1791
|
-
legacyCustomApplication?: Maybe<TLegacyCustomApplication>;
|
|
1792
|
-
legacyCustomApplicationsMigrationReport: Array<TLegacyCustomApplicationsMigrationReport>;
|
|
1793
1017
|
myCustomApplications: Array<TMyCustomApplication>;
|
|
1794
1018
|
ordersListView?: Maybe<TOrdersListView>;
|
|
1795
1019
|
ordersListViews: Array<Maybe<TOrdersListView>>;
|
|
@@ -1802,6 +1026,7 @@ export type TQuery = {
|
|
|
1802
1026
|
productTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
1803
1027
|
productTypeAttributesViews?: Maybe<Array<Maybe<TProductTypeAttributesView>>>;
|
|
1804
1028
|
projectExtension?: Maybe<TProjectExtension>;
|
|
1029
|
+
release?: Maybe<Scalars['String']>;
|
|
1805
1030
|
ruleBuilderQuickSelectionValues?: Maybe<Array<Maybe<TRuleBuilderQuickSelectionValues>>>;
|
|
1806
1031
|
variantPricesListViews: Array<Maybe<TVariantPricesListView>>;
|
|
1807
1032
|
};
|
|
@@ -1816,8 +1041,8 @@ export type TQuery_AllAppliedCustomApplicationPermissionsArgs = {
|
|
|
1816
1041
|
export type TQuery_AllCustomApplicationsArgs = {
|
|
1817
1042
|
params?: InputMaybe<TCustomApplicationQueryInput>;
|
|
1818
1043
|
};
|
|
1819
|
-
export type
|
|
1820
|
-
params?: InputMaybe<
|
|
1044
|
+
export type TQuery_AllFeaturesArgs = {
|
|
1045
|
+
params?: InputMaybe<TFeatureQueryInput>;
|
|
1821
1046
|
};
|
|
1822
1047
|
export type TQuery_AllOrganizationExtensionsArgs = {
|
|
1823
1048
|
organizationIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
@@ -1840,9 +1065,6 @@ export type TQuery_DiscountCodesCustomViewArgs = {
|
|
|
1840
1065
|
export type TQuery_GlobalOrganizationExtensionArgs = {
|
|
1841
1066
|
organizationId: Scalars['String'];
|
|
1842
1067
|
};
|
|
1843
|
-
export type TQuery_LegacyCustomApplicationArgs = {
|
|
1844
|
-
applicationId: Scalars['ID'];
|
|
1845
|
-
};
|
|
1846
1068
|
export type TQuery_MyCustomApplicationsArgs = {
|
|
1847
1069
|
params?: InputMaybe<TMyCustomApplicationQueryInput>;
|
|
1848
1070
|
};
|
|
@@ -1887,41 +1109,6 @@ export type TResourcesNumbersConfiguration = {
|
|
|
1887
1109
|
export type TResourcesNumbersConfigurationInput = {
|
|
1888
1110
|
resourceOptions: Array<TResourceType>;
|
|
1889
1111
|
};
|
|
1890
|
-
export type TResourcesNumbersConfigurationWhereInput = {
|
|
1891
|
-
AND?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1892
|
-
NOT?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1893
|
-
OR?: InputMaybe<Array<TResourcesNumbersConfigurationWhereInput>>;
|
|
1894
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
1895
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1896
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1897
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1898
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1899
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1900
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1901
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1902
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
1903
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
1904
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1905
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
1906
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
1907
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1908
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
1909
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
1910
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
1911
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
1912
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
1913
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
1914
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1915
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
1916
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
1917
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
1918
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
1919
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1920
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
1921
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
1922
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
1923
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
1924
|
-
};
|
|
1925
1112
|
export type TRestrictedApplicationExtensionWhereInput = {
|
|
1926
1113
|
id?: InputMaybe<Scalars['ID']>;
|
|
1927
1114
|
isActive?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -1930,6 +1117,7 @@ export type TRestrictedApplicationExtensionWhereInput = {
|
|
|
1930
1117
|
export type TRestrictedCustomApplicationForOrganization = {
|
|
1931
1118
|
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1932
1119
|
createdAt: Scalars['DateTime'];
|
|
1120
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
1933
1121
|
description?: Maybe<Scalars['String']>;
|
|
1934
1122
|
entryPointUriPath: Scalars['String'];
|
|
1935
1123
|
icon: Scalars['String'];
|
|
@@ -1942,9 +1130,13 @@ export type TRestrictedCustomApplicationForOrganization = {
|
|
|
1942
1130
|
updatedAt: Scalars['DateTime'];
|
|
1943
1131
|
url: Scalars['String'];
|
|
1944
1132
|
};
|
|
1133
|
+
export type TRestrictedCustomApplicationForOrganization_DeploymentsArgs = {
|
|
1134
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
1135
|
+
};
|
|
1945
1136
|
export type TRestrictedCustomApplicationForProject = {
|
|
1946
1137
|
__typename?: 'RestrictedCustomApplicationForProject';
|
|
1947
1138
|
createdAt: Scalars['DateTime'];
|
|
1139
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
1948
1140
|
description?: Maybe<Scalars['String']>;
|
|
1949
1141
|
entryPointUriPath: Scalars['String'];
|
|
1950
1142
|
icon: Scalars['String'];
|
|
@@ -1958,6 +1150,9 @@ export type TRestrictedCustomApplicationForProject = {
|
|
|
1958
1150
|
updatedAt: Scalars['DateTime'];
|
|
1959
1151
|
url: Scalars['String'];
|
|
1960
1152
|
};
|
|
1153
|
+
export type TRestrictedCustomApplicationForProject_DeploymentsArgs = {
|
|
1154
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
1155
|
+
};
|
|
1961
1156
|
export type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
1962
1157
|
__typename?: 'RestrictedCustomApplicationInstallationForOrganization';
|
|
1963
1158
|
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
@@ -1977,10 +1172,8 @@ export type TRestrictedCustomApplicationInstallationForProject = {
|
|
|
1977
1172
|
installInAllProjects: Scalars['Boolean'];
|
|
1978
1173
|
updatedAt: Scalars['DateTime'];
|
|
1979
1174
|
};
|
|
1980
|
-
export type
|
|
1981
|
-
|
|
1982
|
-
revertedIds?: Maybe<Array<Scalars['ID']>>;
|
|
1983
|
-
skipped?: Maybe<Scalars['Int']>;
|
|
1175
|
+
export type TRestrictedCustomApplicationInstallationForProjectWhereInput = {
|
|
1176
|
+
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
1984
1177
|
};
|
|
1985
1178
|
export type TRuleBuilderQuickSelectCreatefunctionsInput = {
|
|
1986
1179
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
@@ -1998,7 +1191,6 @@ export type TRuleBuilderQuickSelectionValues = {
|
|
|
1998
1191
|
createdAt: Scalars['DateTime'];
|
|
1999
1192
|
functions: Array<Scalars['String']>;
|
|
2000
1193
|
id: Scalars['ID'];
|
|
2001
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
2002
1194
|
predicates: Array<Scalars['String']>;
|
|
2003
1195
|
projectKey: Scalars['String'];
|
|
2004
1196
|
ruleBuilderType: TRuleBuilderType;
|
|
@@ -2026,70 +1218,10 @@ export type TSalesPerformanceConfigurationInput = {
|
|
|
2026
1218
|
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2027
1219
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2028
1220
|
};
|
|
2029
|
-
export type TSalesPerformanceConfigurationWhereInput = {
|
|
2030
|
-
AND?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2031
|
-
NOT?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2032
|
-
OR?: InputMaybe<Array<TSalesPerformanceConfigurationWhereInput>>;
|
|
2033
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
2034
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2035
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2036
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2037
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2038
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2039
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2040
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2041
|
-
dateFilterType?: InputMaybe<TDateFilterType>;
|
|
2042
|
-
dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
|
|
2043
|
-
dateFilterType_not?: InputMaybe<TDateFilterType>;
|
|
2044
|
-
dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
|
|
2045
|
-
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2046
|
-
dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2047
|
-
dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2048
|
-
dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2049
|
-
dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2050
|
-
dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2051
|
-
dateFrom_not?: InputMaybe<Scalars['DateTime']>;
|
|
2052
|
-
dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2053
|
-
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2054
|
-
dateTo_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2055
|
-
dateTo_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2056
|
-
dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2057
|
-
dateTo_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2058
|
-
dateTo_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2059
|
-
dateTo_not?: InputMaybe<Scalars['DateTime']>;
|
|
2060
|
-
dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2061
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2062
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
2063
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2064
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
2065
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
2066
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2067
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
2068
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2069
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
2070
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
2071
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2072
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2073
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2074
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2075
|
-
showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
|
|
2076
|
-
showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
|
|
2077
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
2078
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2079
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2080
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2081
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2082
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2083
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2084
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2085
|
-
};
|
|
2086
1221
|
export type TSort = {
|
|
2087
1222
|
__typename?: 'Sort';
|
|
2088
|
-
createdAt: Scalars['DateTime'];
|
|
2089
|
-
id: Scalars['ID'];
|
|
2090
1223
|
key: Scalars['String'];
|
|
2091
1224
|
order: TSortOrder;
|
|
2092
|
-
updatedAt: Scalars['DateTime'];
|
|
2093
1225
|
};
|
|
2094
1226
|
export type TSortCreateInput = {
|
|
2095
1227
|
id?: InputMaybe<Scalars['ID']>;
|
|
@@ -2102,9 +1234,6 @@ export declare enum TSortOrder {
|
|
|
2102
1234
|
}
|
|
2103
1235
|
export type TTable = {
|
|
2104
1236
|
__typename?: 'Table';
|
|
2105
|
-
createdAt: Scalars['DateTime'];
|
|
2106
|
-
id: Scalars['ID'];
|
|
2107
|
-
updatedAt: Scalars['DateTime'];
|
|
2108
1237
|
visibleColumns: Array<Scalars['String']>;
|
|
2109
1238
|
};
|
|
2110
1239
|
export type TTopProductsConfiguration = {
|
|
@@ -2117,45 +1246,6 @@ export type TTopProductsConfiguration = {
|
|
|
2117
1246
|
export type TTopProductsConfigurationInput = {
|
|
2118
1247
|
bestSellingLimit?: InputMaybe<TBestSellingLimit>;
|
|
2119
1248
|
};
|
|
2120
|
-
export type TTopProductsConfigurationWhereInput = {
|
|
2121
|
-
AND?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2122
|
-
NOT?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2123
|
-
OR?: InputMaybe<Array<TTopProductsConfigurationWhereInput>>;
|
|
2124
|
-
bestSellingLimit?: InputMaybe<TBestSellingLimit>;
|
|
2125
|
-
bestSellingLimit_in?: InputMaybe<Array<TBestSellingLimit>>;
|
|
2126
|
-
bestSellingLimit_not?: InputMaybe<TBestSellingLimit>;
|
|
2127
|
-
bestSellingLimit_not_in?: InputMaybe<Array<TBestSellingLimit>>;
|
|
2128
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
2129
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2130
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2131
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2132
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2133
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2134
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2135
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2136
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2137
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
2138
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2139
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
2140
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
2141
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2142
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
2143
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2144
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
2145
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
2146
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2147
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2148
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2149
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2150
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
2151
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2152
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2153
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2154
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2155
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2156
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2157
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2158
|
-
};
|
|
2159
1249
|
export type TTotalOrdersConfiguration = {
|
|
2160
1250
|
__typename?: 'TotalOrdersConfiguration';
|
|
2161
1251
|
createdAt: Scalars['DateTime'];
|
|
@@ -2174,77 +1264,6 @@ export type TTotalOrdersConfigurationInput = {
|
|
|
2174
1264
|
productId?: InputMaybe<Scalars['String']>;
|
|
2175
1265
|
showPreviousTimeframe: Scalars['Boolean'];
|
|
2176
1266
|
};
|
|
2177
|
-
export type TTotalOrdersConfigurationWhereInput = {
|
|
2178
|
-
AND?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2179
|
-
NOT?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2180
|
-
OR?: InputMaybe<Array<TTotalOrdersConfigurationWhereInput>>;
|
|
2181
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
2182
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2183
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2184
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2185
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2186
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2187
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2188
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2189
|
-
dateFilterType?: InputMaybe<TDateFilterType>;
|
|
2190
|
-
dateFilterType_in?: InputMaybe<Array<TDateFilterType>>;
|
|
2191
|
-
dateFilterType_not?: InputMaybe<TDateFilterType>;
|
|
2192
|
-
dateFilterType_not_in?: InputMaybe<Array<TDateFilterType>>;
|
|
2193
|
-
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
2194
|
-
dateFrom_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2195
|
-
dateFrom_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2196
|
-
dateFrom_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2197
|
-
dateFrom_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2198
|
-
dateFrom_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2199
|
-
dateFrom_not?: InputMaybe<Scalars['DateTime']>;
|
|
2200
|
-
dateFrom_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2201
|
-
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
2202
|
-
dateTo_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2203
|
-
dateTo_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2204
|
-
dateTo_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2205
|
-
dateTo_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2206
|
-
dateTo_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2207
|
-
dateTo_not?: InputMaybe<Scalars['DateTime']>;
|
|
2208
|
-
dateTo_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2209
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2210
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
2211
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2212
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
2213
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
2214
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2215
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
2216
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2217
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
2218
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
2219
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2220
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2221
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2222
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2223
|
-
productId?: InputMaybe<Scalars['String']>;
|
|
2224
|
-
productId_contains?: InputMaybe<Scalars['String']>;
|
|
2225
|
-
productId_ends_with?: InputMaybe<Scalars['String']>;
|
|
2226
|
-
productId_gt?: InputMaybe<Scalars['String']>;
|
|
2227
|
-
productId_gte?: InputMaybe<Scalars['String']>;
|
|
2228
|
-
productId_in?: InputMaybe<Array<Scalars['String']>>;
|
|
2229
|
-
productId_lt?: InputMaybe<Scalars['String']>;
|
|
2230
|
-
productId_lte?: InputMaybe<Scalars['String']>;
|
|
2231
|
-
productId_not?: InputMaybe<Scalars['String']>;
|
|
2232
|
-
productId_not_contains?: InputMaybe<Scalars['String']>;
|
|
2233
|
-
productId_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
2234
|
-
productId_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
2235
|
-
productId_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
2236
|
-
productId_starts_with?: InputMaybe<Scalars['String']>;
|
|
2237
|
-
showPreviousTimeframe?: InputMaybe<Scalars['Boolean']>;
|
|
2238
|
-
showPreviousTimeframe_not?: InputMaybe<Scalars['Boolean']>;
|
|
2239
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
2240
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2241
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2242
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2243
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2244
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2245
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2246
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2247
|
-
};
|
|
2248
1267
|
export type TTotalSalesConfiguration = {
|
|
2249
1268
|
__typename?: 'TotalSalesConfiguration';
|
|
2250
1269
|
createdAt: Scalars['DateTime'];
|
|
@@ -2255,60 +1274,10 @@ export type TTotalSalesConfiguration = {
|
|
|
2255
1274
|
export type TTotalSalesConfigurationInput = {
|
|
2256
1275
|
productId?: InputMaybe<Scalars['String']>;
|
|
2257
1276
|
};
|
|
2258
|
-
export type TTotalSalesConfigurationWhereInput = {
|
|
2259
|
-
AND?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2260
|
-
NOT?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2261
|
-
OR?: InputMaybe<Array<TTotalSalesConfigurationWhereInput>>;
|
|
2262
|
-
createdAt?: InputMaybe<Scalars['DateTime']>;
|
|
2263
|
-
createdAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2264
|
-
createdAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2265
|
-
createdAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2266
|
-
createdAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2267
|
-
createdAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2268
|
-
createdAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2269
|
-
createdAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2270
|
-
id?: InputMaybe<Scalars['ID']>;
|
|
2271
|
-
id_contains?: InputMaybe<Scalars['ID']>;
|
|
2272
|
-
id_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2273
|
-
id_gt?: InputMaybe<Scalars['ID']>;
|
|
2274
|
-
id_gte?: InputMaybe<Scalars['ID']>;
|
|
2275
|
-
id_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2276
|
-
id_lt?: InputMaybe<Scalars['ID']>;
|
|
2277
|
-
id_lte?: InputMaybe<Scalars['ID']>;
|
|
2278
|
-
id_not?: InputMaybe<Scalars['ID']>;
|
|
2279
|
-
id_not_contains?: InputMaybe<Scalars['ID']>;
|
|
2280
|
-
id_not_ends_with?: InputMaybe<Scalars['ID']>;
|
|
2281
|
-
id_not_in?: InputMaybe<Array<Scalars['ID']>>;
|
|
2282
|
-
id_not_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2283
|
-
id_starts_with?: InputMaybe<Scalars['ID']>;
|
|
2284
|
-
productId?: InputMaybe<Scalars['String']>;
|
|
2285
|
-
productId_contains?: InputMaybe<Scalars['String']>;
|
|
2286
|
-
productId_ends_with?: InputMaybe<Scalars['String']>;
|
|
2287
|
-
productId_gt?: InputMaybe<Scalars['String']>;
|
|
2288
|
-
productId_gte?: InputMaybe<Scalars['String']>;
|
|
2289
|
-
productId_in?: InputMaybe<Array<Scalars['String']>>;
|
|
2290
|
-
productId_lt?: InputMaybe<Scalars['String']>;
|
|
2291
|
-
productId_lte?: InputMaybe<Scalars['String']>;
|
|
2292
|
-
productId_not?: InputMaybe<Scalars['String']>;
|
|
2293
|
-
productId_not_contains?: InputMaybe<Scalars['String']>;
|
|
2294
|
-
productId_not_ends_with?: InputMaybe<Scalars['String']>;
|
|
2295
|
-
productId_not_in?: InputMaybe<Array<Scalars['String']>>;
|
|
2296
|
-
productId_not_starts_with?: InputMaybe<Scalars['String']>;
|
|
2297
|
-
productId_starts_with?: InputMaybe<Scalars['String']>;
|
|
2298
|
-
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
2299
|
-
updatedAt_gt?: InputMaybe<Scalars['DateTime']>;
|
|
2300
|
-
updatedAt_gte?: InputMaybe<Scalars['DateTime']>;
|
|
2301
|
-
updatedAt_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2302
|
-
updatedAt_lt?: InputMaybe<Scalars['DateTime']>;
|
|
2303
|
-
updatedAt_lte?: InputMaybe<Scalars['DateTime']>;
|
|
2304
|
-
updatedAt_not?: InputMaybe<Scalars['DateTime']>;
|
|
2305
|
-
updatedAt_not_in?: InputMaybe<Array<Scalars['DateTime']>>;
|
|
2306
|
-
};
|
|
2307
1277
|
export type TVariantPricesListView = {
|
|
2308
1278
|
__typename?: 'VariantPricesListView';
|
|
2309
1279
|
createdAt: Scalars['DateTime'];
|
|
2310
1280
|
id: Scalars['ID'];
|
|
2311
|
-
migratedById?: Maybe<Scalars['String']>;
|
|
2312
1281
|
projectKey: Scalars['String'];
|
|
2313
1282
|
updatedAt: Scalars['DateTime'];
|
|
2314
1283
|
userId: Scalars['String'];
|
|
@@ -2356,37 +1325,6 @@ export type TFetchProjectExtensionsNavbarQuery = {
|
|
|
2356
1325
|
projectExtension?: {
|
|
2357
1326
|
__typename?: 'ProjectExtension';
|
|
2358
1327
|
id: string;
|
|
2359
|
-
applications?: Array<{
|
|
2360
|
-
__typename?: 'ApplicationExtension';
|
|
2361
|
-
id: string;
|
|
2362
|
-
navbarMenu?: {
|
|
2363
|
-
__typename?: 'NavbarMenu';
|
|
2364
|
-
id: string;
|
|
2365
|
-
key: string;
|
|
2366
|
-
uriPath: string;
|
|
2367
|
-
icon: string;
|
|
2368
|
-
featureToggle?: string | null;
|
|
2369
|
-
permissions: Array<TOAuthScope>;
|
|
2370
|
-
labelAllLocales?: Array<{
|
|
2371
|
-
__typename?: 'LocalizedField';
|
|
2372
|
-
locale: string;
|
|
2373
|
-
value: string;
|
|
2374
|
-
}> | null;
|
|
2375
|
-
submenu?: Array<{
|
|
2376
|
-
__typename?: 'NavbarSubmenu';
|
|
2377
|
-
id: string;
|
|
2378
|
-
key: string;
|
|
2379
|
-
uriPath: string;
|
|
2380
|
-
permissions: Array<TOAuthScope>;
|
|
2381
|
-
featureToggle?: string | null;
|
|
2382
|
-
labelAllLocales?: Array<{
|
|
2383
|
-
__typename?: 'LocalizedField';
|
|
2384
|
-
locale: string;
|
|
2385
|
-
value: string;
|
|
2386
|
-
}> | null;
|
|
2387
|
-
}> | null;
|
|
2388
|
-
} | null;
|
|
2389
|
-
}> | null;
|
|
2390
1328
|
installedApplications?: Array<{
|
|
2391
1329
|
__typename?: 'RestrictedCustomApplicationInstallationForProject';
|
|
2392
1330
|
application: {
|