@simpleapps-com/augur-api
Version:
TypeScript client library for Augur microservices API endpoints
173 lines • 6.61 kB
TypeScript
import { z } from 'zod';
export declare const FyxerTranscriptSchema: z.ZodObject<{
fyxerTranscriptHdrUid: z.ZodNumber;
link: z.ZodString;
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
transcript: z.ZodOptional<z.ZodNullable<z.ZodString>>;
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
dateRecorded: z.ZodString;
dateCreated: z.ZodString;
dateLastModified: z.ZodString;
updateCd: z.ZodUnion<[z.ZodLiteral<704>, z.ZodLiteral<705>, z.ZodLiteral<1185>]>;
statusCd: z.ZodUnion<[z.ZodLiteral<700>, z.ZodLiteral<704>, z.ZodLiteral<705>]>;
processCd: z.ZodUnion<[z.ZodLiteral<700>, z.ZodLiteral<704>, z.ZodLiteral<705>]>;
}, "strip", z.ZodTypeAny, {
link: string;
dateCreated: string;
dateLastModified: string;
statusCd: 704 | 700 | 705;
updateCd: 704 | 705 | 1185;
processCd: 704 | 700 | 705;
fyxerTranscriptHdrUid: number;
dateRecorded: string;
title?: string | null | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
}, {
link: string;
dateCreated: string;
dateLastModified: string;
statusCd: 704 | 700 | 705;
updateCd: 704 | 705 | 1185;
processCd: 704 | 700 | 705;
fyxerTranscriptHdrUid: number;
dateRecorded: string;
title?: string | null | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
}>;
export declare const FyxerTranscriptListParamsSchema: z.ZodObject<{
limit: z.ZodOptional<z.ZodNumber>;
offset: z.ZodOptional<z.ZodNumber>;
orderBy: z.ZodOptional<z.ZodString>;
q: z.ZodOptional<z.ZodString>;
statusCd: z.ZodOptional<z.ZodNumber>;
} & {
edgeCache: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<8>, z.ZodLiteral<"1">, z.ZodLiteral<"2">, z.ZodLiteral<"3">, z.ZodLiteral<"4">, z.ZodLiteral<"5">, z.ZodLiteral<"8">]>, 3 | 2 | 4 | 1 | 5 | 8, 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>;
}, "strip", z.ZodTypeAny, {
edgeCache?: 3 | 2 | 4 | 1 | 5 | 8 | undefined;
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
statusCd?: number | undefined;
}, {
edgeCache?: 3 | 2 | 4 | 1 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined;
limit?: number | undefined;
offset?: number | undefined;
q?: string | undefined;
orderBy?: string | undefined;
statusCd?: number | undefined;
}>;
export declare const FyxerTranscriptCreateParamsSchema: z.ZodObject<{
link: z.ZodString;
transcript: z.ZodOptional<z.ZodNullable<z.ZodString>>;
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
dateRecorded: z.ZodOptional<z.ZodNullable<z.ZodString>>;
}, "strip", z.ZodTypeAny, {
link: string;
title?: string | null | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
dateRecorded?: string | null | undefined;
}, {
link: string;
title?: string | null | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
dateRecorded?: string | null | undefined;
}>;
export declare const FyxerTranscriptUpdateParamsSchema: z.ZodObject<{
link: z.ZodOptional<z.ZodString>;
summary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
transcript: z.ZodOptional<z.ZodNullable<z.ZodString>>;
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
dateRecorded: z.ZodOptional<z.ZodString>;
statusCd: z.ZodOptional<z.ZodNumber>;
processCd: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
link?: string | undefined;
title?: string | null | undefined;
statusCd?: number | undefined;
processCd?: number | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
dateRecorded?: string | undefined;
}, {
link?: string | undefined;
title?: string | null | undefined;
statusCd?: number | undefined;
processCd?: number | undefined;
summary?: string | null | undefined;
transcript?: string | null | undefined;
dateRecorded?: string | undefined;
}>;
export declare const NotificationSchema: z.ZodObject<{
notificationsUid: z.ZodNumber;
serviceName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
dataTypeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
dataTypeUid: z.ZodNumber;
dateCreated: z.ZodString;
dateLastModified: z.ZodString;
updateCd: z.ZodNumber;
statusCd: z.ZodNumber;
processCd: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
dateCreated: string;
dateLastModified: string;
statusCd: number;
updateCd: number;
processCd: number;
notificationsUid: number;
dataTypeUid: number;
type?: string | null | undefined;
serviceName?: string | null | undefined;
dataTypeName?: string | null | undefined;
}, {
dateCreated: string;
dateLastModified: string;
statusCd: number;
updateCd: number;
processCd: number;
notificationsUid: number;
dataTypeUid: number;
type?: string | null | undefined;
serviceName?: string | null | undefined;
dataTypeName?: string | null | undefined;
}>;
export declare const NotificationCreateParamsSchema: z.ZodObject<{
serviceName: z.ZodString;
dataTypeName: z.ZodString;
type: z.ZodString;
dataTypeUid: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
type: string;
serviceName: string;
dataTypeName: string;
dataTypeUid: number;
}, {
type: string;
serviceName: string;
dataTypeName: string;
dataTypeUid: number;
}>;
export declare const MetaFilesDataSchema: z.ZodObject<{
content: z.ZodString;
contentType: z.ZodLiteral<"text/plain">;
}, "strip", z.ZodTypeAny, {
content: string;
contentType: "text/plain";
}, {
content: string;
contentType: "text/plain";
}>;
export type FyxerTranscript = z.infer<typeof FyxerTranscriptSchema>;
export type FyxerTranscriptListParams = z.infer<typeof FyxerTranscriptListParamsSchema>;
export type FyxerTranscriptCreateParams = z.infer<typeof FyxerTranscriptCreateParamsSchema>;
export type FyxerTranscriptUpdateParams = z.infer<typeof FyxerTranscriptUpdateParamsSchema>;
export type Notification = z.infer<typeof NotificationSchema>;
export type NotificationCreateParams = z.infer<typeof NotificationCreateParamsSchema>;
export type MetaFilesData = z.infer<typeof MetaFilesDataSchema>;
//# sourceMappingURL=content.d.ts.map