From 6c6249e1ec3c54b08f21f0895f9e2c23fbd58e9c Mon Sep 17 00:00:00 2001 From: William Martin Date: Thu, 6 Jul 2023 19:24:05 -0400 Subject: [PATCH] remove beta field from profile org response --- .../models/response/profile-organization.response.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/common/src/admin-console/models/response/profile-organization.response.ts b/libs/common/src/admin-console/models/response/profile-organization.response.ts index 8728f304d0..e042bf145f 100644 --- a/libs/common/src/admin-console/models/response/profile-organization.response.ts +++ b/libs/common/src/admin-console/models/response/profile-organization.response.ts @@ -48,7 +48,6 @@ export class ProfileOrganizationResponse extends BaseResponse { familySponsorshipValidUntil?: Date; familySponsorshipToDelete?: boolean; accessSecretsManager: boolean; - secretsManagerBeta: boolean; constructor(response: any) { super(response); @@ -106,6 +105,5 @@ export class ProfileOrganizationResponse extends BaseResponse { } this.familySponsorshipToDelete = this.getResponseProperty("FamilySponsorshipToDelete"); this.accessSecretsManager = this.getResponseProperty("AccessSecretsManager"); - this.secretsManagerBeta = this.getResponseProperty("SecretsManagerBeta") ?? false; } }