import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ListMcpCredentialsQueryParamOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type ListMcpCredentialsQueryParamOrder = ClosedEnum; export type IncludeRevoked = boolean | string; export type ListMcpCredentialsRequest = { serverId: string; limit?: number | undefined; after?: string | undefined; order?: ListMcpCredentialsQueryParamOrder | undefined; includeRevoked?: boolean | string | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const ListMcpCredentialsQueryParamOrder$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListMcpCredentialsQueryParamOrder$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const IncludeRevoked$inboundSchema: z.ZodType; /** @internal */ export type IncludeRevoked$Outbound = boolean | string; /** @internal */ export declare const IncludeRevoked$outboundSchema: z.ZodType; export declare function includeRevokedToJSON(includeRevoked: IncludeRevoked): string; export declare function includeRevokedFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListMcpCredentialsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListMcpCredentialsRequest$Outbound = { server_id: string; limit: number; after?: string | undefined; order: string; include_revoked?: boolean | string | undefined; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListMcpCredentialsRequest$outboundSchema: z.ZodType; export declare function listMcpCredentialsRequestToJSON(listMcpCredentialsRequest: ListMcpCredentialsRequest): string; export declare function listMcpCredentialsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listmcpcredentials.d.ts.map