@contentful/experiences-visual-editor-react 1.37.3-dev-20250523T0645-49fc5b0.0 → 1.38.0-beta.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 -2
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +14 -2
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/renderApp.js
CHANGED
|
@@ -43300,7 +43300,13 @@ const PatternPropertyDefinitionSchema$1 = z.object({
|
|
|
43300
43300
|
}),
|
|
43301
43301
|
}))
|
|
43302
43302
|
.optional(),
|
|
43303
|
-
contentTypes: z.record(z.string(), z.
|
|
43303
|
+
contentTypes: z.record(z.string(), z.object({
|
|
43304
|
+
sys: z.object({
|
|
43305
|
+
type: z.literal('Link'),
|
|
43306
|
+
id: z.string(),
|
|
43307
|
+
linkType: z.enum(['ContentType']),
|
|
43308
|
+
}),
|
|
43309
|
+
})),
|
|
43304
43310
|
});
|
|
43305
43311
|
const PatternPropertyDefinitionsSchema$1 = z.record(propertyKeySchema$1, PatternPropertyDefinitionSchema$1);
|
|
43306
43312
|
// TODO: finalize schema structure before release
|
|
@@ -58376,7 +58382,13 @@ const PatternPropertyDefinitionSchema = z.object({
|
|
|
58376
58382
|
}),
|
|
58377
58383
|
}))
|
|
58378
58384
|
.optional(),
|
|
58379
|
-
contentTypes: z.record(z.string(), z.
|
|
58385
|
+
contentTypes: z.record(z.string(), z.object({
|
|
58386
|
+
sys: z.object({
|
|
58387
|
+
type: z.literal('Link'),
|
|
58388
|
+
id: z.string(),
|
|
58389
|
+
linkType: z.enum(['ContentType']),
|
|
58390
|
+
}),
|
|
58391
|
+
})),
|
|
58380
58392
|
});
|
|
58381
58393
|
const PatternPropertyDefinitionsSchema = z.record(propertyKeySchema, PatternPropertyDefinitionSchema);
|
|
58382
58394
|
// TODO: finalize schema structure before release
|