import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DatasourceGroupDefinition } from "./datasourcegroupdefinition.js"; import { UserStatusResponse } from "./userstatusresponse.js"; /** * Describes the response body of the /debug/{datasource}/user API call */ export type DebugUserResponse = { /** * Describes the user status response body */ status?: UserStatusResponse | undefined; /** * List of groups the user is a member of, as uploaded via permissions API. */ uploadedGroups?: Array | undefined; }; /** @internal */ export declare const DebugUserResponse$inboundSchema: z.ZodType; export declare function debugUserResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debuguserresponse.d.ts.map