@faiber/faiber-knowledge 0.3.0 → 0.5.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/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +280 -39
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +274 -33
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +204 -166
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2,163 +2,174 @@ import type { ApiEnvelope, JsonObject, JsonValue, QueryParams } from "@faiber/sd
|
|
|
2
2
|
/** Generated route contracts. Dynamic payload members remain JSON-safe and are documented with their Rust source type. */
|
|
3
3
|
/** Backend query type: ListQuery. */
|
|
4
4
|
export interface RoutesListActionsGetQuery extends QueryParams {
|
|
5
|
-
"q"?: string;
|
|
6
|
-
"status"?: string;
|
|
7
|
-
"group"?: string;
|
|
8
|
-
"kind"?: string;
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
"q"?: string | null;
|
|
6
|
+
"status"?: string | null;
|
|
7
|
+
"group"?: string | null;
|
|
8
|
+
"kind"?: string | null;
|
|
9
|
+
"linked_service"?: string | null;
|
|
10
|
+
"linked_entity_type"?: string | null;
|
|
11
|
+
"linked_entity_id"?: string | null;
|
|
12
|
+
"page"?: number | null;
|
|
13
|
+
"limit"?: number | null;
|
|
14
|
+
}
|
|
15
|
+
/** Backend response type: Value. */
|
|
13
16
|
export interface RoutesListActionsGetResponse extends ApiEnvelope<JsonValue> {
|
|
14
17
|
}
|
|
15
18
|
/** Backend request type: ActionStatus. */
|
|
16
19
|
export interface RoutesUpdateActionStatusPatchInput extends JsonObject {
|
|
17
20
|
"status": string;
|
|
18
|
-
"input"
|
|
21
|
+
"input"?: JsonValue;
|
|
19
22
|
}
|
|
20
|
-
/** Backend response type:
|
|
23
|
+
/** Backend response type: Value. */
|
|
21
24
|
export interface RoutesUpdateActionStatusPatchResponse extends ApiEnvelope<JsonValue> {
|
|
22
25
|
}
|
|
23
26
|
/** Backend query type: ListQuery. */
|
|
24
27
|
export interface RoutesListAuditGetQuery extends QueryParams {
|
|
25
|
-
"q"?: string;
|
|
26
|
-
"status"?: string;
|
|
27
|
-
"group"?: string;
|
|
28
|
-
"kind"?: string;
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
"q"?: string | null;
|
|
29
|
+
"status"?: string | null;
|
|
30
|
+
"group"?: string | null;
|
|
31
|
+
"kind"?: string | null;
|
|
32
|
+
"linked_service"?: string | null;
|
|
33
|
+
"linked_entity_type"?: string | null;
|
|
34
|
+
"linked_entity_id"?: string | null;
|
|
35
|
+
"page"?: number | null;
|
|
36
|
+
"limit"?: number | null;
|
|
37
|
+
}
|
|
38
|
+
/** Backend response type: Value. */
|
|
33
39
|
export interface RoutesListAuditGetResponse extends ApiEnvelope<JsonValue> {
|
|
34
40
|
}
|
|
35
|
-
/** Backend response type:
|
|
41
|
+
/** Backend response type: Value. */
|
|
36
42
|
export interface RoutesListBindingsGetResponse extends ApiEnvelope<JsonValue> {
|
|
37
43
|
}
|
|
38
44
|
/** Backend request type: CreateBinding. */
|
|
39
45
|
export interface RoutesCreateBindingPostInput extends JsonObject {
|
|
40
46
|
"chat_slug": string;
|
|
41
47
|
"knowledge_base_id": string;
|
|
42
|
-
"group_slugs"
|
|
43
|
-
"max_level"
|
|
44
|
-
"tool_policy"
|
|
45
|
-
"enabled"
|
|
48
|
+
"group_slugs"?: JsonValue;
|
|
49
|
+
"max_level"?: number;
|
|
50
|
+
"tool_policy"?: JsonValue;
|
|
51
|
+
"enabled"?: boolean;
|
|
46
52
|
}
|
|
47
|
-
/** Backend response type:
|
|
53
|
+
/** Backend response type: Value. */
|
|
48
54
|
export interface RoutesCreateBindingPostResponse extends ApiEnvelope<JsonValue> {
|
|
49
55
|
}
|
|
50
|
-
/** Backend response type:
|
|
51
|
-
export
|
|
52
|
-
}
|
|
56
|
+
/** Backend response type: no-content. */
|
|
57
|
+
export type RoutesDeleteBindingDeleteResponse = void;
|
|
53
58
|
/** Backend request type: UpdateBinding. */
|
|
54
59
|
export interface RoutesUpdateBindingPutInput extends JsonObject {
|
|
55
|
-
"group_slugs"?: JsonValue;
|
|
56
|
-
"max_level"?: number;
|
|
57
|
-
"tool_policy"?: JsonValue;
|
|
58
|
-
"enabled"?: boolean;
|
|
59
|
-
"expected_version"?: number;
|
|
60
|
+
"group_slugs"?: JsonValue | null;
|
|
61
|
+
"max_level"?: number | null;
|
|
62
|
+
"tool_policy"?: JsonValue | null;
|
|
63
|
+
"enabled"?: boolean | null;
|
|
64
|
+
"expected_version"?: number | null;
|
|
60
65
|
}
|
|
61
|
-
/** Backend response type:
|
|
66
|
+
/** Backend response type: Value. */
|
|
62
67
|
export interface RoutesUpdateBindingPutResponse extends ApiEnvelope<JsonValue> {
|
|
63
68
|
}
|
|
64
|
-
/** Backend response type:
|
|
65
|
-
export
|
|
66
|
-
}
|
|
69
|
+
/** Backend response type: no-content. */
|
|
70
|
+
export type RoutesDeleteEdgeDeleteResponse = void;
|
|
67
71
|
/** Backend request type: UpdateEdge. */
|
|
68
72
|
export interface RoutesUpdateEdgePutInput extends JsonObject {
|
|
69
|
-
"edge_type"?: string;
|
|
70
|
-
"conditions"?: JsonValue;
|
|
71
|
-
"weight"?: number;
|
|
72
|
-
"status"?: string;
|
|
73
|
-
"expected_version"?: number;
|
|
73
|
+
"edge_type"?: string | null;
|
|
74
|
+
"conditions"?: JsonValue | null;
|
|
75
|
+
"weight"?: number | null;
|
|
76
|
+
"status"?: string | null;
|
|
77
|
+
"expected_version"?: number | null;
|
|
74
78
|
}
|
|
75
|
-
/** Backend response type:
|
|
79
|
+
/** Backend response type: Value. */
|
|
76
80
|
export interface RoutesUpdateEdgePutResponse extends ApiEnvelope<JsonValue> {
|
|
77
81
|
}
|
|
78
|
-
/** Backend response type:
|
|
79
|
-
export
|
|
80
|
-
}
|
|
82
|
+
/** Backend response type: no-content. */
|
|
83
|
+
export type RoutesDeleteGroupDeleteResponse = void;
|
|
81
84
|
/** Backend request type: UpdateGroup. */
|
|
82
85
|
export interface RoutesUpdateGroupPutInput extends JsonObject {
|
|
83
|
-
"parent_id"?: string;
|
|
84
|
-
"name"?: JsonValue;
|
|
85
|
-
"description"?: JsonValue;
|
|
86
|
-
"sort_order"?: number;
|
|
87
|
-
"inclusion_policy"?: JsonValue;
|
|
88
|
-
"status"?: string;
|
|
89
|
-
"expected_version"?: number;
|
|
90
|
-
}
|
|
91
|
-
/** Backend response type:
|
|
86
|
+
"parent_id"?: string | null;
|
|
87
|
+
"name"?: JsonValue | null;
|
|
88
|
+
"description"?: JsonValue | null;
|
|
89
|
+
"sort_order"?: number | null;
|
|
90
|
+
"inclusion_policy"?: JsonValue | null;
|
|
91
|
+
"status"?: string | null;
|
|
92
|
+
"expected_version"?: number | null;
|
|
93
|
+
}
|
|
94
|
+
/** Backend response type: Value. */
|
|
92
95
|
export interface RoutesUpdateGroupPutResponse extends ApiEnvelope<JsonValue> {
|
|
93
96
|
}
|
|
94
|
-
/** Backend response type:
|
|
95
|
-
export
|
|
96
|
-
|
|
97
|
-
/** Backend response type: response without a declared JSON model. */
|
|
97
|
+
/** Backend response type: no-content. */
|
|
98
|
+
export type RoutesDeleteItemDeleteResponse = void;
|
|
99
|
+
/** Backend response type: Value. */
|
|
98
100
|
export interface RoutesGetItemGetResponse extends ApiEnvelope<JsonValue> {
|
|
99
101
|
}
|
|
100
102
|
/** Backend request type: UpdateItem. */
|
|
101
103
|
export interface RoutesUpdateItemPutInput extends JsonObject {
|
|
102
|
-
"group_id"?: string;
|
|
103
|
-
"kind"?: string;
|
|
104
|
-
"title"?: JsonValue;
|
|
105
|
-
"summary"?: JsonValue;
|
|
106
|
-
"content"?: JsonValue;
|
|
107
|
-
"metadata"?: JsonValue;
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
|
|
104
|
+
"group_id"?: string | null;
|
|
105
|
+
"kind"?: string | null;
|
|
106
|
+
"title"?: JsonValue | null;
|
|
107
|
+
"summary"?: JsonValue | null;
|
|
108
|
+
"content"?: JsonValue | null;
|
|
109
|
+
"metadata"?: JsonValue | null;
|
|
110
|
+
"description"?: JsonValue | null;
|
|
111
|
+
"linked_service"?: string | null;
|
|
112
|
+
"linked_entity_type"?: string | null;
|
|
113
|
+
"linked_entity_id"?: string | null;
|
|
114
|
+
"link_url"?: string | null;
|
|
115
|
+
"open_in_new_tab"?: boolean | null;
|
|
116
|
+
"show_when"?: JsonValue | null;
|
|
117
|
+
"tags"?: JsonValue | null;
|
|
118
|
+
"importance"?: string | null;
|
|
119
|
+
"status"?: string | null;
|
|
120
|
+
"valid_from"?: string | null;
|
|
121
|
+
"valid_to"?: string | null;
|
|
122
|
+
"expected_version"?: number | null;
|
|
123
|
+
}
|
|
124
|
+
/** Backend response type: Value. */
|
|
116
125
|
export interface RoutesUpdateItemPutResponse extends ApiEnvelope<JsonValue> {
|
|
117
126
|
}
|
|
118
127
|
/** Backend query type: ListQuery. */
|
|
119
128
|
export interface RoutesListBasesGetQuery extends QueryParams {
|
|
120
|
-
"q"?: string;
|
|
121
|
-
"status"?: string;
|
|
122
|
-
"group"?: string;
|
|
123
|
-
"kind"?: string;
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
|
|
127
|
-
|
|
129
|
+
"q"?: string | null;
|
|
130
|
+
"status"?: string | null;
|
|
131
|
+
"group"?: string | null;
|
|
132
|
+
"kind"?: string | null;
|
|
133
|
+
"linked_service"?: string | null;
|
|
134
|
+
"linked_entity_type"?: string | null;
|
|
135
|
+
"linked_entity_id"?: string | null;
|
|
136
|
+
"page"?: number | null;
|
|
137
|
+
"limit"?: number | null;
|
|
138
|
+
}
|
|
139
|
+
/** Backend response type: Value. */
|
|
128
140
|
export interface RoutesListBasesGetResponse extends ApiEnvelope<JsonValue> {
|
|
129
141
|
}
|
|
130
142
|
/** Backend request type: CreateKnowledgeBase. */
|
|
131
143
|
export interface RoutesCreateBasePostInput extends JsonObject {
|
|
132
144
|
"slug": string;
|
|
133
145
|
"name": string;
|
|
134
|
-
"description"
|
|
135
|
-
"default_language"
|
|
136
|
-
"supported_languages"
|
|
137
|
-
"settings"
|
|
146
|
+
"description"?: string;
|
|
147
|
+
"default_language"?: string;
|
|
148
|
+
"supported_languages"?: JsonValue;
|
|
149
|
+
"settings"?: JsonValue;
|
|
138
150
|
}
|
|
139
|
-
/** Backend response type:
|
|
151
|
+
/** Backend response type: Value. */
|
|
140
152
|
export interface RoutesCreateBasePostResponse extends ApiEnvelope<JsonValue> {
|
|
141
153
|
}
|
|
142
|
-
/** Backend response type:
|
|
143
|
-
export
|
|
144
|
-
|
|
145
|
-
/** Backend response type: response without a declared JSON model. */
|
|
154
|
+
/** Backend response type: no-content. */
|
|
155
|
+
export type RoutesDeleteBaseDeleteResponse = void;
|
|
156
|
+
/** Backend response type: Value. */
|
|
146
157
|
export interface RoutesGetBaseGetResponse extends ApiEnvelope<JsonValue> {
|
|
147
158
|
}
|
|
148
159
|
/** Backend request type: UpdateKnowledgeBase. */
|
|
149
160
|
export interface RoutesUpdateBasePutInput extends JsonObject {
|
|
150
|
-
"name"?: string;
|
|
151
|
-
"description"?: string;
|
|
152
|
-
"default_language"?: string;
|
|
153
|
-
"supported_languages"?: JsonValue;
|
|
154
|
-
"settings"?: JsonValue;
|
|
155
|
-
"status"?: string;
|
|
156
|
-
"expected_version"?: number;
|
|
157
|
-
}
|
|
158
|
-
/** Backend response type:
|
|
161
|
+
"name"?: string | null;
|
|
162
|
+
"description"?: string | null;
|
|
163
|
+
"default_language"?: string | null;
|
|
164
|
+
"supported_languages"?: JsonValue | null;
|
|
165
|
+
"settings"?: JsonValue | null;
|
|
166
|
+
"status"?: string | null;
|
|
167
|
+
"expected_version"?: number | null;
|
|
168
|
+
}
|
|
169
|
+
/** Backend response type: Value. */
|
|
159
170
|
export interface RoutesUpdateBasePutResponse extends ApiEnvelope<JsonValue> {
|
|
160
171
|
}
|
|
161
|
-
/** Backend response type:
|
|
172
|
+
/** Backend response type: Value. */
|
|
162
173
|
export interface RoutesListEdgesGetResponse extends ApiEnvelope<JsonValue> {
|
|
163
174
|
}
|
|
164
175
|
/** Backend request type: CreateEdge. */
|
|
@@ -166,40 +177,43 @@ export interface RoutesCreateEdgePostInput extends JsonObject {
|
|
|
166
177
|
"from_item_id": string;
|
|
167
178
|
"to_item_id": string;
|
|
168
179
|
"edge_type": string;
|
|
169
|
-
"conditions"
|
|
170
|
-
"weight"
|
|
180
|
+
"conditions"?: JsonValue;
|
|
181
|
+
"weight"?: number;
|
|
171
182
|
}
|
|
172
|
-
/** Backend response type:
|
|
183
|
+
/** Backend response type: Value. */
|
|
173
184
|
export interface RoutesCreateEdgePostResponse extends ApiEnvelope<JsonValue> {
|
|
174
185
|
}
|
|
175
|
-
/** Backend response type:
|
|
186
|
+
/** Backend response type: Value. */
|
|
176
187
|
export interface RoutesExportBaseGetResponse extends ApiEnvelope<JsonValue> {
|
|
177
188
|
}
|
|
178
|
-
/** Backend response type:
|
|
189
|
+
/** Backend response type: Value. */
|
|
179
190
|
export interface RoutesListGroupsGetResponse extends ApiEnvelope<JsonValue> {
|
|
180
191
|
}
|
|
181
192
|
/** Backend request type: CreateGroup. */
|
|
182
193
|
export interface RoutesCreateGroupPostInput extends JsonObject {
|
|
183
|
-
"parent_id"?: string;
|
|
194
|
+
"parent_id"?: string | null;
|
|
184
195
|
"slug": string;
|
|
185
196
|
"name": JsonValue;
|
|
186
|
-
"description"
|
|
187
|
-
"sort_order"
|
|
188
|
-
"inclusion_policy"
|
|
197
|
+
"description"?: JsonValue;
|
|
198
|
+
"sort_order"?: number;
|
|
199
|
+
"inclusion_policy"?: JsonValue;
|
|
189
200
|
}
|
|
190
|
-
/** Backend response type:
|
|
201
|
+
/** Backend response type: Value. */
|
|
191
202
|
export interface RoutesCreateGroupPostResponse extends ApiEnvelope<JsonValue> {
|
|
192
203
|
}
|
|
193
204
|
/** Backend query type: ListQuery. */
|
|
194
205
|
export interface RoutesListItemsGetQuery extends QueryParams {
|
|
195
|
-
"q"?: string;
|
|
196
|
-
"status"?: string;
|
|
197
|
-
"group"?: string;
|
|
198
|
-
"kind"?: string;
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
|
|
202
|
-
|
|
206
|
+
"q"?: string | null;
|
|
207
|
+
"status"?: string | null;
|
|
208
|
+
"group"?: string | null;
|
|
209
|
+
"kind"?: string | null;
|
|
210
|
+
"linked_service"?: string | null;
|
|
211
|
+
"linked_entity_type"?: string | null;
|
|
212
|
+
"linked_entity_id"?: string | null;
|
|
213
|
+
"page"?: number | null;
|
|
214
|
+
"limit"?: number | null;
|
|
215
|
+
}
|
|
216
|
+
/** Backend response type: Value. */
|
|
203
217
|
export interface RoutesListItemsGetResponse extends ApiEnvelope<JsonValue> {
|
|
204
218
|
}
|
|
205
219
|
/** Backend request type: CreateItem. */
|
|
@@ -208,81 +222,105 @@ export interface RoutesCreateItemPostInput extends JsonObject {
|
|
|
208
222
|
"slug": string;
|
|
209
223
|
"kind": string;
|
|
210
224
|
"title": JsonValue;
|
|
211
|
-
"summary"
|
|
225
|
+
"summary"?: JsonValue;
|
|
212
226
|
"content": JsonValue;
|
|
213
|
-
"metadata"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
227
|
+
"metadata"?: JsonValue;
|
|
228
|
+
"description"?: JsonValue;
|
|
229
|
+
"linked_service"?: string | null;
|
|
230
|
+
"linked_entity_type"?: string | null;
|
|
231
|
+
"linked_entity_id"?: string | null;
|
|
232
|
+
"link_url"?: string | null;
|
|
233
|
+
"open_in_new_tab"?: boolean;
|
|
234
|
+
"show_when"?: JsonValue;
|
|
235
|
+
"tags"?: JsonValue;
|
|
236
|
+
"importance"?: string;
|
|
237
|
+
"valid_from"?: string | null;
|
|
238
|
+
"valid_to"?: string | null;
|
|
218
239
|
}
|
|
219
|
-
/** Backend response type:
|
|
240
|
+
/** Backend response type: Value. */
|
|
220
241
|
export interface RoutesCreateItemPostResponse extends ApiEnvelope<JsonValue> {
|
|
221
242
|
}
|
|
222
|
-
/** Backend response type:
|
|
243
|
+
/** Backend response type: Value. */
|
|
223
244
|
export interface RoutesPublishPostResponse extends ApiEnvelope<JsonValue> {
|
|
224
245
|
}
|
|
225
246
|
/** Backend query type: ListQuery. */
|
|
226
247
|
export interface RoutesListRulesGetQuery extends QueryParams {
|
|
227
|
-
"q"?: string;
|
|
228
|
-
"status"?: string;
|
|
229
|
-
"group"?: string;
|
|
230
|
-
"kind"?: string;
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
|
|
234
|
-
|
|
248
|
+
"q"?: string | null;
|
|
249
|
+
"status"?: string | null;
|
|
250
|
+
"group"?: string | null;
|
|
251
|
+
"kind"?: string | null;
|
|
252
|
+
"linked_service"?: string | null;
|
|
253
|
+
"linked_entity_type"?: string | null;
|
|
254
|
+
"linked_entity_id"?: string | null;
|
|
255
|
+
"page"?: number | null;
|
|
256
|
+
"limit"?: number | null;
|
|
257
|
+
}
|
|
258
|
+
/** Backend response type: Value. */
|
|
235
259
|
export interface RoutesListRulesGetResponse extends ApiEnvelope<JsonValue> {
|
|
236
260
|
}
|
|
237
261
|
/** Backend request type: CreateRule. */
|
|
238
262
|
export interface RoutesCreateRulePostInput extends JsonObject {
|
|
239
263
|
"knowledge_base_id": string;
|
|
240
|
-
"group_id"?: string;
|
|
264
|
+
"group_id"?: string | null;
|
|
241
265
|
"slug": string;
|
|
242
266
|
"name": JsonValue;
|
|
243
|
-
"priority"
|
|
267
|
+
"priority"?: number;
|
|
244
268
|
"conditions": JsonValue;
|
|
245
269
|
"outcomes": JsonValue;
|
|
246
|
-
"stop_on_match"
|
|
247
|
-
"enabled"
|
|
270
|
+
"stop_on_match"?: boolean;
|
|
271
|
+
"enabled"?: boolean;
|
|
248
272
|
}
|
|
249
|
-
/** Backend response type:
|
|
273
|
+
/** Backend response type: Value. */
|
|
250
274
|
export interface RoutesCreateRulePostResponse extends ApiEnvelope<JsonValue> {
|
|
251
275
|
}
|
|
252
|
-
/** Backend response type:
|
|
253
|
-
export
|
|
254
|
-
}
|
|
276
|
+
/** Backend response type: no-content. */
|
|
277
|
+
export type RoutesDeleteRuleDeleteResponse = void;
|
|
255
278
|
/** Backend request type: UpdateRule. */
|
|
256
279
|
export interface RoutesUpdateRulePutInput extends JsonObject {
|
|
257
|
-
"group_id"?: string;
|
|
258
|
-
"name"?: JsonValue;
|
|
259
|
-
"priority"?: number;
|
|
260
|
-
"conditions"?: JsonValue;
|
|
261
|
-
"outcomes"?: JsonValue;
|
|
262
|
-
"stop_on_match"?: boolean;
|
|
263
|
-
"enabled"?: boolean;
|
|
264
|
-
"expected_version"?: number;
|
|
265
|
-
}
|
|
266
|
-
/** Backend response type:
|
|
280
|
+
"group_id"?: string | null;
|
|
281
|
+
"name"?: JsonValue | null;
|
|
282
|
+
"priority"?: number | null;
|
|
283
|
+
"conditions"?: JsonValue | null;
|
|
284
|
+
"outcomes"?: JsonValue | null;
|
|
285
|
+
"stop_on_match"?: boolean | null;
|
|
286
|
+
"enabled"?: boolean | null;
|
|
287
|
+
"expected_version"?: number | null;
|
|
288
|
+
}
|
|
289
|
+
/** Backend response type: Value. */
|
|
267
290
|
export interface RoutesUpdateRulePutResponse extends ApiEnvelope<JsonValue> {
|
|
268
291
|
}
|
|
269
292
|
/** Backend request type: RuntimeQuery. */
|
|
270
293
|
export interface RoutesRuntimeQueryPostInput extends JsonObject {
|
|
271
|
-
"query"?: string;
|
|
272
|
-
"profile_id"?: string;
|
|
273
|
-
"profile"
|
|
274
|
-
"props"
|
|
275
|
-
"meta"
|
|
276
|
-
"inputs"
|
|
277
|
-
"group_slugs"
|
|
278
|
-
"level"?: number;
|
|
279
|
-
"limit"?: number;
|
|
280
|
-
"
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
294
|
+
"query"?: string | null;
|
|
295
|
+
"profile_id"?: string | null;
|
|
296
|
+
"profile"?: JsonValue;
|
|
297
|
+
"props"?: JsonValue;
|
|
298
|
+
"meta"?: JsonValue;
|
|
299
|
+
"inputs"?: JsonValue;
|
|
300
|
+
"group_slugs"?: JsonValue;
|
|
301
|
+
"level"?: number | null;
|
|
302
|
+
"limit"?: number | null;
|
|
303
|
+
"compact"?: boolean;
|
|
304
|
+
"max_context_chars"?: number | null;
|
|
305
|
+
"event"?: JsonValue | null;
|
|
306
|
+
}
|
|
307
|
+
/** Backend response type: RuntimeResult. */
|
|
308
|
+
export interface RoutesRuntimeQueryPostResponseData extends JsonObject {
|
|
309
|
+
"chat_slug": string;
|
|
310
|
+
"release"?: JsonValue | null;
|
|
311
|
+
"knowledge": JsonValue[];
|
|
312
|
+
"suggestions": JsonValue[];
|
|
313
|
+
"matched_rules": JsonValue[];
|
|
314
|
+
"notifications": JsonValue[];
|
|
315
|
+
"warnings": JsonValue[];
|
|
316
|
+
"todos": JsonValue[];
|
|
317
|
+
"input_requests": JsonValue[];
|
|
318
|
+
"directions": JsonValue[];
|
|
319
|
+
"trace": JsonValue;
|
|
320
|
+
}
|
|
321
|
+
export interface RoutesRuntimeQueryPostResponse extends ApiEnvelope<RoutesRuntimeQueryPostResponseData> {
|
|
322
|
+
}
|
|
323
|
+
/** Backend response type: Value. */
|
|
286
324
|
export interface RoutesToolSchemaGetResponse extends ApiEnvelope<JsonValue> {
|
|
287
325
|
}
|
|
288
326
|
//# sourceMappingURL=operations.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.types.d.ts","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"operations.types.d.ts","sourceRoot":"","sources":["../src/operations.types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faiber/faiber-knowledge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -16,6 +16,6 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@faiber/sdk-core": "0.
|
|
19
|
+
"@faiber/sdk-core": "0.5.1"
|
|
20
20
|
}
|
|
21
21
|
}
|