UNPKG

@simpleapps-com/augur-api

Version:

TypeScript client library for Augur microservices API endpoints

10 lines 718 B
import { z } from 'zod'; export declare const SearchTypeSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"similarity">, z.ZodLiteral<"query">]>>; export declare const OperatorSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"AND">, z.ZodLiteral<"OR">]>>; export declare const OnlineStatusSchema: z.ZodUnion<[z.ZodLiteral<"Y">, z.ZodLiteral<"N">]>; export declare const StatusCdSchema: z.ZodUnion<[z.ZodLiteral<700>, z.ZodLiteral<704>, z.ZodLiteral<705>]>; export type SearchType = z.infer<typeof SearchTypeSchema>; export type Operator = z.infer<typeof OperatorSchema>; export type OnlineStatus = z.infer<typeof OnlineStatusSchema>; export type StatusCd = z.infer<typeof StatusCdSchema>; //# sourceMappingURL=common.d.ts.map