@commercetools-frontend/constants 24.8.0 → 24.9.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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
// NOTE: This string will be replaced on build time with the package version.
|
|
6
|
-
var version = "24.
|
|
6
|
+
var version = "24.9.0";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* The project key must be between 2 and 36 characters long. It can only contain alphanumeric lowercase characters (a-z, 0-9),
|
|
@@ -139,6 +139,7 @@ const SUPPORTED_HEADERS = {
|
|
|
139
139
|
X_FORWARD_TO_CLAIMS: 'X-Forward-To-Claims',
|
|
140
140
|
X_GRAPHQL_TARGET: 'X-Graphql-Target',
|
|
141
141
|
X_GRAPHQL_OPERATION_NAME: 'X-Graphql-Operation-Name',
|
|
142
|
+
X_MC_IDENTITY_LOGIN_MODE_OVERRIDE: 'x-mc-identity-login-mode-override',
|
|
142
143
|
X_PROJECT_KEY: 'X-Project-Key',
|
|
143
144
|
X_TEAM_ID: 'X-Team-Id',
|
|
144
145
|
X_TOKEN_RETRY: 'X-Force-Token',
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
// NOTE: This string will be replaced on build time with the package version.
|
|
6
|
-
var version = "24.
|
|
6
|
+
var version = "24.9.0";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* The project key must be between 2 and 36 characters long. It can only contain alphanumeric lowercase characters (a-z, 0-9),
|
|
@@ -139,6 +139,7 @@ const SUPPORTED_HEADERS = {
|
|
|
139
139
|
X_FORWARD_TO_CLAIMS: 'X-Forward-To-Claims',
|
|
140
140
|
X_GRAPHQL_TARGET: 'X-Graphql-Target',
|
|
141
141
|
X_GRAPHQL_OPERATION_NAME: 'X-Graphql-Operation-Name',
|
|
142
|
+
X_MC_IDENTITY_LOGIN_MODE_OVERRIDE: 'x-mc-identity-login-mode-override',
|
|
142
143
|
X_PROJECT_KEY: 'X-Project-Key',
|
|
143
144
|
X_TEAM_ID: 'X-Team-Id',
|
|
144
145
|
X_TOKEN_RETRY: 'X-Force-Token',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// NOTE: This string will be replaced on build time with the package version.
|
|
2
|
-
var version = "24.
|
|
2
|
+
var version = "24.9.0";
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* The project key must be between 2 and 36 characters long. It can only contain alphanumeric lowercase characters (a-z, 0-9),
|
|
@@ -135,6 +135,7 @@ const SUPPORTED_HEADERS = {
|
|
|
135
135
|
X_FORWARD_TO_CLAIMS: 'X-Forward-To-Claims',
|
|
136
136
|
X_GRAPHQL_TARGET: 'X-Graphql-Target',
|
|
137
137
|
X_GRAPHQL_OPERATION_NAME: 'X-Graphql-Operation-Name',
|
|
138
|
+
X_MC_IDENTITY_LOGIN_MODE_OVERRIDE: 'x-mc-identity-login-mode-override',
|
|
138
139
|
X_PROJECT_KEY: 'X-Project-Key',
|
|
139
140
|
X_TEAM_ID: 'X-Team-Id',
|
|
140
141
|
X_TOKEN_RETRY: 'X-Force-Token',
|
|
@@ -202,6 +202,7 @@ export type ApplicationRuntimeEnvironmentForDevelopment = {
|
|
|
202
202
|
menuLinks?: ApplicationMenuLinksForDevelopmentConfig;
|
|
203
203
|
customViewHostUrl?: string;
|
|
204
204
|
customViewConfig?: CustomViewData;
|
|
205
|
+
mcIdentityLoginModeOverride?: 'legacy';
|
|
205
206
|
};
|
|
206
207
|
export type ApplicationRuntimeEnvironment = {
|
|
207
208
|
applicationId: string;
|
|
@@ -238,6 +239,7 @@ export declare const SUPPORTED_HEADERS: {
|
|
|
238
239
|
readonly X_FORWARD_TO_CLAIMS: "X-Forward-To-Claims";
|
|
239
240
|
readonly X_GRAPHQL_TARGET: "X-Graphql-Target";
|
|
240
241
|
readonly X_GRAPHQL_OPERATION_NAME: "X-Graphql-Operation-Name";
|
|
242
|
+
readonly X_MC_IDENTITY_LOGIN_MODE_OVERRIDE: "x-mc-identity-login-mode-override";
|
|
241
243
|
readonly X_PROJECT_KEY: "X-Project-Key";
|
|
242
244
|
readonly X_TEAM_ID: "X-Team-Id";
|
|
243
245
|
readonly X_TOKEN_RETRY: "X-Force-Token";
|
package/package.json
CHANGED