import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type UpdateManagerGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type UpdateManagerRequest = { /** * Unique identifier for a manager. */ id: string; updateManagerRequest?: models.UpdateManagerRequest | undefined; }; /** * Manager update enqueued successfully. */ export type UpdateManagerResponse = { message: string; }; /** @internal */ export type UpdateManagerRequest$Outbound = { id: string; UpdateManagerRequest?: models.UpdateManagerRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateManagerRequest$outboundSchema: z.ZodType; export declare function updateManagerRequestToJSON(updateManagerRequest: UpdateManagerRequest): string; /** @internal */ export declare const UpdateManagerResponse$inboundSchema: z.ZodType; export declare function updateManagerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatemanager.d.ts.map