@contractspec/module.ai-chat 4.3.0 → 4.3.1
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/package.json +17 -101
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.ai-chat",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "AI chat interface module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@contractspec/lib.ai-agent": "7.0.
|
|
35
|
-
"@contractspec/lib.surface-runtime": "0.5.
|
|
36
|
-
"@contractspec/lib.ai-providers": "3.7.
|
|
37
|
-
"@contractspec/lib.contracts-spec": "3.7.
|
|
38
|
-
"@contractspec/lib.workflow-composer": "3.7.
|
|
39
|
-
"@contractspec/lib.schema": "3.7.
|
|
40
|
-
"@contractspec/lib.metering": "3.7.
|
|
41
|
-
"@contractspec/lib.cost-tracking": "3.7.
|
|
42
|
-
"@contractspec/lib.design-system": "3.7.
|
|
43
|
-
"@contractspec/lib.ui-kit-web": "3.7.
|
|
34
|
+
"@contractspec/lib.ai-agent": "7.0.1",
|
|
35
|
+
"@contractspec/lib.surface-runtime": "0.5.1",
|
|
36
|
+
"@contractspec/lib.ai-providers": "3.7.1",
|
|
37
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
38
|
+
"@contractspec/lib.workflow-composer": "3.7.1",
|
|
39
|
+
"@contractspec/lib.schema": "3.7.1",
|
|
40
|
+
"@contractspec/lib.metering": "3.7.1",
|
|
41
|
+
"@contractspec/lib.cost-tracking": "3.7.1",
|
|
42
|
+
"@contractspec/lib.design-system": "3.7.1",
|
|
43
|
+
"@contractspec/lib.ui-kit-web": "3.7.1",
|
|
44
44
|
"@ai-sdk/react": "3.0.118",
|
|
45
45
|
"ai": "6.0.116",
|
|
46
46
|
"lucide-react": "^0.577.0",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"zod": "^4.3.5"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@contractspec/tool.typescript": "3.7.
|
|
51
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
52
52
|
"@types/react": "^19.2.14",
|
|
53
53
|
"typescript": "^5.9.3",
|
|
54
|
-
"@contractspec/tool.bun": "3.7.
|
|
54
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"react": ">=19.2.0"
|
|
@@ -59,93 +59,51 @@
|
|
|
59
59
|
"exports": {
|
|
60
60
|
".": {
|
|
61
61
|
"types": "./dist/index.d.ts",
|
|
62
|
+
"browser": "./dist/browser/index.js",
|
|
62
63
|
"bun": "./dist/index.js",
|
|
63
64
|
"node": "./dist/node/index.js",
|
|
64
|
-
"browser": "./dist/browser/index.js",
|
|
65
65
|
"default": "./dist/index.js"
|
|
66
66
|
},
|
|
67
67
|
"./context": {
|
|
68
68
|
"types": "./dist/context/index.d.ts",
|
|
69
|
-
"bun": "./dist/context/index.js",
|
|
70
|
-
"node": "./dist/node/context/index.js",
|
|
71
69
|
"browser": "./dist/browser/context/index.js",
|
|
72
|
-
"default": "./dist/context/index.js"
|
|
73
|
-
},
|
|
74
|
-
"./context/index": {
|
|
75
|
-
"types": "./dist/context/index.d.ts",
|
|
76
70
|
"bun": "./dist/context/index.js",
|
|
77
71
|
"node": "./dist/node/context/index.js",
|
|
78
|
-
"browser": "./dist/browser/context/index.js",
|
|
79
72
|
"default": "./dist/context/index.js"
|
|
80
73
|
},
|
|
81
74
|
"./core": {
|
|
82
75
|
"types": "./dist/core/index.d.ts",
|
|
83
|
-
"bun": "./dist/core/index.js",
|
|
84
|
-
"node": "./dist/node/core/index.js",
|
|
85
76
|
"browser": "./dist/browser/core/index.js",
|
|
86
|
-
"default": "./dist/core/index.js"
|
|
87
|
-
},
|
|
88
|
-
"./core/index": {
|
|
89
|
-
"types": "./dist/core/index.d.ts",
|
|
90
77
|
"bun": "./dist/core/index.js",
|
|
91
78
|
"node": "./dist/node/core/index.js",
|
|
92
|
-
"browser": "./dist/browser/core/index.js",
|
|
93
79
|
"default": "./dist/core/index.js"
|
|
94
80
|
},
|
|
95
81
|
"./presentation": {
|
|
96
82
|
"types": "./dist/presentation/index.d.ts",
|
|
83
|
+
"browser": "./dist/browser/presentation/index.js",
|
|
97
84
|
"bun": "./dist/presentation/index.js",
|
|
98
85
|
"node": "./dist/node/presentation/index.js",
|
|
99
|
-
"browser": "./dist/browser/presentation/index.js",
|
|
100
86
|
"default": "./dist/presentation/index.js"
|
|
101
87
|
},
|
|
102
88
|
"./presentation/components": {
|
|
103
89
|
"types": "./dist/presentation/components/index.d.ts",
|
|
104
|
-
"bun": "./dist/presentation/components/index.js",
|
|
105
|
-
"node": "./dist/node/presentation/components/index.js",
|
|
106
90
|
"browser": "./dist/browser/presentation/components/index.js",
|
|
107
|
-
"default": "./dist/presentation/components/index.js"
|
|
108
|
-
},
|
|
109
|
-
"./presentation/components/index": {
|
|
110
|
-
"types": "./dist/presentation/components/index.d.ts",
|
|
111
91
|
"bun": "./dist/presentation/components/index.js",
|
|
112
92
|
"node": "./dist/node/presentation/components/index.js",
|
|
113
|
-
"browser": "./dist/browser/presentation/components/index.js",
|
|
114
93
|
"default": "./dist/presentation/components/index.js"
|
|
115
94
|
},
|
|
116
95
|
"./presentation/hooks": {
|
|
117
96
|
"types": "./dist/presentation/hooks/index.d.ts",
|
|
118
|
-
"bun": "./dist/presentation/hooks/index.js",
|
|
119
|
-
"node": "./dist/node/presentation/hooks/index.js",
|
|
120
97
|
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
121
|
-
"default": "./dist/presentation/hooks/index.js"
|
|
122
|
-
},
|
|
123
|
-
"./presentation/hooks/index": {
|
|
124
|
-
"types": "./dist/presentation/hooks/index.d.ts",
|
|
125
98
|
"bun": "./dist/presentation/hooks/index.js",
|
|
126
99
|
"node": "./dist/node/presentation/hooks/index.js",
|
|
127
|
-
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
128
100
|
"default": "./dist/presentation/hooks/index.js"
|
|
129
101
|
},
|
|
130
|
-
"./presentation/index": {
|
|
131
|
-
"types": "./dist/presentation/index.d.ts",
|
|
132
|
-
"bun": "./dist/presentation/index.js",
|
|
133
|
-
"node": "./dist/node/presentation/index.js",
|
|
134
|
-
"browser": "./dist/browser/presentation/index.js",
|
|
135
|
-
"default": "./dist/presentation/index.js"
|
|
136
|
-
},
|
|
137
102
|
"./providers": {
|
|
138
103
|
"types": "./dist/providers/index.d.ts",
|
|
139
|
-
"bun": "./dist/providers/index.js",
|
|
140
|
-
"node": "./dist/node/providers/index.js",
|
|
141
104
|
"browser": "./dist/browser/providers/index.js",
|
|
142
|
-
"default": "./dist/providers/index.js"
|
|
143
|
-
},
|
|
144
|
-
"./providers/index": {
|
|
145
|
-
"types": "./dist/providers/index.d.ts",
|
|
146
105
|
"bun": "./dist/providers/index.js",
|
|
147
106
|
"node": "./dist/node/providers/index.js",
|
|
148
|
-
"browser": "./dist/browser/providers/index.js",
|
|
149
107
|
"default": "./dist/providers/index.js"
|
|
150
108
|
}
|
|
151
109
|
},
|
|
@@ -154,93 +112,51 @@
|
|
|
154
112
|
"exports": {
|
|
155
113
|
".": {
|
|
156
114
|
"types": "./dist/index.d.ts",
|
|
115
|
+
"browser": "./dist/browser/index.js",
|
|
157
116
|
"bun": "./dist/index.js",
|
|
158
117
|
"node": "./dist/node/index.js",
|
|
159
|
-
"browser": "./dist/browser/index.js",
|
|
160
118
|
"default": "./dist/index.js"
|
|
161
119
|
},
|
|
162
120
|
"./context": {
|
|
163
121
|
"types": "./dist/context/index.d.ts",
|
|
164
|
-
"bun": "./dist/context/index.js",
|
|
165
|
-
"node": "./dist/node/context/index.js",
|
|
166
122
|
"browser": "./dist/browser/context/index.js",
|
|
167
|
-
"default": "./dist/context/index.js"
|
|
168
|
-
},
|
|
169
|
-
"./context/index": {
|
|
170
|
-
"types": "./dist/context/index.d.ts",
|
|
171
123
|
"bun": "./dist/context/index.js",
|
|
172
124
|
"node": "./dist/node/context/index.js",
|
|
173
|
-
"browser": "./dist/browser/context/index.js",
|
|
174
125
|
"default": "./dist/context/index.js"
|
|
175
126
|
},
|
|
176
127
|
"./core": {
|
|
177
128
|
"types": "./dist/core/index.d.ts",
|
|
178
|
-
"bun": "./dist/core/index.js",
|
|
179
|
-
"node": "./dist/node/core/index.js",
|
|
180
129
|
"browser": "./dist/browser/core/index.js",
|
|
181
|
-
"default": "./dist/core/index.js"
|
|
182
|
-
},
|
|
183
|
-
"./core/index": {
|
|
184
|
-
"types": "./dist/core/index.d.ts",
|
|
185
130
|
"bun": "./dist/core/index.js",
|
|
186
131
|
"node": "./dist/node/core/index.js",
|
|
187
|
-
"browser": "./dist/browser/core/index.js",
|
|
188
132
|
"default": "./dist/core/index.js"
|
|
189
133
|
},
|
|
190
134
|
"./presentation": {
|
|
191
135
|
"types": "./dist/presentation/index.d.ts",
|
|
136
|
+
"browser": "./dist/browser/presentation/index.js",
|
|
192
137
|
"bun": "./dist/presentation/index.js",
|
|
193
138
|
"node": "./dist/node/presentation/index.js",
|
|
194
|
-
"browser": "./dist/browser/presentation/index.js",
|
|
195
139
|
"default": "./dist/presentation/index.js"
|
|
196
140
|
},
|
|
197
141
|
"./presentation/components": {
|
|
198
142
|
"types": "./dist/presentation/components/index.d.ts",
|
|
199
|
-
"bun": "./dist/presentation/components/index.js",
|
|
200
|
-
"node": "./dist/node/presentation/components/index.js",
|
|
201
143
|
"browser": "./dist/browser/presentation/components/index.js",
|
|
202
|
-
"default": "./dist/presentation/components/index.js"
|
|
203
|
-
},
|
|
204
|
-
"./presentation/components/index": {
|
|
205
|
-
"types": "./dist/presentation/components/index.d.ts",
|
|
206
144
|
"bun": "./dist/presentation/components/index.js",
|
|
207
145
|
"node": "./dist/node/presentation/components/index.js",
|
|
208
|
-
"browser": "./dist/browser/presentation/components/index.js",
|
|
209
146
|
"default": "./dist/presentation/components/index.js"
|
|
210
147
|
},
|
|
211
148
|
"./presentation/hooks": {
|
|
212
149
|
"types": "./dist/presentation/hooks/index.d.ts",
|
|
213
|
-
"bun": "./dist/presentation/hooks/index.js",
|
|
214
|
-
"node": "./dist/node/presentation/hooks/index.js",
|
|
215
150
|
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
216
|
-
"default": "./dist/presentation/hooks/index.js"
|
|
217
|
-
},
|
|
218
|
-
"./presentation/hooks/index": {
|
|
219
|
-
"types": "./dist/presentation/hooks/index.d.ts",
|
|
220
151
|
"bun": "./dist/presentation/hooks/index.js",
|
|
221
152
|
"node": "./dist/node/presentation/hooks/index.js",
|
|
222
|
-
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
223
153
|
"default": "./dist/presentation/hooks/index.js"
|
|
224
154
|
},
|
|
225
|
-
"./presentation/index": {
|
|
226
|
-
"types": "./dist/presentation/index.d.ts",
|
|
227
|
-
"bun": "./dist/presentation/index.js",
|
|
228
|
-
"node": "./dist/node/presentation/index.js",
|
|
229
|
-
"browser": "./dist/browser/presentation/index.js",
|
|
230
|
-
"default": "./dist/presentation/index.js"
|
|
231
|
-
},
|
|
232
155
|
"./providers": {
|
|
233
156
|
"types": "./dist/providers/index.d.ts",
|
|
234
|
-
"bun": "./dist/providers/index.js",
|
|
235
|
-
"node": "./dist/node/providers/index.js",
|
|
236
157
|
"browser": "./dist/browser/providers/index.js",
|
|
237
|
-
"default": "./dist/providers/index.js"
|
|
238
|
-
},
|
|
239
|
-
"./providers/index": {
|
|
240
|
-
"types": "./dist/providers/index.d.ts",
|
|
241
158
|
"bun": "./dist/providers/index.js",
|
|
242
159
|
"node": "./dist/node/providers/index.js",
|
|
243
|
-
"browser": "./dist/browser/providers/index.js",
|
|
244
160
|
"default": "./dist/providers/index.js"
|
|
245
161
|
}
|
|
246
162
|
},
|