@dereekb/dbx-firebase 13.30.0 → 13.32.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/fesm2022/dereekb-dbx-firebase-oidc.mjs +6 -1
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-firebase.mjs +1284 -44
- package/fesm2022/dereekb-dbx-firebase.mjs.map +1 -1
- package/package.json +11 -11
- package/types/dereekb-dbx-firebase-oidc.d.ts +5 -0
- package/types/dereekb-dbx-firebase.d.ts +774 -16
|
@@ -1005,6 +1005,11 @@ function oidcEntryClientForgeFormFields(config) {
|
|
|
1005
1005
|
* Admin-only in effect: the server strips `dbx_provider_profiles` from non-admin create/update
|
|
1006
1006
|
* requests, so a non-admin's selection is ignored.
|
|
1007
1007
|
*
|
|
1008
|
+
* Leaving the field empty is meaningful rather than inert: a client with no profiles assigned resolves
|
|
1009
|
+
* to the registry's default profiles. Those entries are marked as such in their description by
|
|
1010
|
+
* `oidcProviderProfileDetails`, and are deliberately not pre-selected — persisting the default as an
|
|
1011
|
+
* explicit assignment would opt the client out of the fallback.
|
|
1012
|
+
*
|
|
1008
1013
|
* @param providerProfiles - The available provider profiles to display as selectable options.
|
|
1009
1014
|
* @returns A forge pickable chip field for provider profile assignment.
|
|
1010
1015
|
*/
|
|
@@ -1012,7 +1017,7 @@ function oidcClientProviderProfilesForgeField(providerProfiles) {
|
|
|
1012
1017
|
return dbxForgePickableChipField({
|
|
1013
1018
|
key: 'dbx_provider_profiles',
|
|
1014
1019
|
label: 'Provider Profiles',
|
|
1015
|
-
hint: 'Admin-only. Assign provider profiles to unlock otherwise-restricted scopes for this client.',
|
|
1020
|
+
hint: 'Admin-only. Assign provider profiles to unlock otherwise-restricted scopes for this client. Leaving this empty applies the default profiles, if any.',
|
|
1016
1021
|
props: {
|
|
1017
1022
|
showSelectAllButton: false,
|
|
1018
1023
|
...pickableValueFieldValuesConfigForStaticLabeledValues(providerProfiles)
|