@pointr-tech/web-sdk 10.10.0 → 10.12.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/dist/css/pointr.css +2 -2
- package/dist/pointrwebsdk.d.ts +218 -29
- package/dist/pointrwebsdk.esm.mjs +12 -11
- package/dist/pointrwebsdk.js +12 -11
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pointr-tech/web-sdk",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.12.0",
|
|
4
4
|
"analyticsVersion": "10.0",
|
|
5
5
|
"description": "Pointr Web SDK",
|
|
6
6
|
"main": "dist/pointrwebsdk.js",
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
"test:chrome": "cypress run --browser chrome --headless",
|
|
26
26
|
"test:firefox": "cypress run --browser firefox --headless",
|
|
27
27
|
"test:edge": "cypress run --browser edge --headless",
|
|
28
|
-
"test:parallel-pr": "cypress-parallel
|
|
28
|
+
"test:parallel-pr": "node cypress/run-parallel.cjs test:electron-pr",
|
|
29
|
+
"test:parallel-nightly": "node cypress/run-parallel.cjs test:electron",
|
|
30
|
+
"test:parallel-npm": "node cypress/run-parallel.cjs test:electron",
|
|
29
31
|
"test:spec": "npx cypress run --browser chrome --headless --spec '<specPath>'",
|
|
30
32
|
"test:unit": "jest",
|
|
31
33
|
"test:unit-coverage": "jest --clearCache && jest --coverage",
|
|
@@ -87,6 +89,7 @@
|
|
|
87
89
|
"@babel/preset-typescript": "^7.28.5",
|
|
88
90
|
"@badeball/cypress-cucumber-preprocessor": "^26.0.0",
|
|
89
91
|
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.8",
|
|
92
|
+
"@cucumber/html-formatter": "24.0.0",
|
|
90
93
|
"@types/jquery": "^4.0.0",
|
|
91
94
|
"@types/uuid": "^10.0.0",
|
|
92
95
|
"axe-core": "^4.12.1",
|
|
@@ -96,6 +99,7 @@
|
|
|
96
99
|
"cy-mobile-commands": "^0.3.0",
|
|
97
100
|
"cypress": "^15.20.1",
|
|
98
101
|
"cypress-axe": "^1.7.0",
|
|
102
|
+
"cypress-parallel": "^0.15.0",
|
|
99
103
|
"cypress-real-events": "^1.15.0",
|
|
100
104
|
"cypress-recurse": "^1.37.2",
|
|
101
105
|
"cypress-wait-until": "^3.0.2",
|