mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
* [AC-1423] Add minWidth input to bit-progress component * [AC-1423] Add ProgressModule to shared.module.ts * [AC-1423] Update cloud subscription page styles - Remove bootstrap styles - Use CL components where applicable - Use CL typography directives - Update heading levels to prepare for new SM sections * [AC-1423] Add usePasswordManager boolean to organization domain * [AC-1423] Introduce BitwardenProductType enum * [AC-1423] Update Organization subscription line items - Add product type prefix - Indent addon services like additional storage and service accounts - Show line items for free plans * [AC-1423] Simply sort function * [AC-1423] Remove header border * [AC-1423] Remove redundant condition * [AC-1423] Remove ineffective div * [AC-1423] Make "Password Manager" the default fallback for product name * Revert "[AC-1423] Add minWidth input to bit-progress component" This reverts commit95b2223a30. * [AC-1423] Remove minWidth attribute * [AC-1423] Switch to AddonProductType enum instead of boolean * Revert "[AC-1423] Switch to AddonProductType enum instead of boolean" This reverts commit204f64b4e7. * [AC-1423] Tweak sorting comment * [AC-1418] Add initial SecretsManagerAdjustSubscription component * [AC-1418] Add initial SM adjustment form * [AC-1418] Adjust organization-subscription-update.request.ts to support both PM and SM * [AC-1418] Rename service account fields in the options interface * [AC-1418] Add api service call to update SM subscription * [AC-1418] Cleanup form html * [AC-1418] Add missing SM plan properties * [AC-1418] Add SM subscription adjust form and logic to hide it * [AC-1418] Add better docs to options interface * [AC-1418] Fix conflicting required/optional labels for auto-scaling limits * [AC-1418] Adjust labels and appearance to better match design * [AC-1418] Use the SM plan for billing interval * [AC-1418] Hide SM billing adjustment component behind feature flag * [AC-1418] Update request model to match server * [AC-1418] Cleanup BitwardenProductType after merge Add to barrel file and update applicable imports. * [AC-1418] Revert change to update PM subscription request model * [AC-1418] Add new update SM subscription request model * [AC-1418] Add new service method to update SM subscription * [AC-1418] Use new model and service method * [AC-1418] Cleanup SM subscription UI flags * [AC-1418] Move SM adjust subscription component into SM billing module * [AC-1418] Update SM seat count minimum to 1 * [AC-1418] Add missing currency codes * [AC-1418] Simplify monthly price calculation * [AC-1418] Increase PM adjust subscription form input width * [AC-1418] Add check for null subscription --------- Co-authored-by: Thomas Rittson <31796059+eliykat@users.noreply.github.com>
77 lines
3.2 KiB
TypeScript
77 lines
3.2 KiB
TypeScript
import { PlanType } from "../../../billing/enums";
|
|
import { PlanResponse } from "../../../billing/models/response/plan.response";
|
|
import { BaseResponse } from "../../../models/response/base.response";
|
|
|
|
export class OrganizationResponse extends BaseResponse {
|
|
id: string;
|
|
name: string;
|
|
businessName: string;
|
|
businessAddress1: string;
|
|
businessAddress2: string;
|
|
businessAddress3: string;
|
|
businessCountry: string;
|
|
businessTaxNumber: string;
|
|
billingEmail: string;
|
|
plan: PlanResponse;
|
|
secretsManagerPlan: PlanResponse;
|
|
planType: PlanType;
|
|
seats: number;
|
|
maxAutoscaleSeats: number;
|
|
maxCollections: number;
|
|
maxStorageGb: number;
|
|
useGroups: boolean;
|
|
useDirectory: boolean;
|
|
useEvents: boolean;
|
|
useTotp: boolean;
|
|
use2fa: boolean;
|
|
useApi: boolean;
|
|
useResetPassword: boolean;
|
|
useSecretsManager: boolean;
|
|
hasPublicAndPrivateKeys: boolean;
|
|
usePasswordManager: boolean;
|
|
smSeats?: number;
|
|
smServiceAccounts?: number;
|
|
maxAutoscaleSmSeats?: number;
|
|
maxAutoscaleSmServiceAccounts?: number;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.name = this.getResponseProperty("Name");
|
|
this.businessName = this.getResponseProperty("BusinessName");
|
|
this.businessAddress1 = this.getResponseProperty("BusinessAddress1");
|
|
this.businessAddress2 = this.getResponseProperty("BusinessAddress2");
|
|
this.businessAddress3 = this.getResponseProperty("BusinessAddress3");
|
|
this.businessCountry = this.getResponseProperty("BusinessCountry");
|
|
this.businessTaxNumber = this.getResponseProperty("BusinessTaxNumber");
|
|
this.billingEmail = this.getResponseProperty("BillingEmail");
|
|
|
|
const plan = this.getResponseProperty("Plan");
|
|
this.plan = plan == null ? null : new PlanResponse(plan);
|
|
|
|
const secretsManagerPlan = this.getResponseProperty("SecretsManagerPlan");
|
|
this.secretsManagerPlan =
|
|
secretsManagerPlan == null ? null : new PlanResponse(secretsManagerPlan);
|
|
|
|
this.planType = this.getResponseProperty("PlanType");
|
|
this.seats = this.getResponseProperty("Seats");
|
|
this.maxAutoscaleSeats = this.getResponseProperty("MaxAutoscaleSeats");
|
|
this.maxCollections = this.getResponseProperty("MaxCollections");
|
|
this.maxStorageGb = this.getResponseProperty("MaxStorageGb");
|
|
this.useGroups = this.getResponseProperty("UseGroups");
|
|
this.useDirectory = this.getResponseProperty("UseDirectory");
|
|
this.useEvents = this.getResponseProperty("UseEvents");
|
|
this.useTotp = this.getResponseProperty("UseTotp");
|
|
this.use2fa = this.getResponseProperty("Use2fa");
|
|
this.useApi = this.getResponseProperty("UseApi");
|
|
this.useResetPassword = this.getResponseProperty("UseResetPassword");
|
|
this.useSecretsManager = this.getResponseProperty("UseSecretsManager");
|
|
this.hasPublicAndPrivateKeys = this.getResponseProperty("HasPublicAndPrivateKeys");
|
|
this.usePasswordManager = this.getResponseProperty("UsePasswordManager");
|
|
this.smSeats = this.getResponseProperty("SmSeats");
|
|
this.smServiceAccounts = this.getResponseProperty("SmServiceAccounts");
|
|
this.maxAutoscaleSmSeats = this.getResponseProperty("MaxAutoscaleSmSeats");
|
|
this.maxAutoscaleSmServiceAccounts = this.getResponseProperty("MaxAutoscaleSmServiceAccounts");
|
|
}
|
|
}
|