2024-11-03 11:21:44 +01:00
|
|
|
export default interface Lookup {
|
|
|
|
id: number;
|
|
|
|
documentId: string;
|
2024-11-03 13:13:36 +01:00
|
|
|
createdAt: string;
|
|
|
|
updatedAt: string;
|
|
|
|
publishedAt: string;
|
2025-02-14 13:57:55 +01:00
|
|
|
|
|
|
|
reference: string;
|
|
|
|
collection: "events" | "vehicles" | "articles" | "operations";
|
|
|
|
show_image: boolean;
|
|
|
|
show_date: boolean;
|
|
|
|
list_with_date: "none" | "by-year" | "by-month";
|
|
|
|
items_with_number: "none" | "numbered" | "inverted";
|
|
|
|
enable_detail: boolean;
|
2024-11-03 11:21:44 +01:00
|
|
|
}
|