diff --git a/src/Contracts/DataModels.ts b/src/Contracts/DataModels.ts index 8bec7e6f9..6a5a11d02 100644 --- a/src/Contracts/DataModels.ts +++ b/src/Contracts/DataModels.ts @@ -563,6 +563,7 @@ export interface ContainerConnectionInfo { } export enum PhoenixErrorType { + UserMissingPermissionsError = "UserMissingPermissionsError", MaxAllocationTimeExceeded = "MaxAllocationTimeExceeded", MaxDbAccountsPerUserExceeded = "MaxDbAccountsPerUserExceeded", MaxUsersPerDbAccountExceeded = "MaxUsersPerDbAccountExceeded", diff --git a/src/Phoenix/PhoenixClient.ts b/src/Phoenix/PhoenixClient.ts index 9ff373366..667342c1d 100644 --- a/src/Phoenix/PhoenixClient.ts +++ b/src/Phoenix/PhoenixClient.ts @@ -266,6 +266,7 @@ export class PhoenixClient { "." ); } + case PhoenixErrorType.UserMissingPermissionsError: case PhoenixErrorType.AllocationValidationResult: case PhoenixErrorType.RegionNotServicable: case PhoenixErrorType.SubscriptionNotAllowed: {