mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
updated generated files
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
10
autogpt_platform/frontend/src/app/api/__generated__/models/postV1StopGraphExecution200.ts
generated
Normal file
10
autogpt_platform/frontend/src/app/api/__generated__/models/postV1StopGraphExecution200.ts
generated
Normal 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;
|
||||
@@ -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"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user