@contentful/experiences-core 3.4.1-dev-20250901T1444-72c17a2.0 → 3.5.0-dev-20250902T0640-ab0b512.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -42,9 +42,9 @@ declare class EntityStore extends EntityStoreBase {
42
42
  };
43
43
  } | undefined;
44
44
  passToNodes?: {
45
+ prebindingId: string;
45
46
  parameterId: string;
46
47
  nodeId: string;
47
- prebindingId: string;
48
48
  }[] | undefined;
49
49
  }>;
50
50
  get experienceEntryFields(): ExperienceFields | undefined;
package/dist/index.js CHANGED
@@ -1007,6 +1007,7 @@ const BreakpointSchema = z
1007
1007
  const BaseComponentTreeNodeSchema = z.object({
1008
1008
  id: ComponentTreeNodeIdSchema.optional(),
1009
1009
  definitionId: DefinitionPropertyKeySchema,
1010
+ prebindingId: z.string().optional(),
1010
1011
  displayName: z.string().optional(),
1011
1012
  slotId: z.string().optional(),
1012
1013
  variables: z.record(propertyKeySchema, ComponentPropertyValueSchema),