@jahia/cypress 5.1.0 → 5.2.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 @@ import RequestOptions = Cypress.RequestOptions;
3
3
  declare global {
4
4
  namespace Cypress {
5
5
  interface Chainable<Subject> {
6
- runProvisioningScript(params: RunProvisioningScriptParams): Chainable<void>;
6
+ runProvisioningScript(params: RunProvisioningScriptParams): Chainable<unknown>;
7
7
  }
8
8
  }
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jahia/cypress",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "scripts": {
5
5
  "build": "tsc",
6
6
  "lint": "eslint src -c .eslintrc.json --ext .ts --max-warnings=0"
@@ -8,7 +8,7 @@ declare global {
8
8
  namespace Cypress {
9
9
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
10
10
  interface Chainable<Subject> {
11
- runProvisioningScript(params: RunProvisioningScriptParams): Chainable<void>;
11
+ runProvisioningScript(params: RunProvisioningScriptParams): Chainable<unknown>;
12
12
  }
13
13
  }
14
14
  }