/** * This file was auto-generated by Fern from our API Definition. */ export type JsonPatchOperationType = "add" | "remove" | "replace" | "move" | "copy" | "test"; export declare const JsonPatchOperationType: { readonly Add: "add"; readonly Remove: "remove"; readonly Replace: "replace"; readonly Move: "move"; readonly Copy: "copy"; readonly Test: "test"; };