diff --git a/libs/common/src/admin-console/models/response/organization.response.ts b/libs/common/src/admin-console/models/response/organization.response.ts index e343c3d5261e..c30fbcadde0b 100644 --- a/libs/common/src/admin-console/models/response/organization.response.ts +++ b/libs/common/src/admin-console/models/response/organization.response.ts @@ -42,6 +42,7 @@ export class OrganizationResponse extends BaseResponse { useAccessIntelligence: boolean; usePhishingBlocker: boolean; useMyItems: boolean; + useInviteLinks: boolean; constructor(response: any) { super(response); @@ -88,5 +89,6 @@ export class OrganizationResponse extends BaseResponse { this.useAccessIntelligence = this.getResponseProperty("UseRiskInsights"); this.usePhishingBlocker = this.getResponseProperty("UsePhishingBlocker") ?? false; this.useMyItems = this.getResponseProperty("UseMyItems") ?? false; + this.useInviteLinks = this.getResponseProperty("UseInviteLinks") ?? false; } } diff --git a/libs/common/src/billing/models/response/plan.response.ts b/libs/common/src/billing/models/response/plan.response.ts index d8c68f09d935..56b05e6b09bb 100644 --- a/libs/common/src/billing/models/response/plan.response.ts +++ b/libs/common/src/billing/models/response/plan.response.ts @@ -15,6 +15,7 @@ export class PlanResponse extends BaseResponse { hasSelfHost: boolean; hasPolicies: boolean; hasMyItems: boolean; + hasInviteLinks: boolean; hasGroups: boolean; hasDirectory: boolean; hasEvents: boolean; @@ -44,6 +45,7 @@ export class PlanResponse extends BaseResponse { this.hasSelfHost = this.getResponseProperty("HasSelfHost"); this.hasPolicies = this.getResponseProperty("HasPolicies"); this.hasMyItems = this.getResponseProperty("HasMyItems"); + this.hasInviteLinks = this.getResponseProperty("HasInviteLinks") ?? false; this.hasGroups = this.getResponseProperty("HasGroups"); this.hasDirectory = this.getResponseProperty("HasDirectory"); this.hasEvents = this.getResponseProperty("HasEvents");