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"

Path for the property you want to update

value: AnyType

Use for fields that can be any type (string, number, etc.)