1 import type { PLANS } from '@proton/payments';
3 export interface PendingInvitation {
7 OrganizationName: string;
8 Validation: AcceptInvitationValidation;
9 OrganizationPlanName?: PLANS;
12 export interface AcceptInvitationValidation {
14 IsLifetimeAccount: boolean;
15 IsOnForbiddenPlan: boolean;
16 HasOrgWithMembers: boolean;
17 HasCustomDomains: boolean;
18 ExceedsMaxSpace: boolean;
19 ExceedsAddresses: boolean;
20 HasUnpaidInvoice: boolean;
21 ExceedsMaxAcceptedInvitations: boolean;
22 IsExternalUser: boolean;