Skip to content

Commit 3ec017e

Browse files
github-actions[bot]github-actions
andauthored
Update API specifications with fern api update (#212)
Co-authored-by: github-actions <github-actions@github.com>
1 parent 2b9d858 commit 3ec017e

File tree

1 file changed

+162
-0
lines changed

1 file changed

+162
-0
lines changed

fern/apis/v1/openapi/openapi.json

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12866,6 +12866,82 @@
1286612866
}
1286712867
}
1286812868
},
12869+
"/projects/key/{projectKey}": {
12870+
"get": {
12871+
"tags": [
12872+
"Projects"
12873+
],
12874+
"summary": "Returns the project with the specified key.",
12875+
"description": "\r\n\r\n<Check title=\"Required Permissions\" icon=\"key\">Any authenticated user.</Check>",
12876+
"operationId": "GetProjectsKeyByProjectKey",
12877+
"parameters": [
12878+
{
12879+
"name": "projectKey",
12880+
"in": "path",
12881+
"description": "The project key to lookup.",
12882+
"required": true,
12883+
"schema": {
12884+
"type": "string"
12885+
}
12886+
}
12887+
],
12888+
"responses": {
12889+
"200": {
12890+
"description": "OK",
12891+
"content": {
12892+
"application/json": {
12893+
"schema": {
12894+
"$ref": "#/components/schemas/Project"
12895+
}
12896+
}
12897+
}
12898+
},
12899+
"400": {
12900+
"description": "Bad Request",
12901+
"content": {
12902+
"application/json": {
12903+
"schema": {
12904+
"$ref": "#/components/schemas/ErrorResponse"
12905+
}
12906+
}
12907+
}
12908+
},
12909+
"401": {
12910+
"description": "Unauthorized",
12911+
"content": {
12912+
"application/json": {
12913+
"schema": {
12914+
"$ref": "#/components/schemas/ErrorResponse"
12915+
}
12916+
}
12917+
}
12918+
},
12919+
"404": {
12920+
"description": "Not Found",
12921+
"content": {
12922+
"application/json": {
12923+
"schema": {
12924+
"$ref": "#/components/schemas/ErrorResponse"
12925+
}
12926+
}
12927+
}
12928+
}
12929+
},
12930+
"security": [
12931+
{
12932+
"oauth2": [
12933+
"full_access"
12934+
]
12935+
}
12936+
],
12937+
"x-api-versions": [
12938+
"v1"
12939+
],
12940+
"x-access": {
12941+
"any": "true"
12942+
}
12943+
}
12944+
},
1286912945
"/projects/projecttasks/tags": {
1287012946
"get": {
1287112947
"tags": [
@@ -28672,6 +28748,82 @@
2867228748
}
2867328749
}
2867428750
},
28751+
"/tasks/key/{taskIdentifier}": {
28752+
"get": {
28753+
"tags": [
28754+
"Tasks"
28755+
],
28756+
"summary": "Returns the task with the specified key.",
28757+
"description": "\r\n\r\n<Check title=\"Required Permissions\" icon=\"key\">Any authenticated user.</Check>",
28758+
"operationId": "GetTasksKeyByTaskIdentifier",
28759+
"parameters": [
28760+
{
28761+
"name": "taskIdentifier",
28762+
"in": "path",
28763+
"description": "The task identifier to lookup (for example, KEY-123).",
28764+
"required": true,
28765+
"schema": {
28766+
"type": "string"
28767+
}
28768+
}
28769+
],
28770+
"responses": {
28771+
"200": {
28772+
"description": "OK",
28773+
"content": {
28774+
"application/json": {
28775+
"schema": {
28776+
"$ref": "#/components/schemas/TaskModel"
28777+
}
28778+
}
28779+
}
28780+
},
28781+
"400": {
28782+
"description": "Bad Request",
28783+
"content": {
28784+
"application/json": {
28785+
"schema": {
28786+
"$ref": "#/components/schemas/ErrorResponse"
28787+
}
28788+
}
28789+
}
28790+
},
28791+
"401": {
28792+
"description": "Unauthorized",
28793+
"content": {
28794+
"application/json": {
28795+
"schema": {
28796+
"$ref": "#/components/schemas/ErrorResponse"
28797+
}
28798+
}
28799+
}
28800+
},
28801+
"404": {
28802+
"description": "Not Found",
28803+
"content": {
28804+
"application/json": {
28805+
"schema": {
28806+
"$ref": "#/components/schemas/ErrorResponse"
28807+
}
28808+
}
28809+
}
28810+
}
28811+
},
28812+
"security": [
28813+
{
28814+
"oauth2": [
28815+
"full_access"
28816+
]
28817+
}
28818+
],
28819+
"x-api-versions": [
28820+
"v1"
28821+
],
28822+
"x-access": {
28823+
"any": "true"
28824+
}
28825+
}
28826+
},
2867528827
"/tasks/settaskpriority": {
2867628828
"post": {
2867728829
"tags": [
@@ -42094,6 +42246,7 @@
4209442246
"email": {
4209542247
"type": "string",
4209642248
"description": "The email of the account.",
42249+
"format": "email",
4209742250
"nullable": true,
4209842251
"example": "carla.creative@ncnstn.com"
4209942252
},
@@ -42174,6 +42327,7 @@
4217442327
"email": {
4217542328
"type": "string",
4217642329
"description": "The email of the account.",
42330+
"format": "email",
4217742331
"nullable": true,
4217842332
"example": "carla.creative@ncnstn.com"
4217942333
},
@@ -53830,6 +53984,10 @@
5383053984
"type": "boolean",
5383153985
"description": "Whether the project template has an image in the files service."
5383253986
},
53987+
"copyImageToProjectOnCreation": {
53988+
"type": "boolean",
53989+
"description": "Whether the template image should be copied to the project during project creation.\nIf the template has no image, no image is copied.\nNo image is copied from the client."
53990+
},
5383353991
"projectTypeId": {
5383453992
"type": "string",
5383553993
"description": "The id of the project type.",
@@ -53888,6 +54046,10 @@
5388854046
"nullable": true,
5388954047
"example": "123e4567-e89b-12d3-a456-426614174000"
5389054048
},
54049+
"copyImageToProjectOnCreation": {
54050+
"type": "boolean",
54051+
"description": "Whether the template image should be copied to the project during project creation.\nIf the template has no image, no image is copied.\nNo image is copied from the client."
54052+
},
5389154053
"projectTypeId": {
5389254054
"type": "string",
5389354055
"description": "Project type id of the project template.",

0 commit comments

Comments
 (0)