import { AutoEncoder } from '@simonbackx/simple-encoding'; import { LegacyRecordType, OldRecordType } from './LegacyRecordType.js'; export declare class LegacyRecord extends AutoEncoder { type: LegacyRecordType; description: string; /** * Sometimes it is necessary to know who created a record. * So we keep track of this information in the background only when * someone inside the organization modified records */ author?: string; } /** * @deprecated only used for migration. Keep here for at least one year or create a migration that runs in the clients and saves */ export declare class OldRecord extends AutoEncoder { type: OldRecordType; description: string; } //# sourceMappingURL=LegacyRecord.d.ts.map