We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea0d57b commit e7057d9Copy full SHA for e7057d9
1 file changed
lib/entities/experience.ts
@@ -75,7 +75,10 @@ export type ExperienceLocalePublishPayload = { add: string[] } | { remove: strin
75
// Create payload — no sys, uses either componentTypeId (component-type-backed) or
76
// templateId (template-backed). The two fields are mutually exclusive.
77
export type CreateExperienceProps = ExperienceCommonProps &
78
- ({ componentTypeId: string; templateId?: never } | { templateId: string; componentTypeId?: never })
+ (
79
+ | { componentTypeId: string; templateId?: never }
80
+ | { templateId: string; componentTypeId?: never }
81
+ )
82
83
export type UpdateExperienceProps = ExperienceProps
84
0 commit comments