1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-07 02:53:28 +00:00

Organization autoscaling (#487)

* Seat autoscaling api changes

* Update all organization subscription
aspects with one api call

* Remove disable autoscale option

* Remove autoscale request references

* Remove autoscale update
This commit is contained in:
Matt Gibson
2021-09-17 11:20:48 -04:00
committed by GitHub
parent 83548a6753
commit 5cec31f871
5 changed files with 13 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ export class OrganizationCreateRequest {
paymentMethodType: PaymentMethodType;
paymentToken: string;
additionalSeats: number;
maxAutoscaleSeats: number;
additionalStorageGb: number;
premiumAccessAddon: boolean;
collectionName: string;

View File

@@ -0,0 +1,3 @@
export class OrganizationSubscriptionUpdateRequest {
constructor(public seatAdjustment: number, public maxAutoscaleSeats?: number) { }
}