@commercetools-frontend/application-shell-connectors 21.8.1 → 21.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commercetools-frontend-application-shell-connectors.cjs.dev.js +1 -1
- package/dist/commercetools-frontend-application-shell-connectors.cjs.prod.js +1 -1
- package/dist/commercetools-frontend-application-shell-connectors.esm.js +1 -1
- package/dist/declarations/src/components/application-context/normalizers.d.ts +4 -4
- package/dist/declarations/src/test-utils/test-utils.d.ts +2 -2
- package/dist/declarations/src/types/generated/mc.d.ts +11 -0
- package/dist/declarations/src/types/generated/settings.d.ts +104 -8
- package/package.json +10 -10
|
@@ -47,7 +47,7 @@ var _URL__default = /*#__PURE__*/_interopDefault(_URL);
|
|
|
47
47
|
var warning__default = /*#__PURE__*/_interopDefault(warning);
|
|
48
48
|
|
|
49
49
|
// NOTE: This string will be replaced on build time with the package version.
|
|
50
|
-
var version = "21.
|
|
50
|
+
var version = "21.11.0";
|
|
51
51
|
|
|
52
52
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
53
53
|
var getDisplayName = function getDisplayName(Component) {
|
|
@@ -45,7 +45,7 @@ var _valuesInstanceProperty__default = /*#__PURE__*/_interopDefault(_valuesInsta
|
|
|
45
45
|
var _URL__default = /*#__PURE__*/_interopDefault(_URL);
|
|
46
46
|
|
|
47
47
|
// NOTE: This string will be replaced on build time with the package version.
|
|
48
|
-
var version = "21.
|
|
48
|
+
var version = "21.11.0";
|
|
49
49
|
|
|
50
50
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
51
51
|
var getDisplayName = function getDisplayName(Component) {
|
|
@@ -24,7 +24,7 @@ import { GRAPHQL_TARGETS } from '@commercetools-frontend/constants';
|
|
|
24
24
|
import { reportErrorToSentry } from '@commercetools-frontend/sentry';
|
|
25
25
|
|
|
26
26
|
// NOTE: This string will be replaced on build time with the package version.
|
|
27
|
-
var version = "21.
|
|
27
|
+
var version = "21.11.0";
|
|
28
28
|
|
|
29
29
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
30
30
|
var getDisplayName = function getDisplayName(Component) {
|
|
@@ -24,7 +24,7 @@ export declare type TDataFenceStoresGroupByResourceType = {
|
|
|
24
24
|
};
|
|
25
25
|
export declare type TDataFenceType = 'store';
|
|
26
26
|
export declare type TDataFences = Partial<Record<TDataFenceType, TDataFenceGroupedByResourceType>>;
|
|
27
|
-
export declare const normalizeAllAppliedPermissions: (allAppliedPermissions?: TAppliedPermission[]
|
|
28
|
-
export declare const normalizeAllAppliedMenuVisibilities: (allAppliedMenuVisibilities?: TAppliedMenuVisibilities[]
|
|
29
|
-
export declare const normalizeAllAppliedActionRights: (allAppliedActionRights?: TAppliedActionRight[]
|
|
30
|
-
export declare const normalizeAllAppliedDataFences: (allAppliedDataFences?: TStoreDataFence[]
|
|
27
|
+
export declare const normalizeAllAppliedPermissions: (allAppliedPermissions?: TAppliedPermission[]) => TPermissions | null;
|
|
28
|
+
export declare const normalizeAllAppliedMenuVisibilities: (allAppliedMenuVisibilities?: TAppliedMenuVisibilities[]) => TMenuVisibilities | null;
|
|
29
|
+
export declare const normalizeAllAppliedActionRights: (allAppliedActionRights?: TAppliedActionRight[]) => TActionRights | null;
|
|
30
|
+
export declare const normalizeAllAppliedDataFences: (allAppliedDataFences?: TStoreDataFence[]) => TDataFences | null;
|
|
@@ -8,13 +8,13 @@ export declare const createGraphqlResponseForProjectExtensionImageRegexQuery: (c
|
|
|
8
8
|
__typename?: "ImageRegex" | undefined;
|
|
9
9
|
thumb?: {
|
|
10
10
|
__typename?: "ImageRegexOptions" | undefined;
|
|
11
|
-
flag
|
|
11
|
+
flag?: string | null | undefined;
|
|
12
12
|
search: string;
|
|
13
13
|
replace: string;
|
|
14
14
|
} | null | undefined;
|
|
15
15
|
small?: {
|
|
16
16
|
__typename?: "ImageRegexOptions" | undefined;
|
|
17
|
-
flag
|
|
17
|
+
flag?: string | null | undefined;
|
|
18
18
|
search: string;
|
|
19
19
|
replace: string;
|
|
20
20
|
} | null | undefined;
|
|
@@ -248,6 +248,7 @@ export declare enum TPermissionScope {
|
|
|
248
248
|
ManageApiClients = "manage_api_clients",
|
|
249
249
|
ManageAttributeGroups = "manage_attribute_groups",
|
|
250
250
|
ManageAuditLog = "manage_audit_log",
|
|
251
|
+
ManageBusinessUnits = "manage_business_units",
|
|
251
252
|
ManageCartDiscounts = "manage_cart_discounts",
|
|
252
253
|
ManageCategories = "manage_categories",
|
|
253
254
|
ManageChangeHistory = "manage_change_history",
|
|
@@ -259,9 +260,12 @@ export declare enum TPermissionScope {
|
|
|
259
260
|
ManageImportContainers = "manage_import_containers",
|
|
260
261
|
ManageImportSinks = "manage_import_sinks",
|
|
261
262
|
ManageKeyValueDocuments = "manage_key_value_documents",
|
|
263
|
+
ManageMyBusinessUnits = "manage_my_business_units",
|
|
262
264
|
ManageMyOrders = "manage_my_orders",
|
|
263
265
|
ManageMyPayments = "manage_my_payments",
|
|
264
266
|
ManageMyProfile = "manage_my_profile",
|
|
267
|
+
ManageMyQuoteRequests = "manage_my_quote_requests",
|
|
268
|
+
ManageMyQuotes = "manage_my_quotes",
|
|
265
269
|
ManageMyShoppingLists = "manage_my_shopping_lists",
|
|
266
270
|
ManageOrderEdits = "manage_order_edits",
|
|
267
271
|
ManageOrders = "manage_orders",
|
|
@@ -270,8 +274,11 @@ export declare enum TPermissionScope {
|
|
|
270
274
|
ManageProducts = "manage_products",
|
|
271
275
|
ManageProject = "manage_project",
|
|
272
276
|
ManageProjectSettings = "manage_project_settings",
|
|
277
|
+
ManageQuoteRequests = "manage_quote_requests",
|
|
278
|
+
ManageQuotes = "manage_quotes",
|
|
273
279
|
ManageShippingMethods = "manage_shipping_methods",
|
|
274
280
|
ManageShoppingLists = "manage_shopping_lists",
|
|
281
|
+
ManageStagedQuotes = "manage_staged_quotes",
|
|
275
282
|
ManageStandalonePrices = "manage_standalone_prices",
|
|
276
283
|
ManageStates = "manage_states",
|
|
277
284
|
ManageStores = "manage_stores",
|
|
@@ -281,6 +288,7 @@ export declare enum TPermissionScope {
|
|
|
281
288
|
ViewApiClients = "view_api_clients",
|
|
282
289
|
ViewAttributeGroups = "view_attribute_groups",
|
|
283
290
|
ViewAuditLog = "view_audit_log",
|
|
291
|
+
ViewBusinessUnits = "view_business_units",
|
|
284
292
|
ViewCartDiscounts = "view_cart_discounts",
|
|
285
293
|
ViewCategories = "view_categories",
|
|
286
294
|
ViewChangeHistory = "view_change_history",
|
|
@@ -299,8 +307,11 @@ export declare enum TPermissionScope {
|
|
|
299
307
|
ViewProjectSettings = "view_project_settings",
|
|
300
308
|
ViewProjects = "view_projects",
|
|
301
309
|
ViewPublishedProducts = "view_published_products",
|
|
310
|
+
ViewQuoteRequests = "view_quote_requests",
|
|
311
|
+
ViewQuotes = "view_quotes",
|
|
302
312
|
ViewShippingMethods = "view_shipping_methods",
|
|
303
313
|
ViewShoppingLists = "view_shopping_lists",
|
|
314
|
+
ViewStagedQuotes = "view_staged_quotes",
|
|
304
315
|
ViewStandalonePrices = "view_standalone_prices",
|
|
305
316
|
ViewStates = "view_states",
|
|
306
317
|
ViewStores = "view_stores",
|
|
@@ -41,6 +41,22 @@ export declare type TApplicationExtensionDataInput = {
|
|
|
41
41
|
oAuthScopes?: InputMaybe<Array<Scalars['String']>>;
|
|
42
42
|
url: Scalars['String'];
|
|
43
43
|
};
|
|
44
|
+
export declare type TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport = {
|
|
45
|
+
__typename?: 'ApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport';
|
|
46
|
+
entryPointUriPath: Scalars['String'];
|
|
47
|
+
id: Scalars['ID'];
|
|
48
|
+
isActive: Scalars['Boolean'];
|
|
49
|
+
migratedTo: Array<TApplicationExtensionMigrationMatchingScore>;
|
|
50
|
+
name: Scalars['String'];
|
|
51
|
+
url: Scalars['String'];
|
|
52
|
+
};
|
|
53
|
+
export declare type TApplicationExtensionMigrationMatchingScore = {
|
|
54
|
+
__typename?: 'ApplicationExtensionMigrationMatchingScore';
|
|
55
|
+
applicationId: Scalars['String'];
|
|
56
|
+
matchByEntryPointUriPath: TMigrationMatchingScore;
|
|
57
|
+
matchByName: TMigrationMatchingScore;
|
|
58
|
+
matchByUrl: TMigrationMatchingScore;
|
|
59
|
+
};
|
|
44
60
|
export declare type TApplicationExtensionNavbarMenuDataInput = {
|
|
45
61
|
featureToggle?: InputMaybe<Scalars['String']>;
|
|
46
62
|
icon: Scalars['String'];
|
|
@@ -57,11 +73,20 @@ export declare type TApplicationExtensionNavbarSubmenuDataInput = {
|
|
|
57
73
|
permissions: Array<TOAuthScope>;
|
|
58
74
|
uriPath: Scalars['String'];
|
|
59
75
|
};
|
|
76
|
+
export declare type TApplicationInfoForLegacyCustomApplicationsMigrationReport = {
|
|
77
|
+
__typename?: 'ApplicationInfoForLegacyCustomApplicationsMigrationReport';
|
|
78
|
+
entryPointUriPath: Scalars['String'];
|
|
79
|
+
id: Scalars['ID'];
|
|
80
|
+
name: Scalars['String'];
|
|
81
|
+
url: Scalars['String'];
|
|
82
|
+
};
|
|
60
83
|
export declare enum TAuthPermission {
|
|
61
84
|
AccessToProject = "accessToProject",
|
|
62
85
|
LoggedInUser = "loggedInUser",
|
|
63
86
|
ManageMyOrganizations = "manageMyOrganizations",
|
|
64
87
|
ManageProjectSettings = "manageProjectSettings",
|
|
88
|
+
PerformDataCleanups = "performDataCleanups",
|
|
89
|
+
PerformMigrations = "performMigrations",
|
|
65
90
|
ViewCartDiscounts = "viewCartDiscounts",
|
|
66
91
|
ViewCustomers = "viewCustomers",
|
|
67
92
|
ViewDiscountCodes = "viewDiscountCodes",
|
|
@@ -244,6 +269,13 @@ export declare type TCustomApplicationQueryInput = {
|
|
|
244
269
|
limit?: InputMaybe<Scalars['Int']>;
|
|
245
270
|
offset?: InputMaybe<Scalars['Int']>;
|
|
246
271
|
sort?: InputMaybe<Scalars['String']>;
|
|
272
|
+
where?: InputMaybe<TCustomApplicationQueryWhereInput>;
|
|
273
|
+
};
|
|
274
|
+
export declare type TCustomApplicationQueryWhereInput = {
|
|
275
|
+
entryPointUriPath?: InputMaybe<Scalars['String']>;
|
|
276
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
277
|
+
name?: InputMaybe<Scalars['String']>;
|
|
278
|
+
organizationId?: InputMaybe<Scalars['String']>;
|
|
247
279
|
};
|
|
248
280
|
export declare enum TCustomApplicationStatus {
|
|
249
281
|
Draft = "DRAFT",
|
|
@@ -287,6 +319,7 @@ export declare type TCustomersListView = {
|
|
|
287
319
|
filters?: Maybe<Array<TFilterValues>>;
|
|
288
320
|
id: Scalars['ID'];
|
|
289
321
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
322
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
290
323
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
291
324
|
projectKey: Scalars['String'];
|
|
292
325
|
search?: Maybe<Scalars['String']>;
|
|
@@ -330,6 +363,7 @@ export declare type TDashboardView = {
|
|
|
330
363
|
id: Scalars['ID'];
|
|
331
364
|
isActive: Scalars['Boolean'];
|
|
332
365
|
layout?: Maybe<Array<TLayoutCard>>;
|
|
366
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
333
367
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
334
368
|
projectKey: Scalars['String'];
|
|
335
369
|
timeZone?: Maybe<Scalars['String']>;
|
|
@@ -391,6 +425,7 @@ export declare type TDiscountsCustomView = {
|
|
|
391
425
|
filters?: Maybe<Array<TFilterValues>>;
|
|
392
426
|
id: Scalars['ID'];
|
|
393
427
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
428
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
394
429
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
395
430
|
projectKey: Scalars['String'];
|
|
396
431
|
search?: Maybe<Scalars['String']>;
|
|
@@ -536,15 +571,12 @@ export declare type TImageRegexDataInput = {
|
|
|
536
571
|
};
|
|
537
572
|
export declare type TImageRegexOptions = {
|
|
538
573
|
__typename?: 'ImageRegexOptions';
|
|
539
|
-
|
|
540
|
-
flag: Scalars['String'];
|
|
541
|
-
id: Scalars['ID'];
|
|
574
|
+
flag?: Maybe<Scalars['String']>;
|
|
542
575
|
replace: Scalars['String'];
|
|
543
576
|
search: Scalars['String'];
|
|
544
|
-
updatedAt: Scalars['DateTime'];
|
|
545
577
|
};
|
|
546
578
|
export declare type TImageRegexOptionsInput = {
|
|
547
|
-
flag
|
|
579
|
+
flag?: InputMaybe<Scalars['String']>;
|
|
548
580
|
replace: Scalars['String'];
|
|
549
581
|
search: Scalars['String'];
|
|
550
582
|
};
|
|
@@ -757,6 +789,21 @@ export declare type TLegacyCustomApplicationQueryInput = {
|
|
|
757
789
|
limit?: InputMaybe<Scalars['Int']>;
|
|
758
790
|
offset?: InputMaybe<Scalars['Int']>;
|
|
759
791
|
sort?: InputMaybe<Scalars['String']>;
|
|
792
|
+
where?: InputMaybe<TLegacyCustomApplicationQueryWhereInput>;
|
|
793
|
+
};
|
|
794
|
+
export declare type TLegacyCustomApplicationQueryWhereInput = {
|
|
795
|
+
id?: InputMaybe<Scalars['ID']>;
|
|
796
|
+
name?: InputMaybe<Scalars['String']>;
|
|
797
|
+
projectKey?: InputMaybe<Scalars['String']>;
|
|
798
|
+
uriPath?: InputMaybe<Scalars['String']>;
|
|
799
|
+
};
|
|
800
|
+
export declare type TLegacyCustomApplicationsMigrationReport = {
|
|
801
|
+
__typename?: 'LegacyCustomApplicationsMigrationReport';
|
|
802
|
+
applications: Array<TApplicationInfoForLegacyCustomApplicationsMigrationReport>;
|
|
803
|
+
organizationExtensionId?: Maybe<Scalars['ID']>;
|
|
804
|
+
organizationId: Scalars['String'];
|
|
805
|
+
organizationName?: Maybe<Scalars['String']>;
|
|
806
|
+
projects: Array<TProjectInfoForLegacyCustomApplicationsMigrationReport>;
|
|
760
807
|
};
|
|
761
808
|
export declare type TLegacyCustomApplicationsPagedQueryResult = {
|
|
762
809
|
__typename?: 'LegacyCustomApplicationsPagedQueryResult';
|
|
@@ -864,6 +911,19 @@ export declare enum TMetricCardType {
|
|
|
864
911
|
TotalOrders = "TOTAL_ORDERS",
|
|
865
912
|
TotalSales = "TOTAL_SALES"
|
|
866
913
|
}
|
|
914
|
+
export declare type TMigrationMatchingScore = {
|
|
915
|
+
__typename?: 'MigrationMatchingScore';
|
|
916
|
+
matchFrom: Scalars['String'];
|
|
917
|
+
matchTo: Scalars['String'];
|
|
918
|
+
score: Scalars['Float'];
|
|
919
|
+
};
|
|
920
|
+
export declare type TMigrationResult = {
|
|
921
|
+
__typename?: 'MigrationResult';
|
|
922
|
+
failed: Scalars['Int'];
|
|
923
|
+
failedIds?: Maybe<Array<Scalars['ID']>>;
|
|
924
|
+
skipped: Scalars['Int'];
|
|
925
|
+
succeeded: Scalars['Int'];
|
|
926
|
+
};
|
|
867
927
|
export declare type TMutation = {
|
|
868
928
|
__typename?: 'Mutation';
|
|
869
929
|
activateCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
@@ -913,6 +973,11 @@ export declare type TMutation = {
|
|
|
913
973
|
deleteProductTypeAttributesView?: Maybe<TProductTypeAttributesView>;
|
|
914
974
|
deleteProjectExtensionApplication?: Maybe<TProjectExtension>;
|
|
915
975
|
installCustomApplication?: Maybe<TRestrictedCustomApplicationInstallationForOrganization>;
|
|
976
|
+
migrateCustomersListViews?: Maybe<TMigrationResult>;
|
|
977
|
+
migrateOrdersListViews?: Maybe<TMigrationResult>;
|
|
978
|
+
migrateProjectExtensions: TMigrationResult;
|
|
979
|
+
revertCustomersListViewsMigration: TRevertionResult;
|
|
980
|
+
revertOrdersListViewsMigration: TRevertionResult;
|
|
916
981
|
sendLinkToVerifyCustomApplicationsMaintainerContactEmail?: Maybe<TCustomApplicationsMaintainerContactEmailVerificationRequest>;
|
|
917
982
|
setCustomApplicationsMaintainerContactInformation?: Maybe<TOrganizationExtension>;
|
|
918
983
|
setOrganizationExtensionOidcSsoConfig?: Maybe<TOrganizationExtension>;
|
|
@@ -1081,6 +1146,21 @@ export declare type TMutation_InstallCustomApplicationArgs = {
|
|
|
1081
1146
|
organizationId: Scalars['String'];
|
|
1082
1147
|
projectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']>>>;
|
|
1083
1148
|
};
|
|
1149
|
+
export declare type TMutation_MigrateCustomersListViewsArgs = {
|
|
1150
|
+
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1151
|
+
};
|
|
1152
|
+
export declare type TMutation_MigrateOrdersListViewsArgs = {
|
|
1153
|
+
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1154
|
+
};
|
|
1155
|
+
export declare type TMutation_MigrateProjectExtensionsArgs = {
|
|
1156
|
+
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1157
|
+
};
|
|
1158
|
+
export declare type TMutation_RevertCustomersListViewsMigrationArgs = {
|
|
1159
|
+
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1160
|
+
};
|
|
1161
|
+
export declare type TMutation_RevertOrdersListViewsMigrationArgs = {
|
|
1162
|
+
projectKeys?: InputMaybe<Array<Scalars['String']>>;
|
|
1163
|
+
};
|
|
1084
1164
|
export declare type TMutation_SendLinkToVerifyCustomApplicationsMaintainerContactEmailArgs = {
|
|
1085
1165
|
organizationId: Scalars['String'];
|
|
1086
1166
|
};
|
|
@@ -1484,6 +1564,7 @@ export declare type TOrdersListView = {
|
|
|
1484
1564
|
filters?: Maybe<Array<TFilterValues>>;
|
|
1485
1565
|
id: Scalars['ID'];
|
|
1486
1566
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
1567
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
1487
1568
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1488
1569
|
projectKey: Scalars['String'];
|
|
1489
1570
|
search?: Maybe<Scalars['String']>;
|
|
@@ -1546,6 +1627,7 @@ export declare type TPimSearchListView = {
|
|
|
1546
1627
|
filters?: Maybe<Array<TFilterValues>>;
|
|
1547
1628
|
id: Scalars['ID'];
|
|
1548
1629
|
isActive?: Maybe<Scalars['Boolean']>;
|
|
1630
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
1549
1631
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1550
1632
|
projectKey: Scalars['String'];
|
|
1551
1633
|
search?: Maybe<Scalars['String']>;
|
|
@@ -1601,6 +1683,7 @@ export declare type TProductTypeAttributesView = {
|
|
|
1601
1683
|
id: Scalars['ID'];
|
|
1602
1684
|
isActive: Scalars['Boolean'];
|
|
1603
1685
|
isVariant?: Maybe<Scalars['Boolean']>;
|
|
1686
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
1604
1687
|
nameAllLocales?: Maybe<Array<TLocalizedField>>;
|
|
1605
1688
|
pinnedAttributes: Array<Scalars['String']>;
|
|
1606
1689
|
productTypeId: Scalars['String'];
|
|
@@ -1648,6 +1731,12 @@ export declare type TProjectExtension = {
|
|
|
1648
1731
|
export declare type TProjectExtension_ApplicationsArgs = {
|
|
1649
1732
|
where?: InputMaybe<TRestrictedApplicationExtensionWhereInput>;
|
|
1650
1733
|
};
|
|
1734
|
+
export declare type TProjectInfoForLegacyCustomApplicationsMigrationReport = {
|
|
1735
|
+
__typename?: 'ProjectInfoForLegacyCustomApplicationsMigrationReport';
|
|
1736
|
+
applicationExtensions: Array<TApplicationExtensionInfoForLegacyCustomApplicationsMigrationReport>;
|
|
1737
|
+
projectExtensionId: Scalars['ID'];
|
|
1738
|
+
projectKey: Scalars['String'];
|
|
1739
|
+
};
|
|
1651
1740
|
export declare type TQuery = {
|
|
1652
1741
|
__typename?: 'Query';
|
|
1653
1742
|
activeCartDiscountsCustomView?: Maybe<TDiscountsCustomView>;
|
|
@@ -1676,6 +1765,7 @@ export declare type TQuery = {
|
|
|
1676
1765
|
discountCodesListView?: Maybe<TDiscountCodesListView>;
|
|
1677
1766
|
globalOrganizationExtension?: Maybe<TOrganizationExtension>;
|
|
1678
1767
|
legacyCustomApplication?: Maybe<TLegacyCustomApplication>;
|
|
1768
|
+
legacyCustomApplicationsMigrationReport: Array<TLegacyCustomApplicationsMigrationReport>;
|
|
1679
1769
|
myCustomApplications: Array<TMyCustomApplication>;
|
|
1680
1770
|
ordersListView?: Maybe<TOrdersListView>;
|
|
1681
1771
|
ordersListViews: Array<Maybe<TOrdersListView>>;
|
|
@@ -1864,6 +1954,10 @@ export declare type TRestrictedCustomApplicationInstallationForProject = {
|
|
|
1864
1954
|
installInAllProjects: Scalars['Boolean'];
|
|
1865
1955
|
updatedAt: Scalars['DateTime'];
|
|
1866
1956
|
};
|
|
1957
|
+
export declare type TRevertionResult = {
|
|
1958
|
+
__typename?: 'RevertionResult';
|
|
1959
|
+
revertedIds?: Maybe<Array<Scalars['ID']>>;
|
|
1960
|
+
};
|
|
1867
1961
|
export declare type TRuleBuilderQuickSelectCreatefunctionsInput = {
|
|
1868
1962
|
set?: InputMaybe<Array<Scalars['String']>>;
|
|
1869
1963
|
};
|
|
@@ -1880,6 +1974,7 @@ export declare type TRuleBuilderQuickSelectionValues = {
|
|
|
1880
1974
|
createdAt: Scalars['DateTime'];
|
|
1881
1975
|
functions: Array<Scalars['String']>;
|
|
1882
1976
|
id: Scalars['ID'];
|
|
1977
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
1883
1978
|
predicates: Array<Scalars['String']>;
|
|
1884
1979
|
projectKey: Scalars['String'];
|
|
1885
1980
|
ruleBuilderType: TRuleBuilderType;
|
|
@@ -2189,6 +2284,7 @@ export declare type TVariantPricesListView = {
|
|
|
2189
2284
|
__typename?: 'VariantPricesListView';
|
|
2190
2285
|
createdAt: Scalars['DateTime'];
|
|
2191
2286
|
id: Scalars['ID'];
|
|
2287
|
+
migratedById?: Maybe<Scalars['String']>;
|
|
2192
2288
|
projectKey: Scalars['String'];
|
|
2193
2289
|
updatedAt: Scalars['DateTime'];
|
|
2194
2290
|
userId: Scalars['String'];
|
|
@@ -2209,13 +2305,13 @@ export declare type TFetchProjectExtensionImageRegexQuery = {
|
|
|
2209
2305
|
__typename?: 'ImageRegex';
|
|
2210
2306
|
thumb?: {
|
|
2211
2307
|
__typename?: 'ImageRegexOptions';
|
|
2212
|
-
flag
|
|
2308
|
+
flag?: string | null;
|
|
2213
2309
|
search: string;
|
|
2214
2310
|
replace: string;
|
|
2215
2311
|
} | null;
|
|
2216
2312
|
small?: {
|
|
2217
2313
|
__typename?: 'ImageRegexOptions';
|
|
2218
|
-
flag
|
|
2314
|
+
flag?: string | null;
|
|
2219
2315
|
search: string;
|
|
2220
2316
|
replace: string;
|
|
2221
2317
|
} | null;
|
|
@@ -2224,7 +2320,7 @@ export declare type TFetchProjectExtensionImageRegexQuery = {
|
|
|
2224
2320
|
};
|
|
2225
2321
|
export declare type TImageRegexFragment = {
|
|
2226
2322
|
__typename?: 'ImageRegexOptions';
|
|
2227
|
-
flag
|
|
2323
|
+
flag?: string | null;
|
|
2228
2324
|
search: string;
|
|
2229
2325
|
replace: string;
|
|
2230
2326
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/application-shell-connectors",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.11.0",
|
|
4
4
|
"description": "Contains complementary tools for @commercetools-frontend/application-shell",
|
|
5
5
|
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
|
|
6
6
|
"repository": {
|
|
@@ -21,22 +21,22 @@
|
|
|
21
21
|
"entrypoints": ["./index.ts", "./test-utils/index.ts"]
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@babel/runtime": "^7.
|
|
25
|
-
"@babel/runtime-corejs3": "^7.
|
|
26
|
-
"@commercetools-frontend/constants": "21.
|
|
27
|
-
"@commercetools-frontend/sentry": "21.
|
|
28
|
-
"@emotion/react": "11.9.
|
|
29
|
-
"@types/lodash": "^4.14.
|
|
24
|
+
"@babel/runtime": "^7.18.6",
|
|
25
|
+
"@babel/runtime-corejs3": "^7.18.6",
|
|
26
|
+
"@commercetools-frontend/constants": "21.11.0",
|
|
27
|
+
"@commercetools-frontend/sentry": "21.11.0",
|
|
28
|
+
"@emotion/react": "11.9.3",
|
|
29
|
+
"@types/lodash": "^4.14.182",
|
|
30
30
|
"@types/prop-types": "^15.7.5",
|
|
31
|
-
"@types/react": "^17.0.
|
|
32
|
-
"graphql": "
|
|
31
|
+
"@types/react": "^17.0.47",
|
|
32
|
+
"graphql": "16.5.0",
|
|
33
33
|
"lodash": "4.17.21",
|
|
34
34
|
"moment-timezone": "^0.5.34",
|
|
35
35
|
"prop-types": "15.8.1",
|
|
36
36
|
"tiny-warning": "1.0.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@apollo/client": "3.6.
|
|
39
|
+
"@apollo/client": "3.6.9",
|
|
40
40
|
"@testing-library/react": "12.1.5",
|
|
41
41
|
"react": "17.0.2"
|
|
42
42
|
},
|