Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -15580,6 +15580,20 @@
"clientSecret"
]
},
"Oauth2AuthenticationSession": {
"type": "object",
"properties": {
"accessToken": {
"type": "string",
"description": "This is the OAuth2 access token."
},
"expiresAt": {
"format": "date-time",
"type": "string",
"description": "This is the OAuth2 access token expiration."
}
}
},
"CustomLLMCredential": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -15620,6 +15634,14 @@
"type": "string",
"description": "This is the ISO 8601 date-time string of when the assistant was last updated."
},
"authenticationSession": {
"description": "This is the authentication session for the credential. Available for credentials that have an authentication plan.",
"allOf": [
{
"$ref": "#/components/schemas/Oauth2AuthenticationSession"
}
]
},
"name": {
"type": "string",
"description": "This is the name of credential. This is just for your reference.",
Expand Down Expand Up @@ -16928,6 +16950,14 @@
"type": "string",
"description": "This is the ISO 8601 date-time string of when the assistant was last updated."
},
"authenticationSession": {
"description": "This is the authentication session for the credential. Available for credentials that have an authentication plan.",
"allOf": [
{
"$ref": "#/components/schemas/Oauth2AuthenticationSession"
}
]
},
"name": {
"type": "string",
"description": "This is the name of credential. This is just for your reference.",
Expand All @@ -16941,7 +16971,8 @@
"id",
"orgId",
"createdAt",
"updatedAt"
"updatedAt",
"authenticationSession"
]
},
"XAiCredential": {
Expand Down
Loading