add host list

This commit is contained in:
Nicholas Orlowsky 2023-07-09 22:14:37 -04:00
parent e491b99b53
commit d1f552e8a5
3 changed files with 27 additions and 10 deletions

View file

@ -48,12 +48,19 @@ export type Account = {
status?: string
};
export type Host = {
serviceId: string,
isSslEnabled: boolean,
hostname: string
};
export type Service = {
serviceId: string,
serviceName: string,
namespace: string,
containerUrl: string,
ownerId: string
ownerId: string,
hostnames: Host[]
}
export type ApiError = {