Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
267 changes: 247 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@types/jest": "^29.5.11",
"@types/node": "^22.15.31",
"asana": "^1.0.2",
"babel-jest": "^30.0.0",
"babel-jest": "^30.0.2",
"chokidar-cli": "^3.0.0",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class Settings {
* @returns {RuntimeConfiguration}
*/
setTopLevelFeatureInContentScopeIfNeeded(runtimeConfig, name) {
const contentScope = /** @type {import("@duckduckgo/privacy-configuration/schema/config").ConfigV4<number>} */ (
const contentScope = /** @type {import("@duckduckgo/privacy-configuration/schema/config").ConfigV5<number>} */ (
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This one I needed to update the version. @dbajpeyi Can you also verify if this is okay?
Thanks

runtimeConfig.contentScope
);
const feature = contentScope.features?.autofill?.features?.[name];
Expand Down
Loading