@usercentrics/react-native-sdk 2.15.3 → 2.15.5
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/CHANGELOG.md +19 -0
- package/android/build.gradle +1 -1
- package/android/src/androidTest/java/com/usercentrics/reactnativemodule/RNUsercentricsModuleTest.kt +54 -3
- package/android/src/androidTest/java/com/usercentrics/reactnativemodule/mock/GetCMPDataMock.kt +99 -78
- package/android/src/main/java/com/usercentrics/reactnativeusercentrics/RNUsercentricsModule.kt +2 -2
- package/android/src/main/java/com/usercentrics/reactnativeusercentrics/extensions/UsercentricsCMPDataExtensions.kt +21 -5
- package/ios/Extensions/UsercentricsCMPData+Dict.swift +26 -9
- package/lib/models/UsercentricsLabels.d.ts +20 -5
- package/lib/models/UsercentricsLabels.js +20 -5
- package/lib/models/UsercentricsLabels.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
[Release Notes](https://docs.usercentrics.com/cmp_in_app_sdk/latest/about/history/)
|
|
2
2
|
|
|
3
|
+
### 2.15.5 - July 31, 2024
|
|
4
|
+
|
|
5
|
+
## Improvements
|
|
6
|
+
|
|
7
|
+
* Google Consent Mode: Enhanced implementation when integrating with the TCF framework
|
|
8
|
+
* Deprecating `copy` field from `UsercentricsLabels`
|
|
9
|
+
|
|
10
|
+
## Other Fixes
|
|
11
|
+
|
|
12
|
+
* Crash when invoking `showSecondLayer(...)` method without arguments
|
|
13
|
+
* Adding missing labels in `UsercentrisLabels` object
|
|
14
|
+
|
|
15
|
+
### 2.15.4 - July 17, 2024
|
|
16
|
+
|
|
17
|
+
## Other Fixes
|
|
18
|
+
|
|
19
|
+
* Rare crash when initializing the SDK with TCF configuration
|
|
20
|
+
* Unity Ads SDK Mediation adjusts
|
|
21
|
+
|
|
3
22
|
### 2.15.3 - June 24, 2024
|
|
4
23
|
|
|
5
24
|
## React Native Bug Fix
|
package/android/build.gradle
CHANGED
package/android/src/androidTest/java/com/usercentrics/reactnativemodule/RNUsercentricsModuleTest.kt
CHANGED
|
@@ -21,7 +21,6 @@ import com.usercentrics.sdk.services.tcf.TCFDecisionUILayer
|
|
|
21
21
|
import com.usercentrics.sdk.services.tcf.interfaces.TCFData
|
|
22
22
|
import com.usercentrics.sdk.v2.location.data.UsercentricsLocation
|
|
23
23
|
import com.usercentrics.sdk.v2.translation.data.LegalBasisLocalization
|
|
24
|
-
import io.mockk.InternalPlatformDsl.toArray
|
|
25
24
|
import io.mockk.every
|
|
26
25
|
import io.mockk.mockk
|
|
27
26
|
import io.mockk.verify
|
|
@@ -674,7 +673,7 @@ class RNUsercentricsModuleTest {
|
|
|
674
673
|
}
|
|
675
674
|
|
|
676
675
|
@Test
|
|
677
|
-
fun
|
|
676
|
+
fun testShowFirstLayerBannerSettingsObject() {
|
|
678
677
|
val usercentricsProxy = FakeUsercentricsProxy()
|
|
679
678
|
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
680
679
|
val module =
|
|
@@ -686,7 +685,33 @@ class RNUsercentricsModuleTest {
|
|
|
686
685
|
}
|
|
687
686
|
|
|
688
687
|
@Test
|
|
689
|
-
fun
|
|
688
|
+
fun testShowFirstLayerWithNullBannerSettings() {
|
|
689
|
+
val usercentricsProxy = FakeUsercentricsProxy()
|
|
690
|
+
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
691
|
+
val module =
|
|
692
|
+
RNUsercentricsModule(contextMock, usercentricsProxy, ReactContextProviderMock())
|
|
693
|
+
val promise = FakePromise()
|
|
694
|
+
module.showFirstLayer(null, promise)
|
|
695
|
+
promise.await()
|
|
696
|
+
assertEquals(null, usercentricsProxy.showFirstLayerBannerSettings)
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
@Test
|
|
700
|
+
fun testShowFirstLayerWithEmptyBannerSettingsObject() {
|
|
701
|
+
val bannerSettings = emptyMap<String, String>().toWritableMap()
|
|
702
|
+
|
|
703
|
+
val usercentricsProxy = FakeUsercentricsProxy()
|
|
704
|
+
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
705
|
+
val module =
|
|
706
|
+
RNUsercentricsModule(contextMock, usercentricsProxy, ReactContextProviderMock())
|
|
707
|
+
val promise = FakePromise()
|
|
708
|
+
module.showFirstLayer(bannerSettings, promise)
|
|
709
|
+
promise.await()
|
|
710
|
+
assertEquals(BannerSettings(), usercentricsProxy.showFirstLayerBannerSettings)
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
@Test
|
|
714
|
+
fun testShowSecondLayerWithBannerSettingsObject() {
|
|
690
715
|
val usercentricsProxy = FakeUsercentricsProxy()
|
|
691
716
|
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
692
717
|
val module =
|
|
@@ -697,6 +722,32 @@ class RNUsercentricsModuleTest {
|
|
|
697
722
|
assertEquals(expectedBannerSettings, usercentricsProxy.showSecondLayerBannerSettings)
|
|
698
723
|
}
|
|
699
724
|
|
|
725
|
+
@Test
|
|
726
|
+
fun testShowSecondLayerWithNullBannerSettings() {
|
|
727
|
+
val usercentricsProxy = FakeUsercentricsProxy()
|
|
728
|
+
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
729
|
+
val module =
|
|
730
|
+
RNUsercentricsModule(contextMock, usercentricsProxy, ReactContextProviderMock())
|
|
731
|
+
val promise = FakePromise()
|
|
732
|
+
module.showSecondLayer(null, promise)
|
|
733
|
+
promise.await()
|
|
734
|
+
assertEquals(null, usercentricsProxy.showSecondLayerBannerSettings)
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
@Test
|
|
738
|
+
fun testShowSecondLayerWithEmptyBannerSettingsObject() {
|
|
739
|
+
val bannerSettings = emptyMap<String, String>().toWritableMap()
|
|
740
|
+
|
|
741
|
+
val usercentricsProxy = FakeUsercentricsProxy()
|
|
742
|
+
val contextMock = mockk<ReactApplicationContext>(relaxed = true)
|
|
743
|
+
val module =
|
|
744
|
+
RNUsercentricsModule(contextMock, usercentricsProxy, ReactContextProviderMock())
|
|
745
|
+
val promise = FakePromise()
|
|
746
|
+
module.showSecondLayer(bannerSettings, promise)
|
|
747
|
+
promise.await()
|
|
748
|
+
assertEquals(BannerSettings(), usercentricsProxy.showSecondLayerBannerSettings)
|
|
749
|
+
}
|
|
750
|
+
|
|
700
751
|
@Test
|
|
701
752
|
fun testShowFirstLayerWithCustomLocalLogo() {
|
|
702
753
|
val context = InstrumentationRegistry.getInstrumentation().context
|
package/android/src/androidTest/java/com/usercentrics/reactnativemodule/mock/GetCMPDataMock.kt
CHANGED
|
@@ -94,102 +94,106 @@ internal object GetCMPDataMock {
|
|
|
94
94
|
)
|
|
95
95
|
)
|
|
96
96
|
private val fakeLabels = UsercentricsLabels(
|
|
97
|
-
|
|
97
|
+
btnAcceptAll = "Accept All",
|
|
98
|
+
btnDeny = "Deny",
|
|
99
|
+
btnSave = "Save Services",
|
|
100
|
+
firstLayerTitle = "Privacy Settings",
|
|
98
101
|
accepted = "yes",
|
|
99
102
|
denied = "no",
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
subConsents = "Subservices",
|
|
103
|
-
btnAccept = "Accept",
|
|
104
|
-
btnDeny = "Deny",
|
|
105
|
-
secondLayerTitle = "Privacy Settings Title",
|
|
106
|
-
secondLayerDescriptionHtml = "Privacy Settings Description",
|
|
107
|
-
btnMore = "more",
|
|
108
|
-
poweredBy = "Powered by <a href=\"https://usercentrics.com/?utm_source=cmp&utm_medium=powered_by\" rel=\"nofollow\" target=\"_blank\">Usercentrics Consent Management</a>",
|
|
109
|
-
technologiesUsed = "Technologies Used",
|
|
103
|
+
date = "Date",
|
|
104
|
+
decision = "Decision",
|
|
110
105
|
dataCollectedList = "Data Collected",
|
|
111
|
-
|
|
112
|
-
legalBasisList = "Legal Basis",
|
|
113
|
-
retentionPeriod = "Retention Period",
|
|
106
|
+
dataCollectedInfo = "This list represents all (personal) data that is collected by or through the use of this service.",
|
|
114
107
|
locationOfProcessing = "Location of Processing",
|
|
115
108
|
transferToThirdCountries = "Transfer to Third Countries",
|
|
116
|
-
furtherInformationOptOut = "Further Information and Opt-Out",
|
|
117
|
-
dataProtectionOfficer = "Data Protection Officer of Processing Company",
|
|
118
|
-
nameOfProcessingCompany = "Processing Company",
|
|
119
|
-
addressOfProcessingCompany = "Address of processing company",
|
|
120
|
-
optOut = "Click here to opt out from this processor across all domains",
|
|
121
|
-
policyOf = "Click here to read the privacy policy of the data processor",
|
|
122
|
-
dataCollectedInfo = "This list represents all (personal) data that is collected by or through the use of this service.",
|
|
123
|
-
legalBasisInfo = "In the following the required legal basis for the processing of data is listed.",
|
|
124
|
-
dataRecipientsList = "Data Recipients",
|
|
125
109
|
transferToThirdCountriesInfo = "This service may forward the collected data to a different country.",
|
|
126
|
-
|
|
110
|
+
dataPurposes = "Data Purposes",
|
|
127
111
|
dataPurposesInfo = "This list represents the purposes of the data collection and processing.",
|
|
128
|
-
|
|
129
|
-
btnBannerReadMore = "Read more",
|
|
112
|
+
dataRecipientsList = "Data Recipients",
|
|
130
113
|
descriptionOfService = "Description of Service",
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
114
|
+
history = "History",
|
|
115
|
+
historyDescription = "",
|
|
116
|
+
legalBasisList = "Legal Basis",
|
|
117
|
+
legalBasisInfo = "In the following the required legal basis for the processing of data is listed.",
|
|
118
|
+
processingCompanyTitle = "Processing Company",
|
|
119
|
+
retentionPeriod = "Retention Period",
|
|
120
|
+
technologiesUsed = "Technologies Used",
|
|
121
|
+
technologiesUsedInfo = "This list represents all technologies this service uses to collect data. Typical technologies are Cookies and Pixels that are placed in the browser.",
|
|
122
|
+
cookiePolicyInfo = "Click here to read the cookie policy of the data processor",
|
|
123
|
+
optOut = "Click here to opt out from this processor across all domains",
|
|
124
|
+
policyOf = "Click here to read the privacy policy of the data processor",
|
|
125
|
+
imprintLinkText = "Imprint",
|
|
126
|
+
privacyPolicyLinkText = "Privacy Policy",
|
|
127
|
+
categories = "Categories",
|
|
128
|
+
anyDomain = "any domain (ex. first party cookie)",
|
|
138
129
|
day = "day",
|
|
139
130
|
days = "days",
|
|
131
|
+
domain = "Domain",
|
|
132
|
+
duration = "Duration",
|
|
133
|
+
informationLoadingNotPossible = "Sorry, we could not load the required information.",
|
|
134
|
+
hour = "hour",
|
|
135
|
+
hours = "hours",
|
|
136
|
+
identifier = "Identifier",
|
|
137
|
+
maximumAgeCookieStorage = "Maximum age of cookie storage",
|
|
138
|
+
minute = "minute",
|
|
139
|
+
minutes = "minutes",
|
|
140
140
|
month = "month",
|
|
141
141
|
months = "months",
|
|
142
|
+
multipleDomains = "multiple subdomains may exist",
|
|
143
|
+
no = "no",
|
|
144
|
+
nonCookieStorage = "Non-cookie storage",
|
|
145
|
+
seconds = "seconds",
|
|
146
|
+
session = "Session",
|
|
147
|
+
loadingStorageInformation = "Loading storage information",
|
|
148
|
+
storageInformation = "Storage Information",
|
|
149
|
+
detailedStorageInformation = "Detailed Storage Information",
|
|
150
|
+
tryAgain = "Try again?",
|
|
151
|
+
type = "Type",
|
|
142
152
|
year = "year",
|
|
143
153
|
years = "years",
|
|
154
|
+
yes = "yes",
|
|
155
|
+
storageInformationDescription = "Below you can see the longest potential duration for storage on a device, as set when using the cookie method of storage and if there are any other methods used.",
|
|
156
|
+
btnBannerReadMore = "Read more",
|
|
157
|
+
btnMore = "more",
|
|
158
|
+
more = "more",
|
|
159
|
+
linkToDpaInfo = "Data Processing Agreement",
|
|
160
|
+
second = "second",
|
|
144
161
|
consent = "Consent",
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
162
|
+
headerModal = "This tool helps you to select and deactivate various tags / trackers / analytic tools used on this website.",
|
|
163
|
+
secondLayerDescriptionHtml = "Privacy Settings Description",
|
|
164
|
+
secondLayerTitle = "Privacy Settings Title",
|
|
165
|
+
|
|
166
|
+
// Optional
|
|
167
|
+
settings = "Settings",
|
|
168
|
+
subConsents = "Subservices",
|
|
169
|
+
btnAccept = "Accept",
|
|
170
|
+
poweredBy = "Powered by <a href=\"https://usercentrics.com/?utm_source=cmp&utm_medium=powered_by\" rel=\"nofollow\" target=\"_blank\">Usercentrics Consent Management</a>",
|
|
171
|
+
dataProtectionOfficer = "Data Protection Officer of Processing Company",
|
|
172
|
+
nameOfProcessingCompany = "Processing Company",
|
|
149
173
|
btnBack = "Back",
|
|
150
|
-
copy = "
|
|
174
|
+
copy = "copyLabel",
|
|
151
175
|
copied = "copied",
|
|
152
|
-
view = "view",
|
|
153
|
-
more = "more",
|
|
154
|
-
less = "less",
|
|
155
|
-
consents = "Consents",
|
|
156
|
-
headerModal = "This tool helps you to select and deactivate various tags / trackers / analytic tools used on this website.",
|
|
157
176
|
basic = "Basic",
|
|
158
177
|
advanced = "Advanced",
|
|
159
178
|
processingCompany = "Processing Company",
|
|
160
|
-
|
|
161
|
-
imprintLinkText = "Imprint",
|
|
162
|
-
privacyPolicyLinkText = "Privacy Policy",
|
|
163
|
-
cookiePolicyLinkText = "Cookie Policy",
|
|
164
|
-
btnAcceptAll = "Accept All",
|
|
165
|
-
firstLayerTitle = "Privacy Settings",
|
|
166
|
-
historyDescription = "",
|
|
167
|
-
consentType = "Consent type",
|
|
168
|
-
decision = "Decision",
|
|
179
|
+
name = "Name",
|
|
169
180
|
explicit = "Explicit",
|
|
170
181
|
implicit = "Implicit",
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
seconds = "seconds",
|
|
175
|
-
nonCookieStorage = "Non-cookie storage",
|
|
176
|
-
detailedStorageInformation = "Detailed Storage Information",
|
|
177
|
-
loadingStorageInformation = "Loading storage information",
|
|
178
|
-
name = "Name",
|
|
179
|
-
identifier = "Identifier",
|
|
180
|
-
duration = "Duration",
|
|
181
|
-
type = "Type",
|
|
182
|
-
domain = "Domain",
|
|
183
|
-
informationLoadingNotPossible = "Sorry, we could not load the required information.",
|
|
184
|
-
yes = "yes",
|
|
185
|
-
session = "Session",
|
|
186
|
-
no = "no",
|
|
187
|
-
tryAgain = "Try again?",
|
|
188
|
-
anyDomain = "any domain (ex. first party cookie)",
|
|
189
|
-
multipleDomains = "multiple subdomains may exist",
|
|
190
|
-
storageInformationDescription = "Below you can see the longest potential duration for storage on a device, as set when using the cookie method of storage and if there are any other methods used.",
|
|
182
|
+
btnMoreInfo = "More Info",
|
|
183
|
+
furtherInformationOptOut = "Further Information and Opt-Out",
|
|
184
|
+
cookiePolicyLinkText = "Cookie Policy",
|
|
191
185
|
noImplicit = "no (default)",
|
|
192
|
-
yesImplicit = "yes (implicit)"
|
|
186
|
+
yesImplicit = "yes (implicit)",
|
|
187
|
+
|
|
188
|
+
addressOfProcessingCompany = "Address of processing company",
|
|
189
|
+
consentType = "Consent type",
|
|
190
|
+
consents = "Consents",
|
|
191
|
+
language = "Language",
|
|
192
|
+
|
|
193
|
+
less = "less",
|
|
194
|
+
notAvailable = "not available",
|
|
195
|
+
technology = "Technology being used to process the data",
|
|
196
|
+
view = "view",
|
|
193
197
|
)
|
|
194
198
|
private val fakeFirstLayer = FirstLayer(
|
|
195
199
|
hideButtonDeny = false,
|
|
@@ -358,6 +362,7 @@ internal object GetCMPDataMock {
|
|
|
358
362
|
"dataCollectedInfo" to "This list represents all (personal) data that is collected by or through the use of this service.",
|
|
359
363
|
"locationOfProcessing" to "Location of Processing",
|
|
360
364
|
"transferToThirdCountries" to "Transfer to Third Countries",
|
|
365
|
+
"transferToThirdCountriesInfo" to "This service may forward the collected data to a different country.",
|
|
361
366
|
"dataPurposes" to "Data Purposes",
|
|
362
367
|
"dataPurposesInfo" to "This list represents the purposes of the data collection and processing.",
|
|
363
368
|
"dataRecipientsList" to "Data Recipients",
|
|
@@ -405,16 +410,32 @@ internal object GetCMPDataMock {
|
|
|
405
410
|
"yes" to "yes",
|
|
406
411
|
"storageInformationDescription" to "Below you can see the longest potential duration for storage on a device, as set when using the cookie method of storage and if there are any other methods used.",
|
|
407
412
|
"btnBannerReadMore" to "Read more",
|
|
413
|
+
"btnMore" to "more",
|
|
414
|
+
"more" to "more",
|
|
408
415
|
"linkToDpaInfo" to "Data Processing Agreement",
|
|
409
416
|
"second" to "second",
|
|
410
417
|
"consent" to "Consent",
|
|
411
|
-
"
|
|
418
|
+
"headerModal" to "This tool helps you to select and deactivate various tags / trackers / analytic tools used on this website.",
|
|
412
419
|
"secondLayerDescriptionHtml" to "Privacy Settings Description",
|
|
413
|
-
"
|
|
420
|
+
"secondLayerTitle" to "Privacy Settings Title",
|
|
421
|
+
|
|
422
|
+
// Optional
|
|
423
|
+
"settings" to "Settings",
|
|
424
|
+
"subConsents" to "Subservices",
|
|
425
|
+
"btnAccept" to "Accept",
|
|
426
|
+
"poweredBy" to "Powered by <a href=\"https://usercentrics.com/?utm_source=cmp&utm_medium=powered_by\" rel=\"nofollow\" target=\"_blank\">Usercentrics Consent Management</a>",
|
|
427
|
+
"dataProtectionOfficer" to "Data Protection Officer of Processing Company",
|
|
428
|
+
"nameOfProcessingCompany" to "Processing Company",
|
|
429
|
+
"btnBack" to "Back",
|
|
430
|
+
"copy" to "copyLabel",
|
|
431
|
+
"copied" to "copied",
|
|
432
|
+
"basic" to "Basic",
|
|
433
|
+
"advanced" to "Advanced",
|
|
434
|
+
"processingCompany" to "Processing Company",
|
|
435
|
+
"name" to "Name",
|
|
414
436
|
"explicit" to "Explicit",
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"headerModal" to "This tool helps you to select and deactivate various tags / trackers / analytic tools used on this website.",
|
|
437
|
+
"implicit" to "Implicit",
|
|
438
|
+
"btnMoreInfo" to "More Info",
|
|
418
439
|
"furtherInformationOptOut" to "Further Information and Opt-Out",
|
|
419
440
|
"cookiePolicyLinkText" to "Cookie Policy",
|
|
420
441
|
"noImplicit" to "no (default)",
|
package/android/src/main/java/com/usercentrics/reactnativeusercentrics/RNUsercentricsModule.kt
CHANGED
|
@@ -46,11 +46,11 @@ internal class RNUsercentricsModule(
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
@ReactMethod
|
|
49
|
-
fun showSecondLayer(options: ReadableMap
|
|
49
|
+
fun showSecondLayer(options: ReadableMap?, promise: Promise) {
|
|
50
50
|
runOnUiThread {
|
|
51
51
|
try {
|
|
52
52
|
val context = reactContextProvider.context()
|
|
53
|
-
val bannerSettings = options
|
|
53
|
+
val bannerSettings = options?.bannerSettingsFromMap(context)
|
|
54
54
|
|
|
55
55
|
val activity = reactContextProvider.activity()!!
|
|
56
56
|
usercentricsProxy.showSecondLayer(activity, bannerSettings, promise)
|
|
@@ -79,6 +79,7 @@ private fun UsercentricsLabels.serialize(): Map<String, Any?> {
|
|
|
79
79
|
"dataCollectedInfo" to dataCollectedInfo,
|
|
80
80
|
"locationOfProcessing" to locationOfProcessing,
|
|
81
81
|
"transferToThirdCountries" to transferToThirdCountries,
|
|
82
|
+
"transferToThirdCountriesInfo" to transferToThirdCountriesInfo,
|
|
82
83
|
"dataPurposes" to dataPurposes,
|
|
83
84
|
"dataPurposesInfo" to dataPurposesInfo,
|
|
84
85
|
"dataRecipientsList" to dataRecipientsList,
|
|
@@ -126,16 +127,31 @@ private fun UsercentricsLabels.serialize(): Map<String, Any?> {
|
|
|
126
127
|
"yes" to yes,
|
|
127
128
|
"storageInformationDescription" to storageInformationDescription,
|
|
128
129
|
"btnBannerReadMore" to btnBannerReadMore,
|
|
130
|
+
"btnMore" to btnMore,
|
|
131
|
+
"more" to more,
|
|
129
132
|
"linkToDpaInfo" to linkToDpaInfo,
|
|
130
133
|
"second" to second,
|
|
131
134
|
"consent" to consent,
|
|
132
|
-
"
|
|
135
|
+
"headerModal" to headerModal,
|
|
133
136
|
"secondLayerDescriptionHtml" to secondLayerDescriptionHtml,
|
|
134
|
-
"
|
|
137
|
+
"secondLayerTitle" to (secondLayerTitle ?: ""),
|
|
138
|
+
// Optional
|
|
139
|
+
"settings" to (settings ?: ""),
|
|
140
|
+
"subConsents" to (subConsents ?: ""),
|
|
141
|
+
"btnAccept" to (btnAccept ?: ""),
|
|
142
|
+
"poweredBy" to (poweredBy ?: ""),
|
|
143
|
+
"dataProtectionOfficer" to (dataProtectionOfficer ?: ""),
|
|
144
|
+
"nameOfProcessingCompany" to (nameOfProcessingCompany ?: ""),
|
|
145
|
+
"btnBack" to (btnBack ?: ""),
|
|
146
|
+
"copy" to (copyLabel ?: ""),
|
|
147
|
+
"copied" to (copied ?: ""),
|
|
148
|
+
"basic" to (basic ?: ""),
|
|
149
|
+
"advanced" to (advanced ?: ""),
|
|
150
|
+
"processingCompany" to (processingCompany ?: ""),
|
|
151
|
+
"name" to (name ?: ""),
|
|
135
152
|
"explicit" to (explicit ?: ""),
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"headerModal" to headerModal,
|
|
153
|
+
"implicit" to (implicit ?: ""),
|
|
154
|
+
"btnMoreInfo" to (btnMoreInfo ?: ""),
|
|
139
155
|
"furtherInformationOptOut" to furtherInformationOptOut,
|
|
140
156
|
"cookiePolicyLinkText" to cookiePolicyLinkText,
|
|
141
157
|
"noImplicit" to noImplicit,
|
|
@@ -47,7 +47,7 @@ extension UsercentricsSettings {
|
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
extension UsercentricsLabels {
|
|
50
|
+
extension UsercentricsLabels {
|
|
51
51
|
func toDictionary() -> NSDictionary {
|
|
52
52
|
return [
|
|
53
53
|
"btnAcceptAll" : self.btnAcceptAll,
|
|
@@ -62,6 +62,7 @@ extension UsercentricsLabels {
|
|
|
62
62
|
"dataCollectedInfo" : self.dataCollectedInfo,
|
|
63
63
|
"locationOfProcessing" : self.locationOfProcessing,
|
|
64
64
|
"transferToThirdCountries" : self.transferToThirdCountries,
|
|
65
|
+
"transferToThirdCountriesInfo": self.transferToThirdCountriesInfo,
|
|
65
66
|
"dataPurposes" : self.dataPurposes,
|
|
66
67
|
"dataPurposesInfo" : self.dataPurposesInfo,
|
|
67
68
|
"dataRecipientsList" : self.dataRecipientsList,
|
|
@@ -109,16 +110,32 @@ extension UsercentricsLabels {
|
|
|
109
110
|
"yes" : self.yes,
|
|
110
111
|
"storageInformationDescription" : self.storageInformationDescription,
|
|
111
112
|
"btnBannerReadMore" : self.btnBannerReadMore,
|
|
113
|
+
"btnMore": self.btnMore,
|
|
114
|
+
"more": self.more,
|
|
112
115
|
"linkToDpaInfo" : self.linkToDpaInfo,
|
|
113
116
|
"second" : self.second,
|
|
114
117
|
"consent" : self.consent,
|
|
118
|
+
"headerModal": self.headerModal,
|
|
115
119
|
"secondLayerDescriptionHtml" : self.secondLayerDescriptionHtml,
|
|
116
120
|
"secondLayerTitle" : self.secondLayerTitle ?? "",
|
|
117
|
-
|
|
121
|
+
|
|
122
|
+
// Optional
|
|
123
|
+
"settings" : self.settings ?? "",
|
|
124
|
+
"subConsents" : self.subConsents ?? "",
|
|
125
|
+
"btnAccept" : self.btnAccept ?? "",
|
|
126
|
+
"poweredBy" : self.poweredBy ?? "",
|
|
127
|
+
"dataProtectionOfficer" : self.dataProtectionOfficer ?? "",
|
|
128
|
+
"nameOfProcessingCompany" : self.nameOfProcessingCompany ?? "",
|
|
129
|
+
"btnBack" : self.btnBack ?? "",
|
|
130
|
+
"copy" : self.copyLabel ?? "",
|
|
131
|
+
"copied" : self.copied ?? "",
|
|
132
|
+
"basic" : self.basic ?? "",
|
|
133
|
+
"advanced" : self.advanced ?? "",
|
|
134
|
+
"processingCompany" : self.processingCompany ?? "",
|
|
135
|
+
"name" : self.name ?? "",
|
|
118
136
|
"explicit": self.explicit_ ?? "",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"headerModal": self.headerModal,
|
|
137
|
+
"implicit": self.implicit ?? "",
|
|
138
|
+
"btnMoreInfo" : self.btnMoreInfo ?? "",
|
|
122
139
|
"furtherInformationOptOut": self.furtherInformationOptOut,
|
|
123
140
|
"cookiePolicyLinkText": self.cookiePolicyLinkText,
|
|
124
141
|
"noImplicit": self.noImplicit,
|
|
@@ -475,10 +492,10 @@ extension AdTechProvider {
|
|
|
475
492
|
|
|
476
493
|
func toDictionary() -> NSDictionary {
|
|
477
494
|
return [
|
|
478
|
-
"id" : id,
|
|
479
|
-
"name" : name,
|
|
480
|
-
"privacyPolicyUrl" : privacyPolicyUrl,
|
|
481
|
-
"consent" : consent
|
|
495
|
+
"id" : self.id,
|
|
496
|
+
"name" : self.name,
|
|
497
|
+
"privacyPolicyUrl" : self.privacyPolicyUrl,
|
|
498
|
+
"consent" : self.consent
|
|
482
499
|
]
|
|
483
500
|
}
|
|
484
501
|
}
|
|
@@ -11,6 +11,7 @@ export declare class UsercentricsLabels {
|
|
|
11
11
|
dataCollectedInfo: string;
|
|
12
12
|
locationOfProcessing: string;
|
|
13
13
|
transferToThirdCountries: string;
|
|
14
|
+
transferToThirdCountriesInfo: string;
|
|
14
15
|
dataPurposes: string;
|
|
15
16
|
dataPurposesInfo: string;
|
|
16
17
|
dataRecipientsList: string;
|
|
@@ -58,19 +59,33 @@ export declare class UsercentricsLabels {
|
|
|
58
59
|
yes: string;
|
|
59
60
|
storageInformationDescription: string;
|
|
60
61
|
btnBannerReadMore: string;
|
|
62
|
+
btnMore: string;
|
|
63
|
+
more: string;
|
|
61
64
|
linkToDpaInfo: string;
|
|
62
65
|
second: string;
|
|
63
66
|
consent: string;
|
|
67
|
+
headerModal: string;
|
|
64
68
|
secondLayerDescriptionHtml: string;
|
|
65
69
|
secondLayerTitle: string;
|
|
66
|
-
|
|
70
|
+
settings: string;
|
|
71
|
+
subConsents: string;
|
|
72
|
+
btnAccept: string;
|
|
73
|
+
poweredBy: string;
|
|
74
|
+
dataProtectionOfficer: string;
|
|
75
|
+
nameOfProcessingCompany: string;
|
|
76
|
+
btnBack: string;
|
|
77
|
+
copy: string;
|
|
78
|
+
copied: string;
|
|
79
|
+
basic: string;
|
|
80
|
+
advanced: string;
|
|
81
|
+
processingCompany: string;
|
|
82
|
+
name: string;
|
|
67
83
|
explicit: string;
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
headerModal: string;
|
|
84
|
+
implicit: string;
|
|
85
|
+
btnMoreInfo: string;
|
|
71
86
|
furtherInformationOptOut: string;
|
|
72
87
|
cookiePolicyLinkText: string;
|
|
73
88
|
noImplicit: string;
|
|
74
89
|
yesImplicit: string;
|
|
75
|
-
constructor(btnAcceptAll: string, btnDeny: string, btnSave: string, firstLayerTitle: string, accepted: string, denied: string, date: string, decision: string, dataCollectedList: string, dataCollectedInfo: string, locationOfProcessing: string, transferToThirdCountries: string, dataPurposes: string, dataPurposesInfo: string, dataRecipientsList: string, descriptionOfService: string, history: string, historyDescription: string, legalBasisList: string, legalBasisInfo: string, processingCompanyTitle: string, retentionPeriod: string, technologiesUsed: string, technologiesUsedInfo: string, cookiePolicyInfo: string, optOut: string, policyOf: string, imprintLinkText: string, privacyPolicyLinkText: string, categories: string, anyDomain: string, day: string, days: string, domain: string, duration: string, informationLoadingNotPossible: string, hour: string, hours: string, identifier: string, maximumAgeCookieStorage: string, minute: string, minutes: string, month: string, months: string, multipleDomains: string, no: string, nonCookieStorage: string, seconds: string, session: string, loadingStorageInformation: string, storageInformation: string, detailedStorageInformation: string, tryAgain: string, type: string, year: string, years: string, yes: string, storageInformationDescription: string, btnBannerReadMore: string, linkToDpaInfo: string, second: string, consent: string, secondLayerDescriptionHtml: string, secondLayerTitle: string,
|
|
90
|
+
constructor(btnAcceptAll: string, btnDeny: string, btnSave: string, firstLayerTitle: string, accepted: string, denied: string, date: string, decision: string, dataCollectedList: string, dataCollectedInfo: string, locationOfProcessing: string, transferToThirdCountries: string, transferToThirdCountriesInfo: string, dataPurposes: string, dataPurposesInfo: string, dataRecipientsList: string, descriptionOfService: string, history: string, historyDescription: string, legalBasisList: string, legalBasisInfo: string, processingCompanyTitle: string, retentionPeriod: string, technologiesUsed: string, technologiesUsedInfo: string, cookiePolicyInfo: string, optOut: string, policyOf: string, imprintLinkText: string, privacyPolicyLinkText: string, categories: string, anyDomain: string, day: string, days: string, domain: string, duration: string, informationLoadingNotPossible: string, hour: string, hours: string, identifier: string, maximumAgeCookieStorage: string, minute: string, minutes: string, month: string, months: string, multipleDomains: string, no: string, nonCookieStorage: string, seconds: string, session: string, loadingStorageInformation: string, storageInformation: string, detailedStorageInformation: string, tryAgain: string, type: string, year: string, years: string, yes: string, storageInformationDescription: string, btnBannerReadMore: string, btnMore: string, more: string, linkToDpaInfo: string, second: string, consent: string, headerModal: string, secondLayerDescriptionHtml: string, secondLayerTitle: string, settings: string, subConsents: string, btnAccept: string, poweredBy: string, dataProtectionOfficer: string, nameOfProcessingCompany: string, btnBack: string, copy: string, copied: string, basic: string, advanced: string, processingCompany: string, name: string, explicit: string, implicit: string, btnMoreInfo: string, furtherInformationOptOut: string, cookiePolicyLinkText: string, noImplicit: string, yesImplicit: string);
|
|
76
91
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export class UsercentricsLabels {
|
|
2
|
-
constructor(btnAcceptAll, btnDeny, btnSave, firstLayerTitle, accepted, denied, date, decision, dataCollectedList, dataCollectedInfo, locationOfProcessing, transferToThirdCountries, dataPurposes, dataPurposesInfo, dataRecipientsList, descriptionOfService, history, historyDescription, legalBasisList, legalBasisInfo, processingCompanyTitle, retentionPeriod, technologiesUsed, technologiesUsedInfo, cookiePolicyInfo, optOut, policyOf, imprintLinkText, privacyPolicyLinkText, categories, anyDomain, day, days, domain, duration, informationLoadingNotPossible, hour, hours, identifier, maximumAgeCookieStorage, minute, minutes, month, months, multipleDomains, no, nonCookieStorage, seconds, session, loadingStorageInformation, storageInformation, detailedStorageInformation, tryAgain, type, year, years, yes, storageInformationDescription, btnBannerReadMore, linkToDpaInfo, second, consent, secondLayerDescriptionHtml, secondLayerTitle,
|
|
2
|
+
constructor(btnAcceptAll, btnDeny, btnSave, firstLayerTitle, accepted, denied, date, decision, dataCollectedList, dataCollectedInfo, locationOfProcessing, transferToThirdCountries, transferToThirdCountriesInfo, dataPurposes, dataPurposesInfo, dataRecipientsList, descriptionOfService, history, historyDescription, legalBasisList, legalBasisInfo, processingCompanyTitle, retentionPeriod, technologiesUsed, technologiesUsedInfo, cookiePolicyInfo, optOut, policyOf, imprintLinkText, privacyPolicyLinkText, categories, anyDomain, day, days, domain, duration, informationLoadingNotPossible, hour, hours, identifier, maximumAgeCookieStorage, minute, minutes, month, months, multipleDomains, no, nonCookieStorage, seconds, session, loadingStorageInformation, storageInformation, detailedStorageInformation, tryAgain, type, year, years, yes, storageInformationDescription, btnBannerReadMore, btnMore, more, linkToDpaInfo, second, consent, headerModal, secondLayerDescriptionHtml, secondLayerTitle, settings, subConsents, btnAccept, poweredBy, dataProtectionOfficer, nameOfProcessingCompany, btnBack, copy, copied, basic, advanced, processingCompany, name, explicit, implicit, btnMoreInfo, furtherInformationOptOut, cookiePolicyLinkText, noImplicit, yesImplicit) {
|
|
3
3
|
this.btnAcceptAll = btnAcceptAll;
|
|
4
4
|
this.btnDeny = btnDeny;
|
|
5
5
|
this.btnSave = btnSave;
|
|
@@ -12,6 +12,7 @@ export class UsercentricsLabels {
|
|
|
12
12
|
this.dataCollectedInfo = dataCollectedInfo;
|
|
13
13
|
this.locationOfProcessing = locationOfProcessing;
|
|
14
14
|
this.transferToThirdCountries = transferToThirdCountries;
|
|
15
|
+
this.transferToThirdCountriesInfo = transferToThirdCountriesInfo;
|
|
15
16
|
this.dataPurposes = dataPurposes;
|
|
16
17
|
this.dataPurposesInfo = dataPurposesInfo;
|
|
17
18
|
this.dataRecipientsList = dataRecipientsList;
|
|
@@ -59,16 +60,30 @@ export class UsercentricsLabels {
|
|
|
59
60
|
this.yes = yes;
|
|
60
61
|
this.storageInformationDescription = storageInformationDescription;
|
|
61
62
|
this.btnBannerReadMore = btnBannerReadMore;
|
|
63
|
+
this.btnMore = btnMore;
|
|
64
|
+
this.more = more;
|
|
62
65
|
this.linkToDpaInfo = linkToDpaInfo;
|
|
63
66
|
this.second = second;
|
|
64
67
|
this.consent = consent;
|
|
68
|
+
this.headerModal = headerModal;
|
|
65
69
|
this.secondLayerDescriptionHtml = secondLayerDescriptionHtml;
|
|
66
70
|
this.secondLayerTitle = secondLayerTitle;
|
|
67
|
-
this.
|
|
71
|
+
this.settings = settings;
|
|
72
|
+
this.subConsents = subConsents;
|
|
73
|
+
this.btnAccept = btnAccept;
|
|
74
|
+
this.poweredBy = poweredBy;
|
|
75
|
+
this.dataProtectionOfficer = dataProtectionOfficer;
|
|
76
|
+
this.nameOfProcessingCompany = nameOfProcessingCompany;
|
|
77
|
+
this.btnBack = btnBack;
|
|
78
|
+
this.copy = copy;
|
|
79
|
+
this.copied = copied;
|
|
80
|
+
this.basic = basic;
|
|
81
|
+
this.advanced = advanced;
|
|
82
|
+
this.processingCompany = processingCompany;
|
|
83
|
+
this.name = name;
|
|
68
84
|
this.explicit = explicit;
|
|
69
|
-
this.
|
|
70
|
-
this.
|
|
71
|
-
this.headerModal = headerModal;
|
|
85
|
+
this.implicit = implicit;
|
|
86
|
+
this.btnMoreInfo = btnMoreInfo;
|
|
72
87
|
this.furtherInformationOptOut = furtherInformationOptOut;
|
|
73
88
|
this.cookiePolicyLinkText = cookiePolicyLinkText;
|
|
74
89
|
this.noImplicit = noImplicit;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UsercentricsLabels.js","sourceRoot":"","sources":["../../src/models/UsercentricsLabels.tsx"],"names":[],"mappings":"AAAA,MAAM,OAAO,kBAAkB;
|
|
1
|
+
{"version":3,"file":"UsercentricsLabels.js","sourceRoot":"","sources":["../../src/models/UsercentricsLabels.tsx"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usercentrics/react-native-sdk",
|
|
3
|
-
"version": "2.15.
|
|
3
|
+
"version": "2.15.5",
|
|
4
4
|
"description": "Usercentrics SDK",
|
|
5
5
|
"homepage": "https://usercentrics.com",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
8
8
|
"author": "Usercentrics <developer@usercentrics.com>",
|
|
9
9
|
"iosPackageName": "react-native-usercentrics",
|
|
10
|
-
"iosPackageVersion": "2.15.
|
|
10
|
+
"iosPackageVersion": "2.15.5",
|
|
11
11
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"files": [
|
|
13
13
|
"android",
|