@commercetools-frontend/cypress 21.23.6 → 21.23.7
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-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/dist/declarations/src/add-commands/index.d.ts +1 -1
- package/dist/declarations/src/add-commands/login.d.ts +3 -3
- package/dist/declarations/src/task/index.d.ts +1 -1
- package/package.json +6 -6
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var constants = require('./constants-42a0ebf5.cjs.dev.js');
|
|
6
6
|
|
|
7
7
|
// NOTE: This string will be replaced on build time with the package version.
|
|
8
|
-
var version = "21.23.
|
|
8
|
+
var version = "21.23.7";
|
|
9
9
|
|
|
10
10
|
exports.OIDC_RESPONSE_TYPES = constants.OIDC_RESPONSE_TYPES;
|
|
11
11
|
exports.STORAGE_KEYS = constants.STORAGE_KEYS;
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var constants = require('./constants-4d9d4b7b.cjs.prod.js');
|
|
6
6
|
|
|
7
7
|
// NOTE: This string will be replaced on build time with the package version.
|
|
8
|
-
var version = "21.23.
|
|
8
|
+
var version = "21.23.7";
|
|
9
9
|
|
|
10
10
|
exports.OIDC_RESPONSE_TYPES = constants.OIDC_RESPONSE_TYPES;
|
|
11
11
|
exports.STORAGE_KEYS = constants.STORAGE_KEYS;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { type CommandLoginOptions as TCommandLoginOptions } from './login';
|
|
2
|
-
export
|
|
2
|
+
export type CommandLoginOptions = TCommandLoginOptions;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export type LoginCredentials = {
|
|
2
2
|
/**
|
|
3
3
|
* The user email.
|
|
4
4
|
* Defaults to `Cypress.env('LOGIN_EMAIL') || Cypress.env('LOGIN_USER')`.
|
|
@@ -10,7 +10,7 @@ export declare type LoginCredentials = {
|
|
|
10
10
|
*/
|
|
11
11
|
password: string;
|
|
12
12
|
};
|
|
13
|
-
export
|
|
13
|
+
export type CommandLoginOptions = {
|
|
14
14
|
/**
|
|
15
15
|
* The application entry point URI path. This value is used to identify
|
|
16
16
|
* the correct application config.
|
|
@@ -47,7 +47,7 @@ export declare type CommandLoginOptions = {
|
|
|
47
47
|
*/
|
|
48
48
|
disableCacheAcrossSpecs?: boolean;
|
|
49
49
|
};
|
|
50
|
-
export
|
|
50
|
+
export type CommandLoginByOidcOptions = CommandLoginOptions;
|
|
51
51
|
declare function loginByForm(commandOptions: CommandLoginOptions): void;
|
|
52
52
|
declare function loginByOidc(commandOptions: CommandLoginOptions): void;
|
|
53
53
|
declare function isLocalhost(): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/cypress",
|
|
3
|
-
"version": "21.23.
|
|
3
|
+
"version": "21.23.7",
|
|
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": {
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"README.md"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@babel/runtime": "^7.
|
|
39
|
-
"@babel/runtime-corejs3": "^7.
|
|
40
|
-
"@commercetools-frontend/application-config": "21.23.
|
|
41
|
-
"@commercetools-frontend/application-shell": "21.23.
|
|
38
|
+
"@babel/runtime": "^7.20.13",
|
|
39
|
+
"@babel/runtime-corejs3": "^7.20.13",
|
|
40
|
+
"@commercetools-frontend/application-config": "21.23.7",
|
|
41
|
+
"@commercetools-frontend/application-shell": "21.23.7",
|
|
42
42
|
"@manypkg/get-packages": "1.1.3",
|
|
43
43
|
"semver": "7.3.8",
|
|
44
44
|
"uuid": "8.3.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"cypress": "11.
|
|
47
|
+
"cypress": "11.2.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"cypress": ">=8"
|