2023-11-25 19:53:30 +01:00
|
|
|
import { Column, Entity, PrimaryColumn } from 'typeorm';
|
|
|
|
|
|
|
|
@Entity('system_metadata')
|
|
|
|
export class SystemMetadataEntity {
|
|
|
|
@PrimaryColumn()
|
|
|
|
key!: string;
|
|
|
|
|
|
|
|
@Column({ type: 'jsonb', default: '{}', transformer: { to: JSON.stringify, from: JSON.parse } })
|
|
|
|
value!: { [key: string]: unknown };
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum SystemMetadataKey {
|
|
|
|
REVERSE_GEOCODING_STATE = 'reverse-geocoding-state',
|
2024-01-04 06:28:32 +01:00
|
|
|
ADMIN_ONBOARDING = 'admin-onboarding',
|
2023-11-25 19:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface SystemMetadata extends Record<SystemMetadataKey, { [key: string]: unknown }> {
|
|
|
|
[SystemMetadataKey.REVERSE_GEOCODING_STATE]: { lastUpdate?: string; lastImportFileName?: string };
|
2024-01-04 06:28:32 +01:00
|
|
|
[SystemMetadataKey.ADMIN_ONBOARDING]: { isOnboarded: boolean };
|
2023-11-25 19:53:30 +01:00
|
|
|
}
|