@marketrix.ai/widget 3.8.134 → 3.8.137
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/src/components/chat/SimulationStatusIcon.d.ts +6 -0
- package/dist/src/components/navigation/MessengerShell.d.ts +1 -1
- package/dist/src/components/views/ChatView.d.ts +1 -1
- package/dist/src/context/{ConversationContext.d.ts → ChatContext.d.ts} +16 -16
- package/dist/src/context/WidgetProviders.d.ts +2 -2
- package/dist/src/context/sseReducer.d.ts +7 -10
- package/dist/src/hooks/useWidget.d.ts +4 -4
- package/dist/src/index.d.ts +2 -2
- package/dist/src/sdk/contract.d.ts +16 -18
- package/dist/src/sdk/contracts/activityLog.d.ts +32 -32
- package/dist/src/sdk/contracts/application.d.ts +2 -2
- package/dist/src/sdk/contracts/common.d.ts +1 -12
- package/dist/src/sdk/contracts/entities.d.ts +24 -130
- package/dist/src/sdk/contracts/widget.d.ts +21 -26
- package/dist/src/sdk/index.d.ts +16 -18
- package/dist/src/services/ApiService.d.ts +2 -2
- package/dist/src/services/{ToolService.d.ts → BrowserToolService.d.ts} +4 -4
- package/dist/src/services/ChatService.d.ts +2 -2
- package/dist/src/services/{SessionManager.d.ts → ChatSessionManager.d.ts} +3 -3
- package/dist/src/services/DomService.d.ts +1 -1
- package/dist/src/services/{SessionRecorder.d.ts → RrwebSessionRecorder.d.ts} +3 -3
- package/dist/src/services/ShowModeService.d.ts +1 -1
- package/dist/src/services/StorageService.d.ts +5 -5
- package/dist/src/services/WidgetService.d.ts +1 -1
- package/dist/src/types/browserTools.d.ts +1 -1
- package/dist/src/types/index.d.ts +6 -6
- package/dist/src/utils/chat.d.ts +7 -7
- package/dist/widget.mjs +62 -62
- package/dist/widget.mjs.map +1 -1
- package/package.json +7 -7
- package/dist/src/components/chat/TaskStatusIcon.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marketrix.ai/widget",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.137",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/widget.mjs",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"code:check": "tsc --noEmit && eslint . --ext .ts,.tsx && prettier --check ."
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@base-ui/react": "^1.
|
|
41
|
+
"@base-ui/react": "^1.6.0",
|
|
42
42
|
"@orpc/client": "^1.14.6",
|
|
43
43
|
"@orpc/contract": "^1.14.6",
|
|
44
44
|
"@rrweb/record": "^2.0.1",
|
|
@@ -55,17 +55,17 @@
|
|
|
55
55
|
"@tailwindcss/vite": "^4.3.1",
|
|
56
56
|
"@testing-library/jest-dom": "^6.9.1",
|
|
57
57
|
"@testing-library/react": "^16.3.2",
|
|
58
|
-
"@types/node": "^
|
|
58
|
+
"@types/node": "^26.0.0",
|
|
59
59
|
"@types/react": "^19.2.17",
|
|
60
60
|
"@types/react-dom": "^19.2.3",
|
|
61
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^8.62.0",
|
|
62
62
|
"@typescript-eslint/parser": "^8.59.0",
|
|
63
|
-
"@vitejs/plugin-react": "^6.0.
|
|
63
|
+
"@vitejs/plugin-react": "^6.0.3",
|
|
64
64
|
"@vitest/coverage-v8": "^4.1.9",
|
|
65
65
|
"axe-core": "^4.12.1",
|
|
66
66
|
"eslint": "^10.5.0",
|
|
67
67
|
"eslint-config-prettier": "^10.1.8",
|
|
68
|
-
"eslint-plugin-import-x": "^4.
|
|
68
|
+
"eslint-plugin-import-x": "^4.17.0",
|
|
69
69
|
"eslint-plugin-prettier": "^5.5.6",
|
|
70
70
|
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
71
71
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"tailwindcss": "^4.2.4",
|
|
77
77
|
"terser": "^5.48.0",
|
|
78
78
|
"typescript": "^6.0.3",
|
|
79
|
-
"vite": "^8.0
|
|
79
|
+
"vite": "^8.1.0",
|
|
80
80
|
"vite-plugin-css-injected-by-js": "^5.0.1",
|
|
81
81
|
"vitest": "^4.1.5",
|
|
82
82
|
"vitest-axe": "^0.1.0"
|