import { Cepljenje } from "./cepljenje.mjs"; import { DbEntity, Id, MultilineText, Username } from "./shared.mjs"; /** * Teža pacienta na določen dan. */ export interface TezaPacienta { _id: string; /** Datum v obliki YYYYMMDD */ datumStr: string; /** Datuponovno m in ura, ko je bila teža zapisana ali posodobljena */ datum: Date; /** Teža v kg */ teza: number; } export interface Pacient extends DbEntity { ime: string; stranka_id: Id; cip: string[]; vrsta: string; pasma?: string; spol?: "m" | "f"; rojen?: Date; potniListSt?: string; potniListDatum?: Date; skupine: string[]; kastrat?: boolean; mrtev?: boolean; oddan?: boolean; podatki?: MultilineText; opomba?: string; dodal?: Username; zapSt: number; teza?: number; cepljenja?: Record; zavetiscePrihod?: Date; zavetisceOdhod?: Date; zavetisceKletka?: Date; teze?: TezaPacienta[]; vir?: string; url?: string; _imported_id?: string; _imported_ids?: string[]; _imported_on?: Date; _imported_interna?: string; } //# sourceMappingURL=pacient.d.mts.map