@commercetools-frontend-extensions/change-history 8.37.0 → 8.39.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-extensions-change-history.cjs.dev.js +1192 -660
- package/dist/commercetools-frontend-extensions-change-history.cjs.prod.js +1177 -649
- package/dist/commercetools-frontend-extensions-change-history.esm.js +1191 -660
- package/dist/declarations/src/components/_types/change-history.d.ts +5 -0
- package/dist/declarations/src/components/change-history-list-connector/change-history-list-connector.d.ts +42 -0
- package/dist/declarations/src/components/change-history-list-connector/conversions.d.ts +49 -0
- package/dist/declarations/src/components/change-history-list-view/filter-definitions.d.ts +37 -0
- package/dist/declarations/src/components/search/filters-container/filter-configurations/filter-configurations.d.ts +36 -0
- package/dist/declarations/src/components/search/standard-filter-definitions/index.d.ts +1 -0
- package/dist/declarations/src/components/search/standard-filter-definitions/standard-filter-definitions.d.ts +24 -0
- package/dist/declarations/src/components/search/standard-filters/enum-filters/enum-filters.d.ts +9 -0
- package/dist/declarations/src/components/search/standard-filters/enum-filters/index.d.ts +1 -0
- package/dist/declarations/src/components/search/standard-filters/resource-change-filter/resource-change-filter.d.ts +16 -0
- package/dist/declarations/src/components/search/standard-filters/stores-filter/stores-filter.d.ts +12 -0
- package/dist/declarations/src/components/search/standard-filters/text-filter/index.d.ts +1 -0
- package/dist/declarations/src/components/search/standard-filters/text-filter/text-filter.d.ts +6 -0
- package/dist/declarations/src/constants/filters.d.ts +13 -7
- package/dist/declarations/src/constants/old-filters.d.ts +0 -5
- package/dist/declarations/src/hooks/use-search-query-state/types.d.ts +105 -0
- package/dist/declarations/src/types/filters-types.d.ts +152 -0
- package/dist/declarations/types/src/generated/ctp.d.ts +15067 -0
- package/dist/declarations/types/src/generated/mc.d.ts +604 -0
- package/dist/{en-27cab1c8.cjs.prod.js → en-53fa62aa.cjs.prod.js} +4 -4
- package/dist/{en-3ca2b453.esm.js → en-d9a07b89.esm.js} +4 -4
- package/dist/{en-ec3472f0.cjs.dev.js → en-db0832e3.cjs.dev.js} +4 -4
- package/package.json +15 -13
|
@@ -0,0 +1,604 @@
|
|
|
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 MakeEmpty<T extends {
|
|
15
|
+
[key: string]: unknown;
|
|
16
|
+
}, K extends keyof T> = {
|
|
17
|
+
[_ in K]?: never;
|
|
18
|
+
};
|
|
19
|
+
export type Incremental<T> = T | {
|
|
20
|
+
[P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
|
|
21
|
+
};
|
|
22
|
+
/** All built-in and custom scalars, mapped to their actual values */
|
|
23
|
+
export type Scalars = {
|
|
24
|
+
ID: {
|
|
25
|
+
input: string;
|
|
26
|
+
output: string;
|
|
27
|
+
};
|
|
28
|
+
String: {
|
|
29
|
+
input: string;
|
|
30
|
+
output: string;
|
|
31
|
+
};
|
|
32
|
+
Boolean: {
|
|
33
|
+
input: boolean;
|
|
34
|
+
output: boolean;
|
|
35
|
+
};
|
|
36
|
+
Int: {
|
|
37
|
+
input: number;
|
|
38
|
+
output: number;
|
|
39
|
+
};
|
|
40
|
+
Float: {
|
|
41
|
+
input: number;
|
|
42
|
+
output: number;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
export type TAdditionalUserInfo = {
|
|
46
|
+
firstName: Scalars['String']['input'];
|
|
47
|
+
lastName: Scalars['String']['input'];
|
|
48
|
+
};
|
|
49
|
+
export type TAllPermissionsForAllApplications = {
|
|
50
|
+
__typename?: 'AllPermissionsForAllApplications';
|
|
51
|
+
allAppliedActionRights: Array<TAppliedActionRight>;
|
|
52
|
+
allAppliedDataFences: Array<TAppliedDataFence>;
|
|
53
|
+
allAppliedMenuVisibilities: Array<TAppliedMenuVisibilities>;
|
|
54
|
+
allAppliedPermissions: Array<TAppliedPermission>;
|
|
55
|
+
};
|
|
56
|
+
export type TAppliedActionRight = {
|
|
57
|
+
__typename?: 'AppliedActionRight';
|
|
58
|
+
group: Scalars['String']['output'];
|
|
59
|
+
name: Scalars['String']['output'];
|
|
60
|
+
value: Scalars['Boolean']['output'];
|
|
61
|
+
};
|
|
62
|
+
export type TAppliedDataFence = TStoreDataFence;
|
|
63
|
+
export type TAppliedMenuVisibilities = {
|
|
64
|
+
__typename?: 'AppliedMenuVisibilities';
|
|
65
|
+
name: Scalars['String']['output'];
|
|
66
|
+
value: Scalars['Boolean']['output'];
|
|
67
|
+
};
|
|
68
|
+
export type TAppliedPermission = {
|
|
69
|
+
__typename?: 'AppliedPermission';
|
|
70
|
+
name: Scalars['String']['output'];
|
|
71
|
+
value: Scalars['Boolean']['output'];
|
|
72
|
+
};
|
|
73
|
+
export type TCartClassificationValue = {
|
|
74
|
+
__typename?: 'CartClassificationValue';
|
|
75
|
+
allLocaleLabels: Array<Maybe<TLocalizedField>>;
|
|
76
|
+
key: Scalars['String']['output'];
|
|
77
|
+
};
|
|
78
|
+
export type TChangeUserBusinessRole = {
|
|
79
|
+
businessRole?: InputMaybe<Scalars['String']['input']>;
|
|
80
|
+
};
|
|
81
|
+
export type TChangeUserLanguage = {
|
|
82
|
+
language: Scalars['String']['input'];
|
|
83
|
+
};
|
|
84
|
+
export type TChangeUserName = {
|
|
85
|
+
firstName: Scalars['String']['input'];
|
|
86
|
+
lastName: Scalars['String']['input'];
|
|
87
|
+
};
|
|
88
|
+
export type TChangeUserNumberFormat = {
|
|
89
|
+
numberFormat: Scalars['String']['input'];
|
|
90
|
+
};
|
|
91
|
+
export type TChangeUserPassword = {
|
|
92
|
+
password: Scalars['String']['input'];
|
|
93
|
+
};
|
|
94
|
+
export type TDataFence = {
|
|
95
|
+
type: Scalars['String']['output'];
|
|
96
|
+
};
|
|
97
|
+
export type TDeleteAccountRequest = {
|
|
98
|
+
__typename?: 'DeleteAccountRequest';
|
|
99
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
100
|
+
};
|
|
101
|
+
export type TDeletedUser = {
|
|
102
|
+
__typename?: 'DeletedUser';
|
|
103
|
+
id: Scalars['String']['output'];
|
|
104
|
+
};
|
|
105
|
+
export type TFeature = {
|
|
106
|
+
__typename?: 'Feature';
|
|
107
|
+
name: Scalars['String']['output'];
|
|
108
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
109
|
+
value: Scalars['Boolean']['output'];
|
|
110
|
+
};
|
|
111
|
+
export type TIdTokenUserInfo = {
|
|
112
|
+
__typename?: 'IdTokenUserInfo';
|
|
113
|
+
additionalClaims?: Maybe<Scalars['String']['output']>;
|
|
114
|
+
aud: Scalars['String']['output'];
|
|
115
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
116
|
+
exp: Scalars['Float']['output'];
|
|
117
|
+
iat?: Maybe<Scalars['Float']['output']>;
|
|
118
|
+
iss: Scalars['String']['output'];
|
|
119
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
120
|
+
sub: Scalars['String']['output'];
|
|
121
|
+
};
|
|
122
|
+
export type TImportResponse = {
|
|
123
|
+
__typename?: 'ImportResponse';
|
|
124
|
+
hasImportedSampleData?: Maybe<Scalars['Boolean']['output']>;
|
|
125
|
+
importedSampleData?: Maybe<Scalars['String']['output']>;
|
|
126
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
127
|
+
};
|
|
128
|
+
export type TInvitationInput = {
|
|
129
|
+
emails: Array<Scalars['String']['input']>;
|
|
130
|
+
organization: TInvitationOrganizationInput;
|
|
131
|
+
team: TInvitationTeamInput;
|
|
132
|
+
};
|
|
133
|
+
export type TInvitationOrganizationInput = {
|
|
134
|
+
id: Scalars['ID']['input'];
|
|
135
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
136
|
+
version: Scalars['Int']['input'];
|
|
137
|
+
};
|
|
138
|
+
export type TInvitationQueryResult = {
|
|
139
|
+
__typename?: 'InvitationQueryResult';
|
|
140
|
+
gravatarHash?: Maybe<Scalars['String']['output']>;
|
|
141
|
+
hasValidEmail: Scalars['Boolean']['output'];
|
|
142
|
+
isAlreadyAMemberOfTeam: Scalars['Boolean']['output'];
|
|
143
|
+
isKnownUser: Scalars['Boolean']['output'];
|
|
144
|
+
version: Scalars['Int']['output'];
|
|
145
|
+
};
|
|
146
|
+
export type TInvitationResult = {
|
|
147
|
+
__typename?: 'InvitationResult';
|
|
148
|
+
email: Scalars['String']['output'];
|
|
149
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
150
|
+
status: InvitationStatus;
|
|
151
|
+
};
|
|
152
|
+
export declare enum InvitationStatus {
|
|
153
|
+
InvitationFailure = "InvitationFailure",
|
|
154
|
+
InvitationSent = "InvitationSent",
|
|
155
|
+
PendingRegistration = "PendingRegistration"
|
|
156
|
+
}
|
|
157
|
+
export type TInvitationTeamInput = {
|
|
158
|
+
id: Scalars['ID']['input'];
|
|
159
|
+
};
|
|
160
|
+
export type TInvitationWhereInput = {
|
|
161
|
+
email: Scalars['String']['input'];
|
|
162
|
+
organizationId: Scalars['ID']['input'];
|
|
163
|
+
teamId: Scalars['ID']['input'];
|
|
164
|
+
};
|
|
165
|
+
export type TLocalizedField = {
|
|
166
|
+
__typename?: 'LocalizedField';
|
|
167
|
+
locale: Scalars['String']['output'];
|
|
168
|
+
value: Scalars['String']['output'];
|
|
169
|
+
};
|
|
170
|
+
export type TMetaData = {
|
|
171
|
+
createdAt: Scalars['String']['output'];
|
|
172
|
+
lastModifiedAt: Scalars['String']['output'];
|
|
173
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
174
|
+
};
|
|
175
|
+
export type TMutation = {
|
|
176
|
+
__typename?: 'Mutation';
|
|
177
|
+
createMyOrganization?: Maybe<TOrganizationCreated>;
|
|
178
|
+
createMyProject?: Maybe<TProjectPendingCreation>;
|
|
179
|
+
createOAuthClient: TOAuthClient;
|
|
180
|
+
createUserFromIdentity: TUser;
|
|
181
|
+
deleteAccount: TDeletedUser;
|
|
182
|
+
deleteOAuthClient: TOAuthClient;
|
|
183
|
+
importSampleData: TImportResponse;
|
|
184
|
+
invite: Array<TInvitationResult>;
|
|
185
|
+
random: Scalars['String']['output'];
|
|
186
|
+
resetPassword: TResetUser;
|
|
187
|
+
sendLinkToDeleteAccount?: Maybe<TDeleteAccountRequest>;
|
|
188
|
+
sendLinkToResetPassword?: Maybe<TResetPasswordRequest>;
|
|
189
|
+
sendLinkToSignUp?: Maybe<TSignUpRequest>;
|
|
190
|
+
signUp: TSignedUpUser;
|
|
191
|
+
updateUser: TUser;
|
|
192
|
+
};
|
|
193
|
+
export type TMutation_CreateMyOrganizationArgs = {
|
|
194
|
+
draft: TOrganizationDraftType;
|
|
195
|
+
};
|
|
196
|
+
export type TMutation_CreateMyProjectArgs = {
|
|
197
|
+
draft: TProjectDraftType;
|
|
198
|
+
myPermission: TMyPermissionInitializationInput;
|
|
199
|
+
};
|
|
200
|
+
export type TMutation_CreateOAuthClientArgs = {
|
|
201
|
+
draft: TOAuthClientCreationInput;
|
|
202
|
+
};
|
|
203
|
+
export type TMutation_DeleteAccountArgs = {
|
|
204
|
+
jwt: Scalars['String']['input'];
|
|
205
|
+
};
|
|
206
|
+
export type TMutation_DeleteOAuthClientArgs = {
|
|
207
|
+
id: Scalars['ID']['input'];
|
|
208
|
+
};
|
|
209
|
+
export type TMutation_ImportSampleDataArgs = {
|
|
210
|
+
dataset?: InputMaybe<SampleDatasets>;
|
|
211
|
+
projectKey: Scalars['String']['input'];
|
|
212
|
+
};
|
|
213
|
+
export type TMutation_InviteArgs = {
|
|
214
|
+
draft: TInvitationInput;
|
|
215
|
+
origin?: InputMaybe<Scalars['String']['input']>;
|
|
216
|
+
};
|
|
217
|
+
export type TMutation_RandomArgs = {
|
|
218
|
+
byteLength: Scalars['Int']['input'];
|
|
219
|
+
};
|
|
220
|
+
export type TMutation_ResetPasswordArgs = {
|
|
221
|
+
draft: TResetPasswordDraft;
|
|
222
|
+
jwt: Scalars['String']['input'];
|
|
223
|
+
};
|
|
224
|
+
export type TMutation_SendLinkToResetPasswordArgs = {
|
|
225
|
+
email: Scalars['String']['input'];
|
|
226
|
+
};
|
|
227
|
+
export type TMutation_SendLinkToSignUpArgs = {
|
|
228
|
+
additionalInfo?: InputMaybe<TAdditionalUserInfo>;
|
|
229
|
+
email: Scalars['String']['input'];
|
|
230
|
+
language?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
};
|
|
232
|
+
export type TMutation_SignUpArgs = {
|
|
233
|
+
draft: TUserDraft;
|
|
234
|
+
jwt: Scalars['String']['input'];
|
|
235
|
+
};
|
|
236
|
+
export type TMutation_UpdateUserArgs = {
|
|
237
|
+
actions: Array<TUserUpdateAction>;
|
|
238
|
+
version: Scalars['Int']['input'];
|
|
239
|
+
};
|
|
240
|
+
export type TMyPermissionInitializationInput = {
|
|
241
|
+
teamId: Scalars['String']['input'];
|
|
242
|
+
};
|
|
243
|
+
export type TOAuthClient = {
|
|
244
|
+
__typename?: 'OAuthClient';
|
|
245
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
246
|
+
id: Scalars['ID']['output'];
|
|
247
|
+
lastUsedAt?: Maybe<Scalars['String']['output']>;
|
|
248
|
+
name: Scalars['String']['output'];
|
|
249
|
+
ownerId: Scalars['ID']['output'];
|
|
250
|
+
permissions: Array<TProjectPermission>;
|
|
251
|
+
secret: Scalars['String']['output'];
|
|
252
|
+
};
|
|
253
|
+
export type TOAuthClientCreationInput = {
|
|
254
|
+
name: Scalars['String']['input'];
|
|
255
|
+
ownerId: Scalars['ID']['input'];
|
|
256
|
+
permissions: Array<TProjectPermissionInput>;
|
|
257
|
+
};
|
|
258
|
+
export type TOAuthClientQueryResult = TQueryResult & {
|
|
259
|
+
__typename?: 'OAuthClientQueryResult';
|
|
260
|
+
count: Scalars['Int']['output'];
|
|
261
|
+
offset: Scalars['Int']['output'];
|
|
262
|
+
results: Array<TOAuthClient>;
|
|
263
|
+
total: Scalars['Int']['output'];
|
|
264
|
+
};
|
|
265
|
+
export type TOAuthClientTemplate = {
|
|
266
|
+
__typename?: 'OAuthClientTemplate';
|
|
267
|
+
key: Scalars['String']['output'];
|
|
268
|
+
oAuthScopes: Array<Scalars['String']['output']>;
|
|
269
|
+
};
|
|
270
|
+
export type TOrganization = {
|
|
271
|
+
__typename?: 'Organization';
|
|
272
|
+
/** @deprecated This field will be removed in the future. */
|
|
273
|
+
createdAt: Scalars['String']['output'];
|
|
274
|
+
id: Scalars['ID']['output'];
|
|
275
|
+
name: Scalars['String']['output'];
|
|
276
|
+
};
|
|
277
|
+
export type TOrganizationCreated = {
|
|
278
|
+
__typename?: 'OrganizationCreated';
|
|
279
|
+
id: Scalars['String']['output'];
|
|
280
|
+
name: Scalars['String']['output'];
|
|
281
|
+
teams: Array<TOrganizationTeamsCreated>;
|
|
282
|
+
};
|
|
283
|
+
export type TOrganizationDraftType = {
|
|
284
|
+
name: Scalars['String']['input'];
|
|
285
|
+
ownerId: Scalars['String']['input'];
|
|
286
|
+
};
|
|
287
|
+
export type TOrganizationTeamsCreated = {
|
|
288
|
+
__typename?: 'OrganizationTeamsCreated';
|
|
289
|
+
id: Scalars['String']['output'];
|
|
290
|
+
name: Scalars['String']['output'];
|
|
291
|
+
};
|
|
292
|
+
export type TProject = TMetaData & {
|
|
293
|
+
__typename?: 'Project';
|
|
294
|
+
allAppliedActionRights: Array<TAppliedActionRight>;
|
|
295
|
+
allAppliedDataFences: Array<TAppliedDataFence>;
|
|
296
|
+
/** @deprecated This field has been moved into the menuPermissionsForAllApplications field. */
|
|
297
|
+
allAppliedMenuVisibilities: Array<TAppliedMenuVisibilities>;
|
|
298
|
+
allAppliedPermissions: Array<TAppliedPermission>;
|
|
299
|
+
allPermissionsForAllApplications: TAllPermissionsForAllApplications;
|
|
300
|
+
apiVersion: Scalars['String']['output'];
|
|
301
|
+
countries: Array<Scalars['String']['output']>;
|
|
302
|
+
createdAt: Scalars['String']['output'];
|
|
303
|
+
currencies: Array<Scalars['String']['output']>;
|
|
304
|
+
expiry: TProjectExpiry;
|
|
305
|
+
initialized: Scalars['Boolean']['output'];
|
|
306
|
+
isProductionProject: Scalars['Boolean']['output'];
|
|
307
|
+
isUserAdminOfCurrentProject?: Maybe<Scalars['Boolean']['output']>;
|
|
308
|
+
key: Scalars['String']['output'];
|
|
309
|
+
languages: Array<Scalars['String']['output']>;
|
|
310
|
+
lastModifiedAt: Scalars['String']['output'];
|
|
311
|
+
name: Scalars['String']['output'];
|
|
312
|
+
owner: TOrganization;
|
|
313
|
+
plan: Scalars['String']['output'];
|
|
314
|
+
sampleDataImportDataset?: Maybe<Scalars['String']['output']>;
|
|
315
|
+
shippingRateInputType?: Maybe<TShippingRateInputType>;
|
|
316
|
+
suspension: TProjectSuspension;
|
|
317
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
318
|
+
};
|
|
319
|
+
export type TProjectDraftType = {
|
|
320
|
+
countries: Array<Scalars['String']['input']>;
|
|
321
|
+
currencies: Array<Scalars['String']['input']>;
|
|
322
|
+
deleteDaysAfterCreation?: InputMaybe<Scalars['Int']['input']>;
|
|
323
|
+
key: Scalars['String']['input'];
|
|
324
|
+
languages: Array<Scalars['String']['input']>;
|
|
325
|
+
messagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
326
|
+
name: Scalars['String']['input'];
|
|
327
|
+
ownerId: Scalars['String']['input'];
|
|
328
|
+
};
|
|
329
|
+
export type TProjectExpiry = {
|
|
330
|
+
__typename?: 'ProjectExpiry';
|
|
331
|
+
daysLeft?: Maybe<Scalars['Int']['output']>;
|
|
332
|
+
isActive: Scalars['Boolean']['output'];
|
|
333
|
+
};
|
|
334
|
+
export type TProjectPendingCreation = {
|
|
335
|
+
__typename?: 'ProjectPendingCreation';
|
|
336
|
+
id: Scalars['String']['output'];
|
|
337
|
+
key: Scalars['String']['output'];
|
|
338
|
+
name: Scalars['String']['output'];
|
|
339
|
+
version: Scalars['Int']['output'];
|
|
340
|
+
};
|
|
341
|
+
export type TProjectPermission = {
|
|
342
|
+
__typename?: 'ProjectPermission';
|
|
343
|
+
key: Scalars['String']['output'];
|
|
344
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
345
|
+
storeKey?: Maybe<Scalars['String']['output']>;
|
|
346
|
+
};
|
|
347
|
+
export type TProjectPermissionInput = {
|
|
348
|
+
key: Scalars['String']['input'];
|
|
349
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
350
|
+
storeKey?: InputMaybe<Scalars['String']['input']>;
|
|
351
|
+
};
|
|
352
|
+
export type TProjectQueryResult = TQueryResult & {
|
|
353
|
+
__typename?: 'ProjectQueryResult';
|
|
354
|
+
count: Scalars['Int']['output'];
|
|
355
|
+
offset: Scalars['Int']['output'];
|
|
356
|
+
results: Array<TProject>;
|
|
357
|
+
total: Scalars['Int']['output'];
|
|
358
|
+
};
|
|
359
|
+
export type TProjectSuspension = {
|
|
360
|
+
__typename?: 'ProjectSuspension';
|
|
361
|
+
isActive: Scalars['Boolean']['output'];
|
|
362
|
+
reason?: Maybe<ProjectSuspensionReason>;
|
|
363
|
+
};
|
|
364
|
+
export declare enum ProjectSuspensionReason {
|
|
365
|
+
Other = "Other",
|
|
366
|
+
Payment = "Payment",
|
|
367
|
+
TemporaryMaintenance = "TemporaryMaintenance"
|
|
368
|
+
}
|
|
369
|
+
export type TQuery = {
|
|
370
|
+
__typename?: 'Query';
|
|
371
|
+
allFeatures: Array<TFeature>;
|
|
372
|
+
allImpliedOAuthScopes: Array<Scalars['String']['output']>;
|
|
373
|
+
allSupportedActionRights?: Maybe<Array<TSupportedActionRight>>;
|
|
374
|
+
allSupportedMenuVisibilities?: Maybe<Array<TSupportedMenuVisibility>>;
|
|
375
|
+
allSupportedOAuthScopes: Array<Scalars['String']['output']>;
|
|
376
|
+
allSupportedOAuthScopesForOAuthClients: Array<TSupportedOAuthScopeForOAuthClient>;
|
|
377
|
+
allSupportedResources?: Maybe<Array<TSupportedResource>>;
|
|
378
|
+
allSupportedStoreScopes?: Maybe<Array<TSupportedStoreScope>>;
|
|
379
|
+
amILoggedIn: Scalars['Boolean']['output'];
|
|
380
|
+
invitation?: Maybe<TInvitationQueryResult>;
|
|
381
|
+
me?: Maybe<TUser>;
|
|
382
|
+
oAuthClient?: Maybe<TOAuthClient>;
|
|
383
|
+
oAuthClientTemplates: Array<TOAuthClientTemplate>;
|
|
384
|
+
oAuthClients: TOAuthClientQueryResult;
|
|
385
|
+
project?: Maybe<TProject>;
|
|
386
|
+
release?: Maybe<Scalars['String']['output']>;
|
|
387
|
+
releases?: Maybe<TReleaseHistory>;
|
|
388
|
+
storeOAuthScopes: Array<Scalars['String']['output']>;
|
|
389
|
+
systemStatus: TSystemStatus;
|
|
390
|
+
};
|
|
391
|
+
export type TQuery_AllImpliedOAuthScopesArgs = {
|
|
392
|
+
onlyConfiguredOnTrustedClient?: InputMaybe<Scalars['Boolean']['input']>;
|
|
393
|
+
resourceAccessPermissions: Array<Scalars['String']['input']>;
|
|
394
|
+
};
|
|
395
|
+
export type TQuery_InvitationArgs = {
|
|
396
|
+
where?: InputMaybe<TInvitationWhereInput>;
|
|
397
|
+
};
|
|
398
|
+
export type TQuery_OAuthClientArgs = {
|
|
399
|
+
id: Scalars['String']['input'];
|
|
400
|
+
};
|
|
401
|
+
export type TQuery_OAuthClientsArgs = {
|
|
402
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
403
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
404
|
+
sort?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
405
|
+
};
|
|
406
|
+
export type TQuery_ProjectArgs = {
|
|
407
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
408
|
+
};
|
|
409
|
+
export type TQuery_ReleasesArgs = {
|
|
410
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
411
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
412
|
+
origin: ReleaseOrigin;
|
|
413
|
+
};
|
|
414
|
+
export type TQueryResult = {
|
|
415
|
+
count: Scalars['Int']['output'];
|
|
416
|
+
offset: Scalars['Int']['output'];
|
|
417
|
+
total: Scalars['Int']['output'];
|
|
418
|
+
};
|
|
419
|
+
export type TReference = {
|
|
420
|
+
__typename?: 'Reference';
|
|
421
|
+
id: Scalars['String']['output'];
|
|
422
|
+
typeId: Scalars['String']['output'];
|
|
423
|
+
};
|
|
424
|
+
export type TReferenceInput = {
|
|
425
|
+
id: Scalars['ID']['input'];
|
|
426
|
+
typeId: Scalars['String']['input'];
|
|
427
|
+
};
|
|
428
|
+
export type TReleaseEntry = {
|
|
429
|
+
__typename?: 'ReleaseEntry';
|
|
430
|
+
description: Scalars['String']['output'];
|
|
431
|
+
guid: Scalars['String']['output'];
|
|
432
|
+
link: Scalars['String']['output'];
|
|
433
|
+
releasedAt: Scalars['String']['output'];
|
|
434
|
+
title: Scalars['String']['output'];
|
|
435
|
+
};
|
|
436
|
+
export type TReleaseHistory = {
|
|
437
|
+
__typename?: 'ReleaseHistory';
|
|
438
|
+
description: Scalars['String']['output'];
|
|
439
|
+
entries: TReleaseQueryResult;
|
|
440
|
+
link: Scalars['String']['output'];
|
|
441
|
+
title: Scalars['String']['output'];
|
|
442
|
+
};
|
|
443
|
+
export type TReleaseHistory_EntriesArgs = {
|
|
444
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
445
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
446
|
+
};
|
|
447
|
+
export declare enum ReleaseOrigin {
|
|
448
|
+
Ctp = "ctp",
|
|
449
|
+
Mc = "mc"
|
|
450
|
+
}
|
|
451
|
+
export type TReleaseQueryResult = TQueryResult & {
|
|
452
|
+
__typename?: 'ReleaseQueryResult';
|
|
453
|
+
count: Scalars['Int']['output'];
|
|
454
|
+
offset: Scalars['Int']['output'];
|
|
455
|
+
results: Array<TReleaseEntry>;
|
|
456
|
+
total: Scalars['Int']['output'];
|
|
457
|
+
};
|
|
458
|
+
export type TResetPasswordDraft = {
|
|
459
|
+
password: Scalars['String']['input'];
|
|
460
|
+
};
|
|
461
|
+
export type TResetPasswordRequest = {
|
|
462
|
+
__typename?: 'ResetPasswordRequest';
|
|
463
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
464
|
+
};
|
|
465
|
+
export type TResetUser = {
|
|
466
|
+
__typename?: 'ResetUser';
|
|
467
|
+
id: Scalars['String']['output'];
|
|
468
|
+
};
|
|
469
|
+
export declare enum SampleDatasets {
|
|
470
|
+
B2B = "B2B",
|
|
471
|
+
B2Clifestyle = "B2CLIFESTYLE",
|
|
472
|
+
Goodstore = "GOODSTORE"
|
|
473
|
+
}
|
|
474
|
+
export type TSetUserTimeZone = {
|
|
475
|
+
timeZone?: InputMaybe<Scalars['String']['input']>;
|
|
476
|
+
};
|
|
477
|
+
export type TShippingRateInputType = {
|
|
478
|
+
__typename?: 'ShippingRateInputType';
|
|
479
|
+
type: ShippingRateType;
|
|
480
|
+
values?: Maybe<Array<Maybe<TCartClassificationValue>>>;
|
|
481
|
+
};
|
|
482
|
+
export declare enum ShippingRateType {
|
|
483
|
+
CartClassification = "CartClassification",
|
|
484
|
+
CartScore = "CartScore",
|
|
485
|
+
CartValue = "CartValue"
|
|
486
|
+
}
|
|
487
|
+
export type TSignUpRequest = {
|
|
488
|
+
__typename?: 'SignUpRequest';
|
|
489
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
490
|
+
};
|
|
491
|
+
export type TSignedUpUser = {
|
|
492
|
+
__typename?: 'SignedUpUser';
|
|
493
|
+
id: Scalars['String']['output'];
|
|
494
|
+
};
|
|
495
|
+
export type TStoreDataFence = TDataFence & {
|
|
496
|
+
__typename?: 'StoreDataFence';
|
|
497
|
+
group: Scalars['String']['output'];
|
|
498
|
+
name: Scalars['String']['output'];
|
|
499
|
+
type: Scalars['String']['output'];
|
|
500
|
+
value: Scalars['String']['output'];
|
|
501
|
+
};
|
|
502
|
+
export type TSupportedActionRight = {
|
|
503
|
+
__typename?: 'SupportedActionRight';
|
|
504
|
+
group: Scalars['String']['output'];
|
|
505
|
+
name: Scalars['String']['output'];
|
|
506
|
+
};
|
|
507
|
+
export type TSupportedMenuVisibility = {
|
|
508
|
+
__typename?: 'SupportedMenuVisibility';
|
|
509
|
+
group: Scalars['String']['output'];
|
|
510
|
+
name: Scalars['String']['output'];
|
|
511
|
+
};
|
|
512
|
+
export type TSupportedOAuthScopeForOAuthClient = {
|
|
513
|
+
__typename?: 'SupportedOAuthScopeForOAuthClient';
|
|
514
|
+
name: Scalars['String']['output'];
|
|
515
|
+
};
|
|
516
|
+
export type TSupportedResource = {
|
|
517
|
+
__typename?: 'SupportedResource';
|
|
518
|
+
name: Scalars['String']['output'];
|
|
519
|
+
};
|
|
520
|
+
export type TSupportedStoreScope = {
|
|
521
|
+
__typename?: 'SupportedStoreScope';
|
|
522
|
+
group: Scalars['String']['output'];
|
|
523
|
+
name: Scalars['String']['output'];
|
|
524
|
+
};
|
|
525
|
+
export declare enum SystemOperabilityStatus {
|
|
526
|
+
Degraded = "DEGRADED",
|
|
527
|
+
Operational = "OPERATIONAL",
|
|
528
|
+
Outage = "OUTAGE"
|
|
529
|
+
}
|
|
530
|
+
export type TSystemStatus = {
|
|
531
|
+
__typename?: 'SystemStatus';
|
|
532
|
+
status: SystemOperabilityStatus;
|
|
533
|
+
};
|
|
534
|
+
export type TUser = TMetaData & {
|
|
535
|
+
__typename?: 'User';
|
|
536
|
+
businessRole?: Maybe<Scalars['String']['output']>;
|
|
537
|
+
createdAt: Scalars['String']['output'];
|
|
538
|
+
defaultProjectKey?: Maybe<Scalars['String']['output']>;
|
|
539
|
+
email: Scalars['String']['output'];
|
|
540
|
+
firstName: Scalars['String']['output'];
|
|
541
|
+
gravatarHash: Scalars['String']['output'];
|
|
542
|
+
id: Scalars['ID']['output'];
|
|
543
|
+
idTokenUserInfo?: Maybe<TIdTokenUserInfo>;
|
|
544
|
+
language: Scalars['String']['output'];
|
|
545
|
+
lastModifiedAt: Scalars['String']['output'];
|
|
546
|
+
lastName: Scalars['String']['output'];
|
|
547
|
+
launchdarklyTrackingCloudEnvironment: Scalars['String']['output'];
|
|
548
|
+
launchdarklyTrackingGroup: Scalars['String']['output'];
|
|
549
|
+
launchdarklyTrackingId: Scalars['String']['output'];
|
|
550
|
+
launchdarklyTrackingSubgroup?: Maybe<Scalars['String']['output']>;
|
|
551
|
+
launchdarklyTrackingTeam?: Maybe<Array<Scalars['String']['output']>>;
|
|
552
|
+
/** @deprecated This field is replaced by launchdarklyTrackingCloudEnvironment. */
|
|
553
|
+
launchdarklyTrackingTenant: Scalars['String']['output'];
|
|
554
|
+
numberFormat: Scalars['String']['output'];
|
|
555
|
+
projects: TProjectQueryResult;
|
|
556
|
+
timeZone?: Maybe<Scalars['String']['output']>;
|
|
557
|
+
/** @deprecated This field is not used anymore. */
|
|
558
|
+
verificationStatus: VerificationStatus;
|
|
559
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
560
|
+
};
|
|
561
|
+
export type TUserDraft = {
|
|
562
|
+
businessRole?: InputMaybe<Scalars['String']['input']>;
|
|
563
|
+
firstName: Scalars['String']['input'];
|
|
564
|
+
lastName: Scalars['String']['input'];
|
|
565
|
+
password: Scalars['String']['input'];
|
|
566
|
+
};
|
|
567
|
+
export type TUserUpdateAction = {
|
|
568
|
+
changeBusinessRole?: InputMaybe<TChangeUserBusinessRole>;
|
|
569
|
+
changeLanguage?: InputMaybe<TChangeUserLanguage>;
|
|
570
|
+
changeName?: InputMaybe<TChangeUserName>;
|
|
571
|
+
changeNumberFormat?: InputMaybe<TChangeUserNumberFormat>;
|
|
572
|
+
changePassword?: InputMaybe<TChangeUserPassword>;
|
|
573
|
+
setTimeZone?: InputMaybe<TSetUserTimeZone>;
|
|
574
|
+
};
|
|
575
|
+
export declare enum VerificationStatus {
|
|
576
|
+
Unverified = "Unverified",
|
|
577
|
+
Verified = "Verified"
|
|
578
|
+
}
|
|
579
|
+
export type TFetchOAuthClientsQueryQueryVariables = Exact<{
|
|
580
|
+
[key: string]: never;
|
|
581
|
+
}>;
|
|
582
|
+
export type TFetchOAuthClientsQueryQuery = {
|
|
583
|
+
__typename?: 'Query';
|
|
584
|
+
oAuthClients: {
|
|
585
|
+
__typename?: 'OAuthClientQueryResult';
|
|
586
|
+
results: Array<{
|
|
587
|
+
__typename?: 'OAuthClient';
|
|
588
|
+
id: string;
|
|
589
|
+
name: string;
|
|
590
|
+
}>;
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
export type TFetchFeatureStatusQueryQueryVariables = Exact<{
|
|
594
|
+
[key: string]: never;
|
|
595
|
+
}>;
|
|
596
|
+
export type TFetchFeatureStatusQueryQuery = {
|
|
597
|
+
__typename?: 'Query';
|
|
598
|
+
allFeatures: Array<{
|
|
599
|
+
__typename?: 'Feature';
|
|
600
|
+
name: string;
|
|
601
|
+
value: boolean;
|
|
602
|
+
reason?: string | null;
|
|
603
|
+
}>;
|
|
604
|
+
};
|
|
@@ -345,15 +345,15 @@ var en = {
|
|
|
345
345
|
},
|
|
346
346
|
"ChangeHistory.list.search.noResultsSuggestion1": {
|
|
347
347
|
developer_comment: "One of suggestions when no results are found.",
|
|
348
|
-
string: "Check the
|
|
348
|
+
string: "Check the date range applied. Premium users can access up to 3 years of historical data. Basic accounts are limited to the past year."
|
|
349
349
|
},
|
|
350
350
|
"ChangeHistory.list.search.noResultsSuggestion2": {
|
|
351
351
|
developer_comment: "One of suggestions when no results are found.",
|
|
352
|
-
string: "
|
|
352
|
+
string: "Check the spelling on any text filters applied."
|
|
353
353
|
},
|
|
354
354
|
"ChangeHistory.list.search.noResultsTitle": {
|
|
355
355
|
developer_comment: "Message for no search result for change history.",
|
|
356
|
-
string: "There are no results that match your
|
|
356
|
+
string: "There are no results that match your filter combination."
|
|
357
357
|
},
|
|
358
358
|
"ChangeHistory.list.searchInputPlaceholder": {
|
|
359
359
|
developer_comment: "Placeholder for search input",
|
|
@@ -2185,7 +2185,7 @@ var en = {
|
|
|
2185
2185
|
},
|
|
2186
2186
|
"ResourceCell.tooltipTitle": {
|
|
2187
2187
|
developer_comment: "Label for the filter tooltip",
|
|
2188
|
-
string: "
|
|
2188
|
+
string: "Quick filter on entity ID"
|
|
2189
2189
|
},
|
|
2190
2190
|
"ResourcePreview.AssociateRole.assignableFalseLabel": {
|
|
2191
2191
|
developer_comment: "Label associate role field buyer assignable false",
|
|
@@ -343,15 +343,15 @@ var en = {
|
|
|
343
343
|
},
|
|
344
344
|
"ChangeHistory.list.search.noResultsSuggestion1": {
|
|
345
345
|
developer_comment: "One of suggestions when no results are found.",
|
|
346
|
-
string: "Check the
|
|
346
|
+
string: "Check the date range applied. Premium users can access up to 3 years of historical data. Basic accounts are limited to the past year."
|
|
347
347
|
},
|
|
348
348
|
"ChangeHistory.list.search.noResultsSuggestion2": {
|
|
349
349
|
developer_comment: "One of suggestions when no results are found.",
|
|
350
|
-
string: "
|
|
350
|
+
string: "Check the spelling on any text filters applied."
|
|
351
351
|
},
|
|
352
352
|
"ChangeHistory.list.search.noResultsTitle": {
|
|
353
353
|
developer_comment: "Message for no search result for change history.",
|
|
354
|
-
string: "There are no results that match your
|
|
354
|
+
string: "There are no results that match your filter combination."
|
|
355
355
|
},
|
|
356
356
|
"ChangeHistory.list.searchInputPlaceholder": {
|
|
357
357
|
developer_comment: "Placeholder for search input",
|
|
@@ -2183,7 +2183,7 @@ var en = {
|
|
|
2183
2183
|
},
|
|
2184
2184
|
"ResourceCell.tooltipTitle": {
|
|
2185
2185
|
developer_comment: "Label for the filter tooltip",
|
|
2186
|
-
string: "
|
|
2186
|
+
string: "Quick filter on entity ID"
|
|
2187
2187
|
},
|
|
2188
2188
|
"ResourcePreview.AssociateRole.assignableFalseLabel": {
|
|
2189
2189
|
developer_comment: "Label associate role field buyer assignable false",
|
|
@@ -345,15 +345,15 @@ var en = {
|
|
|
345
345
|
},
|
|
346
346
|
"ChangeHistory.list.search.noResultsSuggestion1": {
|
|
347
347
|
developer_comment: "One of suggestions when no results are found.",
|
|
348
|
-
string: "Check the
|
|
348
|
+
string: "Check the date range applied. Premium users can access up to 3 years of historical data. Basic accounts are limited to the past year."
|
|
349
349
|
},
|
|
350
350
|
"ChangeHistory.list.search.noResultsSuggestion2": {
|
|
351
351
|
developer_comment: "One of suggestions when no results are found.",
|
|
352
|
-
string: "
|
|
352
|
+
string: "Check the spelling on any text filters applied."
|
|
353
353
|
},
|
|
354
354
|
"ChangeHistory.list.search.noResultsTitle": {
|
|
355
355
|
developer_comment: "Message for no search result for change history.",
|
|
356
|
-
string: "There are no results that match your
|
|
356
|
+
string: "There are no results that match your filter combination."
|
|
357
357
|
},
|
|
358
358
|
"ChangeHistory.list.searchInputPlaceholder": {
|
|
359
359
|
developer_comment: "Placeholder for search input",
|
|
@@ -2185,7 +2185,7 @@ var en = {
|
|
|
2185
2185
|
},
|
|
2186
2186
|
"ResourceCell.tooltipTitle": {
|
|
2187
2187
|
developer_comment: "Label for the filter tooltip",
|
|
2188
|
-
string: "
|
|
2188
|
+
string: "Quick filter on entity ID"
|
|
2189
2189
|
},
|
|
2190
2190
|
"ResourcePreview.AssociateRole.assignableFalseLabel": {
|
|
2191
2191
|
developer_comment: "Label associate role field buyer assignable false",
|