mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
chore: generate
This commit is contained in:
parent
cb67465675
commit
34fa5de9c5
@ -2970,9 +2970,6 @@ export type SessionChildrenResponse = SessionChildrenResponses[keyof SessionChil
|
||||
export type SessionTodoData = {
|
||||
body?: never
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3011,9 +3008,6 @@ export type SessionInitData = {
|
||||
messageID: string
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3199,9 +3193,6 @@ export type SessionSummarizeData = {
|
||||
auto?: boolean
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3236,9 +3227,6 @@ export type SessionSummarizeResponse = SessionSummarizeResponses[keyof SessionSu
|
||||
export type SessionMessagesData = {
|
||||
body?: never
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3295,9 +3283,6 @@ export type SessionPromptData = {
|
||||
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3335,9 +3320,6 @@ export type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptRe
|
||||
export type SessionDeleteMessageData = {
|
||||
body?: never
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
/**
|
||||
* Message ID
|
||||
@ -3376,9 +3358,6 @@ export type SessionDeleteMessageResponse = SessionDeleteMessageResponses[keyof S
|
||||
export type SessionMessageData = {
|
||||
body?: never
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
/**
|
||||
* Message ID
|
||||
@ -3420,9 +3399,6 @@ export type SessionMessageResponse = SessionMessageResponses[keyof SessionMessag
|
||||
export type PartDeleteData = {
|
||||
body?: never
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
/**
|
||||
* Message ID
|
||||
@ -3465,9 +3441,6 @@ export type PartDeleteResponse = PartDeleteResponses[keyof PartDeleteResponses]
|
||||
export type PartUpdateData = {
|
||||
body?: Part
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
/**
|
||||
* Message ID
|
||||
@ -3528,9 +3501,6 @@ export type SessionPromptAsyncData = {
|
||||
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3580,9 +3550,6 @@ export type SessionCommandData = {
|
||||
}>
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
@ -3627,9 +3594,6 @@ export type SessionShellData = {
|
||||
command: string
|
||||
}
|
||||
path: {
|
||||
/**
|
||||
* Session ID
|
||||
*/
|
||||
sessionID: string
|
||||
}
|
||||
query?: {
|
||||
|
||||
@ -2066,7 +2066,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
@ -2231,10 +2232,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Get session todos",
|
||||
@ -2304,10 +2305,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Initialize session",
|
||||
@ -2461,7 +2462,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
@ -2530,7 +2532,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
@ -2728,10 +2731,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Summarize session",
|
||||
@ -2820,10 +2823,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
@ -2910,10 +2913,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Send message",
|
||||
@ -3064,10 +3067,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"in": "path",
|
||||
@ -3153,10 +3156,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"in": "path",
|
||||
@ -3232,10 +3235,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"in": "path",
|
||||
@ -3317,10 +3320,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"in": "path",
|
||||
@ -3413,10 +3416,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Send async message",
|
||||
@ -3548,10 +3551,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Send command",
|
||||
@ -3693,10 +3696,10 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true,
|
||||
"description": "Session ID"
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"summary": "Run shell command",
|
||||
@ -3793,7 +3796,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
@ -3882,7 +3886,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
}
|
||||
@ -3951,7 +3956,8 @@
|
||||
"in": "path",
|
||||
"name": "sessionID",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
@ -6306,7 +6312,7 @@
|
||||
"sessionID": {
|
||||
"description": "Session ID to navigate to",
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
"pattern": "^ses.*"
|
||||
}
|
||||
},
|
||||
"required": ["sessionID"]
|
||||
@ -7198,7 +7204,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"role": {
|
||||
"type": "string",
|
||||
@ -7438,7 +7445,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"role": {
|
||||
"type": "string",
|
||||
@ -7607,7 +7615,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -7625,7 +7634,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -7672,7 +7682,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -7715,7 +7726,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -7880,7 +7892,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8073,7 +8086,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8108,7 +8122,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8130,7 +8145,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8188,7 +8204,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8210,7 +8227,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8238,7 +8256,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8279,7 +8298,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8313,7 +8333,8 @@
|
||||
"type": "string"
|
||||
},
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8401,7 +8422,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8432,7 +8454,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"messageID": {
|
||||
"type": "string"
|
||||
@ -8518,7 +8541,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"requestID": {
|
||||
"type": "string"
|
||||
@ -8587,7 +8611,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"status": {
|
||||
"$ref": "#/components/schemas/SessionStatus"
|
||||
@ -8609,7 +8634,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
}
|
||||
},
|
||||
"required": ["sessionID"]
|
||||
@ -8723,7 +8749,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"requestID": {
|
||||
"type": "string"
|
||||
@ -8751,7 +8778,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"requestID": {
|
||||
"type": "string"
|
||||
@ -8773,7 +8801,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
}
|
||||
},
|
||||
"required": ["sessionID"]
|
||||
@ -8845,7 +8874,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"todos": {
|
||||
"type": "array",
|
||||
@ -8966,7 +8996,7 @@
|
||||
"sessionID": {
|
||||
"description": "Session ID to navigate to",
|
||||
"type": "string",
|
||||
"pattern": "^ses"
|
||||
"pattern": "^ses.*"
|
||||
}
|
||||
},
|
||||
"required": ["sessionID"]
|
||||
@ -9239,7 +9269,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"diff": {
|
||||
"type": "array",
|
||||
@ -9264,7 +9295,8 @@
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sessionID": {
|
||||
"type": "string"
|
||||
"type": "string",
|
||||
"pattern": "^ses.*"
|
||||
},
|
||||
"error": {
|
||||
"anyOf": [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user