@duckduckgo/autoconsent 9.7.2 → 10.0.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/.github/workflows/asana.yml +5 -1
- package/CHANGELOG.md +34 -0
- package/Jenkinsfile +36 -11
- package/data/coverage.json +1529 -889
- package/dist/addon-firefox/rules.json +21 -9
- package/dist/addon-mv3/rules.json +21 -9
- package/dist/autoconsent.playwright.js +1 -1
- package/dist/autoconsent.unit.js +21 -9
- package/package.json +5 -5
- package/playwright/runner.ts +1 -1
- package/rules/autoconsent/clinch.json +21 -9
- package/rules/rules.json +21 -9
|
@@ -1253,15 +1253,27 @@
|
|
|
1253
1253
|
],
|
|
1254
1254
|
"optOut": [
|
|
1255
1255
|
{
|
|
1256
|
-
"
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
"
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
"
|
|
1256
|
+
"if": {
|
|
1257
|
+
"exists": "#consent_reject"
|
|
1258
|
+
},
|
|
1259
|
+
"then": [
|
|
1260
|
+
{
|
|
1261
|
+
"click": "#consent_reject"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"else": [
|
|
1265
|
+
{
|
|
1266
|
+
"click": "#manage_cookie_preferences"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"click": "#cookie_consent_preferences input:checked",
|
|
1270
|
+
"all": true,
|
|
1271
|
+
"optional": true
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"click": "#consent_save"
|
|
1275
|
+
}
|
|
1276
|
+
]
|
|
1265
1277
|
}
|
|
1266
1278
|
],
|
|
1267
1279
|
"test": [
|
|
@@ -1253,15 +1253,27 @@
|
|
|
1253
1253
|
],
|
|
1254
1254
|
"optOut": [
|
|
1255
1255
|
{
|
|
1256
|
-
"
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
"
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
"
|
|
1256
|
+
"if": {
|
|
1257
|
+
"exists": "#consent_reject"
|
|
1258
|
+
},
|
|
1259
|
+
"then": [
|
|
1260
|
+
{
|
|
1261
|
+
"click": "#consent_reject"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"else": [
|
|
1265
|
+
{
|
|
1266
|
+
"click": "#manage_cookie_preferences"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"click": "#cookie_consent_preferences input:checked",
|
|
1270
|
+
"all": true,
|
|
1271
|
+
"optional": true
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"click": "#consent_save"
|
|
1275
|
+
}
|
|
1276
|
+
]
|
|
1265
1277
|
}
|
|
1266
1278
|
],
|
|
1267
1279
|
"test": [
|