Skip to content

Commit a4e232b

Browse files
Merge branch 'main' into add-enum
2 parents 972b203 + 0c2edfc commit a4e232b

File tree

1 file changed

+32
-5
lines changed

1 file changed

+32
-5
lines changed

fern/openapi-overrides.yml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1391,11 +1391,6 @@ components:
13911391
type:
13921392
enum:
13931393
- avatar
1394-
conversation_teammates:
1395-
properties:
1396-
type:
1397-
enum:
1398-
- admin.list
13991394
create_article_request:
14001395
properties:
14011396
parent_type:
@@ -1444,6 +1439,38 @@ components:
14441439
type:
14451440
enum:
14461441
- visitor
1442+
1443+
# change teammates.teammates to teammates.admins
1444+
conversation_teammates:
1445+
properties:
1446+
type:
1447+
enum:
1448+
- admin.list
1449+
teammates: null
1450+
admins:
1451+
type: array
1452+
description: The list of teammates who participated in the conversation
1453+
(wrote at least one conversation part).
1454+
items:
1455+
"$ref": "#/components/schemas/reference"
1456+
required:
1457+
- type
1458+
- admins
1459+
1460+
# changing Record<string, string> to Record<string, unknown> wherever possible
1461+
company:
1462+
properties:
1463+
custom_attributes:
1464+
additionalProperties: true
1465+
create_or_update_company_request:
1466+
properties:
1467+
custom_attributes:
1468+
additionalProperties: true
1469+
visitor:
1470+
properties:
1471+
custom_attributes:
1472+
additionalProperties: true
1473+
14471474
securitySchemes:
14481475
bearerAuth:
14491476
x-fern-bearer:

0 commit comments

Comments
 (0)