1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 19:23:52 +00:00

Added create-client-organization.component (#8767)

This commit is contained in:
Alex Morask
2024-04-18 08:36:38 -04:00
committed by GitHub
parent cbaf3462c1
commit 1e0ad09757
17 changed files with 409 additions and 26 deletions

View File

@@ -0,0 +1,12 @@
import { OrganizationKeysRequest } from "../../../admin-console/models/request/organization-keys.request";
import { PlanType } from "../../../billing/enums";
export class CreateClientOrganizationRequest {
name: string;
ownerEmail: string;
planType: PlanType;
seats: number;
key: string;
keyPair: OrganizationKeysRequest;
collectionName: string;
}

View File

@@ -1,3 +0,0 @@
export class ProviderSubscriptionUpdateRequest {
assignedSeats: number;
}

View File

@@ -0,0 +1,3 @@
export class UpdateClientOrganizationRequest {
assignedSeats: number;
}