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";
    value: number;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: "/userSessionInactivityTimeoutMinutes" | "/maxUserSessionLifespanMinutes"
value: number