@soyio/soyio-widget 3.3.0 → 3.4.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/README.md +4 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +431 -429
- package/dist/index.umd.cjs +23 -23
- package/package.json +1 -1
- package/src/schemas/config.schema.json +15 -1
package/package.json
CHANGED
|
@@ -572,6 +572,10 @@
|
|
|
572
572
|
"isSandbox": {
|
|
573
573
|
"type": "boolean"
|
|
574
574
|
},
|
|
575
|
+
"metadata": {
|
|
576
|
+
"additionalProperties": {},
|
|
577
|
+
"type": "object"
|
|
578
|
+
},
|
|
575
579
|
"onEvent": {
|
|
576
580
|
"$comment": "(event: TEvent) => void",
|
|
577
581
|
"properties": {
|
|
@@ -594,6 +598,9 @@
|
|
|
594
598
|
"onReady": {
|
|
595
599
|
"$comment": "() => void"
|
|
596
600
|
},
|
|
601
|
+
"origin": {
|
|
602
|
+
"type": "string"
|
|
603
|
+
},
|
|
597
604
|
"redecOperationIds": {
|
|
598
605
|
"items": {
|
|
599
606
|
"$ref": "#/definitions/RedecOperationId"
|
|
@@ -730,6 +737,10 @@
|
|
|
730
737
|
"isSandbox": {
|
|
731
738
|
"type": "boolean"
|
|
732
739
|
},
|
|
740
|
+
"metadata": {
|
|
741
|
+
"additionalProperties": {},
|
|
742
|
+
"type": "object"
|
|
743
|
+
},
|
|
733
744
|
"onEvent": {
|
|
734
745
|
"$comment": "(event: TEvent) => void",
|
|
735
746
|
"properties": {
|
|
@@ -752,6 +763,9 @@
|
|
|
752
763
|
"onReady": {
|
|
753
764
|
"$comment": "() => void"
|
|
754
765
|
},
|
|
766
|
+
"origin": {
|
|
767
|
+
"type": "string"
|
|
768
|
+
},
|
|
755
769
|
"redecOperationIds": {
|
|
756
770
|
"items": {
|
|
757
771
|
"$ref": "#/definitions/RedecOperationId"
|
|
@@ -2990,4 +3004,4 @@
|
|
|
2990
3004
|
"type": "string"
|
|
2991
3005
|
}
|
|
2992
3006
|
}
|
|
2993
|
-
}
|
|
3007
|
+
}
|