@inkeep/agents-ui-js-cloud 0.0.0-dev-20260508233535 → 0.0.0-dev-20260509021601
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/embed.js +10 -10
- package/dist/types.d.ts +17 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -138,6 +138,7 @@ export declare interface AssistantAnswerDisplayedEvent {
|
|
|
138
138
|
properties: {
|
|
139
139
|
// message: Message
|
|
140
140
|
conversationId?: string
|
|
141
|
+
messageId?: string
|
|
141
142
|
}
|
|
142
143
|
}
|
|
143
144
|
|
|
@@ -146,6 +147,7 @@ export declare interface AssistantCodeBlockCopiedEvent {
|
|
|
146
147
|
properties: {
|
|
147
148
|
// message: Message
|
|
148
149
|
conversationId: string
|
|
150
|
+
messageId?: string
|
|
149
151
|
language: string
|
|
150
152
|
code: string
|
|
151
153
|
}
|
|
@@ -156,6 +158,7 @@ export declare interface AssistantMessageCopiedEvent {
|
|
|
156
158
|
properties: {
|
|
157
159
|
// message: Message
|
|
158
160
|
conversationId: string
|
|
161
|
+
messageId?: string
|
|
159
162
|
}
|
|
160
163
|
}
|
|
161
164
|
|
|
@@ -163,6 +166,8 @@ export declare interface AssistantMessageLinkOpenedEvent {
|
|
|
163
166
|
eventName: 'assistant_message_inline_link_opened'
|
|
164
167
|
properties: {
|
|
165
168
|
// message: Message
|
|
169
|
+
conversationId?: string
|
|
170
|
+
messageId?: string
|
|
166
171
|
title?: string
|
|
167
172
|
url?: string
|
|
168
173
|
}
|
|
@@ -173,6 +178,7 @@ export declare interface AssistantMessageReceivedEvent {
|
|
|
173
178
|
properties: {
|
|
174
179
|
// message: Message
|
|
175
180
|
conversationId?: string
|
|
181
|
+
messageId?: string
|
|
176
182
|
}
|
|
177
183
|
}
|
|
178
184
|
|
|
@@ -191,6 +197,7 @@ export declare interface AssistantSourceItemClickedEvent {
|
|
|
191
197
|
properties: {
|
|
192
198
|
// message: Message
|
|
193
199
|
conversationId: string
|
|
200
|
+
messageId?: string
|
|
194
201
|
link: TransformedSource
|
|
195
202
|
}
|
|
196
203
|
}
|
|
@@ -359,6 +366,7 @@ export declare interface ChatErrorEvent {
|
|
|
359
366
|
eventName: 'chat_error'
|
|
360
367
|
properties: {
|
|
361
368
|
conversationId: string
|
|
369
|
+
messageId?: string
|
|
362
370
|
error?: string
|
|
363
371
|
}
|
|
364
372
|
}
|
|
@@ -642,6 +650,7 @@ export declare interface FeedbackBody {
|
|
|
642
650
|
|
|
643
651
|
declare interface FeedbackProperties {
|
|
644
652
|
conversationId?: string
|
|
653
|
+
messageId?: string
|
|
645
654
|
// message: Message
|
|
646
655
|
details?: string | null
|
|
647
656
|
}
|
|
@@ -708,6 +717,7 @@ export declare interface GetHelpOptionClickedEvent {
|
|
|
708
717
|
properties: {
|
|
709
718
|
getHelpOption: GetHelpOption
|
|
710
719
|
conversationId?: string
|
|
720
|
+
messageId?: string
|
|
711
721
|
}
|
|
712
722
|
}
|
|
713
723
|
|
|
@@ -755,6 +765,12 @@ export declare interface InkeepAIChatSettings {
|
|
|
755
765
|
*/
|
|
756
766
|
baseUrl?: string
|
|
757
767
|
|
|
768
|
+
/**
|
|
769
|
+
* Base API URL for analytics events (POST /run/v1/events).
|
|
770
|
+
* Defaults to `baseUrl` when not set.
|
|
771
|
+
*/
|
|
772
|
+
analyticsApiBaseUrl?: string
|
|
773
|
+
|
|
758
774
|
/**
|
|
759
775
|
* @deprecated Use `appId` instead
|
|
760
776
|
* API key for requests.
|
|
@@ -2062,6 +2078,7 @@ export declare interface UserEscalationIndicatedEvent {
|
|
|
2062
2078
|
getHelpOption?: GetHelpOption
|
|
2063
2079
|
getHelpOptionName?: string
|
|
2064
2080
|
conversationId?: string
|
|
2081
|
+
messageId?: string
|
|
2065
2082
|
}
|
|
2066
2083
|
}
|
|
2067
2084
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-ui-js-cloud",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20260509021601",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "Inkeep, Inc. Customer License (IICL) v1.1",
|
|
6
6
|
"homepage": "",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react": "19.0.0",
|
|
39
39
|
"react-dom": "19.0.0",
|
|
40
40
|
"uuid": "^11.1.0",
|
|
41
|
-
"@inkeep/agents-ui-cloud": "0.0.0-dev-
|
|
41
|
+
"@inkeep/agents-ui-cloud": "0.0.0-dev-20260509021601"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@biomejs/biome": "1.9.4",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"vite": "5.4.11",
|
|
57
57
|
"vite-bundle-visualizer": "^1.2.1",
|
|
58
58
|
"vite-plugin-dts": "4.4.0",
|
|
59
|
-
"@inkeep/agents-ui": "0.0.0-dev-
|
|
59
|
+
"@inkeep/agents-ui": "0.0.0-dev-20260509021601"
|
|
60
60
|
},
|
|
61
61
|
"module": "./dist/embed.js",
|
|
62
62
|
"types": "./dist/types.d.ts",
|