@applitools/core 4.44.3 → 4.44.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,56 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.44.5](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.4...js/core@4.44.5) (2025-08-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * browser extension | FLD-3221 ([#3185](https://github.com/Applitools-Dev/sdk/issues/3185)) ([8212155](https://github.com/Applitools-Dev/sdk/commit/8212155e51ce919beb3bcecc7da1970da4a65be7))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/dom-snapshot bumped to 4.13.4
14
+ #### Bug Fixes
15
+
16
+ * canvas blob ([#3194](https://github.com/Applitools-Dev/sdk/issues/3194)) ([d90cfca](https://github.com/Applitools-Dev/sdk/commit/d90cfcaa78df93d4bd8992d77f41eb93edd56f4c))
17
+ * canvas blobs ([#3192](https://github.com/Applitools-Dev/sdk/issues/3192)) ([f15ac4e](https://github.com/Applitools-Dev/sdk/commit/f15ac4ed68cc1746ee6cef51f2258388428fd1c7))
18
+
19
+ ## [4.44.4](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.3...js/core@4.44.4) (2025-08-21)
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * @applitools/socket bumped to 1.3.3
25
+ #### Bug Fixes
26
+
27
+ * tunnel uncaught error | FLD-3356 ([#3128](https://github.com/Applitools-Dev/sdk/issues/3128)) ([ed5fb8a](https://github.com/Applitools-Dev/sdk/commit/ed5fb8aad596ec0d8b45a89077a7765c24ae8a8e))
28
+ * @applitools/driver bumped to 1.23.3
29
+ #### Bug Fixes
30
+
31
+ * make orientation more robust | FLD-3470 ([#3166](https://github.com/Applitools-Dev/sdk/issues/3166)) ([3745427](https://github.com/Applitools-Dev/sdk/commit/37454279234b085dc9a159077b3f278cdccc203a))
32
+ * @applitools/tunnel-client bumped to 1.10.4
33
+ #### Bug Fixes
34
+
35
+ * tunnel uncaught error | FLD-3356 ([#3128](https://github.com/Applitools-Dev/sdk/issues/3128)) ([ed5fb8a](https://github.com/Applitools-Dev/sdk/commit/ed5fb8aad596ec0d8b45a89077a7765c24ae8a8e))
36
+
37
+
38
+
39
+ * @applitools/dom-snapshot bumped to 4.13.3
40
+
41
+ * @applitools/spec-driver-webdriver bumped to 1.4.3
42
+
43
+ * @applitools/spec-driver-selenium bumped to 1.7.3
44
+
45
+ * @applitools/spec-driver-puppeteer bumped to 1.6.3
46
+
47
+ * @applitools/screenshoter bumped to 3.12.3
48
+
49
+ * @applitools/nml-client bumped to 1.11.3
50
+
51
+ * @applitools/ec-client bumped to 1.12.4
52
+
53
+
3
54
  ## [4.44.3](https://github.com/Applitools-Dev/sdk/compare/js/core@4.44.2...js/core@4.44.3) (2025-08-12)
4
55
 
5
56
 
package/dist/index.js CHANGED
@@ -35,4 +35,3 @@ __exportStar(require("./autonomous/core"), exports);
35
35
  __exportStar(require("@applitools/driver/dist/debug"), exports);
36
36
  exports.formatters = __importStar(require("./utils/format-results"));
37
37
  exports.logs = __importStar(require("./troubleshoot/logs"));
38
- __exportStar(require("./offline/run-offline-snapshots"), exports);
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./offline/run-offline-snapshots"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "4.44.3",
3
+ "version": "4.44.5",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
@@ -20,6 +20,10 @@
20
20
  "types": "./types/index.d.ts",
21
21
  "default": "./dist/index.js"
22
22
  },
23
+ "./offline": {
24
+ "types": "./types/offline.d.ts",
25
+ "default": "./dist/offline.js"
26
+ },
23
27
  "./types": {
24
28
  "types": "./types/types.d.ts",
25
29
  "default": "./dist/types.js"
@@ -77,16 +81,16 @@
77
81
  "dependencies": {
78
82
  "@applitools/core-base": "1.27.2",
79
83
  "@applitools/dom-capture": "11.6.2",
80
- "@applitools/dom-snapshot": "4.13.2",
81
- "@applitools/driver": "1.23.2",
82
- "@applitools/ec-client": "1.12.3",
84
+ "@applitools/dom-snapshot": "4.13.4",
85
+ "@applitools/driver": "1.23.3",
86
+ "@applitools/ec-client": "1.12.4",
83
87
  "@applitools/logger": "2.2.2",
84
- "@applitools/nml-client": "1.11.2",
88
+ "@applitools/nml-client": "1.11.3",
85
89
  "@applitools/req": "1.8.2",
86
- "@applitools/screenshoter": "3.12.2",
90
+ "@applitools/screenshoter": "3.12.3",
87
91
  "@applitools/snippets": "2.7.0",
88
- "@applitools/socket": "1.3.2",
89
- "@applitools/spec-driver-webdriver": "1.4.2",
92
+ "@applitools/socket": "1.3.3",
93
+ "@applitools/spec-driver-webdriver": "1.4.3",
90
94
  "@applitools/ufg-client": "1.17.2",
91
95
  "@applitools/utils": "1.11.1",
92
96
  "@types/ws": "8.5.5",
@@ -102,11 +106,11 @@
102
106
  "devDependencies": {
103
107
  "@applitools/bongo": "^5.10.0",
104
108
  "@applitools/sea": "^1.0.0",
105
- "@applitools/spec-driver-puppeteer": "^1.6.2",
106
- "@applitools/spec-driver-selenium": "^1.7.2",
109
+ "@applitools/spec-driver-puppeteer": "^1.6.3",
110
+ "@applitools/spec-driver-selenium": "^1.7.3",
107
111
  "@applitools/test-server": "^1.3.1",
108
112
  "@applitools/test-utils": "^1.5.17",
109
- "@applitools/tunnel-client": "^1.10.3",
113
+ "@applitools/tunnel-client": "^1.10.4",
110
114
  "@types/mocha": "^10.0.7",
111
115
  "@types/node": "^12.20.55",
112
116
  "@types/selenium-webdriver": "^4.1.2",
package/types/index.d.ts CHANGED
@@ -7,4 +7,3 @@ export { type SpecType, type SpecDriver, type Selector } from '@applitools/drive
7
7
  export * from '@applitools/driver/dist/debug';
8
8
  export * as formatters from './utils/format-results';
9
9
  export * as logs from './troubleshoot/logs';
10
- export * from './offline/run-offline-snapshots';
@@ -0,0 +1 @@
1
+ export * from './offline/run-offline-snapshots';