Convert Contact.owner_id to string in unstable API#479
Open
Conversation
Aligns Contact.owner_id field with Admin.id type (both now strings in Unstable version). Existing public versions (2.11-2.15) maintain integer type via versioning transformations. Updates Preview spec (descriptions/0/api.intercom.io.yaml): - Change Contact schema owner_id from type: integer to type: string - Update example from 123 to '123' This matches PR intercom/intercom#499855. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Contributor
|
2 more places to have this change: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why?
Aligns the
Contact.owner_idfield type withAdmin.idin the unstable API version. Both are now strings, improving type consistency across the API.How?
Updated the Preview specification to reflect the unstable API's new string type for
Contact.owner_id, while existing public versions (2.11–2.15) maintain integer type through versioning transformations.Generated with Claude Code