-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Svelte 5 Migration 15: Migrate Admin UI core components to Svelte 5 +…
… TS + all new features (#715) * migrate `<SearchBar>` * rework `<Events>` * create `<InputTime>` * update i18n * fix OpenAPI `/events` request and response types * reworked `<EventsArchive>` (skipped `SearchBar`) * reworked `<OrderBy>` * additional i18n * rework `<OrderSearchBar>` * migrate `<EventsArchive>` with all new components * rebuild ui
- Loading branch information
Showing
844 changed files
with
3,418 additions
and
2,109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
export type EventLevel = 'info' | 'notice' | 'warning' | 'critical'; | ||
export type EventType = 'InvalidLogins' | ||
| 'IpBlacklisted' | ||
| 'IpBlacklistRemoved' | ||
| 'JwksRotated' | ||
| 'NewUserRegistered' | ||
| 'NewRauthyAdmin' | ||
| 'NewRauthyVersion' | ||
| 'PossibleBruteForce' | ||
| 'RauthyStarted' | ||
| 'RauthyHealthy' | ||
| 'RauthyUnhealthy' | ||
| 'SecretsMigrated' | ||
| 'UserEmailChange' | ||
| 'UserPasswordReset' | ||
| 'Test'; | ||
|
||
export interface EventsRequest { | ||
/// Unix timestamp in seconds | ||
from: number, | ||
/// Unix timestamp in seconds | ||
until?: number, | ||
level: EventLevel, | ||
typ?: EventType, | ||
} | ||
|
||
export interface EventResponse { | ||
id: string, | ||
timestamp: number, | ||
level: EventLevel, | ||
typ: EventType, | ||
ip?: string, | ||
data?: number, | ||
text?: string, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.