Skip to content

Commit c6660f7

Browse files
docs: update documentation [skip ci]
1 parent c55a1eb commit c6660f7

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

fern/definition/openapi.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2027,7 +2027,7 @@
20272027
],
20282028
"summary": "Exchange White Label Oauth2 Code",
20292029
"description": "Complete the OAuth flow and create a source connection.\n\n<br/><br/>\n**This is the core endpoint that converts OAuth authorization codes into working\nsource connections.**<br/><br/>The OAuth credentials are obtained automatically\nfrom the authorization code - you do not need to provide auth_fields. The white\nlabel integration is automatically linked to the created source connection for\ntracking and branding purposes.",
2030-
"operationId": "exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_post",
2030+
"operationId": "exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_options",
20312031
"parameters": [
20322032
{
20332033
"name": "white_label_id",
@@ -2047,7 +2047,7 @@
20472047
"content": {
20482048
"application/json": {
20492049
"schema": {
2050-
"$ref": "#/components/schemas/Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_post"
2050+
"$ref": "#/components/schemas/Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_options"
20512051
}
20522052
}
20532053
}
@@ -2726,7 +2726,7 @@
27262726
"type": "object",
27272727
"title": "Body_create_credentials_from_authorization_code_source_connections__source_short_name__code_to_token_credentials_post"
27282728
},
2729-
"Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_post": {
2729+
"Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_options": {
27302730
"properties": {
27312731
"code": {
27322732
"type": "string",
@@ -2752,7 +2752,7 @@
27522752
"required": [
27532753
"code"
27542754
],
2755-
"title": "Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_post"
2755+
"title": "Body_exchange_white_label_oauth2_code_white_labels__white_label_id__oauth2_code_options"
27562756
},
27572757
"Body_run_source_connections__source_connection_id__run_post": {
27582758
"properties": {

fern/docs/pages/connectors/linear/main.mdx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,28 @@ metadata and content from the Linear API.
132132
| updated_at | Optional[datetime] | When the team was last updated |
133133
| member_count | Optional[int] | Number of members in the team |
134134

135+
</Accordion>
136+
<Accordion title="LinearCommentEntity">
137+
138+
Schema for Linear comment entities.
139+
140+
This entity represents a comment on a Linear issue, containing all relevant
141+
metadata and content from the Linear API.
142+
143+
| Field | Type | Description |
144+
|-------|------|-------------|
145+
| issue_id | str | ID of the issue this comment belongs to |
146+
| issue_identifier | str | Identifier of the issue (e.g., 'ENG-123') |
147+
| body | str | The content/body of the comment |
148+
| user_id | Optional[str] | ID of the user who created the comment |
149+
| user_name | Optional[str] | Name of the user who created the comment |
150+
| created_at | Optional[datetime] | When the comment was created |
151+
| updated_at | Optional[datetime] | When the comment was last updated |
152+
| team_id | Optional[str] | ID of the team this comment belongs to |
153+
| team_name | Optional[str] | Name of the team this comment belongs to |
154+
| project_id | Optional[str] | ID of the project this comment belongs to, if any |
155+
| project_name | Optional[str] | Name of the project this comment belongs to, if any |
156+
135157
</Accordion>
136158
<Accordion title="LinearUserEntity">
137159

0 commit comments

Comments
 (0)