From ed70d3b9734043b5f2cb23a4188fac7b0cba5411 Mon Sep 17 00:00:00 2001 From: Patrick Thornton Date: Wed, 12 Mar 2025 12:01:21 -0400 Subject: [PATCH 1/3] custom_attributes schema revert version --- fern/fern.config.json | 2 +- fern/openapi-overrides.yml | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/fern/fern.config.json b/fern/fern.config.json index 125dea6..4ba539d 100644 --- a/fern/fern.config.json +++ b/fern/fern.config.json @@ -1,4 +1,4 @@ { "organization": "intercom", "version": "0.46.20" -} \ No newline at end of file +} diff --git a/fern/openapi-overrides.yml b/fern/openapi-overrides.yml index 562b8be..5652b4c 100644 --- a/fern/openapi-overrides.yml +++ b/fern/openapi-overrides.yml @@ -1370,11 +1370,10 @@ components: required: - user_id merge_contacts_request: - properties: - from: - x-fern-property-name: lead_id - into: - x-fern-property-name: contact_id + custom_attributes: + title: Custom atttributes + type: object + description: Custom data set for this data. securitySchemes: bearerAuth: x-fern-bearer: From a8d2f04764ca0907c4c769d627a1d8fa1f8cfc57 Mon Sep 17 00:00:00 2001 From: Patrick Thornton Date: Wed, 12 Mar 2025 15:18:06 -0400 Subject: [PATCH 2/3] rename teammates.teammates to teammates.admins --- fern/openapi-overrides.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/fern/openapi-overrides.yml b/fern/openapi-overrides.yml index 5652b4c..c1bcafb 100644 --- a/fern/openapi-overrides.yml +++ b/fern/openapi-overrides.yml @@ -1374,6 +1374,18 @@ components: title: Custom atttributes type: object description: Custom data set for this data. + conversation_teammates: + properties: + teammates: null + admins: + type: array + description: The list of teammates who participated in the conversation + (wrote at least one conversation part). + items: + "$ref": "#/components/schemas/reference" + required: + - type + - admins securitySchemes: bearerAuth: x-fern-bearer: From e108da98830542c53c12f3abb723b789dcacf19a Mon Sep 17 00:00:00 2001 From: Patrick Thornton Date: Wed, 12 Mar 2025 15:22:10 -0400 Subject: [PATCH 3/3] restore dropped properties --- fern/openapi-overrides.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fern/openapi-overrides.yml b/fern/openapi-overrides.yml index c1bcafb..d4ee7a5 100644 --- a/fern/openapi-overrides.yml +++ b/fern/openapi-overrides.yml @@ -1370,6 +1370,11 @@ components: required: - user_id merge_contacts_request: + properties: + from: + x-fern-property-name: lead_id + into: + x-fern-property-name: contact_id custom_attributes: title: Custom atttributes type: object