Skip to content

Commit 0c2edfc

Browse files
retyping Record<string, string> to Record<string, unknown> wherever possible (#223)
1 parent af93e58 commit 0c2edfc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

fern/openapi-overrides.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1379,6 +1379,8 @@ components:
13791379
title: Custom atttributes
13801380
type: object
13811381
description: Custom data set for this data.
1382+
1383+
# change teammates.teammates to teammates.admins
13821384
conversation_teammates:
13831385
properties:
13841386
teammates: null
@@ -1391,6 +1393,20 @@ components:
13911393
required:
13921394
- type
13931395
- admins
1396+
1397+
# changing Record<string, string> to Record<string, unknown> wherever possible
1398+
company:
1399+
properties:
1400+
custom_attributes:
1401+
additionalProperties: true
1402+
create_or_update_company_request:
1403+
properties:
1404+
custom_attributes:
1405+
additionalProperties: true
1406+
visitor:
1407+
properties:
1408+
custom_attributes:
1409+
additionalProperties: true
13941410
securitySchemes:
13951411
bearerAuth:
13961412
x-fern-bearer:

0 commit comments

Comments
 (0)