UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

83 lines 2.77 kB
import { z } from 'zod'; /** Create PDF request - passthrough for flexible input */ export declare const CreateInternalPdfRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>; export type CreateInternalPdfRequest = z.infer<typeof CreateInternalPdfRequestSchema>; /** Internal PDF data - key field only, passthrough for API flexibility */ export declare const InternalPdfDataSchema: z.ZodObject<{ pdfId: z.ZodString; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ pdfId: z.ZodString; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ pdfId: z.ZodString; }, z.ZodTypeAny, "passthrough">>; export type InternalPdfData = z.infer<typeof InternalPdfDataSchema>; export declare const InternalPdfResponseSchema: z.ZodEffects<z.ZodObject<{ count: z.ZodNumber; data: z.ZodObject<{ pdfId: z.ZodString; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ pdfId: z.ZodString; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ pdfId: z.ZodString; }, z.ZodTypeAny, "passthrough">>; message: z.ZodString; options: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>; params: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>; status: z.ZodNumber; total: z.ZodNumber; totalResults: z.ZodNumber; }, "strip", z.ZodTypeAny, { params: Record<string, unknown> | unknown[]; data: { pdfId: string; } & { [k: string]: unknown; }; options: Record<string, unknown> | unknown[]; status: number; message: string; count: number; total: number; totalResults: number; }, { params: Record<string, unknown> | unknown[]; data: { pdfId: string; } & { [k: string]: unknown; }; options: Record<string, unknown> | unknown[]; status: number; message: string; count: number; total: number; totalResults: number; }>, { params: Record<string, unknown> | unknown[]; data: { pdfId: string; } & { [k: string]: unknown; }; options: Record<string, unknown> | unknown[]; status: number; message: string; count: number; total: number; totalResults: number; }, { params: Record<string, unknown> | unknown[]; data: { pdfId: string; } & { [k: string]: unknown; }; options: Record<string, unknown> | unknown[]; status: number; message: string; count: number; total: number; totalResults: number; }>; export type InternalPdfResponse = z.infer<typeof InternalPdfResponseSchema>; //# sourceMappingURL=internalPdf.d.ts.map