Fix footer links

This commit is contained in:
Matthew Kilgore
2025-04-19 13:35:19 -04:00
parent 177b7344f8
commit 912e5b231a
7 changed files with 3412 additions and 1851 deletions

View File

@@ -11,6 +11,17 @@
* ---------------------------------------------------------------
*/
export enum MaintenanceFilterStatus {
MaintenanceFilterStatusScheduled = "scheduled",
MaintenanceFilterStatusCompleted = "completed",
MaintenanceFilterStatusBoth = "both",
}
export enum ItemType {
ItemTypeLocation = "location",
ItemTypeItem = "item",
}
export interface CurrenciesCurrency {
code: string;
local: string;
@@ -152,11 +163,6 @@ export interface ItemSummary {
updatedAt: Date | string;
}
export enum ItemType {
ItemTypeLocation = "location",
ItemTypeItem = "item",
}
export interface ItemUpdate {
archived: boolean;
assetId: string;
@@ -307,12 +313,6 @@ export interface MaintenanceEntryWithDetails {
scheduledDate: Date | string;
}
export enum MaintenanceFilterStatus {
MaintenanceFilterStatusScheduled = "scheduled",
MaintenanceFilterStatusCompleted = "completed",
MaintenanceFilterStatusBoth = "both",
}
export interface NotifierCreate {
isActive: boolean;
/**