@commercetools-frontend/application-shell-connectors 22.17.2 → 22.19.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/types/generated/mc.d.ts +11 -0
- package/package.json +5 -5
|
@@ -81,7 +81,7 @@ var _Reflect$construct__default = /*#__PURE__*/_interopDefault(_Reflect$construc
|
|
|
81
81
|
var _JSON$stringify__default = /*#__PURE__*/_interopDefault(_JSON$stringify);
|
|
82
82
|
|
|
83
83
|
// NOTE: This string will be replaced on build time with the package version.
|
|
84
|
-
var version = "22.
|
|
84
|
+
var version = "22.19.0";
|
|
85
85
|
|
|
86
86
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
87
87
|
const getDisplayName = Component => {
|
|
@@ -79,7 +79,7 @@ var _Reflect$construct__default = /*#__PURE__*/_interopDefault(_Reflect$construc
|
|
|
79
79
|
var _JSON$stringify__default = /*#__PURE__*/_interopDefault(_JSON$stringify);
|
|
80
80
|
|
|
81
81
|
// NOTE: This string will be replaced on build time with the package version.
|
|
82
|
-
var version = "22.
|
|
82
|
+
var version = "22.19.0";
|
|
83
83
|
|
|
84
84
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
85
85
|
const getDisplayName = Component => {
|
|
@@ -46,7 +46,7 @@ import _JSON$stringify from '@babel/runtime-corejs3/core-js-stable/json/stringif
|
|
|
46
46
|
import { RetryLink } from '@apollo/client/link/retry';
|
|
47
47
|
|
|
48
48
|
// NOTE: This string will be replaced on build time with the package version.
|
|
49
|
-
var version = "22.
|
|
49
|
+
var version = "22.19.0";
|
|
50
50
|
|
|
51
51
|
// From https://github.com/acdlite/recompose/blob/master/src/packages/recompose/getDisplayName.js
|
|
52
52
|
const getDisplayName = Component => {
|
|
@@ -357,6 +357,7 @@ export type TQuery = {
|
|
|
357
357
|
release?: Maybe<Scalars['String']>;
|
|
358
358
|
releases?: Maybe<TReleaseHistory>;
|
|
359
359
|
storeOAuthScopes: Array<Scalars['String']>;
|
|
360
|
+
systemStatus: TSystemStatus;
|
|
360
361
|
};
|
|
361
362
|
export type TQuery_AllImpliedOAuthScopesArgs = {
|
|
362
363
|
onlyConfiguredOnTrustedClient?: InputMaybe<Scalars['Boolean']>;
|
|
@@ -487,6 +488,15 @@ export type TSupportedStoreScope = {
|
|
|
487
488
|
group: Scalars['String'];
|
|
488
489
|
name: Scalars['String'];
|
|
489
490
|
};
|
|
491
|
+
export declare enum TSystemOperabilityStatus {
|
|
492
|
+
Degraded = "DEGRADED",
|
|
493
|
+
Operational = "OPERATIONAL",
|
|
494
|
+
Outage = "OUTAGE"
|
|
495
|
+
}
|
|
496
|
+
export type TSystemStatus = {
|
|
497
|
+
__typename?: 'SystemStatus';
|
|
498
|
+
status: TSystemOperabilityStatus;
|
|
499
|
+
};
|
|
490
500
|
export type TUser = TMetaData & {
|
|
491
501
|
__typename?: 'User';
|
|
492
502
|
businessRole?: Maybe<Scalars['String']>;
|
|
@@ -655,6 +665,7 @@ export type TFetchLoggedInUserQuery = {
|
|
|
655
665
|
__typename?: 'Project';
|
|
656
666
|
name: string;
|
|
657
667
|
key: string;
|
|
668
|
+
isProductionProject: boolean;
|
|
658
669
|
suspension: {
|
|
659
670
|
__typename?: 'ProjectSuspension';
|
|
660
671
|
isActive: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/application-shell-connectors",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.19.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": {
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@babel/runtime": "^7.22.15",
|
|
39
39
|
"@babel/runtime-corejs3": "^7.22.15",
|
|
40
|
-
"@commercetools-frontend/application-config": "22.
|
|
41
|
-
"@commercetools-frontend/browser-history": "22.
|
|
42
|
-
"@commercetools-frontend/constants": "22.
|
|
43
|
-
"@commercetools-frontend/sentry": "22.
|
|
40
|
+
"@commercetools-frontend/application-config": "22.19.0",
|
|
41
|
+
"@commercetools-frontend/browser-history": "22.19.0",
|
|
42
|
+
"@commercetools-frontend/constants": "22.19.0",
|
|
43
|
+
"@commercetools-frontend/sentry": "22.19.0",
|
|
44
44
|
"@commercetools/http-user-agent": "3.0.0",
|
|
45
45
|
"@emotion/react": "^11.11.1",
|
|
46
46
|
"@types/lodash": "^4.14.198",
|