@embeddable.com/sdk-react 2.2.10 → 2.2.11
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/lib/index.esm.js +2 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/validate/schema/componentMetaSchema.d.ts +12 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -474,6 +474,7 @@ const componentMetaSchema = zod.z
|
|
|
474
474
|
.object({
|
|
475
475
|
name: zod.z.string(),
|
|
476
476
|
type: embeddableTypeSchema,
|
|
477
|
+
array: zod.z.boolean().optional(),
|
|
477
478
|
label: zod.z.string().optional(),
|
|
478
479
|
})
|
|
479
480
|
.array()
|
|
@@ -486,6 +487,7 @@ const componentMetaSchema = zod.z
|
|
|
486
487
|
.object({
|
|
487
488
|
name: zod.z.string(),
|
|
488
489
|
type: embeddableTypeSchema,
|
|
490
|
+
array: zod.z.boolean().optional(),
|
|
489
491
|
defaultValue: zod.z.any().optional(),
|
|
490
492
|
inputs: zod.z.array(zod.z.string()).optional(),
|
|
491
493
|
events: zod.z
|