import { IncidentioCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { SDKError } from "../models/errors/sdkerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { Result } from "../types/fp.js"; /** * UpdateTypeSchema Catalog V2 * * @remarks * Update an existing catalog types schema, adding or removing attributes. * * Updating the schema is handled separately from creating and updating types, so that you don't * have to worry about dependencies between types. For example, if type A has an attribute that * relies on type B, you would have to create type B first. * * By allowing the creation of types without a schema, they can be created in any order, but it * means that you need to make a separate call to this endpoint to update the schema. */ export declare function catalogTypesUpdateSchema(client$: IncidentioCore, request: operations.CatalogV2NumberUpdateTypeSchemaRequest, options?: RequestOptions): Promise>; //# sourceMappingURL=catalogTypesUpdateSchema.d.ts.map