Type Alias AuthSettingsJSONPatch

A JSON Patch document for authentication settings as defined in http://tools.ietf.org/html/rfc6902.

type AuthSettingsJSONPatch = {
    op: "replace";
    path:
        | "/userSessionInactivityTimeoutMinutes"
        | "/maxUserSessionLifespanMinutes"
        | "/dynamicClientRegistrationEnabled"
        | "/dcrDefaultConsentMethod"
        | "/dcrAllowedAuthenticationMethods";
    value: number
    | boolean
    | string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path:
    | "/userSessionInactivityTimeoutMinutes"
    | "/maxUserSessionLifespanMinutes"
    | "/dynamicClientRegistrationEnabled"
    | "/dcrDefaultConsentMethod"
    | "/dcrAllowedAuthenticationMethods"
value: number | boolean | string