diff --git a/package.json b/package.json
index 295eea0297e5..1fe17fc166a6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cipp",
- "version": "10.2.4",
+ "version": "10.2.6",
"author": "CIPP Contributors",
"homepage": "https://cipp.app/",
"bugs": {
@@ -40,7 +40,7 @@
"@nivo/sankey": "^0.99.0",
"@react-pdf/renderer": "^4.3.2",
"@reduxjs/toolkit": "^2.11.2",
- "@tanstack/query-sync-storage-persister": "^5.76.0",
+ "@tanstack/query-sync-storage-persister": "^5.90.25",
"@tanstack/react-query": "^5.51.11",
"@tanstack/react-query-devtools": "^5.51.11",
"@tanstack/react-query-persist-client": "^5.76.0",
@@ -49,12 +49,12 @@
"@tiptap/extension-heading": "^3.4.1",
"@tiptap/extension-image": "^3.4.1",
"@tiptap/extension-table": "^3.19.0",
- "@tiptap/pm": "^3.4.1",
+ "@tiptap/pm": "^3.20.4",
"@tiptap/react": "^3.4.1",
"@tiptap/starter-kit": "^3.20.1",
"@uiw/react-json-view": "^2.0.0-alpha.41",
"@vvo/tzdb": "^6.198.0",
- "apexcharts": "5.3.5",
+ "apexcharts": "5.10.4",
"axios": "^1.7.2",
"date-fns": "4.1.0",
"eml-parse-js": "^1.2.0-beta.0",
@@ -99,7 +99,7 @@
"react-syntax-highlighter": "^16.1.0",
"react-time-ago": "^7.3.3",
"react-virtuoso": "^4.18.3",
- "react-window": "^2.2.5",
+ "react-window": "^2.2.7",
"recharts": "^3.7.0",
"redux": "5.0.1",
"redux-devtools-extension": "2.13.9",
@@ -118,4 +118,4 @@
"eslint": "9.39.2",
"eslint-config-next": "16.1.6"
}
-}
\ No newline at end of file
+}
diff --git a/public/version.json b/public/version.json
index 0e0e9967ccb6..d827a149db50 100644
--- a/public/version.json
+++ b/public/version.json
@@ -1,3 +1,3 @@
{
- "version": "10.2.4"
-}
\ No newline at end of file
+ "version": "10.2.6"
+}
diff --git a/src/components/CippComponents/CippCentralSearch.jsx b/src/components/CippComponents/CippCentralSearch.jsx
index 2f0252fcaf11..e21849b63133 100644
--- a/src/components/CippComponents/CippCentralSearch.jsx
+++ b/src/components/CippComponents/CippCentralSearch.jsx
@@ -252,8 +252,9 @@ export const CippCentralSearch = ({ handleClose, open }) => {
const inBreadcrumbs = leaf.breadcrumbs?.some((crumb) =>
crumb?.toLowerCase().includes(normalizedSearch),
);
+ const inScope = (leaf.scope === "global" ? "global" : "tenant").includes(normalizedSearch);
// If there's no search value, show no results (you could change this logic)
- return normalizedSearch ? inTitle || inPath || inBreadcrumbs : false;
+ return normalizedSearch ? inTitle || inPath || inBreadcrumbs || inScope : false;
});
// Helper to bold‐highlight the matched text
@@ -310,7 +311,9 @@ export const CippCentralSearch = ({ handleClose, open }) => {
{searchValue.trim().length > 0 ? (
filteredItems.length > 0 ? (
- {filteredItems.map((item, index) => (
+ {filteredItems.map((item, index) => {
+ const isGlobal = item.scope === "global";
+ return (
{
>
{getItemTypeLabel(item)}
+
+ {isGlobal ? "Global" : "Tenant"}
+
{item.breadcrumbs && item.breadcrumbs.length > 0 && (
@@ -353,7 +369,8 @@ export const CippCentralSearch = ({ handleClose, open }) => {
- ))}
+ );
+ })}
) : (
No results found.
diff --git a/src/components/CippComponents/CippNotificationForm.jsx b/src/components/CippComponents/CippNotificationForm.jsx
index f02f23cf211b..9f499e4ac4c1 100644
--- a/src/components/CippComponents/CippNotificationForm.jsx
+++ b/src/components/CippComponents/CippNotificationForm.jsx
@@ -57,7 +57,7 @@ export const CippNotificationForm = ({
.filter(Boolean);
const Severity = listNotificationConfig.data?.Severity?.map((sev) =>
- severityTypes.find((stype) => stype.value === sev)
+ severityTypes.find((stype) => stype.value === sev),
).filter(Boolean);
formControl.reset({
@@ -142,7 +142,7 @@ export const CippNotificationForm = ({
diff --git a/src/components/CippComponents/CippSpeedDial.jsx b/src/components/CippComponents/CippSpeedDial.jsx
index 4313ace7a7ef..345632e8ba9e 100644
--- a/src/components/CippComponents/CippSpeedDial.jsx
+++ b/src/components/CippComponents/CippSpeedDial.jsx
@@ -39,7 +39,12 @@ const CippSpeedDial = ({
return acc;
}, {});
- const handleSpeedDialClose = () => {
+ const handleSpeedDialClose = (event, reason) => {
+ if (reason === "toggle") {
+ setSpeedDialOpen(false);
+ setIsHovering(false);
+ return;
+ }
if (!isHovering) {
setTimeout(() => {
setSpeedDialOpen(false);
diff --git a/src/components/CippFormPages/CippFormPage.jsx b/src/components/CippFormPages/CippFormPage.jsx
index 2118c407af60..ceea7f20b8af 100644
--- a/src/components/CippFormPages/CippFormPage.jsx
+++ b/src/components/CippFormPages/CippFormPage.jsx
@@ -47,12 +47,11 @@ const CippFormPage = (props) => {
const { isValid, isDirty } = useFormState({ control: formControl.control });
useEffect(() => {
- delete router.query.tenantFilter;
-
if (router.query) {
+ const { tenantFilter: _tenantFilter, ...queryWithoutTenant } = router.query;
const resetValues = {
...formControl.getValues(),
- ...router.query,
+ ...queryWithoutTenant,
};
formControl.reset(resetValues);
}
@@ -79,12 +78,26 @@ const CippFormPage = (props) => {
const values = customDataformatter
? customDataformatter(formControl.getValues())
: formControl.getValues();
- //remove all empty values or blanks
- Object.keys(values).forEach((key) => {
- if (values[key] === "" || values[key] === null) {
- delete values[key];
+ //remove all empty values or blanks (recursively)
+ const removeEmpty = (obj) => {
+ if (Array.isArray(obj)) {
+ return obj
+ .map((item) => (item && typeof item === "object" ? removeEmpty(item) : item))
+ .filter((item) => item !== "" && item !== null && item !== undefined);
}
- });
+ Object.keys(obj).forEach((key) => {
+ if (obj[key] === "" || obj[key] === null || obj[key] === undefined) {
+ delete obj[key];
+ } else if (typeof obj[key] === "object") {
+ obj[key] = removeEmpty(obj[key]);
+ if (!Array.isArray(obj[key]) && Object.keys(obj[key]).length === 0) {
+ delete obj[key];
+ }
+ }
+ });
+ return obj;
+ };
+ removeEmpty(values);
postCall.mutate({
url: postUrl,
data: values,
diff --git a/src/components/ExecutiveReportButton.js b/src/components/ExecutiveReportButton.js
index 19b78ddcdd04..e25d22d56b11 100644
--- a/src/components/ExecutiveReportButton.js
+++ b/src/components/ExecutiveReportButton.js
@@ -12,6 +12,7 @@ import {
Switch,
Grid,
Paper,
+ Stack,
IconButton,
} from "@mui/material";
import { PictureAsPdf, Download, Close, Settings } from "@mui/icons-material";
@@ -3065,64 +3066,59 @@ export const ExecutiveReportButton = (props) => {
in real-time.
-
+
{sectionOptions.map((option) => (
-
- handleSectionToggle(option.key)}
+ sx={{
+ p: 1.5,
+ border: "1px solid",
+ borderColor: sectionConfig[option.key] ? "primary.main" : "divider",
+ bgcolor: sectionConfig[option.key] ? "primary.50" : "background.paper",
+ cursor: "pointer",
+ transition: "all 0.2s ease-in-out",
+ display: "flex",
+ alignItems: "center",
+ "&:hover": {
+ borderColor: "primary.main",
+ bgcolor: sectionConfig[option.key] ? "primary.100" : "primary.25",
+ },
+ }}
+ >
+ {
+ event.stopPropagation();
+ handleSectionToggle(option.key);
}}
- >
- {
- event.stopPropagation();
- handleSectionToggle(option.key);
- }}
- color="primary"
- size="small"
- disabled={
- // Disable if this is the last enabled section
- sectionConfig[option.key] &&
- Object.values(sectionConfig).filter(Boolean).length === 1
- }
- />
- }
- label={
- handleSectionToggle(option.key)}>
-
- {option.label}
-
-
- {option.description}
-
-
- }
- sx={{ margin: 0, width: "100%" }}
- />
-
-
+ onClick={(event) => event.stopPropagation()}
+ color="primary"
+ size="small"
+ disabled={
+ sectionConfig[option.key] &&
+ Object.values(sectionConfig).filter(Boolean).length === 1
+ }
+ />
+
+
+ {option.label}
+
+
+ {option.description}
+
+
+
))}
-
+
diff --git a/src/data/intuneCollection.json b/src/data/intuneCollection.json
index 1c6291fefa62..c6d19ca27858 100644
--- a/src/data/intuneCollection.json
+++ b/src/data/intuneCollection.json
@@ -111,7 +111,7 @@
},
{
"id": "3~policy~microsoft_edge_targetblankimpliesnoopener",
- "displayName": "Do not set window.opener for links targeting _blank (User)",
+ "displayName": "Do not set window.opener for links targeting _blank (obsolete) (User)",
"options": [
{
"id": "3~policy~microsoft_edge_targetblankimpliesnoopener_0",
@@ -170,15 +170,24 @@
{
"id": "ade_authenticationmethod",
"displayName": "Intune authentication method",
+ "options": {
+ "id": "ade_authenticationmethod_2",
+ "displayName": "Setup Assistant with modern authentication",
+ "description": null
+ }
+ },
+ {
+ "id": "ade_awaitconfiguration_basic",
+ "displayName": "Await final configuration",
"options": [
{
- "id": "ade_authenticationmethod_2",
- "displayName": "Setup Assistant with modern authentication",
+ "id": "ade_awaitconfiguration_basic_0",
+ "displayName": "No",
"description": null
},
{
- "id": "ade_authenticationmethod_0",
- "displayName": "Company Portal",
+ "id": "ade_awaitconfiguration_basic_1",
+ "displayName": "Yes",
"description": null
}
]
@@ -267,6 +276,22 @@
}
]
},
+ {
+ "id": "ade_setupassistant_actionbutton",
+ "displayName": "Action Button",
+ "options": [
+ {
+ "id": "ade_setupassistant_actionbutton_0",
+ "displayName": "Hide",
+ "description": null
+ },
+ {
+ "id": "ade_setupassistant_actionbutton_1",
+ "displayName": "Show",
+ "description": null
+ }
+ ]
+ },
{
"id": "ade_setupassistant_androidmigration",
"displayName": "Android migration",
@@ -374,16 +399,16 @@
]
},
{
- "id": "ade_setupassistant_displaytone",
- "displayName": "Display Tone",
+ "id": "ade_setupassistant_enablelockdownmode",
+ "displayName": "Enable Lock down Mode",
"options": [
{
- "id": "ade_setupassistant_displaytone_0",
+ "id": "ade_setupassistant_enablelockdownmode_0",
"displayName": "Hide",
"description": null
},
{
- "id": "ade_setupassistant_displaytone_1",
+ "id": "ade_setupassistant_enablelockdownmode_1",
"displayName": "Show",
"description": null
}
@@ -405,22 +430,6 @@
}
]
},
- {
- "id": "ade_setupassistant_homebutton",
- "displayName": "Home button",
- "options": [
- {
- "id": "ade_setupassistant_homebutton_0",
- "displayName": "Hide",
- "description": null
- },
- {
- "id": "ade_setupassistant_homebutton_1",
- "displayName": "Show",
- "description": null
- }
- ]
- },
{
"id": "ade_setupassistant_imessagefacetime",
"displayName": "iMessage and FaceTime",
@@ -438,32 +447,32 @@
]
},
{
- "id": "ade_setupassistant_locationservices",
- "displayName": "Location services",
+ "id": "ade_setupassistant_intelligence",
+ "displayName": "Intelligence",
"options": [
{
- "id": "ade_setupassistant_locationservices_0",
+ "id": "ade_setupassistant_intelligence_0",
"displayName": "Hide",
"description": null
},
{
- "id": "ade_setupassistant_locationservices_1",
+ "id": "ade_setupassistant_intelligence_1",
"displayName": "Show",
"description": null
}
]
},
{
- "id": "ade_setupassistant_onboarding",
- "displayName": "Onboarding",
+ "id": "ade_setupassistant_locationservices",
+ "displayName": "Location services",
"options": [
{
- "id": "ade_setupassistant_onboarding_0",
+ "id": "ade_setupassistant_locationservices_0",
"displayName": "Hide",
"description": null
},
{
- "id": "ade_setupassistant_onboarding_1",
+ "id": "ade_setupassistant_locationservices_1",
"displayName": "Show",
"description": null
}
@@ -533,6 +542,22 @@
}
]
},
+ {
+ "id": "ade_setupassistant_safety",
+ "displayName": "Emergency SOS",
+ "options": [
+ {
+ "id": "ade_setupassistant_safety_0",
+ "displayName": "Hide",
+ "description": null
+ },
+ {
+ "id": "ade_setupassistant_safety_1",
+ "displayName": "Show",
+ "description": null
+ }
+ ]
+ },
{
"id": "ade_setupassistant_screentime",
"displayName": "Screen Time",
@@ -662,32 +687,32 @@
]
},
{
- "id": "ade_setupassistant_watchmigration",
- "displayName": "Watch migration",
+ "id": "ade_setupassistant_voiceselection",
+ "displayName": "Voice selection",
"options": [
{
- "id": "ade_setupassistant_watchmigration_0",
+ "id": "ade_setupassistant_voiceselection_0",
"displayName": "Hide",
"description": null
},
{
- "id": "ade_setupassistant_watchmigration_1",
+ "id": "ade_setupassistant_voiceselection_1",
"displayName": "Show",
"description": null
}
]
},
{
- "id": "ade_setupassistant_zoom",
- "displayName": "Zoom",
+ "id": "ade_setupassistant_watchmigration",
+ "displayName": "Watch migration",
"options": [
{
- "id": "ade_setupassistant_zoom_0",
+ "id": "ade_setupassistant_watchmigration_0",
"displayName": "Hide",
"description": null
},
{
- "id": "ade_setupassistant_zoom_1",
+ "id": "ade_setupassistant_watchmigration_1",
"displayName": "Show",
"description": null
}
@@ -735,6 +760,1244 @@
}
]
},
+ {
+ "id": "ade_useraffinitybasic",
+ "displayName": "User affinity",
+ "options": {
+ "id": "ade_useraffinitybasic_0",
+ "displayName": "Enroll without user affinity",
+ "description": null
+ }
+ },
+ {
+ "id": "apple_customprofile_profile",
+ "displayName": "Profile",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_audioaccessory",
+ "displayName": "com.apple.configuration.audio-accessory.settings",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing",
+ "displayName": "Temporary Pairing",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_configuration",
+ "displayName": "Configuration",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_configuration_unpairingtime",
+ "displayName": "Unpairing Time",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_configuration_unpairingtime_hour",
+ "displayName": "Hour",
+ "options": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy",
+ "displayName": "Policy",
+ "options": [
+ {
+ "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy_0",
+ "displayName": "None",
+ "description": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_configuration_unpairingtime_policy_1",
+ "displayName": "Hour",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "audioaccessory_temporarypairing_disabled",
+ "displayName": "Disabled",
+ "options": [
+ {
+ "id": "audioaccessory_temporarypairing_disabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "audioaccessory_temporarypairing_disabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.accountsblockmodification",
+ "displayName": "Block account changes",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.accountsblockmodification_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.accountsblockmodification_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources",
+ "displayName": "Allow installation from unknown sources",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsallowinstallfromunknownsources_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy",
+ "displayName": "App auto-updates (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_notconfigured",
+ "displayName": "Not configured",
+ "description": "Not configured; this value is ignored."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_userchoice",
+ "displayName": "User choice",
+ "description": "The user can control auto-updates."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_never",
+ "displayName": "Never",
+ "description": "Apps are never auto-updated."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_wifionly",
+ "displayName": "Wi-Fi only",
+ "description": "Apps are auto-updated over Wi-Fi only."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsautoupdatepolicy_always",
+ "displayName": "Always",
+ "description": "Apps are auto-updated at any time. Data charges may apply."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp",
+ "displayName": "Block user from turning on unknown sources",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsblockinstallfromunknownsourcesaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy",
+ "displayName": "Default permission policy (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_devicedefault",
+ "displayName": "Device default",
+ "description": "Device default value, no intent."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_prompt",
+ "displayName": "Prompt",
+ "description": "Prompt."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_autogrant",
+ "displayName": "Auto grant",
+ "description": "Auto grant."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsdefaultpermissionpolicy_autodeny",
+ "displayName": "Auto deny",
+ "description": "Auto deny."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints",
+ "displayName": "Skip first use hints",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.appsrecommendskippingfirstusehints_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.assistcontentpolicy",
+ "displayName": "Block assist content sharing with privileged apps",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.assistcontentpolicy_false",
+ "displayName": "False",
+ "description": "Assist content is allowed to be sent to a privileged app."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.assistcontentpolicy_true",
+ "displayName": "True",
+ "description": "Assist content is blocked from being sent to a privileged app."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration",
+ "displayName": "Block Bluetooth configuration",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfiguration_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp",
+ "displayName": "Block Bluetooth configuration",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockconfigurationaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing",
+ "displayName": "Block contact sharing via Bluetooth (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockcontactsharing_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblocked",
+ "displayName": "Block Bluetooth",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblocked_true",
+ "displayName": "True",
+ "description": "True"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp",
+ "displayName": "Block Bluetooth",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.bluetoothblockedaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablocked",
+ "displayName": "Block access to camera (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablocked_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablocked_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablockedaosp",
+ "displayName": "Block access to camera",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablockedaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.camerablockedaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering",
+ "displayName": "Block tethering and access to hotspots",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.cellularblockwifitethering_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled",
+ "displayName": "Block users from configuring credentials (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.certificatecredentialconfigurationdisabled_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste",
+ "displayName": "Allow copy and paste between work and personal profiles ",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste_false",
+ "displayName": "False",
+ "description": "false"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowcopypaste_true",
+ "displayName": "True",
+ "description": "true"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing",
+ "displayName": "Data sharing between work and personal profile",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_notconfigured",
+ "displayName": "Device default",
+ "description": "Not configured; this value defaults to CROSS_PROFILE_DATA_SHARING_UNSPECIFIED."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_crossprofiledatasharingblocked",
+ "displayName": "Block all sharing between profiles",
+ "description": "Data cannot be shared from both the personal profile to work profile and the work profile to the personal profile."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_datasharingfromworktopersonalblocked",
+ "displayName": "Block sharing from work to personal profile",
+ "description": "Prevents users from sharing data from the work profile to apps in the personal profile. Personal data can be shared with work apps."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesallowdatasharing_crossprofiledatasharingallowed",
+ "displayName": "No restrictions on sharing",
+ "description": "Data from either profile can be shared with the other profile."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile",
+ "displayName": "Block searching of work contacts and displaying work contact caller-id in personal profile",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile_false",
+ "displayName": "False",
+ "description": "false"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.crossprofilepoliciesshowworkcontactsinpersonalprofile_true",
+ "displayName": "True",
+ "description": "true"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.dataroamingblocked",
+ "displayName": "Block roaming data services",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.dataroamingblocked_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.dataroamingblocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked",
+ "displayName": "Block date and time changes",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.datetimeconfigurationblocked_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility",
+ "displayName": "Hide organization name",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.enterprisedisplaynamevisibility_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblocked",
+ "displayName": "Block factory reset",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblocked_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblocked_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp",
+ "displayName": "Block factory reset",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.factoryresetblockedaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.locationmode",
+ "displayName": "Block location",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.locationmode_notconfigured",
+ "displayName": "False",
+ "description": "No restrictions on the location setting and no specific behavior is set or enforced. This is the default."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.locationmode_disabled",
+ "displayName": "True",
+ "description": "Location setting is disabled on the device."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.microphoneforcemute",
+ "displayName": "Block microphone adjustment",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.microphoneforcemute_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.microphoneforcemute_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed",
+ "displayName": "Allow network escape hatch",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.networkescapehatchallowed_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam",
+ "displayName": "Block beaming data from apps using NFC (work profile-level)",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.nfcblockoutgoingbeam_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard",
+ "displayName": "Disable lock screen",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordblockkeyguard_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordexpirationdays",
+ "displayName": "Number of days until password expires",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumlength",
+ "displayName": "Minimum password length",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumlengthaosp",
+ "displayName": "Minimum password length",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumlettercharacters",
+ "displayName": "Number of characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumlowercasecharacters",
+ "displayName": "Number of lowercase characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumnonlettercharacters",
+ "displayName": "Number of non-letter characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumnumericcharacters",
+ "displayName": "Number of numeric characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumsymbolcharacters",
+ "displayName": "Number of symbol characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminimumuppercasecharacters",
+ "displayName": "Number of uppercase characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp",
+ "displayName": "Maximum minutes of inactivity until screen locks",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_1minute",
+ "displayName": "1 Minute",
+ "description": "Screen Timeout after 1 Minute of Inactivity"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_5minutes",
+ "displayName": "5 Minutes",
+ "description": "Screen Timeout after 5 Minutes of Inactivity"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_15minutes",
+ "displayName": "15 Minutes",
+ "description": "Screen Timeout after 15 Minutes of Inactivity"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_30minutes",
+ "displayName": "30 Minutes",
+ "description": "Screen Timeout after 30 Minutes of Inactivity"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordminutesofinactivitybeforescreentimeoutaosp_1hour",
+ "displayName": "1 Hour",
+ "description": "Screen Timeout after 1 Hour of Inactivity"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordpreviouspasswordcounttoblock",
+ "displayName": "Number of passwords required before user can reuse a password",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype",
+ "displayName": "Required password type",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_devicedefault",
+ "displayName": "Device default",
+ "description": "Device default value, no intent."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_required",
+ "displayName": "Password required, no restrictions",
+ "description": "There must be a password set, but there are no restrictions on type."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_lowsecuritybiometric",
+ "displayName": "Weak Biometric",
+ "description": "Low security biometrics based password required."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_numeric",
+ "displayName": "Numeric",
+ "description": "At least numeric."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_numericcomplex",
+ "displayName": "Numeric Complex",
+ "description": "At least numeric with no repeating or ordered sequences."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphabetic",
+ "displayName": "Alphabetic",
+ "description": "At least alphabetic password."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphanumeric",
+ "displayName": "Alphanumeric",
+ "description": "At least alphanumeric password"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtype_alphanumericwithsymbols",
+ "displayName": "Alphanumeric with symbols",
+ "description": "At least alphanumeric with symbols."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp",
+ "displayName": "Required password type",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_devicedefault",
+ "displayName": "Device default",
+ "description": "Device default value, no intent."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_required",
+ "displayName": "Password required, no restrictions",
+ "description": "There must be a password set, but there are no restrictions on type."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_lowsecuritybiometric",
+ "displayName": "Weak Biometric",
+ "description": "Low security biometrics based password required."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_numeric",
+ "displayName": "Numeric",
+ "description": "At least numeric."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_numericcomplex",
+ "displayName": "Numeric Complex",
+ "description": "At least numeric with no repeating or ordered sequences."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphabetic",
+ "displayName": "Alphabetic",
+ "description": "At least alphabetic password."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphanumeric",
+ "displayName": "Alphanumeric",
+ "description": "At least alphanumeric password"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequiredtypeaosp_alphanumericwithsymbols",
+ "displayName": "Alphanumeric with symbols",
+ "description": "At least alphanumeric with symbols."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequireunlock",
+ "displayName": "Required unlock frequency",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequireunlock_devicedefault",
+ "displayName": "Device default",
+ "description": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordrequireunlock_requiredpasswordunlockdailyoption",
+ "displayName": "24 hours since last PIN, password, or pattern unlock",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordsigninfailurecountbeforefactoryreset",
+ "displayName": "Number of sign-in failures before wiping device",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.passwordsigninfailurecountbeforefactoryresetaosp",
+ "displayName": "Number of sign-in failures before wiping device",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources",
+ "displayName": "Allow users to enable app installation from unknown sources in the personal profile",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofileappsallowinstallfromunknownsources_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked",
+ "displayName": "Block camera",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilecamerablocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked",
+ "displayName": "Block screen capture",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.personalprofilescreencaptureblocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.privatespacepolicy",
+ "displayName": "Block private space",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.privatespacepolicy_allowed",
+ "displayName": "False",
+ "description": "Users can create a private space profile."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.privatespacepolicy_disallowed",
+ "displayName": "True",
+ "description": "Users cannot create a private space profile. Supported only for company-owned devices with a work profile. Caution: Any existing private space will be removed."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblocked",
+ "displayName": "Block screen capture",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblocked_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblocked_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp",
+ "displayName": "Block screen capture",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.screencaptureblockedaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp",
+ "displayName": "Allow users to turn on debugging features",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securityallowdebuggingfeaturesaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled",
+ "displayName": "Require Common Criteria mode",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securitycommoncriteriamodeenabled_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled",
+ "displayName": "Allow access to developer settings",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securitydevelopersettingsenabled_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps",
+ "displayName": "Require threat scan on apps",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.securityrequireverifyapps_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.statusbarblocked",
+ "displayName": "Block access to status bar",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.statusbarblocked_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.statusbarblocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageallowusb",
+ "displayName": "Allow USB storage",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.storageallowusb_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageallowusb_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia",
+ "displayName": "Block mounting of external media",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmedia_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp",
+ "displayName": "Block mounting of external media",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockexternalmediaaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp",
+ "displayName": "Block USB file transfer",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.storageblockusbfiletransferaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.systemwindowsblocked",
+ "displayName": "Block notification windows",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.systemwindowsblocked_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.systemwindowsblocked_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.usbdataaccess",
+ "displayName": "USB access",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.usbdataaccess_allowusbdatatransfer",
+ "displayName": "Allow USB data transfer",
+ "description": "All types of USB data transfers are allowed. usbFileTransferDisabled is ignored."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.usbdataaccess_disallowusbfiletransfer",
+ "displayName": "Disallow USB file transfer",
+ "description": "Transferring files over USB is disallowed. Other types of USB data connections, such as mouse and keyboard connection, are allowed. usbFileTransferDisabled is ignored."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.usbdataaccess_disallowusbdatatransfer",
+ "displayName": "Disallow USB data transfer",
+ "description": "When set, all types of USB data transfers are prohibited. Supported for devices running Android 12 or above with USB HAL 1.3 or above. If the setting is not supported, DISALLOW_USB_FILE_TRANSFER will be set. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 12. A NonComplianceDetail with DEVICE_INCOMPATIBLE is reported if the device does not have USB HAL 1.3 or above. usbFileTransferDisabled is ignored."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.volumeblockadjustment",
+ "displayName": "Block volume changes",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.volumeblockadjustment_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.volumeblockadjustment_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations",
+ "displayName": "Block Wi-Fi access point configuration",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurations_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp",
+ "displayName": "Block Wi-Fi setting changes",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp_false",
+ "displayName": "False",
+ "description": "False"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditconfigurationsaosp_true",
+ "displayName": "True",
+ "description": "True"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations",
+ "displayName": "Block Wi-Fi setting changes",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations_true",
+ "displayName": "True",
+ "description": "true"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifiblockeditpolicydefinedconfigurations_false",
+ "displayName": "False",
+ "description": "false"
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifidirectsettings",
+ "displayName": "Block Wi-Fi Direct",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.wifidirectsettings_allowed",
+ "displayName": "False",
+ "description": "The user is allowed to use Wi-Fi direct."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.wifidirectsettings_disallowed",
+ "displayName": "True",
+ "description": "The user is not allowed to use Wi-Fi direct. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 13."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordexpirationdays",
+ "displayName": "Number of days until password expires",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlength",
+ "displayName": "Minimum password length",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlettercharacters",
+ "displayName": "Number of characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumlowercasecharacters",
+ "displayName": "Number of lowercase characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumnonlettercharacters",
+ "displayName": "Number of non-letter characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumnumericcharacters",
+ "displayName": "Number of numeric characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumsymbolcharacters",
+ "displayName": "Number of symbol characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordminimumuppercasecharacters",
+ "displayName": "Number of uppercase characters required",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordpreviouspasswordcounttoblock",
+ "displayName": "Number of passwords required before user can reuse a password",
+ "options": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype",
+ "displayName": "Required password type",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_devicedefault",
+ "displayName": "Device default",
+ "description": "Device default value, no intent."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_required",
+ "displayName": "Password required, no restrictions",
+ "description": "There must be a password set, but there are no restrictions on type."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_lowsecuritybiometric",
+ "displayName": "Weak Biometric",
+ "description": "Low security biometrics based password required."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_numeric",
+ "displayName": "Numeric",
+ "description": "At least numeric."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_numericcomplex",
+ "displayName": "Numeric Complex",
+ "description": "At least numeric with no repeating or ordered sequences."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphabetic",
+ "displayName": "Alphabetic",
+ "description": "At least alphabetic password."
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphanumeric",
+ "displayName": "Alphanumeric",
+ "description": "At least alphanumeric password"
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequiredtype_alphanumericwithsymbols",
+ "displayName": "Alphanumeric with symbols",
+ "description": "At least alphanumeric with symbols."
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock",
+ "displayName": "Required unlock frequency",
+ "options": [
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock_devicedefault",
+ "displayName": "Device default",
+ "description": null
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordrequireunlock_requiredpasswordunlockdailyoption",
+ "displayName": "24 hours since last PIN, password, or pattern unlock",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.android.devicerestrictionpolicy.workprofilepasswordsigninfailurecountbeforefactoryreset",
+ "displayName": "Number of sign-in failures before wiping device",
+ "options": null
+ },
{
"id": "com.apple.airplay_allowlist",
"displayName": "Allow List",
@@ -742,7 +2005,12 @@
},
{
"id": "com.apple.airplay_allowlist_item_deviceid",
- "displayName": "Device ID",
+ "displayName": "Device ID (Deprecated)",
+ "options": null
+ },
+ {
+ "id": "com.apple.airplay_allowlist_item_devicename",
+ "displayName": "Device Name",
"options": null
},
{
@@ -811,7 +2079,11 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
- { "id": "com.apple.app.lock_app", "displayName": "App", "options": null },
+ {
+ "id": "com.apple.app.lock_app",
+ "displayName": "App",
+ "options": null
+ },
{
"id": "com.apple.app.lock_app_identifier",
"displayName": "App Identifier",
@@ -1120,27 +2392,6 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
- {
- "id": "com.apple.applicationaccess.new_com.apple.applicationaccess.new",
- "displayName": "Top Level Setting Group Collection",
- "options": null
- },
- {
- "id": "com.apple.applicationaccess.new_familycontrolsenabled",
- "displayName": "Family Controls Enabled",
- "options": [
- {
- "id": "com.apple.applicationaccess.new_familycontrolsenabled_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.applicationaccess.new_familycontrolsenabled_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
{
"id": "com.apple.applicationaccess_allowaccountmodification",
"displayName": "Allow Account Modification",
@@ -1211,12 +2462,12 @@
"options": [
{
"id": "com.apple.applicationaccess_allowairplayincomingrequests_false",
- "displayName": "Disabled",
+ "displayName": "False",
"description": null
},
{
"id": "com.apple.applicationaccess_allowairplayincomingrequests_true",
- "displayName": "Enabled",
+ "displayName": "True",
"description": null
}
]
@@ -1317,6 +2568,22 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowappleintelligencereport",
+ "displayName": "Allow Apple Intelligence Report",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowappleintelligencereport_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowappleintelligencereport_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allowapplepersonalizedadvertising",
"displayName": "Allow Apple Personalized Advertising",
@@ -1893,6 +3160,38 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowdefaultcallingappmodification",
+ "displayName": "Allow Default Calling App Modification",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowdefaultcallingappmodification_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowdefaultcallingappmodification_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification",
+ "displayName": "Allow Default Messaging App Modification",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowdefaultmessagingappmodification_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allowdefinitionlookup",
"displayName": "Allow Definition Lookup",
@@ -1973,6 +3272,16 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowedcamerarestrictionbundleids",
+ "displayName": "Allowed Camera Restriction Bundle IDs",
+ "options": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowedexternalintelligenceworkspaceids",
+ "displayName": "Allowed External Intelligence Workspace IDs",
+ "options": null
+ },
{
"id": "com.apple.applicationaccess_allowenablingrestrictions",
"displayName": "Allow Enabling Restrictions",
@@ -2071,16 +3380,16 @@
},
{
"id": "com.apple.applicationaccess_allowesimoutgoingtransfers",
- "displayName": "allow ESIM Outgoing Transfers",
+ "displayName": "Allow ESIM Outgoing Transfers",
"options": [
{
"id": "com.apple.applicationaccess_allowesimoutgoingtransfers_false",
- "displayName": "Disabled",
+ "displayName": "False",
"description": null
},
{
"id": "com.apple.applicationaccess_allowesimoutgoingtransfers_true",
- "displayName": "Enabled",
+ "displayName": "True",
"description": null
}
]
@@ -2279,7 +3588,7 @@
},
{
"id": "com.apple.applicationaccess_allowgenmoji",
- "displayName": "allow Genmoji",
+ "displayName": "Allow Genmoji",
"options": [
{
"id": "com.apple.applicationaccess_allowgenmoji_false",
@@ -2570,6 +3879,22 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowmailsmartreplies",
+ "displayName": "Allow Mail Smart Replies",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowmailsmartreplies_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowmailsmartreplies_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allowmailsummary",
"displayName": "Allow Mail Summary",
@@ -2620,16 +3945,16 @@
},
{
"id": "com.apple.applicationaccess_allowmarketplaceappinstallation",
- "displayName": "allow Marketplace App Installation",
+ "displayName": "Allow Marketplace App Installation",
"options": [
{
"id": "com.apple.applicationaccess_allowmarketplaceappinstallation_false",
- "displayName": "Disabled",
+ "displayName": "False",
"description": null
},
{
"id": "com.apple.applicationaccess_allowmarketplaceappinstallation_true",
- "displayName": "Enabled",
+ "displayName": "True",
"description": null
}
]
@@ -2714,6 +4039,38 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allownotestranscription",
+ "displayName": "Allow Notes Transcription",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allownotestranscription_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allownotestranscription_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.applicationaccess_allownotestranscriptionsummary",
+ "displayName": "Allow Notes Transcription Summary",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allownotestranscriptionsummary_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allownotestranscriptionsummary_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allownotificationsmodification",
"displayName": "Allow Notifications Modification",
@@ -3004,7 +4361,7 @@
},
{
"id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation",
- "displayName": "Allow Rapid Security Response Installation",
+ "displayName": "Allow Background Security Improvement Installation (Deprecated)",
"options": [
{
"id": "com.apple.applicationaccess_allowrapidsecurityresponseinstallation_false",
@@ -3020,7 +4377,7 @@
},
{
"id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval",
- "displayName": "Allow Rapid Security Response Removal",
+ "displayName": "Allow Background Security Improvement Removal (Deprecated)",
"options": [
{
"id": "com.apple.applicationaccess_allowrapidsecurityresponseremoval_false",
@@ -3098,6 +4455,70 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowsafarihistoryclearing",
+ "displayName": "Allow Safari History Clearing",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowsafarihistoryclearing_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsafarihistoryclearing_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsafariprivatebrowsing",
+ "displayName": "Allow Safari Private Browsing",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowsafariprivatebrowsing_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsafariprivatebrowsing_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsafarisummary",
+ "displayName": "Allow Safari Summary",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowsafarisummary_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsafarisummary_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsatelliteconnection",
+ "displayName": "Allow Satellite Connection",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowsatelliteconnection_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowsatelliteconnection_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allowscreenshot",
"displayName": "Allow Screen Shot",
@@ -3370,6 +4791,22 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess_allowvisualintelligencesummary",
+ "displayName": "Allow Visual Intelligence Summary",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess_allowvisualintelligencesummary_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_allowvisualintelligencesummary_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.applicationaccess_allowvoicedialing",
"displayName": "Allow Voice Dialing (Deprecated)",
@@ -3420,16 +4857,16 @@
},
{
"id": "com.apple.applicationaccess_allowwebdistributionappinstallation",
- "displayName": "allow Web Distribution App Installation",
+ "displayName": "Allow Web Distribution App Installation",
"options": [
{
"id": "com.apple.applicationaccess_allowwebdistributionappinstallation_false",
- "displayName": "Disabled",
+ "displayName": "False",
"description": null
},
{
"id": "com.apple.applicationaccess_allowwebdistributionappinstallation_true",
- "displayName": "Enabled",
+ "displayName": "True",
"description": null
}
]
@@ -3465,6 +4902,16 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
+ {
+ "id": "com.apple.applicationaccess_deniediccidsforimessagefacetime",
+ "displayName": "Denied ICCIDs For iMessage And FaceTime",
+ "options": null
+ },
+ {
+ "id": "com.apple.applicationaccess_deniediccidsforrcs",
+ "displayName": "Denied ICCIDs For RCS",
+ "options": null
+ },
{
"id": "com.apple.applicationaccess_enforcedfingerprinttimeout",
"displayName": "Enforced Fingerprint Timeout",
@@ -3472,22 +4919,22 @@
},
{
"id": "com.apple.applicationaccess_enforcedsoftwareupdatedelay",
- "displayName": "Enforced Software Update Delay",
+ "displayName": "Enforced Software Update Delay (Deprecated)",
"options": null
},
{
"id": "com.apple.applicationaccess_enforcedsoftwareupdatemajorosdeferredinstalldelay",
- "displayName": "Enforced Software Update Major OS Deferred Install Delay",
+ "displayName": "Enforced Software Update Major OS Deferred Install Delay (Deprecated)",
"options": null
},
{
"id": "com.apple.applicationaccess_enforcedsoftwareupdateminorosdeferredinstalldelay",
- "displayName": "Enforced Software Update Minor OS Deferred Install Delay",
+ "displayName": "Enforced Software Update Minor OS Deferred Install Delay (Deprecated)",
"options": null
},
{
"id": "com.apple.applicationaccess_enforcedsoftwareupdatenonosdeferredinstalldelay",
- "displayName": "Enforced Software Update Non OS Deferred Install Delay",
+ "displayName": "Enforced Software Update Non OS Deferred Install Delay (Deprecated)",
"options": null
},
{
@@ -3668,7 +5115,7 @@
},
{
"id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates",
- "displayName": "Force Delayed App Software Updates",
+ "displayName": "Force Delayed App Software Updates (Deprecated)",
"options": [
{
"id": "com.apple.applicationaccess_forcedelayedappsoftwareupdates_false",
@@ -3684,7 +5131,7 @@
},
{
"id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates",
- "displayName": "Force Delayed Major Software Updates",
+ "displayName": "Force Delayed Major Software Updates (Deprecated)",
"options": [
{
"id": "com.apple.applicationaccess_forcedelayedmajorsoftwareupdates_false",
@@ -3700,7 +5147,7 @@
},
{
"id": "com.apple.applicationaccess_forcedelayedsoftwareupdates",
- "displayName": "Force Delayed Software Updates",
+ "displayName": "Force Delayed Software Updates (Deprecated)",
"options": [
{
"id": "com.apple.applicationaccess_forcedelayedsoftwareupdates_false",
@@ -3869,26 +5316,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsau_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsau_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsau_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsau_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsau_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsau_22",
"displayName": "All",
"description": null
}
@@ -3905,26 +5437,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsca_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsca_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsca_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsca_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsca_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsca_22",
"displayName": "All",
"description": null
}
@@ -3941,31 +5558,121 @@
},
{
"id": "com.apple.applicationaccess_ratingappsde_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsde_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsde_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsde_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsde_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsde_22",
"displayName": "All",
"description": null
}
]
},
+ {
+ "id": "com.apple.applicationaccess_ratingappsexemptedbundleids",
+ "displayName": "Rating Apps Exempted Bundle IDs",
+ "options": null
+ },
{
"id": "com.apple.applicationaccess_ratingappsfr",
"displayName": "Rating Apps - France",
@@ -3977,26 +5684,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsfr_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsfr_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsfr_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsfr_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsfr_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsfr_22",
"displayName": "All",
"description": null
}
@@ -4013,26 +5805,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsgb_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsgb_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsgb_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsgb_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsgb_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsgb_22",
"displayName": "All",
"description": null
}
@@ -4049,26 +5926,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsie_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsie_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsie_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsie_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsie_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsie_22",
"displayName": "All",
"description": null
}
@@ -4085,26 +6047,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsjp_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsjp_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsjp_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsjp_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsjp_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsjp_22",
"displayName": "All",
"description": null
}
@@ -4121,26 +6168,111 @@
},
{
"id": "com.apple.applicationaccess_ratingappsnz_1",
- "displayName": "4+",
+ "displayName": "1+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsnz_2",
- "displayName": "9+",
+ "displayName": "2+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsnz_3",
- "displayName": "12+",
+ "displayName": "3+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsnz_4",
- "displayName": "17+",
+ "displayName": "4+",
"description": null
},
{
"id": "com.apple.applicationaccess_ratingappsnz_5",
+ "displayName": "5+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_6",
+ "displayName": "6+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_7",
+ "displayName": "7+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_8",
+ "displayName": "8+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_9",
+ "displayName": "9+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_10",
+ "displayName": "10+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_11",
+ "displayName": "11+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_12",
+ "displayName": "12+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_13",
+ "displayName": "13+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_14",
+ "displayName": "14+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_15",
+ "displayName": "15+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_16",
+ "displayName": "16+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_17",
+ "displayName": "17+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_18",
+ "displayName": "18+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_19",
+ "displayName": "19+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_20",
+ "displayName": "20+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_21",
+ "displayName": "21+",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess_ratingappsnz_22",
"displayName": "All",
"description": null
}
@@ -5067,6 +7199,27 @@
}
]
},
+ {
+ "id": "com.apple.applicationaccess.new_com.apple.applicationaccess.new",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.applicationaccess.new_familycontrolsenabled",
+ "displayName": "Family Controls Enabled",
+ "options": [
+ {
+ "id": "com.apple.applicationaccess.new_familycontrolsenabled_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.applicationaccess.new_familycontrolsenabled_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.appstore_com.apple.appstore",
"displayName": "Top Level Setting Group Collection",
@@ -5090,7 +7243,7 @@
},
{
"id": "com.apple.appstore_restrict-store-disable-app-adoption",
- "displayName": "restrict-store-disable-app-adoption",
+ "displayName": "Restrict-store-disable-app-adoption",
"options": [
{
"id": "com.apple.appstore_restrict-store-disable-app-adoption_false",
@@ -5666,7 +7819,11 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
- { "id": "com.apple.cellular_apns", "displayName": "APNs", "options": null },
+ {
+ "id": "com.apple.cellular_apns",
+ "displayName": "APNs",
+ "options": null
+ },
{
"id": "com.apple.cellular_apns_item_allowedprotocolmask",
"displayName": "Allowed Protocol Mask",
@@ -5849,6 +8006,88 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred",
+ "displayName": "Cellular Data Preferred",
+ "options": [
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_cellulardatapreferred_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_com.apple.cellularprivatenetwork.managed",
+ "displayName": "com.apple.cellularprivatenetwork.managed",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_csgnetworkidentifier",
+ "displayName": "Csg Network Identifier",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_datasetname",
+ "displayName": "Data Set Name",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone",
+ "displayName": "Enable NR Standalone",
+ "options": [
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_enablenrstandalone_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_geofences",
+ "displayName": "Geofences",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_geofences_item_geofenceid",
+ "displayName": "Geofence Id",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_geofences_item_latitude",
+ "displayName": "Latitude",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_geofences_item_longitude",
+ "displayName": "Longitude",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_geofences_item_radius",
+ "displayName": "Radius",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_networkidentifier",
+ "displayName": "Network Identifier",
+ "options": null
+ },
+ {
+ "id": "com.apple.cellularprivatenetwork.managed_versionnumber",
+ "displayName": "Version Number",
+ "options": null
+ },
{
"id": "com.apple.configurationprofile.identification_com.apple.configurationprofile.identification",
"displayName": "Top Level Setting Group Collection",
@@ -5856,7 +8095,7 @@
},
{
"id": "com.apple.configurationprofile.identification_payloadidentification",
- "displayName": "Payload Identification",
+ "displayName": "Payload Identification (Deprecated)",
"options": null
},
{
@@ -6448,7 +8687,7 @@
},
{
"id": "com.apple.dnssettings.managed_dnssettings_servername",
- "displayName": "Server Name (Deprecated)",
+ "displayName": "Server Name",
"options": null
},
{
@@ -7013,48 +9252,48 @@
]
},
{
- "id": "com.apple.dock_showindicators-immutable",
- "displayName": "Show Indicators Immutable",
+ "id": "com.apple.dock_show-process-indicators",
+ "displayName": "Show Process Indicators",
"options": [
{
- "id": "com.apple.dock_showindicators-immutable_false",
+ "id": "com.apple.dock_show-process-indicators_false",
"displayName": "False",
"description": null
},
{
- "id": "com.apple.dock_showindicators-immutable_true",
+ "id": "com.apple.dock_show-process-indicators_true",
"displayName": "True",
"description": null
}
]
},
{
- "id": "com.apple.dock_show-process-indicators",
- "displayName": "Show Process Indicators",
+ "id": "com.apple.dock_show-recents",
+ "displayName": "Show Recents",
"options": [
{
- "id": "com.apple.dock_show-process-indicators_false",
+ "id": "com.apple.dock_show-recents_false",
"displayName": "False",
"description": null
},
{
- "id": "com.apple.dock_show-process-indicators_true",
+ "id": "com.apple.dock_show-recents_true",
"displayName": "True",
"description": null
}
]
},
{
- "id": "com.apple.dock_show-recents",
- "displayName": "Show Recents",
+ "id": "com.apple.dock_showindicators-immutable",
+ "displayName": "Show Indicators Immutable",
"options": [
{
- "id": "com.apple.dock_show-recents_false",
+ "id": "com.apple.dock_showindicators-immutable_false",
"displayName": "False",
"description": null
},
{
- "id": "com.apple.dock_show-recents_true",
+ "id": "com.apple.dock_showindicators-immutable_true",
"displayName": "True",
"description": null
}
@@ -7279,6 +9518,11 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
+ {
+ "id": "com.apple.domains_crosssitetrackingpreventionrelaxedapps",
+ "displayName": "Cross Site Tracking Prevention Relaxed Apps",
+ "options": null
+ },
{
"id": "com.apple.domains_crosssitetrackingpreventionrelaxeddomains",
"displayName": "Cross Site Tracking Prevention Relaxed Domains",
@@ -7353,7 +9597,7 @@
},
{
"id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos",
- "displayName": "allow Password",
+ "displayName": "Allow Password",
"options": [
{
"id": "com.apple.extensiblesso_extensiondata_allowpassword_kerberos_false",
@@ -7383,9 +9627,25 @@
}
]
},
+ {
+ "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos",
+ "displayName": "Allow Platform SSO OAuth Fallback",
+ "options": [
+ {
+ "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.extensiblesso_extensiondata_allowplatformssoauthfallback_kerberos_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos",
- "displayName": "allow Smart Card",
+ "displayName": "Allow Smart Card",
"options": [
{
"id": "com.apple.extensiblesso_extensiondata_allowsmartcard_kerberos_false",
@@ -7504,7 +9764,7 @@
},
{
"id": "com.apple.extensiblesso_extensiondata_identityissuerautoselectfilter_kerberos",
- "displayName": "identity Issuer Auto Select Filter",
+ "displayName": "Identity Issuer Auto Select Filter",
"options": null
},
{
@@ -7687,7 +9947,7 @@
},
{
"id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos",
- "displayName": "start In Smart Card Mode",
+ "displayName": "Start In Smart Card Mode",
"options": [
{
"id": "com.apple.extensiblesso_extensiondata_startinsmartcardmode_kerberos_false",
@@ -7717,6 +9977,22 @@
}
]
},
+ {
+ "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos",
+ "displayName": "Use Platform SSOTGT",
+ "options": [
+ {
+ "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.extensiblesso_extensiondata_useplatformssotgt_kerberos_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.extensiblesso_extensiondata_usesiteautodiscovery_kerberos",
"displayName": "Use Site Auto Discovery",
@@ -7807,6 +10083,22 @@
"displayName": "Administrator Groups",
"options": null
},
+ {
+ "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation",
+ "displayName": "Allow Device Identifiers In Attestation",
+ "options": [
+ {
+ "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.extensiblesso_platformsso_allowdeviceidentifiersinattestation_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.extensiblesso_platformsso_authenticationgraceperiod",
"displayName": "Authentication Grace Period",
@@ -7923,6 +10215,11 @@
"id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_2",
"displayName": "Groups",
"description": null
+ },
+ {
+ "id": "com.apple.extensiblesso_platformsso_newuserauthorizationmode_3",
+ "displayName": "Temporary",
+ "description": null
}
]
},
@@ -8068,7 +10365,12 @@
},
{
"id": "com.apple.familycontrols.contentfilter_filterblacklist",
- "displayName": "Filter Blocklist",
+ "displayName": "Filter Blocklist (Deprecated)",
+ "options": null
+ },
+ {
+ "id": "com.apple.familycontrols.contentfilter_filterdenylist",
+ "displayName": "Filter Denylist",
"options": null
},
{
@@ -8394,6 +10696,27 @@
"displayName": "Top Level Setting Group Collection",
"options": null
},
+ {
+ "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing",
+ "displayName": "Management Allows Known Folder Syncing",
+ "options": [
+ {
+ "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.fileproviderd_managementallowsknownfoldersyncing_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.fileproviderd_managementknownfoldersyncingallowlist",
+ "displayName": "Management Known Folder Syncing Allow List",
+ "options": null
+ },
{
"id": "com.apple.finder_com.apple.finder",
"displayName": "Top Level Setting Group Collection",
@@ -8548,8 +10871,16 @@
"displayName": "com.apple.font",
"options": null
},
- { "id": "com.apple.font_font", "displayName": "Font", "options": null },
- { "id": "com.apple.font_name", "displayName": "Name", "options": null },
+ {
+ "id": "com.apple.font_font",
+ "displayName": "Font",
+ "options": null
+ },
+ {
+ "id": "com.apple.font_name",
+ "displayName": "Name",
+ "options": null
+ },
{
"id": "com.apple.gamed_com.apple.gamed",
"displayName": "Top Level Setting Group Collection",
@@ -8874,6 +11205,22 @@
}
]
},
+ {
+ "id": "com.apple.loginwindow_showinputmenu",
+ "displayName": "Show Input Menu",
+ "options": [
+ {
+ "id": "com.apple.loginwindow_showinputmenu_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.loginwindow_showinputmenu_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.loginwindow_showotherusers_managed",
"displayName": "Show Other Users Managed",
@@ -8938,6 +11285,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant",
+ "displayName": "Make Access-Control-Allow-Methods matching in CORS preflight spec conformant",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_accesscontrolallowmethodsincorspreflightspecconformant_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled",
+ "displayName": "Let screen reader users get image descriptions from Microsoft",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_accessibilityimagelabelsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_acknowledgeddatacollectionpolicy",
"displayName": "Automatically acknowledge data collection policy",
@@ -8954,6 +11333,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_additionalsearchboxenabled",
+ "displayName": "Enable additional search box in browser",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_additionalsearchboxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_additionalsearchboxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_addressbarmicrosoftsearchinbingproviderenabled",
"displayName": "Enable Microsoft Search in Bing suggestions in the address bar",
@@ -8986,6 +11381,59 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_adstransparencyenabled",
+ "displayName": "Configure if the ads transparency feature is enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_adstransparencyenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_adstransparencyenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_aigenthemesenabled",
+ "displayName": "Enables DALL-E themes generation",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_aigenthemesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_aigenthemesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_allhttpauthschemesallowedfororigins",
+ "displayName": "List of origins that allow all HTTP authentication",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled",
+ "displayName": "Allow pages with Cache-Control: no-store header to enter back/forward cache",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_allowbackforwardcacheforcachecontrolnostorepageenabled_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_allowcertswithoutmatchingemailaddress",
"displayName": "Allow S/MIME certificates without a matching email address",
@@ -9034,6 +11482,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_alloweddomainsforapps",
+ "displayName": "Define domains allowed to access Google Workspace",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_allowedemaildomains",
"displayName": "Allowed Email Domains",
@@ -9129,6 +11582,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts",
+ "displayName": "Allow Web Authentication requests on sites with broken TLS certificates.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_allowwebauthnwithbrokentlscerts_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_alternateerrorpagesenabled",
"displayName": "Suggest similar pages when a webpage can’t be found",
@@ -9892,12 +12361,12 @@
},
{
"id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app",
- "displayName": "Microsoft Remote Desktop",
+ "displayName": "Microsoft Remote Desktop (Deprecated)",
"options": null
},
{
"id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_application id",
- "displayName": "Microsoft Remote Desktop Application ID",
+ "displayName": "Microsoft Remote Desktop Application ID (Deprecated)",
"options": null
},
{
@@ -9923,12 +12392,12 @@
},
{
"id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_lcid",
- "displayName": "Microsoft Remote Desktop LCID",
+ "displayName": "Microsoft Remote Desktop LCID (Deprecated)",
"options": null
},
{
"id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver",
- "displayName": "Update channel override",
+ "displayName": "Update channel override (Deprecated)",
"options": [
{
"id": "com.apple.managedclient.preferences_applicationssystem_applications_microsoft remote desktop.app_manifestserver_0",
@@ -10282,6 +12751,68 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app",
+ "displayName": "Windows App",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_application id",
+ "displayName": "Application ID",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname",
+ "displayName": "Channel Name",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_0",
+ "displayName": "Current Channel",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_1",
+ "displayName": "Current Channel (Preview)",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_channelname_2",
+ "displayName": "Beta Channel",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_lcid",
+ "displayName": "LCID",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver",
+ "displayName": "Manifest Server",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_0",
+ "displayName": "Current Channel",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_1",
+ "displayName": "Current Channel (Preview)",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_2",
+ "displayName": "Beta Channel",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_applicationssystem_applications_windows app.app_manifestserver_3",
+ "displayName": "Change Freeze",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_applicationssystem_library_application support_microsoft_mau2.0_microsoft autoupdate.app",
"displayName": "Microsoft Auto Update",
@@ -10344,6 +12875,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_askbeforecloseenabled",
+ "displayName": "Get user confirmation before closing a browser window with multiple tabs",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_askbeforecloseenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_askbeforecloseenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_audiocaptureallowed",
"displayName": "Allow or block audio capture",
@@ -10396,6 +12943,22 @@
"displayName": "Configure list of allowed authentication servers",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled",
+ "displayName": "Configure auto discard sleeping tabs",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_autodiscardsleepingtabsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_autofilladdressenabled",
"displayName": "Enable AutoFill for addresses",
@@ -10428,6 +12991,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_autofillmembershipsenabled",
+ "displayName": "Save and fill memberships",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_autofillmembershipsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_autofillmembershipsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_autoimportatfirstrun",
"displayName": "Automatically import another browser's data and settings at first run",
@@ -10464,6 +13043,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled",
+ "displayName": "AutoLaunch Protocols Component Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_autolaunchprotocolscomponentenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_automaticallydownloadexternalcontent",
"displayName": "Download embedded images",
@@ -10501,6 +13096,37 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_automaticdownloadsallowedforurls",
+ "displayName": "Allow multiple automatic downloads in quick succession on specific sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automaticdownloadsblockedforurls",
+ "displayName": "Block multiple automatic downloads in quick succession on specific sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automatichttpsdefault",
+ "displayName": "Configure Automatic HTTPS",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_automatichttpsdefault_0",
+ "displayName": "Automatic HTTPS functionality is disabled.",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automatichttpsdefault_1",
+ "displayName": "(Deprecated) Navigations delivered over HTTP are switched to HTTPS, only on domains likely to support HTTPS.",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automatichttpsdefault_2",
+ "displayName": "All navigations delivered over HTTP are switched to HTTPS. Connection errors might occur more often.",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_automaticsamplesubmission",
"displayName": "Enable / disable automatic sample submissions",
@@ -10517,6 +13143,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent",
+ "displayName": "Automatic sample submission Consent",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_0",
+ "displayName": "none",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_1",
+ "displayName": "safe",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_automaticsamplesubmissionconsent_2",
+ "displayName": "all",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_automaticuploadbandwidthpercentage",
"displayName": "Automatic upload bandwidth percentage",
@@ -10548,6 +13195,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_autoplayallowlist",
+ "displayName": "Allow media autoplay on specific sites",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_autoselectcertificateforurls",
"displayName": "Automatically select client certificates for these sites",
@@ -10585,6 +13237,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_behaviormonitoring",
+ "displayName": "Behavior Monitoring",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_behaviormonitoring_0",
+ "displayName": "enabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_behaviormonitoring_1",
+ "displayName": "disabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_bingadssuppression",
"displayName": "Block all ads on Bing search results",
@@ -10649,6 +13317,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_blocktruncatedcookies",
+ "displayName": "Block truncated cookies",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_blocktruncatedcookies_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_blocktruncatedcookies_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_browseraddprofileenabled",
"displayName": "Enable profile creation from the Identity flyout menu or the Settings page",
@@ -10837,6 +13521,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate",
+ "displayName": "Check for definitions update",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_checkfordefinitionsupdate_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_clearbrowsingdataonexit",
"displayName": "Clear browsing data when Microsoft Edge closes",
@@ -10869,6 +13569,16 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_clipboardallowedforurls",
+ "displayName": "Allow clipboard use on specific sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_clipboardblockedforurls",
+ "displayName": "Block clipboard use on specific sites",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_cloudblocklevel",
"displayName": "Cloud Block Level",
@@ -10937,6 +13647,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_composeinlineenabled",
+ "displayName": "Compose is enabled for writing on the web",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_composeinlineenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_composeinlineenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled",
+ "displayName": "Enable compression dictionary transport support",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_compressiondictionarytransportenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_configuredonottrack",
"displayName": "Configure Do Not Track",
@@ -10990,6 +13732,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_configureshare",
+ "displayName": "Configure the Share experience",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_configureshare_0",
+ "displayName": "Allow using the Share experience",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_configureshare_1",
+ "displayName": "Don't allow using the Share experience",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_consumerexperience",
"displayName": "Control sign-in to consumer version",
@@ -11006,6 +13764,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled",
+ "displayName": "Configure default state of Allow extensions from other stores setting",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_controldefaultstateofallowextensionfromotherstoressettingenabled_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_cookiesallowedforurls",
"displayName": "Allow cookies on specific sites",
@@ -11021,11 +13795,74 @@
"displayName": "Limit cookies from specific websites to the current session",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_copilotpagecontext",
+ "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_copilotpagecontext_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_copilotpagecontext_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport",
+ "displayName": "CORS non-wildcard request header support enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_corsnonwildcardrequestheaderssupport_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled",
+ "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_csscustomstatedeprecatedsyntaxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_customhelplink",
"displayName": "Specify custom help link",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_dailyconfiguration",
+ "displayName": "Daily and Hourly quick scan configuration",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_dailyconfiguration_interval",
+ "displayName": "Start time",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_dailyconfiguration_timeofday",
+ "displayName": "Time of day",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_datalossprevention",
"displayName": "Use Data Loss Prevention",
@@ -11042,6 +13879,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled",
+ "displayName": "Data URL support for SVGUseElement",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_dataurlinsvguseenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting",
+ "displayName": "Default automatic downloads setting",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting_0",
+ "displayName": "Allow all websites to perform automatic downloads",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultautomaticdownloadssetting_1",
+ "displayName": "Don't allow any website to perform automatic downloads",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultbrowsersettingenabled",
"displayName": "Set Microsoft Edge as default browser",
@@ -11058,6 +13927,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultclipboardsetting",
+ "displayName": "Default clipboard site permission",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultclipboardsetting_0",
+ "displayName": "Do not allow any site to use the clipboard site permission",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultclipboardsetting_1",
+ "displayName": "Allow sites to ask the user to grant the clipboard site permission",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultcookiessetting",
"displayName": "Configure cookies",
@@ -11169,6 +14054,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting",
+ "displayName": "Control use of JavaScript JIT",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting_0",
+ "displayName": "Allow any site to run JavaScript JIT",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultjavascriptjitsetting_1",
+ "displayName": "Do not allow any site to run JavaScript JIT",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultjavascriptsetting",
"displayName": "Default JavaScript setting",
@@ -11342,6 +14243,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting",
+ "displayName": "Set the default \"share additional operating system region\" setting",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_0",
+ "displayName": "Limited",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_1",
+ "displayName": "Always share the OS Regional format",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultshareadditionalosregionsetting_2",
+ "displayName": "Never share the OS Regional format",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultstolocalopensave",
"displayName": "Default to local files for open/save",
@@ -11358,6 +14280,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting",
+ "displayName": "Default setting for third-party storage partitioning",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting_0",
+ "displayName": "Let third-party storage partitioning to be enabled.",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultthirdpartystoragepartitioningsetting_1",
+ "displayName": "Block third-party storage partitioning from being enabled.",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultweatherlocation",
"displayName": "Default weather location",
@@ -11379,6 +14317,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting",
+ "displayName": "Control use of the WebHID API",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting_0",
+ "displayName": "Do not allow any site to request access to HID devices via the WebHID API",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultwebhidguardsetting_1",
+ "displayName": "Allow sites to ask the user to grant access to a HID device",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_defaultwebusbguardsetting",
"displayName": "Control use of the WebUSB API",
@@ -11395,6 +14349,32 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting",
+ "displayName": "Default Window Management permission setting",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting_0",
+ "displayName": "Denies the Window Management permission on all sites by default",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_defaultwindowmanagementsetting_1",
+ "displayName": "Ask every time a site wants obtain the Window Management permission",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_definitionupdatedue",
+ "displayName": "Security intelligence update due (in days)",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_definitionupdatesinterval",
+ "displayName": "Security intelligence update interval (in seconds)",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_developertoolsavailability",
"displayName": "Control where developer tools can be used",
@@ -11538,6 +14518,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disablednsovertcpparsing",
+ "displayName": "Disable DNS over TCP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablednsovertcpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablednsovertcpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablednsparsing",
+ "displayName": "Disable DNS parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablednsparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablednsparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disabledonotforward",
"displayName": "Disable 'Do Not Forward' options",
@@ -11586,6 +14598,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disableftpparsing",
+ "displayName": "Disable FTP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disableftpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disableftpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablehttpparsing",
+ "displayName": "Disable HTTP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablehttpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablehttpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disablehydrationtoast",
"displayName": "Disable download toasts",
@@ -11602,6 +14646,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disableicmpparsing",
+ "displayName": "Disable ICMP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disableicmpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disableicmpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disableimport",
"displayName": "Disable import from OLM and PST files",
@@ -11618,6 +14678,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering",
+ "displayName": "Disable inbound connection filtering",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disableinboundconnectionfiltering_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disableinsidercheckbox",
"displayName": "Disable Office Insider membership",
@@ -11650,6 +14726,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disablerdpparsing",
+ "displayName": "Disable RDP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablerdpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablerdpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disablerespondtomeetingwithoutresponse",
"displayName": "Disable 'Do not send response'",
@@ -11730,6 +14822,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disablesmtpparsing",
+ "displayName": "Disable SMTP parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablesmtpparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablesmtpparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablesshparsing",
+ "displayName": "Disable SSH parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disablesshparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disablesshparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disableteamsmeeting",
"displayName": "Disable Microsoft Teams meeting support",
@@ -11746,6 +14870,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_disabletlsparsing",
+ "displayName": "Disable TLS parsing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_disabletlsparsing_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_disabletlsparsing_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_disabletutorial",
"displayName": "Disable tutorial",
@@ -11867,6 +15007,22 @@
"displayName": "Specify URI template of desired DNS-over-HTTPS resolver",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled",
+ "displayName": "Double Click feature in Microsoft Edge enabled (only available in China)",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_doubleclickclosetabenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_downloadbandwidthlimited",
"displayName": "Set maximum download throughput",
@@ -11900,6 +15056,11 @@
"id": "com.apple.managedclient.preferences_downloadrestrictions_3",
"displayName": "Block all downloads",
"description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_downloadrestrictions_4",
+ "displayName": "Block malicious downloads",
+ "description": null
}
]
},
@@ -11919,6 +15080,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled",
+ "displayName": "Allow features to download assets from the Asset Delivery Service",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeassetdeliveryserviceenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_edgecollectionsenabled",
"displayName": "Enable the Collections feature",
@@ -11935,6 +15112,102 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery",
+ "displayName": "Disable DIAL protocol for cast device discovery",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgedisabledialprotocolforcastdiscovery_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeedropenabled",
+ "displayName": "Enable Drop feature in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgeedropenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeedropenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext",
+ "displayName": "Control access to page content for Entra ID Profiles accessing Microsoft Copilot with Enterprise Data Protection (EDP) from the Microsoft Edge sidebar",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeentracopilotpagecontext_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled",
+ "displayName": "Microsoft Edge management extensions feedback enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementextensionsfeedbackenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy",
+ "displayName": "Microsoft Edge management service policy overrides platform policy.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementpolicyoverridesplatformpolicy_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy",
+ "displayName": "Allow cloud-based Microsoft Edge management service user policies to override local user policies.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgemanagementuserpolicyoverridescloudmachinepolicy_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_edgeshoppingassistantenabled",
"displayName": "Shopping in Microsoft Edge Enabled",
@@ -11951,6 +15224,64 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_edgesidebarappurlhostallowlist",
+ "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgesidebarappurlhostblocklist",
+ "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled",
+ "displayName": "Enable sidebar customize",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgesidebarcustomizeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgewalletetreeenabled",
+ "displayName": "Edge Wallet E-Tree Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgewalletetreeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgewalletetreeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeworkspacesenabled",
+ "displayName": "Enable Workspaces",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_edgeworkspacesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_edgeworkspacesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_editfavoritesenabled",
"displayName": "Allows users to edit favorites",
@@ -11967,6 +15298,74 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode",
+ "displayName": "Configure when efficiency mode should become active",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_0",
+ "displayName": "Efficiency mode is always active",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_1",
+ "displayName": "Efficiency mode is never active",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_2",
+ "displayName": "Efficiency mode is active when the device is unplugged",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_3",
+ "displayName": "Efficiency mode is active when the device is unplugged and the battery is low",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_4",
+ "displayName": "When the device is unplugged, efficiency mode takes moderate steps to save battery. When the device is unplugged and the battery is low, efficiency mode takes additional steps to save battery.",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymode_5",
+ "displayName": "When the device is unplugged or unplugged and the battery is low, efficiency mode takes additional steps to save battery.",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeenabled",
+ "displayName": "Efficiency mode enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled",
+ "displayName": "Enable efficiency mode when the device is connected to a power source",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_efficiencymodeonpowerenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_enableallocsiclients",
"displayName": "Enable simultaneous edits for Office apps",
@@ -12163,6 +15562,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_enablesetwarntoblock",
+ "displayName": "Enable set warn to block",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_enablesetwarntoblock_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enablesetwarntoblock_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_enablesha1forlocalanchors",
"displayName": "Allow certificates signed using SHA-1 when issued by local trust anchors",
@@ -12179,6 +15594,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled",
+ "displayName": "TLS Encrypted ClientHello Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_encryptedclienthelloenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_enforcementlevel",
"displayName": "Enforcement level",
@@ -12242,6 +15673,74 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymode",
+ "displayName": "Enhance the security state in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymode_0",
+ "displayName": "Standard mode",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymode_1",
+ "displayName": "Balanced mode",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymode_2",
+ "displayName": "Strict mode",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymode_3",
+ "displayName": "(Deprecated) Basic mode",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodebypasslistdomains",
+ "displayName": "Configure the list of domains for which enhance security mode will not be enforced",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeenforcelistdomains",
+ "displayName": "Configure the list of domains for which enhance security mode will always be enforced",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled",
+ "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeindicatoruienabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled",
+ "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge (deprecated)",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_enhancesecuritymodeoptoutuxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_enterprisehardwareplatformapienabled",
"displayName": "Allow managed extensions to use the Enterprise Hardware Platform API",
@@ -12382,6 +15881,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_explicitlyallowednetworkports",
+ "displayName": "Explicitly allowed network ports",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_extendedlogging",
"displayName": "Enable extended logging",
@@ -12403,6 +15907,27 @@
"displayName": "Configure allowed extension types",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings",
+ "displayName": "Control the availability of developer mode on extensions page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings_0",
+ "displayName": "Allow the usage of developer mode on extensions page",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensiondevelopermodesettings_1",
+ "displayName": "Do not allow the usage of developer mode on extensions page",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionextendedbackgroundlifetimeforportconnectionstourls",
+ "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_extensioninstallallowlist",
"displayName": "Allow specific extensions to be installed",
@@ -12423,6 +15948,53 @@
"displayName": "Configure extension and user script install sources",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_extensioninstalltypeblocklist",
+ "displayName": "Blocklist for extension install types",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionmanifestv2availability",
+ "displayName": "Control Manifest v2 extension availability",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_0",
+ "displayName": "Default browser behavior",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_1",
+ "displayName": "Manifest v2 is disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_2",
+ "displayName": "Manifest v2 is enabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionmanifestv2availability_3",
+ "displayName": "Manifest v2 is enabled for forced extensions only",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled",
+ "displayName": "Extensions Performance Detector enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_extensionsperformancedetectorenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_externalprotocoldialogshowalwaysopencheckbox",
"displayName": "Show an \"Always open\" checkbox in external protocol dialog",
@@ -12471,6 +16043,37 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_featureflagoverridescontrol",
+ "displayName": "Configure users ability to override feature flags",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_0",
+ "displayName": "Prevent users from overriding feature flags",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_1",
+ "displayName": "Allow users to override feature flags",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_featureflagoverridescontrol_2",
+ "displayName": "Allow users to override feature flags using command line arguments only",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_fetchkeepalivedurationsecondsonshutdown",
+ "displayName": "Fetch keepalive duration on shutdown",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_fileordirectorypickerwithoutgestureallowedfororigins",
+ "displayName": "Allow file or directory picker APIs to be called without prior user gesture",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_filesondemandenabled",
"displayName": "Enable Files On-Demand",
@@ -12592,6 +16195,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled",
+ "displayName": "Controls whether unload event handlers can be disabled.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_forcepermissionpolicyunloaddefaultenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_forcesync",
"displayName": "Force synchronization of browser data and do not show the sync consent prompt",
@@ -12608,6 +16227,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_forcesynctypes",
+ "displayName": "Configure the list of types that are included for synchronization",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_forceyoutuberestrict",
"displayName": "Force minimum YouTube Restricted Mode",
@@ -12661,6 +16285,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_groupids",
+ "displayName": "Group identifier",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_guardagainstappmodification",
"displayName": "Guard against app modification",
@@ -12677,6 +16306,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_guidedswitchenabled",
+ "displayName": "Guided Switch Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_guidedswitchenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_guidedswitchenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_hardwareaccelerationmodeenabled",
"displayName": "Use hardware acceleration when available",
@@ -12693,6 +16338,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_headlessmodeenabled",
+ "displayName": "Control use of the Headless Mode",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_headlessmodeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_headlessmodeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_hidedockicon",
"displayName": "Hide dock icon",
@@ -12804,6 +16465,43 @@
"displayName": "Configure the list of names that will bypass the HSTS policy check",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_httpallowlist",
+ "displayName": "HTTP Allowlist",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_hubssidebarenabled",
+ "displayName": "Show Hubs Sidebar",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_hubssidebarenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_hubssidebarenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_ignoreexclusions",
+ "displayName": "Ignore exclusions",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_ignoreexclusions_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_ignoreexclusions_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_imagesallowedforurls",
"displayName": "Allow images on these sites",
@@ -13006,6 +16704,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_inappsupportenabled",
+ "displayName": "In-app support Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_inappsupportenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_inappsupportenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_inprivatemodeavailability",
"displayName": "Configure InPrivate mode availability",
@@ -13053,6 +16767,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed",
+ "displayName": "Specifies whether to allow websites to make requests to any network endpoint in an insecure manner.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowed_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_insecureprivatenetworkrequestsallowedforurls",
+ "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_intensivewakeupthrottlingenabled",
"displayName": "Control the IntensiveWakeUpThrottling feature",
@@ -13110,6 +16845,32 @@
"displayName": "Block JavaScript on specific sites",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_javascriptjitallowedforsites",
+ "displayName": "Allow JavaScript to use JIT on these sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_javascriptjitblockedforsites",
+ "displayName": "Block JavaScript from using JIT on these sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled",
+ "displayName": "Enable keyboard focusable scrollers",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_keyboardfocusablescrollersenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_kfmblockoptin",
"displayName": "Prevent users from using the Folder Backup feature (Known Folder Move)",
@@ -13242,6 +17003,22 @@
"displayName": "Revert to legacy SameSite behavior for cookies on specified sites",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_linkedaccountenabled",
+ "displayName": "Enable the linked account feature",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_linkedaccountenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_linkedaccountenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_localprovidersenabled",
"displayName": "Allow suggestions from local providers",
@@ -13258,6 +17035,94 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan",
+ "displayName": "Low priority scheduled scan",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_lowpriorityscheduledscan_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines",
+ "displayName": "Managed Search Engines",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery",
+ "displayName": "Allow search engine discovery",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_allow_search_engine_discovery_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_encoding",
+ "displayName": "Encoding",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_image_search_post_params",
+ "displayName": "Image search post params",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_image_search_url",
+ "displayName": "Image search URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default",
+ "displayName": "Is default",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_is_default_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_keyword",
+ "displayName": "Keyword",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_name",
+ "displayName": "Name",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_search_url",
+ "displayName": "Search URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_managedsearchengines_item_suggest_url",
+ "displayName": "Suggest URL",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_manifestserver",
"displayName": "Deferred updates (Deprecated)",
@@ -13491,6 +17356,86 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled",
+ "displayName": "Microsoft Edge Insider Promotion Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_microsoftedgeinsiderpromotionenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled",
+ "displayName": "Spell checking provided by Microsoft Editor",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorproofingenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled",
+ "displayName": "Synonyms are provided when using Microsoft Editor spell checker",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_microsofteditorsynonymsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed",
+ "displayName": "Allow single sign-on for Microsoft personal sites using this profile",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_msawebsitessousingthisprofileallowed_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_mutationeventsenabled",
+ "displayName": "Enable deprecated/removed Mutation Events",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_mutationeventsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_mutationeventsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_nativemessagingallowlist",
"displayName": "Control which native messaging hosts users can use",
@@ -13538,6 +17483,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_newpdfreaderenabled",
+ "displayName": "Microsoft Edge built-in PDF reader powered by Adobe Acrobat enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newpdfreaderenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newpdfreaderenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_newtabpageallowedbackgroundtypes",
"displayName": "Configure the background types allowed for the new tab page layout",
@@ -13559,6 +17520,89 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled",
+ "displayName": "Hide App Launcher on Microsoft Edge new tab page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpageapplauncherenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled",
+ "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagebingchatenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo",
+ "displayName": "New Tab Page Company Logo",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo",
+ "displayName": "Default logo",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo_hash",
+ "displayName": "Hash",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_default_logo_url",
+ "displayName": "URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo",
+ "displayName": "Light logo",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo_hash",
+ "displayName": "Hash",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogo_light_logo_url",
+ "displayName": "URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled",
+ "displayName": "Hide the company logo on the Microsoft Edge new tab page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagecompanylogoenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_newtabpagehidedefaulttopsites",
"displayName": "Hide the default top sites from the new tab page",
@@ -13580,6 +17624,37 @@
"displayName": "Configure the new tab page URL",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks",
+ "displayName": "New Tab Page Managed Quick Links",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned",
+ "displayName": "Pinned",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_pinned_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_title",
+ "displayName": "Title",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagemanagedquicklinks_item_url",
+ "displayName": "URL",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_newtabpageprerenderenabled",
"displayName": "Enable preload of the new tab page for faster rendering",
@@ -13596,6 +17671,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled",
+ "displayName": "Allow quick links on the new tab page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_newtabpagequicklinksenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_newtabpagesearchbox",
"displayName": "Configure the new tab page search box experience",
@@ -13739,6 +17830,43 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdate",
+ "displayName": "Enable offline security intelligence updates",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdate_0",
+ "displayName": "enabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdate_1",
+ "displayName": "disabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdateurl",
+ "displayName": "URL for a security intelligence updates mirror server",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig",
+ "displayName": "offline security intelligence updates signature verification",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig_0",
+ "displayName": "enabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_offlinedefinitionupdateverifysig_1",
+ "displayName": "disabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_oldisablejunkoptionsprefkey",
"displayName": "Disable Junk settings",
@@ -13787,6 +17915,54 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled",
+ "displayName": "Allow the use of your organization's branding assets from Microsoft Entra on the profile-related UI of a work profile",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_organizationalbrandingonworkprofileuienabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled",
+ "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work profile",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_organizationlogooverlayonappiconenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled",
+ "displayName": "Origin-keyed agent clustering enabled by default",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_originagentclusterdefaultenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_overridesecurityrestrictionsoninsecureorigin",
"displayName": "Control where security restrictions on insecure origins apply",
@@ -13808,6 +17984,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled",
+ "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_passworddeleteonbrowsercloseenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_passwordmanagerenabled",
"displayName": "Enable saving passwords to the password manager",
@@ -13824,6 +18016,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled",
+ "displayName": "Restrict the length of passwords that can be saved in the Password Manager",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_passwordmanagerrestrictlengthenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_passwordmonitorallowed",
"displayName": "Allow Microsoft Edge to monitor user passwords",
@@ -13898,6 +18106,54 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_pdfsecuremode",
+ "displayName": "Secure mode and Certificate-based Digital Signature validation in native PDF reader",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_pdfsecuremode_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pdfsecuremode_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pdfxfaenabled",
+ "displayName": "XFA support in native PDF reader enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_pdfxfaenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pdfxfaenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_performancedetectorenabled",
+ "displayName": "Performance Detector Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_performancedetectorenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_performancedetectorenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_personalizationreportingenabled",
"displayName": "Allow personalization of ads, search and news by sending browsing history to Microsoft",
@@ -13930,6 +18186,43 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled",
+ "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pictureinpictureoverlayenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton",
+ "displayName": "Pin browser essentials toolbar button",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pinbrowseressentialstoolbarbutton_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_pluginsallowedforurls",
+ "displayName": "Allow the Adobe Flash plug-in on specific sites",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_pluginsblockedforurls",
"displayName": "Block the Adobe Flash plug-in on specific sites",
@@ -13945,6 +18238,22 @@
"displayName": "Block pop-up windows on specific sites",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled",
+ "displayName": "Enable post-quantum key agreement for TLS",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_postquantumkeyagreementenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_preventsmartscreenpromptoverride",
"displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites",
@@ -13977,6 +18286,48 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride",
+ "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_preventtyposquattingpromptoverride_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_primarypasswordsetting",
+ "displayName": "Configures a setting that asks users to enter their device password while using password autofill",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_primarypasswordsetting_0",
+ "displayName": "Automatically",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_primarypasswordsetting_1",
+ "displayName": "With device password",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_primarypasswordsetting_2",
+ "displayName": "With custom primary password",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_primarypasswordsetting_3",
+ "displayName": "Autofill off",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_printertypedenylist",
"displayName": "Disable printer types on the deny list",
@@ -13998,6 +18349,43 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes",
+ "displayName": "Restrict background graphics printing mode",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_0",
+ "displayName": "Allow printing with and without background graphics",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_1",
+ "displayName": "Allow printing only without background graphics",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printingallowedbackgroundgraphicsmodes_2",
+ "displayName": "Allow printing only with background graphics",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault",
+ "displayName": "Default background graphics printing mode",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault_0",
+ "displayName": "Disable background graphics printing mode by default",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printingbackgroundgraphicsdefault_1",
+ "displayName": "Enable background graphics printing mode by default",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_printingenabled",
"displayName": "Enable printing",
@@ -14014,6 +18402,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_printingwebpagelayout",
+ "displayName": "Sets layout for printing",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_printingwebpagelayout_0",
+ "displayName": "Sets layout option as portrait",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printingwebpagelayout_1",
+ "displayName": "Sets layout option as landscape",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printpdfasimagedefault",
+ "displayName": "Print PDF as Image Default",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_printpdfasimagedefault_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printpdfasimagedefault_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_printpreviewusesystemdefaultprinter",
"displayName": "Set the system default printer as the default printer",
@@ -14030,6 +18450,53 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_printrasterizepdfdpi",
+ "displayName": "Print Rasterize PDF DPI",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printstickysettings",
+ "displayName": "Print preview sticky settings",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_printstickysettings_0",
+ "displayName": "Enable sticky settings for PDF and Webpages",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printstickysettings_1",
+ "displayName": "Disable sticky settings for PDF and Webpages",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printstickysettings_2",
+ "displayName": "Disable sticky settings for PDF",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_printstickysettings_3",
+ "displayName": "Disable sticky settings for Webpages",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled",
+ "displayName": "Specifies whether to apply restrictions to requests to more private network endpoints",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_privatenetworkaccessrestrictionsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_proactiveauthenabled",
"displayName": "Enable Proactive Authentication",
@@ -14046,6 +18513,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled",
+ "displayName": "Enable proactive authentication",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proactiveauthworkflowenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_promotionaltabsenabled",
"displayName": "Enable full-tab promotional content",
@@ -14078,6 +18561,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates",
+ "displayName": "Prompt the user to select a certificate when multiple certificates match",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_promptonmultiplematchingcertificates_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxy",
+ "displayName": "Set proxy for MDE communication",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_proxybypasslist",
"displayName": "Configure proxy bypass rules",
@@ -14124,6 +18628,73 @@
"displayName": "Configure address or URL of proxy server",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings",
+ "displayName": "Proxy Settings",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxybypasslist",
+ "displayName": "Proxy Bypass List",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode",
+ "displayName": "Proxy Mode",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode_0",
+ "displayName": "direct",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode_1",
+ "displayName": "auto_detect",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode_2",
+ "displayName": "pac_script",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode_3",
+ "displayName": "fixed_servers",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxymode_4",
+ "displayName": "system",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxypacurl",
+ "displayName": "Proxy PAC URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_proxysettings_proxyserver",
+ "displayName": "Proxy Server",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled",
+ "displayName": "Enable QR Code Generator",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_qrcodegeneratorenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_quicallowed",
"displayName": "Allow QUIC protocol",
@@ -14140,6 +18711,122 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_quicksearchshowminimenu",
+ "displayName": "Enables Microsoft Edge mini menu",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_quicksearchshowminimenu_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_quicksearchshowminimenu_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled",
+ "displayName": "Manage QuickView Office files capability in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_quickviewofficefilesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_randomizescanstarttime",
+ "displayName": "Randomize scheduled scan start time",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_readaloudenabled",
+ "displayName": "Enable Read Aloud feature in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_readaloudenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_readaloudenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers",
+ "displayName": "Registered Protocol Handlers",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default",
+ "displayName": "Default",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_default_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_protocol",
+ "displayName": "Protocol",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_registeredprotocolhandlers_item_url",
+ "displayName": "URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled",
+ "displayName": "Configure Related Matches in Find on Page",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_relatedmatchescloudserviceenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled",
+ "displayName": "Enable Related Website Sets",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_relatedwebsitesetsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_relaunchnotification",
"displayName": "Notify a user that a browser restart is recommended or required for pending updates",
@@ -14161,6 +18848,22 @@
"displayName": "Set the time period for update notifications",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_remotedebuggingallowed",
+ "displayName": "Allow remote debugging",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_remotedebuggingallowed_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_remotedebuggingallowed_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_resolvenavigationerrorsusewebservice",
"displayName": "Enable resolution of navigation errors using a web service",
@@ -14195,6 +18898,11 @@
"id": "com.apple.managedclient.preferences_restoreonstartup_2",
"displayName": "Open a new tab",
"description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_restoreonstartup_3",
+ "displayName": "Open a list of URLs and restore the last session",
+ "description": null
}
]
},
@@ -14203,6 +18911,38 @@
"displayName": "Sites to open when the browser starts",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled",
+ "displayName": "Allow users to add and remove their own sites during startup when the RestoreOnStartupURLs policy is configured",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_restoreonstartupuserurlsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_restorepdfview",
+ "displayName": "Restore PDF view",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_restorepdfview_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_restorepdfview_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_restrictsignintopattern",
"displayName": "Restrict which accounts can be used as Microsoft Edge primary accounts",
@@ -14224,6 +18964,43 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_runscanwhenidle",
+ "displayName": "Run scheduled scan when idle",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_runscanwhenidle_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_runscanwhenidle_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sameorigintabcaptureallowedbyorigins",
+ "displayName": "Allow Same Origin Tab capture by these origins",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked",
+ "displayName": "Allow Microsoft Edge to block navigations to external protocols in a sandboxed iframe",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sandboxexternalprotocolblocked_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_savecookiesonexit",
"displayName": "Save cookies when Microsoft Edge closes",
@@ -14287,6 +19064,22 @@
"displayName": "Scan results retention",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_scheduledscan",
+ "displayName": "Scheduled Scan",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_scheduledscan_0",
+ "displayName": "enabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_scheduledscan_1",
+ "displayName": "disabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_screencaptureallowed",
"displayName": "Allow or deny screen capture",
@@ -14303,6 +19096,16 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_screencaptureallowedbyorigins",
+ "displayName": "Allow Desktop, Window, and Tab capture by these origins",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_screencapturewithoutgestureallowedfororigins",
+ "displayName": "Allow screen capture without prior user gesture",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_scrolltotextfragmentenabled",
"displayName": "Enable scrolling to text specified in URL fragments",
@@ -14319,6 +19122,59 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_searchfiltersenabled",
+ "displayName": "Search Filters Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_searchfiltersenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchfiltersenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchforimageenabled",
+ "displayName": "Search for image enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_searchforimageenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchforimageenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchinsidebarenabled",
+ "displayName": "Search in Sidebar enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_searchinsidebarenabled_0",
+ "displayName": "Enable search in sidebar",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchinsidebarenabled_1",
+ "displayName": "Disable search in sidebar for Kids Mode",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_searchinsidebarenabled_2",
+ "displayName": "Disable search in sidebar",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_searchsuggestenabled",
"displayName": "Enable search suggestions",
@@ -14366,6 +19222,11 @@
"displayName": "Block access to sensors on specific sites",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_serialallowallportsforurls",
+ "displayName": "Automatically grant sites permission to connect all serial ports",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_serialaskforurls",
"displayName": "Allow the Serial API on specific sites",
@@ -14376,6 +19237,38 @@
"displayName": "Block the Serial API on specific sites",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed",
+ "displayName": "Specifies whether SharedArrayBuffers can be used in a non cross-origin-isolated context",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed_false",
+ "displayName": "Blocked",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sharedarraybufferunrestrictedaccessallowed_true",
+ "displayName": "Allowed",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sharedlinksenabled",
+ "displayName": "Show links shared from Microsoft 365 apps in History",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_sharedlinksenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sharedlinksenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_sharepointonpremfrontdoorurl",
"displayName": "SharePoint Server Front Door URL",
@@ -14402,6 +19295,22 @@
"displayName": "SharePoint Server Tenant Name",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton",
+ "displayName": "Shows button on native PDF viewer in Microsoft Edge that allows users to sign up for Adobe Acrobat subscription",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showacrobatsubscriptionbutton_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_showcasticonintoolbar",
"displayName": "Show the cast icon in the toolbar",
@@ -14434,6 +19343,54 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled",
+ "displayName": "Enable insecure download warnings",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadsinsecurewarningsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton",
+ "displayName": "Show Downloads button on the toolbar",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showdownloadstoolbarbutton_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showhistorythumbnails",
+ "displayName": "Show thumbnail images for browsing history",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showhistorythumbnails_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showhistorythumbnails_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_showhomebutton",
"displayName": "Show Home button on toolbar",
@@ -14482,6 +19439,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled",
+ "displayName": "Allow notifications to set Microsoft Edge as default PDF reader",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showpdfdefaultrecommendationsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showrecommendationsenabled",
+ "displayName": "Allow feature recommendations and browser assistance notifications from Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_showrecommendationsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_showrecommendationsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_showwhatsnewonlaunch",
"displayName": "Show Whats New dialog",
@@ -14594,14 +19583,40 @@
"id": "com.apple.managedclient.preferences_sleepingtabstimeout_7",
"displayName": "12 hours of inactivity",
"description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_sleepingtabstimeout_8",
+ "displayName": "12 hours of inactivity",
+ "description": null
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_smartactionsblocklist",
+ "displayName": "Block smart actions for a list of services",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_smartscreenallowlistdomains",
"displayName": "Configure the list of domains for which Microsoft Defender SmartScreen won't trigger warnings",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_smartscreendnsrequestsenabled",
+ "displayName": "Enable Microsoft Defender SmartScreen DNS requests",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_smartscreendnsrequestsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_smartscreendnsrequestsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_smartscreenenabled",
"displayName": "Configure Microsoft Defender SmartScreen",
@@ -14692,6 +19707,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_splitscreenenabled",
+ "displayName": "Enable split screen feature in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_splitscreenenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_splitscreenenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_sslerroroverrideallowed",
"displayName": "Allow users to proceed from the HTTPS warning page",
@@ -14708,6 +19739,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_sslerroroverrideallowedfororigins",
+ "displayName": "Allow users to proceed from the HTTPS warning page for specific origins",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_sslversionmin",
"displayName": "Minimum TLS version enabled",
@@ -14793,6 +19829,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile",
+ "displayName": "Switch intranet sites to a work profile",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_switchintranetsitestoworkprofile_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_syncdisabled",
"displayName": "Disable synchronization of data using Microsoft sync services",
@@ -14830,6 +19882,11 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_tabcaptureallowedbyorigins",
+ "displayName": "Allow Tab capture by these origins",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_tabfreezingenabled",
"displayName": "Allow freezing of background tabs",
@@ -14846,6 +19903,22 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_tabservicesenabled",
+ "displayName": "Enable tab organization suggestions",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_tabservicesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_tabservicesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_tags",
"displayName": "Device tags",
@@ -14897,6 +19970,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_textpredictionenabled",
+ "displayName": "Text prediction enabled by default",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_textpredictionenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_textpredictionenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_thirdpartystoragepartitioningblockedfororigins",
+ "displayName": "Block third-party storage partitioning for these origins",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_threattypesettings",
"displayName": "Threat type settings",
@@ -15039,6 +20133,43 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_typosquattingallowlistdomains",
+ "displayName": "Configure the list of domains for which Edge Website Typo Protection won't trigger warnings",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled",
+ "displayName": "Configure Edge Website Typo Protection",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_typosquattingcheckerenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled",
+ "displayName": "JavaScript setTimeout will not be clamped until a higher nesting threshold is set (deprecated)",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_unthrottlednestedtimeoutenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_updatecache",
"displayName": "Update cache server",
@@ -15059,6 +20190,22 @@
"displayName": "Number of minutes for the final countdown timer",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_updatepolicyoverride",
+ "displayName": "Specifies how Microsoft Edge Update handles available updates from Microsoft Edge",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_updatepolicyoverride_0",
+ "displayName": "silent-only - Updates are applied only when they're found by the periodic update check.",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_updatepolicyoverride_1",
+ "displayName": "only - Updates are applied only when the user runs a manual update check. (Not all apps provide an interface for this option.)",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_updateroptimization",
"displayName": "Updater optimization technique",
@@ -15085,6 +20232,22 @@
"displayName": "Set maximum upload throughput",
"options": null
},
+ {
+ "id": "com.apple.managedclient.preferences_uploadfromphoneenabled",
+ "displayName": "Enable upload files from mobile in Microsoft Edge desktop",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_uploadfromphoneenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_uploadfromphoneenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_urlallowlist",
"displayName": "Define a list of allowed URLs",
@@ -15111,6 +20274,27 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_useragentreduction",
+ "displayName": "Enable or disable the User-Agent Reduction",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_useragentreduction_0",
+ "displayName": "User-Agent reduction will be controllable via Experimentation",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_useragentreduction_1",
+ "displayName": "User-Agent reduction diabled, and not enabled by Experimentation",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_useragentreduction_2",
+ "displayName": "User-Agent reduction will be enabled for all origins",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_userdatadir",
"displayName": "Set the user data directory",
@@ -15306,6 +20490,38 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_visualsearchenabled",
+ "displayName": "Visual search enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_visualsearchenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_visualsearchenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_walletdonationenabled",
+ "displayName": "Wallet Donation Enabled",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_walletdonationenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_walletdonationenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.managedclient.preferences_weather_update_automatically",
"displayName": "Disable automatic updating of weather location",
@@ -15322,6 +20538,48 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist",
+ "displayName": "Web App Install Force List",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut",
+ "displayName": "Create desktop shortcut",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_create_desktop_shortcut_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container",
+ "displayName": "Default launch container",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container_0",
+ "displayName": "tab",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_default_launch_container_1",
+ "displayName": "window",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webappinstallforcelist_item_url",
+ "displayName": "URL",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_webcaptureenabled",
"displayName": "Enable web capture feature in Microsoft Edge",
@@ -15338,6 +20596,53 @@
}
]
},
+ {
+ "id": "com.apple.managedclient.preferences_webcomponentsv0enabled",
+ "displayName": "Re-enable Web Components v0 API until M84.",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_webcomponentsv0enabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webcomponentsv0enabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies",
+ "displayName": "Allow WebDriver to Override Incompatible Policies",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webdriveroverridesincompatiblepolicies_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webhidallowalldevicesforurls",
+ "displayName": "Allow listed sites to connect to any HID device",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webhidaskforurls",
+ "displayName": "Allow the WebHID API on these sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_webhidblockedforurls",
+ "displayName": "Block the WebHID API on these sites",
+ "options": null
+ },
{
"id": "com.apple.managedclient.preferences_webrtcallowlegacytlsprotocols",
"displayName": "Allow legacy TLS/DTLS downgrade in WebRTC",
@@ -15401,331 +20706,110 @@
"options": null
},
{
- "id": "com.apple.managedclient.preferences_wpadquickcheckenabled",
- "displayName": "Set WPAD optimization",
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration",
+ "displayName": "Weekly scheduled scan configuration",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration_dayofweek",
+ "displayName": "Day of week",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype",
+ "displayName": "Scan type",
"options": [
{
- "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_false",
- "displayName": "Disabled",
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype_0",
+ "displayName": "quick",
"description": null
},
{
- "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_true",
- "displayName": "Enabled",
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration_scantype_1",
+ "displayName": "full",
"description": null
}
]
},
{
- "id": "com.apple.mcx.filevault2_com.apple.mcx.filevault2",
- "displayName": "Top Level Setting Group Collection",
+ "id": "com.apple.managedclient.preferences_weeklyconfiguration_timeofday",
+ "displayName": "Time of day",
"options": null
},
{
- "id": "com.apple.mcx.filevault2_defer",
- "displayName": "Defer",
- "options": {
- "id": "com.apple.mcx.filevault2_defer_true",
- "displayName": "Enabled",
- "description": null
- }
+ "id": "com.apple.managedclient.preferences_windowcaptureallowedbyorigins",
+ "displayName": "Allow Window and Tab capture by these origins",
+ "options": null
},
{
- "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout",
- "displayName": "Defer Dont Ask At User Logout",
+ "id": "com.apple.managedclient.preferences_windowmanagementallowedforurls",
+ "displayName": "Allow Window Management permission on specified sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_windowmanagementblockedforurls",
+ "displayName": "Block Window Management permission on specified sites",
+ "options": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_wpadquickcheckenabled",
+ "displayName": "Set WPAD optimization",
"options": [
{
- "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_false",
+ "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_false",
"displayName": "Disabled",
"description": null
},
{
- "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_true",
+ "id": "com.apple.managedclient.preferences_wpadquickcheckenabled_true",
"displayName": "Enabled",
"description": null
}
]
},
{
- "id": "com.apple.mcx.filevault2_deferforceatuserloginmaxbypassattempts",
- "displayName": "Defer Force At User Login Max Bypass Attempts",
- "options": null
+ "id": "com.apple.managedclient.preferences_zstdcontentencodingenabled",
+ "displayName": "Enable zstd content encoding support",
+ "options": [
+ {
+ "id": "com.apple.managedclient.preferences_zstdcontentencodingenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.managedclient.preferences_zstdcontentencodingenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
},
{
- "id": "com.apple.mcx.filevault2_enable",
- "displayName": "Enable",
+ "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled",
+ "displayName": "Single sign-on for work or school sites using this profile enabled",
"options": [
{
- "id": "com.apple.mcx.filevault2_enable_0",
- "displayName": "On",
+ "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled_false",
+ "displayName": "Disabled",
"description": null
},
{
- "id": "com.apple.mcx.filevault2_enable_1",
- "displayName": "Off",
+ "id": "com.apple.managedclient.preferences_aadwebsitessousingthisprofileenabled_true",
+ "displayName": "Enabled",
"description": null
}
]
},
{
- "id": "com.apple.mcx.filevault2_forceenableinsetupassistant",
- "displayName": "Force Enable In Setup Assistant",
+ "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass",
+ "displayName": "Ask For Secure Token Auth Bypass",
"options": [
{
- "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_false",
+ "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_false",
"displayName": "False",
"description": null
},
{
- "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.filevault2_outputpath",
- "displayName": "Output Path",
- "options": null
- },
- {
- "id": "com.apple.mcx.filevault2_password",
- "displayName": "Password",
- "options": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths",
- "displayName": "Recovery Key Rotation In Months",
- "options": [
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_0",
- "displayName": "Not configured",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_1",
- "displayName": "1 month",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_2",
- "displayName": "2 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_3",
- "displayName": "3 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_4",
- "displayName": "4 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_5",
- "displayName": "5 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_6",
- "displayName": "6 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_7",
- "displayName": "7 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_8",
- "displayName": "8 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_9",
- "displayName": "9 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_10",
- "displayName": "10 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_11",
- "displayName": "11 months",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_12",
- "displayName": "12 months",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.filevault2_showrecoverykey",
- "displayName": "Show Recovery Key",
- "options": [
- {
- "id": "com.apple.mcx.filevault2_showrecoverykey_false",
- "displayName": "Disabled",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_showrecoverykey_true",
- "displayName": "Enabled",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.filevault2_usekeychain",
- "displayName": "Use Keychain",
- "options": [
- {
- "id": "com.apple.mcx.filevault2_usekeychain_false",
- "displayName": "Disabled",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_usekeychain_true",
- "displayName": "Enabled",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.filevault2_userecoverykey",
- "displayName": "Use Recovery Key",
- "options": {
- "id": "com.apple.mcx.filevault2_userecoverykey_true",
- "displayName": "Enabled",
- "description": null
- }
- },
- {
- "id": "com.apple.mcx.filevault2_userentersmissinginfo",
- "displayName": "User Enters Missing Info",
- "options": [
- {
- "id": "com.apple.mcx.filevault2_userentersmissinginfo_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx.filevault2_userentersmissinginfo_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.filevault2_username",
- "displayName": "Username",
- "options": null
- },
- {
- "id": "com.apple.mcx.timemachine_autobackup",
- "displayName": "Auto Backup",
- "options": [
- {
- "id": "com.apple.mcx.timemachine_autobackup_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx.timemachine_autobackup_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.timemachine_backupallvolumes",
- "displayName": "Backup All Volumes",
- "options": [
- {
- "id": "com.apple.mcx.timemachine_backupallvolumes_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx.timemachine_backupallvolumes_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.timemachine_backupdesturl",
- "displayName": "Backup Destination URL",
- "options": null
- },
- {
- "id": "com.apple.mcx.timemachine_backupsizemb",
- "displayName": "Backup Size MB",
- "options": null
- },
- {
- "id": "com.apple.mcx.timemachine_backupskipsys",
- "displayName": "Backup Skip System",
- "options": [
- {
- "id": "com.apple.mcx.timemachine_backupskipsys_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx.timemachine_backupskipsys_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.timemachine_basepaths",
- "displayName": "Base Paths",
- "options": null
- },
- {
- "id": "com.apple.mcx.timemachine_com.apple.mcx.timemachine",
- "displayName": "Top Level Setting Group Collection",
- "options": null
- },
- {
- "id": "com.apple.mcx.timemachine_mobilebackups",
- "displayName": "Mobile Backups",
- "options": [
- {
- "id": "com.apple.mcx.timemachine_mobilebackups_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx.timemachine_mobilebackups_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.mcx.timemachine_skippaths",
- "displayName": "Skip Paths",
- "options": null
- },
- {
- "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass",
- "displayName": "Ask For Secure Token Auth Bypass",
- "options": [
- {
- "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_true",
+ "id": "com.apple.mcx_cachedaccounts.askforsecuretokenauthbypass_true",
"displayName": "True",
"description": null
}
@@ -16394,6 +21478,305 @@
"displayName": "Time Zone",
"options": null
},
+ {
+ "id": "com.apple.mcx.filevault2_com.apple.mcx.filevault2",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_defer",
+ "displayName": "Defer",
+ "options": {
+ "id": "com.apple.mcx.filevault2_defer_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ },
+ {
+ "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout",
+ "displayName": "Defer Dont Ask At User Logout",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_deferdontaskatuserlogout_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_deferforceatuserloginmaxbypassattempts",
+ "displayName": "Defer Force At User Login Max Bypass Attempts",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_enable",
+ "displayName": "Enable",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_enable_0",
+ "displayName": "On",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_enable_1",
+ "displayName": "Off",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_forceenableinsetupassistant",
+ "displayName": "Force Enable In Setup Assistant",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_forceenableinsetupassistant_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_outputpath",
+ "displayName": "Output Path",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_password",
+ "displayName": "Password",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths",
+ "displayName": "Recovery Key Rotation In Months",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_0",
+ "displayName": "Not configured",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_1",
+ "displayName": "1 month",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_2",
+ "displayName": "2 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_3",
+ "displayName": "3 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_4",
+ "displayName": "4 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_5",
+ "displayName": "5 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_6",
+ "displayName": "6 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_7",
+ "displayName": "7 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_8",
+ "displayName": "8 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_9",
+ "displayName": "9 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_10",
+ "displayName": "10 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_11",
+ "displayName": "11 months",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_recoverykeyrotationinmonths_12",
+ "displayName": "12 months",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_showrecoverykey",
+ "displayName": "Show Recovery Key",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_showrecoverykey_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_showrecoverykey_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_usekeychain",
+ "displayName": "Use Keychain",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_usekeychain_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_usekeychain_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_userecoverykey",
+ "displayName": "Use Recovery Key",
+ "options": {
+ "id": "com.apple.mcx.filevault2_userecoverykey_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ },
+ {
+ "id": "com.apple.mcx.filevault2_userentersmissinginfo",
+ "displayName": "User Enters Missing Info",
+ "options": [
+ {
+ "id": "com.apple.mcx.filevault2_userentersmissinginfo_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.filevault2_userentersmissinginfo_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.filevault2_username",
+ "displayName": "Username",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_autobackup",
+ "displayName": "Auto Backup",
+ "options": [
+ {
+ "id": "com.apple.mcx.timemachine_autobackup_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_autobackup_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupallvolumes",
+ "displayName": "Backup All Volumes",
+ "options": [
+ {
+ "id": "com.apple.mcx.timemachine_backupallvolumes_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupallvolumes_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupdesturl",
+ "displayName": "Backup Destination URL",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupsizemb",
+ "displayName": "Backup Size MB",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupskipsys",
+ "displayName": "Backup Skip System",
+ "options": [
+ {
+ "id": "com.apple.mcx.timemachine_backupskipsys_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_backupskipsys_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.timemachine_basepaths",
+ "displayName": "Base Paths",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_com.apple.mcx.timemachine",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_mobilebackups",
+ "displayName": "Mobile Backups",
+ "options": [
+ {
+ "id": "com.apple.mcx.timemachine_mobilebackups_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.mcx.timemachine_mobilebackups_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.mcx.timemachine_skippaths",
+ "displayName": "Skip Paths",
+ "options": null
+ },
{
"id": "com.apple.mcxmenuextras_airport.menu",
"displayName": "AirPort",
@@ -17542,7 +22925,7 @@
},
{
"id": "com.apple.proxy.http.global_proxypacurl",
- "displayName": "Proxy PAC URL (Deprecated)",
+ "displayName": "Proxy PAC URL",
"options": null
},
{
@@ -17552,12 +22935,12 @@
},
{
"id": "com.apple.proxy.http.global_proxyserver",
- "displayName": "Proxy Server (Deprecated)",
+ "displayName": "Proxy Server",
"options": null
},
{
"id": "com.apple.proxy.http.global_proxyserverport",
- "displayName": "Proxy Server Port (Deprecated)",
+ "displayName": "Proxy Server Port",
"options": null
},
{
@@ -17581,26 +22964,6 @@
"displayName": "Proxy Username",
"options": null
},
- {
- "id": "com.apple.screensaver.user_com.apple.screensaver.user",
- "displayName": "Top Level Setting Group Collection",
- "options": null
- },
- {
- "id": "com.apple.screensaver.user_idletime",
- "displayName": "Idle Time",
- "options": null
- },
- {
- "id": "com.apple.screensaver.user_modulename",
- "displayName": "Module Name",
- "options": null
- },
- {
- "id": "com.apple.screensaver.user_modulepath",
- "displayName": "Module Path",
- "options": null
- },
{
"id": "com.apple.screensaver_askforpassword",
"displayName": "Ask For Password",
@@ -17642,6 +23005,26 @@
"displayName": "Module Name",
"options": null
},
+ {
+ "id": "com.apple.screensaver.user_com.apple.screensaver.user",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.screensaver.user_idletime",
+ "displayName": "Idle Time",
+ "options": null
+ },
+ {
+ "id": "com.apple.screensaver.user_modulename",
+ "displayName": "Module Name",
+ "options": null
+ },
+ {
+ "id": "com.apple.screensaver.user_modulepath",
+ "displayName": "Module Path",
+ "options": null
+ },
{
"id": "com.apple.security.fderecoverykeyescrow_com.apple.security.fderecoverykeyescrow",
"displayName": "Top Level Setting Group Collection",
@@ -17989,7 +23372,7 @@
},
{
"id": "com.apple.softwareupdate_allowprereleaseinstallation",
- "displayName": "Allow Pre Release Installation",
+ "displayName": "Allow Pre Release Installation (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_allowprereleaseinstallation_false",
@@ -18005,7 +23388,7 @@
},
{
"id": "com.apple.softwareupdate_automaticallyinstallappupdates",
- "displayName": "Automatically Install App Updates",
+ "displayName": "Automatically Install App Updates (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_automaticallyinstallappupdates_false",
@@ -18021,7 +23404,7 @@
},
{
"id": "com.apple.softwareupdate_automaticallyinstallmacosupdates",
- "displayName": "Automatically Install Mac OS Updates",
+ "displayName": "Automatically Install Mac OS Updates (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_automaticallyinstallmacosupdates_false",
@@ -18037,7 +23420,7 @@
},
{
"id": "com.apple.softwareupdate_automaticcheckenabled",
- "displayName": "Automatic Check Enabled",
+ "displayName": "Automatic Check Enabled (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_automaticcheckenabled_false",
@@ -18053,7 +23436,7 @@
},
{
"id": "com.apple.softwareupdate_automaticdownload",
- "displayName": "Automatic Download",
+ "displayName": "Automatic Download (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_automaticdownload_false",
@@ -18074,7 +23457,7 @@
},
{
"id": "com.apple.softwareupdate_configdatainstall",
- "displayName": "Config Data Install",
+ "displayName": "Config Data Install (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_configdatainstall_false",
@@ -18090,7 +23473,7 @@
},
{
"id": "com.apple.softwareupdate_criticalupdateinstall",
- "displayName": "Critical Update Install",
+ "displayName": "Critical Update Install (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_criticalupdateinstall_false",
@@ -18106,7 +23489,7 @@
},
{
"id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install",
- "displayName": "Restrict Software Update Require Admin To Install",
+ "displayName": "Restrict Software Update Require Admin To Install (Deprecated)",
"options": [
{
"id": "com.apple.softwareupdate_restrict-software-update-require-admin-to-install_false",
@@ -18161,6 +23544,107 @@
}
]
},
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensions",
+ "displayName": "Allowed System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey",
+ "displayName": "Allowed System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey_keytobereplaced",
+ "displayName": "Team Identifier",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensiontypes",
+ "displayName": "Allowed System Extension Types",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey",
+ "displayName": "Allowed System Extension Types",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey_keytobereplaced",
+ "displayName": "Team Identifier",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowedteamidentifiers",
+ "displayName": "Allowed Team Identifiers",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowuseroverrides",
+ "displayName": "Allow User Overrides",
+ "options": [
+ {
+ "id": "com.apple.system-extension-policy_allowuseroverrides_false",
+ "displayName": "False",
+ "description": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_allowuseroverrides_true",
+ "displayName": "True",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.apple.system-extension-policy_com.apple.system-extension-policy",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions",
+ "displayName": "Non Removable From UI System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey",
+ "displayName": "ANY",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey_keytobereplaced",
+ "displayName": "Non Removable From UI System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablesystemextensions",
+ "displayName": "Non Removable System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey",
+ "displayName": "ANY",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey_keytobereplaced",
+ "displayName": "Non Removable System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_removablesystemextensions",
+ "displayName": "Removable System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_removablesystemextensions_generickey",
+ "displayName": "Removable System Extensions",
+ "options": null
+ },
+ {
+ "id": "com.apple.system-extension-policy_removablesystemextensions_generickey_keytobereplaced",
+ "displayName": "Team Identifier",
+ "options": null
+ },
{
"id": "com.apple.system.logging_com.apple.system.logging",
"displayName": "Top Level Setting Group Collection",
@@ -18427,107 +23911,6 @@
"displayName": "SOCKS Proxy",
"options": null
},
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensions",
- "displayName": "Allowed System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey",
- "displayName": "Allowed System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensions_generickey_keytobereplaced",
- "displayName": "Team Identifier",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensiontypes",
- "displayName": "Allowed System Extension Types",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey",
- "displayName": "Allowed System Extension Types",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedsystemextensiontypes_generickey_keytobereplaced",
- "displayName": "Team Identifier",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowedteamidentifiers",
- "displayName": "Allowed Team Identifiers",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_allowuseroverrides",
- "displayName": "Allow User Overrides",
- "options": [
- {
- "id": "com.apple.system-extension-policy_allowuseroverrides_false",
- "displayName": "False",
- "description": null
- },
- {
- "id": "com.apple.system-extension-policy_allowuseroverrides_true",
- "displayName": "True",
- "description": null
- }
- ]
- },
- {
- "id": "com.apple.system-extension-policy_com.apple.system-extension-policy",
- "displayName": "Top Level Setting Group Collection",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions",
- "displayName": "Non Removable From UI System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey",
- "displayName": "ANY",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablefromuisystemextensions_generickey_keytobereplaced",
- "displayName": "Non Removable From UI System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablesystemextensions",
- "displayName": "Non Removable System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey",
- "displayName": "ANY",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_nonremovablesystemextensions_generickey_keytobereplaced",
- "displayName": "Non Removable System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_removablesystemextensions",
- "displayName": "Removable System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_removablesystemextensions_generickey",
- "displayName": "Removable System Extensions",
- "options": null
- },
- {
- "id": "com.apple.system-extension-policy_removablesystemextensions_generickey_keytobereplaced",
- "displayName": "Team Identifier",
- "options": null
- },
{
"id": "com.apple.systempolicy.control_allowidentifieddevelopers",
"displayName": "Allow Identified Developers",
@@ -21141,6 +26524,22 @@
"displayName": "Plugin Bundle ID",
"options": null
},
+ {
+ "id": "com.apple.webcontent-filter_safarihistoryretentionenabled",
+ "displayName": "Safari History Retention Enabled",
+ "options": [
+ {
+ "id": "com.apple.webcontent-filter_safarihistoryretentionenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.apple.webcontent-filter_safarihistoryretentionenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.apple.webcontent-filter_serveraddress",
"displayName": "Server Address",
@@ -21156,6 +26555,40 @@
"displayName": "User Name",
"options": null
},
+ {
+ "id": "com.apple.xsan_com.apple.xsan",
+ "displayName": "Top Level Setting Group Collection",
+ "options": null
+ },
+ {
+ "id": "com.apple.xsan_fsnameservers",
+ "displayName": "FS Name Servers",
+ "options": null
+ },
+ {
+ "id": "com.apple.xsan_sanauthmethod",
+ "displayName": "San Auth Method",
+ "options": {
+ "id": "com.apple.xsan_sanauthmethod_0",
+ "displayName": "auth_secret",
+ "description": null
+ }
+ },
+ {
+ "id": "com.apple.xsan_sanconfigurls",
+ "displayName": "San Config URLs",
+ "options": null
+ },
+ {
+ "id": "com.apple.xsan_sanname",
+ "displayName": "San Name",
+ "options": null
+ },
+ {
+ "id": "com.apple.xsan_sharedsecret",
+ "displayName": "Shared Secret",
+ "options": null
+ },
{
"id": "com.apple.xsan.preferences_com.apple.xsan.preferences",
"displayName": "Top Level Setting Group Collection",
@@ -21198,38 +26631,20 @@
]
},
{
- "id": "com.apple.xsan_com.apple.xsan",
- "displayName": "Top Level Setting Group Collection",
- "options": null
- },
- {
- "id": "com.apple.xsan_fsnameservers",
- "displayName": "FS Name Servers",
- "options": null
- },
- {
- "id": "com.apple.xsan_sanauthmethod",
- "displayName": "San Auth Method",
- "options": {
- "id": "com.apple.xsan_sanauthmethod_0",
- "displayName": "auth_secret",
- "description": null
- }
- },
- {
- "id": "com.apple.xsan_sanconfigurls",
- "displayName": "San Config URLs",
- "options": null
- },
- {
- "id": "com.apple.xsan_sanname",
- "displayName": "San Name",
- "options": null
- },
- {
- "id": "com.apple.xsan_sharedsecret",
- "displayName": "Shared Secret",
- "options": null
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.accesscontrolallowmethodsincorspreflightspecconformant",
+ "displayName": "Make Access-Control-Allow-Methods matching in CORS preflight spec conformant",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.accesscontrolallowmethodsincorspreflightspecconformant_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.accesscontrolallowmethodsincorspreflightspecconformant_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.accessibilityimagelabelsenabled",
@@ -21247,6 +26662,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled",
+ "displayName": "Enable additional search box in browser",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.additionalsearchboxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.addressbareditingenabled",
"displayName": "Configure address bar editing",
@@ -21265,7 +26696,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled",
- "displayName": "Enable Microsoft Search in Bing suggestions in the address bar",
+ "displayName": "Enable Microsoft Search in Bing suggestions in the address bar (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarmicrosoftsearchinbingproviderenabled_false",
@@ -21279,6 +26710,38 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled",
+ "displayName": "Enable Microsoft Bing trending suggestions in the address bar",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbartrendingsuggestenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled",
+ "displayName": "Enable Work Search suggestions in the address bar",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.addressbarworksearchresultsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.adssettingforintrusiveadssites",
"displayName": "Ads setting for sites with intrusive ads",
@@ -21311,6 +26774,38 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled",
+ "displayName": "Enables DALL-E themes generation",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.aigenthemesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled",
+ "displayName": "Allow pages with Cache-Control: no-store header to enter back/forward cache",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowbackforwardcacheforcachecontrolnostorepageenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.allowdeletingbrowserhistory",
"displayName": "Enable deleting browser and download history",
@@ -21334,7 +26829,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu",
- "displayName": "Allow users to access the games menu",
+ "displayName": "Allow users to access the games menu (Deprecated)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.allowgamesmenu_false",
@@ -21396,11 +26891,43 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications",
+ "displayName": "Allows system notifications",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowsystemnotifications_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.allowtrackingforurls",
"displayName": "Configure tracking prevention exceptions for specific sites",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowwebauthnwithbrokentlscerts",
+ "displayName": "Allow Web Authentication requests on sites with broken TLS certificates.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowwebauthnwithbrokentlscerts_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.allowwebauthnwithbrokentlscerts_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.alternateerrorpagesenabled",
"displayName": "Suggest similar pages when a webpage can't be found",
@@ -21486,6 +27013,38 @@
"displayName": "Sites that can access audio capture devices without requesting permission",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled",
+ "displayName": "Configure auto discard sleeping tabs",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended",
+ "displayName": "Configure auto discard sleeping tabs (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.autodiscardsleepingtabsenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.autofilladdressenabled",
"displayName": "Enable AutoFill for addresses",
@@ -21613,9 +27172,19 @@
"displayName": "Block multiple automatic downloads in quick succession on specific sites",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticfullscreenallowedforurls",
+ "displayName": "Allow automatic full screen on specified sites",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.automaticfullscreenblockedforurls",
+ "displayName": "Block automatic full screen on specified sites",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault",
- "displayName": "Configure Automatic HTTPS",
+ "displayName": "Configure Automatic HTTPS (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_disableautomatichttps",
@@ -21636,7 +27205,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended",
- "displayName": "Configure Automatic HTTPS (users can override)",
+ "displayName": "Configure Automatic HTTPS (Obsolete) (users can override)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.automatichttpsdefault_recommended_disableautomatichttps",
@@ -21707,6 +27276,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled",
+ "displayName": "Control the behavior for the cancel dialog produced by the beforeunload event (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.beforeunloadeventcancelbypreventdefaultenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.blockexternalextensions",
"displayName": "Blocks external extensions from being installed",
@@ -21755,6 +27340,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies",
+ "displayName": "Block truncated cookies (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.blocktruncatedcookies_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.browsernetworktimequeriesenabled",
"displayName": "Allow queries to a Browser Network Time service",
@@ -21776,6 +27377,79 @@
"displayName": "Browsing Data Lifetime Settings",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled",
+ "displayName": "Allow pages to use the built-in AI APIs.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.builtinaiapisenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed",
+ "displayName": "Allow users to manage installed CA certificates.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_all",
+ "displayName": "Allow users to manage all certificates",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_useronly",
+ "displayName": "Allow users to manage user certificates",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificatemanagementallowed_none",
+ "displayName": "Disallow users from managing certificates",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificates",
+ "displayName": "TLS server certificates that should be trusted by Microsoft Edge",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cacertificateswithconstraints",
+ "displayName": "TLS certificates that should be trusted by Microsoft Edge for server authentication with constraints",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cadistrustedcertificates",
+ "displayName": "TLS certificates that should be distrusted by Microsoft Edge for server authentication",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.cahintcertificates",
+ "displayName": "TLS certificates that are not trusted or distrusted but can be used in path-building for server authentication",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled",
+ "displayName": "Use user-added TLS certificates from platform trust stores for server authentication",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.caplatformintegrationenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforcas",
"displayName": "Disable Certificate Transparency enforcement for a list of subjectPublicKeyInfo hashes",
@@ -21783,7 +27457,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.certificatetransparencyenforcementdisabledforlegacycas",
- "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities",
+ "displayName": "Disable Certificate Transparency enforcement for a list of legacy certificate authorities (Obsolete)",
"options": null
},
{
@@ -21864,6 +27538,11 @@
"id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist",
"displayName": "Block access to a specified list of services and export targets in Collections",
"options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_pinterest_suggestions",
+ "displayName": "Pinterest suggestions",
+ "description": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_collections_share",
"displayName": "Sharing of Collections",
@@ -21888,6 +27567,43 @@
"id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_onenote",
"displayName": "Send collection to Microsoft OneNote",
"description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.collectionsservicesandexportsblocklist_send_pinterest",
+ "displayName": "Send collection to Pinterest",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled",
+ "displayName": "Control access to Microsoft 365 Copilot writing assistance in Microsoft Edge for Business",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.composeinlineenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled",
+ "displayName": "Enable compression dictionary transport support",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.compressiondictionarytransportenabled_true",
+ "displayName": "Enabled",
+ "description": null
}
]
},
@@ -21986,6 +27702,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled",
+ "displayName": "Configure default state of Allow extensions from other stores setting",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.controldefaultstateofallowextensionfromotherstoressettingenabled_recommended",
"displayName": "Configure default state of Allow extensions from other stores setting (users can override)",
@@ -22017,6 +27749,38 @@
"displayName": "Limit cookies from specific websites to the current session",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext",
+ "displayName": "Control Copilot with Commercial Data Protection access to page context for Microsoft Entra ID profiles (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotcdppagecontext_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext",
+ "displayName": "Control Copilot access to page context for Microsoft Entra ID profiles",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.copilotpagecontext_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.corsnonwildcardrequestheaderssupport",
"displayName": "CORS non-wildcard request header support enabled",
@@ -22033,6 +27797,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain",
+ "displayName": "Control whether passkey creation will default to iCloud Keychain.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.createpasskeysinicloudkeychain_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.crossoriginwebassemblymodulesharingenabled",
"displayName": "Specifies whether WebAssembly modules can be sent cross-origin (Obsolete)",
@@ -22051,7 +27831,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled",
- "displayName": "Enable CryptoWallet feature",
+ "displayName": "Enable CryptoWallet feature (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.cryptowalletenabled_false",
@@ -22065,23 +27845,55 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled",
+ "displayName": "Controls whether the deprecated :--foo syntax for CSS custom state is enabled (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.csscustomstatedeprecatedsyntaxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.customhelplink",
"displayName": "Specify custom help link",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled",
+ "displayName": "Data URL support for SVGUseElement",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.dataurlinsvguseenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting",
"displayName": "Default automatic downloads setting",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting_allowautomaticdownloads",
- "displayName": "Allow all websites to perform automatic downloads",
+ "displayName": "Allow all websites to perform multiple downloads without requiring a user gesture between each download.",
"description": null
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.defaultautomaticdownloadssetting_blockautomaticdownloads",
- "displayName": "Don't allow any website to perform automatic downloads",
+ "displayName": "Prevent all websites from performing multiple downloads, even after a user gesture.",
"description": null
}
]
@@ -22224,6 +28036,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting",
+ "displayName": "Control use of JavaScript optimizers",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting_allowjavascriptoptimizer",
+ "displayName": "Enable advanced JavaScript optimizations on all sites",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptoptimizersetting_blockjavascriptoptimizer",
+ "displayName": "Disable advanced JavaScript optimizations on all sites",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.defaultjavascriptsetting",
"displayName": "Default JavaScript setting",
@@ -22490,6 +28318,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting",
+ "displayName": "Default setting for third-party storage partitioning (Deprecated)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting_allowpartitioning",
+ "displayName": "Allow third-party storage partitioning by default.",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultthirdpartystoragepartitioningsetting_blockpartitioning",
+ "displayName": "Disable third-party storage partitioning.",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwebbluetoothguardsetting",
"displayName": "Control use of the Web Bluetooth API",
@@ -22538,6 +28382,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting",
+ "displayName": "Default Window Management permission setting",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting_blockwindowmanagement",
+ "displayName": "Denies the Window Management permission on all sites by default",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.defaultwindowmanagementsetting_askwindowmanagement",
+ "displayName": "Ask every time a site wants obtain the Window Management permission",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.definepreferredlanguages",
"displayName": "Define an ordered list of preferred languages that websites should display in if the site supports the language",
@@ -22559,6 +28419,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled",
+ "displayName": "Enable deleting undecryptable passwords",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.deletingundecryptablepasswordsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.developertoolsavailability",
"displayName": "Control where developer tools can be used",
@@ -22596,6 +28472,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled",
+ "displayName": "Enable Discover access to page contents for AAD profiles (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.discoverpagecontextenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.displaycapturepermissionspolicyenabled",
"displayName": "Specifies whether the display-capture permissions-policy is checked or skipped (Obsolete)",
@@ -22737,6 +28629,38 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled",
+ "displayName": "Machine learning powered autofill suggestions",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended",
+ "displayName": "Machine learning powered autofill suggestions (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeautofillmlenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgecollectionsenabled",
"displayName": "Enable the Collections feature",
@@ -22803,7 +28727,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled",
- "displayName": "Enhance images enabled",
+ "displayName": "Enhance images enabled (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgeenhanceimagesenabled_false",
@@ -22817,9 +28741,25 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext",
+ "displayName": "Control Copilot access to Microsoft Edge page content for Entra account user profiles when using Copilot in the Microsoft Edge sidepane",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgeentracopilotpagecontext_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled",
- "displayName": "Enable Follow service in Microsoft Edge",
+ "displayName": "Enable Follow service in Microsoft Edge (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgefollowenabled_false",
@@ -22833,6 +28773,38 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled",
+ "displayName": "Control access to AI-enhanced search in History",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgehistoryaisearchenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled",
+ "displayName": "Microsoft Edge management extensions feedback enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgemanagementextensionsfeedbackenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgeshoppingassistantenabled",
"displayName": "Shopping in Microsoft Edge Enabled",
@@ -22865,6 +28837,85 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostallowlist",
+ "displayName": "Allow specific apps to be opened in Microsoft Edge sidebar",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostblocklist",
+ "displayName": "Control which apps cannot be opened in Microsoft Edge sidebar",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgesidebarappurlhostforcelist",
+ "displayName": "Control which apps are forced to be shown in Microsoft Edge sidebar",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled",
+ "displayName": "Enable Wallet Checkout feature",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended",
+ "displayName": "Enable Wallet Checkout feature (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletcheckoutenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled",
+ "displayName": "Edge Wallet E-Tree Enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended",
+ "displayName": "Edge Wallet E-Tree Enabled (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.edgewalletetreeenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.edgeworkspacesenabled",
"displayName": "Enable Workspaces",
@@ -22943,7 +28994,23 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymode_basicmode",
- "displayName": "Basic mode",
+ "displayName": "(Deprecated) Basic mode",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass",
+ "displayName": "Allow users to bypass Enhanced Security Mode",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeallowuserbypass_true",
+ "displayName": "Enabled",
"description": null
}
]
@@ -22974,6 +29041,38 @@
"displayName": "Configure the list of domains for which enhance security mode will always be enforced",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled",
+ "displayName": "Manage the indicator UI of the Enhanced Security Mode (ESM) feature in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeindicatoruienabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled",
+ "displayName": "Manage opt-out user experience for Enhanced Security Mode (ESM) in Microsoft Edge (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.enhancesecuritymodeoptoutuxenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.enterprisehardwareplatformapienabled",
"displayName": "Allow managed extensions to use the Enterprise Hardware Platform API",
@@ -23008,7 +29107,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled",
- "displayName": "Re-enable the Event.path API until Microsoft Edge version 115",
+ "displayName": "Re-enable the Event.path API until Microsoft Edge version 115 (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.eventpathenabled_false",
@@ -23032,6 +29131,11 @@
"displayName": "Disable download file type extension-based warnings for specified file types on domains",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.exemptsmartscreendownloadwarnings",
+ "displayName": "Disable SmartScreen AppRep based warnings for specified file types on specified domains",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.extensionallowedtypes",
"displayName": "Configure allowed extension types",
@@ -23068,6 +29172,27 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings",
+ "displayName": "Control the availability of developer mode on extensions page",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings_allow",
+ "displayName": "Allow the usage of developer mode on extensions page",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensiondevelopermodesettings_disallow",
+ "displayName": "Do not allow the usage of developer mode on extensions page",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionextendedbackgroundlifetimeforportconnectionstourls",
+ "displayName": "Configure a list of origins that grant an extended background lifetime to connecting extensions.",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstallallowlist",
"displayName": "Allow specific extensions to be installed",
@@ -23088,11 +29213,78 @@
"displayName": "Configure extension and user script install sources",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstalltypeblocklist",
+ "displayName": "Blocklist for extension install types",
+ "options": {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensioninstalltypeblocklist_command_line",
+ "displayName": "Blocks extensions from being loaded from command line",
+ "description": null
+ }
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability",
+ "displayName": "Control Manifest v2 extension availability",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_default",
+ "displayName": "Default browser behavior",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_disable",
+ "displayName": "Manifest v2 is disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_enable",
+ "displayName": "Manifest v2 is enabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionmanifestv2availability_enableforforcedextensions",
+ "displayName": "Manifest v2 is enabled for forced extensions only",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsettings",
"displayName": "Configure extension management settings",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled",
+ "displayName": "Extensions Performance Detector enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended",
+ "displayName": "Extensions Performance Detector enabled (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.extensionsperformancedetectorenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.externalprotocoldialogshowalwaysopencheckbox",
"displayName": "Show an \"Always open\" checkbox in external protocol dialog",
@@ -23162,6 +29354,11 @@
"displayName": "Fetch keepalive duration on shutdown",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.fileordirectorypickerwithoutgestureallowedfororigins",
+ "displayName": "Allow file or directory picker APIs to be called without prior user gesture",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.filesystemreadaskforurls",
"displayName": "Allow read access via the File System API on these sites",
@@ -23237,7 +29434,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent",
- "displayName": "Enable or disable freezing the User-Agent string at major version 99",
+ "displayName": "Enable or disable freezing the User-Agent string at major version 99 (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.forcemajorversiontominorpositioninuseragent_default",
@@ -23314,6 +29511,43 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled",
+ "displayName": "Enable Gamer Mode (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended",
+ "displayName": "Enable Gamer Mode (Obsolete) (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.gamermodeenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.geolocationblockedforurls",
+ "displayName": "Block geolocation on these sites",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.globallyscopehttpauthcacheenabled",
"displayName": "Enable globally scoped HTTP auth cache",
@@ -23330,6 +29564,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled",
+ "displayName": "Guided Switch Enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.guidedswitchenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.homepageisnewtabpage",
"displayName": "Set the new tab page as the home page",
@@ -23377,6 +29627,53 @@
"displayName": "Configure the list of names that will bypass the HSTS policy check",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpallowlist",
+ "displayName": "HTTP Allowlist",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode",
+ "displayName": "Allow HTTPS-Only Mode to be enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_allowed",
+ "displayName": "Don't restrict users' HTTPS-Only Mode setting",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_disallowed",
+ "displayName": "Don't allow users to enable any HTTPS-Only Mode",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_force_enabled",
+ "displayName": "Force enable HTTPS-Only Mode in Strict mode",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsonlymode_force_balanced_enabled",
+ "displayName": "Force enable HTTPS-Only Mode in Balanced Mode",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled",
+ "displayName": "Enable automatic HTTPS upgrades",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.httpsupgradesenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.hubssidebarenabled",
"displayName": "Show Hubs Sidebar",
@@ -23409,6 +29706,72 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeout",
+ "displayName": "Delay before running idle actions",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions",
+ "displayName": "Actions to run when the computer is idle",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_close_browsers",
+ "displayName": "Close Browsers",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_browsing_history",
+ "displayName": "Clear Browsing History",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_download_history",
+ "displayName": "Clear Download History",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_cookies_and_other_site_data",
+ "displayName": "Clear Cookies and Other Site Data",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_cached_images_and_files",
+ "displayName": "Clear Cached Images and Files",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_password_signin",
+ "displayName": "Clear Password sign in",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_autofill",
+ "displayName": "Clear Autofill",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_clear_site_settings",
+ "displayName": "Clear Site Settings",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_reload_pages",
+ "displayName": "Reload Pages",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_sign_out",
+ "displayName": "Sign Out",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.idletimeoutactions_close_tabs",
+ "displayName": "Close Tabs",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.imagesallowedforurls",
"displayName": "Allow images on these sites",
@@ -23421,7 +29784,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled",
- "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge",
+ "displayName": "Enable Grammar Tools feature within Immersive Reader in Microsoft Edge (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereadergrammartoolsenabled_false",
@@ -23437,7 +29800,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled",
- "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge",
+ "displayName": "Enable Picture Dictionary feature within Immersive Reader in Microsoft Edge (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.immersivereaderpicturedictionaryenabled_false",
@@ -23900,7 +30263,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled",
- "displayName": "Enable warnings for insecure forms",
+ "displayName": "Enable warnings for insecure forms (Deprecated)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.insecureformswarningsenabled_false",
@@ -23916,7 +30279,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed",
- "displayName": "Specifies whether to allow websites to make requests to more-private network endpoints",
+ "displayName": "Specifies whether to allow websites to make requests to any network endpoint in an insecure manner. (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowed_false",
@@ -23932,7 +30295,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.insecureprivatenetworkrequestsallowedforurls",
- "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner",
+ "displayName": "Allow the listed sites to make requests to more-private network endpoints from in an insecure manner (Obsolete)",
"options": null
},
{
@@ -24187,6 +30550,22 @@
"displayName": "Configure the pixel adjustment between window.open widths sourced from IE mode pages vs. Edge mode pages",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationzoneidentifiermhtfileallowed",
+ "displayName": "Automatically open downloaded MHT or MHTML files from the web in Internet Explorer mode",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationzoneidentifiermhtfileallowed_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerintegrationzoneidentifiermhtfileallowed_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorermodecleardataonexitenabled",
"displayName": "Clear history for IE and IE mode every time you exit",
@@ -24267,6 +30646,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive",
+ "displayName": "Keep the active Microsoft Edge window with an Internet Explorer mode tab always in the foreground.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorersetforegroundwhenactive_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.internetexplorerzoomdisplay",
"displayName": "Display zoom in IE Mode tabs with DPI Scale included like it is in Internet Explorer",
@@ -24319,6 +30714,32 @@
"displayName": "Block JavaScript from using JIT on these sites",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptoptimizerallowedforsites",
+ "displayName": "Allow JavaScript optimization on these sites",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.javascriptoptimizerblockedforsites",
+ "displayName": "Block JavaScript optimizations on these sites",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled",
+ "displayName": "Enable keyboard focusable scrollers (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.keyboardfocusablescrollersenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabled",
"displayName": "Enable default legacy SameSite cookie behavior setting (Obsolete)",
@@ -24337,12 +30758,12 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.legacysamesitecookiebehaviorenabledfordomainlist",
- "displayName": "Revert to legacy SameSite behavior for cookies on specified sites",
+ "displayName": "Revert to legacy SameSite behavior for cookies on specified sites (Obsolete)",
"options": null
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled",
- "displayName": "Enable the linked account feature",
+ "displayName": "Enable the linked account feature (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.linkedaccountenabled_false",
@@ -24372,6 +30793,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled",
+ "displayName": "Allows users to translate videos to different languages.",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.livevideotranslationenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.localbrowserdatashareenabled",
"displayName": "Enable Windows to search local Microsoft Edge browsing data",
@@ -24404,6 +30841,48 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessallowedforurls",
+ "displayName": "Allow sites to make requests to local network endpoints.",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessblockedforurls",
+ "displayName": "Block sites from making requests to local network endpoints.",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled",
+ "displayName": "Specifies whether to block requests from public websites to devices on a user's local network. (Deprecated)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout",
+ "displayName": "Specifies whether to opt out of Local Network Access restrictions",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.localnetworkaccessrestrictionstemporaryoptout_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.localprovidersenabled",
"displayName": "Allow suggestions from local providers",
@@ -24456,6 +30935,43 @@
"displayName": "Manage Search Engines (users can override)",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.mandatoryextensionsforinprivatenavigation",
+ "displayName": "Specify extensions users must allow in order to navigate using InPrivate mode",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled",
+ "displayName": "Control whether Microsoft 365 Copilot Chat shows in the Microsoft Edge for Business toolbar",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended",
+ "displayName": "Control whether Microsoft 365 Copilot Chat shows in the Microsoft Edge for Business toolbar (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.microsoft365copilotchaticonenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.microsoftedgeinsiderpromotionenabled",
"displayName": "Microsoft Edge Insider Promotion Enabled",
@@ -24536,6 +31052,38 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled",
+ "displayName": "Enable deprecated/removed Mutation Events (Obsolete)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.mutationeventsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly",
+ "displayName": "Force Windows executable Native Messaging hosts to launch directly",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.nativehostsexecutableslaunchdirectly_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.nativemessagingallowlist",
"displayName": "Control which native messaging hosts users can use",
@@ -24678,14 +31226,51 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled",
+ "displayName": "Disable Bing chat entry-points on Microsoft Edge Enterprise new tab page",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagebingchatenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogo",
"displayName": "Set new tab page company logo (Obsolete)",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogobackplatecolor",
+ "displayName": "Set the company logo backplate color on the new tab page.",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled",
+ "displayName": "Hide the company logo on the Microsoft Edge new tab page",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecompanylogoenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled",
- "displayName": "Allow Microsoft News content on the new tab page",
+ "displayName": "Allow Microsoft content on the new tab page",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.newtabpagecontentenabled_false",
@@ -24857,6 +31442,58 @@
"displayName": "Block notifications on specific sites",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.onbulkdataentryenterpriseconnector",
+ "displayName": "Configuration policy for bulk data entry for Microsoft Edge for Business Data Loss Prevention Connectors",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.onfileattachedenterpriseconnector",
+ "displayName": "Configuration policy for files attached for Microsoft Edge for Business Data Loss Prevention Connectors",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.onprintenterpriseconnector",
+ "displayName": "Configuration policy for print for Microsoft Edge for Business Data Loss Prevention Connectors",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.onsecurityevententerpriseconnector",
+ "displayName": "Configuration policy for Microsoft Edge for Business Reporting Connectors",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended",
+ "displayName": "Allow the use of your organization's branding assets from Microsoft Entra on the profile-related UI of a work or school profile (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationalbrandingonworkprofileuienabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended",
+ "displayName": "Allow your organization's logo from Microsoft Entra to be overlaid on the Microsoft Edge app icon of a work or school profile (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.organizationlogooverlayonappiconenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.originagentclusterdefaultenabled",
"displayName": "Origin-keyed agent clustering enabled by default",
@@ -24905,6 +31542,70 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage",
+ "displayName": "Manage Blob URL Partitioning During Fetching and Navigation",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.partitionedbloburlusage_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled",
+ "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended",
+ "displayName": "Prevent passwords from being deleted if any Edge settings is enabled to delete browsing data when Microsoft Edge closes (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passworddeleteonbrowsercloseenabled_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled",
+ "displayName": "Enable exporting saved passwords from Password Manager",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordexportenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.passwordgeneratorenabled",
"displayName": "Allow users to get a strong password suggestion whenever they are creating an account online",
@@ -25032,6 +31733,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled",
+ "displayName": "Enable Password reveal button",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.passwordrevealenabled_recommended",
"displayName": "Enable Password reveal button (users can override)",
@@ -25080,6 +31797,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled",
+ "displayName": "Use out-of-process iframe PDF Viewer",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pdfvieweroutofprocessiframeenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.pdfxfaenabled",
"displayName": "XFA support in native PDF reader enabled",
@@ -25144,6 +31877,70 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled",
+ "displayName": "Personalize my top sites in Customize Sidebar enabled by default",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.personalizetopsitesincustomizesidebarenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled",
+ "displayName": "Enable Picture in Picture overlay feature on supported webpages in Microsoft Edge",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pictureinpictureoverlayenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton",
+ "displayName": "Pin browser essentials toolbar button",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended",
+ "displayName": "Pin browser essentials toolbar button (users can override)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.pinbrowseressentialstoolbarbutton_recommended_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.pluginsallowedforurls",
"displayName": "Allow the Adobe Flash plug-in on specific sites (Obsolete)",
@@ -25164,6 +31961,27 @@
"displayName": "Block pop-up windows on specific sites",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.precisegeolocationallowedforurls",
+ "displayName": "Allow precise geolocation on these sites",
+ "options": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled",
+ "displayName": "Allow SpeculationRules prefetch for ServiceWorker-controlled URLs",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.prefetchwithserviceworkerenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.preventsmartscreenpromptoverride",
"displayName": "Prevent bypassing Microsoft Defender SmartScreen prompts for sites",
@@ -25196,6 +32014,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride",
+ "displayName": "Prevent bypassing Edge Website Typo Protection prompts for sites",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.preventtyposquattingpromptoverride_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.primarypasswordsetting",
"displayName": "Configures a setting that asks users to enter their device password while using password autofill",
@@ -25343,6 +32177,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault",
+ "displayName": "Print PDF as Image Default",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.printpdfasimagedefault_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.printpostscriptmode",
"displayName": "Print PostScript Mode",
@@ -25464,6 +32314,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled",
+ "displayName": "Enable proactive authentication",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.proactiveauthworkflowenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.promptfordownloadlocation",
"displayName": "Ask where to save downloaded files",
@@ -25611,6 +32477,11 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.registeredprotocolhandlers",
+ "displayName": "Register protocol handlers",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.registeredprotocolhandlers_recommended",
"displayName": "Register protocol handlers (users can override)",
@@ -25618,7 +32489,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled",
- "displayName": "Configure Related Matches in Find on Page",
+ "displayName": "Configure Related Matches in Find on Page (Obsolete)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.relatedmatchescloudserviceenabled_false",
@@ -25632,6 +32503,27 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled",
+ "displayName": "Enable Related Website Sets (Deprecated)",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.relatedwebsitesetsoverrides",
+ "displayName": "Override Related Website Sets. (Deprecated)",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.resolvenavigationerrorsusewebservice",
"displayName": "Enable resolution of navigation errors using a web service",
@@ -25666,7 +32558,7 @@
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup",
- "displayName": "Action to take on startup",
+ "displayName": "Action to take on Microsoft Edge startup",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisnewtabpage",
@@ -25682,12 +32574,17 @@
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupisurls",
"displayName": "Open a list of URLs",
"description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_restoreonstartupislastsessionandurls",
+ "displayName": "Open a list of URLs and restore the last session",
+ "description": null
}
]
},
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended",
- "displayName": "Action to take on startup (users can override)",
+ "displayName": "Action to take on Microsoft Edge startup (users can override)",
"options": [
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisnewtabpage",
@@ -25703,6 +32600,11 @@
"id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupisurls",
"displayName": "Open a list of URLs",
"description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.restoreonstartup_recommended_restoreonstartupislastsessionandurls",
+ "displayName": "Open a list of URLs and restore the last session",
+ "description": null
}
]
},
@@ -25806,6 +32708,11 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.scarewareblockerallowlistdomains",
+ "displayName": "Configure the list of domains where Microsoft Edge Scareware blockers don't run",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.screencaptureallowed",
"displayName": "Allow or deny screen capture",
@@ -25827,6 +32734,11 @@
"displayName": "Allow Desktop, Window, and Tab capture by these origins",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.screencapturewithoutgestureallowedfororigins",
+ "displayName": "Allow screen capture without prior user gesture",
+ "options": null
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.scrolltotextfragmentenabled",
"displayName": "Enable scrolling to text specified in URL fragments",
@@ -25875,6 +32787,22 @@
}
]
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled",
+ "displayName": "Search for image enabled",
+ "options": [
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled_false",
+ "displayName": "Disabled",
+ "description": null
+ },
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.searchforimageenabled_true",
+ "displayName": "Enabled",
+ "description": null
+ }
+ ]
+ },
{
"id": "com.microsoft.edge.mamedgeappconfigsettings.searchinsidebarenabled",
"displayName": "Search in Sidebar enabled",
@@ -25933,6 +32861,22 @@
"displayName": "Websites or domains that don't need permission to use direct Security Key attestation",
"options": null
},
+ {
+ "id": "com.microsoft.edge.mamedgeappconfigsettings.selectparserrelaxationenabled",
+ "displayName": "Controls whether the new HTML parser behavior for the
+ {isGlobal && (
+
+
+
+
+
+ )}
{external && (
@@ -169,5 +189,6 @@ MobileNavItem.propTypes = {
icon: PropTypes.node,
openImmediately: PropTypes.bool,
path: PropTypes.string,
+ scope: PropTypes.string,
title: PropTypes.string.isRequired
};
diff --git a/src/layouts/mobile-nav.js b/src/layouts/mobile-nav.js
index 537e57b6b475..334914c822db 100644
--- a/src/layouts/mobile-nav.js
+++ b/src/layouts/mobile-nav.js
@@ -40,6 +40,7 @@ const reduceChildRoutes = ({ acc, depth, item, pathname }) => {
key={item.title}
openImmediately={partialMatch}
path={item.path}
+ scope={item.scope}
title={item.title}
>
{
icon={item.icon}
key={item.title}
path={item.path}
+ scope={item.scope}
title={item.title}
/>
);
diff --git a/src/layouts/side-nav-bookmarks.js b/src/layouts/side-nav-bookmarks.js
index 027513c34635..88dd739a05ca 100644
--- a/src/layouts/side-nav-bookmarks.js
+++ b/src/layouts/side-nav-bookmarks.js
@@ -24,7 +24,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
const { bookmarks, setBookmarks } = useUserBookmarks();
const [open, setOpen] = useState(settings.bookmarksOpen ?? false);
const reorderMode = settings.bookmarkReorderMode || "arrows";
- const locked = settings.bookmarkLocked ?? false;
+ const locked = settings.bookmarkLocked ?? true;
const [sortOrder, setSortOrder] = useState(settings.bookmarkSortOrder || "custom");
const [dragIndex, setDragIndex] = useState(null);
const [dragOverIndex, setDragOverIndex] = useState(null);
@@ -51,7 +51,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
updatedBookmarks[index - 1] = temp;
setBookmarks(updatedBookmarks);
},
- [bookmarks, setBookmarks]
+ [bookmarks, setBookmarks],
);
const moveBookmarkDown = useCallback(
@@ -63,7 +63,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
updatedBookmarks[index + 1] = temp;
setBookmarks(updatedBookmarks);
},
- [bookmarks, setBookmarks]
+ [bookmarks, setBookmarks],
);
const removeBookmark = useCallback(
@@ -75,7 +75,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
setBookmarks(updatedBookmarks);
}
},
- [bookmarks, setBookmarks]
+ [bookmarks, setBookmarks],
);
const animatedMoveUp = useCallback(
@@ -113,7 +113,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
setAnimatingPair(null);
}, 250);
},
- [animatingPair, bookmarks, moveBookmarkDown]
+ [animatingPair, bookmarks, moveBookmarkDown],
);
const triggerSortFlash = useCallback(() => {
@@ -154,7 +154,7 @@ export const SideNavBookmarks = ({ collapse = false }) => {
setDragIndex(null);
setDragOverIndex(null);
},
- [dragIndex, bookmarks, setBookmarks]
+ [dragIndex, bookmarks, setBookmarks],
);
const handleDragEnd = useCallback(() => {
diff --git a/src/layouts/side-nav-item.js b/src/layouts/side-nav-item.js
index ca6bbdd812ea..7b18d6ddc738 100644
--- a/src/layouts/side-nav-item.js
+++ b/src/layouts/side-nav-item.js
@@ -7,6 +7,7 @@ import ArrowTopRightOnSquareIcon from "@heroicons/react/24/outline/ArrowTopRight
import { Box, ButtonBase, Collapse, SvgIcon, Stack } from "@mui/material";
import BookmarkBorderIcon from "@mui/icons-material/BookmarkBorder";
import BookmarkIcon from "@mui/icons-material/Bookmark";
+import LanguageIcon from "@mui/icons-material/Language";
import { useUserBookmarks } from "../hooks/use-user-bookmarks";
import { useSettings } from "../hooks/use-settings";
@@ -20,9 +21,12 @@ export const SideNavItem = (props) => {
icon,
openImmediately = false,
path,
+ scope,
title,
} = props;
+ const isGlobal = scope === "global";
+
const [open, setOpen] = useState(openImmediately);
const [hovered, setHovered] = useState(false);
const { bookmarks, setBookmarks } = useUserBookmarks();
@@ -215,6 +219,24 @@ export const SideNavItem = (props) => {
>
{title}
+ {isGlobal && (
+
+
+
+
+
+ )}
{external && (
{
key={item.title}
openImmediately={item.openImmediately}
path={item.path}
+ scope={item.scope}
title={item.title}
type={item.type}
>
@@ -92,6 +93,7 @@ const reduceChildRoutes = ({ acc, collapse, depth, item, pathname }) => {
icon={item.icon}
key={item.title}
path={item.path}
+ scope={item.scope}
title={item.title}
/>,
);
diff --git a/src/pages/cipp/logs/index.js b/src/pages/cipp/logs/index.js
index 55dc8bdcac75..1cbd2fa8e02d 100644
--- a/src/pages/cipp/logs/index.js
+++ b/src/pages/cipp/logs/index.js
@@ -18,6 +18,7 @@ import { useForm } from "react-hook-form";
import CippFormComponent from "../../../components/CippComponents/CippFormComponent";
import { FunnelIcon, XMarkIcon } from "@heroicons/react/24/outline";
import { EyeIcon } from "@heroicons/react/24/outline";
+import { useSettings } from "../../../hooks/use-settings.js";
const simpleColumns = [
"DateTime",
@@ -31,6 +32,10 @@ const simpleColumns = [
"LogData",
];
+const offcanvas = {
+ extendedInfoFields: ["DateTime", "API", "Severity", "Message", "User", "AppId", "IP", "LogData"],
+};
+
const apiUrl = "/api/Listlogs";
const pageTitle = "Logbook Results";
@@ -59,6 +64,8 @@ const Page = () => {
const [endDate, setEndDate] = useState(null); // State for end date filter
const [username, setUsername] = useState(null); // State for username filter
const [severity, setSeverity] = useState(null); // State for severity filter
+ const settings = useSettings(); // Hook to access settings
+ const currentTenant = settings?.currentTenant;
// Watch date fields to show warning for large date ranges
const watchStartDate = formControl.watch("startDate");
@@ -304,16 +311,18 @@ const Page = () => {
title={pageTitle}
apiUrl={apiUrl}
simpleColumns={simpleColumns}
- queryKey={`Listlogs-${startDate}-${endDate}-${username}-${severity}-${filterEnabled}`}
- tenantInTitle={false}
+ queryKey={`Listlogs-${startDate}-${endDate}-${username}-${severity}-${filterEnabled}-${currentTenant}`}
+ tenantInTitle={true}
apiData={{
StartDate: startDate, // Pass start date filter from state
EndDate: endDate, // Pass end date filter from state
User: username, // Pass username filter from state
Severity: severity, // Pass severity filter from state
Filter: filterEnabled, // Pass filter toggle state
+ Tenant: currentTenant, // Pass current tenant from settings
}}
actions={actions}
+ offCanvas={offcanvas}
/>
);
};
diff --git a/src/pages/email/administration/mailboxes/index.js b/src/pages/email/administration/mailboxes/index.js
index 3a7af2fa1223..65f190eff94f 100644
--- a/src/pages/email/administration/mailboxes/index.js
+++ b/src/pages/email/administration/mailboxes/index.js
@@ -61,7 +61,6 @@ const Page = () => {
"recipientTypeDetails", // Recipient Type Details
"UPN", // User Principal Name
"primarySmtpAddress", // Primary Email Address
- "recipientType", // Recipient Type
"AdditionalEmailAddresses", // Additional Email Addresses
"CacheTimestamp", // Cache Timestamp
]
@@ -70,7 +69,6 @@ const Page = () => {
"recipientTypeDetails", // Recipient Type Details
"UPN", // User Principal Name
"primarySmtpAddress", // Primary Email Address
- "recipientType", // Recipient Type
"AdditionalEmailAddresses", // Additional Email Addresses
"CacheTimestamp", // Cache Timestamp
];
diff --git a/src/pages/identity/administration/jit-admin/add.jsx b/src/pages/identity/administration/jit-admin/add.jsx
index 9deef7e51b1b..3e7f80d73559 100644
--- a/src/pages/identity/administration/jit-admin/add.jsx
+++ b/src/pages/identity/administration/jit-admin/add.jsx
@@ -9,6 +9,7 @@ import { CippFormCondition } from "../../../../components/CippComponents/CippFor
import gdaproles from "../../../../data/GDAPRoles.json";
import { CippFormDomainSelector } from "../../../../components/CippComponents/CippFormDomainSelector";
import { CippFormUserSelector } from "../../../../components/CippComponents/CippFormUserSelector";
+import { CippFormGroupSelector } from "../../../../components/CippComponents/CippFormGroupSelector";
import { ApiGetCall } from "../../../../api/ApiCall";
import { useEffect, useState } from "react";
@@ -28,6 +29,39 @@ const Page = () => {
});
const watcher = useWatch({ control: formControl.control });
+ const useRoles = useWatch({ control: formControl.control, name: "useRoles" });
+ const useGroups = useWatch({ control: formControl.control, name: "useGroups" });
+
+ // Clear fields when switches are toggled off
+ useEffect(() => {
+ if (!useRoles) {
+ formControl.setValue("adminRoles", []);
+ }
+ }, [useRoles]);
+
+ useEffect(() => {
+ if (!useGroups) {
+ formControl.setValue("groupMemberships", []);
+ }
+ }, [useGroups]);
+
+ // Reset expiration action when switches change
+ useEffect(() => {
+ const currentAction = formControl.getValues("expireAction");
+ if (!currentAction?.value) return;
+
+ if (!useRoles && currentAction.value === "RemoveRoles") {
+ formControl.setValue("expireAction", null);
+ } else if (!useGroups && currentAction.value === "RemoveGroups") {
+ formControl.setValue("expireAction", null);
+ } else if ((!useRoles || !useGroups) && currentAction.value === "RemoveRolesAndGroups") {
+ formControl.setValue("expireAction", null);
+ } else if (useRoles && useGroups && currentAction.value === "RemoveRoles") {
+ formControl.setValue("expireAction", null);
+ } else if (useRoles && useGroups && currentAction.value === "RemoveGroups") {
+ formControl.setValue("expireAction", null);
+ }
+ }, [useRoles, useGroups]);
// Simple duration parser for basic ISO 8601 durations
const parseDuration = (duration) => {
@@ -348,24 +382,77 @@ const Page = () => {
({ label: role.Name, value: role.ObjectId }))}
+ type="switch"
+ label="Admin Roles"
+ name="useRoles"
+ formControl={formControl}
+ />
+ {
- if (!options?.length) {
- return "At least one role is required";
- }
- return true;
- },
- }}
/>
+ {!useRoles && !useGroups && (
+
+
+ Please select at least "Admin Roles" or "Group Membership"
+
+
+ )}
+
+
+ ({ label: role.Name, value: role.ObjectId }))}
+ formControl={formControl}
+ required={true}
+ validators={{
+ required: "At least one role is required",
+ validate: (options) => {
+ if (!options?.length) {
+ return "At least one role is required";
+ }
+ return true;
+ },
+ }}
+ />
+
+
+
+
+ {
+ if (!options?.length) {
+ return "At least one group is required";
+ }
+ return true;
+ },
+ }}
+ />
+
+
{
multiple={false}
creatable={false}
required={true}
- options={[
- { label: "Delete User", value: "DeleteUser" },
- { label: "Disable User", value: "DisableUser" },
- { label: "Remove Roles", value: "RemoveRoles" },
- ]}
+ options={(() => {
+ const opts = [
+ { label: "Delete User", value: "DeleteUser" },
+ { label: "Disable User", value: "DisableUser" },
+ ];
+ if (useRoles && useGroups) {
+ opts.push({ label: "Remove Roles and Groups", value: "RemoveRolesAndGroups" });
+ } else if (useRoles) {
+ opts.push({ label: "Remove Roles", value: "RemoveRoles" });
+ } else if (useGroups) {
+ opts.push({ label: "Remove Groups", value: "RemoveGroups" });
+ }
+ return opts;
+ })()}
formControl={formControl}
validators={{ required: "Expiration action is required" }}
/>
diff --git a/src/pages/security/defender/deployment/index.js b/src/pages/security/defender/deployment/index.js
index 65c1967f7d6a..8835923e022b 100644
--- a/src/pages/security/defender/deployment/index.js
+++ b/src/pages/security/defender/deployment/index.js
@@ -1,4 +1,4 @@
-import { Typography, Divider } from "@mui/material";
+import { Typography, Divider, Card, CardContent, CardHeader } from "@mui/material";
import { Grid } from "@mui/system";
import { useForm } from "react-hook-form";
import { Layout as DashboardLayout } from "../../../../layouts/index.js";
@@ -58,103 +58,260 @@ const DeployDefenderForm = () => {
>
Defender Setup
- Defender and MEM Reporting
+ Defender and MEM Reporting
+ {/* Left column: General (2), Android (3), macOS (2), EDR (2) = 9 items */}
-
-
-
-
-
+ {/* General */}
+
+ General} />
+
+
+
+
+
+
+
+
+ {/* Android */}
+
+ Android} />
+
+
+
+
+
+
+
+
+
+
+
+ {/* macOS */}
+
+ macOS} />
+
+
+
+
+
+
+
+
+
+
+ {/* EDR */}
+
+ EDR Policy} />
+
+
+
+
+
+
+
+
+
+ {/* Right column: iOS/iPadOS (6), Windows (3) = 9 items */}
-
-
-
-
-
+ {/* iOS */}
+
+ iOS / iPadOS} />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Windows */}
+
+ Windows} />
+
+
+
+
+
+
+
+
+
+
-
- {/* EDR Assignment Section */}
-
-
- EDR Assignment
-
-
-
-
diff --git a/src/pages/security/incidents/list-incidents/index.js b/src/pages/security/incidents/list-incidents/index.js
index 821fbd6e8c3c..f2070f55a915 100644
--- a/src/pages/security/incidents/list-incidents/index.js
+++ b/src/pages/security/incidents/list-incidents/index.js
@@ -1,9 +1,133 @@
+import { useState } from "react";
import { Layout as DashboardLayout } from "../../../../layouts/index.js";
import { CippTablePage } from "../../../../components/CippComponents/CippTablePage.jsx";
import { PersonAdd, PlayArrow, Assignment, Done } from "@mui/icons-material";
+import {
+ Button,
+ Accordion,
+ AccordionSummary,
+ AccordionDetails,
+ Typography,
+ SvgIcon,
+ Stack,
+ Box,
+} from "@mui/material";
+import { Grid } from "@mui/system";
+import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
+import { useForm } from "react-hook-form";
+import CippFormComponent from "../../../../components/CippComponents/CippFormComponent";
+import { FunnelIcon, XMarkIcon } from "@heroicons/react/24/outline";
+import { useSettings } from "../../../../hooks/use-settings";
+
+const defaultStartDate = (() => {
+ const d = new Date();
+ d.setDate(d.getDate() - 30);
+ d.setHours(0, 0, 0, 0);
+ return Math.floor(d.getTime() / 1000);
+})();
const Page = () => {
const pageTitle = "Incidents List";
+ const userSettingsDefaults = useSettings();
+
+ const formControl = useForm({ defaultValues: { startDate: defaultStartDate, endDate: null } });
+ const [expanded, setExpanded] = useState(false);
+ const [filterEnabled, setFilterEnabled] = useState(true);
+ const [startDate, setStartDate] = useState(
+ new Date(defaultStartDate * 1000).toISOString().split("T")[0].replace(/-/g, ""),
+ );
+ const [endDate, setEndDate] = useState(null);
+
+ const onSubmit = (data) => {
+ setStartDate(
+ data.startDate
+ ? new Date(data.startDate * 1000).toISOString().split("T")[0].replace(/-/g, "")
+ : null,
+ );
+ setEndDate(
+ data.endDate
+ ? new Date(data.endDate * 1000).toISOString().split("T")[0].replace(/-/g, "")
+ : null,
+ );
+ setFilterEnabled(data.startDate !== null || data.endDate !== null);
+ setExpanded(false);
+ };
+
+ const clearFilters = () => {
+ formControl.reset({ startDate: null, endDate: null });
+ setFilterEnabled(false);
+ setStartDate(null);
+ setEndDate(null);
+ setExpanded(false);
+ };
+
+ const fmt = (yyyymmdd) =>
+ yyyymmdd
+ ? new Date(
+ yyyymmdd.replace(/(\d{4})(\d{2})(\d{2})/, "$1-$2-$3") + "T00:00:00",
+ ).toLocaleDateString()
+ : null;
+
+ const tableFilter = (
+ setExpanded(v)}>
+ }>
+
+
+
+
+
+ {filterEnabled && (startDate || endDate)
+ ? startDate && endDate
+ ? `Date Filter: ${fmt(startDate)} — ${fmt(endDate)}`
+ : startDate
+ ? `Date Filter: From ${fmt(startDate)}`
+ : `Date Filter: Up to ${fmt(endDate)}`
+ : "Date Filter"}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ }
+ onClick={clearFilters}
+ >
+ Clear
+
+
+
+
+
+
+ );
// Define actions for incidents
const actions = [
@@ -95,6 +219,9 @@ const Page = () => {
actions={actions}
offCanvas={offCanvas}
simpleColumns={simpleColumns}
+ tableFilter={tableFilter}
+ queryKey={`ExecIncidentsList-${userSettingsDefaults.currentTenant}-${startDate}-${endDate}`}
+ apiData={{ StartDate: startDate, EndDate: endDate }}
/>
);
};
diff --git a/src/pages/tenant/manage/user-defaults.js b/src/pages/tenant/manage/user-defaults.js
index 77e659b8c500..08979dd2ed50 100644
--- a/src/pages/tenant/manage/user-defaults.js
+++ b/src/pages/tenant/manage/user-defaults.js
@@ -2,7 +2,7 @@ import { Layout as DashboardLayout } from "../../../layouts/index.js";
import { TabbedLayout } from "../../../layouts/TabbedLayout";
import { CippTablePage } from "../../../components/CippComponents/CippTablePage.jsx";
import { Button } from "@mui/material";
-import { Delete, Add } from "@mui/icons-material";
+import { Delete, Add, Edit } from "@mui/icons-material";
import { useDialog } from "../../../hooks/use-dialog";
import { CippApiDialog } from "../../../components/CippComponents/CippApiDialog";
import countryList from "../../../data/countryList.json";
@@ -14,7 +14,159 @@ const Page = () => {
const createDialog = useDialog();
const userSettings = useSettings();
+ const templateFields = [
+ {
+ label: "Template Name",
+ name: "templateName",
+ type: "textField",
+ required: true,
+ },
+ {
+ label: "Default for Tenant",
+ name: "defaultForTenant",
+ type: "switch",
+ },
+ {
+ label: "Display Name Suffix (e.g., ' - Contractor' or ' (External)')",
+ name: "displayName",
+ type: "textField",
+ },
+ {
+ label: "Username Format",
+ name: "usernameFormat",
+ type: "autoComplete",
+ options: [
+ { label: "%FirstName%.%LastName% (john.doe)", value: "%FirstName%.%LastName%" },
+ { label: "%FirstName%%LastName% (johndoe)", value: "%FirstName%%LastName%" },
+ { label: "%LastName%.%FirstName% (doe.john)", value: "%LastName%.%FirstName%" },
+ { label: "%LastName%%FirstName% (doejohn)", value: "%LastName%%FirstName%" },
+ { label: "%FirstName%_%LastName% (john_doe)", value: "%FirstName%_%LastName%" },
+ { label: "%LastName%_%FirstName% (doe_john)", value: "%LastName%_%FirstName%" },
+ { label: "%FirstName%-%LastName% (john-doe)", value: "%FirstName%-%LastName%" },
+ { label: "%LastName%-%FirstName% (doe-john)", value: "%LastName%-%FirstName%" },
+ { label: "%FirstName[1]%%LastName% (jdoe)", value: "%FirstName[1]%%LastName%" },
+ { label: "%FirstName[2]%%LastName% (jodoe)", value: "%FirstName[2]%%LastName%" },
+ { label: "%FirstName[3]%%LastName% (johdoe)", value: "%FirstName[3]%%LastName%" },
+ { label: "%FirstName%.%LastName[1]% (john.d)", value: "%FirstName%.%LastName[1]%" },
+ { label: "%FirstName%%LastName[1]% (johnd)", value: "%FirstName%%LastName[1]%" },
+ { label: "%FirstName[1]%.%LastName% (j.doe)", value: "%FirstName[1]%.%LastName%" },
+ { label: "%LastName% (doe)", value: "%LastName%" },
+ { label: "%FirstName% (john)", value: "%FirstName%" },
+ ],
+ multiple: false,
+ creatable: true,
+ },
+ {
+ label: "Primary Domain",
+ name: "primDomain",
+ type: "autoComplete",
+ api: {
+ url: "/api/ListDomains",
+ labelField: "id",
+ valueField: "id",
+ queryKey: "ListDomains",
+ },
+ multiple: false,
+ creatable: false,
+ },
+ {
+ label: "Add Aliases",
+ name: "addedAliases",
+ type: "textField",
+ multiline: true,
+ rows: 4,
+ },
+ {
+ label: "Usage Location",
+ name: "usageLocation",
+ type: "autoComplete",
+ options: countryList.map(({ Code, Name }) => ({
+ label: Name,
+ value: Code,
+ })),
+ multiple: false,
+ creatable: false,
+ },
+ {
+ label: "Licenses",
+ name: "licenses",
+ type: "autoComplete",
+ api: {
+ url: "/api/ListLicenses",
+ labelField: (option) =>
+ `${option.License || option.skuPartNumber} (${
+ option.AvailableUnits || 0
+ } available)`,
+ valueField: "skuId",
+ queryKey: "ListLicenses",
+ },
+ multiple: true,
+ creatable: false,
+ },
+ {
+ label: "Job Title",
+ name: "jobTitle",
+ type: "textField",
+ },
+ {
+ label: "Street",
+ name: "streetAddress",
+ type: "textField",
+ },
+ {
+ label: "City",
+ name: "city",
+ type: "textField",
+ },
+ {
+ label: "State/Province",
+ name: "state",
+ type: "textField",
+ },
+ {
+ label: "Postal Code",
+ name: "postalCode",
+ type: "textField",
+ },
+ {
+ label: "Country",
+ name: "country",
+ type: "textField",
+ },
+ {
+ label: "Company Name",
+ name: "companyName",
+ type: "textField",
+ },
+ {
+ label: "Department",
+ name: "department",
+ type: "textField",
+ },
+ {
+ label: "Mobile #",
+ name: "mobilePhone",
+ type: "textField",
+ },
+ {
+ label: "Business #",
+ name: "businessPhones[0]",
+ type: "textField",
+ },
+ ];
+
const actions = [
+ {
+ label: "Edit Template",
+ type: "POST",
+ url: "/api/AddUserDefaults",
+ icon: ,
+ setDefaultValues: true,
+ data: { GUID: "GUID", tenantFilter: "tenantFilter" },
+ confirmText: "Edit the template and click Confirm to save.",
+ relatedQueryKeys: [`ListNewUserDefaults-${userSettings.currentTenant}`],
+ fields: templateFields,
+ },
{
label: "Delete Template",
type: "POST",
@@ -90,144 +242,7 @@ const Page = () => {
name: "tenantFilter",
type: "hidden",
},
- {
- label: "Template Name",
- name: "templateName",
- type: "textField",
- required: true,
- },
- {
- label: "Default for Tenant",
- name: "defaultForTenant",
- type: "switch",
- },
- {
- label: "Display Name Suffix (e.g., ' - Contractor' or ' (External)')",
- name: "displayName",
- type: "textField",
- },
- {
- label: "Username Format",
- name: "usernameFormat",
- type: "autoComplete",
- options: [
- { label: "%FirstName%.%LastName% (john.doe)", value: "%FirstName%.%LastName%" },
- { label: "%FirstName%%LastName% (johndoe)", value: "%FirstName%%LastName%" },
- { label: "%LastName%.%FirstName% (doe.john)", value: "%LastName%.%FirstName%" },
- { label: "%LastName%%FirstName% (doejohn)", value: "%LastName%%FirstName%" },
- { label: "%FirstName%_%LastName% (john_doe)", value: "%FirstName%_%LastName%" },
- { label: "%LastName%_%FirstName% (doe_john)", value: "%LastName%_%FirstName%" },
- { label: "%FirstName%-%LastName% (john-doe)", value: "%FirstName%-%LastName%" },
- { label: "%LastName%-%FirstName% (doe-john)", value: "%LastName%-%FirstName%" },
- { label: "%FirstName[1]%%LastName% (jdoe)", value: "%FirstName[1]%%LastName%" },
- { label: "%FirstName[2]%%LastName% (jodoe)", value: "%FirstName[2]%%LastName%" },
- { label: "%FirstName[3]%%LastName% (johdoe)", value: "%FirstName[3]%%LastName%" },
- { label: "%FirstName%.%LastName[1]% (john.d)", value: "%FirstName%.%LastName[1]%" },
- { label: "%FirstName%%LastName[1]% (johnd)", value: "%FirstName%%LastName[1]%" },
- { label: "%FirstName[1]%.%LastName% (j.doe)", value: "%FirstName[1]%.%LastName%" },
- { label: "%LastName% (doe)", value: "%LastName%" },
- { label: "%FirstName% (john)", value: "%FirstName%" },
- ],
- multiple: false,
- creatable: true,
- },
- {
- label: "Primary Domain",
- name: "primDomain",
- type: "autoComplete",
- api: {
- url: "/api/ListDomains",
- labelField: "id",
- valueField: "id",
- queryKey: "ListDomains",
- },
- multiple: false,
- creatable: false,
- },
- {
- label: "Add Aliases",
- name: "addedAliases",
- type: "textField",
- multiline: true,
- rows: 4,
- },
- {
- label: "Usage Location",
- name: "usageLocation",
- type: "autoComplete",
- options: countryList.map(({ Code, Name }) => ({
- label: Name,
- value: Code,
- })),
- multiple: false,
- creatable: false,
- },
- {
- label: "Licenses",
- name: "licenses",
- type: "autoComplete",
- api: {
- url: "/api/ListLicenses",
- labelField: (option) =>
- `${option.License || option.skuPartNumber} (${
- option.AvailableUnits || 0
- } available)`,
- valueField: "skuId",
- queryKey: "ListLicenses",
- },
- multiple: true,
- creatable: false,
- },
- {
- label: "Job Title",
- name: "jobTitle",
- type: "textField",
- },
- {
- label: "Street",
- name: "streetAddress",
- type: "textField",
- },
- {
- label: "City",
- name: "city",
- type: "textField",
- },
- {
- label: "State/Province",
- name: "state",
- type: "textField",
- },
- {
- label: "Postal Code",
- name: "postalCode",
- type: "textField",
- },
- {
- label: "Country",
- name: "country",
- type: "textField",
- },
- {
- label: "Company Name",
- name: "companyName",
- type: "textField",
- },
- {
- label: "Department",
- name: "department",
- type: "textField",
- },
- {
- label: "Mobile #",
- name: "mobilePhone",
- type: "textField",
- },
- {
- label: "Business #",
- name: "businessPhones[0]",
- type: "textField",
- },
+ ...templateFields,
]}
/>
>
diff --git a/src/utils/get-cipp-formatting.js b/src/utils/get-cipp-formatting.js
index 217b1ae2a6a1..79139e2b2347 100644
--- a/src/utils/get-cipp-formatting.js
+++ b/src/utils/get-cipp-formatting.js
@@ -110,12 +110,15 @@ export const getCippFormatting = (data, cellName, type, canReceive, flatten = tr
const label = data.label ?? data;
const severityColor = {
info: "info",
+ informational: "info",
warn: "warning",
warning: "warning",
error: "error",
critical: "error",
alert: "warning",
debug: "default",
+ medium: "warning",
+ high: "error",
};
const color = severityColor[String(label).toLowerCase()] ?? "info";
return ;
@@ -430,7 +433,12 @@ export const getCippFormatting = (data, cellName, type, canReceive, flatten = tr
);
}
- if (cellName === "ClientId" || cellName === "role" || cellName === "appId" || cellName === "SID") {
+ if (
+ cellName === "ClientId" ||
+ cellName === "role" ||
+ cellName === "appId" ||
+ cellName === "SID"
+ ) {
return isText ? data : ;
}
@@ -907,6 +915,18 @@ export const getCippFormatting = (data, cellName, type, canReceive, flatten = tr
case "skipped":
color = "warning";
break;
+ case "active":
+ color = "warning";
+ break;
+ case "inprogress":
+ color = "warning";
+ break;
+ case "resolved":
+ color = "success";
+ break;
+ case "redirected":
+ color = "success";
+ break;
default:
color = "default";
}
diff --git a/yarn.lock b/yarn.lock
index d9c51cd68ed2..388c3f43e078 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,16 +2,7 @@
# yarn lockfile v1
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
- integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.27.1"
- js-tokens "^4.0.0"
- picocolors "^1.1.1"
-
-"@babel/code-frame@^7.28.6", "@babel/code-frame@^7.29.0":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.28.6", "@babel/code-frame@^7.29.0":
version "7.29.0"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.29.0.tgz#7cd7a59f15b3cc0dcd803038f7792712a7d0b15c"
integrity sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==
@@ -20,38 +11,12 @@
js-tokens "^4.0.0"
picocolors "^1.1.1"
-"@babel/compat-data@^7.27.2", "@babel/compat-data@^7.27.7", "@babel/compat-data@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz#a8a4962e1567121ac0b3b487f52107443b455c7f"
- integrity sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==
-
-"@babel/compat-data@^7.28.6":
+"@babel/compat-data@^7.28.6", "@babel/compat-data@^7.29.0":
version "7.29.0"
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.29.0.tgz#00d03e8c0ac24dd9be942c5370990cbe1f17d88d"
integrity sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==
-"@babel/core@^7.21.3":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz#4c81b35e51e1b734f510c99b07dfbc7bbbb48f7e"
- integrity sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==
- dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/generator" "^7.28.5"
- "@babel/helper-compilation-targets" "^7.27.2"
- "@babel/helper-module-transforms" "^7.28.3"
- "@babel/helpers" "^7.28.4"
- "@babel/parser" "^7.28.5"
- "@babel/template" "^7.27.2"
- "@babel/traverse" "^7.28.5"
- "@babel/types" "^7.28.5"
- "@jridgewell/remapping" "^2.3.5"
- convert-source-map "^2.0.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.3"
- semver "^6.3.1"
-
-"@babel/core@^7.24.4":
+"@babel/core@^7.21.3", "@babel/core@^7.24.4":
version "7.29.0"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.29.0.tgz#5286ad785df7f79d656e88ce86e650d16ca5f322"
integrity sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==
@@ -72,17 +37,6 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz#712722d5e50f44d07bc7ac9fe84438742dd61298"
- integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==
- dependencies:
- "@babel/parser" "^7.28.5"
- "@babel/types" "^7.28.5"
- "@jridgewell/gen-mapping" "^0.3.12"
- "@jridgewell/trace-mapping" "^0.3.28"
- jsesc "^3.0.2"
-
"@babel/generator@^7.29.0":
version "7.29.1"
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.29.1.tgz#d09876290111abbb00ef962a7b83a5307fba0d50"
@@ -101,18 +55,7 @@
dependencies:
"@babel/types" "^7.27.3"
-"@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.27.2":
- version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
- integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==
- dependencies:
- "@babel/compat-data" "^7.27.2"
- "@babel/helper-validator-option" "^7.27.1"
- browserslist "^4.24.0"
- lru-cache "^5.1.1"
- semver "^6.3.1"
-
-"@babel/helper-compilation-targets@^7.28.6":
+"@babel/helper-compilation-targets@^7.27.1", "@babel/helper-compilation-targets@^7.28.6":
version "7.28.6"
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz#32c4a3f41f12ed1532179b108a4d746e105c2b25"
integrity sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==
@@ -123,20 +66,20 @@
lru-cache "^5.1.1"
semver "^6.3.1"
-"@babel/helper-create-class-features-plugin@^7.27.1", "@babel/helper-create-class-features-plugin@^7.28.3", "@babel/helper-create-class-features-plugin@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz#472d0c28028850968979ad89f173594a6995da46"
- integrity sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==
+"@babel/helper-create-class-features-plugin@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.6.tgz#611ff5482da9ef0db6291bcd24303400bca170fb"
+ integrity sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.3"
"@babel/helper-member-expression-to-functions" "^7.28.5"
"@babel/helper-optimise-call-expression" "^7.27.1"
- "@babel/helper-replace-supers" "^7.27.1"
+ "@babel/helper-replace-supers" "^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
- "@babel/traverse" "^7.28.5"
+ "@babel/traverse" "^7.28.6"
semver "^6.3.1"
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.27.1":
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.27.1", "@babel/helper-create-regexp-features-plugin@^7.28.5":
version "7.28.5"
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.28.5.tgz#7c1ddd64b2065c7f78034b25b43346a7e19ed997"
integrity sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==
@@ -145,23 +88,23 @@
regexpu-core "^6.3.1"
semver "^6.3.1"
-"@babel/helper-define-polyfill-provider@^0.6.5":
- version "0.6.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.5.tgz#742ccf1cb003c07b48859fc9fa2c1bbe40e5f753"
- integrity sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==
+"@babel/helper-define-polyfill-provider@^0.6.8":
+ version "0.6.8"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz#cf1e4462b613f2b54c41e6ff758d5dfcaa2c85d1"
+ integrity sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==
dependencies:
- "@babel/helper-compilation-targets" "^7.27.2"
- "@babel/helper-plugin-utils" "^7.27.1"
- debug "^4.4.1"
+ "@babel/helper-compilation-targets" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ debug "^4.4.3"
lodash.debounce "^4.0.8"
- resolve "^1.22.10"
+ resolve "^1.22.11"
"@babel/helper-globals@^7.28.0":
version "7.28.0"
resolved "https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz#b9430df2aa4e17bc28665eadeae8aa1d985e6674"
integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==
-"@babel/helper-member-expression-to-functions@^7.27.1", "@babel/helper-member-expression-to-functions@^7.28.5":
+"@babel/helper-member-expression-to-functions@^7.28.5":
version "7.28.5"
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz#f3e07a10be37ed7a63461c63e6929575945a6150"
integrity sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==
@@ -169,15 +112,7 @@
"@babel/traverse" "^7.28.5"
"@babel/types" "^7.28.5"
-"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz#7ef769a323e2655e126673bb6d2d6913bbead204"
- integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==
- dependencies:
- "@babel/traverse" "^7.27.1"
- "@babel/types" "^7.27.1"
-
-"@babel/helper-module-imports@^7.28.6":
+"@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.28.6":
version "7.28.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz#60632cbd6ffb70b22823187201116762a03e2d5c"
integrity sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==
@@ -185,16 +120,7 @@
"@babel/traverse" "^7.28.6"
"@babel/types" "^7.28.6"
-"@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.28.3":
- version "7.28.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz#a2b37d3da3b2344fe085dab234426f2b9a2fa5f6"
- integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==
- dependencies:
- "@babel/helper-module-imports" "^7.27.1"
- "@babel/helper-validator-identifier" "^7.27.1"
- "@babel/traverse" "^7.28.3"
-
-"@babel/helper-module-transforms@^7.28.6":
+"@babel/helper-module-transforms@^7.27.1", "@babel/helper-module-transforms@^7.28.6":
version "7.28.6"
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz#9312d9d9e56edc35aeb6e95c25d4106b50b9eb1e"
integrity sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==
@@ -210,10 +136,10 @@
dependencies:
"@babel/types" "^7.27.1"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c"
- integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz#6f13ea251b68c8532e985fd532f28741a8af9ac8"
+ integrity sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==
"@babel/helper-remap-async-to-generator@^7.27.1":
version "7.27.1"
@@ -224,14 +150,14 @@
"@babel/helper-wrap-function" "^7.27.1"
"@babel/traverse" "^7.27.1"
-"@babel/helper-replace-supers@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz#b1ed2d634ce3bdb730e4b52de30f8cccfd692bc0"
- integrity sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==
+"@babel/helper-replace-supers@^7.27.1", "@babel/helper-replace-supers@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.28.6.tgz#94aa9a1d7423a00aead3f204f78834ce7d53fe44"
+ integrity sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==
dependencies:
- "@babel/helper-member-expression-to-functions" "^7.27.1"
+ "@babel/helper-member-expression-to-functions" "^7.28.5"
"@babel/helper-optimise-call-expression" "^7.27.1"
- "@babel/traverse" "^7.27.1"
+ "@babel/traverse" "^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers@^7.27.1":
version "7.27.1"
@@ -246,7 +172,7 @@
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
-"@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5":
+"@babel/helper-validator-identifier@^7.28.5":
version "7.28.5"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
@@ -257,43 +183,28 @@
integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==
"@babel/helper-wrap-function@^7.27.1":
- version "7.28.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.3.tgz#fe4872092bc1438ffd0ce579e6f699609f9d0a7a"
- integrity sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==
- dependencies:
- "@babel/template" "^7.27.2"
- "@babel/traverse" "^7.28.3"
- "@babel/types" "^7.28.2"
-
-"@babel/helpers@^7.28.4":
- version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz#fe07274742e95bdf7cf1443593eeb8926ab63827"
- integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==
- dependencies:
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.28.4"
-
-"@babel/helpers@^7.28.6":
version "7.28.6"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.6.tgz#fca903a313ae675617936e8998b814c415cbf5d7"
- integrity sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.28.6.tgz#4e349ff9222dab69a93a019cc296cdd8442e279a"
+ integrity sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==
dependencies:
"@babel/template" "^7.28.6"
+ "@babel/traverse" "^7.28.6"
"@babel/types" "^7.28.6"
-"@babel/parser@^7.24.4", "@babel/parser@^7.28.6", "@babel/parser@^7.29.0":
- version "7.29.0"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.0.tgz#669ef345add7d057e92b7ed15f0bac07611831b6"
- integrity sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==
+"@babel/helpers@^7.28.6":
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.29.2.tgz#9cfbccb02b8e229892c0b07038052cc1a8709c49"
+ integrity sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==
dependencies:
+ "@babel/template" "^7.28.6"
"@babel/types" "^7.29.0"
-"@babel/parser@^7.27.2", "@babel/parser@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
- integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
+"@babel/parser@^7.24.4", "@babel/parser@^7.28.6", "@babel/parser@^7.29.0":
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.29.2.tgz#58bd50b9a7951d134988a1ae177a35ef9a703ba1"
+ integrity sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==
dependencies:
- "@babel/types" "^7.28.5"
+ "@babel/types" "^7.29.0"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.28.5":
version "7.28.5"
@@ -326,46 +237,46 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
"@babel/plugin-transform-optional-chaining" "^7.27.1"
-"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.28.3":
- version "7.28.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.3.tgz#373f6e2de0016f73caf8f27004f61d167743742a"
- integrity sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.28.6.tgz#0e8289cec28baaf05d54fd08d81ae3676065f69f"
+ integrity sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/traverse" "^7.28.3"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/traverse" "^7.28.6"
"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2":
version "7.21.0-placeholder-for-preset-env.2"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703"
integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==
-"@babel/plugin-syntax-import-assertions@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.27.1.tgz#88894aefd2b03b5ee6ad1562a7c8e1587496aecd"
- integrity sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==
+"@babel/plugin-syntax-import-assertions@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.28.6.tgz#ae9bc1923a6ba527b70104dd2191b0cd872c8507"
+ integrity sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-syntax-import-attributes@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz#34c017d54496f9b11b61474e7ea3dfd5563ffe07"
- integrity sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==
+"@babel/plugin-syntax-import-attributes@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz#b71d5914665f60124e133696f17cd7669062c503"
+ integrity sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-syntax-jsx@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c"
- integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==
+"@babel/plugin-syntax-jsx@^7.27.1", "@babel/plugin-syntax-jsx@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz#f8ca28bbd84883b5fea0e447c635b81ba73997ee"
+ integrity sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-syntax-typescript@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz#5147d29066a793450f220c63fa3a9431b7e6dd18"
- integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==
+"@babel/plugin-syntax-typescript@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz#c7b2ddf1d0a811145b1de800d1abd146af92e3a2"
+ integrity sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
@@ -382,22 +293,22 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-async-generator-functions@^7.28.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz#1276e6c7285ab2cd1eccb0bc7356b7a69ff842c2"
- integrity sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==
+"@babel/plugin-transform-async-generator-functions@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.29.0.tgz#63ed829820298f0bf143d5a4a68fb8c06ffd742f"
+ integrity sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-remap-async-to-generator" "^7.27.1"
- "@babel/traverse" "^7.28.0"
+ "@babel/traverse" "^7.29.0"
-"@babel/plugin-transform-async-to-generator@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz#9a93893b9379b39466c74474f55af03de78c66e7"
- integrity sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==
+"@babel/plugin-transform-async-to-generator@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.28.6.tgz#bd97b42237b2d1bc90d74bcb486c39be5b4d7e77"
+ integrity sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==
dependencies:
- "@babel/helper-module-imports" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-module-imports" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-remap-async-to-generator" "^7.27.1"
"@babel/plugin-transform-block-scoped-functions@^7.27.1":
@@ -407,50 +318,50 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-block-scoping@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.5.tgz#e0d3af63bd8c80de2e567e690a54e84d85eb16f6"
- integrity sha512-45DmULpySVvmq9Pj3X9B+62Xe+DJGov27QravQJU1LLcapR6/10i+gYVAucGGJpHBp5mYxIMK4nDAT/QDLr47g==
+"@babel/plugin-transform-block-scoping@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.28.6.tgz#e1ef5633448c24e76346125c2534eeb359699a99"
+ integrity sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-class-properties@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz#dd40a6a370dfd49d32362ae206ddaf2bb082a925"
- integrity sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==
+"@babel/plugin-transform-class-properties@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.28.6.tgz#d274a4478b6e782d9ea987fda09bdb6d28d66b72"
+ integrity sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-class-features-plugin" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-class-static-block@^7.28.3":
- version "7.28.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.3.tgz#d1b8e69b54c9993bc558203e1f49bfc979bfd852"
- integrity sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==
+"@babel/plugin-transform-class-static-block@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.28.6.tgz#1257491e8259c6d125ac4d9a6f39f9d2bf3dba70"
+ integrity sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.28.3"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-class-features-plugin" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-classes@^7.28.4":
- version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.4.tgz#75d66175486788c56728a73424d67cbc7473495c"
- integrity sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==
+"@babel/plugin-transform-classes@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.28.6.tgz#8f6fb79ba3703978e701ce2a97e373aae7dda4b7"
+ integrity sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.3"
- "@babel/helper-compilation-targets" "^7.27.2"
+ "@babel/helper-compilation-targets" "^7.28.6"
"@babel/helper-globals" "^7.28.0"
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/helper-replace-supers" "^7.27.1"
- "@babel/traverse" "^7.28.4"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/helper-replace-supers" "^7.28.6"
+ "@babel/traverse" "^7.28.6"
-"@babel/plugin-transform-computed-properties@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.27.1.tgz#81662e78bf5e734a97982c2b7f0a793288ef3caa"
- integrity sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==
+"@babel/plugin-transform-computed-properties@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.28.6.tgz#936824fc71c26cb5c433485776d79c8e7b0202d2"
+ integrity sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/template" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/template" "^7.28.6"
-"@babel/plugin-transform-destructuring@^7.28.0", "@babel/plugin-transform-destructuring@^7.28.5":
+"@babel/plugin-transform-destructuring@^7.28.5":
version "7.28.5"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.28.5.tgz#b8402764df96179a2070bb7b501a1586cf8ad7a7"
integrity sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==
@@ -458,13 +369,13 @@
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/traverse" "^7.28.5"
-"@babel/plugin-transform-dotall-regex@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.27.1.tgz#aa6821de864c528b1fecf286f0a174e38e826f4d"
- integrity sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==
+"@babel/plugin-transform-dotall-regex@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.28.6.tgz#def31ed84e0fb6e25c71e53c124e7b76a4ab8e61"
+ integrity sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-duplicate-keys@^7.27.1":
version "7.27.1"
@@ -473,13 +384,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.27.1.tgz#5043854ca620a94149372e69030ff8cb6a9eb0ec"
- integrity sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==
+"@babel/plugin-transform-duplicate-named-capturing-groups-regex@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.0.tgz#8014b8a6cfd0e7b92762724443bf0d2400f26df1"
+ integrity sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-dynamic-import@^7.27.1":
version "7.27.1"
@@ -488,20 +399,20 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-explicit-resource-management@^7.28.0":
- version "7.28.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.0.tgz#45be6211b778dbf4b9d54c4e8a2b42fa72e09a1a"
- integrity sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==
+"@babel/plugin-transform-explicit-resource-management@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.28.6.tgz#dd6788f982c8b77e86779d1d029591e39d9d8be7"
+ integrity sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/plugin-transform-destructuring" "^7.28.0"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/plugin-transform-destructuring" "^7.28.5"
-"@babel/plugin-transform-exponentiation-operator@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.5.tgz#7cc90a8170e83532676cfa505278e147056e94fe"
- integrity sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==
+"@babel/plugin-transform-exponentiation-operator@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.28.6.tgz#5e477eb7eafaf2ab5537a04aaafcf37e2d7f1091"
+ integrity sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-export-namespace-from@^7.27.1":
version "7.27.1"
@@ -527,12 +438,12 @@
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/traverse" "^7.27.1"
-"@babel/plugin-transform-json-strings@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.27.1.tgz#a2e0ce6ef256376bd527f290da023983527a4f4c"
- integrity sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==
+"@babel/plugin-transform-json-strings@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.28.6.tgz#4c8c15b2dc49e285d110a4cf3dac52fd2dfc3038"
+ integrity sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-literals@^7.27.1":
version "7.27.1"
@@ -541,12 +452,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-logical-assignment-operators@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.5.tgz#d028fd6db8c081dee4abebc812c2325e24a85b0e"
- integrity sha512-axUuqnUTBuXyHGcJEVVh9pORaN6wC5bYfE7FGzPiaWa3syib9m7g+/IT/4VgCOe2Upef43PHzeAvcrVek6QuuA==
+"@babel/plugin-transform-logical-assignment-operators@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.28.6.tgz#53028a3d77e33c50ef30a8fce5ca17065936e605"
+ integrity sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-member-expression-literals@^7.27.1":
version "7.27.1"
@@ -563,23 +474,23 @@
"@babel/helper-module-transforms" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-modules-commonjs@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz#8e44ed37c2787ecc23bdc367f49977476614e832"
- integrity sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==
+"@babel/plugin-transform-modules-commonjs@^7.27.1", "@babel/plugin-transform-modules-commonjs@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.28.6.tgz#c0232e0dfe66a734cc4ad0d5e75fc3321b6fdef1"
+ integrity sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==
dependencies:
- "@babel/helper-module-transforms" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-module-transforms" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-modules-systemjs@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.28.5.tgz#7439e592a92d7670dfcb95d0cbc04bd3e64801d2"
- integrity sha512-vn5Jma98LCOeBy/KpeQhXcV2WZgaRUtjwQmjoBuLNlOmkg0fB5pdvYVeWRYI69wWKwK2cD1QbMiUQnoujWvrew==
+"@babel/plugin-transform-modules-systemjs@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.0.tgz#e458a95a17807c415924106a3ff188a3b8dee964"
+ integrity sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==
dependencies:
- "@babel/helper-module-transforms" "^7.28.3"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-module-transforms" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-validator-identifier" "^7.28.5"
- "@babel/traverse" "^7.28.5"
+ "@babel/traverse" "^7.29.0"
"@babel/plugin-transform-modules-umd@^7.27.1":
version "7.27.1"
@@ -589,13 +500,13 @@
"@babel/helper-module-transforms" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.27.1.tgz#f32b8f7818d8fc0cc46ee20a8ef75f071af976e1"
- integrity sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.0.tgz#a26cd51e09c4718588fc4cce1c5d1c0152102d6a"
+ integrity sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-new-target@^7.27.1":
version "7.27.1"
@@ -604,30 +515,30 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-nullish-coalescing-operator@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz#4f9d3153bf6782d73dd42785a9d22d03197bc91d"
- integrity sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==
+"@babel/plugin-transform-nullish-coalescing-operator@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.28.6.tgz#9bc62096e90ab7a887f3ca9c469f6adec5679757"
+ integrity sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-numeric-separator@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.27.1.tgz#614e0b15cc800e5997dadd9bd6ea524ed6c819c6"
- integrity sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==
+"@babel/plugin-transform-numeric-separator@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.28.6.tgz#1310b0292762e7a4a335df5f580c3320ee7d9e9f"
+ integrity sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-object-rest-spread@^7.28.4":
- version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.4.tgz#9ee1ceca80b3e6c4bac9247b2149e36958f7f98d"
- integrity sha512-373KA2HQzKhQCYiRVIRr+3MjpCObqzDlyrM6u4I201wL8Mp2wHf7uB8GhDwis03k2ti8Zr65Zyyqs1xOxUF/Ew==
+"@babel/plugin-transform-object-rest-spread@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.28.6.tgz#fdd4bc2d72480db6ca42aed5c051f148d7b067f7"
+ integrity sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==
dependencies:
- "@babel/helper-compilation-targets" "^7.27.2"
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/plugin-transform-destructuring" "^7.28.0"
+ "@babel/helper-compilation-targets" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/plugin-transform-destructuring" "^7.28.5"
"@babel/plugin-transform-parameters" "^7.27.7"
- "@babel/traverse" "^7.28.4"
+ "@babel/traverse" "^7.28.6"
"@babel/plugin-transform-object-super@^7.27.1":
version "7.27.1"
@@ -637,19 +548,19 @@
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/helper-replace-supers" "^7.27.1"
-"@babel/plugin-transform-optional-catch-binding@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.27.1.tgz#84c7341ebde35ccd36b137e9e45866825072a30c"
- integrity sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==
+"@babel/plugin-transform-optional-catch-binding@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.28.6.tgz#75107be14c78385978201a49c86414a150a20b4c"
+ integrity sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-optional-chaining@^7.27.1", "@babel/plugin-transform-optional-chaining@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz#8238c785f9d5c1c515a90bf196efb50d075a4b26"
- integrity sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==
+"@babel/plugin-transform-optional-chaining@^7.27.1", "@babel/plugin-transform-optional-chaining@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.6.tgz#926cf150bd421fc8362753e911b4a1b1ce4356cd"
+ integrity sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
"@babel/plugin-transform-parameters@^7.27.7":
@@ -659,22 +570,22 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-private-methods@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz#fdacbab1c5ed81ec70dfdbb8b213d65da148b6af"
- integrity sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==
+"@babel/plugin-transform-private-methods@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.28.6.tgz#c76fbfef3b86c775db7f7c106fff544610bdb411"
+ integrity sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-class-features-plugin" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-private-property-in-object@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.27.1.tgz#4dbbef283b5b2f01a21e81e299f76e35f900fb11"
- integrity sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==
+"@babel/plugin-transform-private-property-in-object@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.28.6.tgz#4fafef1e13129d79f1d75ac180c52aafefdb2811"
+ integrity sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.27.1"
- "@babel/helper-create-class-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-create-class-features-plugin" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-property-literals@^7.27.1":
version "7.27.1"
@@ -705,15 +616,15 @@
"@babel/plugin-transform-react-jsx" "^7.27.1"
"@babel/plugin-transform-react-jsx@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.27.1.tgz#1023bc94b78b0a2d68c82b5e96aed573bcfb9db0"
- integrity sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.28.6.tgz#f51cb70a90b9529fbb71ee1f75ea27b7078eed62"
+ integrity sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==
dependencies:
- "@babel/helper-annotate-as-pure" "^7.27.1"
- "@babel/helper-module-imports" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
- "@babel/plugin-syntax-jsx" "^7.27.1"
- "@babel/types" "^7.27.1"
+ "@babel/helper-annotate-as-pure" "^7.27.3"
+ "@babel/helper-module-imports" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
+ "@babel/plugin-syntax-jsx" "^7.28.6"
+ "@babel/types" "^7.28.6"
"@babel/plugin-transform-react-pure-annotations@^7.27.1":
version "7.27.1"
@@ -723,20 +634,20 @@
"@babel/helper-annotate-as-pure" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-regenerator@^7.28.4":
- version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.28.4.tgz#9d3fa3bebb48ddd0091ce5729139cd99c67cea51"
- integrity sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==
+"@babel/plugin-transform-regenerator@^7.29.0":
+ version "7.29.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.0.tgz#dec237cec1b93330876d6da9992c4abd42c9d18b"
+ integrity sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/plugin-transform-regexp-modifiers@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.27.1.tgz#df9ba5577c974e3f1449888b70b76169998a6d09"
- integrity sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==
+"@babel/plugin-transform-regexp-modifiers@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.28.6.tgz#7ef0163bd8b4a610481b2509c58cf217f065290b"
+ integrity sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-reserved-words@^7.27.1":
version "7.27.1"
@@ -752,12 +663,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-spread@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.27.1.tgz#1a264d5fc12750918f50e3fe3e24e437178abb08"
- integrity sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==
+"@babel/plugin-transform-spread@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.28.6.tgz#40a2b423f6db7b70f043ad027a58bcb44a9757b6"
+ integrity sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
"@babel/plugin-transform-sticky-regex@^7.27.1":
@@ -782,15 +693,15 @@
"@babel/helper-plugin-utils" "^7.27.1"
"@babel/plugin-transform-typescript@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz#441c5f9a4a1315039516c6c612fc66d5f4594e72"
- integrity sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.6.tgz#1e93d96da8adbefdfdade1d4956f73afa201a158"
+ integrity sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.27.3"
- "@babel/helper-create-class-features-plugin" "^7.28.5"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-class-features-plugin" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-skip-transparent-expression-wrappers" "^7.27.1"
- "@babel/plugin-syntax-typescript" "^7.27.1"
+ "@babel/plugin-syntax-typescript" "^7.28.6"
"@babel/plugin-transform-unicode-escapes@^7.27.1":
version "7.27.1"
@@ -799,13 +710,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-unicode-property-regex@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.27.1.tgz#bdfe2d3170c78c5691a3c3be934c8c0087525956"
- integrity sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==
+"@babel/plugin-transform-unicode-property-regex@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.28.6.tgz#63a7a6c21a0e75dae9b1861454111ea5caa22821"
+ integrity sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-transform-unicode-regex@^7.27.1":
version "7.27.1"
@@ -815,88 +726,88 @@
"@babel/helper-create-regexp-features-plugin" "^7.27.1"
"@babel/helper-plugin-utils" "^7.27.1"
-"@babel/plugin-transform-unicode-sets-regex@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.27.1.tgz#6ab706d10f801b5c72da8bb2548561fa04193cd1"
- integrity sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==
+"@babel/plugin-transform-unicode-sets-regex@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.28.6.tgz#924912914e5df9fe615ec472f88ff4788ce04d4e"
+ integrity sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.27.1"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-create-regexp-features-plugin" "^7.28.5"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/preset-env@^7.20.2":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.28.5.tgz#82dd159d1563f219a1ce94324b3071eb89e280b0"
- integrity sha512-S36mOoi1Sb6Fz98fBfE+UZSpYw5mJm0NUHtIKrOuNcqeFauy1J6dIvXm2KRVKobOSaGq4t/hBXdN4HGU3wL9Wg==
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.29.2.tgz#5a173f22c7d8df362af1c9fe31facd320de4a86c"
+ integrity sha512-DYD23veRYGvBFhcTY1iUvJnDNpuqNd/BzBwCvzOTKUnJjKg5kpUBh3/u9585Agdkgj+QuygG7jLfOPWMa2KVNw==
dependencies:
- "@babel/compat-data" "^7.28.5"
- "@babel/helper-compilation-targets" "^7.27.2"
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/compat-data" "^7.29.0"
+ "@babel/helper-compilation-targets" "^7.28.6"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/helper-validator-option" "^7.27.1"
"@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.28.5"
"@babel/plugin-bugfix-safari-class-field-initializer-scope" "^7.27.1"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.27.1"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.27.1"
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.28.3"
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.28.6"
"@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2"
- "@babel/plugin-syntax-import-assertions" "^7.27.1"
- "@babel/plugin-syntax-import-attributes" "^7.27.1"
+ "@babel/plugin-syntax-import-assertions" "^7.28.6"
+ "@babel/plugin-syntax-import-attributes" "^7.28.6"
"@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
"@babel/plugin-transform-arrow-functions" "^7.27.1"
- "@babel/plugin-transform-async-generator-functions" "^7.28.0"
- "@babel/plugin-transform-async-to-generator" "^7.27.1"
+ "@babel/plugin-transform-async-generator-functions" "^7.29.0"
+ "@babel/plugin-transform-async-to-generator" "^7.28.6"
"@babel/plugin-transform-block-scoped-functions" "^7.27.1"
- "@babel/plugin-transform-block-scoping" "^7.28.5"
- "@babel/plugin-transform-class-properties" "^7.27.1"
- "@babel/plugin-transform-class-static-block" "^7.28.3"
- "@babel/plugin-transform-classes" "^7.28.4"
- "@babel/plugin-transform-computed-properties" "^7.27.1"
+ "@babel/plugin-transform-block-scoping" "^7.28.6"
+ "@babel/plugin-transform-class-properties" "^7.28.6"
+ "@babel/plugin-transform-class-static-block" "^7.28.6"
+ "@babel/plugin-transform-classes" "^7.28.6"
+ "@babel/plugin-transform-computed-properties" "^7.28.6"
"@babel/plugin-transform-destructuring" "^7.28.5"
- "@babel/plugin-transform-dotall-regex" "^7.27.1"
+ "@babel/plugin-transform-dotall-regex" "^7.28.6"
"@babel/plugin-transform-duplicate-keys" "^7.27.1"
- "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.27.1"
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex" "^7.29.0"
"@babel/plugin-transform-dynamic-import" "^7.27.1"
- "@babel/plugin-transform-explicit-resource-management" "^7.28.0"
- "@babel/plugin-transform-exponentiation-operator" "^7.28.5"
+ "@babel/plugin-transform-explicit-resource-management" "^7.28.6"
+ "@babel/plugin-transform-exponentiation-operator" "^7.28.6"
"@babel/plugin-transform-export-namespace-from" "^7.27.1"
"@babel/plugin-transform-for-of" "^7.27.1"
"@babel/plugin-transform-function-name" "^7.27.1"
- "@babel/plugin-transform-json-strings" "^7.27.1"
+ "@babel/plugin-transform-json-strings" "^7.28.6"
"@babel/plugin-transform-literals" "^7.27.1"
- "@babel/plugin-transform-logical-assignment-operators" "^7.28.5"
+ "@babel/plugin-transform-logical-assignment-operators" "^7.28.6"
"@babel/plugin-transform-member-expression-literals" "^7.27.1"
"@babel/plugin-transform-modules-amd" "^7.27.1"
- "@babel/plugin-transform-modules-commonjs" "^7.27.1"
- "@babel/plugin-transform-modules-systemjs" "^7.28.5"
+ "@babel/plugin-transform-modules-commonjs" "^7.28.6"
+ "@babel/plugin-transform-modules-systemjs" "^7.29.0"
"@babel/plugin-transform-modules-umd" "^7.27.1"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.27.1"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.29.0"
"@babel/plugin-transform-new-target" "^7.27.1"
- "@babel/plugin-transform-nullish-coalescing-operator" "^7.27.1"
- "@babel/plugin-transform-numeric-separator" "^7.27.1"
- "@babel/plugin-transform-object-rest-spread" "^7.28.4"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.28.6"
+ "@babel/plugin-transform-numeric-separator" "^7.28.6"
+ "@babel/plugin-transform-object-rest-spread" "^7.28.6"
"@babel/plugin-transform-object-super" "^7.27.1"
- "@babel/plugin-transform-optional-catch-binding" "^7.27.1"
- "@babel/plugin-transform-optional-chaining" "^7.28.5"
+ "@babel/plugin-transform-optional-catch-binding" "^7.28.6"
+ "@babel/plugin-transform-optional-chaining" "^7.28.6"
"@babel/plugin-transform-parameters" "^7.27.7"
- "@babel/plugin-transform-private-methods" "^7.27.1"
- "@babel/plugin-transform-private-property-in-object" "^7.27.1"
+ "@babel/plugin-transform-private-methods" "^7.28.6"
+ "@babel/plugin-transform-private-property-in-object" "^7.28.6"
"@babel/plugin-transform-property-literals" "^7.27.1"
- "@babel/plugin-transform-regenerator" "^7.28.4"
- "@babel/plugin-transform-regexp-modifiers" "^7.27.1"
+ "@babel/plugin-transform-regenerator" "^7.29.0"
+ "@babel/plugin-transform-regexp-modifiers" "^7.28.6"
"@babel/plugin-transform-reserved-words" "^7.27.1"
"@babel/plugin-transform-shorthand-properties" "^7.27.1"
- "@babel/plugin-transform-spread" "^7.27.1"
+ "@babel/plugin-transform-spread" "^7.28.6"
"@babel/plugin-transform-sticky-regex" "^7.27.1"
"@babel/plugin-transform-template-literals" "^7.27.1"
"@babel/plugin-transform-typeof-symbol" "^7.27.1"
"@babel/plugin-transform-unicode-escapes" "^7.27.1"
- "@babel/plugin-transform-unicode-property-regex" "^7.27.1"
+ "@babel/plugin-transform-unicode-property-regex" "^7.28.6"
"@babel/plugin-transform-unicode-regex" "^7.27.1"
- "@babel/plugin-transform-unicode-sets-regex" "^7.27.1"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.28.6"
"@babel/preset-modules" "0.1.6-no-external-plugins"
- babel-plugin-polyfill-corejs2 "^0.4.14"
- babel-plugin-polyfill-corejs3 "^0.13.0"
- babel-plugin-polyfill-regenerator "^0.6.5"
- core-js-compat "^3.43.0"
+ babel-plugin-polyfill-corejs2 "^0.4.15"
+ babel-plugin-polyfill-corejs3 "^0.14.0"
+ babel-plugin-polyfill-regenerator "^0.6.6"
+ core-js-compat "^3.48.0"
semver "^6.3.1"
"@babel/preset-modules@0.1.6-no-external-plugins":
@@ -932,18 +843,9 @@
"@babel/plugin-transform-typescript" "^7.28.5"
"@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.13", "@babel/runtime@^7.27.6", "@babel/runtime@^7.28.3", "@babel/runtime@^7.28.4", "@babel/runtime@^7.28.6", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
- version "7.28.6"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.6.tgz#d267a43cb1836dc4d182cce93ae75ba954ef6d2b"
- integrity sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==
-
-"@babel/template@^7.27.1", "@babel/template@^7.27.2":
- version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
- integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
- dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/parser" "^7.27.2"
- "@babel/types" "^7.27.1"
+ version "7.29.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.29.2.tgz#9a6e2d05f4b6692e1801cd4fb176ad823930ed5e"
+ integrity sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==
"@babel/template@^7.28.6":
version "7.28.6"
@@ -954,20 +856,7 @@
"@babel/parser" "^7.28.6"
"@babel/types" "^7.28.6"
-"@babel/traverse@^7.27.1", "@babel/traverse@^7.28.0", "@babel/traverse@^7.28.3", "@babel/traverse@^7.28.4", "@babel/traverse@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz#450cab9135d21a7a2ca9d2d35aa05c20e68c360b"
- integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==
- dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/generator" "^7.28.5"
- "@babel/helper-globals" "^7.28.0"
- "@babel/parser" "^7.28.5"
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.28.5"
- debug "^4.3.1"
-
-"@babel/traverse@^7.28.6", "@babel/traverse@^7.29.0":
+"@babel/traverse@^7.27.1", "@babel/traverse@^7.28.5", "@babel/traverse@^7.28.6", "@babel/traverse@^7.29.0":
version "7.29.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.29.0.tgz#f323d05001440253eead3c9c858adbe00b90310a"
integrity sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==
@@ -980,15 +869,7 @@
"@babel/types" "^7.29.0"
debug "^4.3.1"
-"@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.2", "@babel/types@^7.28.4", "@babel/types@^7.28.5", "@babel/types@^7.4.4":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
- integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
- dependencies:
- "@babel/helper-string-parser" "^7.27.1"
- "@babel/helper-validator-identifier" "^7.28.5"
-
-"@babel/types@^7.28.6", "@babel/types@^7.29.0":
+"@babel/types@^7.21.3", "@babel/types@^7.27.1", "@babel/types@^7.27.3", "@babel/types@^7.28.5", "@babel/types@^7.28.6", "@babel/types@^7.29.0", "@babel/types@^7.4.4":
version "7.29.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.29.0.tgz#9f5b1e838c446e72cf3cd4b918152b8c605e37c7"
integrity sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==
@@ -997,24 +878,24 @@
"@babel/helper-validator-identifier" "^7.28.5"
"@emnapi/core@^1.4.3":
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.7.1.tgz#3a79a02dbc84f45884a1806ebb98e5746bdfaac4"
- integrity sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.9.1.tgz#2143069c744ca2442074f8078462e51edd63c7bd"
+ integrity sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==
dependencies:
- "@emnapi/wasi-threads" "1.1.0"
+ "@emnapi/wasi-threads" "1.2.0"
tslib "^2.4.0"
"@emnapi/runtime@^1.4.3", "@emnapi/runtime@^1.7.0":
- version "1.7.1"
- resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.7.1.tgz#a73784e23f5d57287369c808197288b52276b791"
- integrity sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.9.1.tgz#115ff2a0d589865be6bd8e9d701e499c473f2a8d"
+ integrity sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==
dependencies:
tslib "^2.4.0"
-"@emnapi/wasi-threads@1.1.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz#60b2102fddc9ccb78607e4a3cf8403ea69be41bf"
- integrity sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==
+"@emnapi/wasi-threads@1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.2.0.tgz#a19d9772cc3d195370bf6e2a805eec40aa75e18e"
+ integrity sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==
dependencies:
tslib "^2.4.0"
@@ -1135,14 +1016,7 @@
resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz#5e13fac887f08c44f76b0ccaf3370eb00fec9bb6"
integrity sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==
-"@eslint-community/eslint-utils@^4.8.0":
- version "4.9.0"
- resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz#7308df158e064f0dd8b8fdb58aa14fa2a7f913b3"
- integrity sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==
- dependencies:
- eslint-visitor-keys "^3.4.3"
-
-"@eslint-community/eslint-utils@^4.9.1":
+"@eslint-community/eslint-utils@^4.8.0", "@eslint-community/eslint-utils@^4.9.1":
version "4.9.1"
resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz#4e90af67bc51ddee6cdef5284edf572ec376b595"
integrity sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==
@@ -1155,13 +1029,13 @@
integrity sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==
"@eslint/config-array@^0.21.1":
- version "0.21.1"
- resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.21.1.tgz#7d1b0060fea407f8301e932492ba8c18aff29713"
- integrity sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==
+ version "0.21.2"
+ resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.21.2.tgz#f29e22057ad5316cf23836cee9a34c81fffcb7e6"
+ integrity sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==
dependencies:
"@eslint/object-schema" "^2.1.7"
debug "^4.3.1"
- minimatch "^3.1.2"
+ minimatch "^3.1.5"
"@eslint/config-helpers@^0.4.2":
version "0.4.2"
@@ -1178,18 +1052,18 @@
"@types/json-schema" "^7.0.15"
"@eslint/eslintrc@^3.3.1":
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.3.tgz#26393a0806501b5e2b6a43aa588a4d8df67880ac"
- integrity sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==
+ version "3.3.5"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.3.5.tgz#c131793cfc1a7b96f24a83e0a8bbd4b881558c60"
+ integrity sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==
dependencies:
- ajv "^6.12.4"
+ ajv "^6.14.0"
debug "^4.3.2"
espree "^10.0.1"
globals "^14.0.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.1"
- minimatch "^3.1.2"
+ minimatch "^3.1.5"
strip-json-comments "^3.1.1"
"@eslint/js@9.39.2":
@@ -1210,25 +1084,25 @@
"@eslint/core" "^0.17.0"
levn "^0.4.1"
-"@floating-ui/core@^1.7.3":
- version "1.7.3"
- resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.3.tgz#462d722f001e23e46d86fd2bd0d21b7693ccb8b7"
- integrity sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==
+"@floating-ui/core@^1.7.5":
+ version "1.7.5"
+ resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.5.tgz#d4af157a03330af5a60e69da7a4692507ada0622"
+ integrity sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==
dependencies:
- "@floating-ui/utils" "^0.2.10"
+ "@floating-ui/utils" "^0.2.11"
"@floating-ui/dom@^1.0.0":
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.4.tgz#ee667549998745c9c3e3e84683b909c31d6c9a77"
- integrity sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==
+ version "1.7.6"
+ resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.6.tgz#f915bba5abbb177e1f227cacee1b4d0634b187bf"
+ integrity sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==
dependencies:
- "@floating-ui/core" "^1.7.3"
- "@floating-ui/utils" "^0.2.10"
+ "@floating-ui/core" "^1.7.5"
+ "@floating-ui/utils" "^0.2.11"
-"@floating-ui/utils@^0.2.10":
- version "0.2.10"
- resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c"
- integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==
+"@floating-ui/utils@^0.2.11":
+ version "0.2.11"
+ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.11.tgz#a269e055e40e2f45873bae9d1a2fdccbd314ea3f"
+ integrity sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==
"@heroicons/react@2.2.0":
version "2.2.0"
@@ -1259,9 +1133,9 @@
integrity sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==
"@img/colour@^1.0.0":
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/@img/colour/-/colour-1.0.0.tgz#d2fabb223455a793bf3bf9c70de3d28526aa8311"
- integrity sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@img/colour/-/colour-1.1.0.tgz#b0c2c2fa661adf75effd6b4964497cd80010bb9d"
+ integrity sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==
"@img/sharp-darwin-arm64@0.34.5":
version "0.34.5"
@@ -1454,9 +1328,9 @@
"@monaco-editor/loader" "^1.5.0"
"@mui/core-downloads-tracker@^7.3.7":
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.7.tgz#99d9c60be3ce5632ec915b2c287682020ce19a99"
- integrity sha512-8jWwS6FweMkpyRkrJooamUGe1CQfO1yJ+lM43IyUJbrhHW/ObES+6ry4vfGi8EKaldHL3t3BG1bcLcERuJPcjg==
+ version "7.3.9"
+ resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.9.tgz#d944e385f8f7f5e680e5ba479b39ff8602bd4939"
+ integrity sha512-MOkOCTfbMJwLshlBCKJ59V2F/uaLYfmKnN76kksj6jlGUVdI25A9Hzs08m+zjBRdLv+sK7Rqdsefe8X7h/6PCw==
"@mui/icons-material@7.3.7":
version "7.3.7"
@@ -1495,42 +1369,21 @@
react-is "^19.2.3"
react-transition-group "^4.4.5"
-"@mui/private-theming@^7.3.2":
- version "7.3.6"
- resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-7.3.6.tgz#1ca65a08e8f7f538d9a10ba974f1f4db5231a969"
- integrity sha512-Ws9wZpqM+FlnbZXaY/7yvyvWQo1+02Tbx50mVdNmzWEi51C51y56KAbaDCYyulOOBL6BJxuaqG8rNNuj7ivVyw==
+"@mui/private-theming@^7.3.2", "@mui/private-theming@^7.3.9":
+ version "7.3.9"
+ resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-7.3.9.tgz#c785dc429b7ed62cf3952140be703cbe95704a13"
+ integrity sha512-ErIyRQvsiQEq7Yvcvfw9UDHngaqjMy9P3JDPnRAaKG5qhpl2C4tX/W1S4zJvpu+feihmZJStjIyvnv6KDbIrlw==
dependencies:
- "@babel/runtime" "^7.28.4"
- "@mui/utils" "^7.3.6"
- prop-types "^15.8.1"
-
-"@mui/private-theming@^7.3.7":
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-7.3.7.tgz#f5b41d573df3824fbfd10a7e6ac8de94bbcf15c5"
- integrity sha512-w7r1+CYhG0syCAQUWAuV5zSaU2/67WA9JXUderdb7DzCIJdp/5RmJv6L85wRjgKCMsxFF0Kfn0kPgPbPgw/jdw==
- dependencies:
- "@babel/runtime" "^7.28.4"
- "@mui/utils" "^7.3.7"
- prop-types "^15.8.1"
-
-"@mui/styled-engine@^7.3.2":
- version "7.3.6"
- resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-7.3.6.tgz#dde8e6ae32c9b5b400dcd37afd9514a5344f7d91"
- integrity sha512-+wiYbtvj+zyUkmDB+ysH6zRjuQIJ+CM56w0fEXV+VDNdvOuSywG+/8kpjddvvlfMLsaWdQe5oTuYGBcodmqGzQ==
- dependencies:
- "@babel/runtime" "^7.28.4"
- "@emotion/cache" "^11.14.0"
- "@emotion/serialize" "^1.3.3"
- "@emotion/sheet" "^1.4.0"
- csstype "^3.1.3"
+ "@babel/runtime" "^7.28.6"
+ "@mui/utils" "^7.3.9"
prop-types "^15.8.1"
-"@mui/styled-engine@^7.3.7":
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-7.3.7.tgz#cde5a8381e14310f293a53dd59d27ae737a305fc"
- integrity sha512-y/QkNXv6cF6dZ5APztd/dFWfQ6LHKPx3skyYO38YhQD4+Cxd6sFAL3Z38WMSSC8LQz145Mpp3CcLrSCLKPwYAg==
+"@mui/styled-engine@^7.3.2", "@mui/styled-engine@^7.3.9":
+ version "7.3.9"
+ resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-7.3.9.tgz#e425ca7b5cb559bde01b8fa4a7a842e9b5916f53"
+ integrity sha512-JqujWt5bX4okjUPGpVof/7pvgClqh7HvIbsIBIOOlCh2u3wG/Bwp4+E1bc1dXSwkrkp9WUAoNdI5HEC+5HKvMw==
dependencies:
- "@babel/runtime" "^7.28.4"
+ "@babel/runtime" "^7.28.6"
"@emotion/cache" "^11.14.0"
"@emotion/serialize" "^1.3.3"
"@emotion/sheet" "^1.4.0"
@@ -1552,33 +1405,33 @@
prop-types "^15.8.1"
"@mui/system@^7.3.2", "@mui/system@^7.3.7":
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/@mui/system/-/system-7.3.7.tgz#530932e078ba58031cd9bcc71494a544fa635a27"
- integrity sha512-DovL3k+FBRKnhmatzUMyO5bKkhMLlQ9L7Qw5qHrre3m8zCZmE+31NDVBFfqrbrA7sq681qaEIHdkWD5nmiAjyQ==
+ version "7.3.9"
+ resolved "https://registry.yarnpkg.com/@mui/system/-/system-7.3.9.tgz#d8181dd9ad8c5e9afdf50eb7009062c506976ab1"
+ integrity sha512-aL1q9am8XpRrSabv9qWf5RHhJICJql34wnrc1nz0MuOglPRYF/liN+c8VqZdTvUn9qg+ZjRVbKf4sJVFfIDtmg==
dependencies:
- "@babel/runtime" "^7.28.4"
- "@mui/private-theming" "^7.3.7"
- "@mui/styled-engine" "^7.3.7"
- "@mui/types" "^7.4.10"
- "@mui/utils" "^7.3.7"
+ "@babel/runtime" "^7.28.6"
+ "@mui/private-theming" "^7.3.9"
+ "@mui/styled-engine" "^7.3.9"
+ "@mui/types" "^7.4.12"
+ "@mui/utils" "^7.3.9"
clsx "^2.1.1"
csstype "^3.2.3"
prop-types "^15.8.1"
-"@mui/types@^7.4.10", "@mui/types@^7.4.6":
- version "7.4.10"
- resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.4.10.tgz#c80ed5850a1da7802a01c1d0153d8603ce41be10"
- integrity sha512-0+4mSjknSu218GW3isRqoxKRTOrTLd/vHi/7UC4+wZcUrOAqD9kRk7UQRL1mcrzqRoe7s3UT6rsRpbLkW5mHpQ==
+"@mui/types@^7.4.10", "@mui/types@^7.4.12", "@mui/types@^7.4.6":
+ version "7.4.12"
+ resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.4.12.tgz#e4eba37a7506419ea5c5e0604322ba82b271bf46"
+ integrity sha512-iKNAF2u9PzSIj40CjvKJWxFXJo122jXVdrmdh0hMYd+FR+NuJMkr/L88XwWLCRiJ5P1j+uyac25+Kp6YC4hu6w==
dependencies:
- "@babel/runtime" "^7.28.4"
+ "@babel/runtime" "^7.28.6"
-"@mui/utils@^7.3.2", "@mui/utils@^7.3.5", "@mui/utils@^7.3.6", "@mui/utils@^7.3.7":
- version "7.3.7"
- resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-7.3.7.tgz#71443559a7fbd993b5b90fcb843fa26a60046f99"
- integrity sha512-+YjnjMRnyeTkWnspzoxRdiSOgkrcpTikhNPoxOZW0APXx+urHtUoXJ9lbtCZRCA5a4dg5gSbd19alL1DvRs5fg==
+"@mui/utils@^7.3.2", "@mui/utils@^7.3.5", "@mui/utils@^7.3.7", "@mui/utils@^7.3.9":
+ version "7.3.9"
+ resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-7.3.9.tgz#8af5093fc93c2e582fa3d047f561c7b690509bc2"
+ integrity sha512-U6SdZaGbfb65fqTsH3V5oJdFj9uYwyLE2WVuNvmbggTSDBb8QHrFsqY8BN3taK9t3yJ8/BPHD/kNvLNyjwM7Yw==
dependencies:
- "@babel/runtime" "^7.28.4"
- "@mui/types" "^7.4.10"
+ "@babel/runtime" "^7.28.6"
+ "@mui/types" "^7.4.12"
"@types/prop-types" "^15.7.15"
clsx "^2.1.1"
prop-types "^15.8.1"
@@ -1621,10 +1474,10 @@
"@emnapi/runtime" "^1.4.3"
"@tybys/wasm-util" "^0.10.0"
-"@next/env@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/env/-/env-16.1.6.tgz#0f85979498249a94ef606ef535042a831f905e89"
- integrity sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==
+"@next/env@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/env/-/env-16.2.0.tgz#0efff26856a93f3ee8306117051d4e704849b724"
+ integrity sha512-OZIbODWWAi0epQRCRjNe1VO45LOFBzgiyqmTLzIqWq6u1wrxKnAyz1HH6tgY/Mc81YzIjRPoYsPAEr4QV4l9TA==
"@next/eslint-plugin-next@16.1.6":
version "16.1.6"
@@ -1633,45 +1486,45 @@
dependencies:
fast-glob "3.3.1"
-"@next/swc-darwin-arm64@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.1.6.tgz#fbe1e360efdcc9ebd0a10301518275bc59e12a91"
- integrity sha512-wTzYulosJr/6nFnqGW7FrG3jfUUlEf8UjGA0/pyypJl42ExdVgC6xJgcXQ+V8QFn6niSG2Pb8+MIG1mZr2vczw==
-
-"@next/swc-darwin-x64@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-16.1.6.tgz#0e3781ef3abc8251c2a21addc733d9a87f44829b"
- integrity sha512-BLFPYPDO+MNJsiDWbeVzqvYd4NyuRrEYVB5k2N3JfWncuHAy2IVwMAOlVQDFjj+krkWzhY2apvmekMkfQR0CUQ==
-
-"@next/swc-linux-arm64-gnu@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.1.6.tgz#b24511af2c6129f2deaf5c8c04d297fe09cd40d7"
- integrity sha512-OJYkCd5pj/QloBvoEcJ2XiMnlJkRv9idWA/j0ugSuA34gMT6f5b7vOiCQHVRpvStoZUknhl6/UxOXL4OwtdaBw==
-
-"@next/swc-linux-arm64-musl@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.1.6.tgz#9d4ed0565689fc6a867250f994736a5b8c542ccb"
- integrity sha512-S4J2v+8tT3NIO9u2q+S0G5KdvNDjXfAv06OhfOzNDaBn5rw84DGXWndOEB7d5/x852A20sW1M56vhC/tRVbccQ==
-
-"@next/swc-linux-x64-gnu@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.1.6.tgz#cc757f4384e7eab7d3dba704a97f737518bae0d2"
- integrity sha512-2eEBDkFlMMNQnkTyPBhQOAyn2qMxyG2eE7GPH2WIDGEpEILcBPI/jdSv4t6xupSP+ot/jkfrCShLAa7+ZUPcJQ==
-
-"@next/swc-linux-x64-musl@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.1.6.tgz#ef1341740f29717deea7c6ec27ae6269386e20d1"
- integrity sha512-oicJwRlyOoZXVlxmIMaTq7f8pN9QNbdes0q2FXfRsPhfCi8n8JmOZJm5oo1pwDaFbnnD421rVU409M3evFbIqg==
-
-"@next/swc-win32-arm64-msvc@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.1.6.tgz#fee8719242aecf9c39c3a66f1f73821f7884dd16"
- integrity sha512-gQmm8izDTPgs+DCWH22kcDmuUp7NyiJgEl18bcr8irXA5N2m2O+JQIr6f3ct42GOs9c0h8QF3L5SzIxcYAAXXw==
-
-"@next/swc-win32-x64-msvc@16.1.6":
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.1.6.tgz#60c27323c30f35722b20fd6d62449fbb768e46d9"
- integrity sha512-NRfO39AIrzBnixKbjuo2YiYhB6o9d8v/ymU9m/Xk8cyVk+k7XylniXkHwjs4s70wedVffc6bQNbufk5v0xEm0A==
+"@next/swc-darwin-arm64@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.0.tgz#e9d1de855fa0cf9a261bfbcee43bda3904ce0556"
+ integrity sha512-/JZsqKzKt01IFoiLLAzlNqys7qk2F3JkcUhj50zuRhKDQkZNOz9E5N6wAQWprXdsvjRP4lTFj+/+36NSv5AwhQ==
+
+"@next/swc-darwin-x64@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.0.tgz#e19aba36e6914c162d880f8eb6715715bae4fb0b"
+ integrity sha512-/hV8erWq4SNlVgglUiW5UmQ5Hwy5EW/AbbXlJCn6zkfKxTy/E/U3V8U1Ocm2YCTUoFgQdoMxRyRMOW5jYy4ygg==
+
+"@next/swc-linux-arm64-gnu@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.0.tgz#e855c6f937825d32aef2d8385aaefc167b6c17e8"
+ integrity sha512-GkjL/Q7MWOwqWR9zoxu1TIHzkOI2l2BHCf7FzeQG87zPgs+6WDh+oC9Sw9ARuuL/FUk6JNCgKRkA6rEQYadUaw==
+
+"@next/swc-linux-arm64-musl@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.0.tgz#5fce15413e1e925114757868815b3bfd1a74461e"
+ integrity sha512-1ffhC6KY5qWLg5miMlKJp3dZbXelEfjuXt1qcp5WzSCQy36CV3y+JT7OC1WSFKizGQCDOcQbfkH/IjZP3cdRNA==
+
+"@next/swc-linux-x64-gnu@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.0.tgz#d422604981eb2da25a47a32f2bc259181c0f8f57"
+ integrity sha512-FmbDcZQ8yJRq93EJSL6xaE0KK/Rslraf8fj1uViGxg7K4CKBCRYSubILJPEhjSgZurpcPQq12QNOJQ0DRJl6Hg==
+
+"@next/swc-linux-x64-musl@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.0.tgz#8e3f50bbd15e0f95fe8884e9743d35b2e36008e5"
+ integrity sha512-HzjIHVkmGAwRbh/vzvoBWWEbb8BBZPxBvVbDQDvzHSf3D8RP/4vjw7MNLDXFF9Q1WEzeQyEj2zdxBtVAHu5Oyw==
+
+"@next/swc-win32-arm64-msvc@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.0.tgz#1bde3c1d4cfe418a3e00d3e5122b843c05e90961"
+ integrity sha512-UMiFNQf5H7+1ZsZPxEsA064WEuFbRNq/kEXyepbCnSErp4f5iut75dBA8UeerFIG3vDaQNOfCpevnERPp2V+nA==
+
+"@next/swc-win32-x64-msvc@16.2.0":
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.0.tgz#fd13d36726ac09a15da3fab1e00934e090c643e9"
+ integrity sha512-DRrNJKW+/eimrZgdhVN1uvkN1OI4j6Lpefwr44jKQ0YQzztlmOBUUzHuV5GxOMPK3nmodAYElUVCY8ZXo/IWeA==
"@nivo/colors@0.99.0":
version "0.99.0"
@@ -1982,7 +1835,7 @@
"@react-spring/shared" "~10.0.3"
"@react-spring/types" "~10.0.3"
-"@reduxjs/toolkit@1.x.x || 2.x.x", "@reduxjs/toolkit@^2.11.2":
+"@reduxjs/toolkit@^1.9.0 || 2.x.x", "@reduxjs/toolkit@^2.11.2":
version "2.11.2"
resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-2.11.2.tgz#582225acea567329ca6848583e7dd72580d38e82"
integrity sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==
@@ -2019,33 +1872,6 @@
resolved "https://registry.yarnpkg.com/@standard-schema/utils/-/utils-0.3.0.tgz#3d5e608f16c2390c10528e98e59aef6bf73cae7b"
integrity sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==
-"@svgdotjs/svg.draggable.js@^3.0.4":
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/@svgdotjs/svg.draggable.js/-/svg.draggable.js-3.0.6.tgz#bca1065ec27b1dbae5a92a0558777ed964a395cb"
- integrity sha512-7iJFm9lL3C40HQcqzEfezK2l+dW2CpoVY3b77KQGqc8GXWa6LhhmX5Ckv7alQfUXBuZbjpICZ+Dvq1czlGx7gA==
-
-"@svgdotjs/svg.filter.js@^3.0.8":
- version "3.0.9"
- resolved "https://registry.yarnpkg.com/@svgdotjs/svg.filter.js/-/svg.filter.js-3.0.9.tgz#758e336b79e73a6797358d655b60842131a9a52b"
- integrity sha512-/69XMRCDoam2HgC4ldHIaDgeQf1ViHIsa0Ld4uWgiXtZ+E24DWHe/9Ib6kbNiZ7WRIdlVokUDR1Fg0kjIpkfbw==
- dependencies:
- "@svgdotjs/svg.js" "^3.2.4"
-
-"@svgdotjs/svg.js@^3.2.4":
- version "3.2.5"
- resolved "https://registry.yarnpkg.com/@svgdotjs/svg.js/-/svg.js-3.2.5.tgz#fbbc56728b2b565f3ae3e3713301ff82abbb45bd"
- integrity sha512-/VNHWYhNu+BS7ktbYoVGrCmsXDh+chFMaONMwGNdIBcFHrWqk2jY8fNyr3DLdtQUIalvkPfM554ZSFa3dm3nxQ==
-
-"@svgdotjs/svg.resize.js@^2.0.2":
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/@svgdotjs/svg.resize.js/-/svg.resize.js-2.0.5.tgz#732e4cae15d09ad3021adeac63bc9fad0dc7255a"
- integrity sha512-4heRW4B1QrJeENfi7326lUPYBCevj78FJs8kfeDxn5st0IYPIRXoTtOSYvTzFWgaWWXd3YCDE6ao4fmv91RthA==
-
-"@svgdotjs/svg.select.js@^4.0.1":
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/@svgdotjs/svg.select.js/-/svg.select.js-4.0.3.tgz#6af12755fd71caf703825d4f490fdf02a001cbfc"
- integrity sha512-qkMgso1sd2hXKd1FZ1weO7ANq12sNmQJeGDjs46QwDVsxSRcHmvWKL2NDF7Yimpwf3sl5esOLkPqtV2bQ3v/Jg==
-
"@svgr/babel-plugin-add-jsx-attribute@8.0.0":
version "8.0.0"
resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22"
@@ -2160,9 +1986,9 @@
tslib "^2.8.0"
"@swc/helpers@^0.5.12":
- version "0.5.17"
- resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.17.tgz#5a7be95ac0f0bf186e7e6e890e7a6f6cda6ce971"
- integrity sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==
+ version "0.5.19"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.19.tgz#9a8c8a0bdaecfdfb9b8ae5421c0c8e09246dfee9"
+ integrity sha512-QamiFeIK3txNjgUTNppE6MiG3p7TdninpZu0E0PbqVh1a9FNLT2FRhisaa4NcaX52XVhA5l7Pk58Ft7Sqi/2sA==
dependencies:
tslib "^2.8.0"
@@ -2173,51 +1999,51 @@
dependencies:
remove-accents "0.5.0"
-"@tanstack/query-core@5.90.12":
- version "5.90.12"
- resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.90.12.tgz#e1f5f47e72ef7d0fc794325936921c700352515e"
- integrity sha512-T1/8t5DhV/SisWjDnaiU2drl6ySvsHj1bHBCWNXd+/T+Hh1cf6JodyEYMd5sgwm+b/mETT4EV3H+zCVczCU5hg==
+"@tanstack/query-core@5.91.2":
+ version "5.91.2"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.91.2.tgz#d83825a928aa49ded38d3910f05284178cce89d3"
+ integrity sha512-Uz2pTgPC1mhqrrSGg18RKCWT/pkduAYtxbcyIyKBhw7dTWjXZIzqmpzO2lBkyWr4hlImQgpu1m1pei3UnkFRWw==
-"@tanstack/query-devtools@5.91.1":
- version "5.91.1"
- resolved "https://registry.yarnpkg.com/@tanstack/query-devtools/-/query-devtools-5.91.1.tgz#0b0e3b94861f3a584560af3047a536bf7fea06f1"
- integrity sha512-l8bxjk6BMsCaVQH6NzQEE/bEgFy1hAs5qbgXl0xhzezlaQbPk6Mgz9BqEg2vTLPOHD8N4k+w/gdgCbEzecGyNg==
+"@tanstack/query-devtools@5.93.0":
+ version "5.93.0"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-devtools/-/query-devtools-5.93.0.tgz#517f61d4e2cfb9af671e34ad5e7e871052bca814"
+ integrity sha512-+kpsx1NQnOFTZsw6HAFCW3HkKg0+2cepGtAWXjiiSOJJ1CtQpt72EE2nyZb+AjAbLRPoeRmPJ8MtQd8r8gsPdg==
-"@tanstack/query-persist-client-core@5.91.11":
- version "5.91.11"
- resolved "https://registry.yarnpkg.com/@tanstack/query-persist-client-core/-/query-persist-client-core-5.91.11.tgz#88a298b5559c67d837a1afefde278e02c97acc59"
- integrity sha512-NNpRGxQY/nVOdzfs5QbevPjGsUVoEiFwqxxaopLyu6todwtDOCfIOfhXSmpMVXBiCxUn7kqaUB1iwaBKqoAVRQ==
+"@tanstack/query-persist-client-core@5.92.4":
+ version "5.92.4"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-persist-client-core/-/query-persist-client-core-5.92.4.tgz#3de610491ebdfa342cd316008b1bfcc284b2e64b"
+ integrity sha512-VKppfuXFJbm8ToFC9waMIb9bpjeyb3+H52Y6jNAQ/fnRs0PvFTPQX1lXuw6yMd43CKQZ9+s04zzvGTg6q4JBtA==
dependencies:
- "@tanstack/query-core" "5.90.12"
+ "@tanstack/query-core" "5.91.2"
-"@tanstack/query-sync-storage-persister@^5.76.0":
- version "5.90.14"
- resolved "https://registry.yarnpkg.com/@tanstack/query-sync-storage-persister/-/query-sync-storage-persister-5.90.14.tgz#b68c7f982d7f41af77df009bdf0a064e94448f78"
- integrity sha512-gqQy7VFNUcFnD61mr1sqvMLdL3MXrTzMmjuQqRVyItb9FgEKzMSyBfo8cLZPiWWrz29eAVlQs1rEYUNLZRRMqg==
+"@tanstack/query-sync-storage-persister@^5.90.25":
+ version "5.90.27"
+ resolved "https://registry.yarnpkg.com/@tanstack/query-sync-storage-persister/-/query-sync-storage-persister-5.90.27.tgz#249c055565e31e0587c2b1900b0d7e0012982dd3"
+ integrity sha512-yFaJmXqlI30LyFa81W4itMJuWM2G9srDxH7peiDcL305L1BuuwWQDChN5Gjl5wouodl3b6ZbesNqyXTt3SkdxQ==
dependencies:
- "@tanstack/query-core" "5.90.12"
- "@tanstack/query-persist-client-core" "5.91.11"
+ "@tanstack/query-core" "5.91.2"
+ "@tanstack/query-persist-client-core" "5.92.4"
"@tanstack/react-query-devtools@^5.51.11":
- version "5.91.1"
- resolved "https://registry.yarnpkg.com/@tanstack/react-query-devtools/-/react-query-devtools-5.91.1.tgz#48c7507ba57156fcd2060d1fdbd3dc6fd566bf16"
- integrity sha512-tRnJYwEbH0kAOuToy8Ew7bJw1lX3AjkkgSlf/vzb+NpnqmHPdWM+lA2DSdGQSLi1SU0PDRrrCI1vnZnci96CsQ==
+ version "5.91.3"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-query-devtools/-/react-query-devtools-5.91.3.tgz#0f65340fa3f7e7d5575de928ad70cfa6b5f74ff1"
+ integrity sha512-nlahjMtd/J1h7IzOOfqeyDh5LNfG0eULwlltPEonYy0QL+nqrBB+nyzJfULV+moL7sZyxc2sHdNJki+vLA9BSA==
dependencies:
- "@tanstack/query-devtools" "5.91.1"
+ "@tanstack/query-devtools" "5.93.0"
"@tanstack/react-query-persist-client@^5.76.0":
- version "5.90.14"
- resolved "https://registry.yarnpkg.com/@tanstack/react-query-persist-client/-/react-query-persist-client-5.90.14.tgz#aa99fbf6e34b4eab7854b1cbed1dcadf9817d94d"
- integrity sha512-jTGnr/DBlzV/UYqU+b8bZWECBuqh3Q3g7Ih50IktZkvmwTUsidQhhl2JyknNYVZkl5AgMfPAywNKZLTI82wmlA==
+ version "5.90.27"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-query-persist-client/-/react-query-persist-client-5.90.27.tgz#6bf177ea728eec30df50d87f4151dfac8aeaf4f0"
+ integrity sha512-rKiCZ2C0kzmyDoLfrPHz2UdEDKHo/oXkKVRbhgtHya/bWH6jWDFX5cSFc1SLB33FDrgR8uOG1MwVohBrI4+F8A==
dependencies:
- "@tanstack/query-persist-client-core" "5.91.11"
+ "@tanstack/query-persist-client-core" "5.92.4"
"@tanstack/react-query@^5.51.11":
- version "5.90.12"
- resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.90.12.tgz#49536842eff6487a9e645a453fea2642d8f4f209"
- integrity sha512-graRZspg7EoEaw0a8faiUASCyJrqjKPdqJ9EwuDRUF9mEYJ1YPczI9H+/agJ0mOJkPCJDk0lsz5QTrLZ/jQ2rg==
+ version "5.91.2"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.91.2.tgz#febe35515d611bd3d725a892cc35c37e743fbe62"
+ integrity sha512-GClLPzbM57iFXv+FlvOUL56XVe00PxuTaVEyj1zAObhRiKF008J5vedmaq7O6ehs+VmPHe8+PUQhMuEyv8d9wQ==
dependencies:
- "@tanstack/query-core" "5.90.12"
+ "@tanstack/query-core" "5.91.2"
"@tanstack/react-table@8.20.6":
version "8.20.6"
@@ -2255,149 +2081,149 @@
resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.11.2.tgz#00409e743ac4eea9afe5b7708594d5fcebb00212"
integrity sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==
-"@tiptap/core@^3.20.1", "@tiptap/core@^3.4.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/core/-/core-3.20.1.tgz#3e870175541144cc9ca292c804609f7c43549a8b"
- integrity sha512-SwkPEWIfaDEZjC8SEIi4kZjqIYUbRgLUHUuQezo5GbphUNC8kM1pi3C3EtoOPtxXrEbY6e4pWEzW54Pcrd+rVA==
+"@tiptap/core@^3.20.4", "@tiptap/core@^3.4.1":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/core/-/core-3.20.4.tgz#8671ebdd0723e7db9631f03df4d637687788e773"
+ integrity sha512-3i/DG89TFY/b34T5P+j35UcjYuB5d3+9K8u6qID+iUqNPiza015HPIZLuPfE5elNwVdV3EXIoPo0LLeBLgXXAg==
-"@tiptap/extension-blockquote@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-3.20.1.tgz#7991cbe4250f4389c80fc06adc499ad1e65cb7bf"
- integrity sha512-WzNXk/63PQI2fav4Ta6P0GmYRyu8Gap1pV3VUqaVK829iJ6Zt1T21xayATHEHWMK27VT1GLPJkx9Ycr2jfDyQw==
+"@tiptap/extension-blockquote@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-blockquote/-/extension-blockquote-3.20.4.tgz#b6258699487a75d124b609e4122156f6ed1e0869"
+ integrity sha512-9sskyyhYj2oKat//lyZVXCp9YrPt4oJAZnGHYWXS0xlskjsLElrfKKlM4vpbhGss3VrhQRoEGqWLnIaJYPF1zw==
-"@tiptap/extension-bold@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-3.20.1.tgz#c5dda7450cb1d575ee3f53fafd02fb0169151df6"
- integrity sha512-fz++Qv6Rk/Hov0IYG/r7TJ1Y4zWkuGONe0UN5g0KY32NIMg3HeOHicbi4xsNWTm9uAOl3eawWDkezEMrleObMw==
+"@tiptap/extension-bold@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-bold/-/extension-bold-3.20.4.tgz#095e8e2963d93767814289aa555b0de1950e6bf1"
+ integrity sha512-Md7/mNAeJCY+VLJc8JRGI+8XkVPKiOGB1NgqQPdh3aYtxXQDChQOZoJEQl6TuudDxZ85bLZB67NjZlx3jo8/0g==
-"@tiptap/extension-bubble-menu@^3.13.0":
- version "3.13.0"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-3.13.0.tgz#c62dece2e865a2efaaf455061204f48f59f5b24f"
- integrity sha512-qZ3j2DBsqP9DjG2UlExQ+tHMRhAnWlCKNreKddKocb/nAFrPdBCtvkqIEu+68zPlbLD4ukpoyjUklRJg+NipFg==
+"@tiptap/extension-bubble-menu@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-bubble-menu/-/extension-bubble-menu-3.20.4.tgz#e7e3c033a74d5dc67b1dac84346ee12e07d81b86"
+ integrity sha512-EXywPlI8wjPcAb8ozymgVhjtMjFrnhtoyNTy8ZcObdpUi5CdO9j892Y7aPbKe5hLhlDpvJk7rMfir4FFKEmfng==
dependencies:
"@floating-ui/dom" "^1.0.0"
-"@tiptap/extension-bullet-list@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-3.20.1.tgz#7184db6e65533904d65d403690784f5fea508208"
- integrity sha512-mbrlvOZo5OF3vLhp+3fk9KuL/6J/wsN0QxF6ZFRAHzQ9NkJdtdfARcBeBnkWXGN8inB6YxbTGY1/E4lmBkOpOw==
-
-"@tiptap/extension-code-block@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-3.20.1.tgz#c4b69ff6eb0929700cfd70aedee0754960efb17d"
- integrity sha512-vKejwBq+Nlj4Ybd3qOyDxIQKzYymdNH+8eXkKwGShk2nfLJIxq69DCyGvmuHgipIO1qcYPJ149UNpGN+YGcdmA==
-
-"@tiptap/extension-code@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-3.20.1.tgz#611b95bb1b583fdca53b39d3abd46165c7fe3721"
- integrity sha512-509DHINIA/Gg+eTG7TEkfsS8RUiPLH5xZNyLRT0A1oaoaJmECKfrV6aAm05IdfTyqDqz6LW5pbnX6DdUC4keug==
-
-"@tiptap/extension-document@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-3.20.1.tgz#b8cc670096ad755f3c0daa1f5297aa7536947ff0"
- integrity sha512-9vrqdGmRV7bQCSY3NLgu7UhIwgOCDp4sKqMNsoNRX0aZ021QQMTvBQDPkiRkCf7MNsnWrNNnr52PVnULEn3vFQ==
-
-"@tiptap/extension-dropcursor@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-3.20.1.tgz#c2e3f8536164258c7532da32bb132c082c8e625d"
- integrity sha512-K18L9FX4znn+ViPSIbTLOGcIaXMx/gLNwAPE8wPLwswbHhQqdiY1zzdBw6drgOc1Hicvebo2dIoUlSXOZsOEcw==
-
-"@tiptap/extension-floating-menu@^3.13.0":
- version "3.13.0"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-3.13.0.tgz#03d03292add49d1b380cdb1ff3890b2956d4e3f5"
- integrity sha512-OsezV2cMofZM4c13gvgi93IEYBUzZgnu8BXTYZQiQYekz4bX4uulBmLa1KOA9EN71FzS+SoLkXHU0YzlbLjlxA==
-
-"@tiptap/extension-gapcursor@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-3.20.1.tgz#b1ba47085c3a9deb4d6a899c85ac358b33e37772"
- integrity sha512-kZOtttV6Ai8VUAgEng3h4WKFbtdSNJ6ps7r0cRPY+FctWhVmgNb/JJwwyC+vSilR7nRENAhrA/Cv/RxVlvLw+g==
-
-"@tiptap/extension-hard-break@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-3.20.1.tgz#5cb4e0892f05f4658d948831afcc3c6121147c77"
- integrity sha512-9sKpmg/IIdlLXimYWUZ3PplIRcehv4Oc7V1miTqlnAthMzjMqigDkjjgte4JZV67RdnDJTQkRw8TklCAU28Emg==
-
-"@tiptap/extension-heading@^3.20.1", "@tiptap/extension-heading@^3.4.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-3.20.1.tgz#e626c7ad0b9906d8045372e726a9a277657f3eaa"
- integrity sha512-unudyfQP6FxnyWinxvPqe/51DG91J6AaJm666RnAubgYMCgym+33kBftx4j4A6qf+ddWYbD00thMNKOnVLjAEQ==
-
-"@tiptap/extension-horizontal-rule@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-3.20.1.tgz#a7c53eeffce44d20106e3fd84a17dd3b65f887fd"
- integrity sha512-rjFKFXNntdl0jay8oIGFvvykHlpyQTLmrH3Ag2fj3i8yh6MVvqhtaDomYQbw5sxECd5hBkL+T4n2d2DRuVw/QQ==
+"@tiptap/extension-bullet-list@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-bullet-list/-/extension-bullet-list-3.20.4.tgz#0ab306b17cee5295d5d6fb64c22f60eedbdd647e"
+ integrity sha512-1RTGrur1EKoxfnLZ3M6xeNj8GITAz74jH2DHGcjLsd2Xr7Q7BozGaIq6GkkvKguMwbI1zCOxTHFCpUETXAIQQA==
+
+"@tiptap/extension-code-block@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-code-block/-/extension-code-block-3.20.4.tgz#2de3d3d1316ace59340d9e8ae4d73c9cc39c602f"
+ integrity sha512-Zlw3FrXTy01+o1yISeX/LC+iJeHA+ym602bMXGmtA6lyl7QSOSO7WExweJ6xeJGhbCjldwT5al6fkRAs8iGJZg==
+
+"@tiptap/extension-code@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-code/-/extension-code-3.20.4.tgz#4feeb541a5984573f8cbd8d709bfd52c3546a0f7"
+ integrity sha512-7j8Hi964bH1SZ9oLdZC1fkqWz27mliSDV7M8lmL/M14+Qw42D/VOAKS4Aw9OCFtHMlTsjLR6qsoVxL8Lpkt6NA==
+
+"@tiptap/extension-document@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-document/-/extension-document-3.20.4.tgz#9bf58b9e3cbc6d1637c7c88dab62e0ecbcdd20e4"
+ integrity sha512-zF1CIFVLt8MfSpWWnPwtGyxPOsT0xYM2qJKcXf2yZcTG37wDKmUi6heG53vGigIavbQlLaAFvs+1mNdOu2x/0A==
+
+"@tiptap/extension-dropcursor@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-dropcursor/-/extension-dropcursor-3.20.4.tgz#0f76b2119d80b264ed33d9eab0979e7627fc170c"
+ integrity sha512-TgMwvZ8myXYdmd6bUV7qkpZXv7ZUiSmX/8eo+iPEzYo2CnDLAGvDKgC50nfq/g87SDvfBgPuAiBfFvsMQQWaTw==
+
+"@tiptap/extension-floating-menu@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-floating-menu/-/extension-floating-menu-3.20.4.tgz#5b082cf500330f0a66f91a49c3a1a232038662a7"
+ integrity sha512-AaPTFhoO8DBIElJyd/RTVJjkctvJuL+GHURX0npbtTxXq5HXbebVwf2ARNR7jMd/GThsmBaNJiGxZg4A2oeDqQ==
+
+"@tiptap/extension-gapcursor@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-gapcursor/-/extension-gapcursor-3.20.4.tgz#4834a5583dca98235add1a567f7cea3f124ca936"
+ integrity sha512-JJ6f1iQ1e0s4kISgq55U3UYGwWV/N9f0PYMtB6e3L+SBQjXnywaLK0g6vfN6IvTCC2vdIuqeSOX8VlSO97sJLw==
+
+"@tiptap/extension-hard-break@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-hard-break/-/extension-hard-break-3.20.4.tgz#6494b0dc457ca8dd6f33e6ae5b6c098baf640e30"
+ integrity sha512-gJbq58d8zB1gzyqVEopowej5CpW4/Fpg6oGJvlZxaCukqd0gJRWGC89K+jE62YA1Td4sfcKrekKvN7jm2y/ZUg==
+
+"@tiptap/extension-heading@^3.20.4", "@tiptap/extension-heading@^3.4.1":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-heading/-/extension-heading-3.20.4.tgz#6d31857f5d9fb5a61214ae6f45cf063c2e3238ea"
+ integrity sha512-xsnkmTGggJc5P2iCwS1lv8KFG31xC/GNPJKoi/3UH67j/lKDhA3AdtshsLeyv2FKtTtYDb8oV0IqzHB1MM6a7w==
+
+"@tiptap/extension-horizontal-rule@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-3.20.4.tgz#6a849a0f2e3235b1ab21f46a1f5ebb9681f35d06"
+ integrity sha512-y6joCi49haAA0bo3EGUY+dWUMHH1GPUc84hxrBY/0pMs+Bn+kQ1+DQJErZDTWGJrlHPWU/yekBZT72SNdp0DNA==
"@tiptap/extension-image@^3.4.1":
- version "3.13.0"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-3.13.0.tgz#55edb952e86c2ebed436cd53def8b2e743d71d7e"
- integrity sha512-223uzLUkIa1rkK7aQK3AcIXe6LbCtmnpVb7sY5OEp+LpSaSPyXwyrZ4A0EO1o98qXG68/0B2OqMntFtA9c5Fbw==
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-image/-/extension-image-3.20.4.tgz#8a994ba3045fd25ba2a35d96ef48a39360c7e8b9"
+ integrity sha512-57w2TevHQljTh6Xiry9duIm7NNOQAUSTwtwRn4GGLoKwHR8qXTxzp513ASrFOgR2kgs2TP471Au6RHf947P+jg==
-"@tiptap/extension-italic@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-3.20.1.tgz#9ddd60cd41c5ad4b614909ab2cab385c886c1d4b"
- integrity sha512-ZYRX13Kt8tR8JOzSXirH3pRpi8x30o7LHxZY58uXBdUvr3tFzOkh03qbN523+diidSVeHP/aMd/+IrplHRkQug==
+"@tiptap/extension-italic@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-italic/-/extension-italic-3.20.4.tgz#a062fd1c989bf9a5d5cd95b981d6f2b1c2371657"
+ integrity sha512-4ZqiWr7cmqPFux8tj1ZLiYytyWf343IvQemNX6AvVWvscrJcrfj3YX4Le2BA0RW3A3M6RpLQXXozuF8vxYFDeQ==
-"@tiptap/extension-link@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-3.20.1.tgz#e9cf33ae4a30b3ceb41a1aa7f923cce9fb5809ca"
- integrity sha512-oYTTIgsQMqpkSnJAuAc+UtIKMuI4lv9e1y4LfI1iYm6NkEUHhONppU59smhxHLzb3Ww7YpDffbp5IgDTAiJztA==
+"@tiptap/extension-link@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-link/-/extension-link-3.20.4.tgz#9c87c0df73ba5477312a6dfb4b9f44aa2b3e378e"
+ integrity sha512-JNDSkWrVdb8NSvbQXwHWvK5tCMbTWwOHFOweknQZ1JPK4dei9FJVofYQaHyW4bJBdcCjds3NZSnXE8DM9iAWmg==
dependencies:
linkifyjs "^4.3.2"
-"@tiptap/extension-list-item@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-3.20.1.tgz#fb48984d8fbd776dc85d39641047d3bfc103a8dd"
- integrity sha512-tzgnyTW82lYJkUnadYbatwkI9dLz/OWRSWuFpQPRje/ItmFMWuQ9c9NDD8qLbXPdEYnvrgSAA+ipCD/1G0qA0Q==
+"@tiptap/extension-list-item@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-list-item/-/extension-list-item-3.20.4.tgz#30c7682940d1cea844d340ce30a09b86407497a1"
+ integrity sha512-QoTc5RACXaZF+vIIBBxjGO7D0oWFUDgBKJCpvUZ0CoGGKosnfe4a9I5THFyLj4201cf0oUqgf1oZhTqETGxlVw==
-"@tiptap/extension-list-keymap@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-list-keymap/-/extension-list-keymap-3.20.1.tgz#8737d2b11e222376b12ad5d6f063ff1cf45251e6"
- integrity sha512-Dr0xsQKx0XPOgDg7xqoWwfv7FFwZ3WeF3eOjqh3rDXlNHMj1v+UW5cj1HLphrsAZHTrVTn2C+VWPJkMZrSbpvQ==
+"@tiptap/extension-list-keymap@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-list-keymap/-/extension-list-keymap-3.20.4.tgz#b2efd5ded1169865bb765e43423bc31f12021d0e"
+ integrity sha512-RIqXM649+8IP7p/KVfaGlJiwjCylm1m6OPlaoM3K8O7oEOGRQzNeexexECCD2jsXRxew4E+vBNMD2orXqJmu8A==
-"@tiptap/extension-list@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-list/-/extension-list-3.20.1.tgz#cfbfeb8b66139598501467d9b0ec889821a79bd9"
- integrity sha512-euBRAn0mkV7R2VEE+AuOt3R0j9RHEMFXamPFmtvTo8IInxDClusrm6mJoDjS8gCGAXsQCRiAe1SCQBPgGbOOwg==
+"@tiptap/extension-list@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-list/-/extension-list-3.20.4.tgz#1c85438ed32e908262e9acf5855fb668ffd84303"
+ integrity sha512-X+5plTKhOioNcQ4KsAFJJSb/3+zR8Xhdpow4HzXtoV1KcbdDey1fhZdpsfkbrzCL0s6/wAgwZuAchCK7HujurQ==
-"@tiptap/extension-ordered-list@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-3.20.1.tgz#749b514ac42b1315d637d5d29c692f6e2344e428"
- integrity sha512-Y+3Ad7OwAdagqdYwCnbqf7/to5ypD4NnUNHA0TXRCs7cAHRA8AdgPoIcGFpaaSpV86oosNU3yfeJouYeroffog==
+"@tiptap/extension-ordered-list@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-ordered-list/-/extension-ordered-list-3.20.4.tgz#8071882051f91aaedceebb9d71ebfba16afa8029"
+ integrity sha512-3budNL8BgBon3TcXZ4hjT0YpFvx1Ka3uSIECKDxHgES+OQcR+6cagxSb60gFEccf3Dr0PIwcVTY6g14lC1qKRQ==
-"@tiptap/extension-paragraph@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-3.20.1.tgz#0c2ee1cdf9f3bacf713ce4db0f47abcb393c29c8"
- integrity sha512-QFrAtXNyv7JSnomMQc1nx5AnG9mMznfbYJAbdOQYVdbLtAzTfiTuNPNbQrufy5ZGtGaHxDCoaygu2QEfzaKG+Q==
+"@tiptap/extension-paragraph@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-paragraph/-/extension-paragraph-3.20.4.tgz#d365683e444ddcbf4cd32505f4f91dc3e219e0a1"
+ integrity sha512-lm6fOScWuZAF/Sfp97igUwFd3L1QHIVLAWP5NVdh0DTLrEIt4rMBmsww+yOpMQRhvz2uTgMbMXynrimhzi/QVw==
-"@tiptap/extension-strike@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-3.20.1.tgz#b8110518b00aa780fecb70e206ea82a12f447319"
- integrity sha512-EYgyma10lpsY+rwbVQL9u+gA7hBlKLSMFH7Zgd37FSxukOjr+HE8iKPQQ+SwbGejyDsPlLT8Z5Jnuxo5Ng90Pg==
+"@tiptap/extension-strike@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-strike/-/extension-strike-3.20.4.tgz#e76ddad8948e0882db38c88320108db19cf12b73"
+ integrity sha512-It1Px9uDGTsVqyyg6cy7DigLoenljpQwqdI0jssM7QclZrHnsrye9fZxBBiiuCzzV1305MxKgHvratkHwqmVNA==
"@tiptap/extension-table@^3.19.0":
- version "3.19.0"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-3.19.0.tgz#a5f9be88e319f60dc7b8df1321f95a31b20fe991"
- integrity sha512-Lg8DlkkDUMYE/CcGOxoCWF98B2i7VWh+AGgqlF+XWrHjhlKHfENLRXm1a0vWuyyP3NknRYILoaaZ1s7QzmXKRA==
-
-"@tiptap/extension-text@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-3.20.1.tgz#f102ee6d28961f4f62a41f589d0cebfa93483c09"
- integrity sha512-7PlIbYW8UenV6NPOXHmv8IcmPGlGx6HFq66RmkJAOJRPXPkTLAiX0N8rQtzUJ6jDEHqoJpaHFEHJw0xzW1yF+A==
-
-"@tiptap/extension-underline@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extension-underline/-/extension-underline-3.20.1.tgz#a07f6631a2bc5932e9872b97c22f16c6dd792611"
- integrity sha512-fmHvDKzwCgnZUwRreq8tYkb1YyEwgzZ6QQkAQ0CsCRtvRMqzerr3Duz0Als4i8voZTuGDEL3VR6nAJbLAb/wPg==
-
-"@tiptap/extensions@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/extensions/-/extensions-3.20.1.tgz#c95ffd378c2417cf88879ac46e78d4633d6eabe0"
- integrity sha512-JRc/v+OBH0qLTdvQ7HvHWTxGJH73QOf1MC0R8NhOX2QnAbg2mPFv1h+FjGa2gfLGuCXBdWQomjekWkUKbC4e5A==
-
-"@tiptap/pm@^3.20.1", "@tiptap/pm@^3.4.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-3.20.1.tgz#06827f1497c3477147908e25eb91dfa1ce1c4988"
- integrity sha512-6kCiGLvpES4AxcEuOhb7HR7/xIeJWMjZlb6J7e8zpiIh5BoQc7NoRdctsnmFEjZvC19bIasccshHQ7H2zchWqw==
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-table/-/extension-table-3.20.4.tgz#b2067cf1609bb1c39b61e504dc4aa05cba13d9ca"
+ integrity sha512-vEHXRL9k9G02pp3P+DyUnN4YRaRAHGfTBC6gck0s9TpsCM9NIchL0qI1fb/u46Bu6UaoMMk58DGr7xaJ29g7KQ==
+
+"@tiptap/extension-text@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-text/-/extension-text-3.20.4.tgz#92d44dbe3214b4d664f6d8f82a6c2e67254a165b"
+ integrity sha512-jchJcBZixDEO2J66Zx5dchsI2mA6IYsROqF8P1poxL4ienH7RVQRCTsBNnSfIeOtREKKWeOU/tEs5fcpvvGwIQ==
+
+"@tiptap/extension-underline@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extension-underline/-/extension-underline-3.20.4.tgz#438e6c77fbfeff1b9c71bd52ed2f3f8a63ff5b8a"
+ integrity sha512-0OjMc3FDujX16G+jhvqcY/mLot8SrNtDu8ggUwNLAfiI/QIvMVgk7giFD71DATC/4Nb8i/iwAEegTD8MxBIXCg==
+
+"@tiptap/extensions@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/extensions/-/extensions-3.20.4.tgz#f87ada45451cca61038d7c894630403133d096c8"
+ integrity sha512-8p6hVT65DjuQjtEdlH6ewX9SOJHlVQAOee3sWIJQmeJNRnZNvqPIBLleebUqDiljNTpxBv6s6QWkSTKgf3btwg==
+
+"@tiptap/pm@^3.20.4":
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-3.20.4.tgz#3a359786a12ff33be39086147a94de13ce83fa4c"
+ integrity sha512-rCHYSBToilBEuI6PtjziHDdRkABH/XqwJ7dG4Amn/SD3yGiZKYCiEApQlTUS2zZeo8DsLeuqqqB4vEOeD4OEPg==
dependencies:
prosemirror-changeset "^2.3.0"
prosemirror-collab "^1.3.1"
@@ -2419,51 +2245,46 @@
prosemirror-view "^1.38.1"
"@tiptap/react@^3.4.1":
- version "3.13.0"
- resolved "https://registry.yarnpkg.com/@tiptap/react/-/react-3.13.0.tgz#4287e5df1c7e91182f280fccadf0c6dc6239eaff"
- integrity sha512-VqpqNZ9qtPr3pWK4NsZYxXgLSEiAnzl6oS7tEGmkkvJbcGSC+F7R13Xc9twv/zT5QCLxaHdEbmxHbuAIkrMgJQ==
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/react/-/react-3.20.4.tgz#b313ff5051e30de4476138e47802a67bfda8ca2e"
+ integrity sha512-1B8iWsHWwb5TeyVaUs8BRPzwWo4PsLQcl03urHaz0zTJ8DauopqvxzV3+lem1OkzRHn7wnrapDvwmIGoROCaQw==
dependencies:
"@types/use-sync-external-store" "^0.0.6"
fast-equals "^5.3.3"
use-sync-external-store "^1.4.0"
optionalDependencies:
- "@tiptap/extension-bubble-menu" "^3.13.0"
- "@tiptap/extension-floating-menu" "^3.13.0"
+ "@tiptap/extension-bubble-menu" "^3.20.4"
+ "@tiptap/extension-floating-menu" "^3.20.4"
"@tiptap/starter-kit@^3.20.1":
- version "3.20.1"
- resolved "https://registry.yarnpkg.com/@tiptap/starter-kit/-/starter-kit-3.20.1.tgz#a97c2d1389f05be22742b29bbe3c6cac9fe2ec70"
- integrity sha512-opqWxL/4OTEiqmVC0wsU4o3JhAf6LycJ2G/gRIZVAIFLljI9uHfpPMTFGxZ5w9IVVJaP5PJysfwW/635kKqkrw==
- dependencies:
- "@tiptap/core" "^3.20.1"
- "@tiptap/extension-blockquote" "^3.20.1"
- "@tiptap/extension-bold" "^3.20.1"
- "@tiptap/extension-bullet-list" "^3.20.1"
- "@tiptap/extension-code" "^3.20.1"
- "@tiptap/extension-code-block" "^3.20.1"
- "@tiptap/extension-document" "^3.20.1"
- "@tiptap/extension-dropcursor" "^3.20.1"
- "@tiptap/extension-gapcursor" "^3.20.1"
- "@tiptap/extension-hard-break" "^3.20.1"
- "@tiptap/extension-heading" "^3.20.1"
- "@tiptap/extension-horizontal-rule" "^3.20.1"
- "@tiptap/extension-italic" "^3.20.1"
- "@tiptap/extension-link" "^3.20.1"
- "@tiptap/extension-list" "^3.20.1"
- "@tiptap/extension-list-item" "^3.20.1"
- "@tiptap/extension-list-keymap" "^3.20.1"
- "@tiptap/extension-ordered-list" "^3.20.1"
- "@tiptap/extension-paragraph" "^3.20.1"
- "@tiptap/extension-strike" "^3.20.1"
- "@tiptap/extension-text" "^3.20.1"
- "@tiptap/extension-underline" "^3.20.1"
- "@tiptap/extensions" "^3.20.1"
- "@tiptap/pm" "^3.20.1"
-
-"@trysound/sax@0.2.0":
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
- integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
+ version "3.20.4"
+ resolved "https://registry.yarnpkg.com/@tiptap/starter-kit/-/starter-kit-3.20.4.tgz#f3fe13b5f0570d67928c236bc3ea659a74674782"
+ integrity sha512-WcyK6hsTl8eBsQhQ+d9Sq8fYZKOYdL+D45MyH3hz583elXqJlW3h3JPFYb0o87gddGxn8Mm57OA/gA1zEdeDMw==
+ dependencies:
+ "@tiptap/core" "^3.20.4"
+ "@tiptap/extension-blockquote" "^3.20.4"
+ "@tiptap/extension-bold" "^3.20.4"
+ "@tiptap/extension-bullet-list" "^3.20.4"
+ "@tiptap/extension-code" "^3.20.4"
+ "@tiptap/extension-code-block" "^3.20.4"
+ "@tiptap/extension-document" "^3.20.4"
+ "@tiptap/extension-dropcursor" "^3.20.4"
+ "@tiptap/extension-gapcursor" "^3.20.4"
+ "@tiptap/extension-hard-break" "^3.20.4"
+ "@tiptap/extension-heading" "^3.20.4"
+ "@tiptap/extension-horizontal-rule" "^3.20.4"
+ "@tiptap/extension-italic" "^3.20.4"
+ "@tiptap/extension-link" "^3.20.4"
+ "@tiptap/extension-list" "^3.20.4"
+ "@tiptap/extension-list-item" "^3.20.4"
+ "@tiptap/extension-list-keymap" "^3.20.4"
+ "@tiptap/extension-ordered-list" "^3.20.4"
+ "@tiptap/extension-paragraph" "^3.20.4"
+ "@tiptap/extension-strike" "^3.20.4"
+ "@tiptap/extension-text" "^3.20.4"
+ "@tiptap/extension-underline" "^3.20.4"
+ "@tiptap/extensions" "^3.20.4"
+ "@tiptap/pm" "^3.20.4"
"@tybys/wasm-util@^0.10.0":
version "0.10.1"
@@ -2531,9 +2352,9 @@
"@types/d3-path" "^1"
"@types/d3-shape@^3.1.0", "@types/d3-shape@^3.1.6":
- version "3.1.7"
- resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-3.1.7.tgz#2b7b423dc2dfe69c8c93596e673e37443348c555"
- integrity sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==
+ version "3.1.8"
+ resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-3.1.8.tgz#d1516cc508753be06852cd06758e3bb54a22b0e3"
+ integrity sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==
dependencies:
"@types/d3-path" "*"
@@ -2548,9 +2369,9 @@
integrity sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==
"@types/debug@^4.0.0":
- version "4.1.12"
- resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917"
- integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==
+ version "4.1.13"
+ resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.13.tgz#22d1cc9d542d3593caea764f974306ab36286ee7"
+ integrity sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==
dependencies:
"@types/ms" "*"
@@ -2621,11 +2442,11 @@
integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==
"@types/node@*":
- version "25.0.2"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.2.tgz#411f9dd6cb2bf5ee46aed7199a9f85ca6b068b4e"
- integrity sha512-gWEkeiyYE4vqjON/+Obqcoeffmk0NF15WSBwSs7zwVA2bAbTaE0SJ7P0WNGoJn8uE7fiaV5a7dKYIJriEqOrmA==
+ version "25.5.0"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-25.5.0.tgz#5c99f37c443d9ccc4985866913f1ed364217da31"
+ integrity sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==
dependencies:
- undici-types "~7.16.0"
+ undici-types "~7.18.0"
"@types/pako@^2.0.3":
version "2.0.4"
@@ -2645,9 +2466,9 @@
integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
"@types/prismjs@^1.0.0":
- version "1.26.5"
- resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.5.tgz#72499abbb4c4ec9982446509d2f14fb8483869d6"
- integrity sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==
+ version "1.26.6"
+ resolved "https://registry.yarnpkg.com/@types/prismjs/-/prismjs-1.26.6.tgz#6ea27c126d645319ae4f7055eda63a9e835c0187"
+ integrity sha512-vqlvI7qlMvcCBbVe0AKAb4f97//Hy0EBTaiW8AalRnG/xAN5zOiWWyrNqNXeq8+KAuvRewjCVY1+IPxk4RdNYw==
"@types/prop-types@^15.7.15":
version "15.7.15"
@@ -2682,9 +2503,9 @@
integrity sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==
"@types/react@*":
- version "19.2.7"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.7.tgz#84e62c0f23e8e4e5ac2cadcea1ffeacccae7f62f"
- integrity sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==
+ version "19.2.14"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-19.2.14.tgz#39604929b5e3957e3a6fa0001dafb17c7af70bad"
+ integrity sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==
dependencies:
csstype "^3.2.2"
@@ -2708,100 +2529,100 @@
resolved "https://registry.yarnpkg.com/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz#60be8d21baab8c305132eb9cb912ed497852aadc"
integrity sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==
-"@typescript-eslint/eslint-plugin@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.56.0.tgz#5aec3db807a6b8437ea5d5ebf7bd16b4119aba8d"
- integrity sha512-lRyPDLzNCuae71A3t9NEINBiTn7swyOhvUj3MyUOxb8x6g6vPEFoOU+ZRmGMusNC3X3YMhqMIX7i8ShqhT74Pw==
+"@typescript-eslint/eslint-plugin@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.57.1.tgz#ddfdfb30f8b5ccee7f3c21798b377c51370edd55"
+ integrity sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==
dependencies:
"@eslint-community/regexpp" "^4.12.2"
- "@typescript-eslint/scope-manager" "8.56.0"
- "@typescript-eslint/type-utils" "8.56.0"
- "@typescript-eslint/utils" "8.56.0"
- "@typescript-eslint/visitor-keys" "8.56.0"
+ "@typescript-eslint/scope-manager" "8.57.1"
+ "@typescript-eslint/type-utils" "8.57.1"
+ "@typescript-eslint/utils" "8.57.1"
+ "@typescript-eslint/visitor-keys" "8.57.1"
ignore "^7.0.5"
natural-compare "^1.4.0"
ts-api-utils "^2.4.0"
-"@typescript-eslint/parser@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.56.0.tgz#8ecff1678b8b1a742d29c446ccf5eeea7f971d72"
- integrity sha512-IgSWvLobTDOjnaxAfDTIHaECbkNlAlKv2j5SjpB2v7QHKv1FIfjwMy8FsDbVfDX/KjmCmYICcw7uGaXLhtsLNg==
+"@typescript-eslint/parser@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.57.1.tgz#d523e559b148264055c0a49a29d5f50c7de659c2"
+ integrity sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==
dependencies:
- "@typescript-eslint/scope-manager" "8.56.0"
- "@typescript-eslint/types" "8.56.0"
- "@typescript-eslint/typescript-estree" "8.56.0"
- "@typescript-eslint/visitor-keys" "8.56.0"
+ "@typescript-eslint/scope-manager" "8.57.1"
+ "@typescript-eslint/types" "8.57.1"
+ "@typescript-eslint/typescript-estree" "8.57.1"
+ "@typescript-eslint/visitor-keys" "8.57.1"
debug "^4.4.3"
-"@typescript-eslint/project-service@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.56.0.tgz#bb8562fecd8f7922e676fc6a1189c20dd7991d73"
- integrity sha512-M3rnyL1vIQOMeWxTWIW096/TtVP+8W3p/XnaFflhmcFp+U4zlxUxWj4XwNs6HbDeTtN4yun0GNTTDBw/SvufKg==
+"@typescript-eslint/project-service@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.57.1.tgz#16af9fe16eedbd7085e4fdc29baa73715c0c55c5"
+ integrity sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==
dependencies:
- "@typescript-eslint/tsconfig-utils" "^8.56.0"
- "@typescript-eslint/types" "^8.56.0"
+ "@typescript-eslint/tsconfig-utils" "^8.57.1"
+ "@typescript-eslint/types" "^8.57.1"
debug "^4.4.3"
-"@typescript-eslint/scope-manager@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.56.0.tgz#604030a4c6433df3728effdd441d47f45a86edb4"
- integrity sha512-7UiO/XwMHquH+ZzfVCfUNkIXlp/yQjjnlYUyYz7pfvlK3/EyyN6BK+emDmGNyQLBtLGaYrTAI6KOw8tFucWL2w==
+"@typescript-eslint/scope-manager@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.57.1.tgz#4524d7e7b420cb501807499684d435ae129aaf35"
+ integrity sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==
dependencies:
- "@typescript-eslint/types" "8.56.0"
- "@typescript-eslint/visitor-keys" "8.56.0"
+ "@typescript-eslint/types" "8.57.1"
+ "@typescript-eslint/visitor-keys" "8.57.1"
-"@typescript-eslint/tsconfig-utils@8.56.0", "@typescript-eslint/tsconfig-utils@^8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.56.0.tgz#2538ce83cbc376e685487960cbb24b65fe2abc4e"
- integrity sha512-bSJoIIt4o3lKXD3xmDh9chZcjCz5Lk8xS7Rxn+6l5/pKrDpkCwtQNQQwZ2qRPk7TkUYhrq3WPIHXOXlbXP0itg==
+"@typescript-eslint/tsconfig-utils@8.57.1", "@typescript-eslint/tsconfig-utils@^8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.57.1.tgz#9233443ec716882a6f9e240fd900a73f0235f3d7"
+ integrity sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==
-"@typescript-eslint/type-utils@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.56.0.tgz#72b4edc1fc73988998f1632b3ec99c2a66eaac6e"
- integrity sha512-qX2L3HWOU2nuDs6GzglBeuFXviDODreS58tLY/BALPC7iu3Fa+J7EOTwnX9PdNBxUI7Uh0ntP0YWGnxCkXzmfA==
+"@typescript-eslint/type-utils@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.57.1.tgz#c49af1347b5869ca85155547a8f34f84ab386fd9"
+ integrity sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==
dependencies:
- "@typescript-eslint/types" "8.56.0"
- "@typescript-eslint/typescript-estree" "8.56.0"
- "@typescript-eslint/utils" "8.56.0"
+ "@typescript-eslint/types" "8.57.1"
+ "@typescript-eslint/typescript-estree" "8.57.1"
+ "@typescript-eslint/utils" "8.57.1"
debug "^4.4.3"
ts-api-utils "^2.4.0"
-"@typescript-eslint/types@8.56.0", "@typescript-eslint/types@^8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.56.0.tgz#a2444011b9a98ca13d70411d2cbfed5443b3526a"
- integrity sha512-DBsLPs3GsWhX5HylbP9HNG15U0bnwut55Lx12bHB9MpXxQ+R5GC8MwQe+N1UFXxAeQDvEsEDY6ZYwX03K7Z6HQ==
+"@typescript-eslint/types@8.57.1", "@typescript-eslint/types@^8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.57.1.tgz#54b27a8a25a7b45b4f978c3f8e00c4c78f11142c"
+ integrity sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==
-"@typescript-eslint/typescript-estree@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.56.0.tgz#fadbc74c14c5bac947db04980ff58bb178701c2e"
- integrity sha512-ex1nTUMWrseMltXUHmR2GAQ4d+WjkZCT4f+4bVsps8QEdh0vlBsaCokKTPlnqBFqqGaxilDNJG7b8dolW2m43Q==
+"@typescript-eslint/typescript-estree@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.57.1.tgz#a9fd28d4a0ec896aa9a9a7e0cead62ea24f99e76"
+ integrity sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==
dependencies:
- "@typescript-eslint/project-service" "8.56.0"
- "@typescript-eslint/tsconfig-utils" "8.56.0"
- "@typescript-eslint/types" "8.56.0"
- "@typescript-eslint/visitor-keys" "8.56.0"
+ "@typescript-eslint/project-service" "8.57.1"
+ "@typescript-eslint/tsconfig-utils" "8.57.1"
+ "@typescript-eslint/types" "8.57.1"
+ "@typescript-eslint/visitor-keys" "8.57.1"
debug "^4.4.3"
- minimatch "^9.0.5"
+ minimatch "^10.2.2"
semver "^7.7.3"
tinyglobby "^0.2.15"
ts-api-utils "^2.4.0"
-"@typescript-eslint/utils@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.56.0.tgz#063ce6f702ec603de1b83ee795ed5e877d6f7841"
- integrity sha512-RZ3Qsmi2nFGsS+n+kjLAYDPVlrzf7UhTffrDIKr+h2yzAlYP/y5ZulU0yeDEPItos2Ph46JAL5P/On3pe7kDIQ==
+"@typescript-eslint/utils@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.57.1.tgz#e40f5a7fcff02fd24092a7b52bd6ec029fb50465"
+ integrity sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==
dependencies:
"@eslint-community/eslint-utils" "^4.9.1"
- "@typescript-eslint/scope-manager" "8.56.0"
- "@typescript-eslint/types" "8.56.0"
- "@typescript-eslint/typescript-estree" "8.56.0"
+ "@typescript-eslint/scope-manager" "8.57.1"
+ "@typescript-eslint/types" "8.57.1"
+ "@typescript-eslint/typescript-estree" "8.57.1"
-"@typescript-eslint/visitor-keys@8.56.0":
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.56.0.tgz#7d6592ab001827d3ce052155edf7ecad19688d7d"
- integrity sha512-q+SL+b+05Ud6LbEE35qe4A99P+htKTKVbyiNEe45eCbJFyh/HVK9QXwlrbz+Q4L8SOW4roxSVwXYj4DMBT7Ieg==
+"@typescript-eslint/visitor-keys@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.57.1.tgz#3af4f88118924d3be983d4b8ae84803f11fe4563"
+ integrity sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==
dependencies:
- "@typescript-eslint/types" "8.56.0"
+ "@typescript-eslint/types" "8.57.1"
eslint-visitor-keys "^5.0.0"
"@uiw/react-json-view@^2.0.0-alpha.41":
@@ -2916,11 +2737,6 @@
resolved "https://registry.yarnpkg.com/@vvo/tzdb/-/tzdb-6.198.0.tgz#bcb33c581aec4f1258ad96c963ac96327ce960e3"
integrity sha512-bNRWBhWYl0edVgyX6AYbhoCM2tk2lXJjGCyO2VDc2xn6Dw8dLd7WGj2DDXkVOkmOIQTNjEAcxrEpIzz5pWVwFg==
-"@yr/monotone-cubic-spline@^1.0.3":
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/@yr/monotone-cubic-spline/-/monotone-cubic-spline-1.0.3.tgz#7272d89f8e4f6fb7a1600c28c378cc18d3b577b9"
- integrity sha512-FQXkOta0XBSUPHndIKON2Y9JeQz5ZeMqLYZVVK93FliNBFm7LNMIZmY6FrMEB9XPcDbE2bekMbZD6kzDkxwYjA==
-
abs-svg-path@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/abs-svg-path/-/abs-svg-path-0.1.1.tgz#df601c8e8d2ba10d4a76d625e236a9a39c2723bf"
@@ -2932,14 +2748,14 @@ acorn-jsx@^5.3.2:
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
acorn@^8.15.0:
- version "8.15.0"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
- integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==
+ version "8.16.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.16.0.tgz#4ce79c89be40afe7afe8f3adb902a1f1ce9ac08a"
+ integrity sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==
-ajv@^6.12.4:
- version "6.12.6"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
- integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ajv@^6.12.4, ajv@^6.14.0:
+ version "6.14.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.14.0.tgz#fd067713e228210636ebb08c60bd3765d6dbe73a"
+ integrity sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==
dependencies:
fast-deep-equal "^3.1.1"
fast-json-stable-stringify "^2.0.0"
@@ -2953,17 +2769,10 @@ ansi-styles@^4.1.0:
dependencies:
color-convert "^2.0.1"
-apexcharts@5.3.5:
- version "5.3.5"
- resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-5.3.5.tgz#5297861fdc8585c26bec3605b2d62638cc226b8d"
- integrity sha512-I04DY/WBZbJgJD2uixeV5EzyiL+J5LgKQXEu8rctqAwyRmKv44aDVeofJoLdTJe3ao4r2KEQfCgtVzXn6pqirg==
- dependencies:
- "@svgdotjs/svg.draggable.js" "^3.0.4"
- "@svgdotjs/svg.filter.js" "^3.0.8"
- "@svgdotjs/svg.js" "^3.2.4"
- "@svgdotjs/svg.resize.js" "^2.0.2"
- "@svgdotjs/svg.select.js" "^4.0.1"
- "@yr/monotone-cubic-spline" "^1.0.3"
+apexcharts@5.10.4:
+ version "5.10.4"
+ resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-5.10.4.tgz#79c9a05ab40b069f33873a1859de6cb0882ccf0e"
+ integrity sha512-gt0VUqZ2+mr25ScbUcKZgJr96jKYm4vjOcxEWCEh/E5F4dWqhyo3dBhPRvNNnkKiWxkMd2cBwj3ZYH3rK39fkA==
argparse@^1.0.7:
version "1.0.10"
@@ -3101,17 +2910,17 @@ available-typed-arrays@^1.0.7:
possible-typed-array-names "^1.0.0"
axe-core@^4.10.0:
- version "4.11.0"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.11.0.tgz#16f74d6482e343ff263d4f4503829e9ee91a86b6"
- integrity sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==
+ version "4.11.1"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.11.1.tgz#052ff9b2cbf543f5595028b583e4763b40c78ea7"
+ integrity sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==
axios@^1.7.2:
- version "1.13.2"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.13.2.tgz#9ada120b7b5ab24509553ec3e40123521117f687"
- integrity sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==
+ version "1.13.6"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.13.6.tgz#c3f92da917dc209a15dd29936d20d5089b6b6c98"
+ integrity sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==
dependencies:
- follow-redirects "^1.15.6"
- form-data "^4.0.4"
+ follow-redirects "^1.15.11"
+ form-data "^4.0.5"
proxy-from-env "^1.1.0"
axobject-query@^4.1.0:
@@ -3128,29 +2937,29 @@ babel-plugin-macros@^3.1.0:
cosmiconfig "^7.0.0"
resolve "^1.19.0"
-babel-plugin-polyfill-corejs2@^0.4.14:
- version "0.4.14"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.14.tgz#8101b82b769c568835611542488d463395c2ef8f"
- integrity sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==
+babel-plugin-polyfill-corejs2@^0.4.15:
+ version "0.4.17"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz#198f970f1c99a856b466d1187e88ce30bd199d91"
+ integrity sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==
dependencies:
- "@babel/compat-data" "^7.27.7"
- "@babel/helper-define-polyfill-provider" "^0.6.5"
+ "@babel/compat-data" "^7.28.6"
+ "@babel/helper-define-polyfill-provider" "^0.6.8"
semver "^6.3.1"
-babel-plugin-polyfill-corejs3@^0.13.0:
- version "0.13.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz#bb7f6aeef7addff17f7602a08a6d19a128c30164"
- integrity sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==
+babel-plugin-polyfill-corejs3@^0.14.0:
+ version "0.14.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.14.2.tgz#6ac08d2f312affb70c4c69c0fbba4cb417ee5587"
+ integrity sha512-coWpDLJ410R781Npmn/SIBZEsAetR4xVi0SxLMXPaMO4lSf1MwnkGYMtkFxew0Dn8B3/CpbpYxN0JCgg8mn67g==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.6.5"
- core-js-compat "^3.43.0"
+ "@babel/helper-define-polyfill-provider" "^0.6.8"
+ core-js-compat "^3.48.0"
-babel-plugin-polyfill-regenerator@^0.6.5:
- version "0.6.5"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.5.tgz#32752e38ab6f6767b92650347bf26a31b16ae8c5"
- integrity sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==
+babel-plugin-polyfill-regenerator@^0.6.6:
+ version "0.6.8"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz#8a6bfd5dd54239362b3d06ce47ac52b2d95d7721"
+ integrity sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.6.5"
+ "@babel/helper-define-polyfill-provider" "^0.6.8"
bail@^2.0.0:
version "2.0.2"
@@ -3162,6 +2971,11 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
+balanced-match@^4.0.2:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-4.0.4.tgz#bfb10662feed8196a2c62e7c68e17720c274179a"
+ integrity sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==
+
base64-arraybuffer@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz#1c37589a7c4b0746e34bd1feb951da2df01c1bdc"
@@ -3177,10 +2991,10 @@ base64-js@^1.1.2, base64-js@^1.3.0:
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
-baseline-browser-mapping@^2.8.3, baseline-browser-mapping@^2.9.0:
- version "2.9.15"
- resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.15.tgz#6baaa0069883f50a99cdb31b56646491f47c05d7"
- integrity sha512-kX8h7K2srmDyYnXRIppo4AH/wYgzWVCs+eKr3RusRSQ5PvRYoEFmR/I0PbdTjKFAoKqp5+kbxnNTFO9jOfSVJg==
+baseline-browser-mapping@^2.9.0, baseline-browser-mapping@^2.9.19:
+ version "2.10.9"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.10.9.tgz#8614229add633061c001a0b7c7c85d4b7c44e6ca"
+ integrity sha512-OZd0e2mU11ClX8+IdXe3r0dbqMEznRiT4TfbhYIbcRPZkqJ7Qwer8ij3GZAmLsRKa+II9V1v5czCkvmHH3XZBg==
bidi-js@^1.0.2:
version "1.0.3"
@@ -3202,12 +3016,12 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
-brace-expansion@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7"
- integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
+brace-expansion@^5.0.2:
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336"
+ integrity sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==
dependencies:
- balanced-match "^1.0.0"
+ balanced-match "^4.0.2"
braces@^3.0.3:
version "3.0.3"
@@ -3230,7 +3044,7 @@ browserify-zlib@^0.2.0:
dependencies:
pako "~1.0.5"
-browserslist@^4.24.0, browserslist@^4.28.0:
+browserslist@^4.24.0, browserslist@^4.28.1:
version "4.28.1"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.1.tgz#7f534594628c53c63101079e27e40de490456a95"
integrity sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==
@@ -3283,9 +3097,9 @@ camelcase@^6.2.0:
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001759:
- version "1.0.30001760"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz#bdd1960fafedf8d5f04ff16e81460506ff9b798f"
- integrity sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==
+ version "1.0.30001780"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001780.tgz#0e413de292808868a62ed9118822683fa120a110"
+ integrity sha512-llngX0E7nQci5BPJDqoZSbuZ5Bcs9F5db7EtgfwBerX9XGtkkiO4NwfDDIRzHTTwcYC8vC7bmeUEPGrKlR/TkQ==
canvg@^3.0.11:
version "3.0.11"
@@ -3401,24 +3215,24 @@ convert-source-map@^2.0.0:
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
-copy-to-clipboard@^3.3.1:
+copy-to-clipboard@^3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz#55ac43a1db8ae639a4bd99511c148cdd1b83a1b0"
integrity sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==
dependencies:
toggle-selection "^1.0.6"
-core-js-compat@^3.43.0:
- version "3.47.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.47.0.tgz#698224bbdbb6f2e3f39decdda4147b161e3772a3"
- integrity sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==
+core-js-compat@^3.48.0:
+ version "3.49.0"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.49.0.tgz#06145447d92f4aaf258a0c44f24b47afaeaffef6"
+ integrity sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==
dependencies:
- browserslist "^4.28.0"
+ browserslist "^4.28.1"
core-js@^3.6.0, core-js@^3.8.3:
- version "3.47.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.47.0.tgz#436ef07650e191afeb84c24481b298bd60eb4a17"
- integrity sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==
+ version "3.49.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.49.0.tgz#8b4d520ac034311fa21aa616f017ada0e0dbbddd"
+ integrity sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==
core-util-is@~1.0.0:
version "1.0.3"
@@ -3553,9 +3367,9 @@ d3-ease@^3.0.1:
integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==
"d3-format@1 - 3":
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641"
- integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.2.tgz#01fdb46b58beb1f55b10b42ad70b6e344d5eb2ae"
+ integrity sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==
d3-format@^1.4.4:
version "1.4.5"
@@ -3697,7 +3511,7 @@ debug@^3.2.7:
dependencies:
ms "^2.1.1"
-debug@^4.0.0, debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.4.0, debug@^4.4.1, debug@^4.4.3:
+debug@^4.0.0, debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.4.0, debug@^4.4.3:
version "4.4.3"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
@@ -3710,9 +3524,9 @@ decimal.js-light@^2.5.1:
integrity sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==
decode-named-character-reference@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz#25c32ae6dd5e21889549d40f676030e9514cc0ed"
- integrity sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz#3e40603760874c2e5867691b599d73a7da25b53f"
+ integrity sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==
dependencies:
character-entities "^2.0.0"
@@ -3852,9 +3666,9 @@ dompurify@3.2.7:
"@types/trusted-types" "^2.0.7"
dompurify@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.3.1.tgz#c7e1ddebfe3301eacd6c0c12a4af284936dbbb86"
- integrity sha512-qkdCKzLNtrgPFP1Vo+98FRzJnBRGe4ffyCea9IwHB1fyxPOeNTHpLKYGd4Uk9xvNoH0ZoOjwZxNptyMwqrId1Q==
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.3.3.tgz#680cae8af3e61320ddf3666a3bc843f7b291b2b6"
+ integrity sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==
optionalDependencies:
"@types/trusted-types" "^2.0.7"
@@ -3900,9 +3714,9 @@ duplexer2@^0.1.2:
readable-stream "^2.0.2"
electron-to-chromium@^1.5.263:
- version "1.5.267"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz#5d84f2df8cdb6bfe7e873706bb21bd4bfb574dc7"
- integrity sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==
+ version "1.5.321"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.321.tgz#57a80554e2e7fd65e3689d320f52a64723472d5d"
+ integrity sha512-L2C7Q279W2D/J4PLZLk7sebOILDSWos7bMsMNN06rK482umHUrh/3lM8G7IlHFOYip2oAg5nha1rCMxr/rs6ZQ==
eml-parse-js@^1.2.0-beta.0:
version "1.2.0-beta.1"
@@ -4025,9 +3839,9 @@ es-errors@^1.3.0:
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
es-iterator-helpers@^1.2.1:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.2.2.tgz#d979a9f686e2b0b72f88dbead7229924544720bc"
- integrity sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.3.1.tgz#3be0f4e63438d6c5a1fb5f33b891aaad3f7dae06"
+ integrity sha512-zWwRvqWiuBPr0muUG/78cW3aHROFCNIQ3zpmYDpwdbnt2m+xlNyRWpHBpa2lJjSBit7BQ+RXA1iwbSmu5yJ/EQ==
dependencies:
call-bind "^1.0.8"
call-bound "^1.0.4"
@@ -4044,6 +3858,7 @@ es-iterator-helpers@^1.2.1:
has-symbols "^1.1.0"
internal-slot "^1.1.0"
iterator.prototype "^1.1.5"
+ math-intrinsics "^1.1.0"
safe-array-concat "^1.1.3"
es-object-atoms@^1.0.0, es-object-atoms@^1.1.1:
@@ -4080,9 +3895,9 @@ es-to-primitive@^1.3.0:
is-symbol "^1.0.4"
es-toolkit@^1.39.3:
- version "1.43.0"
- resolved "https://registry.yarnpkg.com/es-toolkit/-/es-toolkit-1.43.0.tgz#2c278d55ffeb30421e6e73a009738ed37b10ef61"
- integrity sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==
+ version "1.45.1"
+ resolved "https://registry.yarnpkg.com/es-toolkit/-/es-toolkit-1.45.1.tgz#21b28b2bd43178fd4c9c937c445d5bcaccce907b"
+ integrity sha512-/jhoOj/Fx+A+IIyDNOvO3TItGmlMKhtX8ISAHKE90c4b/k1tqaqEZ+uUqfpU8DMnW5cgNJv606zS55jGvza0Xw==
escalade@^3.2.0:
version "3.2.0"
@@ -4243,9 +4058,9 @@ eslint-visitor-keys@^4.2.1:
integrity sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==
eslint-visitor-keys@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.0.tgz#b9aa1a74aa48c44b3ae46c1597ce7171246a94a9"
- integrity sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz#9e3c9489697824d2d4ce3a8ad12628f91e9f59be"
+ integrity sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==
eslint@9.39.2:
version "9.39.2"
@@ -4302,9 +4117,9 @@ esprima@^4.0.0:
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esquery@^1.5.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
- integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.7.0.tgz#08d048f261f0ddedb5bae95f46809463d9c9496d"
+ integrity sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==
dependencies:
estraverse "^5.1.0"
@@ -4336,9 +4151,9 @@ eventemitter3@^2.0.3:
integrity sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==
eventemitter3@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
- integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.4.tgz#a86d66170433712dde814707ac52b5271ceb1feb"
+ integrity sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==
events@^3.3.0:
version "3.3.0"
@@ -4413,9 +4228,9 @@ fast-png@^6.2.0:
pako "^2.1.0"
fastq@^1.6.0:
- version "1.19.1"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5"
- integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==
+ version "1.20.1"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.20.1.tgz#ca750a10dc925bc8b18839fd203e3ef4b3ced675"
+ integrity sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==
dependencies:
reusify "^1.0.4"
@@ -4479,11 +4294,11 @@ flat-cache@^4.0.0:
keyv "^4.5.4"
flatted@^3.2.9:
- version "3.3.3"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358"
- integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==
+ version "3.4.2"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.4.2.tgz#f5c23c107f0f37de8dbdf24f13722b3b98d52726"
+ integrity sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==
-follow-redirects@^1.15.6:
+follow-redirects@^1.15.11:
version "1.15.11"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.11.tgz#777d73d72a92f8ec4d2e410eb47352a56b8e8340"
integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==
@@ -4510,7 +4325,7 @@ for-each@^0.3.3, for-each@^0.3.5:
dependencies:
is-callable "^1.2.7"
-form-data@^4.0.4:
+form-data@^4.0.5:
version "4.0.5"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.5.tgz#b49e48858045ff4cbf6b03e1805cebcad3679053"
integrity sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==
@@ -4606,9 +4421,9 @@ get-symbol-description@^1.1.0:
get-intrinsic "^1.2.6"
get-tsconfig@^4.10.0:
- version "4.13.0"
- resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.0.tgz#fcdd991e6d22ab9a600f00e91c318707a5d9a0d7"
- integrity sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==
+ version "4.13.6"
+ resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.13.6.tgz#2fbfda558a98a691a798f123afd95915badce876"
+ integrity sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==
dependencies:
resolve-pkg-maps "^1.0.0"
@@ -4894,9 +4709,9 @@ htmlparser2@^3.9.0:
readable-stream "^3.1.1"
hyphen@^1.6.4:
- version "1.10.6"
- resolved "https://registry.yarnpkg.com/hyphen/-/hyphen-1.10.6.tgz#0e779d280e696102b97d7e42f5ca5de2cc97e274"
- integrity sha512-fXHXcGFTXOvZTSkPJuGOQf5Lv5T/R2itiiCVPg9LxAje5D00O0pP83yJShFq5V89Ly//Gt6acj7z8pbBr34stw==
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/hyphen/-/hyphen-1.14.1.tgz#c9fbd5e1af750f00d5034aa37f6ec41f95ffed93"
+ integrity sha512-kvL8xYl5QMTh+LwohVN72ciOxC0OEV79IPdJSTwEXok9y9QHebXGdFgrED4sWfiax/ODx++CAMk3hMy4XPJPOw==
i18next@25.8.18:
version "25.8.18"
@@ -4921,9 +4736,9 @@ immer@^10.1.1:
integrity sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==
immer@^11.0.0:
- version "11.0.1"
- resolved "https://registry.yarnpkg.com/immer/-/immer-11.0.1.tgz#2191adadc17afc94553bfb7a4c0ca95e55ec2489"
- integrity sha512-naDCyggtcBWANtIrjQEajhhBEuL9b0Zg4zmlWK2CzS6xCWSE39/vvf4LqnMjUAWHBhot4m9MHCM/Z+mfWhUkiA==
+ version "11.1.4"
+ resolved "https://registry.yarnpkg.com/immer/-/immer-11.1.4.tgz#37aee86890b134a8f1a2fadd44361fb86c6ae67e"
+ integrity sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==
import-fresh@^3.2.1, import-fresh@^3.3.0:
version "3.3.1"
@@ -5250,12 +5065,12 @@ iterator.prototype@^1.1.5:
has-symbols "^1.1.0"
set-function-name "^2.0.2"
-javascript-time-ago@^2.6.2:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/javascript-time-ago/-/javascript-time-ago-2.6.2.tgz#b66ada9080440c472e53845d7912e9d2e7088045"
- integrity sha512-gagMB4fetS1M1ZHaxQ9kX2amORXa5Los5PGh8NZzWSKrytz43KnpJlaPFTXbg/R7iPMN7U/6MoevgxqJ0QQ5lA==
+javascript-time-ago@^2.3.7, javascript-time-ago@^2.6.2:
+ version "2.6.4"
+ resolved "https://registry.yarnpkg.com/javascript-time-ago/-/javascript-time-ago-2.6.4.tgz#3149de049ffe3c374eb5a357cd9aaa911aa98fb9"
+ integrity sha512-7K/Z37LuwVaxxjutUDd1pXpznufPcox0b1UYu00ksAMMlV6IsxIvduwL3kgfPxuBVF8jVj7nhrKMPDslMq94aQ==
dependencies:
- relative-time-format "^1.1.11"
+ relative-time-format "^1.1.12"
jay-peg@^1.1.1:
version "1.1.1"
@@ -5332,9 +5147,9 @@ jspdf-autotable@^5.0.7:
integrity sha512-2wr7H6liNDBYNwt25hMQwXkEWFOEopgKIvR1Eukuw6Zmprm/ZcnmLTQEjW7Xx3FCbD3v7pflLcnMAv/h1jFDQw==
jspdf@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/jspdf/-/jspdf-4.2.0.tgz#f5b42a8e1592c3da1531d005adc87ccc19272965"
- integrity sha512-hR/hnRevAXXlrjeqU5oahOE+Ln9ORJUB5brLHHqH67A+RBQZuFr5GkbI9XQI8OUFSEezKegsi45QRpc4bGj75Q==
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/jspdf/-/jspdf-4.2.1.tgz#6ba0d263999313f91f369ee80ecf235046b2acd8"
+ integrity sha512-YyAXyvnmjTbR4bHQRLzex3CuINCDlQnBqoSYyjJwTP2x9jDLuKDzy7aKUl0hgx3uhcl7xzg32agn5vlie6HIlQ==
dependencies:
"@babel/runtime" "^7.28.6"
fast-png "^6.2.0"
@@ -5435,9 +5250,9 @@ locate-path@^6.0.0:
p-locate "^5.0.0"
lodash-es@^4.17.21:
- version "4.17.22"
- resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.22.tgz#eb7d123ec2470d69b911abe34f85cb694849b346"
- integrity sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==
+ version "4.17.23"
+ resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.23.tgz#58c4360fd1b5d33afc6c0bbd3d1149349b1138e0"
+ integrity sha512-kVI48u3PZr38HdYz98UmfPnXl2DXrpdctLrFLCd3kOx1xUkOmpFPx7gCWWM5MPkL/fD8zb+Ph0QzjGFs4+hHWg==
lodash.debounce@^4.0.8:
version "4.0.8"
@@ -5455,9 +5270,9 @@ lodash.merge@^4.6.2:
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
lodash@^4.17.21, lodash@^4.17.4:
- version "4.17.21"
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
- integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+ version "4.17.23"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a"
+ integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==
longest-streak@^3.0.0:
version "3.1.0"
@@ -5494,9 +5309,9 @@ lru-cache@^5.1.1:
yallist "^3.0.2"
markdown-it@^14.0.0:
- version "14.1.0"
- resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.0.tgz#3c3c5992883c633db4714ccb4d7b5935d98b7d45"
- integrity sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==
+ version "14.1.1"
+ resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-14.1.1.tgz#856f90b66fc39ae70affd25c1b18b581d7deee1f"
+ integrity sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==
dependencies:
argparse "^2.0.1"
entities "^4.4.0"
@@ -5541,9 +5356,9 @@ mdast-util-find-and-replace@^3.0.0:
unist-util-visit-parents "^6.0.0"
mdast-util-from-markdown@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz#4850390ca7cf17413a9b9a0fbefcd1bc0eb4160a"
- integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz#c95822b91aab75f18a4cbe8b2f51b873ed2cf0c7"
+ integrity sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==
dependencies:
"@types/mdast" "^4.0.0"
"@types/unist" "^3.0.0"
@@ -6038,19 +5853,19 @@ mime-types@^2.1.12:
dependencies:
mime-db "1.52.0"
-minimatch@^3.1.2:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
- integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+minimatch@^10.2.2:
+ version "10.2.4"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.2.4.tgz#465b3accbd0218b8281f5301e27cedc697f96fde"
+ integrity sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==
dependencies:
- brace-expansion "^1.1.7"
+ brace-expansion "^5.0.2"
-minimatch@^9.0.5:
- version "9.0.5"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
- integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
+minimatch@^3.1.2, minimatch@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.5.tgz#580c88f8d5445f2bd6aa8f3cadefa0de79fbd69e"
+ integrity sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==
dependencies:
- brace-expansion "^2.0.1"
+ brace-expansion "^1.1.7"
minimist@^1.2.0, minimist@^1.2.6, minimist@~1.2.5:
version "1.2.8"
@@ -6104,26 +5919,26 @@ natural-compare@^1.4.0:
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
next@^16.1.6:
- version "16.1.6"
- resolved "https://registry.yarnpkg.com/next/-/next-16.1.6.tgz#24a861371cbe211be7760d9a89ddf2415e3824de"
- integrity sha512-hkyRkcu5x/41KoqnROkfTm2pZVbKxvbZRuNvKXLRXxs3VfyO0WhY50TQS40EuKO9SW3rBj/sF3WbVwDACeMZyw==
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/next/-/next-16.2.0.tgz#83108005ac8ef9cf99cc178c41d6028941c89446"
+ integrity sha512-NLBVrJy1pbV1Yn00L5sU4vFyAHt5XuSjzrNyFnxo6Com0M0KrL6hHM5B99dbqXb2bE9pm4Ow3Zl1xp6HVY9edQ==
dependencies:
- "@next/env" "16.1.6"
+ "@next/env" "16.2.0"
"@swc/helpers" "0.5.15"
- baseline-browser-mapping "^2.8.3"
+ baseline-browser-mapping "^2.9.19"
caniuse-lite "^1.0.30001579"
postcss "8.4.31"
styled-jsx "5.1.6"
optionalDependencies:
- "@next/swc-darwin-arm64" "16.1.6"
- "@next/swc-darwin-x64" "16.1.6"
- "@next/swc-linux-arm64-gnu" "16.1.6"
- "@next/swc-linux-arm64-musl" "16.1.6"
- "@next/swc-linux-x64-gnu" "16.1.6"
- "@next/swc-linux-x64-musl" "16.1.6"
- "@next/swc-win32-arm64-msvc" "16.1.6"
- "@next/swc-win32-x64-msvc" "16.1.6"
- sharp "^0.34.4"
+ "@next/swc-darwin-arm64" "16.2.0"
+ "@next/swc-darwin-x64" "16.2.0"
+ "@next/swc-linux-arm64-gnu" "16.2.0"
+ "@next/swc-linux-arm64-musl" "16.2.0"
+ "@next/swc-linux-x64-gnu" "16.2.0"
+ "@next/swc-linux-x64-musl" "16.2.0"
+ "@next/swc-win32-arm64-msvc" "16.2.0"
+ "@next/swc-win32-x64-msvc" "16.2.0"
+ sharp "^0.34.5"
no-case@^3.0.4:
version "3.0.4"
@@ -6133,10 +5948,20 @@ no-case@^3.0.4:
lower-case "^2.0.2"
tslib "^2.0.3"
+node-exports-info@^1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/node-exports-info/-/node-exports-info-1.6.0.tgz#1aedafb01a966059c9a5e791a94a94d93f5c2a13"
+ integrity sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==
+ dependencies:
+ array.prototype.flatmap "^1.3.3"
+ es-errors "^1.3.0"
+ object.entries "^1.1.9"
+ semver "^6.3.1"
+
node-releases@^2.0.27:
- version "2.0.27"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz#eedca519205cf20f650f61d56b070db111231e4e"
- integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==
+ version "2.0.36"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.36.tgz#99fd6552aaeda9e17c4713b57a63964a2e325e9d"
+ integrity sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==
normalize-svg-path@^1.1.0:
version "1.1.0"
@@ -6442,9 +6267,9 @@ property-information@^7.0.0:
integrity sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==
prosemirror-changeset@^2.3.0:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.3.1.tgz#eee3299cfabc7a027694e9abdc4e85505e9dd5e7"
- integrity sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ==
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.4.0.tgz#8d8ea0290cb9545c298ec427ac3a8f298c39170f"
+ integrity sha512-LvqH2v7Q2SF6yxatuPP2e8vSUKS/L+xAU7dPDC4RMyHMhZoGDfBC74mYuyYF4gLqOEG758wajtyhNnsTkuhvng==
dependencies:
prosemirror-transform "^1.0.0"
@@ -6474,9 +6299,9 @@ prosemirror-dropcursor@^1.8.1:
prosemirror-view "^1.1.0"
prosemirror-gapcursor@^1.3.2:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.4.0.tgz#e1144a83b79db7ed0ec32cd0e915a0364220af43"
- integrity sha512-z00qvurSdCEWUIulij/isHaqu4uLS8r/Fi61IbjdIPJEonQgggbJsLnstW7Lgdk4zQ68/yr6B6bf7sJXowIgdQ==
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/prosemirror-gapcursor/-/prosemirror-gapcursor-1.4.1.tgz#da33c905fece147df577342c06f4929b25d365ee"
+ integrity sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==
dependencies:
prosemirror-keymap "^1.0.0"
prosemirror-model "^1.0.0"
@@ -6510,18 +6335,18 @@ prosemirror-keymap@^1.0.0, prosemirror-keymap@^1.2.2, prosemirror-keymap@^1.2.3:
w3c-keyname "^2.2.0"
prosemirror-markdown@^1.13.1:
- version "1.13.2"
- resolved "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.13.2.tgz#863eb3fd5f57a444e4378174622b562735b1c503"
- integrity sha512-FPD9rHPdA9fqzNmIIDhhnYQ6WgNoSWX9StUZ8LEKapaXU9i6XgykaHKhp6XMyXlOWetmaFgGDS/nu/w9/vUc5g==
+ version "1.13.4"
+ resolved "https://registry.yarnpkg.com/prosemirror-markdown/-/prosemirror-markdown-1.13.4.tgz#4620e6a0580cd52b5fc8e352c7e04830cd4b3048"
+ integrity sha512-D98dm4cQ3Hs6EmjK500TdAOew4Z03EV71ajEFiWra3Upr7diytJsjF4mPV2dW+eK5uNectiRj0xFxYI9NLXDbw==
dependencies:
"@types/markdown-it" "^14.0.0"
markdown-it "^14.0.0"
prosemirror-model "^1.25.0"
prosemirror-menu@^1.2.4:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/prosemirror-menu/-/prosemirror-menu-1.2.5.tgz#dea00e7b623cea89f4d76963bee22d2ac2343250"
- integrity sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/prosemirror-menu/-/prosemirror-menu-1.3.0.tgz#f51e25259b91d7c35ad7b65fc0c92d838404e177"
+ integrity sha512-TImyPXCHPcDsSka2/lwJ6WjTASr4re/qWq1yoTTuLOqfXucwF6VcRa2LWCkM/EyTD1UO3CUwiH8qURJoWJRxwg==
dependencies:
crelt "^1.0.0"
prosemirror-commands "^1.0.0"
@@ -6561,9 +6386,9 @@ prosemirror-state@^1.0.0, prosemirror-state@^1.2.2, prosemirror-state@^1.4.3, pr
prosemirror-view "^1.27.0"
prosemirror-tables@^1.6.4:
- version "1.8.3"
- resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.8.3.tgz#b10b08518b2aa3aecb8cc64303b833bd816d443c"
- integrity sha512-wbqCR/RlRPRe41a4LFtmhKElzBEfBTdtAYWNIGHM6X2e24NN/MTNUKyXjjphfAfdQce37Kh/5yf765mLPYDe7Q==
+ version "1.8.5"
+ resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.8.5.tgz#104427012e5a5da1d2a38c122efee8d66bdd5104"
+ integrity sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==
dependencies:
prosemirror-keymap "^1.2.3"
prosemirror-model "^1.25.4"
@@ -6580,16 +6405,16 @@ prosemirror-trailing-node@^3.0.0:
escape-string-regexp "^4.0.0"
prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.10.5, prosemirror-transform@^1.7.3:
- version "1.10.5"
- resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.10.5.tgz#4cf9fe5dcbdbfebd62499f24386e7cec9bc9979b"
- integrity sha512-RPDQCxIDhIBb1o36xxwsaeAvivO8VLJcgBtzmOwQ64bMtsVFh5SSuJ6dWSxO1UsHTiTXPCgQm3PDJt7p6IOLbw==
+ version "1.11.0"
+ resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.11.0.tgz#f5c5050354423dc83c6b083f6f1959ec86a3f9ba"
+ integrity sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw==
dependencies:
prosemirror-model "^1.21.0"
prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.38.1, prosemirror-view@^1.41.4:
- version "1.41.4"
- resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.41.4.tgz#4e1b3e90accc0eebe3bddb497a40ce54e4de722d"
- integrity sha512-WkKgnyjNncri03Gjaz3IFWvCAE94XoiEgvtr0/r2Xw7R8/IjK3sKLSiDoCHWcsXSAinVaKlGRZDvMCsF1kbzjA==
+ version "1.41.7"
+ resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.41.7.tgz#61e6f44ac160795c913ead92a282247df9d468f6"
+ integrity sha512-jUwKNCEIGiqdvhlS91/2QAg21e4dfU5bH2iwmSDQeosXJgKF7smG0YSplOWK0cjSNgIqXe7VXqo7EIfUFJdt3w==
dependencies:
prosemirror-model "^1.20.0"
prosemirror-state "^1.0.0"
@@ -6681,11 +6506,11 @@ react-colorful@^5.6.1:
integrity sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==
react-copy-to-clipboard@^5.1.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz#09aae5ec4c62750ccb2e6421a58725eabc41255c"
- integrity sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.1.tgz#76adb8be03616e99692fcf3f762365ed3fb5ff16"
+ integrity sha512-s+HrzLyJBxrpGTYXF15dTgMjAJpEPZT/Yp6NytAtZMRngejxt6Pt5WrfFxLAcsqUDU6sY1Jz6tyHwIicE1U2Xg==
dependencies:
- copy-to-clipboard "^3.3.1"
+ copy-to-clipboard "^3.3.3"
prop-types "^15.8.1"
react-dom@19.2.4:
@@ -6695,7 +6520,7 @@ react-dom@19.2.4:
dependencies:
scheduler "^0.27.0"
-react-draggable@^4.0.3, react-draggable@^4.4.6:
+react-draggable@^4.4.6, react-draggable@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.5.0.tgz#0b274ccb6965fcf97ed38fcf7e3cc223bc48cdf5"
integrity sha512-VC+HBLEZ0XJxnOxVAZsdRi8rD04Iz3SiiKOoYzamjylUcju/hP9np/aZdLHf/7WOD268WMoNJMvYfB5yAK45cw==
@@ -6774,9 +6599,9 @@ react-is@^17.0.2:
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
react-is@^19.2.3:
- version "19.2.3"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.2.3.tgz#eec2feb69c7fb31f77d0b5c08c10ae1c88886b29"
- integrity sha512-qJNJfu81ByyabuG7hPFEbXqNcWSU3+eVus+KJs+0ncpGfMyYdvSmxiJxbWR65lYi1I+/0HBcliO029gc4F+PnA==
+ version "19.2.4"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.2.4.tgz#a080758243c572ccd4a63386537654298c99d135"
+ integrity sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==
react-leaflet-markercluster@^5.0.0-rc.0:
version "5.0.0-rc.0"
@@ -6855,17 +6680,17 @@ react-redux@^7.2.0:
react-is "^17.0.2"
react-resizable@^3.0.5:
- version "3.0.5"
- resolved "https://registry.yarnpkg.com/react-resizable/-/react-resizable-3.0.5.tgz#362721f2efbd094976f1780ae13f1ad7739786c1"
- integrity sha512-vKpeHhI5OZvYn82kXOs1bC8aOXktGU5AmKAgaZS4F5JPburCtbmDPqE7Pzp+1kN4+Wb81LlF33VpGwWwtXem+w==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/react-resizable/-/react-resizable-3.1.3.tgz#b8c3f8aeffb7b0b2c2306bfc7a742462e58125fb"
+ integrity sha512-liJBNayhX7qA4tBJiBD321FDhJxgGTJ07uzH5zSORXoE8h7PyEZ8mLqmosST7ppf6C4zUsbd2gzDMmBCfFp9Lw==
dependencies:
prop-types "15.x"
- react-draggable "^4.0.3"
+ react-draggable "^4.5.0"
react-syntax-highlighter@^16.1.0:
- version "16.1.0"
- resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-16.1.0.tgz#ebe0bb5ae7a3540859212cedafd767f0189c516c"
- integrity sha512-E40/hBiP5rCNwkeBN1vRP+xow1X0pndinO+z3h7HLsHyjztbyjfzNWNKuAsJj+7DLam9iT4AaaOZnueCU+Nplg==
+ version "16.1.1"
+ resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-16.1.1.tgz#928459855d375f5cfc8e646071e20d541cebcb52"
+ integrity sha512-PjVawBGy80C6YbC5DDZJeUjBmC7skaoEUdvfFQediQHgCL7aKyVHe57SaJGfQsloGDac+gCpTfRdtxzWWKmCXA==
dependencies:
"@babel/runtime" "^7.28.4"
highlight.js "^10.4.1"
@@ -6875,13 +6700,13 @@ react-syntax-highlighter@^16.1.0:
refractor "^5.0.0"
react-time-ago@^7.3.3:
- version "7.3.5"
- resolved "https://registry.yarnpkg.com/react-time-ago/-/react-time-ago-7.3.5.tgz#6b1e7a1221aa36ebfa80df67dae60684f6919f8b"
- integrity sha512-ZyNd0GEy9ovcAOg+Stpg3zMXEtlYX1lCwO9ePiiXpHsrIa7Rn9h+ZS9dtM/zahf6xYcjmz7b6y2gDRSDG54tHQ==
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/react-time-ago/-/react-time-ago-7.4.4.tgz#78f39220ddac0cb3ec9b2964630c1b39118cec26"
+ integrity sha512-g1qqiEgIYgKvK6ySxyVq9nZ/s5mKbugY5fsgc0lB9suwVpbj58f47T578IqSkyzbe+kO6pk1ITmfTOTM8VizRw==
dependencies:
+ javascript-time-ago "^2.3.7"
memoize-one "^6.0.0"
prop-types "^15.8.1"
- raf "^3.4.1"
react-transition-group@^4.4.5:
version "4.4.5"
@@ -6903,10 +6728,10 @@ react-virtuoso@^4.18.3:
resolved "https://registry.yarnpkg.com/react-virtuoso/-/react-virtuoso-4.18.3.tgz#12e69600c258bc6e6bd31c2516942ef08700deac"
integrity sha512-fLz/peHAx4Eu0DLHurFEEI7Y6n5CqEoxBh04rgJM9yMuOJah2a9zWg/MUOmZLcp7zuWYorXq5+5bf3IRgkNvWg==
-react-window@^2.2.5:
- version "2.2.5"
- resolved "https://registry.yarnpkg.com/react-window/-/react-window-2.2.5.tgz#425a29609980083aafd5a48a1711a2af9319c1d2"
- integrity sha512-6viWvPSZvVuMIe9hrl4IIZoVfO/npiqOb03m4Z9w+VihmVzBbiudUrtUqDpsWdKvd/Ai31TCR25CBcFFAUm28w==
+react-window@^2.2.7:
+ version "2.2.7"
+ resolved "https://registry.yarnpkg.com/react-window/-/react-window-2.2.7.tgz#7f3d31695d4323701b7e80dfc9bbbe1d4a0c160f"
+ integrity sha512-SH5nvfUQwGHYyriDUAOt7wfPsfG9Qxd6OdzQxl5oQ4dsSsUicqQvjV7dR+NqZ4coY0fUn3w1jnC5PwzIUWEg5w==
react@19.2.4:
version "19.2.4"
@@ -6946,11 +6771,11 @@ readable-stream@~1.0.17, readable-stream@~1.0.27-1:
string_decoder "~0.10.x"
recharts@^3.7.0:
- version "3.7.0"
- resolved "https://registry.yarnpkg.com/recharts/-/recharts-3.7.0.tgz#e3c72656ba18841085293e83bfc9a4f78b20abdd"
- integrity sha512-l2VCsy3XXeraxIID9fx23eCb6iCBsxUQDnE8tWm6DFdszVAO7WVY/ChAD9wVit01y6B2PMupYiMmQwhgPHc9Ew==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/recharts/-/recharts-3.8.0.tgz#461025818cbb858e7ff2e5820b67c6143e9b418d"
+ integrity sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==
dependencies:
- "@reduxjs/toolkit" "1.x.x || 2.x.x"
+ "@reduxjs/toolkit" "^1.9.0 || 2.x.x"
clsx "^2.1.1"
decimal.js-light "^2.5.1"
es-toolkit "^1.39.3"
@@ -7075,10 +6900,10 @@ rehype-raw@^7.0.0:
hast-util-raw "^9.0.0"
vfile "^6.0.0"
-relative-time-format@^1.1.11:
- version "1.1.11"
- resolved "https://registry.yarnpkg.com/relative-time-format/-/relative-time-format-1.1.11.tgz#b193d5192434e7c1c6a53e362f811c68a4f18c45"
- integrity sha512-TH+oV/w77hjaB9xCzoFYJ/Icmr/12+02IAoCI/YGS2UBTbjCbBjHGEBxGnVy4EJvOR1qadGzyFRI6hGaJJG93Q==
+relative-time-format@^1.1.12:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/relative-time-format/-/relative-time-format-1.1.12.tgz#2236c98c48047664bbff0643283dd4f317d26079"
+ integrity sha512-qaZBjmRIuXLfuLnzgqpFdBPa5W0euSX1tMnoMUHGPphLwJmrt8xbNiOIHrlvYOD6oNJ0M5owPCZyPibI8de5pQ==
remark-gfm@^4.0.0:
version "4.0.1"
@@ -7152,7 +6977,7 @@ resolve-pkg-maps@^1.0.0:
resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
-resolve@^1.19.0, resolve@^1.22.10, resolve@^1.22.4:
+resolve@^1.19.0, resolve@^1.22.11, resolve@^1.22.4:
version "1.22.11"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.11.tgz#aad857ce1ffb8bfa9b0b1ac29f1156383f68c262"
integrity sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==
@@ -7162,11 +6987,14 @@ resolve@^1.19.0, resolve@^1.22.10, resolve@^1.22.4:
supports-preserve-symlinks-flag "^1.0.0"
resolve@^2.0.0-next.5:
- version "2.0.0-next.5"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
- integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
+ version "2.0.0-next.6"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.6.tgz#b3961812be69ace7b3bc35d5bf259434681294af"
+ integrity sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==
dependencies:
- is-core-module "^2.13.0"
+ es-errors "^1.3.0"
+ is-core-module "^2.16.1"
+ node-exports-info "^1.6.0"
+ object-keys "^1.1.1"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
@@ -7235,6 +7063,11 @@ safe-regex-test@^1.0.3, safe-regex-test@^1.1.0:
es-errors "^1.3.0"
is-regex "^1.2.1"
+sax@^1.5.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b"
+ integrity sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==
+
scheduler@0.25.0-rc-603e6108-20241029:
version "0.25.0-rc-603e6108-20241029"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0-rc-603e6108-20241029.tgz#684dd96647e104d23e0d29a37f18937daf82df19"
@@ -7259,9 +7092,9 @@ semver@^6.3.1:
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
semver@^7.7.1, semver@^7.7.3:
- version "7.7.3"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946"
- integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
+ version "7.7.4"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.4.tgz#28464e36060e991fa7a11d0279d2d3f3b57a7e8a"
+ integrity sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==
set-function-length@^1.2.2:
version "1.2.2"
@@ -7294,7 +7127,7 @@ set-proto@^1.0.0:
es-errors "^1.3.0"
es-object-atoms "^1.0.0"
-sharp@^0.34.4:
+sharp@^0.34.5:
version "0.34.5"
resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.34.5.tgz#b6f148e4b8c61f1797bde11a9d1cfebbae2c57b0"
integrity sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==
@@ -7631,17 +7464,17 @@ svg-pathdata@^6.0.3:
integrity sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==
svgo@^3.0.2:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.2.tgz#ad58002652dffbb5986fc9716afe52d869ecbda8"
- integrity sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.3.3.tgz#8246aee0b08791fde3b0ed22b5661b471fadf58e"
+ integrity sha512-+wn7I4p7YgJhHs38k2TNjy1vCfPIfLIJWR5MnCStsN8WuuTcBnRKcMHQLMM2ijxGZmDoZwNv8ipl5aTTen62ng==
dependencies:
- "@trysound/sax" "0.2.0"
commander "^7.2.0"
css-select "^5.1.0"
css-tree "^2.3.1"
css-what "^6.1.0"
csso "^5.0.5"
picocolors "^1.0.0"
+ sax "^1.5.0"
text-segmentation@^1.0.3:
version "1.0.3"
@@ -7719,9 +7552,9 @@ trough@^2.0.0:
integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==
ts-api-utils@^2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.4.0.tgz#2690579f96d2790253bdcf1ca35d569ad78f9ad8"
- integrity sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-2.5.0.tgz#4acd4a155e22734990a5ed1fe9e97f113bcb37c1"
+ integrity sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==
tsconfig-paths@^3.15.0:
version "3.15.0"
@@ -7796,14 +7629,14 @@ typed-array-length@^1.0.7:
reflect.getprototypeof "^1.0.6"
typescript-eslint@^8.46.0:
- version "8.56.0"
- resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.56.0.tgz#f4686ccaaf2fb86daf0133820da40ca5961a2236"
- integrity sha512-c7toRLrotJ9oixgdW7liukZpsnq5CZ7PuKztubGYlNppuTqhIoWfhgHo/7EU0v06gS2l/x0i2NEFK1qMIf0rIg==
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.57.1.tgz#573f97d3e48bbb67290b47dde1b7cb3b5d01dc4f"
+ integrity sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==
dependencies:
- "@typescript-eslint/eslint-plugin" "8.56.0"
- "@typescript-eslint/parser" "8.56.0"
- "@typescript-eslint/typescript-estree" "8.56.0"
- "@typescript-eslint/utils" "8.56.0"
+ "@typescript-eslint/eslint-plugin" "8.57.1"
+ "@typescript-eslint/parser" "8.57.1"
+ "@typescript-eslint/typescript-estree" "8.57.1"
+ "@typescript-eslint/utils" "8.57.1"
typescript@5.9.3:
version "5.9.3"
@@ -7825,10 +7658,10 @@ unbox-primitive@^1.1.0:
has-symbols "^1.1.0"
which-boxed-primitive "^1.1.1"
-undici-types@~7.16.0:
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.16.0.tgz#ffccdff36aea4884cbfce9a750a0580224f58a46"
- integrity sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==
+undici-types@~7.18.0:
+ version "7.18.2"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.18.2.tgz#29357a89e7b7ca4aef3bf0fd3fd0cd73884229e9"
+ integrity sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==
unicode-canonical-property-names-ecmascript@^2.0.0:
version "2.0.1"
@@ -7912,9 +7745,9 @@ unist-util-visit-parents@^6.0.0:
unist-util-is "^6.0.0"
unist-util-visit@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6"
- integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.1.0.tgz#9a2a28b0aa76a15e0da70a08a5863a2f060e2468"
+ integrity sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==
dependencies:
"@types/unist" "^3.0.0"
unist-util-is "^6.0.0"
@@ -7963,9 +7796,9 @@ uri-js@^4.2.2:
punycode "^2.1.0"
use-debounce@^10.0.4:
- version "10.0.6"
- resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-10.0.6.tgz#e05060a5e561432ec740c653698f3eb162bd28ec"
- integrity sha512-C5OtPyhAZgVoteO9heXMTdW7v/IbFI+8bSVKYCJrSmiWWCLsbUxiBSp4t9v0hNBTGY97bT72ydDIDyGSFWfwXg==
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-10.1.0.tgz#966a6da947ca027705dc1f317f8e3ad163416330"
+ integrity sha512-lu87Za35V3n/MyMoEpD5zJv0k7hCn0p+V/fK2kWD+3k2u3kOCwO593UArbczg1fhfs2rqPEnHpULJ3KmGdDzvg==
use-memo-one@^1.1.1:
version "1.1.3"
@@ -8098,9 +7931,9 @@ which-collection@^1.0.2:
is-weakset "^2.0.3"
which-typed-array@^1.1.16, which-typed-array@^1.1.19:
- version "1.1.19"
- resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956"
- integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==
+ version "1.1.20"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.20.tgz#3fdb7adfafe0ea69157b1509f3a1cd892bd1d122"
+ integrity sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==
dependencies:
available-typed-arrays "^1.0.7"
call-bind "^1.0.8"