@commercetools-frontend/application-shell 20.10.3 → 20.10.4
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/application-entry-point-4b134bcb.cjs.dev.js +1 -1
- package/dist/application-entry-point-83ea80e3.cjs.prod.js +1 -1
- package/dist/application-entry-point-b7c5325e.esm.js +1 -1
- package/dist/declarations/src/types/generated/ctp.d.ts +15 -6
- package/dist/declarations/src/version.d.ts +1 -1
- package/package.json +20 -20
|
@@ -98,7 +98,7 @@ var _pt__default = /*#__PURE__*/_interopDefault(_pt);
|
|
|
98
98
|
var invariant__default = /*#__PURE__*/_interopDefault(invariant);
|
|
99
99
|
|
|
100
100
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
101
|
-
var version = '20.10.
|
|
101
|
+
var version = '20.10.4';
|
|
102
102
|
|
|
103
103
|
var SUPPORTED_HEADERS = {
|
|
104
104
|
ACCEPT_VERSION: 'Accept-version',
|
|
@@ -97,7 +97,7 @@ var _JSON$stringify__default = /*#__PURE__*/_interopDefault(_JSON$stringify);
|
|
|
97
97
|
var invariant__default = /*#__PURE__*/_interopDefault(invariant);
|
|
98
98
|
|
|
99
99
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
100
|
-
var version = '20.10.
|
|
100
|
+
var version = '20.10.4';
|
|
101
101
|
|
|
102
102
|
var SUPPORTED_HEADERS = {
|
|
103
103
|
ACCEPT_VERSION: 'Accept-version',
|
|
@@ -57,7 +57,7 @@ import { useApplicationContext } from '@commercetools-frontend/application-shell
|
|
|
57
57
|
import { PageNotFound } from '@commercetools-frontend/application-components';
|
|
58
58
|
|
|
59
59
|
// NOTE: This string will be replaced in the `prepare` script by the `scripts/version.js` file.
|
|
60
|
-
var version = '20.10.
|
|
60
|
+
var version = '20.10.4';
|
|
61
61
|
|
|
62
62
|
var SUPPORTED_HEADERS = {
|
|
63
63
|
ACCEPT_VERSION: 'Accept-version',
|
|
@@ -9392,7 +9392,6 @@ export declare type TSetKey = {
|
|
|
9392
9392
|
key: Maybe<Scalars['String']>;
|
|
9393
9393
|
};
|
|
9394
9394
|
export declare type TFetchChannelsQueryVariables = Exact<{
|
|
9395
|
-
locale: Scalars['Locale'];
|
|
9396
9395
|
limit: Scalars['Int'];
|
|
9397
9396
|
offset: Scalars['Int'];
|
|
9398
9397
|
sort: Maybe<Array<Scalars['String']> | Scalars['String']>;
|
|
@@ -9407,9 +9406,13 @@ export declare type TFetchChannelsQuery = {
|
|
|
9407
9406
|
results: Array<{
|
|
9408
9407
|
__typename?: 'Channel';
|
|
9409
9408
|
id: string;
|
|
9410
|
-
name: Maybe<string>;
|
|
9411
9409
|
key: string;
|
|
9412
9410
|
roles: Array<TChannelRole>;
|
|
9411
|
+
nameAllLocales: Maybe<Array<{
|
|
9412
|
+
__typename?: 'LocalizedString';
|
|
9413
|
+
locale: string;
|
|
9414
|
+
value: string;
|
|
9415
|
+
}>>;
|
|
9413
9416
|
}>;
|
|
9414
9417
|
};
|
|
9415
9418
|
};
|
|
@@ -9536,22 +9539,24 @@ export declare type TQuickAccessQuery = {
|
|
|
9536
9539
|
};
|
|
9537
9540
|
export declare type TFetchStateQueryVariables = Exact<{
|
|
9538
9541
|
id: Scalars['String'];
|
|
9539
|
-
locale: Scalars['Locale'];
|
|
9540
9542
|
}>;
|
|
9541
9543
|
export declare type TFetchStateQuery = {
|
|
9542
9544
|
__typename?: 'Query';
|
|
9543
9545
|
state: Maybe<{
|
|
9544
9546
|
__typename?: 'State';
|
|
9545
9547
|
id: string;
|
|
9546
|
-
name: Maybe<string>;
|
|
9547
9548
|
key: Maybe<string>;
|
|
9548
9549
|
type: TStateType;
|
|
9549
9550
|
initial: boolean;
|
|
9550
9551
|
builtIn: boolean;
|
|
9552
|
+
nameAllLocales: Maybe<Array<{
|
|
9553
|
+
__typename?: 'LocalizedString';
|
|
9554
|
+
locale: string;
|
|
9555
|
+
value: string;
|
|
9556
|
+
}>>;
|
|
9551
9557
|
}>;
|
|
9552
9558
|
};
|
|
9553
9559
|
export declare type TFetchStatesQueryVariables = Exact<{
|
|
9554
|
-
locale: Scalars['Locale'];
|
|
9555
9560
|
limit: Scalars['Int'];
|
|
9556
9561
|
offset: Scalars['Int'];
|
|
9557
9562
|
sort: Maybe<Array<Scalars['String']> | Scalars['String']>;
|
|
@@ -9566,8 +9571,12 @@ export declare type TFetchStatesQuery = {
|
|
|
9566
9571
|
results: Array<{
|
|
9567
9572
|
__typename?: 'State';
|
|
9568
9573
|
id: string;
|
|
9569
|
-
name: Maybe<string>;
|
|
9570
9574
|
key: Maybe<string>;
|
|
9575
|
+
nameAllLocales: Maybe<Array<{
|
|
9576
|
+
__typename?: 'LocalizedString';
|
|
9577
|
+
locale: string;
|
|
9578
|
+
value: string;
|
|
9579
|
+
}>>;
|
|
9571
9580
|
}>;
|
|
9572
9581
|
};
|
|
9573
9582
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "20.10.
|
|
1
|
+
declare const _default: "20.10.4";
|
|
2
2
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/application-shell",
|
|
3
|
-
"version": "20.10.
|
|
3
|
+
"version": "20.10.4",
|
|
4
4
|
"description": "React component to bootstrap the general MC application logic",
|
|
5
5
|
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
|
|
6
6
|
"repository": {
|
|
@@ -28,19 +28,19 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@babel/runtime": "7.15.4",
|
|
30
30
|
"@babel/runtime-corejs3": "7.15.4",
|
|
31
|
-
"@commercetools-frontend/actions-global": "20.10.
|
|
32
|
-
"@commercetools-frontend/application-components": "20.10.
|
|
33
|
-
"@commercetools-frontend/application-shell-connectors": "20.10.
|
|
31
|
+
"@commercetools-frontend/actions-global": "20.10.4",
|
|
32
|
+
"@commercetools-frontend/application-components": "20.10.4",
|
|
33
|
+
"@commercetools-frontend/application-shell-connectors": "20.10.4",
|
|
34
34
|
"@commercetools-frontend/assets": "20.10.1",
|
|
35
35
|
"@commercetools-frontend/browser-history": "20.10.1",
|
|
36
36
|
"@commercetools-frontend/constants": "20.10.1",
|
|
37
|
-
"@commercetools-frontend/i18n": "20.10.
|
|
38
|
-
"@commercetools-frontend/l10n": "20.10.
|
|
37
|
+
"@commercetools-frontend/i18n": "20.10.4",
|
|
38
|
+
"@commercetools-frontend/l10n": "20.10.4",
|
|
39
39
|
"@commercetools-frontend/notifications": "20.10.1",
|
|
40
|
-
"@commercetools-frontend/permissions": "20.10.
|
|
41
|
-
"@commercetools-frontend/react-notifications": "20.10.
|
|
42
|
-
"@commercetools-frontend/sdk": "20.10.
|
|
43
|
-
"@commercetools-frontend/sentry": "20.10.
|
|
40
|
+
"@commercetools-frontend/permissions": "20.10.4",
|
|
41
|
+
"@commercetools-frontend/react-notifications": "20.10.4",
|
|
42
|
+
"@commercetools-frontend/sdk": "20.10.4",
|
|
43
|
+
"@commercetools-frontend/sentry": "20.10.4",
|
|
44
44
|
"@commercetools-frontend/url-utils": "20.10.1",
|
|
45
45
|
"@commercetools-uikit/avatar": "^12.2.2",
|
|
46
46
|
"@commercetools-uikit/card": "^12.2.2",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"@commercetools-uikit/spacings": "^12.2.2",
|
|
54
54
|
"@commercetools-uikit/text": "^12.2.2",
|
|
55
55
|
"@commercetools/http-user-agent": "2.1.2",
|
|
56
|
-
"@emotion/react": "11.
|
|
56
|
+
"@emotion/react": "11.5.0",
|
|
57
57
|
"@emotion/styled": "11.3.0",
|
|
58
|
-
"@flopflip/combine-adapters": "0.0.
|
|
59
|
-
"@flopflip/http-adapter": "0.0.
|
|
60
|
-
"@flopflip/launchdarkly-adapter": "5.0.
|
|
61
|
-
"@flopflip/react-broadcast": "12.2.
|
|
62
|
-
"@flopflip/types": "4.1.
|
|
58
|
+
"@flopflip/combine-adapters": "0.0.25",
|
|
59
|
+
"@flopflip/http-adapter": "0.0.15",
|
|
60
|
+
"@flopflip/launchdarkly-adapter": "5.0.19",
|
|
61
|
+
"@flopflip/react-broadcast": "12.2.10",
|
|
62
|
+
"@flopflip/types": "4.1.18",
|
|
63
63
|
"@types/classnames": "2.3.1",
|
|
64
64
|
"@types/common-tags": "^1.8.0",
|
|
65
65
|
"@types/history": "4.7.9",
|
|
@@ -88,12 +88,12 @@
|
|
|
88
88
|
"moment": "^2.29.1",
|
|
89
89
|
"moment-timezone": "^0.5.32",
|
|
90
90
|
"omit-empty-es": "1.1.3",
|
|
91
|
-
"perfume.js": "6.
|
|
91
|
+
"perfume.js": "6.3.0",
|
|
92
92
|
"prop-types": "15.7.2",
|
|
93
93
|
"qss": "2.0.3",
|
|
94
94
|
"react-required-if": "1.0.3",
|
|
95
95
|
"redux-logger": "3.0.6",
|
|
96
|
-
"redux-thunk": "2.
|
|
96
|
+
"redux-thunk": "2.4.0",
|
|
97
97
|
"tiny-invariant": "1.1.0",
|
|
98
98
|
"unfetch": "4.2.0",
|
|
99
99
|
"uuid": "8.3.2"
|
|
@@ -105,8 +105,8 @@
|
|
|
105
105
|
"msw": "0.35.0",
|
|
106
106
|
"react": "17.0.2",
|
|
107
107
|
"react-dom": "17.0.2",
|
|
108
|
-
"react-intl": "5.
|
|
109
|
-
"react-redux": "7.2.
|
|
108
|
+
"react-intl": "5.21.0",
|
|
109
|
+
"react-redux": "7.2.6",
|
|
110
110
|
"react-router-dom": "5.3.0",
|
|
111
111
|
"redux": "4.1.1",
|
|
112
112
|
"wait-for-observables": "1.0.3"
|