@soyio/soyio-widget 2.23.0 → 2.25.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soyio/soyio-widget",
3
- "version": "2.23.0",
3
+ "version": "2.25.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -474,6 +474,12 @@
474
474
  4
475
475
  ],
476
476
  "type": "number"
477
+ },
478
+ "showConsentManagementHeader": {
479
+ "type": "boolean"
480
+ },
481
+ "showHeader": {
482
+ "type": "boolean"
477
483
  }
478
484
  },
479
485
  "type": "object"
@@ -495,6 +495,9 @@
495
495
  "companyId": {
496
496
  "type": "string"
497
497
  },
498
+ "consentManagement": {
499
+ "$ref": "#/definitions/PrivacyCenterConsentManagementConfig"
500
+ },
498
501
  "consentMode": {
499
502
  "enum": [
500
503
  "immediate",
@@ -505,6 +508,9 @@
505
508
  "consentRetentionPeriod": {
506
509
  "type": "string"
507
510
  },
511
+ "content": {
512
+ "$ref": "#/definitions/PrivacyCenterContentConfig"
513
+ },
508
514
  "dataSubjects": {
509
515
  "items": {
510
516
  "$ref": "#/definitions/DataSubject"
@@ -547,6 +553,9 @@
547
553
  "groupConsentsByScope": {
548
554
  "type": "boolean"
549
555
  },
556
+ "header": {
557
+ "$ref": "#/definitions/PrivacyCenterHeaderCopyConfig"
558
+ },
550
559
  "isSandbox": {
551
560
  "type": "boolean"
552
561
  },
@@ -581,6 +590,39 @@
581
590
  "requestReference": {
582
591
  "type": "string"
583
592
  },
593
+ "rightExamples": {
594
+ "additionalProperties": false,
595
+ "properties": {
596
+ "access": {
597
+ "type": "string"
598
+ },
599
+ "opposition": {
600
+ "type": "string"
601
+ },
602
+ "portability": {
603
+ "type": "string"
604
+ },
605
+ "rectification": {
606
+ "type": "string"
607
+ },
608
+ "redec_cancellation": {
609
+ "type": "string"
610
+ },
611
+ "redec_complementation": {
612
+ "type": "string"
613
+ },
614
+ "redec_rectification": {
615
+ "type": "string"
616
+ },
617
+ "redec_update": {
618
+ "type": "string"
619
+ },
620
+ "suppression": {
621
+ "type": "string"
622
+ }
623
+ },
624
+ "type": "object"
625
+ },
584
626
  "showBatchConsentConfirmation": {
585
627
  "type": "boolean"
586
628
  }
@@ -600,6 +642,9 @@
600
642
  "appearance": {
601
643
  "$ref": "#/definitions/SoyioAppearance"
602
644
  },
645
+ "consentManagement": {
646
+ "$ref": "#/definitions/PrivacyCenterConsentManagementConfig"
647
+ },
603
648
  "consentMode": {
604
649
  "enum": [
605
650
  "immediate",
@@ -610,6 +655,9 @@
610
655
  "consentRetentionPeriod": {
611
656
  "type": "string"
612
657
  },
658
+ "content": {
659
+ "$ref": "#/definitions/PrivacyCenterContentConfig"
660
+ },
613
661
  "dataSubjects": {
614
662
  "items": {
615
663
  "$ref": "#/definitions/DataSubject"
@@ -652,6 +700,9 @@
652
700
  "groupConsentsByScope": {
653
701
  "type": "boolean"
654
702
  },
703
+ "header": {
704
+ "$ref": "#/definitions/PrivacyCenterHeaderCopyConfig"
705
+ },
655
706
  "isSandbox": {
656
707
  "type": "boolean"
657
708
  },
@@ -686,6 +737,39 @@
686
737
  "requestReference": {
687
738
  "type": "string"
688
739
  },
740
+ "rightExamples": {
741
+ "additionalProperties": false,
742
+ "properties": {
743
+ "access": {
744
+ "type": "string"
745
+ },
746
+ "opposition": {
747
+ "type": "string"
748
+ },
749
+ "portability": {
750
+ "type": "string"
751
+ },
752
+ "rectification": {
753
+ "type": "string"
754
+ },
755
+ "redec_cancellation": {
756
+ "type": "string"
757
+ },
758
+ "redec_complementation": {
759
+ "type": "string"
760
+ },
761
+ "redec_rectification": {
762
+ "type": "string"
763
+ },
764
+ "redec_update": {
765
+ "type": "string"
766
+ },
767
+ "suppression": {
768
+ "type": "string"
769
+ }
770
+ },
771
+ "type": "object"
772
+ },
689
773
  "sessionToken": {
690
774
  "type": "string"
691
775
  },
@@ -701,6 +785,105 @@
701
785
  }
702
786
  ]
703
787
  },
788
+ "PrivacyCenterConsentManagementConfig": {
789
+ "additionalProperties": false,
790
+ "properties": {
791
+ "scopeGroups": {
792
+ "items": {
793
+ "$ref": "#/definitions/PrivacyCenterConsentManagementScopeGroupConfig"
794
+ },
795
+ "minItems": 1,
796
+ "type": "array"
797
+ }
798
+ },
799
+ "type": "object"
800
+ },
801
+ "PrivacyCenterConsentManagementCopyConfig": {
802
+ "additionalProperties": false,
803
+ "properties": {
804
+ "header": {
805
+ "$ref": "#/definitions/PrivacyCenterHeaderCopyConfig"
806
+ }
807
+ },
808
+ "type": "object"
809
+ },
810
+ "PrivacyCenterConsentManagementScopeGroupConfig": {
811
+ "additionalProperties": false,
812
+ "properties": {
813
+ "scopes": {
814
+ "items": {
815
+ "$ref": "#/definitions/PrivacyCenterScopeReference"
816
+ },
817
+ "minItems": 1,
818
+ "type": "array"
819
+ },
820
+ "title": {
821
+ "type": "string"
822
+ }
823
+ },
824
+ "required": [
825
+ "title",
826
+ "scopes"
827
+ ],
828
+ "type": "object"
829
+ },
830
+ "PrivacyCenterContentConfig": {
831
+ "additionalProperties": false,
832
+ "properties": {
833
+ "consentManagement": {
834
+ "$ref": "#/definitions/PrivacyCenterConsentManagementCopyConfig"
835
+ },
836
+ "header": {
837
+ "$ref": "#/definitions/PrivacyCenterHeaderCopyConfig"
838
+ },
839
+ "rightExamples": {
840
+ "additionalProperties": false,
841
+ "properties": {
842
+ "access": {
843
+ "type": "string"
844
+ },
845
+ "opposition": {
846
+ "type": "string"
847
+ },
848
+ "portability": {
849
+ "type": "string"
850
+ },
851
+ "rectification": {
852
+ "type": "string"
853
+ },
854
+ "redec_cancellation": {
855
+ "type": "string"
856
+ },
857
+ "redec_complementation": {
858
+ "type": "string"
859
+ },
860
+ "redec_rectification": {
861
+ "type": "string"
862
+ },
863
+ "redec_update": {
864
+ "type": "string"
865
+ },
866
+ "suppression": {
867
+ "type": "string"
868
+ }
869
+ },
870
+ "type": "object"
871
+ }
872
+ },
873
+ "type": "object"
874
+ },
875
+ "PrivacyCenterHeaderCopyConfig": {
876
+ "additionalProperties": false,
877
+ "properties": {
878
+ "description": {
879
+ "type": "string"
880
+ },
881
+ "title": {
882
+ "type": "string"
883
+ }
884
+ },
885
+ "type": "object"
886
+ },
704
887
  "PrivacyCenterRight": {
705
888
  "enum": [
706
889
  "arsop",
@@ -708,6 +891,26 @@
708
891
  ],
709
892
  "type": "string"
710
893
  },
894
+ "PrivacyCenterScopeReference": {
895
+ "additionalProperties": false,
896
+ "properties": {
897
+ "scopeId": {
898
+ "type": "string"
899
+ },
900
+ "scopeType": {
901
+ "enum": [
902
+ "product",
903
+ "branch"
904
+ ],
905
+ "type": "string"
906
+ }
907
+ },
908
+ "required": [
909
+ "scopeType",
910
+ "scopeId"
911
+ ],
912
+ "type": "object"
913
+ },
711
914
  "PrivacyManagerFeature": {
712
915
  "enum": [
713
916
  "DataSubjectRequest",
@@ -816,6 +1019,12 @@
816
1019
  4
817
1020
  ],
818
1021
  "type": "number"
1022
+ },
1023
+ "showConsentManagementHeader": {
1024
+ "type": "boolean"
1025
+ },
1026
+ "showHeader": {
1027
+ "type": "boolean"
819
1028
  }
820
1029
  },
821
1030
  "type": "object"