fix: update ComponentType types to match API changes [DX-692]#2883
Merged
whitelisab merged 2 commits intomasterfrom Feb 23, 2026
Merged
fix: update ComponentType types to match API changes [DX-692]#2883whitelisab merged 2 commits intomasterfrom
whitelisab merged 2 commits intomasterfrom
Conversation
Contributor
michaelphamcf
left a comment
There was a problem hiding this comment.
Thanks for this! Just a few props I saw missing
b42ecaf to
5be8ef6
Compare
michaelphamcf
approved these changes
Feb 23, 2026
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.
Summary
This PR updates some types for the
ComponentTypeentity to reflect recent API changes.NOTE: The
componentType.getManymethod is listed as experimental.Description
Update the TypeScript types in
lib/entities/component-type.tsto align with recent changes to the ComponentType schema.ComponentTypeContentProperty: added optionaldefaultValue?: unknownfieldContentPropertyValue→ContentPropertyPointerValue: renamed to clarify this type represents pointer strings only ($contentProperties/…|$contentBindings/…); the correspondingcontentPropertiesfield onComponentNodeis now typed asContentPropertyPointerValue | unknownto reflect that non-pointer values are also validDesignPropertyPointerValue(new): adds$designProperties/${string}pointer type for design propertiesDesignPropertyValue: tightened from a loosestring | Record<…>to an explicit union ofManualDesignValue | DesignTokenValue | DesignPropertyPointerValue | Record<string, ManualDesignValue | DesignTokenValue | DesignPropertyPointerValue>, removing the bare string caseDataAssemblyLink(new): named type alias forLink<'DataAssembly'>ComponentTypeContentBindings: replaced explicitid/type/linkTypefields withDataAssemblyLink['sys'], deriving the link shape from the sharedLinktype rather than duplicating itComponentTypeProps: added optionaldataAssemblies?: DataAssemblyLink[]fieldMotivation and Context
PR Checklist
CONTRIBUTING.mdfile