import * as z from "zod/v3"; import { DatasourceUserDefinition, DatasourceUserDefinition$Outbound } from "./datasourceuserdefinition.js"; /** * Describes the request body of the /indexuser API call */ export type IndexUserRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * The datasource for which the user is added */ datasource: string; /** * describes a user in the datasource */ user: DatasourceUserDefinition; }; /** @internal */ export type IndexUserRequest$Outbound = { version?: number | undefined; datasource: string; user: DatasourceUserDefinition$Outbound; }; /** @internal */ export declare const IndexUserRequest$outboundSchema: z.ZodType; export declare function indexUserRequestToJSON(indexUserRequest: IndexUserRequest): string; //# sourceMappingURL=indexuserrequest.d.ts.map