import * as z from "zod"; export type UpdateUserExternalIds = {}; export type UpdateUserRequestBody = { externalIds?: UpdateUserExternalIds | undefined; name?: string | undefined; }; export type UpdateUserRequest = { apiKey: string; apiUsername: string; requestBody?: UpdateUserRequestBody | undefined; username: string; }; export type UpdateUserUser = {}; /** * user updated */ export type UpdateUserResponseBody = { success: string; user: UpdateUserUser; }; /** @internal */ export declare const UpdateUserExternalIds$inboundSchema: z.ZodType; /** @internal */ export type UpdateUserExternalIds$Outbound = {}; /** @internal */ export declare const UpdateUserExternalIds$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 UpdateUserExternalIds$ { /** @deprecated use `UpdateUserExternalIds$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUserExternalIds$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUserExternalIds$Outbound` instead. */ type Outbound = UpdateUserExternalIds$Outbound; } /** @internal */ export declare const UpdateUserRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateUserRequestBody$Outbound = { external_ids?: UpdateUserExternalIds$Outbound | undefined; name?: string | undefined; }; /** @internal */ export declare const UpdateUserRequestBody$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 UpdateUserRequestBody$ { /** @deprecated use `UpdateUserRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUserRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUserRequestBody$Outbound` instead. */ type Outbound = UpdateUserRequestBody$Outbound; } /** @internal */ export declare const UpdateUserRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateUserRequest$Outbound = { "Api-Key": string; "Api-Username": string; RequestBody?: UpdateUserRequestBody$Outbound | undefined; username: string; }; /** @internal */ export declare const UpdateUserRequest$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 UpdateUserRequest$ { /** @deprecated use `UpdateUserRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUserRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUserRequest$Outbound` instead. */ type Outbound = UpdateUserRequest$Outbound; } /** @internal */ export declare const UpdateUserUser$inboundSchema: z.ZodType; /** @internal */ export type UpdateUserUser$Outbound = {}; /** @internal */ export declare const UpdateUserUser$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 UpdateUserUser$ { /** @deprecated use `UpdateUserUser$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUserUser$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUserUser$Outbound` instead. */ type Outbound = UpdateUserUser$Outbound; } /** @internal */ export declare const UpdateUserResponseBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateUserResponseBody$Outbound = { success: string; user: UpdateUserUser$Outbound; }; /** @internal */ export declare const UpdateUserResponseBody$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 UpdateUserResponseBody$ { /** @deprecated use `UpdateUserResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateUserResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateUserResponseBody$Outbound` instead. */ type Outbound = UpdateUserResponseBody$Outbound; } //# sourceMappingURL=updateuser.d.ts.map