updated generated files

This commit is contained in:
SwiftyOS
2025-07-08 11:08:12 +02:00
parent 922150c7fa
commit c5dec20e0c
5 changed files with 38 additions and 5 deletions

View File

@@ -45,6 +45,8 @@ import type { HTTPValidationError } from "../../models/hTTPValidationError";
import type { PostV1ExecuteGraphAgentParams } from "../../models/postV1ExecuteGraphAgentParams";
import type { PostV1StopGraphExecution200 } from "../../models/postV1StopGraphExecution200";
import type { PostV1StopGraphExecutionsParams } from "../../models/postV1StopGraphExecutionsParams";
import type { SetGraphActiveVersion } from "../../models/setGraphActiveVersion";
@@ -1498,7 +1500,7 @@ export const usePostV1ExecuteGraphAgent = <
* @summary Stop graph execution
*/
export type postV1StopGraphExecutionResponse200 = {
data: GraphExecutionMeta;
data: PostV1StopGraphExecution200;
status: 200;
};

View File

@@ -5,8 +5,10 @@
* This server is used to execute agents that are created by the AutoGPT system.
* OpenAPI spec version: 0.1
*/
import type { LibraryAgentCredentialsInputSchemaAnyOf } from "./libraryAgentCredentialsInputSchemaAnyOf";
/**
* Input schema for credentials required by the agent
*/
export type LibraryAgentCredentialsInputSchema = { [key: string]: unknown };
export type LibraryAgentCredentialsInputSchema =
LibraryAgentCredentialsInputSchemaAnyOf | null;

View File

@@ -0,0 +1,11 @@
/**
* Generated by orval v7.10.0 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
* OpenAPI spec version: 0.1
*/
export type LibraryAgentCredentialsInputSchemaAnyOf = {
[key: string]: unknown;
};

View File

@@ -0,0 +1,10 @@
/**
* Generated by orval v7.10.0 🍺
* Do not edit manually.
* AutoGPT Agent Server
* This server is used to execute agents that are created by the AutoGPT system.
* OpenAPI spec version: 0.1
*/
import type { GraphExecutionMeta } from "./graphExecutionMeta";
export type PostV1StopGraphExecution200 = GraphExecutionMeta | null;

View File

@@ -1480,7 +1480,13 @@
"description": "Successful Response",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/GraphExecutionMeta" }
"schema": {
"anyOf": [
{ "$ref": "#/components/schemas/GraphExecutionMeta" },
{ "type": "null" }
],
"title": "Response Postv1Stop Graph Execution"
}
}
}
},
@@ -4667,8 +4673,10 @@
"title": "Input Schema"
},
"credentials_input_schema": {
"additionalProperties": true,
"type": "object",
"anyOf": [
{ "additionalProperties": true, "type": "object" },
{ "type": "null" }
],
"title": "Credentials Input Schema",
"description": "Input schema for credentials required by the agent"
},