|
|
@ -6,6 +6,7 @@ export namespace ApplicationConfiguration { |
|
|
auth: Auth; |
|
|
auth: Auth; |
|
|
setting: Value; |
|
|
setting: Value; |
|
|
currentUser: CurrentUser; |
|
|
currentUser: CurrentUser; |
|
|
|
|
|
currentTenant: CurrentTenant; |
|
|
features: Value; |
|
|
features: Value; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@ -74,4 +75,10 @@ export namespace ApplicationConfiguration { |
|
|
phoneNumberVerified: boolean; |
|
|
phoneNumberVerified: boolean; |
|
|
surName: string; |
|
|
surName: string; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
export interface CurrentTenant { |
|
|
|
|
|
id: string; |
|
|
|
|
|
name: string; |
|
|
|
|
|
isAvailable?: boolean; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|