@ada-support/embed2 1.0.28 → 1.0.32

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.
Files changed (31) hide show
  1. package/dist/npm-entry/client/components/ButtonFrame/index.d.ts +4 -1
  2. package/dist/npm-entry/client/components/ChatFrame/index.d.ts +3 -2
  3. package/dist/npm-entry/client/components/Container/index.d.ts +3 -2
  4. package/dist/npm-entry/client/components/IFrame/index.d.ts +2 -2
  5. package/dist/npm-entry/client/components/IntroFrame/index.d.ts +2 -1
  6. package/dist/npm-entry/client/components/MaskFrame/index.d.ts +2 -1
  7. package/dist/npm-entry/client/components/XStorageFrame/index.d.ts +2 -1
  8. package/dist/npm-entry/client/index.d.ts +1 -1
  9. package/dist/npm-entry/client/lib/ce.d.ts +1 -1
  10. package/dist/npm-entry/client/lib/connect.d.ts +2 -2
  11. package/dist/npm-entry/client/lib/contexts.d.ts +2 -1
  12. package/dist/npm-entry/client/lib/message-service.d.ts +0 -1
  13. package/dist/npm-entry/client/lib/store-proxy.d.ts +3 -4
  14. package/dist/npm-entry/common/constants/storage-keys.d.ts +6 -1
  15. package/dist/npm-entry/common/helpers/getAlignment.d.ts +2 -0
  16. package/dist/npm-entry/common/helpers/isRTL.d.ts +1 -0
  17. package/dist/npm-entry/common/lib/ConnectContainer/index.d.ts +9 -9
  18. package/dist/npm-entry/common/lib/channel.d.ts +1 -1
  19. package/dist/npm-entry/common/lib/fc/index.d.ts +2 -2
  20. package/dist/npm-entry/common/types/channels.d.ts +1 -1
  21. package/dist/npm-entry/common/types/store-state.d.ts +36 -31
  22. package/dist/npm-entry/common/types/store.d.ts +3 -3
  23. package/dist/npm-entry/frames/components/x-storage/index.d.ts +12 -0
  24. package/dist/npm-entry/frames/helpers/frame-init.d.ts +3 -0
  25. package/dist/npm-entry/frames/helpers/storage/index.d.ts +1 -1
  26. package/dist/npm-entry/frames/lib/error-tracker.d.ts +6 -0
  27. package/dist/npm-entry/frames/lib/frame-fc.d.ts +3 -0
  28. package/dist/npm-entry/frames/lib/safe-storage/index.d.ts +8 -4
  29. package/dist/npm-entry/frames/lib/store-proxy.d.ts +2 -0
  30. package/dist/npm-entry/index.js +1192 -535
  31. package/package.json +6 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ada-support/embed2",
3
- "version": "1.0.28",
3
+ "version": "1.0.32",
4
4
  "description": "",
5
5
  "main": "dist/npm-entry",
6
6
  "typings": "dist/npm-entry/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "build:modern": "NODE_ENV=production BROWSERSLIST_ENV=modern npx webpack --config webpack.prod.ts",
11
11
  "build:npm-types": "tsc --project tsconfig.npm.json --declaration --outDir dist/npm-entry --emitDeclarationOnly --allowJs false --checkJs false",
12
12
  "build:npm": "./npm-build.sh",
13
- "lint": "tsc --noEmit --strict false && ./node_modules/.bin/eslint --report-unused-disable-directives --ext .js,.jsx,.ts,.tsx . --max-warnings 32",
13
+ "lint": "tsc --noEmit --strict false && ./node_modules/.bin/eslint --report-unused-disable-directives --ext .js,.jsx,.ts,.tsx . --max-warnings 26",
14
14
  "lint:fix": "yarn lint --fix",
15
15
  "deploy-legacy": "TS_NODE_PROJECT=wp.tsconfig.json NODE_ENV=production BROWSERSLIST_ENV=legacy npx webpack --config webpack.prod.ts",
16
16
  "deploy-modern": "TS_NODE_PROJECT=wp.tsconfig.json NODE_ENV=production BROWSERSLIST_ENV=modern npx webpack --config webpack.prod.ts",
@@ -72,7 +72,7 @@
72
72
  "babel-preset-preact": "^2.0.0",
73
73
  "browserslist": "^4.17.4",
74
74
  "browserslist-useragent-regexp": "^3.0.2",
75
- "cypress": "^8.6.0",
75
+ "cypress": "^9.1.0",
76
76
  "enzyme": "^3.11.0",
77
77
  "enzyme-adapter-preact-pure": "^2.2.0",
78
78
  "eslint-plugin-chai-friendly": "^0.7.2",
@@ -86,8 +86,8 @@
86
86
  "npm-run-all": "^4.1.5",
87
87
  "start-server-and-test": "^1.14.0",
88
88
  "svg-inline-loader": "^0.8.0",
89
- "testcafe": "^1.15.3",
90
- "testcafe-browser-provider-lambdatest": "^2.0.5",
89
+ "testcafe": "^1.17.1",
90
+ "testcafe-browser-provider-lambdatest": "2.0.5",
91
91
  "ts-loader": "^6.2.1",
92
92
  "ts-node": "^10.2.1",
93
93
  "tsconfig-paths": "^3.11.0",
@@ -116,6 +116,7 @@
116
116
  "webpack-s3-plugin": "^1.2.0-rc.0"
117
117
  },
118
118
  "resolutions": {
119
+ "json-schema": ">=0.4.0",
119
120
  "minimist": ">=0.2.1",
120
121
  "nth-check": ">=2.0.1"
121
122
  },