@inkeep/agents-ui-js-cloud 0.15.15 → 0.15.16
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 +1 -1
- package/dist/types.d.ts +21 -2
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -1085,12 +1085,24 @@ export declare interface InkeepCloudBaseSettings extends InkeepBaseSettings {
|
|
|
1085
1085
|
env?: 'development' | 'production'
|
|
1086
1086
|
}
|
|
1087
1087
|
|
|
1088
|
+
export declare type InkeepCloudComponentInitializer = {
|
|
1089
|
+
(props: InkeepCloudComponentProps): InkeepComponentInstance | undefined
|
|
1090
|
+
(targetSelector: string, props: InkeepCloudComponentProps): InkeepComponentInstance | undefined
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
export declare type InkeepCloudComponentProps = InkeepCloudSettings & {
|
|
1094
|
+
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
|
1095
|
+
[key: string]: any
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1088
1098
|
export declare interface InkeepCloudConfig {
|
|
1089
1099
|
baseSettings: InkeepCloudBaseSettings
|
|
1090
1100
|
aiChatSettings: InkeepCloudAIChatSettings
|
|
1091
1101
|
searchSettings: InkeepCloudSearchSettings
|
|
1092
1102
|
}
|
|
1093
1103
|
|
|
1104
|
+
export declare type InkeepCloudJS = Partial<Record<InkeepJSComponent, InkeepCloudComponentInitializer>>
|
|
1105
|
+
|
|
1094
1106
|
export declare interface InkeepCloudSearchSettings extends InkeepSearchSettings {
|
|
1095
1107
|
/**
|
|
1096
1108
|
* The API key to use for authenticating with Inkeep's services.
|
|
@@ -1124,6 +1136,13 @@ export declare interface InkeepCloudSearchSettings extends InkeepSearchSettings
|
|
|
1124
1136
|
onSearchWithFilters?: (searchInput: SearchInput, abortSignal: AbortSignal) => Promise<SearchHit[]>
|
|
1125
1137
|
}
|
|
1126
1138
|
|
|
1139
|
+
export declare interface InkeepCloudSettings {
|
|
1140
|
+
baseSettings?: InkeepCloudBaseSettings
|
|
1141
|
+
aiChatSettings?: InkeepCloudAIChatSettings
|
|
1142
|
+
searchSettings?: InkeepCloudSearchSettings
|
|
1143
|
+
openSettings?: OpenSettingsModal
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1127
1146
|
export declare type InkeepComponentInitializer = {
|
|
1128
1147
|
(props: InkeepComponentProps): InkeepComponentInstance | undefined
|
|
1129
1148
|
(targetSelector: string, props: InkeepComponentProps): InkeepComponentInstance | undefined
|
|
@@ -2273,8 +2292,8 @@ export { }
|
|
|
2273
2292
|
|
|
2274
2293
|
|
|
2275
2294
|
declare global {
|
|
2276
|
-
var Inkeep: import('@inkeep/agents-ui/types').
|
|
2295
|
+
var Inkeep: import('@inkeep/agents-ui-cloud/types').InkeepCloudJS;
|
|
2277
2296
|
interface Window {
|
|
2278
|
-
Inkeep: import('@inkeep/agents-ui/types').
|
|
2297
|
+
Inkeep: import('@inkeep/agents-ui-cloud/types').InkeepCloudJS;
|
|
2279
2298
|
}
|
|
2280
2299
|
}
|
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.16",
|
|
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.16"
|
|
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.16"
|
|
60
60
|
},
|
|
61
61
|
"module": "./dist/embed.js",
|
|
62
62
|
"types": "./dist/types.d.ts",
|