@contentful/experiences-components-react 1.42.0-prerelease-20250627T1335-d74dad7.0 → 1.42.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 +7 -11
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1371,18 +1371,14 @@ const VariableMappingSchema = z.object({
|
|
|
1371
1371
|
// TODO: finalize schema structure before release
|
|
1372
1372
|
// https://contentful.atlassian.net/browse/LUMOS-523
|
|
1373
1373
|
const ParameterDefinitionSchema = z.object({
|
|
1374
|
-
|
|
1375
|
-
.
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
type: z.literal('Link'),
|
|
1381
|
-
id: z.string(),
|
|
1382
|
-
linkType: z.enum(['Entry']),
|
|
1383
|
-
}),
|
|
1374
|
+
defaultValue: z
|
|
1375
|
+
.record(z.string(), z.object({
|
|
1376
|
+
sys: z.object({
|
|
1377
|
+
type: z.literal('Link'),
|
|
1378
|
+
id: z.string(),
|
|
1379
|
+
linkType: z.enum(['Entry']),
|
|
1384
1380
|
}),
|
|
1385
|
-
})
|
|
1381
|
+
}))
|
|
1386
1382
|
.optional(),
|
|
1387
1383
|
contentTypes: z.record(z.string(), z.object({
|
|
1388
1384
|
sys: z.object({
|