@contentful/experiences-core 1.34.1-dev-20250305T1630-a40e5df.0 → 1.34.1-dev-20250305T1751-00bb629.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.
package/dist/index.js CHANGED
@@ -1233,11 +1233,13 @@ const VariableMappingsSchema = z.record(propertyKeySchema, VariableMappingSchema
1233
1233
  // https://contentful.atlassian.net/browse/LUMOS-523
1234
1234
  const PatternPropertyDefinitionSchema = z.object({
1235
1235
  defaultValue: z
1236
- .object({
1237
- path: z.string(),
1238
- type: z.literal('BoundValue'),
1239
- contentType: z.string(),
1240
- })
1236
+ .record(z.string(), z.object({
1237
+ sys: z.object({
1238
+ type: z.literal('Link'),
1239
+ id: z.string(),
1240
+ linkType: z.enum(['Entry']),
1241
+ }),
1242
+ }))
1241
1243
  .optional(),
1242
1244
  contentTypes: z.record(z.string(), z.any()),
1243
1245
  });