Type Alias AuthSettingsJSONPatchArray

AuthSettingsJSONPatchArray: AuthSettingsJSONPatch[]

An array of JSON Patch documents for authentication settings.

[
{
op: "replace",
path: "/userSessionInactivityTimeoutMinutes",
value: 60
},
{
op: "replace",
path: "/maxUserSessionLifespanMinutes",
value: 1440
},
{
op: "replace",
path: "/dynamicClientRegistrationEnabled",
value: true
},
{
op: "replace",
path: "/dcrAllowedAuthenticationMethods",
value: [
"client_secret"
]
}
]