@salesforce/ui-bundle-features 11.47.0 → 11.48.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/features.json +33 -0
- package/package.json +1 -1
package/dist/features.json
CHANGED
|
@@ -62,6 +62,39 @@
|
|
|
62
62
|
"ChangePassword - Password change page"
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
|
+
"mfa": {
|
|
66
|
+
"name": "MFA",
|
|
67
|
+
"package": "@salesforce/ui-bundle-template-feature-react-mfa",
|
|
68
|
+
"shortDescription": "Enable Multi-Factor Authentication for Experience Cloud React sites",
|
|
69
|
+
"longDescription": "Deploys permission sets to enable MFA enforcement for community users. Includes MFA_Required_For_Community (ForceTwoFactor) and API_Enabled_For_Community (ApiEnabled). The platform MFA challenge UI handles the actual verification flow automatically — no custom React component is needed. Supports TOTP, Salesforce Authenticator, WebAuthn, SMS, and Email OTP verification methods.",
|
|
70
|
+
"keywords": [
|
|
71
|
+
"mfa",
|
|
72
|
+
"multi-factor",
|
|
73
|
+
"authentication",
|
|
74
|
+
"security",
|
|
75
|
+
"2fa",
|
|
76
|
+
"totp",
|
|
77
|
+
"permission set",
|
|
78
|
+
"ForceTwoFactor"
|
|
79
|
+
],
|
|
80
|
+
"featureDependencies": [],
|
|
81
|
+
"packageDependencies": {},
|
|
82
|
+
"packageDevDependencies": {},
|
|
83
|
+
"copy": [
|
|
84
|
+
{
|
|
85
|
+
"from": "src/force-app/main/default/permissionsets",
|
|
86
|
+
"to": "<sfdxSource>/permissionsets",
|
|
87
|
+
"description": "MFA and API Enabled permission sets for community users"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"features": [
|
|
91
|
+
"Permission set: MFA_Required_For_Community (enforces MFA at login via ForceTwoFactor)",
|
|
92
|
+
"Permission set: API_Enabled_For_Community (enables REST API access for React sites)",
|
|
93
|
+
"Works with platform OOTB MFA challenge UI (no custom React page needed)",
|
|
94
|
+
"Supports TOTP, SMS, Email, Salesforce Authenticator, and WebAuthn verification methods"
|
|
95
|
+
],
|
|
96
|
+
"components": []
|
|
97
|
+
},
|
|
65
98
|
"object-search": {
|
|
66
99
|
"name": "Object Search",
|
|
67
100
|
"package": "@salesforce/ui-bundle-template-feature-object-search",
|
package/package.json
CHANGED