@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
54 lines • 1.63 kB
TypeScript
import { z } from 'zod';
export declare const P21CodeSchema: z.ZodObject<{
codeUid: z.ZodNumber;
codeNo: z.ZodNumber;
languageId: z.ZodString;
codeDescription: z.ZodString;
rowStatusFlag: z.ZodString;
dateCreated: z.ZodString;
dateLastModified: z.ZodString;
lastMaintainedBy: z.ZodString;
codeSubDescription: z.ZodNullable<z.ZodString>;
updateCd: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
dateCreated: string;
dateLastModified: string;
updateCd: number;
lastMaintainedBy: string;
rowStatusFlag: string;
codeUid: number;
codeNo: number;
languageId: string;
codeDescription: string;
codeSubDescription: string | null;
}, {
dateCreated: string;
dateLastModified: string;
updateCd: number;
lastMaintainedBy: string;
rowStatusFlag: string;
codeUid: number;
codeNo: number;
languageId: string;
codeDescription: string;
codeSubDescription: string | null;
}>;
export declare const P21CodeListParamsSchema: z.ZodObject<{
q: z.ZodString;
codeNoList: z.ZodOptional<z.ZodString>;
limit: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
offset: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
}, "strip", z.ZodTypeAny, {
q: string;
limit?: number | undefined;
offset?: number | undefined;
codeNoList?: string | undefined;
}, {
q: string;
limit?: number | undefined;
offset?: number | undefined;
codeNoList?: string | undefined;
}>;
export type P21Code = z.infer<typeof P21CodeSchema>;
export type P21CodeListParams = z.infer<typeof P21CodeListParamsSchema>;
//# sourceMappingURL=codes.d.ts.map