@faiber/faiber-knowledge 0.3.0 → 0.5.0
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 +274 -33
- 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 +152 -152
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -2,163 +2,163 @@ 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
|
-
"page"?: number;
|
|
10
|
-
"limit"?: number;
|
|
11
|
-
}
|
|
12
|
-
/** Backend response type: response
|
|
5
|
+
"q"?: string | null;
|
|
6
|
+
"status"?: string | null;
|
|
7
|
+
"group"?: string | null;
|
|
8
|
+
"kind"?: string | null;
|
|
9
|
+
"page"?: number | null;
|
|
10
|
+
"limit"?: number | null;
|
|
11
|
+
}
|
|
12
|
+
/** Backend response type: handler-defined response. */
|
|
13
13
|
export interface RoutesListActionsGetResponse extends ApiEnvelope<JsonValue> {
|
|
14
14
|
}
|
|
15
15
|
/** Backend request type: ActionStatus. */
|
|
16
16
|
export interface RoutesUpdateActionStatusPatchInput extends JsonObject {
|
|
17
17
|
"status": string;
|
|
18
|
-
"input"
|
|
18
|
+
"input"?: JsonValue;
|
|
19
19
|
}
|
|
20
|
-
/** Backend response type: response
|
|
20
|
+
/** Backend response type: handler-defined response. */
|
|
21
21
|
export interface RoutesUpdateActionStatusPatchResponse extends ApiEnvelope<JsonValue> {
|
|
22
22
|
}
|
|
23
23
|
/** Backend query type: ListQuery. */
|
|
24
24
|
export interface RoutesListAuditGetQuery extends QueryParams {
|
|
25
|
-
"q"?: string;
|
|
26
|
-
"status"?: string;
|
|
27
|
-
"group"?: string;
|
|
28
|
-
"kind"?: string;
|
|
29
|
-
"page"?: number;
|
|
30
|
-
"limit"?: number;
|
|
31
|
-
}
|
|
32
|
-
/** Backend response type: response
|
|
25
|
+
"q"?: string | null;
|
|
26
|
+
"status"?: string | null;
|
|
27
|
+
"group"?: string | null;
|
|
28
|
+
"kind"?: string | null;
|
|
29
|
+
"page"?: number | null;
|
|
30
|
+
"limit"?: number | null;
|
|
31
|
+
}
|
|
32
|
+
/** Backend response type: handler-defined response. */
|
|
33
33
|
export interface RoutesListAuditGetResponse extends ApiEnvelope<JsonValue> {
|
|
34
34
|
}
|
|
35
|
-
/** Backend response type: response
|
|
35
|
+
/** Backend response type: handler-defined response. */
|
|
36
36
|
export interface RoutesListBindingsGetResponse extends ApiEnvelope<JsonValue> {
|
|
37
37
|
}
|
|
38
38
|
/** Backend request type: CreateBinding. */
|
|
39
39
|
export interface RoutesCreateBindingPostInput extends JsonObject {
|
|
40
40
|
"chat_slug": string;
|
|
41
41
|
"knowledge_base_id": string;
|
|
42
|
-
"group_slugs"
|
|
43
|
-
"max_level"
|
|
44
|
-
"tool_policy"
|
|
45
|
-
"enabled"
|
|
42
|
+
"group_slugs"?: JsonValue;
|
|
43
|
+
"max_level"?: number;
|
|
44
|
+
"tool_policy"?: JsonValue;
|
|
45
|
+
"enabled"?: boolean;
|
|
46
46
|
}
|
|
47
|
-
/** Backend response type: response
|
|
47
|
+
/** Backend response type: handler-defined response. */
|
|
48
48
|
export interface RoutesCreateBindingPostResponse extends ApiEnvelope<JsonValue> {
|
|
49
49
|
}
|
|
50
|
-
/** Backend response type: response
|
|
50
|
+
/** Backend response type: handler-defined response. */
|
|
51
51
|
export interface RoutesDeleteBindingDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
52
52
|
}
|
|
53
53
|
/** Backend request type: UpdateBinding. */
|
|
54
54
|
export interface RoutesUpdateBindingPutInput extends JsonObject {
|
|
55
|
-
"group_slugs"?: JsonValue;
|
|
56
|
-
"max_level"?: number;
|
|
57
|
-
"tool_policy"?: JsonValue;
|
|
58
|
-
"enabled"?: boolean;
|
|
59
|
-
"expected_version"?: number;
|
|
55
|
+
"group_slugs"?: JsonValue | null;
|
|
56
|
+
"max_level"?: number | null;
|
|
57
|
+
"tool_policy"?: JsonValue | null;
|
|
58
|
+
"enabled"?: boolean | null;
|
|
59
|
+
"expected_version"?: number | null;
|
|
60
60
|
}
|
|
61
|
-
/** Backend response type: response
|
|
61
|
+
/** Backend response type: handler-defined response. */
|
|
62
62
|
export interface RoutesUpdateBindingPutResponse extends ApiEnvelope<JsonValue> {
|
|
63
63
|
}
|
|
64
|
-
/** Backend response type: response
|
|
64
|
+
/** Backend response type: handler-defined response. */
|
|
65
65
|
export interface RoutesDeleteEdgeDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
66
66
|
}
|
|
67
67
|
/** Backend request type: UpdateEdge. */
|
|
68
68
|
export interface RoutesUpdateEdgePutInput extends JsonObject {
|
|
69
|
-
"edge_type"?: string;
|
|
70
|
-
"conditions"?: JsonValue;
|
|
71
|
-
"weight"?: number;
|
|
72
|
-
"status"?: string;
|
|
73
|
-
"expected_version"?: number;
|
|
69
|
+
"edge_type"?: string | null;
|
|
70
|
+
"conditions"?: JsonValue | null;
|
|
71
|
+
"weight"?: number | null;
|
|
72
|
+
"status"?: string | null;
|
|
73
|
+
"expected_version"?: number | null;
|
|
74
74
|
}
|
|
75
|
-
/** Backend response type: response
|
|
75
|
+
/** Backend response type: handler-defined response. */
|
|
76
76
|
export interface RoutesUpdateEdgePutResponse extends ApiEnvelope<JsonValue> {
|
|
77
77
|
}
|
|
78
|
-
/** Backend response type: response
|
|
78
|
+
/** Backend response type: handler-defined response. */
|
|
79
79
|
export interface RoutesDeleteGroupDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
80
80
|
}
|
|
81
81
|
/** Backend request type: UpdateGroup. */
|
|
82
82
|
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: response
|
|
83
|
+
"parent_id"?: string | null;
|
|
84
|
+
"name"?: JsonValue | null;
|
|
85
|
+
"description"?: JsonValue | null;
|
|
86
|
+
"sort_order"?: number | null;
|
|
87
|
+
"inclusion_policy"?: JsonValue | null;
|
|
88
|
+
"status"?: string | null;
|
|
89
|
+
"expected_version"?: number | null;
|
|
90
|
+
}
|
|
91
|
+
/** Backend response type: handler-defined response. */
|
|
92
92
|
export interface RoutesUpdateGroupPutResponse extends ApiEnvelope<JsonValue> {
|
|
93
93
|
}
|
|
94
|
-
/** Backend response type: response
|
|
94
|
+
/** Backend response type: handler-defined response. */
|
|
95
95
|
export interface RoutesDeleteItemDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
96
96
|
}
|
|
97
|
-
/** Backend response type: response
|
|
97
|
+
/** Backend response type: handler-defined response. */
|
|
98
98
|
export interface RoutesGetItemGetResponse extends ApiEnvelope<JsonValue> {
|
|
99
99
|
}
|
|
100
100
|
/** Backend request type: UpdateItem. */
|
|
101
101
|
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
|
-
"tags"?: JsonValue;
|
|
109
|
-
"importance"?: string;
|
|
110
|
-
"status"?: string;
|
|
111
|
-
"valid_from"?: string;
|
|
112
|
-
"valid_to"?: string;
|
|
113
|
-
"expected_version"?: number;
|
|
114
|
-
}
|
|
115
|
-
/** Backend response type: response
|
|
102
|
+
"group_id"?: string | null;
|
|
103
|
+
"kind"?: string | null;
|
|
104
|
+
"title"?: JsonValue | null;
|
|
105
|
+
"summary"?: JsonValue | null;
|
|
106
|
+
"content"?: JsonValue | null;
|
|
107
|
+
"metadata"?: JsonValue | null;
|
|
108
|
+
"tags"?: JsonValue | null;
|
|
109
|
+
"importance"?: string | null;
|
|
110
|
+
"status"?: string | null;
|
|
111
|
+
"valid_from"?: string | null;
|
|
112
|
+
"valid_to"?: string | null;
|
|
113
|
+
"expected_version"?: number | null;
|
|
114
|
+
}
|
|
115
|
+
/** Backend response type: handler-defined response. */
|
|
116
116
|
export interface RoutesUpdateItemPutResponse extends ApiEnvelope<JsonValue> {
|
|
117
117
|
}
|
|
118
118
|
/** Backend query type: ListQuery. */
|
|
119
119
|
export interface RoutesListBasesGetQuery extends QueryParams {
|
|
120
|
-
"q"?: string;
|
|
121
|
-
"status"?: string;
|
|
122
|
-
"group"?: string;
|
|
123
|
-
"kind"?: string;
|
|
124
|
-
"page"?: number;
|
|
125
|
-
"limit"?: number;
|
|
126
|
-
}
|
|
127
|
-
/** Backend response type: response
|
|
120
|
+
"q"?: string | null;
|
|
121
|
+
"status"?: string | null;
|
|
122
|
+
"group"?: string | null;
|
|
123
|
+
"kind"?: string | null;
|
|
124
|
+
"page"?: number | null;
|
|
125
|
+
"limit"?: number | null;
|
|
126
|
+
}
|
|
127
|
+
/** Backend response type: handler-defined response. */
|
|
128
128
|
export interface RoutesListBasesGetResponse extends ApiEnvelope<JsonValue> {
|
|
129
129
|
}
|
|
130
130
|
/** Backend request type: CreateKnowledgeBase. */
|
|
131
131
|
export interface RoutesCreateBasePostInput extends JsonObject {
|
|
132
132
|
"slug": string;
|
|
133
133
|
"name": string;
|
|
134
|
-
"description"
|
|
135
|
-
"default_language"
|
|
136
|
-
"supported_languages"
|
|
137
|
-
"settings"
|
|
134
|
+
"description"?: string;
|
|
135
|
+
"default_language"?: string;
|
|
136
|
+
"supported_languages"?: JsonValue;
|
|
137
|
+
"settings"?: JsonValue;
|
|
138
138
|
}
|
|
139
|
-
/** Backend response type: response
|
|
139
|
+
/** Backend response type: handler-defined response. */
|
|
140
140
|
export interface RoutesCreateBasePostResponse extends ApiEnvelope<JsonValue> {
|
|
141
141
|
}
|
|
142
|
-
/** Backend response type: response
|
|
142
|
+
/** Backend response type: handler-defined response. */
|
|
143
143
|
export interface RoutesDeleteBaseDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
144
144
|
}
|
|
145
|
-
/** Backend response type: response
|
|
145
|
+
/** Backend response type: handler-defined response. */
|
|
146
146
|
export interface RoutesGetBaseGetResponse extends ApiEnvelope<JsonValue> {
|
|
147
147
|
}
|
|
148
148
|
/** Backend request type: UpdateKnowledgeBase. */
|
|
149
149
|
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: response
|
|
150
|
+
"name"?: string | null;
|
|
151
|
+
"description"?: string | null;
|
|
152
|
+
"default_language"?: string | null;
|
|
153
|
+
"supported_languages"?: JsonValue | null;
|
|
154
|
+
"settings"?: JsonValue | null;
|
|
155
|
+
"status"?: string | null;
|
|
156
|
+
"expected_version"?: number | null;
|
|
157
|
+
}
|
|
158
|
+
/** Backend response type: handler-defined response. */
|
|
159
159
|
export interface RoutesUpdateBasePutResponse extends ApiEnvelope<JsonValue> {
|
|
160
160
|
}
|
|
161
|
-
/** Backend response type: response
|
|
161
|
+
/** Backend response type: handler-defined response. */
|
|
162
162
|
export interface RoutesListEdgesGetResponse extends ApiEnvelope<JsonValue> {
|
|
163
163
|
}
|
|
164
164
|
/** Backend request type: CreateEdge. */
|
|
@@ -166,40 +166,40 @@ export interface RoutesCreateEdgePostInput extends JsonObject {
|
|
|
166
166
|
"from_item_id": string;
|
|
167
167
|
"to_item_id": string;
|
|
168
168
|
"edge_type": string;
|
|
169
|
-
"conditions"
|
|
170
|
-
"weight"
|
|
169
|
+
"conditions"?: JsonValue;
|
|
170
|
+
"weight"?: number;
|
|
171
171
|
}
|
|
172
|
-
/** Backend response type: response
|
|
172
|
+
/** Backend response type: handler-defined response. */
|
|
173
173
|
export interface RoutesCreateEdgePostResponse extends ApiEnvelope<JsonValue> {
|
|
174
174
|
}
|
|
175
|
-
/** Backend response type: response
|
|
175
|
+
/** Backend response type: handler-defined response. */
|
|
176
176
|
export interface RoutesExportBaseGetResponse extends ApiEnvelope<JsonValue> {
|
|
177
177
|
}
|
|
178
|
-
/** Backend response type: response
|
|
178
|
+
/** Backend response type: handler-defined response. */
|
|
179
179
|
export interface RoutesListGroupsGetResponse extends ApiEnvelope<JsonValue> {
|
|
180
180
|
}
|
|
181
181
|
/** Backend request type: CreateGroup. */
|
|
182
182
|
export interface RoutesCreateGroupPostInput extends JsonObject {
|
|
183
|
-
"parent_id"?: string;
|
|
183
|
+
"parent_id"?: string | null;
|
|
184
184
|
"slug": string;
|
|
185
185
|
"name": JsonValue;
|
|
186
|
-
"description"
|
|
187
|
-
"sort_order"
|
|
188
|
-
"inclusion_policy"
|
|
186
|
+
"description"?: JsonValue;
|
|
187
|
+
"sort_order"?: number;
|
|
188
|
+
"inclusion_policy"?: JsonValue;
|
|
189
189
|
}
|
|
190
|
-
/** Backend response type: response
|
|
190
|
+
/** Backend response type: handler-defined response. */
|
|
191
191
|
export interface RoutesCreateGroupPostResponse extends ApiEnvelope<JsonValue> {
|
|
192
192
|
}
|
|
193
193
|
/** Backend query type: ListQuery. */
|
|
194
194
|
export interface RoutesListItemsGetQuery extends QueryParams {
|
|
195
|
-
"q"?: string;
|
|
196
|
-
"status"?: string;
|
|
197
|
-
"group"?: string;
|
|
198
|
-
"kind"?: string;
|
|
199
|
-
"page"?: number;
|
|
200
|
-
"limit"?: number;
|
|
201
|
-
}
|
|
202
|
-
/** Backend response type: response
|
|
195
|
+
"q"?: string | null;
|
|
196
|
+
"status"?: string | null;
|
|
197
|
+
"group"?: string | null;
|
|
198
|
+
"kind"?: string | null;
|
|
199
|
+
"page"?: number | null;
|
|
200
|
+
"limit"?: number | null;
|
|
201
|
+
}
|
|
202
|
+
/** Backend response type: handler-defined response. */
|
|
203
203
|
export interface RoutesListItemsGetResponse extends ApiEnvelope<JsonValue> {
|
|
204
204
|
}
|
|
205
205
|
/** Backend request type: CreateItem. */
|
|
@@ -208,81 +208,81 @@ export interface RoutesCreateItemPostInput extends JsonObject {
|
|
|
208
208
|
"slug": string;
|
|
209
209
|
"kind": string;
|
|
210
210
|
"title": JsonValue;
|
|
211
|
-
"summary"
|
|
211
|
+
"summary"?: JsonValue;
|
|
212
212
|
"content": JsonValue;
|
|
213
|
-
"metadata"
|
|
214
|
-
"tags"
|
|
215
|
-
"importance"
|
|
216
|
-
"valid_from"?: string;
|
|
217
|
-
"valid_to"?: string;
|
|
213
|
+
"metadata"?: JsonValue;
|
|
214
|
+
"tags"?: JsonValue;
|
|
215
|
+
"importance"?: string;
|
|
216
|
+
"valid_from"?: string | null;
|
|
217
|
+
"valid_to"?: string | null;
|
|
218
218
|
}
|
|
219
|
-
/** Backend response type: response
|
|
219
|
+
/** Backend response type: handler-defined response. */
|
|
220
220
|
export interface RoutesCreateItemPostResponse extends ApiEnvelope<JsonValue> {
|
|
221
221
|
}
|
|
222
|
-
/** Backend response type: response
|
|
222
|
+
/** Backend response type: handler-defined response. */
|
|
223
223
|
export interface RoutesPublishPostResponse extends ApiEnvelope<JsonValue> {
|
|
224
224
|
}
|
|
225
225
|
/** Backend query type: ListQuery. */
|
|
226
226
|
export interface RoutesListRulesGetQuery extends QueryParams {
|
|
227
|
-
"q"?: string;
|
|
228
|
-
"status"?: string;
|
|
229
|
-
"group"?: string;
|
|
230
|
-
"kind"?: string;
|
|
231
|
-
"page"?: number;
|
|
232
|
-
"limit"?: number;
|
|
233
|
-
}
|
|
234
|
-
/** Backend response type: response
|
|
227
|
+
"q"?: string | null;
|
|
228
|
+
"status"?: string | null;
|
|
229
|
+
"group"?: string | null;
|
|
230
|
+
"kind"?: string | null;
|
|
231
|
+
"page"?: number | null;
|
|
232
|
+
"limit"?: number | null;
|
|
233
|
+
}
|
|
234
|
+
/** Backend response type: handler-defined response. */
|
|
235
235
|
export interface RoutesListRulesGetResponse extends ApiEnvelope<JsonValue> {
|
|
236
236
|
}
|
|
237
237
|
/** Backend request type: CreateRule. */
|
|
238
238
|
export interface RoutesCreateRulePostInput extends JsonObject {
|
|
239
239
|
"knowledge_base_id": string;
|
|
240
|
-
"group_id"?: string;
|
|
240
|
+
"group_id"?: string | null;
|
|
241
241
|
"slug": string;
|
|
242
242
|
"name": JsonValue;
|
|
243
|
-
"priority"
|
|
243
|
+
"priority"?: number;
|
|
244
244
|
"conditions": JsonValue;
|
|
245
245
|
"outcomes": JsonValue;
|
|
246
|
-
"stop_on_match"
|
|
247
|
-
"enabled"
|
|
246
|
+
"stop_on_match"?: boolean;
|
|
247
|
+
"enabled"?: boolean;
|
|
248
248
|
}
|
|
249
|
-
/** Backend response type: response
|
|
249
|
+
/** Backend response type: handler-defined response. */
|
|
250
250
|
export interface RoutesCreateRulePostResponse extends ApiEnvelope<JsonValue> {
|
|
251
251
|
}
|
|
252
|
-
/** Backend response type: response
|
|
252
|
+
/** Backend response type: handler-defined response. */
|
|
253
253
|
export interface RoutesDeleteRuleDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
254
254
|
}
|
|
255
255
|
/** Backend request type: UpdateRule. */
|
|
256
256
|
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: response
|
|
257
|
+
"group_id"?: string | null;
|
|
258
|
+
"name"?: JsonValue | null;
|
|
259
|
+
"priority"?: number | null;
|
|
260
|
+
"conditions"?: JsonValue | null;
|
|
261
|
+
"outcomes"?: JsonValue | null;
|
|
262
|
+
"stop_on_match"?: boolean | null;
|
|
263
|
+
"enabled"?: boolean | null;
|
|
264
|
+
"expected_version"?: number | null;
|
|
265
|
+
}
|
|
266
|
+
/** Backend response type: handler-defined response. */
|
|
267
267
|
export interface RoutesUpdateRulePutResponse extends ApiEnvelope<JsonValue> {
|
|
268
268
|
}
|
|
269
269
|
/** Backend request type: RuntimeQuery. */
|
|
270
270
|
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
|
-
"event"?: JsonValue;
|
|
281
|
-
}
|
|
282
|
-
/** Backend response type: response
|
|
271
|
+
"query"?: string | null;
|
|
272
|
+
"profile_id"?: string | null;
|
|
273
|
+
"profile"?: JsonValue;
|
|
274
|
+
"props"?: JsonValue;
|
|
275
|
+
"meta"?: JsonValue;
|
|
276
|
+
"inputs"?: JsonValue;
|
|
277
|
+
"group_slugs"?: JsonValue;
|
|
278
|
+
"level"?: number | null;
|
|
279
|
+
"limit"?: number | null;
|
|
280
|
+
"event"?: JsonValue | null;
|
|
281
|
+
}
|
|
282
|
+
/** Backend response type: handler-defined response. */
|
|
283
283
|
export interface RoutesRuntimeQueryPostResponse extends ApiEnvelope<JsonValue> {
|
|
284
284
|
}
|
|
285
|
-
/** Backend response type: response
|
|
285
|
+
/** Backend response type: handler-defined response. */
|
|
286
286
|
export interface RoutesToolSchemaGetResponse extends ApiEnvelope<JsonValue> {
|
|
287
287
|
}
|
|
288
288
|
//# 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,EAAE,UAAU,EAAE,SAAS,EAAE,WAAW,EAAc,MAAM,kBAAkB,CAAC;AAEpG,0HAA0H;AAC1H,qCAAqC;AACrC,MAAM,WAAW,yBAA0B,SAAQ,WAAW;IAC5D,GAAG,CAAC,EAAE,MAAM,CAAC;
|
|
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.0",
|
|
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.0"
|
|
20
20
|
}
|
|
21
21
|
}
|