@commercetools-frontend/application-components 22.5.0 → 22.7.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-components.cjs.dev.js +18 -35
- package/dist/commercetools-frontend-application-components.cjs.prod.js +13 -20
- package/dist/commercetools-frontend-application-components.esm.js +15 -32
- package/dist/declarations/src/components/custom-views/custom-view-loader/custom-view-loader.d.ts +1 -15
- package/dist/declarations/src/types/generated/settings.d.ts +1562 -0
- package/package.json +22 -22
- package/dist/declarations/src/components/custom-views/custom-view-loader/constants.d.ts +0 -8
- /package/dist/{public-page-layout-e1e5e7d1.esm.js → public-page-layout-322be92c.esm.js} +0 -0
- /package/dist/{public-page-layout-eb2662e9.cjs.dev.js → public-page-layout-610f2030.cjs.dev.js} +0 -0
- /package/dist/{public-page-layout-b0cb3f87.cjs.prod.js → public-page-layout-ee5b2b05.cjs.prod.js} +0 -0
|
@@ -0,0 +1,1562 @@
|
|
|
1
|
+
export type Maybe<T> = T | null;
|
|
2
|
+
export type InputMaybe<T> = Maybe<T>;
|
|
3
|
+
export type Exact<T extends {
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}> = {
|
|
6
|
+
[K in keyof T]: T[K];
|
|
7
|
+
};
|
|
8
|
+
export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
|
|
9
|
+
[SubKey in K]?: Maybe<T[SubKey]>;
|
|
10
|
+
};
|
|
11
|
+
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
|
|
12
|
+
[SubKey in K]: Maybe<T[SubKey]>;
|
|
13
|
+
};
|
|
14
|
+
export type Scalars = {
|
|
15
|
+
ID: string;
|
|
16
|
+
String: string;
|
|
17
|
+
Boolean: boolean;
|
|
18
|
+
Int: number;
|
|
19
|
+
Float: number;
|
|
20
|
+
DateTime: string;
|
|
21
|
+
Json: {
|
|
22
|
+
[key: string]: unknown;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export type TAllPublicCustomApplicationsDevelopedByCommercetoolsQueryInput = {
|
|
26
|
+
organizationId?: InputMaybe<Scalars['String']>;
|
|
27
|
+
};
|
|
28
|
+
export type TApplicationExtension = {
|
|
29
|
+
__typename?: 'ApplicationExtension';
|
|
30
|
+
createdAt: Scalars['DateTime'];
|
|
31
|
+
description?: Maybe<Scalars['String']>;
|
|
32
|
+
id: Scalars['ID'];
|
|
33
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
34
|
+
name: Scalars['String'];
|
|
35
|
+
navbarMenu?: Maybe<TNavbarMenu>;
|
|
36
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
37
|
+
updatedAt: Scalars['DateTime'];
|
|
38
|
+
url: Scalars['String'];
|
|
39
|
+
};
|
|
40
|
+
export declare enum TAuthPermission {
|
|
41
|
+
AccessToProject = "accessToProject",
|
|
42
|
+
LoggedInUser = "loggedInUser",
|
|
43
|
+
ManageMyOrganizations = "manageMyOrganizations",
|
|
44
|
+
ManageProjectSettings = "manageProjectSettings",
|
|
45
|
+
PerformDataCleanups = "performDataCleanups",
|
|
46
|
+
ViewCartDiscounts = "viewCartDiscounts",
|
|
47
|
+
ViewCustomers = "viewCustomers",
|
|
48
|
+
ViewDiscountCodes = "viewDiscountCodes",
|
|
49
|
+
ViewOrders = "viewOrders",
|
|
50
|
+
ViewProductDiscounts = "viewProductDiscounts",
|
|
51
|
+
ViewProducts = "viewProducts",
|
|
52
|
+
ViewProjectSettings = "viewProjectSettings",
|
|
53
|
+
ViewSomeDiscounts = "viewSomeDiscounts",
|
|
54
|
+
ViewUsersAndOrganizations = "viewUsersAndOrganizations"
|
|
55
|
+
}
|
|
56
|
+
export type TAverageOrderValueConfiguration = {
|
|
57
|
+
__typename?: 'AverageOrderValueConfiguration';
|
|
58
|
+
createdAt: Scalars['DateTime'];
|
|
59
|
+
id: Scalars['ID'];
|
|
60
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
61
|
+
updatedAt: Scalars['DateTime'];
|
|
62
|
+
};
|
|
63
|
+
export type TAverageOrderValueConfigurationInput = {
|
|
64
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
65
|
+
};
|
|
66
|
+
export declare enum TBestSellingLimit {
|
|
67
|
+
Fifteen = "FIFTEEN",
|
|
68
|
+
Five = "FIVE",
|
|
69
|
+
Ten = "TEN"
|
|
70
|
+
}
|
|
71
|
+
export declare enum TCategoryRecommendationSearchProperty {
|
|
72
|
+
Attribute = "Attribute",
|
|
73
|
+
MachineLearning = "MachineLearning",
|
|
74
|
+
ProductType = "ProductType"
|
|
75
|
+
}
|
|
76
|
+
export type TCategoryRecommendationSettings = {
|
|
77
|
+
__typename?: 'CategoryRecommendationSettings';
|
|
78
|
+
attributeName?: Maybe<Scalars['String']>;
|
|
79
|
+
createdAt: Scalars['DateTime'];
|
|
80
|
+
id: Scalars['ID'];
|
|
81
|
+
searchProperty: TCategoryRecommendationSearchProperty;
|
|
82
|
+
updatedAt: Scalars['DateTime'];
|
|
83
|
+
};
|
|
84
|
+
export type TCategoryRecommendationSettingsDataInput = {
|
|
85
|
+
attributeName?: InputMaybe<Scalars['String']>;
|
|
86
|
+
searchProperty: TCategoryRecommendationSearchProperty;
|
|
87
|
+
};
|
|
88
|
+
export type TContactInformation = {
|
|
89
|
+
__typename?: 'ContactInformation';
|
|
90
|
+
createdAt: Scalars['DateTime'];
|
|
91
|
+
email: Scalars['String'];
|
|
92
|
+
id: Scalars['ID'];
|
|
93
|
+
updatedAt: Scalars['DateTime'];
|
|
94
|
+
verifiedEmail?: Maybe<Scalars['String']>;
|
|
95
|
+
};
|
|
96
|
+
export type TContactInformationDataInput = {
|
|
97
|
+
email: Scalars['String'];
|
|
98
|
+
};
|
|
99
|
+
export type TCustomApplication = {
|
|
100
|
+
__typename?: 'CustomApplication';
|
|
101
|
+
createdAt: Scalars['DateTime'];
|
|
102
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
103
|
+
description?: Maybe<Scalars['String']>;
|
|
104
|
+
entryPointUriPath: Scalars['String'];
|
|
105
|
+
icon: Scalars['String'];
|
|
106
|
+
id: Scalars['ID'];
|
|
107
|
+
installedBy: Array<TCustomApplicationInstallation>;
|
|
108
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
109
|
+
name: Scalars['String'];
|
|
110
|
+
owner: TOrganizationExtension;
|
|
111
|
+
ownerId: Scalars['String'];
|
|
112
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
113
|
+
status?: Maybe<TCustomApplicationStatus>;
|
|
114
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
115
|
+
updatedAt: Scalars['DateTime'];
|
|
116
|
+
url: Scalars['String'];
|
|
117
|
+
};
|
|
118
|
+
export type TCustomApplication_DeploymentsArgs = {
|
|
119
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
120
|
+
};
|
|
121
|
+
export type TCustomApplicationDeploymentPreview = {
|
|
122
|
+
__typename?: 'CustomApplicationDeploymentPreview';
|
|
123
|
+
alias?: Maybe<Scalars['String']>;
|
|
124
|
+
createdAt: Scalars['DateTime'];
|
|
125
|
+
id: Scalars['ID'];
|
|
126
|
+
updatedAt: Scalars['DateTime'];
|
|
127
|
+
url: Scalars['String'];
|
|
128
|
+
};
|
|
129
|
+
export type TCustomApplicationDeploymentPreviewCreateInput = {
|
|
130
|
+
alias?: InputMaybe<Scalars['String']>;
|
|
131
|
+
url: Scalars['String'];
|
|
132
|
+
};
|
|
133
|
+
export type TCustomApplicationDeploymentPreviewUpdateInput = {
|
|
134
|
+
url: Scalars['String'];
|
|
135
|
+
};
|
|
136
|
+
export type TCustomApplicationDeploymentPreviewsQueryInput = {
|
|
137
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
138
|
+
};
|
|
139
|
+
export type TCustomApplicationDraftDataInput = {
|
|
140
|
+
description?: InputMaybe<Scalars['String']>;
|
|
141
|
+
entryPointUriPath: Scalars['String'];
|
|
142
|
+
icon: Scalars['String'];
|
|
143
|
+
mainMenuLink: TCustomApplicationMenuLinkDraftDataInput;
|
|
144
|
+
name: Scalars['String'];
|
|
145
|
+
permissions: Array<TCustomApplicationPermissionDataInput>;
|
|
146
|
+
submenuLinks: Array<TCustomApplicationSubmenuLinkDraftDataInput>;
|
|
147
|
+
url: Scalars['String'];
|
|
148
|
+
};
|
|
149
|
+
export type TCustomApplicationInstallation = {
|
|
150
|
+
__typename?: 'CustomApplicationInstallation';
|
|
151
|
+
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
152
|
+
createdAt: Scalars['DateTime'];
|
|
153
|
+
id: Scalars['ID'];
|
|
154
|
+
installInAllProjects: Scalars['Boolean'];
|
|
155
|
+
owner: TOrganizationExtension;
|
|
156
|
+
ownerId: Scalars['String'];
|
|
157
|
+
projects?: Maybe<Array<TProjectExtension>>;
|
|
158
|
+
updatedAt: Scalars['DateTime'];
|
|
159
|
+
};
|
|
160
|
+
export type TCustomApplicationInstallationPermission = {
|
|
161
|
+
__typename?: 'CustomApplicationInstallationPermission';
|
|
162
|
+
createdAt: Scalars['DateTime'];
|
|
163
|
+
id: Scalars['ID'];
|
|
164
|
+
name: Scalars['String'];
|
|
165
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
166
|
+
updatedAt: Scalars['DateTime'];
|
|
167
|
+
};
|
|
168
|
+
export type TCustomApplicationMenuLink = {
|
|
169
|
+
__typename?: 'CustomApplicationMenuLink';
|
|
170
|
+
createdAt: Scalars['DateTime'];
|
|
171
|
+
defaultLabel: Scalars['String'];
|
|
172
|
+
icon: Scalars['String'];
|
|
173
|
+
iconName?: Maybe<Scalars['String']>;
|
|
174
|
+
id: Scalars['ID'];
|
|
175
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
176
|
+
permissions: Array<Scalars['String']>;
|
|
177
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
178
|
+
updatedAt: Scalars['DateTime'];
|
|
179
|
+
};
|
|
180
|
+
export type TCustomApplicationMenuLinkDraftDataInput = {
|
|
181
|
+
defaultLabel: Scalars['String'];
|
|
182
|
+
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
183
|
+
permissions: Array<Scalars['String']>;
|
|
184
|
+
};
|
|
185
|
+
export type TCustomApplicationPermission = {
|
|
186
|
+
__typename?: 'CustomApplicationPermission';
|
|
187
|
+
createdAt: Scalars['DateTime'];
|
|
188
|
+
id: Scalars['ID'];
|
|
189
|
+
name: Scalars['String'];
|
|
190
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
191
|
+
updatedAt: Scalars['DateTime'];
|
|
192
|
+
};
|
|
193
|
+
export type TCustomApplicationPermissionDataInput = {
|
|
194
|
+
name: Scalars['String'];
|
|
195
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
196
|
+
};
|
|
197
|
+
export type TCustomApplicationQueryInput = {
|
|
198
|
+
limit?: InputMaybe<Scalars['Int']>;
|
|
199
|
+
offset?: InputMaybe<Scalars['Int']>;
|
|
200
|
+
sort?: InputMaybe<Scalars['String']>;
|
|
201
|
+
where?: InputMaybe<TCustomApplicationQueryWhereInput>;
|
|
202
|
+
};
|
|
203
|
+
export type TCustomApplicationQueryWhereInput = {
|
|
204
|
+
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
205
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
206
|
+
name?: InputMaybe<Scalars['String']>;
|
|
207
|
+
organizationId?: InputMaybe<Scalars['String']>;
|
|
208
|
+
};
|
|
209
|
+
export declare enum TCustomApplicationStatus {
|
|
210
|
+
Draft = "DRAFT",
|
|
211
|
+
PrivateUsage = "PRIVATE_USAGE"
|
|
212
|
+
}
|
|
213
|
+
export type TCustomApplicationSubmenuLink = {
|
|
214
|
+
__typename?: 'CustomApplicationSubmenuLink';
|
|
215
|
+
createdAt: Scalars['DateTime'];
|
|
216
|
+
defaultLabel: Scalars['String'];
|
|
217
|
+
id: Scalars['ID'];
|
|
218
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
219
|
+
permissions: Array<Scalars['String']>;
|
|
220
|
+
updatedAt: Scalars['DateTime'];
|
|
221
|
+
uriPath: Scalars['String'];
|
|
222
|
+
};
|
|
223
|
+
export type TCustomApplicationSubmenuLinkDraftDataInput = {
|
|
224
|
+
defaultLabel: Scalars['String'];
|
|
225
|
+
labelAllLocales: Array<TLocalizedFieldDataInput>;
|
|
226
|
+
permissions: Array<Scalars['String']>;
|
|
227
|
+
uriPath: Scalars['String'];
|
|
228
|
+
};
|
|
229
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationConfirmation = {
|
|
230
|
+
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationConfirmation';
|
|
231
|
+
organizationId: Scalars['ID'];
|
|
232
|
+
};
|
|
233
|
+
export type TCustomApplicationsMaintainerContactEmailVerificationRequest = {
|
|
234
|
+
__typename?: 'CustomApplicationsMaintainerContactEmailVerificationRequest';
|
|
235
|
+
token?: Maybe<Scalars['String']>;
|
|
236
|
+
};
|
|
237
|
+
export type TCustomApplicationsPagedQueryResult = {
|
|
238
|
+
__typename?: 'CustomApplicationsPagedQueryResult';
|
|
239
|
+
count: Scalars['Int'];
|
|
240
|
+
limit: Scalars['Int'];
|
|
241
|
+
offset: Scalars['Int'];
|
|
242
|
+
results: Array<TCustomApplication>;
|
|
243
|
+
total: Scalars['Int'];
|
|
244
|
+
};
|
|
245
|
+
export type TCustomView = {
|
|
246
|
+
__typename?: 'CustomView';
|
|
247
|
+
createdAt: Scalars['DateTime'];
|
|
248
|
+
defaultLabel: Scalars['String'];
|
|
249
|
+
description?: Maybe<Scalars['String']>;
|
|
250
|
+
id: Scalars['ID'];
|
|
251
|
+
installedBy: Array<TCustomViewInstallation>;
|
|
252
|
+
labelAllLocales: Scalars['Json'];
|
|
253
|
+
locators: Array<Scalars['String']>;
|
|
254
|
+
owner: TOrganizationExtension;
|
|
255
|
+
ownerId: Scalars['String'];
|
|
256
|
+
permissions: Array<TCustomViewPermission>;
|
|
257
|
+
status: TCustomViewStatus;
|
|
258
|
+
type: TCustomViewType;
|
|
259
|
+
typeSettings?: Maybe<TCustomViewTypeSettings>;
|
|
260
|
+
updatedAt: Scalars['DateTime'];
|
|
261
|
+
url: Scalars['String'];
|
|
262
|
+
};
|
|
263
|
+
export type TCustomViewDraftDataInput = {
|
|
264
|
+
defaultLabel: Scalars['String'];
|
|
265
|
+
description?: InputMaybe<Scalars['String']>;
|
|
266
|
+
labelAllLocales: Scalars['Json'];
|
|
267
|
+
locators: Array<Scalars['String']>;
|
|
268
|
+
permissions: Array<TCustomViewPermissionDataInput>;
|
|
269
|
+
type: TCustomViewType;
|
|
270
|
+
typeSettings?: InputMaybe<TCustomViewTypeSettingsInput>;
|
|
271
|
+
url: Scalars['String'];
|
|
272
|
+
};
|
|
273
|
+
export type TCustomViewInstallation = {
|
|
274
|
+
__typename?: 'CustomViewInstallation';
|
|
275
|
+
acceptedPermissions: Array<TCustomViewInstallationPermission>;
|
|
276
|
+
createdAt: Scalars['DateTime'];
|
|
277
|
+
customView: TCustomView;
|
|
278
|
+
customViewId: Scalars['String'];
|
|
279
|
+
id: Scalars['ID'];
|
|
280
|
+
installInAllProjects: Scalars['Boolean'];
|
|
281
|
+
owner: TOrganizationExtension;
|
|
282
|
+
ownerId: Scalars['String'];
|
|
283
|
+
projects: Array<TProjectExtension>;
|
|
284
|
+
updatedAt: Scalars['DateTime'];
|
|
285
|
+
};
|
|
286
|
+
export type TCustomViewInstallationPermission = {
|
|
287
|
+
__typename?: 'CustomViewInstallationPermission';
|
|
288
|
+
createdAt: Scalars['DateTime'];
|
|
289
|
+
id: Scalars['ID'];
|
|
290
|
+
installedCustomView: TCustomViewInstallation;
|
|
291
|
+
installedCustomViewId: Scalars['String'];
|
|
292
|
+
name: Scalars['String'];
|
|
293
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
294
|
+
updatedAt: Scalars['DateTime'];
|
|
295
|
+
};
|
|
296
|
+
export type TCustomViewPermission = {
|
|
297
|
+
__typename?: 'CustomViewPermission';
|
|
298
|
+
createdAt: Scalars['DateTime'];
|
|
299
|
+
id: Scalars['ID'];
|
|
300
|
+
name: Scalars['String'];
|
|
301
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
302
|
+
updatedAt: Scalars['DateTime'];
|
|
303
|
+
};
|
|
304
|
+
export type TCustomViewPermissionDataInput = {
|
|
305
|
+
name: Scalars['String'];
|
|
306
|
+
oAuthScopes: Array<Scalars['String']>;
|
|
307
|
+
};
|
|
308
|
+
export declare enum TCustomViewSize {
|
|
309
|
+
Large = "LARGE",
|
|
310
|
+
Small = "SMALL"
|
|
311
|
+
}
|
|
312
|
+
export declare enum TCustomViewStatus {
|
|
313
|
+
Draft = "DRAFT",
|
|
314
|
+
PrivateUsage = "PRIVATE_USAGE"
|
|
315
|
+
}
|
|
316
|
+
export declare enum TCustomViewType {
|
|
317
|
+
CustomPanel = "CustomPanel"
|
|
318
|
+
}
|
|
319
|
+
export type TCustomViewTypeSettings = {
|
|
320
|
+
__typename?: 'CustomViewTypeSettings';
|
|
321
|
+
size?: Maybe<TCustomViewSize>;
|
|
322
|
+
};
|
|
323
|
+
export type TCustomViewTypeSettingsInput = {
|
|
324
|
+
size?: InputMaybe<TCustomViewSize>;
|
|
325
|
+
};
|
|
326
|
+
export type TCustomersListView = {
|
|
327
|
+
__typename?: 'CustomersListView';
|
|
328
|
+
createdAt: Scalars['DateTime'];
|
|
329
|
+
filters?: Maybe<Array<TFilterValues>>;
|
|
330
|
+
id: Scalars['ID'];
|
|
331
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
332
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
333
|
+
projectKey: Scalars['String'];
|
|
334
|
+
search?: Maybe<Scalars['String']>;
|
|
335
|
+
sort?: Maybe<TSort>;
|
|
336
|
+
table?: Maybe<TTable>;
|
|
337
|
+
updatedAt: Scalars['DateTime'];
|
|
338
|
+
userId: Scalars['String'];
|
|
339
|
+
};
|
|
340
|
+
export type TCustomersListViewInput = {
|
|
341
|
+
filters: Array<TFilterValuesCreateInput>;
|
|
342
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
343
|
+
search?: InputMaybe<Scalars['String']>;
|
|
344
|
+
sort: TSortCreateInput;
|
|
345
|
+
table?: InputMaybe<TCustomersListViewTableInput>;
|
|
346
|
+
};
|
|
347
|
+
export type TCustomersListViewTableInput = {
|
|
348
|
+
visibleColumns: Array<Scalars['String']>;
|
|
349
|
+
};
|
|
350
|
+
export type TDashboardView = {
|
|
351
|
+
__typename?: 'DashboardView';
|
|
352
|
+
createdAt: Scalars['DateTime'];
|
|
353
|
+
currencyCode?: Maybe<Scalars['String']>;
|
|
354
|
+
id: Scalars['ID'];
|
|
355
|
+
isActive: Scalars['Boolean'];
|
|
356
|
+
layout?: Maybe<Array<TLayoutCard>>;
|
|
357
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
358
|
+
projectKey: Scalars['String'];
|
|
359
|
+
timeZone?: Maybe<Scalars['String']>;
|
|
360
|
+
updatedAt: Scalars['DateTime'];
|
|
361
|
+
userId: Scalars['String'];
|
|
362
|
+
};
|
|
363
|
+
export type TDashboardViewInput = {
|
|
364
|
+
currencyCode?: InputMaybe<Scalars['String']>;
|
|
365
|
+
layout: Array<TLayoutCardInput>;
|
|
366
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
367
|
+
timeZone?: InputMaybe<Scalars['String']>;
|
|
368
|
+
};
|
|
369
|
+
export declare enum TDateFilterType {
|
|
370
|
+
Custom = "CUSTOM",
|
|
371
|
+
Day = "DAY",
|
|
372
|
+
Month = "MONTH",
|
|
373
|
+
Quarter = "QUARTER",
|
|
374
|
+
Week = "WEEK",
|
|
375
|
+
Year = "YEAR"
|
|
376
|
+
}
|
|
377
|
+
export declare enum TDiscountType {
|
|
378
|
+
CartDiscount = "CartDiscount",
|
|
379
|
+
DiscountCode = "DiscountCode",
|
|
380
|
+
ProductDiscount = "ProductDiscount"
|
|
381
|
+
}
|
|
382
|
+
export type TDiscountsCustomView = {
|
|
383
|
+
__typename?: 'DiscountsCustomView';
|
|
384
|
+
createdAt: Scalars['DateTime'];
|
|
385
|
+
filters?: Maybe<Array<TFilterValues>>;
|
|
386
|
+
id: Scalars['ID'];
|
|
387
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
388
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
389
|
+
projectKey: Scalars['String'];
|
|
390
|
+
search?: Maybe<Scalars['String']>;
|
|
391
|
+
sort?: Maybe<TSort>;
|
|
392
|
+
table?: Maybe<TTable>;
|
|
393
|
+
type: TDiscountType;
|
|
394
|
+
updatedAt: Scalars['DateTime'];
|
|
395
|
+
userId: Scalars['String'];
|
|
396
|
+
};
|
|
397
|
+
export type TDiscountsCustomViewInput = {
|
|
398
|
+
filters: Array<TFilterValuesCreateInput>;
|
|
399
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
400
|
+
search?: InputMaybe<Scalars['String']>;
|
|
401
|
+
sort: TSortCreateInput;
|
|
402
|
+
table?: InputMaybe<TOrdersListViewTableInput>;
|
|
403
|
+
};
|
|
404
|
+
export declare enum TExistence {
|
|
405
|
+
All = "All",
|
|
406
|
+
Empty = "Empty",
|
|
407
|
+
Filled = "Filled"
|
|
408
|
+
}
|
|
409
|
+
export type TFeature = {
|
|
410
|
+
__typename?: 'Feature';
|
|
411
|
+
name: Scalars['String'];
|
|
412
|
+
reason?: Maybe<Scalars['String']>;
|
|
413
|
+
value: Scalars['Boolean'];
|
|
414
|
+
};
|
|
415
|
+
export type TFeatureQueryInput = {
|
|
416
|
+
organizationId?: InputMaybe<Scalars['String']>;
|
|
417
|
+
projectKey?: InputMaybe<Scalars['String']>;
|
|
418
|
+
};
|
|
419
|
+
export declare enum TFilterType {
|
|
420
|
+
CustomField = "CustomField",
|
|
421
|
+
EqualTo = "EqualTo",
|
|
422
|
+
In = "In",
|
|
423
|
+
LessThan = "LessThan",
|
|
424
|
+
Missing = "Missing",
|
|
425
|
+
MissingIn = "MissingIn",
|
|
426
|
+
MoreThan = "MoreThan",
|
|
427
|
+
Range = "Range"
|
|
428
|
+
}
|
|
429
|
+
export type TFilterValues = {
|
|
430
|
+
__typename?: 'FilterValues';
|
|
431
|
+
createdAt: Scalars['DateTime'];
|
|
432
|
+
id: Scalars['ID'];
|
|
433
|
+
json: Scalars['Json'];
|
|
434
|
+
target: Scalars['String'];
|
|
435
|
+
type: TFilterType;
|
|
436
|
+
updatedAt: Scalars['DateTime'];
|
|
437
|
+
};
|
|
438
|
+
export type TFilterValuesCreateInput = {
|
|
439
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
440
|
+
json: Scalars['Json'];
|
|
441
|
+
target: Scalars['String'];
|
|
442
|
+
type: TFilterType;
|
|
443
|
+
};
|
|
444
|
+
export type TImageRegex = {
|
|
445
|
+
__typename?: 'ImageRegex';
|
|
446
|
+
createdAt: Scalars['DateTime'];
|
|
447
|
+
id: Scalars['ID'];
|
|
448
|
+
small?: Maybe<TImageRegexOptions>;
|
|
449
|
+
thumb?: Maybe<TImageRegexOptions>;
|
|
450
|
+
updatedAt: Scalars['DateTime'];
|
|
451
|
+
};
|
|
452
|
+
export type TImageRegexDataInput = {
|
|
453
|
+
small?: InputMaybe<TImageRegexOptionsInput>;
|
|
454
|
+
thumb?: InputMaybe<TImageRegexOptionsInput>;
|
|
455
|
+
};
|
|
456
|
+
export type TImageRegexOptions = {
|
|
457
|
+
__typename?: 'ImageRegexOptions';
|
|
458
|
+
flag?: Maybe<Scalars['String']>;
|
|
459
|
+
replace: Scalars['String'];
|
|
460
|
+
search: Scalars['String'];
|
|
461
|
+
};
|
|
462
|
+
export type TImageRegexOptionsInput = {
|
|
463
|
+
flag?: InputMaybe<Scalars['String']>;
|
|
464
|
+
replace: Scalars['String'];
|
|
465
|
+
search: Scalars['String'];
|
|
466
|
+
};
|
|
467
|
+
export type TLayoutCard = {
|
|
468
|
+
__typename?: 'LayoutCard';
|
|
469
|
+
averageOrderValueConfiguration?: Maybe<TAverageOrderValueConfiguration>;
|
|
470
|
+
createdAt: Scalars['DateTime'];
|
|
471
|
+
height: Scalars['Int'];
|
|
472
|
+
id: Scalars['ID'];
|
|
473
|
+
key: TMetricCardType;
|
|
474
|
+
maxHeight?: Maybe<Scalars['Int']>;
|
|
475
|
+
maxWidth?: Maybe<Scalars['Int']>;
|
|
476
|
+
minHeight?: Maybe<Scalars['Int']>;
|
|
477
|
+
minWidth?: Maybe<Scalars['Int']>;
|
|
478
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
479
|
+
orderStatusConfiguration?: Maybe<TOrderStatusConfiguration>;
|
|
480
|
+
resizeHandles: Array<Scalars['String']>;
|
|
481
|
+
resourcesNumbersConfiguration?: Maybe<TResourcesNumbersConfiguration>;
|
|
482
|
+
salesPerformanceConfiguration?: Maybe<TSalesPerformanceConfiguration>;
|
|
483
|
+
topProductsConfiguration?: Maybe<TTopProductsConfiguration>;
|
|
484
|
+
totalOrdersConfiguration?: Maybe<TTotalOrdersConfiguration>;
|
|
485
|
+
totalSalesConfiguration?: Maybe<TTotalSalesConfiguration>;
|
|
486
|
+
updatedAt: Scalars['DateTime'];
|
|
487
|
+
width: Scalars['Int'];
|
|
488
|
+
xPosition: Scalars['Int'];
|
|
489
|
+
yPosition: Scalars['Int'];
|
|
490
|
+
};
|
|
491
|
+
export type TLayoutCardInput = {
|
|
492
|
+
averageOrderValueConfiguration?: InputMaybe<TAverageOrderValueConfigurationInput>;
|
|
493
|
+
height: Scalars['Int'];
|
|
494
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
495
|
+
key: TMetricCardType;
|
|
496
|
+
maxHeight?: InputMaybe<Scalars['Int']>;
|
|
497
|
+
maxWidth?: InputMaybe<Scalars['Int']>;
|
|
498
|
+
minHeight?: InputMaybe<Scalars['Int']>;
|
|
499
|
+
minWidth?: InputMaybe<Scalars['Int']>;
|
|
500
|
+
nameAllLocales?: InputMaybe<Array<TLocalizedFieldCreateInput>>;
|
|
501
|
+
orderStatusConfiguration?: InputMaybe<TOrderStatusConfigurationInput>;
|
|
502
|
+
resizeHandles?: InputMaybe<Array<Scalars['String']>>;
|
|
503
|
+
resourcesNumbersConfiguration?: InputMaybe<TResourcesNumbersConfigurationInput>;
|
|
504
|
+
salesPerformanceConfiguration?: InputMaybe<TSalesPerformanceConfigurationInput>;
|
|
505
|
+
topProductsConfiguration?: InputMaybe<TTopProductsConfigurationInput>;
|
|
506
|
+
totalOrdersConfiguration?: InputMaybe<TTotalOrdersConfigurationInput>;
|
|
507
|
+
totalSalesConfiguration?: InputMaybe<TTotalSalesConfigurationInput>;
|
|
508
|
+
width: Scalars['Int'];
|
|
509
|
+
xPosition: Scalars['Int'];
|
|
510
|
+
yPosition: Scalars['Int'];
|
|
511
|
+
};
|
|
512
|
+
export type TLocalizedField = {
|
|
513
|
+
__typename?: 'LocalizedField';
|
|
514
|
+
locale: Scalars['String'];
|
|
515
|
+
value: Scalars['String'];
|
|
516
|
+
};
|
|
517
|
+
export type TLocalizedFieldCreateInput = {
|
|
518
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
519
|
+
locale: Scalars['String'];
|
|
520
|
+
value: Scalars['String'];
|
|
521
|
+
};
|
|
522
|
+
export type TLocalizedFieldDataInput = {
|
|
523
|
+
locale: Scalars['String'];
|
|
524
|
+
value: Scalars['String'];
|
|
525
|
+
};
|
|
526
|
+
export declare enum TMetricCardType {
|
|
527
|
+
AverageOrderValue = "AVERAGE_ORDER_VALUE",
|
|
528
|
+
OrderStatus = "ORDER_STATUS",
|
|
529
|
+
ProductTopVariants = "PRODUCT_TOP_VARIANTS",
|
|
530
|
+
ResourcesNumbers = "RESOURCES_NUMBERS",
|
|
531
|
+
SalesPerformance = "SALES_PERFORMANCE",
|
|
532
|
+
TotalOrders = "TOTAL_ORDERS",
|
|
533
|
+
TotalSales = "TOTAL_SALES"
|
|
534
|
+
}
|
|
535
|
+
export type TMigrationMatchingScore = {
|
|
536
|
+
__typename?: 'MigrationMatchingScore';
|
|
537
|
+
matchFrom: Scalars['String'];
|
|
538
|
+
matchTo: Scalars['String'];
|
|
539
|
+
score: Scalars['Float'];
|
|
540
|
+
};
|
|
541
|
+
export type TMutation = {
|
|
542
|
+
__typename?: 'Mutation';
|
|
543
|
+
activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
544
|
+
activateCustomersListView?: Maybe<TCustomersListView>;
|
|
545
|
+
activateDashboardView?: Maybe<TDashboardView>;
|
|
546
|
+
activateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
547
|
+
activateOrdersListView?: Maybe<TOrdersListView>;
|
|
548
|
+
activateOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
|
|
549
|
+
activatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
550
|
+
activateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
551
|
+
activateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
552
|
+
changeCustomApplicationStatus?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
553
|
+
changeCustomViewStatus?: Maybe<TCustomView>;
|
|
554
|
+
createCartDiscountsCustomView: TDiscountsCustomView;
|
|
555
|
+
createCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
556
|
+
createCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
557
|
+
createCustomView?: Maybe<TCustomView>;
|
|
558
|
+
createCustomersListView: TCustomersListView;
|
|
559
|
+
createDashboardView: TDashboardView;
|
|
560
|
+
createDiscountCodesCustomView: TDiscountsCustomView;
|
|
561
|
+
createOrdersListView: TOrdersListView;
|
|
562
|
+
createPimSearchListView: TPimSearchListView;
|
|
563
|
+
createProductDiscountsCustomView: TDiscountsCustomView;
|
|
564
|
+
createProductTypeAttributesView: TProductTypeAttributesView;
|
|
565
|
+
createVariantPricesListView?: Maybe<TVariantPricesListView>;
|
|
566
|
+
deactivateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
567
|
+
deactivateCustomersListView?: Maybe<TOrdersListView>;
|
|
568
|
+
deactivateDashboardView?: Maybe<TDashboardView>;
|
|
569
|
+
deactivateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
570
|
+
deactivateOrdersListView?: Maybe<TOrdersListView>;
|
|
571
|
+
deactivateOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
|
|
572
|
+
deactivatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
573
|
+
deactivateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
574
|
+
deactivateProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
575
|
+
deleteAllDashboardViews: Array<TDashboardView>;
|
|
576
|
+
deleteAllOrdersListViews: Array<TOrdersListView>;
|
|
577
|
+
deleteCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
578
|
+
deleteCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
579
|
+
deleteCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
580
|
+
deleteCustomersListView?: Maybe<TCustomersListView>;
|
|
581
|
+
deleteDashboardView?: Maybe<TDashboardView>;
|
|
582
|
+
deleteDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
583
|
+
deleteOrdersListView?: Maybe<TOrdersListView>;
|
|
584
|
+
deletePimSearchListView?: Maybe<TPimSearchListView>;
|
|
585
|
+
deleteProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
586
|
+
deleteProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
587
|
+
installCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
588
|
+
random: Scalars['String'];
|
|
589
|
+
sendLinkToVerifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationRequest>;
|
|
590
|
+
setCustomApplicationsMaintainerContactInformation?: Maybe<TOrganizationExtension>;
|
|
591
|
+
setOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
|
|
592
|
+
setProjectExtensionCategoryRecommendation?: Maybe<TProjectExtension>;
|
|
593
|
+
setProjectExtensionImageRegex?: Maybe<TProjectExtension>;
|
|
594
|
+
setProjectExtensionImportSampleDataset?: Maybe<TProjectExtension>;
|
|
595
|
+
setProjectExtensionOrderStatesVisibility?: Maybe<TProjectExtension>;
|
|
596
|
+
setProjectExtensionRichTextEditorSettings?: Maybe<TProjectExtension>;
|
|
597
|
+
uninstallCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
598
|
+
updateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
599
|
+
updateCustomApplication?: Maybe<TRestrictedCustomApplicationForOrganization>;
|
|
600
|
+
updateCustomApplicationDeploymentPreview: TCustomApplicationDeploymentPreview;
|
|
601
|
+
updateCustomApplicationProjectsInstallation?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
602
|
+
updateCustomView?: Maybe<TCustomView>;
|
|
603
|
+
updateCustomersListView?: Maybe<TCustomersListView>;
|
|
604
|
+
updateDashboardView?: Maybe<TDashboardView>;
|
|
605
|
+
updateDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
606
|
+
updateOrdersListView?: Maybe<TOrdersListView>;
|
|
607
|
+
updatePimSearchListView?: Maybe<TPimSearchListView>;
|
|
608
|
+
updateProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
609
|
+
updateProductTypeAttributesView: TProductTypeAttributesView;
|
|
610
|
+
updateRuleBuilderQuickSelectionValues?: Maybe<TRuleBuilderQuickSelectionValues>;
|
|
611
|
+
updateVariantPricesListView?: Maybe<TVariantPricesListView>;
|
|
612
|
+
verifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationConfirmation>;
|
|
613
|
+
};
|
|
614
|
+
export type TMutation_ActivateCartDiscountsCustomViewArgs = {
|
|
615
|
+
id: Scalars['ID'];
|
|
616
|
+
};
|
|
617
|
+
export type TMutation_ActivateCustomersListViewArgs = {
|
|
618
|
+
id: Scalars['ID'];
|
|
619
|
+
};
|
|
620
|
+
export type TMutation_ActivateDashboardViewArgs = {
|
|
621
|
+
id: Scalars['ID'];
|
|
622
|
+
};
|
|
623
|
+
export type TMutation_ActivateDiscountCodesCustomViewArgs = {
|
|
624
|
+
id: Scalars['ID'];
|
|
625
|
+
};
|
|
626
|
+
export type TMutation_ActivateOrdersListViewArgs = {
|
|
627
|
+
id: Scalars['ID'];
|
|
628
|
+
};
|
|
629
|
+
export type TMutation_ActivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
630
|
+
organizationId: Scalars['String'];
|
|
631
|
+
};
|
|
632
|
+
export type TMutation_ActivatePimSearchListViewArgs = {
|
|
633
|
+
id: Scalars['ID'];
|
|
634
|
+
};
|
|
635
|
+
export type TMutation_ActivateProductDiscountsCustomViewArgs = {
|
|
636
|
+
id: Scalars['ID'];
|
|
637
|
+
};
|
|
638
|
+
export type TMutation_ActivateProductTypeAttributesViewArgs = {
|
|
639
|
+
id: Scalars['ID'];
|
|
640
|
+
isVariant: Scalars['Boolean'];
|
|
641
|
+
productTypeId: Scalars['String'];
|
|
642
|
+
};
|
|
643
|
+
export type TMutation_ChangeCustomApplicationStatusArgs = {
|
|
644
|
+
applicationId: Scalars['ID'];
|
|
645
|
+
organizationId: Scalars['String'];
|
|
646
|
+
status: TCustomApplicationStatus;
|
|
647
|
+
};
|
|
648
|
+
export type TMutation_ChangeCustomViewStatusArgs = {
|
|
649
|
+
customViewId: Scalars['ID'];
|
|
650
|
+
organizationId: Scalars['String'];
|
|
651
|
+
status: TCustomViewStatus;
|
|
652
|
+
};
|
|
653
|
+
export type TMutation_CreateCartDiscountsCustomViewArgs = {
|
|
654
|
+
data: TDiscountsCustomViewInput;
|
|
655
|
+
};
|
|
656
|
+
export type TMutation_CreateCustomApplicationArgs = {
|
|
657
|
+
data: TCustomApplicationDraftDataInput;
|
|
658
|
+
organizationId: Scalars['String'];
|
|
659
|
+
};
|
|
660
|
+
export type TMutation_CreateCustomApplicationDeploymentPreviewArgs = {
|
|
661
|
+
applicationId: Scalars['ID'];
|
|
662
|
+
data: TCustomApplicationDeploymentPreviewCreateInput;
|
|
663
|
+
organizationId: Scalars['String'];
|
|
664
|
+
};
|
|
665
|
+
export type TMutation_CreateCustomViewArgs = {
|
|
666
|
+
data: TCustomViewDraftDataInput;
|
|
667
|
+
organizationId: Scalars['String'];
|
|
668
|
+
};
|
|
669
|
+
export type TMutation_CreateCustomersListViewArgs = {
|
|
670
|
+
data: TCustomersListViewInput;
|
|
671
|
+
};
|
|
672
|
+
export type TMutation_CreateDashboardViewArgs = {
|
|
673
|
+
data: TDashboardViewInput;
|
|
674
|
+
};
|
|
675
|
+
export type TMutation_CreateDiscountCodesCustomViewArgs = {
|
|
676
|
+
data: TDiscountsCustomViewInput;
|
|
677
|
+
};
|
|
678
|
+
export type TMutation_CreateOrdersListViewArgs = {
|
|
679
|
+
data: TOrdersListViewInput;
|
|
680
|
+
};
|
|
681
|
+
export type TMutation_CreatePimSearchListViewArgs = {
|
|
682
|
+
data: TPimSearchListViewInput;
|
|
683
|
+
};
|
|
684
|
+
export type TMutation_CreateProductDiscountsCustomViewArgs = {
|
|
685
|
+
data: TDiscountsCustomViewInput;
|
|
686
|
+
};
|
|
687
|
+
export type TMutation_CreateProductTypeAttributesViewArgs = {
|
|
688
|
+
data: TProductTypeAttributesViewInput;
|
|
689
|
+
};
|
|
690
|
+
export type TMutation_CreateVariantPricesListViewArgs = {
|
|
691
|
+
data: TVariantPricesListViewInput;
|
|
692
|
+
};
|
|
693
|
+
export type TMutation_DeactivateCartDiscountsCustomViewArgs = {
|
|
694
|
+
id: Scalars['ID'];
|
|
695
|
+
};
|
|
696
|
+
export type TMutation_DeactivateCustomersListViewArgs = {
|
|
697
|
+
id: Scalars['ID'];
|
|
698
|
+
};
|
|
699
|
+
export type TMutation_DeactivateDashboardViewArgs = {
|
|
700
|
+
id: Scalars['ID'];
|
|
701
|
+
};
|
|
702
|
+
export type TMutation_DeactivateDiscountCodesCustomViewArgs = {
|
|
703
|
+
id: Scalars['ID'];
|
|
704
|
+
};
|
|
705
|
+
export type TMutation_DeactivateOrdersListViewArgs = {
|
|
706
|
+
id: Scalars['ID'];
|
|
707
|
+
};
|
|
708
|
+
export type TMutation_DeactivateOrganizationExtensionOidcSsoConfigArgs = {
|
|
709
|
+
organizationId: Scalars['String'];
|
|
710
|
+
};
|
|
711
|
+
export type TMutation_DeactivatePimSearchListViewArgs = {
|
|
712
|
+
id: Scalars['ID'];
|
|
713
|
+
};
|
|
714
|
+
export type TMutation_DeactivateProductDiscountsCustomViewArgs = {
|
|
715
|
+
id: Scalars['ID'];
|
|
716
|
+
};
|
|
717
|
+
export type TMutation_DeactivateProductTypeAttributesViewArgs = {
|
|
718
|
+
id: Scalars['ID'];
|
|
719
|
+
};
|
|
720
|
+
export type TMutation_DeleteCartDiscountsCustomViewArgs = {
|
|
721
|
+
id: Scalars['ID'];
|
|
722
|
+
};
|
|
723
|
+
export type TMutation_DeleteCustomApplicationArgs = {
|
|
724
|
+
applicationId: Scalars['ID'];
|
|
725
|
+
organizationId: Scalars['String'];
|
|
726
|
+
};
|
|
727
|
+
export type TMutation_DeleteCustomApplicationDeploymentPreviewArgs = {
|
|
728
|
+
deploymentId: Scalars['ID'];
|
|
729
|
+
organizationId: Scalars['String'];
|
|
730
|
+
};
|
|
731
|
+
export type TMutation_DeleteCustomersListViewArgs = {
|
|
732
|
+
id: Scalars['ID'];
|
|
733
|
+
};
|
|
734
|
+
export type TMutation_DeleteDashboardViewArgs = {
|
|
735
|
+
id: Scalars['ID'];
|
|
736
|
+
};
|
|
737
|
+
export type TMutation_DeleteDiscountCodesCustomViewArgs = {
|
|
738
|
+
id: Scalars['ID'];
|
|
739
|
+
};
|
|
740
|
+
export type TMutation_DeleteOrdersListViewArgs = {
|
|
741
|
+
id: Scalars['ID'];
|
|
742
|
+
};
|
|
743
|
+
export type TMutation_DeletePimSearchListViewArgs = {
|
|
744
|
+
id: Scalars['ID'];
|
|
745
|
+
};
|
|
746
|
+
export type TMutation_DeleteProductDiscountsCustomViewArgs = {
|
|
747
|
+
id: Scalars['ID'];
|
|
748
|
+
};
|
|
749
|
+
export type TMutation_DeleteProductTypeAttributesViewArgs = {
|
|
750
|
+
id: Scalars['ID'];
|
|
751
|
+
};
|
|
752
|
+
export type TMutation_InstallCustomApplicationArgs = {
|
|
753
|
+
applicationId: Scalars['ID'];
|
|
754
|
+
organizationId: Scalars['String'];
|
|
755
|
+
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
756
|
+
};
|
|
757
|
+
export type TMutation_RandomArgs = {
|
|
758
|
+
byteLength: Scalars['Int'];
|
|
759
|
+
};
|
|
760
|
+
export type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
761
|
+
organizationId: Scalars['String'];
|
|
762
|
+
};
|
|
763
|
+
export type TMutation_SetCustomApplicationsMaintainerContactInformationArgs = {
|
|
764
|
+
data?: InputMaybe<TContactInformationDataInput>;
|
|
765
|
+
organizationId: Scalars['String'];
|
|
766
|
+
};
|
|
767
|
+
export type TMutation_SetOrganizationExtensionOidcSsoConfigArgs = {
|
|
768
|
+
data: TOidcSsoConfigDataInput;
|
|
769
|
+
organizationId: Scalars['String'];
|
|
770
|
+
};
|
|
771
|
+
export type TMutation_SetProjectExtensionCategoryRecommendationArgs = {
|
|
772
|
+
data?: InputMaybe<TCategoryRecommendationSettingsDataInput>;
|
|
773
|
+
};
|
|
774
|
+
export type TMutation_SetProjectExtensionImageRegexArgs = {
|
|
775
|
+
data?: InputMaybe<TImageRegexDataInput>;
|
|
776
|
+
};
|
|
777
|
+
export type TMutation_SetProjectExtensionImportSampleDatasetArgs = {
|
|
778
|
+
data?: InputMaybe<TSampleDatasets>;
|
|
779
|
+
};
|
|
780
|
+
export type TMutation_SetProjectExtensionOrderStatesVisibilityArgs = {
|
|
781
|
+
data?: InputMaybe<Array<InputMaybe<TOrderStatesVisibility>>>;
|
|
782
|
+
};
|
|
783
|
+
export type TMutation_SetProjectExtensionRichTextEditorSettingsArgs = {
|
|
784
|
+
data?: InputMaybe<TRichTextEditorSettingsInput>;
|
|
785
|
+
};
|
|
786
|
+
export type TMutation_UninstallCustomApplicationArgs = {
|
|
787
|
+
installedApplicationId: Scalars['ID'];
|
|
788
|
+
organizationId: Scalars['String'];
|
|
789
|
+
};
|
|
790
|
+
export type TMutation_UpdateCartDiscountsCustomViewArgs = {
|
|
791
|
+
data: TDiscountsCustomViewInput;
|
|
792
|
+
id: Scalars['ID'];
|
|
793
|
+
};
|
|
794
|
+
export type TMutation_UpdateCustomApplicationArgs = {
|
|
795
|
+
applicationId: Scalars['ID'];
|
|
796
|
+
data: TCustomApplicationDraftDataInput;
|
|
797
|
+
organizationId: Scalars['String'];
|
|
798
|
+
};
|
|
799
|
+
export type TMutation_UpdateCustomApplicationDeploymentPreviewArgs = {
|
|
800
|
+
data: TCustomApplicationDeploymentPreviewUpdateInput;
|
|
801
|
+
deploymentId: Scalars['ID'];
|
|
802
|
+
organizationId: Scalars['String'];
|
|
803
|
+
};
|
|
804
|
+
export type TMutation_UpdateCustomApplicationProjectsInstallationArgs = {
|
|
805
|
+
installedApplicationId: Scalars['ID'];
|
|
806
|
+
organizationId: Scalars['String'];
|
|
807
|
+
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
808
|
+
};
|
|
809
|
+
export type TMutation_UpdateCustomViewArgs = {
|
|
810
|
+
customViewId: Scalars['String'];
|
|
811
|
+
data: TCustomViewDraftDataInput;
|
|
812
|
+
organizationId: Scalars['String'];
|
|
813
|
+
};
|
|
814
|
+
export type TMutation_UpdateCustomersListViewArgs = {
|
|
815
|
+
data: TCustomersListViewInput;
|
|
816
|
+
id: Scalars['ID'];
|
|
817
|
+
};
|
|
818
|
+
export type TMutation_UpdateDashboardViewArgs = {
|
|
819
|
+
data: TDashboardViewInput;
|
|
820
|
+
id: Scalars['ID'];
|
|
821
|
+
};
|
|
822
|
+
export type TMutation_UpdateDiscountCodesCustomViewArgs = {
|
|
823
|
+
data: TDiscountsCustomViewInput;
|
|
824
|
+
id: Scalars['ID'];
|
|
825
|
+
};
|
|
826
|
+
export type TMutation_UpdateOrdersListViewArgs = {
|
|
827
|
+
data: TOrdersListViewInput;
|
|
828
|
+
id: Scalars['ID'];
|
|
829
|
+
};
|
|
830
|
+
export type TMutation_UpdatePimSearchListViewArgs = {
|
|
831
|
+
data: TPimSearchListViewInput;
|
|
832
|
+
id: Scalars['ID'];
|
|
833
|
+
};
|
|
834
|
+
export type TMutation_UpdateProductDiscountsCustomViewArgs = {
|
|
835
|
+
data: TDiscountsCustomViewInput;
|
|
836
|
+
id: Scalars['ID'];
|
|
837
|
+
};
|
|
838
|
+
export type TMutation_UpdateProductTypeAttributesViewArgs = {
|
|
839
|
+
data: TProductTypeAttributesViewUpdateInput;
|
|
840
|
+
id: Scalars['ID'];
|
|
841
|
+
};
|
|
842
|
+
export type TMutation_UpdateRuleBuilderQuickSelectionValuesArgs = {
|
|
843
|
+
data: TRuleBuilderQuickSelectionInput;
|
|
844
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
845
|
+
};
|
|
846
|
+
export type TMutation_UpdateVariantPricesListViewArgs = {
|
|
847
|
+
data: TVariantPricesListViewInput;
|
|
848
|
+
id: Scalars['ID'];
|
|
849
|
+
};
|
|
850
|
+
export type TMutation_VerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
851
|
+
token: Scalars['String'];
|
|
852
|
+
};
|
|
853
|
+
export type TMyCustomApplication = {
|
|
854
|
+
__typename?: 'MyCustomApplication';
|
|
855
|
+
createdAt: Scalars['DateTime'];
|
|
856
|
+
description?: Maybe<Scalars['String']>;
|
|
857
|
+
entryPointUriPath: Scalars['String'];
|
|
858
|
+
icon: Scalars['String'];
|
|
859
|
+
id: Scalars['ID'];
|
|
860
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
861
|
+
name: Scalars['String'];
|
|
862
|
+
organizationId: Scalars['String'];
|
|
863
|
+
organizationName: Scalars['String'];
|
|
864
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
865
|
+
status: TCustomApplicationStatus;
|
|
866
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
867
|
+
updatedAt: Scalars['DateTime'];
|
|
868
|
+
url: Scalars['String'];
|
|
869
|
+
};
|
|
870
|
+
export type TMyCustomApplicationQueryInput = {
|
|
871
|
+
where?: InputMaybe<TMyCustomApplicationQueryWhereInput>;
|
|
872
|
+
};
|
|
873
|
+
export type TMyCustomApplicationQueryWhereInput = {
|
|
874
|
+
status?: InputMaybe<TCustomApplicationStatus>;
|
|
875
|
+
};
|
|
876
|
+
export type TNavbarMenu = {
|
|
877
|
+
__typename?: 'NavbarMenu';
|
|
878
|
+
createdAt: Scalars['DateTime'];
|
|
879
|
+
featureToggle?: Maybe<Scalars['String']>;
|
|
880
|
+
icon: Scalars['String'];
|
|
881
|
+
id: Scalars['ID'];
|
|
882
|
+
key: Scalars['String'];
|
|
883
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
884
|
+
permissions: Array<TOAuthScope>;
|
|
885
|
+
submenu: Array<TNavbarSubmenu>;
|
|
886
|
+
updatedAt: Scalars['DateTime'];
|
|
887
|
+
uriPath: Scalars['String'];
|
|
888
|
+
};
|
|
889
|
+
export type TNavbarSubmenu = {
|
|
890
|
+
__typename?: 'NavbarSubmenu';
|
|
891
|
+
createdAt: Scalars['DateTime'];
|
|
892
|
+
featureToggle?: Maybe<Scalars['String']>;
|
|
893
|
+
id: Scalars['ID'];
|
|
894
|
+
key: Scalars['String'];
|
|
895
|
+
labelAllLocales: Array<TLocalizedField>;
|
|
896
|
+
permissions: Array<TOAuthScope>;
|
|
897
|
+
updatedAt: Scalars['DateTime'];
|
|
898
|
+
uriPath: Scalars['String'];
|
|
899
|
+
};
|
|
900
|
+
export declare enum TOAuthScope {
|
|
901
|
+
ManageCartDiscounts = "ManageCartDiscounts",
|
|
902
|
+
ManageCategories = "ManageCategories",
|
|
903
|
+
ManageCustomerGroups = "ManageCustomerGroups",
|
|
904
|
+
ManageCustomers = "ManageCustomers",
|
|
905
|
+
ManageDeveloperSettings = "ManageDeveloperSettings",
|
|
906
|
+
ManageDiscountCodes = "ManageDiscountCodes",
|
|
907
|
+
ManageImportSinks = "ManageImportSinks",
|
|
908
|
+
ManageOrders = "ManageOrders",
|
|
909
|
+
ManageProductDiscounts = "ManageProductDiscounts",
|
|
910
|
+
ManageProductTypes = "ManageProductTypes",
|
|
911
|
+
ManageProducts = "ManageProducts",
|
|
912
|
+
ManageProject = "ManageProject",
|
|
913
|
+
ManageProjectSettings = "ManageProjectSettings",
|
|
914
|
+
ViewCartDiscounts = "ViewCartDiscounts",
|
|
915
|
+
ViewCategories = "ViewCategories",
|
|
916
|
+
ViewCustomerGroups = "ViewCustomerGroups",
|
|
917
|
+
ViewCustomers = "ViewCustomers",
|
|
918
|
+
ViewDeveloperSettings = "ViewDeveloperSettings",
|
|
919
|
+
ViewDiscountCodes = "ViewDiscountCodes",
|
|
920
|
+
ViewImportSinks = "ViewImportSinks",
|
|
921
|
+
ViewOrders = "ViewOrders",
|
|
922
|
+
ViewProductDiscounts = "ViewProductDiscounts",
|
|
923
|
+
ViewProductTypes = "ViewProductTypes",
|
|
924
|
+
ViewProducts = "ViewProducts",
|
|
925
|
+
ViewProjectSettings = "ViewProjectSettings"
|
|
926
|
+
}
|
|
927
|
+
export type TOidcSsoConfig = {
|
|
928
|
+
__typename?: 'OidcSsoConfig';
|
|
929
|
+
authorityUrl: Scalars['String'];
|
|
930
|
+
clientId: Scalars['String'];
|
|
931
|
+
clientSecret?: Maybe<Scalars['String']>;
|
|
932
|
+
createdAt: Scalars['DateTime'];
|
|
933
|
+
id: Scalars['ID'];
|
|
934
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
935
|
+
logoutUrl?: Maybe<Scalars['String']>;
|
|
936
|
+
sessionTokenExpTimeSeconds?: Maybe<Scalars['Int']>;
|
|
937
|
+
teamIdForNewUsers: Scalars['String'];
|
|
938
|
+
updatedAt: Scalars['DateTime'];
|
|
939
|
+
};
|
|
940
|
+
export type TOidcSsoConfigDataInput = {
|
|
941
|
+
authorityUrl: Scalars['String'];
|
|
942
|
+
clientId: Scalars['String'];
|
|
943
|
+
clientSecret?: InputMaybe<Scalars['String']>;
|
|
944
|
+
logoutUrl?: InputMaybe<Scalars['String']>;
|
|
945
|
+
sessionTokenExpTimeSeconds?: InputMaybe<Scalars['Int']>;
|
|
946
|
+
teamIdForNewUsers: Scalars['String'];
|
|
947
|
+
};
|
|
948
|
+
export declare enum TOrderStatesVisibility {
|
|
949
|
+
HideOrderState = "HideOrderState",
|
|
950
|
+
HidePaymentState = "HidePaymentState",
|
|
951
|
+
HideShipmentState = "HideShipmentState"
|
|
952
|
+
}
|
|
953
|
+
export type TOrderStatusConfiguration = {
|
|
954
|
+
__typename?: 'OrderStatusConfiguration';
|
|
955
|
+
createdAt: Scalars['DateTime'];
|
|
956
|
+
dateFilterType: TDateFilterType;
|
|
957
|
+
dateFrom?: Maybe<Scalars['DateTime']>;
|
|
958
|
+
dateTo?: Maybe<Scalars['DateTime']>;
|
|
959
|
+
id: Scalars['ID'];
|
|
960
|
+
productId?: Maybe<Scalars['String']>;
|
|
961
|
+
updatedAt: Scalars['DateTime'];
|
|
962
|
+
};
|
|
963
|
+
export type TOrderStatusConfigurationInput = {
|
|
964
|
+
dateFilterType: TDateFilterType;
|
|
965
|
+
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
966
|
+
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
967
|
+
productId?: InputMaybe<Scalars['String']>;
|
|
968
|
+
};
|
|
969
|
+
export type TOrdersListView = {
|
|
970
|
+
__typename?: 'OrdersListView';
|
|
971
|
+
createdAt: Scalars['DateTime'];
|
|
972
|
+
filters?: Maybe<Array<TFilterValues>>;
|
|
973
|
+
id: Scalars['ID'];
|
|
974
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
975
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
976
|
+
projectKey: Scalars['String'];
|
|
977
|
+
search?: Maybe<Scalars['String']>;
|
|
978
|
+
searchParams?: Maybe<Scalars['Json']>;
|
|
979
|
+
sort?: Maybe<TSort>;
|
|
980
|
+
table?: Maybe<TTable>;
|
|
981
|
+
updatedAt: Scalars['DateTime'];
|
|
982
|
+
userId: Scalars['String'];
|
|
983
|
+
};
|
|
984
|
+
export type TOrdersListViewInput = {
|
|
985
|
+
filters: Array<TFilterValuesCreateInput>;
|
|
986
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
987
|
+
search?: InputMaybe<Scalars['String']>;
|
|
988
|
+
searchParams?: InputMaybe<Scalars['Json']>;
|
|
989
|
+
sort: TSortCreateInput;
|
|
990
|
+
table?: InputMaybe<TOrdersListViewTableInput>;
|
|
991
|
+
};
|
|
992
|
+
export type TOrdersListViewTableInput = {
|
|
993
|
+
visibleColumns: Array<Scalars['String']>;
|
|
994
|
+
};
|
|
995
|
+
export type TOrganizationExtension = {
|
|
996
|
+
__typename?: 'OrganizationExtension';
|
|
997
|
+
applicationsMaintainerContactInformation?: Maybe<TContactInformation>;
|
|
998
|
+
createdAt: Scalars['DateTime'];
|
|
999
|
+
id: Scalars['ID'];
|
|
1000
|
+
installedApplications?: Maybe<Array<TRestrictedCustomApplicationInstallationForOrganization>>;
|
|
1001
|
+
oidcSsoConfig?: Maybe<TOidcSsoConfig>;
|
|
1002
|
+
organizationId: Scalars['String'];
|
|
1003
|
+
registeredApplications?: Maybe<Array<TRestrictedCustomApplicationForOrganization>>;
|
|
1004
|
+
updatedAt: Scalars['DateTime'];
|
|
1005
|
+
};
|
|
1006
|
+
export type TOrganizationExtensionForCustomApplication = {
|
|
1007
|
+
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
1008
|
+
application: TRestrictedCustomApplicationForOrganization;
|
|
1009
|
+
id: Scalars['ID'];
|
|
1010
|
+
organizationId: Scalars['String'];
|
|
1011
|
+
organizationName?: Maybe<Scalars['String']>;
|
|
1012
|
+
};
|
|
1013
|
+
export type TPimSearchListView = {
|
|
1014
|
+
__typename?: 'PimSearchListView';
|
|
1015
|
+
createdAt: Scalars['DateTime'];
|
|
1016
|
+
filters?: Maybe<Array<TFilterValues>>;
|
|
1017
|
+
id: Scalars['ID'];
|
|
1018
|
+
isActive?: Maybe<Scalars['Boolean']>;
|
|
1019
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1020
|
+
projectKey: Scalars['String'];
|
|
1021
|
+
search?: Maybe<Scalars['String']>;
|
|
1022
|
+
sort?: Maybe<TSort>;
|
|
1023
|
+
table?: Maybe<TTable>;
|
|
1024
|
+
updatedAt: Scalars['DateTime'];
|
|
1025
|
+
userId: Scalars['String'];
|
|
1026
|
+
};
|
|
1027
|
+
export type TPimSearchListViewInput = {
|
|
1028
|
+
filters: Array<TFilterValuesCreateInput>;
|
|
1029
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1030
|
+
search?: InputMaybe<Scalars['String']>;
|
|
1031
|
+
sort: TSortCreateInput;
|
|
1032
|
+
table?: InputMaybe<TPimSearchListViewTableInput>;
|
|
1033
|
+
};
|
|
1034
|
+
export type TPimSearchListViewTableInput = {
|
|
1035
|
+
visibleColumns: Array<Scalars['String']>;
|
|
1036
|
+
};
|
|
1037
|
+
export type TProductTypeAttributesView = {
|
|
1038
|
+
__typename?: 'ProductTypeAttributesView';
|
|
1039
|
+
createdAt: Scalars['DateTime'];
|
|
1040
|
+
existence?: Maybe<TExistence>;
|
|
1041
|
+
id: Scalars['ID'];
|
|
1042
|
+
isActive: Scalars['Boolean'];
|
|
1043
|
+
isVariant?: Maybe<Scalars['Boolean']>;
|
|
1044
|
+
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1045
|
+
pinnedAttributes: Array<Scalars['String']>;
|
|
1046
|
+
productTypeId: Scalars['String'];
|
|
1047
|
+
projectKey: Scalars['String'];
|
|
1048
|
+
searchTerm?: Maybe<Scalars['String']>;
|
|
1049
|
+
updatedAt: Scalars['DateTime'];
|
|
1050
|
+
userId: Scalars['String'];
|
|
1051
|
+
};
|
|
1052
|
+
export type TProductTypeAttributesViewInput = {
|
|
1053
|
+
existence?: InputMaybe<TExistence>;
|
|
1054
|
+
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1055
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1056
|
+
pinnedAttributes: Array<Scalars['String']>;
|
|
1057
|
+
productTypeId: Scalars['String'];
|
|
1058
|
+
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1059
|
+
};
|
|
1060
|
+
export type TProductTypeAttributesViewUpdateInput = {
|
|
1061
|
+
existence?: InputMaybe<TExistence>;
|
|
1062
|
+
isVariant?: InputMaybe<Scalars['Boolean']>;
|
|
1063
|
+
nameAllLocales: Array<TLocalizedFieldCreateInput>;
|
|
1064
|
+
pinnedAttributes: Array<Scalars['String']>;
|
|
1065
|
+
searchTerm?: InputMaybe<Scalars['String']>;
|
|
1066
|
+
};
|
|
1067
|
+
export type TProjectExtension = {
|
|
1068
|
+
__typename?: 'ProjectExtension';
|
|
1069
|
+
applications?: Maybe<Array<TApplicationExtension>>;
|
|
1070
|
+
categoryRecommendationSettings?: Maybe<TCategoryRecommendationSettings>;
|
|
1071
|
+
createdAt: Scalars['DateTime'];
|
|
1072
|
+
id: Scalars['ID'];
|
|
1073
|
+
imageRegex?: Maybe<TImageRegex>;
|
|
1074
|
+
installedApplications?: Maybe<Array<TRestrictedCustomApplicationInstallationForProject>>;
|
|
1075
|
+
isRichTextEditorEnabled: Scalars['Boolean'];
|
|
1076
|
+
orderStatesVisibility: Array<TOrderStatesVisibility>;
|
|
1077
|
+
projectKey: Scalars['String'];
|
|
1078
|
+
sampleDataImport?: Maybe<TSampleDataImportMetadata>;
|
|
1079
|
+
updatedAt: Scalars['DateTime'];
|
|
1080
|
+
};
|
|
1081
|
+
export type TProjectExtension_ApplicationsArgs = {
|
|
1082
|
+
where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
|
|
1083
|
+
};
|
|
1084
|
+
export type TProjectExtension_InstalledApplicationsArgs = {
|
|
1085
|
+
where?: InputMaybe<TRestrictedCustomApplicationInstallationForProjectWhereInput>;
|
|
1086
|
+
};
|
|
1087
|
+
export type TPublicCustomApplicationDevelopedByCommercetools = {
|
|
1088
|
+
__typename?: 'PublicCustomApplicationDevelopedByCommercetools';
|
|
1089
|
+
createdAt: Scalars['DateTime'];
|
|
1090
|
+
description?: Maybe<Scalars['String']>;
|
|
1091
|
+
entryPointUriPath: Scalars['String'];
|
|
1092
|
+
icon: Scalars['String'];
|
|
1093
|
+
id: Scalars['ID'];
|
|
1094
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
1095
|
+
name: Scalars['String'];
|
|
1096
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
1097
|
+
status: TCustomApplicationStatus;
|
|
1098
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
1099
|
+
updatedAt: Scalars['DateTime'];
|
|
1100
|
+
url: Scalars['String'];
|
|
1101
|
+
};
|
|
1102
|
+
export type TQuery = {
|
|
1103
|
+
__typename?: 'Query';
|
|
1104
|
+
activeCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1105
|
+
activeCustomersListView?: Maybe<TCustomersListView>;
|
|
1106
|
+
activeDashboardView?: Maybe<TDashboardView>;
|
|
1107
|
+
activeDiscountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
1108
|
+
activeOrdersListView?: Maybe<TOrdersListView>;
|
|
1109
|
+
activePimSearchListView?: Maybe<TPimSearchListView>;
|
|
1110
|
+
activeProductDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1111
|
+
activeProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
1112
|
+
allAppliedCustomApplicationPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1113
|
+
allCustomApplications: TCustomApplicationsPagedQueryResult;
|
|
1114
|
+
allCustomViewsByOrganization: Array<Maybe<TCustomView>>;
|
|
1115
|
+
allFeatures: Array<TFeature>;
|
|
1116
|
+
allOrganizationExtensions: Array<TOrganizationExtension>;
|
|
1117
|
+
allProjectExtensions: Array<TProjectExtension>;
|
|
1118
|
+
allPublicCustomApplicationsDevelopedByCommercetools: Array<TPublicCustomApplicationDevelopedByCommercetools>;
|
|
1119
|
+
cartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1120
|
+
cartDiscountsCustomViews: Array<Maybe<TDiscountsCustomView>>;
|
|
1121
|
+
customApplication?: Maybe<TCustomApplication>;
|
|
1122
|
+
customView?: Maybe<TCustomView>;
|
|
1123
|
+
customersListView?: Maybe<TCustomersListView>;
|
|
1124
|
+
customersListViews: Array<Maybe<TCustomersListView>>;
|
|
1125
|
+
dashboardView?: Maybe<TDashboardView>;
|
|
1126
|
+
dashboardViews: Array<Maybe<TDashboardView>>;
|
|
1127
|
+
discountCodesCustomView?: Maybe<TDiscountsCustomView>;
|
|
1128
|
+
discountCodesCustomViews: Array<Maybe<TDiscountsCustomView>>;
|
|
1129
|
+
globalOrganizationExtension?: Maybe<TOrganizationExtension>;
|
|
1130
|
+
myCustomApplications: Array<TMyCustomApplication>;
|
|
1131
|
+
ordersListView?: Maybe<TOrdersListView>;
|
|
1132
|
+
ordersListViews: Array<Maybe<TOrdersListView>>;
|
|
1133
|
+
organizationExtension?: Maybe<TOrganizationExtension>;
|
|
1134
|
+
organizationExtensionForCustomApplication?: Maybe<TOrganizationExtensionForCustomApplication>;
|
|
1135
|
+
pimSearchListView?: Maybe<TPimSearchListView>;
|
|
1136
|
+
pimSearchListViews: Array<Maybe<TPimSearchListView>>;
|
|
1137
|
+
productDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
1138
|
+
productDiscountsCustomViews: Array<Maybe<TDiscountsCustomView>>;
|
|
1139
|
+
productTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
1140
|
+
productTypeAttributesViews?: Maybe<Array<Maybe<TProductTypeAttributesView>>>;
|
|
1141
|
+
projectExtension?: Maybe<TProjectExtension>;
|
|
1142
|
+
release?: Maybe<Scalars['String']>;
|
|
1143
|
+
ruleBuilderQuickSelectionValues?: Maybe<Array<Maybe<TRuleBuilderQuickSelectionValues>>>;
|
|
1144
|
+
variantPricesListViews: Array<Maybe<TVariantPricesListView>>;
|
|
1145
|
+
};
|
|
1146
|
+
export type TQuery_ActiveProductTypeAttributesViewArgs = {
|
|
1147
|
+
isVariant: Scalars['Boolean'];
|
|
1148
|
+
productTypeId: Scalars['String'];
|
|
1149
|
+
};
|
|
1150
|
+
export type TQuery_AllAppliedCustomApplicationPermissionsArgs = {
|
|
1151
|
+
applicationId: Scalars['ID'];
|
|
1152
|
+
entryPointUriPath: Scalars['String'];
|
|
1153
|
+
};
|
|
1154
|
+
export type TQuery_AllCustomApplicationsArgs = {
|
|
1155
|
+
params?: InputMaybe<TCustomApplicationQueryInput>;
|
|
1156
|
+
};
|
|
1157
|
+
export type TQuery_AllCustomViewsByOrganizationArgs = {
|
|
1158
|
+
organizationId: Scalars['ID'];
|
|
1159
|
+
};
|
|
1160
|
+
export type TQuery_AllFeaturesArgs = {
|
|
1161
|
+
params?: InputMaybe<TFeatureQueryInput>;
|
|
1162
|
+
};
|
|
1163
|
+
export type TQuery_AllOrganizationExtensionsArgs = {
|
|
1164
|
+
organizationIds?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1165
|
+
};
|
|
1166
|
+
export type TQuery_AllPublicCustomApplicationsDevelopedByCommercetoolsArgs = {
|
|
1167
|
+
params?: InputMaybe<TAllPublicCustomApplicationsDevelopedByCommercetoolsQueryInput>;
|
|
1168
|
+
};
|
|
1169
|
+
export type TQuery_CartDiscountsCustomViewArgs = {
|
|
1170
|
+
id: Scalars['ID'];
|
|
1171
|
+
};
|
|
1172
|
+
export type TQuery_CustomApplicationArgs = {
|
|
1173
|
+
applicationId: Scalars['ID'];
|
|
1174
|
+
};
|
|
1175
|
+
export type TQuery_CustomViewArgs = {
|
|
1176
|
+
customViewId: Scalars['ID'];
|
|
1177
|
+
};
|
|
1178
|
+
export type TQuery_CustomersListViewArgs = {
|
|
1179
|
+
id: Scalars['ID'];
|
|
1180
|
+
};
|
|
1181
|
+
export type TQuery_DashboardViewArgs = {
|
|
1182
|
+
id: Scalars['ID'];
|
|
1183
|
+
};
|
|
1184
|
+
export type TQuery_DiscountCodesCustomViewArgs = {
|
|
1185
|
+
id: Scalars['ID'];
|
|
1186
|
+
};
|
|
1187
|
+
export type TQuery_GlobalOrganizationExtensionArgs = {
|
|
1188
|
+
organizationId: Scalars['String'];
|
|
1189
|
+
};
|
|
1190
|
+
export type TQuery_MyCustomApplicationsArgs = {
|
|
1191
|
+
params?: InputMaybe<TMyCustomApplicationQueryInput>;
|
|
1192
|
+
};
|
|
1193
|
+
export type TQuery_OrdersListViewArgs = {
|
|
1194
|
+
id: Scalars['ID'];
|
|
1195
|
+
};
|
|
1196
|
+
export type TQuery_OrganizationExtensionArgs = {
|
|
1197
|
+
organizationId: Scalars['String'];
|
|
1198
|
+
};
|
|
1199
|
+
export type TQuery_OrganizationExtensionForCustomApplicationArgs = {
|
|
1200
|
+
entryPointUriPath: Scalars['String'];
|
|
1201
|
+
};
|
|
1202
|
+
export type TQuery_PimSearchListViewArgs = {
|
|
1203
|
+
id: Scalars['ID'];
|
|
1204
|
+
};
|
|
1205
|
+
export type TQuery_ProductDiscountsCustomViewArgs = {
|
|
1206
|
+
id: Scalars['ID'];
|
|
1207
|
+
};
|
|
1208
|
+
export type TQuery_ProductTypeAttributesViewArgs = {
|
|
1209
|
+
id: Scalars['ID'];
|
|
1210
|
+
};
|
|
1211
|
+
export type TQuery_ProductTypeAttributesViewsArgs = {
|
|
1212
|
+
isVariant: Scalars['Boolean'];
|
|
1213
|
+
productTypeId: Scalars['String'];
|
|
1214
|
+
};
|
|
1215
|
+
export type TQuery_RuleBuilderQuickSelectionValuesArgs = {
|
|
1216
|
+
ruleBuilderType: TRuleBuilderType;
|
|
1217
|
+
};
|
|
1218
|
+
export declare enum TResourceType {
|
|
1219
|
+
Categories = "CATEGORIES",
|
|
1220
|
+
PublishedProducts = "PUBLISHED_PRODUCTS",
|
|
1221
|
+
TotalProducts = "TOTAL_PRODUCTS",
|
|
1222
|
+
UnpublishedProducts = "UNPUBLISHED_PRODUCTS"
|
|
1223
|
+
}
|
|
1224
|
+
export type TResourcesNumbersConfiguration = {
|
|
1225
|
+
__typename?: 'ResourcesNumbersConfiguration';
|
|
1226
|
+
createdAt: Scalars['DateTime'];
|
|
1227
|
+
id: Scalars['ID'];
|
|
1228
|
+
resourceOptions: Array<TResourceType>;
|
|
1229
|
+
updatedAt: Scalars['DateTime'];
|
|
1230
|
+
};
|
|
1231
|
+
export type TResourcesNumbersConfigurationInput = {
|
|
1232
|
+
resourceOptions: Array<TResourceType>;
|
|
1233
|
+
};
|
|
1234
|
+
export type TRestrictedApplicationExtensionWhereInput = {
|
|
1235
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1236
|
+
isActive?: InputMaybe<Scalars['Boolean']>;
|
|
1237
|
+
url?: InputMaybe<Scalars['String']>;
|
|
1238
|
+
};
|
|
1239
|
+
export type TRestrictedCustomApplicationForOrganization = {
|
|
1240
|
+
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1241
|
+
createdAt: Scalars['DateTime'];
|
|
1242
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
1243
|
+
description?: Maybe<Scalars['String']>;
|
|
1244
|
+
entryPointUriPath: Scalars['String'];
|
|
1245
|
+
icon: Scalars['String'];
|
|
1246
|
+
id: Scalars['ID'];
|
|
1247
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
1248
|
+
name: Scalars['String'];
|
|
1249
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
1250
|
+
status: TCustomApplicationStatus;
|
|
1251
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
1252
|
+
updatedAt: Scalars['DateTime'];
|
|
1253
|
+
url: Scalars['String'];
|
|
1254
|
+
};
|
|
1255
|
+
export type TRestrictedCustomApplicationForOrganization_DeploymentsArgs = {
|
|
1256
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
1257
|
+
};
|
|
1258
|
+
export type TRestrictedCustomApplicationForProject = {
|
|
1259
|
+
__typename?: 'RestrictedCustomApplicationForProject';
|
|
1260
|
+
createdAt: Scalars['DateTime'];
|
|
1261
|
+
deployments: Array<TCustomApplicationDeploymentPreview>;
|
|
1262
|
+
description?: Maybe<Scalars['String']>;
|
|
1263
|
+
entryPointUriPath: Scalars['String'];
|
|
1264
|
+
icon: Scalars['String'];
|
|
1265
|
+
id: Scalars['ID'];
|
|
1266
|
+
mainMenuLink: TCustomApplicationMenuLink;
|
|
1267
|
+
menuLinks?: Maybe<TCustomApplicationMenuLink>;
|
|
1268
|
+
name: Scalars['String'];
|
|
1269
|
+
permissions: Array<TCustomApplicationPermission>;
|
|
1270
|
+
status?: Maybe<TCustomApplicationStatus>;
|
|
1271
|
+
submenuLinks: Array<TCustomApplicationSubmenuLink>;
|
|
1272
|
+
updatedAt: Scalars['DateTime'];
|
|
1273
|
+
url: Scalars['String'];
|
|
1274
|
+
};
|
|
1275
|
+
export type TRestrictedCustomApplicationForProject_DeploymentsArgs = {
|
|
1276
|
+
params?: InputMaybe<TCustomApplicationDeploymentPreviewsQueryInput>;
|
|
1277
|
+
};
|
|
1278
|
+
export type TRestrictedCustomApplicationInstallationForOrganization = {
|
|
1279
|
+
__typename?: 'RestrictedCustomApplicationInstallationForOrganization';
|
|
1280
|
+
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1281
|
+
application: TRestrictedCustomApplicationForProject;
|
|
1282
|
+
createdAt: Scalars['DateTime'];
|
|
1283
|
+
id: Scalars['ID'];
|
|
1284
|
+
installInAllProjects: Scalars['Boolean'];
|
|
1285
|
+
projects?: Maybe<Array<TProjectExtension>>;
|
|
1286
|
+
updatedAt: Scalars['DateTime'];
|
|
1287
|
+
};
|
|
1288
|
+
export type TRestrictedCustomApplicationInstallationForProject = {
|
|
1289
|
+
__typename?: 'RestrictedCustomApplicationInstallationForProject';
|
|
1290
|
+
acceptedPermissions: Array<TCustomApplicationInstallationPermission>;
|
|
1291
|
+
application: TRestrictedCustomApplicationForProject;
|
|
1292
|
+
createdAt: Scalars['DateTime'];
|
|
1293
|
+
id: Scalars['ID'];
|
|
1294
|
+
installInAllProjects: Scalars['Boolean'];
|
|
1295
|
+
updatedAt: Scalars['DateTime'];
|
|
1296
|
+
};
|
|
1297
|
+
export type TRestrictedCustomApplicationInstallationForProjectWhereInput = {
|
|
1298
|
+
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
1299
|
+
};
|
|
1300
|
+
export type TRichTextEditorSettingsInput = {
|
|
1301
|
+
isRichTextEditorEnabled: Scalars['Boolean'];
|
|
1302
|
+
};
|
|
1303
|
+
export type TRuleBuilderQuickSelectCreatefunctionsInput = {
|
|
1304
|
+
set?: InputMaybe<Array<Scalars['String']>>;
|
|
1305
|
+
};
|
|
1306
|
+
export type TRuleBuilderQuickSelectCreatepredicatesInput = {
|
|
1307
|
+
set?: InputMaybe<Array<Scalars['String']>>;
|
|
1308
|
+
};
|
|
1309
|
+
export type TRuleBuilderQuickSelectionInput = {
|
|
1310
|
+
functions?: InputMaybe<TRuleBuilderQuickSelectCreatepredicatesInput>;
|
|
1311
|
+
predicates?: InputMaybe<TRuleBuilderQuickSelectCreatefunctionsInput>;
|
|
1312
|
+
ruleBuilderType: TRuleBuilderType;
|
|
1313
|
+
};
|
|
1314
|
+
export type TRuleBuilderQuickSelectionValues = {
|
|
1315
|
+
__typename?: 'RuleBuilderQuickSelectionValues';
|
|
1316
|
+
createdAt: Scalars['DateTime'];
|
|
1317
|
+
functions: Array<Scalars['String']>;
|
|
1318
|
+
id: Scalars['ID'];
|
|
1319
|
+
predicates: Array<Scalars['String']>;
|
|
1320
|
+
projectKey: Scalars['String'];
|
|
1321
|
+
ruleBuilderType: TRuleBuilderType;
|
|
1322
|
+
updatedAt: Scalars['DateTime'];
|
|
1323
|
+
userId: Scalars['String'];
|
|
1324
|
+
};
|
|
1325
|
+
export declare enum TRuleBuilderType {
|
|
1326
|
+
CartDiscount = "CartDiscount",
|
|
1327
|
+
CartTargetDiscount = "CartTargetDiscount",
|
|
1328
|
+
ProductDiscount = "ProductDiscount"
|
|
1329
|
+
}
|
|
1330
|
+
export type TSalesPerformanceConfiguration = {
|
|
1331
|
+
__typename?: 'SalesPerformanceConfiguration';
|
|
1332
|
+
createdAt: Scalars['DateTime'];
|
|
1333
|
+
dateFilterType: TDateFilterType;
|
|
1334
|
+
dateFrom?: Maybe<Scalars['DateTime']>;
|
|
1335
|
+
dateTo?: Maybe<Scalars['DateTime']>;
|
|
1336
|
+
id: Scalars['ID'];
|
|
1337
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
1338
|
+
updatedAt: Scalars['DateTime'];
|
|
1339
|
+
};
|
|
1340
|
+
export type TSalesPerformanceConfigurationInput = {
|
|
1341
|
+
dateFilterType: TDateFilterType;
|
|
1342
|
+
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
1343
|
+
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1344
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
1345
|
+
};
|
|
1346
|
+
export type TSampleDataImportMetadata = {
|
|
1347
|
+
__typename?: 'SampleDataImportMetadata';
|
|
1348
|
+
completed: Scalars['Boolean'];
|
|
1349
|
+
dataset?: Maybe<TSampleDatasets>;
|
|
1350
|
+
};
|
|
1351
|
+
export declare enum TSampleDatasets {
|
|
1352
|
+
Fashion = "FASHION"
|
|
1353
|
+
}
|
|
1354
|
+
export type TSort = {
|
|
1355
|
+
__typename?: 'Sort';
|
|
1356
|
+
key: Scalars['String'];
|
|
1357
|
+
order: TSortOrder;
|
|
1358
|
+
};
|
|
1359
|
+
export type TSortCreateInput = {
|
|
1360
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
1361
|
+
key: Scalars['String'];
|
|
1362
|
+
order: TSortOrder;
|
|
1363
|
+
};
|
|
1364
|
+
export declare enum TSortOrder {
|
|
1365
|
+
Asc = "Asc",
|
|
1366
|
+
Desc = "Desc"
|
|
1367
|
+
}
|
|
1368
|
+
export type TTable = {
|
|
1369
|
+
__typename?: 'Table';
|
|
1370
|
+
visibleColumns: Array<Scalars['String']>;
|
|
1371
|
+
};
|
|
1372
|
+
export type TTopProductsConfiguration = {
|
|
1373
|
+
__typename?: 'TopProductsConfiguration';
|
|
1374
|
+
bestSellingLimit: TBestSellingLimit;
|
|
1375
|
+
createdAt: Scalars['DateTime'];
|
|
1376
|
+
id: Scalars['ID'];
|
|
1377
|
+
updatedAt: Scalars['DateTime'];
|
|
1378
|
+
};
|
|
1379
|
+
export type TTopProductsConfigurationInput = {
|
|
1380
|
+
bestSellingLimit?: InputMaybe<TBestSellingLimit>;
|
|
1381
|
+
};
|
|
1382
|
+
export type TTotalOrdersConfiguration = {
|
|
1383
|
+
__typename?: 'TotalOrdersConfiguration';
|
|
1384
|
+
createdAt: Scalars['DateTime'];
|
|
1385
|
+
dateFilterType: TDateFilterType;
|
|
1386
|
+
dateFrom?: Maybe<Scalars['DateTime']>;
|
|
1387
|
+
dateTo?: Maybe<Scalars['DateTime']>;
|
|
1388
|
+
id: Scalars['ID'];
|
|
1389
|
+
productId?: Maybe<Scalars['String']>;
|
|
1390
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
1391
|
+
updatedAt: Scalars['DateTime'];
|
|
1392
|
+
};
|
|
1393
|
+
export type TTotalOrdersConfigurationInput = {
|
|
1394
|
+
dateFilterType: TDateFilterType;
|
|
1395
|
+
dateFrom?: InputMaybe<Scalars['DateTime']>;
|
|
1396
|
+
dateTo?: InputMaybe<Scalars['DateTime']>;
|
|
1397
|
+
productId?: InputMaybe<Scalars['String']>;
|
|
1398
|
+
showPreviousTimeframe: Scalars['Boolean'];
|
|
1399
|
+
};
|
|
1400
|
+
export type TTotalSalesConfiguration = {
|
|
1401
|
+
__typename?: 'TotalSalesConfiguration';
|
|
1402
|
+
createdAt: Scalars['DateTime'];
|
|
1403
|
+
id: Scalars['ID'];
|
|
1404
|
+
productId?: Maybe<Scalars['String']>;
|
|
1405
|
+
updatedAt: Scalars['DateTime'];
|
|
1406
|
+
};
|
|
1407
|
+
export type TTotalSalesConfigurationInput = {
|
|
1408
|
+
productId?: InputMaybe<Scalars['String']>;
|
|
1409
|
+
};
|
|
1410
|
+
export type TVariantPricesListView = {
|
|
1411
|
+
__typename?: 'VariantPricesListView';
|
|
1412
|
+
createdAt: Scalars['DateTime'];
|
|
1413
|
+
id: Scalars['ID'];
|
|
1414
|
+
projectKey: Scalars['String'];
|
|
1415
|
+
updatedAt: Scalars['DateTime'];
|
|
1416
|
+
userId: Scalars['String'];
|
|
1417
|
+
visibleColumns: Array<Scalars['String']>;
|
|
1418
|
+
};
|
|
1419
|
+
export type TVariantPricesListViewInput = {
|
|
1420
|
+
visibleColumns: Array<Scalars['String']>;
|
|
1421
|
+
};
|
|
1422
|
+
export type TFetchProjectExtensionImageRegexQueryVariables = Exact<{
|
|
1423
|
+
[key: string]: never;
|
|
1424
|
+
}>;
|
|
1425
|
+
export type TFetchProjectExtensionImageRegexQuery = {
|
|
1426
|
+
__typename?: 'Query';
|
|
1427
|
+
projectExtension?: {
|
|
1428
|
+
__typename?: 'ProjectExtension';
|
|
1429
|
+
id: string;
|
|
1430
|
+
imageRegex?: {
|
|
1431
|
+
__typename?: 'ImageRegex';
|
|
1432
|
+
thumb?: {
|
|
1433
|
+
__typename?: 'ImageRegexOptions';
|
|
1434
|
+
flag?: string | null;
|
|
1435
|
+
search: string;
|
|
1436
|
+
replace: string;
|
|
1437
|
+
} | null;
|
|
1438
|
+
small?: {
|
|
1439
|
+
__typename?: 'ImageRegexOptions';
|
|
1440
|
+
flag?: string | null;
|
|
1441
|
+
search: string;
|
|
1442
|
+
replace: string;
|
|
1443
|
+
} | null;
|
|
1444
|
+
} | null;
|
|
1445
|
+
} | null;
|
|
1446
|
+
};
|
|
1447
|
+
export type TImageRegexFragment = {
|
|
1448
|
+
__typename?: 'ImageRegexOptions';
|
|
1449
|
+
flag?: string | null;
|
|
1450
|
+
search: string;
|
|
1451
|
+
replace: string;
|
|
1452
|
+
};
|
|
1453
|
+
export type TFetchProjectExtensionsNavbarQueryVariables = Exact<{
|
|
1454
|
+
[key: string]: never;
|
|
1455
|
+
}>;
|
|
1456
|
+
export type TFetchProjectExtensionsNavbarQuery = {
|
|
1457
|
+
__typename?: 'Query';
|
|
1458
|
+
projectExtension?: {
|
|
1459
|
+
__typename?: 'ProjectExtension';
|
|
1460
|
+
id: string;
|
|
1461
|
+
installedApplications?: Array<{
|
|
1462
|
+
__typename?: 'RestrictedCustomApplicationInstallationForProject';
|
|
1463
|
+
application: {
|
|
1464
|
+
__typename?: 'RestrictedCustomApplicationForProject';
|
|
1465
|
+
id: string;
|
|
1466
|
+
entryPointUriPath: string;
|
|
1467
|
+
icon: string;
|
|
1468
|
+
mainMenuLink: {
|
|
1469
|
+
__typename?: 'CustomApplicationMenuLink';
|
|
1470
|
+
id: string;
|
|
1471
|
+
permissions: Array<string>;
|
|
1472
|
+
defaultLabel: string;
|
|
1473
|
+
labelAllLocales: Array<{
|
|
1474
|
+
__typename?: 'LocalizedField';
|
|
1475
|
+
locale: string;
|
|
1476
|
+
value: string;
|
|
1477
|
+
}>;
|
|
1478
|
+
};
|
|
1479
|
+
submenuLinks: Array<{
|
|
1480
|
+
__typename?: 'CustomApplicationSubmenuLink';
|
|
1481
|
+
id: string;
|
|
1482
|
+
uriPath: string;
|
|
1483
|
+
permissions: Array<string>;
|
|
1484
|
+
defaultLabel: string;
|
|
1485
|
+
labelAllLocales: Array<{
|
|
1486
|
+
__typename?: 'LocalizedField';
|
|
1487
|
+
locale: string;
|
|
1488
|
+
value: string;
|
|
1489
|
+
}>;
|
|
1490
|
+
}>;
|
|
1491
|
+
};
|
|
1492
|
+
}> | null;
|
|
1493
|
+
} | null;
|
|
1494
|
+
};
|
|
1495
|
+
export type TCreateCustomApplicationFromCliMutationVariables = Exact<{
|
|
1496
|
+
organizationId: Scalars['String'];
|
|
1497
|
+
data: TCustomApplicationDraftDataInput;
|
|
1498
|
+
}>;
|
|
1499
|
+
export type TCreateCustomApplicationFromCliMutation = {
|
|
1500
|
+
__typename?: 'Mutation';
|
|
1501
|
+
createCustomApplication?: {
|
|
1502
|
+
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1503
|
+
id: string;
|
|
1504
|
+
} | null;
|
|
1505
|
+
};
|
|
1506
|
+
export type TFetchCustomApplicationFromCliQueryVariables = Exact<{
|
|
1507
|
+
entryPointUriPath: Scalars['String'];
|
|
1508
|
+
}>;
|
|
1509
|
+
export type TFetchCustomApplicationFromCliQuery = {
|
|
1510
|
+
__typename?: 'Query';
|
|
1511
|
+
organizationExtensionForCustomApplication?: {
|
|
1512
|
+
__typename?: 'OrganizationExtensionForCustomApplication';
|
|
1513
|
+
organizationId: string;
|
|
1514
|
+
application: {
|
|
1515
|
+
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1516
|
+
id: string;
|
|
1517
|
+
entryPointUriPath: string;
|
|
1518
|
+
name: string;
|
|
1519
|
+
description?: string | null;
|
|
1520
|
+
url: string;
|
|
1521
|
+
icon: string;
|
|
1522
|
+
permissions: Array<{
|
|
1523
|
+
__typename?: 'CustomApplicationPermission';
|
|
1524
|
+
name: string;
|
|
1525
|
+
oAuthScopes: Array<string>;
|
|
1526
|
+
}>;
|
|
1527
|
+
mainMenuLink: {
|
|
1528
|
+
__typename?: 'CustomApplicationMenuLink';
|
|
1529
|
+
defaultLabel: string;
|
|
1530
|
+
permissions: Array<string>;
|
|
1531
|
+
labelAllLocales: Array<{
|
|
1532
|
+
__typename?: 'LocalizedField';
|
|
1533
|
+
locale: string;
|
|
1534
|
+
value: string;
|
|
1535
|
+
}>;
|
|
1536
|
+
};
|
|
1537
|
+
submenuLinks: Array<{
|
|
1538
|
+
__typename?: 'CustomApplicationSubmenuLink';
|
|
1539
|
+
uriPath: string;
|
|
1540
|
+
defaultLabel: string;
|
|
1541
|
+
permissions: Array<string>;
|
|
1542
|
+
labelAllLocales: Array<{
|
|
1543
|
+
__typename?: 'LocalizedField';
|
|
1544
|
+
locale: string;
|
|
1545
|
+
value: string;
|
|
1546
|
+
}>;
|
|
1547
|
+
}>;
|
|
1548
|
+
};
|
|
1549
|
+
} | null;
|
|
1550
|
+
};
|
|
1551
|
+
export type TUpdateCustomApplicationFromCliMutationVariables = Exact<{
|
|
1552
|
+
organizationId: Scalars['String'];
|
|
1553
|
+
data: TCustomApplicationDraftDataInput;
|
|
1554
|
+
applicationId: Scalars['ID'];
|
|
1555
|
+
}>;
|
|
1556
|
+
export type TUpdateCustomApplicationFromCliMutation = {
|
|
1557
|
+
__typename?: 'Mutation';
|
|
1558
|
+
updateCustomApplication?: {
|
|
1559
|
+
__typename?: 'RestrictedCustomApplicationForOrganization';
|
|
1560
|
+
id: string;
|
|
1561
|
+
} | null;
|
|
1562
|
+
};
|