@zohodesk/testinglibrary 4.1.3 → 4.1.4
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/README.md +6 -0
- package/build/core/playwright/constants/reporterConstants.js +4 -0
- package/build/core/playwright/setup/ProjectConfiguration.js +3 -2
- package/build/core/playwright/setup/config-creator.js +3 -2
- package/build/core/playwright/setup/custom-reporter.js +23 -0
- package/npm-shrinkwrap.json +139 -96
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,12 @@
|
|
|
17
17
|
|
|
18
18
|
- npm run report
|
|
19
19
|
|
|
20
|
+
### v4.1.4/v3.3.3 - 18-06-2026
|
|
21
|
+
|
|
22
|
+
#### Bugfix
|
|
23
|
+
- Dependency project failure stats pushed into custom reporter
|
|
24
|
+
- `stepDefinitionsFolder` hardcoded changes removed
|
|
25
|
+
|
|
20
26
|
### v4.1.3/v3.3.2 - 08-06-2026
|
|
21
27
|
|
|
22
28
|
#### Features
|
|
@@ -12,5 +12,9 @@ class ReporterConstants {
|
|
|
12
12
|
static DEFAULT_REPORTER_PATH = `${_configConstants.default.TEST_SLICE_FOLDER}/${stage}/test-results/playwright-test-results.json`;
|
|
13
13
|
static LAST_RUN_REPORTER_PATH = `${_configConstants.default.TEST_SLICE_FOLDER}/${stage}/test-results/.last-run.json`;
|
|
14
14
|
static DEFAULT_UNIT_TEST_REPORTER_PATH = `${_configConstants.default.TEST_SLICE_FOLDER}/unit-test/unit_reports/report.html`;
|
|
15
|
+
static PROJECT_FAILURE_REASON_MAP = {
|
|
16
|
+
'setup': 'Login case failure',
|
|
17
|
+
'smokeTest': 'Smoke test failure'
|
|
18
|
+
};
|
|
15
19
|
}
|
|
16
20
|
exports.default = ReporterConstants;
|
|
@@ -23,7 +23,8 @@ const {
|
|
|
23
23
|
trace,
|
|
24
24
|
video,
|
|
25
25
|
testIdAttribute,
|
|
26
|
-
viewport
|
|
26
|
+
viewport,
|
|
27
|
+
stepDefinitionsFolder
|
|
27
28
|
} = uatConfig;
|
|
28
29
|
function setupConfig() {
|
|
29
30
|
const setupProject = new _Project.Project('setup');
|
|
@@ -38,7 +39,7 @@ function smokeTestConfig() {
|
|
|
38
39
|
const smokeTestProject = new _Project.Project('smokeTest');
|
|
39
40
|
const smokeTestDir = (0, _configUtils.getTestDir)(bddMode, {
|
|
40
41
|
featureFilesFolder: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, stage, 'smokeTest', '**', '*.feature'),
|
|
41
|
-
stepDefinitionsFolder: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, '**', '**',
|
|
42
|
+
stepDefinitionsFolder: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, '**', '**', stepDefinitionsFolder, '*.spec.js'),
|
|
42
43
|
outputDir: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, stage, '.features-smoke-gen'),
|
|
43
44
|
uatPath: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, stage, 'smokeTest')
|
|
44
45
|
});
|
|
@@ -29,7 +29,8 @@ const {
|
|
|
29
29
|
customReporter,
|
|
30
30
|
trace,
|
|
31
31
|
video,
|
|
32
|
-
testIdAttribute
|
|
32
|
+
testIdAttribute,
|
|
33
|
+
stepDefinitionsFolder
|
|
33
34
|
} = uatConfig;
|
|
34
35
|
const projects = (0, _configUtils.getProjects)({
|
|
35
36
|
browsers,
|
|
@@ -64,7 +65,7 @@ const use = {
|
|
|
64
65
|
};
|
|
65
66
|
const testDir = (0, _configUtils.getTestDir)(bddMode, {
|
|
66
67
|
featureFilesFolder: (0, _configUtils.getPathsForFeatureFiles)(process.cwd()),
|
|
67
|
-
stepDefinitionsFolder: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, '**', '**',
|
|
68
|
+
stepDefinitionsFolder: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, '**', '**', stepDefinitionsFolder, '*.spec.js'),
|
|
68
69
|
outputDir: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, stage, '.features-gen'),
|
|
69
70
|
uatPath: _path.default.join(process.cwd(), _configConstants.default.TEST_SLICE_FOLDER, stage)
|
|
70
71
|
});
|
|
@@ -12,6 +12,18 @@ var _readConfigFile = require("../readConfigFile");
|
|
|
12
12
|
var _logger = require("../../../utils/logger");
|
|
13
13
|
var _configFileNameProvider = require("../helpers/configFileNameProvider");
|
|
14
14
|
var _mergeAbortedTests = _interopRequireDefault(require("../reporter/helpers/mergeAbortedTests"));
|
|
15
|
+
var _reporterConstants = _interopRequireDefault(require("../constants/reporterConstants"));
|
|
16
|
+
// Traverse the suite tree upward until we reach the project-level suite
|
|
17
|
+
function getProjectName(test) {
|
|
18
|
+
let suite = test.parent;
|
|
19
|
+
while (suite) {
|
|
20
|
+
var _suite$project, _suite;
|
|
21
|
+
const name = (_suite$project = (_suite = suite).project) === null || _suite$project === void 0 || (_suite$project = _suite$project.call(_suite)) === null || _suite$project === void 0 ? void 0 : _suite$project.name;
|
|
22
|
+
if (name) return name;
|
|
23
|
+
suite = suite.parent;
|
|
24
|
+
}
|
|
25
|
+
return '';
|
|
26
|
+
}
|
|
15
27
|
class JSONSummaryReporter {
|
|
16
28
|
constructor() {
|
|
17
29
|
this.durationInMS = -1;
|
|
@@ -27,6 +39,7 @@ class JSONSummaryReporter {
|
|
|
27
39
|
this.status = 'unknown';
|
|
28
40
|
this.startedAt = 0;
|
|
29
41
|
this._open = (0, _readConfigFile.generateConfigFromFile)().openReportOn;
|
|
42
|
+
this.failedProject = null;
|
|
30
43
|
}
|
|
31
44
|
onBegin() {
|
|
32
45
|
this.startedAt = Date.now();
|
|
@@ -76,6 +89,13 @@ class JSONSummaryReporter {
|
|
|
76
89
|
this[status].push(fileName);
|
|
77
90
|
}
|
|
78
91
|
this[status].push(fileName);
|
|
92
|
+
const isFailure = result.status !== 'passed' && result.status !== 'skipped';
|
|
93
|
+
if (isFailure && !this.failedProject) {
|
|
94
|
+
const projectName = getProjectName(test);
|
|
95
|
+
if (projectName) {
|
|
96
|
+
this.failedProject = projectName;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
79
99
|
}
|
|
80
100
|
onError(error) {
|
|
81
101
|
this.errored.push({
|
|
@@ -116,6 +136,9 @@ class JSONSummaryReporter {
|
|
|
116
136
|
// Reflect setup failures in the final report status
|
|
117
137
|
this.status = "failed";
|
|
118
138
|
}
|
|
139
|
+
if (this.failedProject && _reporterConstants.default.PROJECT_FAILURE_REASON_MAP[this.failedProject]) {
|
|
140
|
+
this.failureReason = _reporterConstants.default.PROJECT_FAILURE_REASON_MAP[this.failedProject];
|
|
141
|
+
}
|
|
119
142
|
|
|
120
143
|
// fs.writeFileSync('./summary.json', JSON.stringify(this, null, ' '));
|
|
121
144
|
let {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zohodesk/testinglibrary",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@zohodesk/testinglibrary",
|
|
9
|
-
"version": "4.1.
|
|
9
|
+
"version": "4.1.4",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
@@ -3773,13 +3773,13 @@
|
|
|
3773
3773
|
}
|
|
3774
3774
|
},
|
|
3775
3775
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
3776
|
-
"version": "1.1.
|
|
3777
|
-
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.
|
|
3778
|
-
"integrity": "sha512-
|
|
3776
|
+
"version": "1.1.5",
|
|
3777
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.5.tgz",
|
|
3778
|
+
"integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
|
|
3779
3779
|
"license": "MIT",
|
|
3780
3780
|
"optional": true,
|
|
3781
3781
|
"dependencies": {
|
|
3782
|
-
"@tybys/wasm-util": "^0.10.
|
|
3782
|
+
"@tybys/wasm-util": "^0.10.2"
|
|
3783
3783
|
},
|
|
3784
3784
|
"funding": {
|
|
3785
3785
|
"type": "github",
|
|
@@ -4265,9 +4265,9 @@
|
|
|
4265
4265
|
"peer": true
|
|
4266
4266
|
},
|
|
4267
4267
|
"node_modules/@types/node": {
|
|
4268
|
-
"version": "25.9.
|
|
4269
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.
|
|
4270
|
-
"integrity": "sha512-
|
|
4268
|
+
"version": "25.9.3",
|
|
4269
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.3.tgz",
|
|
4270
|
+
"integrity": "sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==",
|
|
4271
4271
|
"license": "MIT",
|
|
4272
4272
|
"dependencies": {
|
|
4273
4273
|
"undici-types": ">=7.24.0 <7.24.7"
|
|
@@ -5055,9 +5055,9 @@
|
|
|
5055
5055
|
"license": "BSD-3-Clause"
|
|
5056
5056
|
},
|
|
5057
5057
|
"node_modules/acorn": {
|
|
5058
|
-
"version": "8.
|
|
5059
|
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.
|
|
5060
|
-
"integrity": "sha512-
|
|
5058
|
+
"version": "8.17.0",
|
|
5059
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
|
|
5060
|
+
"integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
|
|
5061
5061
|
"license": "MIT",
|
|
5062
5062
|
"bin": {
|
|
5063
5063
|
"acorn": "bin/acorn"
|
|
@@ -5297,9 +5297,9 @@
|
|
|
5297
5297
|
}
|
|
5298
5298
|
},
|
|
5299
5299
|
"node_modules/axios": {
|
|
5300
|
-
"version": "1.
|
|
5301
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
5302
|
-
"integrity": "sha512-
|
|
5300
|
+
"version": "1.18.0",
|
|
5301
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.18.0.tgz",
|
|
5302
|
+
"integrity": "sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==",
|
|
5303
5303
|
"license": "MIT",
|
|
5304
5304
|
"dependencies": {
|
|
5305
5305
|
"follow-redirects": "^1.16.0",
|
|
@@ -5518,9 +5518,9 @@
|
|
|
5518
5518
|
}
|
|
5519
5519
|
},
|
|
5520
5520
|
"node_modules/baseline-browser-mapping": {
|
|
5521
|
-
"version": "2.10.
|
|
5522
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.
|
|
5523
|
-
"integrity": "sha512-
|
|
5521
|
+
"version": "2.10.38",
|
|
5522
|
+
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.38.tgz",
|
|
5523
|
+
"integrity": "sha512-31/02mVB4yuQU6adKk5SlY6m+mxDwUq5KZkyYgnLrrKl7TEm1+3PyDtDBz2kOv/wxZz41GHsvV1A/u6RmiyBvw==",
|
|
5524
5524
|
"license": "Apache-2.0",
|
|
5525
5525
|
"bin": {
|
|
5526
5526
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5695,9 +5695,9 @@
|
|
|
5695
5695
|
}
|
|
5696
5696
|
},
|
|
5697
5697
|
"node_modules/caniuse-lite": {
|
|
5698
|
-
"version": "1.0.
|
|
5699
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
5700
|
-
"integrity": "sha512-
|
|
5698
|
+
"version": "1.0.30001799",
|
|
5699
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
|
|
5700
|
+
"integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
|
|
5701
5701
|
"funding": [
|
|
5702
5702
|
{
|
|
5703
5703
|
"type": "opencollective",
|
|
@@ -6623,9 +6623,9 @@
|
|
|
6623
6623
|
"license": "MIT"
|
|
6624
6624
|
},
|
|
6625
6625
|
"node_modules/create-jest/node_modules/semver": {
|
|
6626
|
-
"version": "7.8.
|
|
6627
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
6628
|
-
"integrity": "sha512-
|
|
6626
|
+
"version": "7.8.4",
|
|
6627
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
6628
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
6629
6629
|
"license": "ISC",
|
|
6630
6630
|
"bin": {
|
|
6631
6631
|
"semver": "bin/semver.js"
|
|
@@ -6996,9 +6996,9 @@
|
|
|
6996
6996
|
}
|
|
6997
6997
|
},
|
|
6998
6998
|
"node_modules/electron-to-chromium": {
|
|
6999
|
-
"version": "1.5.
|
|
7000
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.
|
|
7001
|
-
"integrity": "sha512-
|
|
6999
|
+
"version": "1.5.375",
|
|
7000
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.375.tgz",
|
|
7001
|
+
"integrity": "sha512-ZWP5eB4BVPW/ZYo9252hQZHZ5XavtsTgpbhcmMmRwymavC5AsLWQWBPaKMeNd2LW0KGby5HPXvj7+sr4ta5j/Q==",
|
|
7002
7002
|
"license": "ISC"
|
|
7003
7003
|
},
|
|
7004
7004
|
"node_modules/emittery": {
|
|
@@ -7109,6 +7109,25 @@
|
|
|
7109
7109
|
"url": "https://github.com/sponsors/ljharb"
|
|
7110
7110
|
}
|
|
7111
7111
|
},
|
|
7112
|
+
"node_modules/es-abstract-get": {
|
|
7113
|
+
"version": "1.0.0",
|
|
7114
|
+
"resolved": "https://registry.npmjs.org/es-abstract-get/-/es-abstract-get-1.0.0.tgz",
|
|
7115
|
+
"integrity": "sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==",
|
|
7116
|
+
"dev": true,
|
|
7117
|
+
"license": "MIT",
|
|
7118
|
+
"dependencies": {
|
|
7119
|
+
"es-errors": "^1.3.0",
|
|
7120
|
+
"es-object-atoms": "^1.1.2",
|
|
7121
|
+
"is-callable": "^1.2.7",
|
|
7122
|
+
"object-inspect": "^1.13.4"
|
|
7123
|
+
},
|
|
7124
|
+
"engines": {
|
|
7125
|
+
"node": ">= 0.4"
|
|
7126
|
+
},
|
|
7127
|
+
"funding": {
|
|
7128
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
7129
|
+
}
|
|
7130
|
+
},
|
|
7112
7131
|
"node_modules/es-array-method-boxes-properly": {
|
|
7113
7132
|
"version": "1.0.0",
|
|
7114
7133
|
"resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz",
|
|
@@ -7182,15 +7201,17 @@
|
|
|
7182
7201
|
}
|
|
7183
7202
|
},
|
|
7184
7203
|
"node_modules/es-to-primitive": {
|
|
7185
|
-
"version": "1.3.
|
|
7186
|
-
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.
|
|
7187
|
-
"integrity": "sha512-
|
|
7204
|
+
"version": "1.3.1",
|
|
7205
|
+
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.1.tgz",
|
|
7206
|
+
"integrity": "sha512-CxN9N56HYfd2m/acc/NOFrZQsN9kU4eh+2kk6A707Kz1krH8tKmfrs5RnftB8WNX80T0NS7vSQsDOlg23diR2g==",
|
|
7188
7207
|
"dev": true,
|
|
7189
7208
|
"license": "MIT",
|
|
7190
7209
|
"dependencies": {
|
|
7210
|
+
"es-abstract-get": "^1.0.0",
|
|
7211
|
+
"es-errors": "^1.3.0",
|
|
7191
7212
|
"is-callable": "^1.2.7",
|
|
7192
|
-
"is-date-object": "^1.0
|
|
7193
|
-
"is-symbol": "^1.
|
|
7213
|
+
"is-date-object": "^1.1.0",
|
|
7214
|
+
"is-symbol": "^1.1.1"
|
|
7194
7215
|
},
|
|
7195
7216
|
"engines": {
|
|
7196
7217
|
"node": ">= 0.4"
|
|
@@ -7243,11 +7264,14 @@
|
|
|
7243
7264
|
}
|
|
7244
7265
|
},
|
|
7245
7266
|
"node_modules/eslint": {
|
|
7246
|
-
"version": "10.
|
|
7247
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.
|
|
7248
|
-
"integrity": "sha512-
|
|
7267
|
+
"version": "10.5.0",
|
|
7268
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-10.5.0.tgz",
|
|
7269
|
+
"integrity": "sha512-1y+7C+vi12bUK1IpZeaV3gsH9fHLBmPvYmPx42pvT/E9yG0IC8g3PUZZgp0+JLJl7ZDK0flc2gc+Aw9dpCvIsQ==",
|
|
7249
7270
|
"license": "MIT",
|
|
7250
7271
|
"peer": true,
|
|
7272
|
+
"workspaces": [
|
|
7273
|
+
"packages/*"
|
|
7274
|
+
],
|
|
7251
7275
|
"dependencies": {
|
|
7252
7276
|
"@eslint-community/eslint-utils": "^4.8.0",
|
|
7253
7277
|
"@eslint-community/regexpp": "^4.12.2",
|
|
@@ -7865,16 +7889,16 @@
|
|
|
7865
7889
|
}
|
|
7866
7890
|
},
|
|
7867
7891
|
"node_modules/form-data": {
|
|
7868
|
-
"version": "4.0.
|
|
7869
|
-
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.
|
|
7870
|
-
"integrity": "sha512-
|
|
7892
|
+
"version": "4.0.6",
|
|
7893
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz",
|
|
7894
|
+
"integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==",
|
|
7871
7895
|
"license": "MIT",
|
|
7872
7896
|
"dependencies": {
|
|
7873
7897
|
"asynckit": "^0.4.0",
|
|
7874
7898
|
"combined-stream": "^1.0.8",
|
|
7875
7899
|
"es-set-tostringtag": "^2.1.0",
|
|
7876
|
-
"hasown": "^2.0.
|
|
7877
|
-
"mime-types": "^2.1.
|
|
7900
|
+
"hasown": "^2.0.4",
|
|
7901
|
+
"mime-types": "^2.1.35"
|
|
7878
7902
|
},
|
|
7879
7903
|
"engines": {
|
|
7880
7904
|
"node": ">= 6"
|
|
@@ -7917,18 +7941,21 @@
|
|
|
7917
7941
|
}
|
|
7918
7942
|
},
|
|
7919
7943
|
"node_modules/function.prototype.name": {
|
|
7920
|
-
"version": "1.
|
|
7921
|
-
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.
|
|
7922
|
-
"integrity": "sha512-
|
|
7944
|
+
"version": "1.2.0",
|
|
7945
|
+
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.2.0.tgz",
|
|
7946
|
+
"integrity": "sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==",
|
|
7923
7947
|
"dev": true,
|
|
7924
7948
|
"license": "MIT",
|
|
7925
7949
|
"dependencies": {
|
|
7926
|
-
"call-bind": "^1.0.
|
|
7927
|
-
"call-bound": "^1.0.
|
|
7928
|
-
"define-
|
|
7950
|
+
"call-bind": "^1.0.9",
|
|
7951
|
+
"call-bound": "^1.0.4",
|
|
7952
|
+
"es-define-property": "^1.0.1",
|
|
7953
|
+
"es-errors": "^1.3.0",
|
|
7929
7954
|
"functions-have-names": "^1.2.3",
|
|
7930
|
-
"
|
|
7931
|
-
"
|
|
7955
|
+
"has-property-descriptors": "^1.0.2",
|
|
7956
|
+
"hasown": "^2.0.4",
|
|
7957
|
+
"is-callable": "^1.2.7",
|
|
7958
|
+
"is-document.all": "^1.0.0"
|
|
7932
7959
|
},
|
|
7933
7960
|
"engines": {
|
|
7934
7961
|
"node": ">= 0.4"
|
|
@@ -8147,9 +8174,9 @@
|
|
|
8147
8174
|
"license": "ISC"
|
|
8148
8175
|
},
|
|
8149
8176
|
"node_modules/graphql": {
|
|
8150
|
-
"version": "16.14.
|
|
8151
|
-
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.14.
|
|
8152
|
-
"integrity": "sha512-
|
|
8177
|
+
"version": "16.14.2",
|
|
8178
|
+
"resolved": "https://registry.npmjs.org/graphql/-/graphql-16.14.2.tgz",
|
|
8179
|
+
"integrity": "sha512-Chq1s4CY7jmh8gO2qvLIJyfCDIN+EHLFW/9iShnp1z8FjBQMoodWP1kDC36VAMXXIvAjj4ARa7ntfAV2BrjsbA==",
|
|
8153
8180
|
"license": "MIT",
|
|
8154
8181
|
"engines": {
|
|
8155
8182
|
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
|
|
@@ -8610,6 +8637,22 @@
|
|
|
8610
8637
|
"url": "https://github.com/sponsors/ljharb"
|
|
8611
8638
|
}
|
|
8612
8639
|
},
|
|
8640
|
+
"node_modules/is-document.all": {
|
|
8641
|
+
"version": "1.0.0",
|
|
8642
|
+
"resolved": "https://registry.npmjs.org/is-document.all/-/is-document.all-1.0.0.tgz",
|
|
8643
|
+
"integrity": "sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==",
|
|
8644
|
+
"dev": true,
|
|
8645
|
+
"license": "MIT",
|
|
8646
|
+
"dependencies": {
|
|
8647
|
+
"call-bound": "^1.0.4"
|
|
8648
|
+
},
|
|
8649
|
+
"engines": {
|
|
8650
|
+
"node": ">= 0.4"
|
|
8651
|
+
},
|
|
8652
|
+
"funding": {
|
|
8653
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
8654
|
+
}
|
|
8655
|
+
},
|
|
8613
8656
|
"node_modules/is-extglob": {
|
|
8614
8657
|
"version": "2.1.1",
|
|
8615
8658
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
@@ -8970,9 +9013,9 @@
|
|
|
8970
9013
|
}
|
|
8971
9014
|
},
|
|
8972
9015
|
"node_modules/istanbul-lib-instrument/node_modules/semver": {
|
|
8973
|
-
"version": "7.8.
|
|
8974
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
8975
|
-
"integrity": "sha512-
|
|
9016
|
+
"version": "7.8.4",
|
|
9017
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
9018
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
8976
9019
|
"license": "ISC",
|
|
8977
9020
|
"bin": {
|
|
8978
9021
|
"semver": "bin/semver.js"
|
|
@@ -9011,9 +9054,9 @@
|
|
|
9011
9054
|
}
|
|
9012
9055
|
},
|
|
9013
9056
|
"node_modules/istanbul-lib-report/node_modules/semver": {
|
|
9014
|
-
"version": "7.8.
|
|
9015
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
9016
|
-
"integrity": "sha512-
|
|
9057
|
+
"version": "7.8.4",
|
|
9058
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
9059
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
9017
9060
|
"license": "ISC",
|
|
9018
9061
|
"bin": {
|
|
9019
9062
|
"semver": "bin/semver.js"
|
|
@@ -9432,32 +9475,32 @@
|
|
|
9432
9475
|
"@babel/core": "^7.11.0 || ^8.0.0-0"
|
|
9433
9476
|
}
|
|
9434
9477
|
},
|
|
9435
|
-
"node_modules/jest-config/node_modules/babel-
|
|
9478
|
+
"node_modules/jest-config/node_modules/babel-jest/node_modules/babel-preset-jest": {
|
|
9436
9479
|
"version": "30.2.0",
|
|
9437
|
-
"resolved": "https://registry.npmjs.org/babel-
|
|
9438
|
-
"integrity": "sha512-
|
|
9480
|
+
"resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.2.0.tgz",
|
|
9481
|
+
"integrity": "sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==",
|
|
9439
9482
|
"license": "MIT",
|
|
9440
9483
|
"dependencies": {
|
|
9441
|
-
"
|
|
9484
|
+
"babel-plugin-jest-hoist": "30.2.0",
|
|
9485
|
+
"babel-preset-current-node-syntax": "^1.2.0"
|
|
9442
9486
|
},
|
|
9443
9487
|
"engines": {
|
|
9444
9488
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
9489
|
+
},
|
|
9490
|
+
"peerDependencies": {
|
|
9491
|
+
"@babel/core": "^7.11.0 || ^8.0.0-beta.1"
|
|
9445
9492
|
}
|
|
9446
9493
|
},
|
|
9447
|
-
"node_modules/jest-config/node_modules/babel-
|
|
9494
|
+
"node_modules/jest-config/node_modules/babel-plugin-jest-hoist": {
|
|
9448
9495
|
"version": "30.2.0",
|
|
9449
|
-
"resolved": "https://registry.npmjs.org/babel-
|
|
9450
|
-
"integrity": "sha512-
|
|
9496
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.2.0.tgz",
|
|
9497
|
+
"integrity": "sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==",
|
|
9451
9498
|
"license": "MIT",
|
|
9452
9499
|
"dependencies": {
|
|
9453
|
-
"
|
|
9454
|
-
"babel-preset-current-node-syntax": "^1.2.0"
|
|
9500
|
+
"@types/babel__core": "^7.20.5"
|
|
9455
9501
|
},
|
|
9456
9502
|
"engines": {
|
|
9457
9503
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
9458
|
-
},
|
|
9459
|
-
"peerDependencies": {
|
|
9460
|
-
"@babel/core": "^7.11.0 || ^8.0.0-beta.1"
|
|
9461
9504
|
}
|
|
9462
9505
|
},
|
|
9463
9506
|
"node_modules/jest-config/node_modules/balanced-match": {
|
|
@@ -10801,9 +10844,9 @@
|
|
|
10801
10844
|
"license": "MIT"
|
|
10802
10845
|
},
|
|
10803
10846
|
"node_modules/jest-snapshot/node_modules/semver": {
|
|
10804
|
-
"version": "7.8.
|
|
10805
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
10806
|
-
"integrity": "sha512-
|
|
10847
|
+
"version": "7.8.4",
|
|
10848
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
10849
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
10807
10850
|
"license": "ISC",
|
|
10808
10851
|
"bin": {
|
|
10809
10852
|
"semver": "bin/semver.js"
|
|
@@ -11826,9 +11869,9 @@
|
|
|
11826
11869
|
"license": "MIT"
|
|
11827
11870
|
},
|
|
11828
11871
|
"node_modules/jest/node_modules/semver": {
|
|
11829
|
-
"version": "7.8.
|
|
11830
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
11831
|
-
"integrity": "sha512-
|
|
11872
|
+
"version": "7.8.4",
|
|
11873
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
11874
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
11832
11875
|
"license": "ISC",
|
|
11833
11876
|
"bin": {
|
|
11834
11877
|
"semver": "bin/semver.js"
|
|
@@ -12341,21 +12384,21 @@
|
|
|
12341
12384
|
}
|
|
12342
12385
|
},
|
|
12343
12386
|
"node_modules/msw/node_modules/tldts": {
|
|
12344
|
-
"version": "7.4.
|
|
12345
|
-
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.
|
|
12346
|
-
"integrity": "sha512-
|
|
12387
|
+
"version": "7.4.3",
|
|
12388
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.3.tgz",
|
|
12389
|
+
"integrity": "sha512-A3BDQBeeukYPzB4QdQ1DtdlUmp4x2OCH8n5UVhEWbyANxNep8GavottKzd1xYKFJKjUgMyPT7EzOfnBO55s8Sg==",
|
|
12347
12390
|
"license": "MIT",
|
|
12348
12391
|
"dependencies": {
|
|
12349
|
-
"tldts-core": "^7.4.
|
|
12392
|
+
"tldts-core": "^7.4.3"
|
|
12350
12393
|
},
|
|
12351
12394
|
"bin": {
|
|
12352
12395
|
"tldts": "bin/cli.js"
|
|
12353
12396
|
}
|
|
12354
12397
|
},
|
|
12355
12398
|
"node_modules/msw/node_modules/tldts-core": {
|
|
12356
|
-
"version": "7.4.
|
|
12357
|
-
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.
|
|
12358
|
-
"integrity": "sha512-
|
|
12399
|
+
"version": "7.4.3",
|
|
12400
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.3.tgz",
|
|
12401
|
+
"integrity": "sha512-27ep5H9PzdBrNd5OFM/j3WCU8F3kPwM9D0BOaOf7uYfxMJfyr0K5Tjj69Gri+sZlh2WXd5buIm47NuPF29CDiw==",
|
|
12359
12402
|
"license": "MIT"
|
|
12360
12403
|
},
|
|
12361
12404
|
"node_modules/msw/node_modules/tough-cookie": {
|
|
@@ -12440,9 +12483,9 @@
|
|
|
12440
12483
|
"license": "MIT"
|
|
12441
12484
|
},
|
|
12442
12485
|
"node_modules/node-releases": {
|
|
12443
|
-
"version": "2.0.
|
|
12444
|
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.
|
|
12445
|
-
"integrity": "sha512-
|
|
12486
|
+
"version": "2.0.48",
|
|
12487
|
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.48.tgz",
|
|
12488
|
+
"integrity": "sha512-1uz8041X6LoI6ZSdZacM9lVY28vuzDlSKitnpbSNK0RfKoIJkX29NBPVEFXhnuSuEOA9Ww0xnPJ+ILWbGAv8DA==",
|
|
12446
12489
|
"license": "MIT",
|
|
12447
12490
|
"engines": {
|
|
12448
12491
|
"node": ">=18"
|
|
@@ -13354,9 +13397,9 @@
|
|
|
13354
13397
|
"license": "MIT"
|
|
13355
13398
|
},
|
|
13356
13399
|
"node_modules/regjsparser": {
|
|
13357
|
-
"version": "0.13.
|
|
13358
|
-
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.
|
|
13359
|
-
"integrity": "sha512-
|
|
13400
|
+
"version": "0.13.2",
|
|
13401
|
+
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.2.tgz",
|
|
13402
|
+
"integrity": "sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==",
|
|
13360
13403
|
"license": "BSD-2-Clause",
|
|
13361
13404
|
"dependencies": {
|
|
13362
13405
|
"jsesc": "~3.1.0"
|
|
@@ -13649,14 +13692,14 @@
|
|
|
13649
13692
|
}
|
|
13650
13693
|
},
|
|
13651
13694
|
"node_modules/side-channel": {
|
|
13652
|
-
"version": "1.1.
|
|
13653
|
-
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.
|
|
13654
|
-
"integrity": "sha512-
|
|
13695
|
+
"version": "1.1.1",
|
|
13696
|
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
|
|
13697
|
+
"integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
|
|
13655
13698
|
"license": "MIT",
|
|
13656
13699
|
"dependencies": {
|
|
13657
13700
|
"es-errors": "^1.3.0",
|
|
13658
|
-
"object-inspect": "^1.13.
|
|
13659
|
-
"side-channel-list": "^1.0.
|
|
13701
|
+
"object-inspect": "^1.13.4",
|
|
13702
|
+
"side-channel-list": "^1.0.1",
|
|
13660
13703
|
"side-channel-map": "^1.0.1",
|
|
13661
13704
|
"side-channel-weakmap": "^1.0.2"
|
|
13662
13705
|
},
|
|
@@ -14310,9 +14353,9 @@
|
|
|
14310
14353
|
}
|
|
14311
14354
|
},
|
|
14312
14355
|
"node_modules/ts-jest/node_modules/semver": {
|
|
14313
|
-
"version": "7.8.
|
|
14314
|
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.
|
|
14315
|
-
"integrity": "sha512-
|
|
14356
|
+
"version": "7.8.4",
|
|
14357
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.4.tgz",
|
|
14358
|
+
"integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
|
|
14316
14359
|
"dev": true,
|
|
14317
14360
|
"license": "ISC",
|
|
14318
14361
|
"bin": {
|