@inkeep/agents-ui-js-cloud 0.15.29 → 0.15.30
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 +4 -4
- package/dist/types.d.ts +3 -19
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -625,28 +625,19 @@ declare type ExtendPropertiesWithCommon<T> = T extends { properties: infer P }
|
|
|
625
625
|
? T & { properties: P & CommonProperties }
|
|
626
626
|
: T
|
|
627
627
|
|
|
628
|
-
export declare type FeebackReason = { label: string; details: string }
|
|
629
|
-
|
|
630
628
|
export declare interface FeedbackBody {
|
|
631
629
|
type: FeedbackType
|
|
632
630
|
messageId: string
|
|
633
631
|
createdAt: string
|
|
634
|
-
|
|
635
|
-
| {
|
|
636
|
-
label: string
|
|
637
|
-
details: string
|
|
638
|
-
}[]
|
|
639
|
-
| null
|
|
632
|
+
details?: string | null
|
|
640
633
|
userProperties: UserProperties
|
|
641
634
|
properties?: Record<string, unknown>
|
|
642
635
|
}
|
|
643
636
|
|
|
644
|
-
export declare type FeedbackItemType = keyof MessageFeedback
|
|
645
|
-
|
|
646
637
|
declare interface FeedbackProperties {
|
|
647
638
|
conversationId?: string
|
|
648
639
|
// message: Message
|
|
649
|
-
|
|
640
|
+
details?: string | null
|
|
650
641
|
}
|
|
651
642
|
|
|
652
643
|
export declare type FeedbackType = 'positive' | 'negative'
|
|
@@ -1261,7 +1252,7 @@ export declare type InkeepEventWithCommon = ExtendPropertiesWithCommon<InkeepEve
|
|
|
1261
1252
|
export declare interface InkeepFeedback {
|
|
1262
1253
|
type: FeedbackType
|
|
1263
1254
|
messageId: string
|
|
1264
|
-
|
|
1255
|
+
details?: string | null
|
|
1265
1256
|
}
|
|
1266
1257
|
|
|
1267
1258
|
export declare type InkeepJS = Partial<Record<InkeepJSComponent, InkeepComponentInitializer>>
|
|
@@ -1537,13 +1528,6 @@ export declare type MessageAction = 'copy' | 'upvote' | 'downvote'
|
|
|
1537
1528
|
|
|
1538
1529
|
declare type MessageChatAction = ExpandUnion<InvokeMessageCallbackAction | OpenFormAction | OpenUrlAction>
|
|
1539
1530
|
|
|
1540
|
-
export declare interface MessageFeedback {
|
|
1541
|
-
unrelated_response: boolean
|
|
1542
|
-
inaccurate_statement: boolean
|
|
1543
|
-
inaccurate_code_snippet: boolean
|
|
1544
|
-
irrelevant_citations: boolean
|
|
1545
|
-
}
|
|
1546
|
-
|
|
1547
1531
|
export declare interface ModalClosedEvent {
|
|
1548
1532
|
eventName: 'modal_closed'
|
|
1549
1533
|
properties: {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-ui-js-cloud",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.30",
|
|
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.15.
|
|
41
|
+
"@inkeep/agents-ui-cloud": "0.15.30"
|
|
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.15.
|
|
59
|
+
"@inkeep/agents-ui": "0.15.30"
|
|
60
60
|
},
|
|
61
61
|
"module": "./dist/embed.js",
|
|
62
62
|
"types": "./dist/types.d.ts",
|