@agent-os-sdk/client 0.3.8 → 0.3.11
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 +43 -0
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/modules/runs.d.ts.map +1 -1
- package/dist/sse/client.d.ts +54 -1
- package/dist/sse/client.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/generated/openapi.ts +43 -0
- package/src/generated/swagger.json +88 -1
- package/src/index.ts +1 -1
- package/src/sse/client.ts +35 -1
|
@@ -2877,6 +2877,31 @@ export interface paths {
|
|
|
2877
2877
|
responses: {
|
|
2878
2878
|
/** @description OK */
|
|
2879
2879
|
200: {
|
|
2880
|
+
headers: {
|
|
2881
|
+
[name: string]: unknown;
|
|
2882
|
+
};
|
|
2883
|
+
content: {
|
|
2884
|
+
"application/json": components["schemas"]["ValidateGraphResponse"];
|
|
2885
|
+
};
|
|
2886
|
+
};
|
|
2887
|
+
/** @description Bad Request */
|
|
2888
|
+
400: {
|
|
2889
|
+
headers: {
|
|
2890
|
+
[name: string]: unknown;
|
|
2891
|
+
};
|
|
2892
|
+
content: {
|
|
2893
|
+
"application/json": components["schemas"]["ProblemDetails"];
|
|
2894
|
+
};
|
|
2895
|
+
};
|
|
2896
|
+
/** @description Internal Server Error */
|
|
2897
|
+
500: {
|
|
2898
|
+
headers: {
|
|
2899
|
+
[name: string]: unknown;
|
|
2900
|
+
};
|
|
2901
|
+
content?: never;
|
|
2902
|
+
};
|
|
2903
|
+
/** @description Service Unavailable */
|
|
2904
|
+
503: {
|
|
2880
2905
|
headers: {
|
|
2881
2906
|
[name: string]: unknown;
|
|
2882
2907
|
};
|
|
@@ -7825,6 +7850,13 @@ export interface components {
|
|
|
7825
7850
|
[key: string]: string;
|
|
7826
7851
|
} | null;
|
|
7827
7852
|
};
|
|
7853
|
+
ValidateGraphResponse: {
|
|
7854
|
+
valid?: boolean;
|
|
7855
|
+
mermaid?: string | null;
|
|
7856
|
+
nodes?: string[] | null;
|
|
7857
|
+
edges?: string[][] | null;
|
|
7858
|
+
errors?: components["schemas"]["ValidationError"][] | null;
|
|
7859
|
+
};
|
|
7828
7860
|
ValidateRequest: {
|
|
7829
7861
|
tool_name?: string | null;
|
|
7830
7862
|
credential_type?: string | null;
|
|
@@ -7833,6 +7865,17 @@ export interface components {
|
|
|
7833
7865
|
raw_config?: unknown;
|
|
7834
7866
|
test_mode?: boolean;
|
|
7835
7867
|
};
|
|
7868
|
+
/**
|
|
7869
|
+
* @description Validation error from graph validation.
|
|
7870
|
+
* Aligned with Data Plane validator output (RFC 6901 JSON Pointer paths).
|
|
7871
|
+
*/
|
|
7872
|
+
ValidationError: {
|
|
7873
|
+
code?: string | null;
|
|
7874
|
+
message?: string | null;
|
|
7875
|
+
path?: string | null;
|
|
7876
|
+
node_id?: string | null;
|
|
7877
|
+
severity?: string | null;
|
|
7878
|
+
};
|
|
7836
7879
|
VectorQueryRequest: {
|
|
7837
7880
|
query?: string | null;
|
|
7838
7881
|
/** Format: int32 */
|