@agent-os-sdk/client 0.9.40 → 0.9.41
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/generated/openapi.d.ts +61 -0
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/modules/agents.d.ts +53 -0
- package/dist/modules/agents.d.ts.map +1 -1
- package/dist/modules/agents.js +20 -0
- package/dist/modules/providers.d.ts +8 -16
- package/dist/modules/providers.d.ts.map +1 -1
- package/dist/modules/providers.js +7 -8
- package/dist/modules/runs.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -6596,6 +6596,61 @@ export interface paths {
|
|
|
6596
6596
|
patch?: never;
|
|
6597
6597
|
trace?: never;
|
|
6598
6598
|
};
|
|
6599
|
+
"/v1/api/providers/default-router": {
|
|
6600
|
+
parameters: {
|
|
6601
|
+
query?: never;
|
|
6602
|
+
header?: never;
|
|
6603
|
+
path?: never;
|
|
6604
|
+
cookie?: never;
|
|
6605
|
+
};
|
|
6606
|
+
get: {
|
|
6607
|
+
parameters: {
|
|
6608
|
+
query?: {
|
|
6609
|
+
channel_kind?: string;
|
|
6610
|
+
};
|
|
6611
|
+
header?: never;
|
|
6612
|
+
path?: never;
|
|
6613
|
+
cookie?: never;
|
|
6614
|
+
};
|
|
6615
|
+
requestBody?: never;
|
|
6616
|
+
responses: {
|
|
6617
|
+
/** @description OK */
|
|
6618
|
+
200: {
|
|
6619
|
+
headers: {
|
|
6620
|
+
[name: string]: unknown;
|
|
6621
|
+
};
|
|
6622
|
+
content: {
|
|
6623
|
+
"application/json": components["schemas"]["DefaultRouterResponseDto"];
|
|
6624
|
+
};
|
|
6625
|
+
};
|
|
6626
|
+
/** @description Bad Request */
|
|
6627
|
+
400: {
|
|
6628
|
+
headers: {
|
|
6629
|
+
[name: string]: unknown;
|
|
6630
|
+
};
|
|
6631
|
+
content: {
|
|
6632
|
+
"application/json": components["schemas"]["ProblemDetails"];
|
|
6633
|
+
};
|
|
6634
|
+
};
|
|
6635
|
+
/** @description Not Found */
|
|
6636
|
+
404: {
|
|
6637
|
+
headers: {
|
|
6638
|
+
[name: string]: unknown;
|
|
6639
|
+
};
|
|
6640
|
+
content: {
|
|
6641
|
+
"application/json": components["schemas"]["ProblemDetails"];
|
|
6642
|
+
};
|
|
6643
|
+
};
|
|
6644
|
+
};
|
|
6645
|
+
};
|
|
6646
|
+
put?: never;
|
|
6647
|
+
post?: never;
|
|
6648
|
+
delete?: never;
|
|
6649
|
+
options?: never;
|
|
6650
|
+
head?: never;
|
|
6651
|
+
patch?: never;
|
|
6652
|
+
trace?: never;
|
|
6653
|
+
};
|
|
6599
6654
|
"/v1/api/providers/validate": {
|
|
6600
6655
|
parameters: {
|
|
6601
6656
|
query?: never;
|
|
@@ -13242,6 +13297,12 @@ export interface components {
|
|
|
13242
13297
|
/** Format: date-time */
|
|
13243
13298
|
updatedAt?: string;
|
|
13244
13299
|
};
|
|
13300
|
+
DefaultRouterResponseDto: {
|
|
13301
|
+
channel_kind?: string | null;
|
|
13302
|
+
router_ref?: string | null;
|
|
13303
|
+
worker_name?: string | null;
|
|
13304
|
+
status?: string | null;
|
|
13305
|
+
};
|
|
13245
13306
|
EndpointContract: {
|
|
13246
13307
|
/** Format: uuid */
|
|
13247
13308
|
endpoint_id?: string | null;
|