mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
21 lines
606 B
TypeScript
21 lines
606 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { PatchSchemaOp } from './patchSchemaOp';
|
|
|
|
/**
|
|
* A [JSON patch](https://www.rfc-editor.org/rfc/rfc6902) operation description
|
|
*/
|
|
export interface PatchSchema {
|
|
/** The target to move or copy from, if performing one of those operations */
|
|
from?: string;
|
|
/** The kind of operation to perform */
|
|
op: PatchSchemaOp;
|
|
/** The path to the property to operate on */
|
|
path: string;
|
|
/** The value to add or replace, if performing one of those operations */
|
|
value?: unknown;
|
|
}
|