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 VaultLogsAllGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; }; export type VaultLogsAllRequest = { /** * Filter results */ filter?: components.LogsFilter | undefined; /** * Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. */ cursor?: string | null | undefined; /** * Number of results to return. Minimum 1, Maximum 200, Default 20 */ limit?: number | undefined; }; export type VaultLogsAllResponse = { httpMeta: components.HTTPMetadata; /** * Logs */ getLogsResponse?: components.GetLogsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultLogsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultLogsAllGlobals$Outbound = { appId?: string | undefined; consumerId?: string | undefined; }; /** @internal */ export declare const VaultLogsAllGlobals$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 VaultLogsAllGlobals$ { /** @deprecated use `VaultLogsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllGlobals$Outbound` instead. */ type Outbound = VaultLogsAllGlobals$Outbound; } export declare function vaultLogsAllGlobalsToJSON(vaultLogsAllGlobals: VaultLogsAllGlobals): string; export declare function vaultLogsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultLogsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultLogsAllRequest$Outbound = { filter?: components.LogsFilter$Outbound | undefined; cursor?: string | null | undefined; limit: number; }; /** @internal */ export declare const VaultLogsAllRequest$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 VaultLogsAllRequest$ { /** @deprecated use `VaultLogsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllRequest$Outbound` instead. */ type Outbound = VaultLogsAllRequest$Outbound; } export declare function vaultLogsAllRequestToJSON(vaultLogsAllRequest: VaultLogsAllRequest): string; export declare function vaultLogsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultLogsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultLogsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetLogsResponse?: components.GetLogsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultLogsAllResponse$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 VaultLogsAllResponse$ { /** @deprecated use `VaultLogsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultLogsAllResponse$Outbound` instead. */ type Outbound = VaultLogsAllResponse$Outbound; } export declare function vaultLogsAllResponseToJSON(vaultLogsAllResponse: VaultLogsAllResponse): string; export declare function vaultLogsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultlogsall.d.ts.map