@soyio/soyio-widget 2.19.0 → 2.20.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 +21 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +527 -506
- package/dist/index.umd.cjs +14 -14
- package/package.json +1 -1
- package/src/schemas/config.schema.json +28 -0
package/package.json
CHANGED
|
@@ -553,6 +553,12 @@
|
|
|
553
553
|
"onReady": {
|
|
554
554
|
"$comment": "() => void"
|
|
555
555
|
},
|
|
556
|
+
"redecOperationIds": {
|
|
557
|
+
"items": {
|
|
558
|
+
"$ref": "#/definitions/RedecOperationId"
|
|
559
|
+
},
|
|
560
|
+
"type": "array"
|
|
561
|
+
},
|
|
556
562
|
"requestReference": {
|
|
557
563
|
"type": "string"
|
|
558
564
|
}
|
|
@@ -633,6 +639,12 @@
|
|
|
633
639
|
"onReady": {
|
|
634
640
|
"$comment": "() => void"
|
|
635
641
|
},
|
|
642
|
+
"redecOperationIds": {
|
|
643
|
+
"items": {
|
|
644
|
+
"$ref": "#/definitions/RedecOperationId"
|
|
645
|
+
},
|
|
646
|
+
"type": "array"
|
|
647
|
+
},
|
|
636
648
|
"requestReference": {
|
|
637
649
|
"type": "string"
|
|
638
650
|
},
|
|
@@ -663,6 +675,22 @@
|
|
|
663
675
|
],
|
|
664
676
|
"type": "string"
|
|
665
677
|
},
|
|
678
|
+
"RedecOperationId": {
|
|
679
|
+
"additionalProperties": false,
|
|
680
|
+
"properties": {
|
|
681
|
+
"id": {
|
|
682
|
+
"type": "string"
|
|
683
|
+
},
|
|
684
|
+
"label": {
|
|
685
|
+
"type": "string"
|
|
686
|
+
}
|
|
687
|
+
},
|
|
688
|
+
"required": [
|
|
689
|
+
"id",
|
|
690
|
+
"label"
|
|
691
|
+
],
|
|
692
|
+
"type": "object"
|
|
693
|
+
},
|
|
666
694
|
"SoyioAppearance": {
|
|
667
695
|
"additionalProperties": false,
|
|
668
696
|
"properties": {
|