import * as z from "zod"; export type LockPostRequestBody = { locked: string; }; export type LockPostRequest = { apiKey: string; apiUsername: string; requestBody?: LockPostRequestBody | undefined; id: string; }; /** * post updated */ export type LockPostResponseBody = { locked?: boolean | undefined; }; /** @internal */ export declare const LockPostRequestBody$inboundSchema: z.ZodType; /** @internal */ export type LockPostRequestBody$Outbound = { locked: string; }; /** @internal */ export declare const LockPostRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LockPostRequestBody$ { /** @deprecated use `LockPostRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LockPostRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LockPostRequestBody$Outbound` instead. */ type Outbound = LockPostRequestBody$Outbound; } /** @internal */ export declare const LockPostRequest$inboundSchema: z.ZodType; /** @internal */ export type LockPostRequest$Outbound = { "Api-Key": string; "Api-Username": string; RequestBody?: LockPostRequestBody$Outbound | undefined; id: string; }; /** @internal */ export declare const LockPostRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LockPostRequest$ { /** @deprecated use `LockPostRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LockPostRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LockPostRequest$Outbound` instead. */ type Outbound = LockPostRequest$Outbound; } /** @internal */ export declare const LockPostResponseBody$inboundSchema: z.ZodType; /** @internal */ export type LockPostResponseBody$Outbound = { locked?: boolean | undefined; }; /** @internal */ export declare const LockPostResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace LockPostResponseBody$ { /** @deprecated use `LockPostResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `LockPostResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `LockPostResponseBody$Outbound` instead. */ type Outbound = LockPostResponseBody$Outbound; } //# sourceMappingURL=lockpost.d.ts.map