new uptime monitors + half-completed create container deployment flow

This commit is contained in:
Nicholas Orlowsky 2023-01-17 01:06:38 -06:00
parent ddb20ee17c
commit 847d11c841
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
16 changed files with 550 additions and 84 deletions

View file

@ -3,6 +3,9 @@ export type UptimeRecord = {
url: string,
uptimeMonth: number,
uptimeAllTime: number,
uptimeYtd: number,
averageResponseTime: number,
monitorStart: string,
isUp: boolean,
undergoingMaintenance: boolean
};
@ -10,6 +13,7 @@ export type UptimeRecord = {
export type UptimeResponse = {
datacenters: UptimeRecord[],
services: UptimeRecord[],
competitors: UptimeRecord[],
lastUpdated: string
};
@ -64,4 +68,8 @@ export type SessionKey = {
ip: string
};
export type Namespace = {
id: string,
accountId: string,
name: string
}