UNPKG

@unkey/api

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.

20 lines 1.13 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Meta } from "./meta.js"; export type V2AnalyticsGetVerificationsResponseBody = { /** * Metadata object included in every API response. This provides context about the request and is essential for debugging, audit trails, and support inquiries. The `requestId` is particularly important when troubleshooting issues with the Unkey support team. */ meta: Meta; /** * Array of verification rows returned by the query. Fields vary based on the SQL SELECT clause. */ data: Array<{ [k: string]: any; }>; }; /** @internal */ export declare const V2AnalyticsGetVerificationsResponseBody$inboundSchema: z.ZodType<V2AnalyticsGetVerificationsResponseBody, z.ZodTypeDef, unknown>; export declare function v2AnalyticsGetVerificationsResponseBodyFromJSON(jsonString: string): SafeParseResult<V2AnalyticsGetVerificationsResponseBody, SDKValidationError>; //# sourceMappingURL=v2analyticsgetverificationsresponsebody.d.ts.map