import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthenticationListSigningKeysSecurity = { apiKeyAuth: string; }; export type AuthenticationListSigningKeysRequest = { /** * The number of entries to return in a single page; Default = 100; Maximum = 1000 */ pageSize?: number | undefined; /** * Page token used for pagination; Supplying a page token returns the next page of results */ pageToken?: string | undefined; }; export type AuthenticationListSigningKeysResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listSigningKeysResponse?: components.ListSigningKeysResponse | undefined; /** * INTERNAL: An internal server error occurred. */ status?: components.Status | undefined; }; /** @internal */ export declare const AuthenticationListSigningKeysSecurity$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationListSigningKeysSecurity$Outbound = { ApiKeyAuth: string; }; /** @internal */ export declare const AuthenticationListSigningKeysSecurity$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 AuthenticationListSigningKeysSecurity$ { /** @deprecated use `AuthenticationListSigningKeysSecurity$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysSecurity$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysSecurity$Outbound` instead. */ type Outbound = AuthenticationListSigningKeysSecurity$Outbound; } export declare function authenticationListSigningKeysSecurityToJSON(authenticationListSigningKeysSecurity: AuthenticationListSigningKeysSecurity): string; export declare function authenticationListSigningKeysSecurityFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AuthenticationListSigningKeysRequest$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationListSigningKeysRequest$Outbound = { page_size?: number | undefined; page_token?: string | undefined; }; /** @internal */ export declare const AuthenticationListSigningKeysRequest$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 AuthenticationListSigningKeysRequest$ { /** @deprecated use `AuthenticationListSigningKeysRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysRequest$Outbound` instead. */ type Outbound = AuthenticationListSigningKeysRequest$Outbound; } export declare function authenticationListSigningKeysRequestToJSON(authenticationListSigningKeysRequest: AuthenticationListSigningKeysRequest): string; export declare function authenticationListSigningKeysRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AuthenticationListSigningKeysResponse$inboundSchema: z.ZodType; /** @internal */ export type AuthenticationListSigningKeysResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListSigningKeysResponse?: components.ListSigningKeysResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AuthenticationListSigningKeysResponse$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 AuthenticationListSigningKeysResponse$ { /** @deprecated use `AuthenticationListSigningKeysResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthenticationListSigningKeysResponse$Outbound` instead. */ type Outbound = AuthenticationListSigningKeysResponse$Outbound; } export declare function authenticationListSigningKeysResponseToJSON(authenticationListSigningKeysResponse: AuthenticationListSigningKeysResponse): string; export declare function authenticationListSigningKeysResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authenticationlistsigningkeys.d.ts.map