@openbkn/bkn-sdk 0.1.1-alpha.12 → 0.1.1-alpha.13
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/{chunk-3FVB6VFQ.js → chunk-RSX5YMFM.js} +1 -1
- package/dist/chunk-RSX5YMFM.js.map +1 -0
- package/dist/cli.js +10 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-3FVB6VFQ.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -199,6 +199,8 @@ interface SendChatOptions {
|
|
|
199
199
|
/**
|
|
200
200
|
* Agent client (agent-factory v3). Read side + published listing, mirroring
|
|
201
201
|
* kweaver-sdk api/agent-list.ts. Responses passed through as parsed JSON.
|
|
202
|
+
* @deprecated The Decision Agent (agent-factory) surface is being phased out and
|
|
203
|
+
* may be removed in a future release. Avoid building new integrations on it.
|
|
202
204
|
*/
|
|
203
205
|
|
|
204
206
|
interface ListAgentsOptions {
|
|
@@ -215,6 +217,11 @@ interface PagingOptions {
|
|
|
215
217
|
name?: string;
|
|
216
218
|
}
|
|
217
219
|
|
|
220
|
+
/**
|
|
221
|
+
* Decision Agent resource surface.
|
|
222
|
+
* @deprecated The Decision Agent (agent-factory) surface is being phased out and
|
|
223
|
+
* may be removed in a future release. Avoid building new integrations on it.
|
|
224
|
+
*/
|
|
218
225
|
declare function agents(ctx: RequestContext): {
|
|
219
226
|
list: (opts?: ListAgentsOptions) => Promise<unknown>;
|
|
220
227
|
get: (agentId: string) => Promise<unknown>;
|
|
@@ -954,6 +961,10 @@ interface BknClient {
|
|
|
954
961
|
readonly kn: ReturnType<typeof kn>;
|
|
955
962
|
readonly resource: ReturnType<typeof resources>;
|
|
956
963
|
readonly dataflows: ReturnType<typeof dataflows>;
|
|
964
|
+
/**
|
|
965
|
+
* @deprecated Decision Agent (agent-factory) is being phased out and may be
|
|
966
|
+
* removed in a future release. Avoid building new integrations on it.
|
|
967
|
+
*/
|
|
957
968
|
readonly agents: ReturnType<typeof agents>;
|
|
958
969
|
readonly context: ReturnType<typeof context>;
|
|
959
970
|
readonly models: ReturnType<typeof models>;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED