UNPKG

palette-sdk-typescript

Version:

TypeScript SDK for Spectro Cloud Palette API

23 lines 685 B
/** * Copyright (c) Spectro Cloud * SPDX-License-Identifier: Apache-2.0 */ /** * Generated by orval v7.17.0 🍺 * Do not edit manually. * Palette APIs - 4.8 * OpenAPI spec version: v1 */ import type { HttpPatchOp } from './httpPatchOp'; import type { HttpPatchValue } from './httpPatchValue'; export type HttpPatch = { /** A path to the pointer from which reference will be taken */ from?: string; /** The operation to be performed */ op: HttpPatchOp; /** A path to the pointer on which operation will be done */ path: string; /** The value to be used within the operations. */ value?: HttpPatchValue; }; //# sourceMappingURL=httpPatch.d.ts.map