@commercetools-frontend/cypress 27.10.0 → 27.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/add-commands/dist/commercetools-frontend-cypress-add-commands.cjs.dev.js +1 -1
- package/add-commands/dist/commercetools-frontend-cypress-add-commands.cjs.prod.js +1 -1
- package/add-commands/dist/commercetools-frontend-cypress-add-commands.esm.js +2 -2
- package/dist/commercetools-frontend-cypress.cjs.dev.js +1 -1
- package/dist/commercetools-frontend-cypress.cjs.prod.js +1 -1
- package/dist/commercetools-frontend-cypress.esm.js +1 -1
- package/package.json +4 -4
|
@@ -75,7 +75,7 @@ function loginByForm(commandOptions) {
|
|
|
75
75
|
log: false
|
|
76
76
|
}).then(appConfig => {
|
|
77
77
|
let initialUriPath = `/${projectKey}/${commandOptions.entryPointUriPath}`;
|
|
78
|
-
if (commandOptions.entryPointUriPath
|
|
78
|
+
if (constants.isProjectKeylessApplicationEntryPoint(commandOptions.entryPointUriPath)) {
|
|
79
79
|
initialUriPath = `/${commandOptions.entryPointUriPath}`;
|
|
80
80
|
}
|
|
81
81
|
|
|
@@ -75,7 +75,7 @@ function loginByForm(commandOptions) {
|
|
|
75
75
|
log: false
|
|
76
76
|
}).then(appConfig => {
|
|
77
77
|
let initialUriPath = `/${projectKey}/${commandOptions.entryPointUriPath}`;
|
|
78
|
-
if (commandOptions.entryPointUriPath
|
|
78
|
+
if (constants.isProjectKeylessApplicationEntryPoint(commandOptions.entryPointUriPath)) {
|
|
79
79
|
initialUriPath = `/${commandOptions.entryPointUriPath}`;
|
|
80
80
|
}
|
|
81
81
|
|
|
@@ -8,7 +8,7 @@ import _Object$defineProperties from '@babel/runtime-corejs3/core-js-stable/obje
|
|
|
8
8
|
import _Object$defineProperty from '@babel/runtime-corejs3/core-js-stable/object/define-property';
|
|
9
9
|
import _defineProperty from '@babel/runtime-corejs3/helpers/esm/defineProperty';
|
|
10
10
|
import _findInstanceProperty from '@babel/runtime-corejs3/core-js-stable/instance/find';
|
|
11
|
-
import { CUSTOM_VIEW_HOST_ENTRY_POINT_URI_PATH, GRAPHQL_TARGETS } from '@commercetools-frontend/constants';
|
|
11
|
+
import { isProjectKeylessApplicationEntryPoint, CUSTOM_VIEW_HOST_ENTRY_POINT_URI_PATH, GRAPHQL_TARGETS } from '@commercetools-frontend/constants';
|
|
12
12
|
import _URL from '@babel/runtime-corejs3/core-js-stable/url';
|
|
13
13
|
import semver from 'semver';
|
|
14
14
|
import { H as HTTP_STATUS_CODES } from '../../dist/constants-13c76918.esm.js';
|
|
@@ -57,7 +57,7 @@ function loginByForm(commandOptions) {
|
|
|
57
57
|
log: false
|
|
58
58
|
}).then(appConfig => {
|
|
59
59
|
let initialUriPath = `/${projectKey}/${commandOptions.entryPointUriPath}`;
|
|
60
|
-
if (commandOptions.entryPointUriPath
|
|
60
|
+
if (isProjectKeylessApplicationEntryPoint(commandOptions.entryPointUriPath)) {
|
|
61
61
|
initialUriPath = `/${commandOptions.entryPointUriPath}`;
|
|
62
62
|
}
|
|
63
63
|
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var constants = require('./constants-009cb682.cjs.dev.js');
|
|
6
6
|
|
|
7
7
|
// NOTE: This string will be replaced on build time with the package version.
|
|
8
|
-
var version = "27.
|
|
8
|
+
var version = "27.11.0";
|
|
9
9
|
|
|
10
10
|
exports.HTTP_STATUS_CODES = constants.HTTP_STATUS_CODES;
|
|
11
11
|
exports.OIDC_RESPONSE_TYPES = constants.OIDC_RESPONSE_TYPES;
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var constants = require('./constants-2f1475a6.cjs.prod.js');
|
|
6
6
|
|
|
7
7
|
// NOTE: This string will be replaced on build time with the package version.
|
|
8
|
-
var version = "27.
|
|
8
|
+
var version = "27.11.0";
|
|
9
9
|
|
|
10
10
|
exports.HTTP_STATUS_CODES = constants.HTTP_STATUS_CODES;
|
|
11
11
|
exports.OIDC_RESPONSE_TYPES = constants.OIDC_RESPONSE_TYPES;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { H as HTTP_STATUS_CODES, O as OIDC_RESPONSE_TYPES, S as STORAGE_KEYS } from './constants-13c76918.esm.js';
|
|
2
2
|
|
|
3
3
|
// NOTE: This string will be replaced on build time with the package version.
|
|
4
|
-
var version = "27.
|
|
4
|
+
var version = "27.11.0";
|
|
5
5
|
|
|
6
6
|
export { version };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/cypress",
|
|
3
|
-
"version": "27.
|
|
3
|
+
"version": "27.11.0",
|
|
4
4
|
"description": "Cypress commands and utilities for Custom Applications",
|
|
5
5
|
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
|
|
6
6
|
"repository": {
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"@types/semver": "^7.5.1",
|
|
46
46
|
"semver": "7.8.5",
|
|
47
47
|
"uuid": "14.0.1",
|
|
48
|
-
"@commercetools-frontend/application-config": "^27.
|
|
49
|
-
"@commercetools-frontend/application-shell": "^27.
|
|
50
|
-
"@commercetools-frontend/constants": "^27.
|
|
48
|
+
"@commercetools-frontend/application-config": "^27.11.0",
|
|
49
|
+
"@commercetools-frontend/application-shell": "^27.11.0",
|
|
50
|
+
"@commercetools-frontend/constants": "^27.11.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@tsconfig/node24": "^24.0.0",
|