Type Alias AliasPatchItem

Alias values that can be patched.

type AliasPatchItem = {
    op: "replace";
    path: "/name" | "/models";
    value: AnyType;
}
Index

Properties

Properties

op: "replace"

All patch requests use the replace operation

path: "/name" | "/models"
value: AnyType