Management: expanded types for spaces

This commit is contained in:
Dmitry Sychugov 2023-11-08 18:26:15 +05:00
parent 4ccb9d7998
commit 7e5190b700

View File

@ -14,6 +14,12 @@ type TQuotaUsage = {
roomsCount: number
}
type TOwner = {
displayName: string,
email: string,
id: string
}
export type TPortals = {
created: string;
domain: string;
@ -24,6 +30,7 @@ export type TPortals = {
portalName: string;
status: string;
tenantId: number;
owner: TOwner,
timeZoneName: string;
quotaUsage: TQuotaUsage
};