@contentful/experiences-core 1.34.1-beta.0 → 1.34.1-dev-20250305T1630-a40e5df.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,13 +1233,11 @@ 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
- .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
- }))
1236
+ .object({
1237
+ path: z.string(),
1238
+ type: z.literal('BoundValue'),
1239
+ contentType: z.string(),
1240
+ })
1243
1241
  .optional(),
1244
1242
  contentTypes: z.record(z.string(), z.any()),
1245
1243
  });