feat(front): add domain timeline

This commit is contained in:
Maël Gangloff
2024-07-27 13:42:46 +02:00
parent ea97e93f94
commit 3b890c83f6
3 changed files with 78 additions and 19 deletions

View File

@@ -1,8 +1,23 @@
import axios, {AxiosRequestConfig, AxiosResponse} from "axios";
type EventAction =
'registration'
| 'reregistration'
| 'last changed'
| 'expiration'
| 'deletion'
| 'reinstantiation'
| 'transfer'
| 'locked'
| 'unlocked'
| 'last update of RDAP database'
| 'registrar expiration'
| 'enum validation expiration'
| string
export interface Event {
action: string
action: EventAction
date: string
}