Enable phoenix based of allowed subscription and flights (#1291)

* Enable phoenix based of allowed subscription and flights
This commit is contained in:
Karthik chakravarthy
2022-06-15 17:08:06 -04:00
committed by GitHub
parent c731eb9cf9
commit 7abd65ac4b
6 changed files with 39 additions and 6433 deletions

View File

@@ -450,6 +450,12 @@ export interface IContainerData {
forwardingId: string;
}
export interface IDbAccountAllow {
status: number;
message?: string;
type?: string;
}
export interface IResponse<T> {
status: number;
data: T;
@@ -563,4 +569,5 @@ export enum PhoenixErrorType {
RegionNotServicable = "RegionNotServicable",
SubscriptionNotAllowed = "SubscriptionNotAllowed",
UnknownError = "UnknownError",
PhoenixFlightFallback = "PhoenixFlightFallback",
}