@contentful/experiences-visual-editor-react 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 +14 -10
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +14 -10
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/renderApp.js
CHANGED
|
@@ -43608,11 +43608,13 @@ const VariableMappingsSchema$1 = z.record(propertyKeySchema$1, VariableMappingSc
|
|
|
43608
43608
|
// https://contentful.atlassian.net/browse/LUMOS-523
|
|
43609
43609
|
const PatternPropertyDefinitionSchema$1 = z.object({
|
|
43610
43610
|
defaultValue: z
|
|
43611
|
-
.object({
|
|
43612
|
-
|
|
43613
|
-
|
|
43614
|
-
|
|
43615
|
-
|
|
43611
|
+
.record(z.string(), z.object({
|
|
43612
|
+
sys: z.object({
|
|
43613
|
+
type: z.literal('Link'),
|
|
43614
|
+
id: z.string(),
|
|
43615
|
+
linkType: z.enum(['Entry']),
|
|
43616
|
+
}),
|
|
43617
|
+
}))
|
|
43616
43618
|
.optional(),
|
|
43617
43619
|
contentTypes: z.record(z.string(), z.any()),
|
|
43618
43620
|
});
|
|
@@ -58339,11 +58341,13 @@ const VariableMappingsSchema = z.record(propertyKeySchema, VariableMappingSchema
|
|
|
58339
58341
|
// https://contentful.atlassian.net/browse/LUMOS-523
|
|
58340
58342
|
const PatternPropertyDefinitionSchema = z.object({
|
|
58341
58343
|
defaultValue: z
|
|
58342
|
-
.object({
|
|
58343
|
-
|
|
58344
|
-
|
|
58345
|
-
|
|
58346
|
-
|
|
58344
|
+
.record(z.string(), z.object({
|
|
58345
|
+
sys: z.object({
|
|
58346
|
+
type: z.literal('Link'),
|
|
58347
|
+
id: z.string(),
|
|
58348
|
+
linkType: z.enum(['Entry']),
|
|
58349
|
+
}),
|
|
58350
|
+
}))
|
|
58347
58351
|
.optional(),
|
|
58348
58352
|
contentTypes: z.record(z.string(), z.any()),
|
|
58349
58353
|
});
|