Skip to content

Commit 70d9b74

Browse files
author
github-actions
committed
Update API specifications with fern api update
1 parent 323f09f commit 70d9b74

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

fern/apis/api/openapi.json

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7327,6 +7327,19 @@
73277327
"minimum": 0,
73287328
"maximum": 10,
73297329
"example": 1
7330+
},
7331+
"excludedStatusCodes": {
7332+
"description": "This is the excluded status codes. If the response status code is in this list, the request will not be retried.\nBy default, the request will be retried for any non-2xx status code.",
7333+
"example": [
7334+
400,
7335+
401,
7336+
403,
7337+
404
7338+
],
7339+
"type": "array",
7340+
"items": {
7341+
"type": "object"
7342+
}
73307343
}
73317344
},
73327345
"required": [
@@ -25887,6 +25900,22 @@
2588725900
"SquadMemberDTO": {
2588825901
"type": "object",
2588925902
"properties": {
25903+
"assistantDestinations": {
25904+
"type": "array",
25905+
"description": "These are the other assistants that this assistant can transfer or handoff to.\n\nSupports both:\n- TransferDestinationAssistant: For transfer call tool (legacy)\n- HandoffDestinationAssistant: For handoff tool (recommended)\n\nIf the assistant already has transfer call or handoff tools, these destinations are just appended to existing ones.",
25906+
"items": {
25907+
"oneOf": [
25908+
{
25909+
"$ref": "#/components/schemas/TransferDestinationAssistant",
25910+
"title": "Transfer Destination"
25911+
},
25912+
{
25913+
"$ref": "#/components/schemas/HandoffDestinationAssistant",
25914+
"title": "Handoff Destination"
25915+
}
25916+
]
25917+
}
25918+
},
2589025919
"assistantId": {
2589125920
"type": "string",
2589225921
"nullable": true,
@@ -25907,13 +25936,6 @@
2590725936
"$ref": "#/components/schemas/AssistantOverrides"
2590825937
}
2590925938
]
25910-
},
25911-
"assistantDestinations": {
25912-
"description": "These are the others assistants that this assistant can transfer to.\n\nIf the assistant already has transfer call tool, these destinations are just appended to existing ones.",
25913-
"type": "array",
25914-
"items": {
25915-
"$ref": "#/components/schemas/TransferDestinationAssistant"
25916-
}
2591725939
}
2591825940
}
2591925941
},

0 commit comments

Comments
 (0)