@it_kyryl/arbitrage_admin_schema
Version:
Schema for arbitrage admin panel
27 lines • 749 B
TypeScript
import { z } from "zod";
export declare const binomV2NotesDto: z.ZodObject<{
uuid: z.ZodString;
text: z.ZodString;
}, "strip", z.ZodTypeAny, {
uuid: string;
text: string;
}, {
uuid: string;
text: string;
}>;
export type BinomV2CampaignNotesDtoT = z.infer<typeof binomV2NotesDto>;
export declare const updateBinomV2NotesBody: z.ZodObject<{
text: z.ZodString;
subject: z.ZodEnum<["campaign"]>;
aggregateId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
text: string;
subject: "campaign";
aggregateId: number;
}, {
text: string;
subject: "campaign";
aggregateId: number;
}>;
export type BinomV2CampaignNotesBodyT = z.infer<typeof updateBinomV2NotesBody>;
//# sourceMappingURL=notes.entity.d.ts.map