Type Alias OAuthClientUpdate

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

type OAuthClientUpdate = {
    op: "add" | "remove" | "replace";
    path:
        | "/allowedOrigins"
        | "/clientName"
        | "/clientUri"
        | "/description"
        | "/logoUri"
        | "/redirectUris"
        | "/allowedScopes"
        | "/allowedGrantTypes";
    value?: string
    | string[];
}
Index

Properties

Properties

op: "add" | "remove" | "replace"

The operation to be performed

path:
    | "/allowedOrigins"
    | "/clientName"
    | "/clientUri"
    | "/description"
    | "/logoUri"
    | "/redirectUris"
    | "/allowedScopes"
    | "/allowedGrantTypes"

The path for the given resource field to patch

value?: string | string[]

The value to be used for this operation.