Added Notifications

This commit is contained in:
2026-05-26 23:02:37 +10:00
parent 57b015eb18
commit 05c16147ee
19 changed files with 455 additions and 363 deletions
+3 -3
View File
@@ -10,7 +10,7 @@ declare module '@vue/runtime-core' {
export type ProfileView = 'map' | 'board' | 'passes' | 'achievements' ;
export type ChartType = "line" | "area" | "bar" | "pie" | "donut" | "radialBar" | "scatter" | "bubble" | "heatmap" | "candlestick" | "boxPlot" | "radar" | "polarArea" | "rangeBar" | "rangeArea" | "treemap" | undefined
export type BadgeVariant = 'first' | 'business' | 'premium' | 'economy' | 'private' | 'unspecified' | 'generic' | 'general_aviation' | 'crew' | "easy" | "moderate" | "hard" | "expensive" | "near-impossible" | "impossible"
export type BadgeVariant = 'first' | 'business' | 'premium' | 'economy' | 'private' | 'unspecified' | 'generic' | 'general_aviation' | 'crew' | "easy" | "moderate" | "hard" | "expensive" | "near_impossible" | "impossible"
export interface User {
id: number
@@ -69,7 +69,7 @@ export type SharedProps = import('@inertiajs/core').PageProps & {
}
export interface AchievementDifficulty {
id: number
internal_name: string
internal_name: "easy" | "moderate" | "hard" | "expensive" | "near_impossible" | "impossible"
name: string
description: string
created_at: string | null
@@ -98,7 +98,7 @@ export interface Achievement {
achievement_category_id: number
achievement_difficulty_id: number
category?: AchievementCategory
difficulty?: AchievementDifficulty
difficulty: AchievementDifficulty
has_page: boolean
sort_order: number
}