1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 18:53:29 +00:00

[AC-1418] Cleanup BitwardenProductType after merge

Add to barrel file and update applicable imports.
This commit is contained in:
Shane Melton
2023-06-27 15:46:30 -07:00
parent 5f34ba2166
commit b73387cac9
6 changed files with 6 additions and 8 deletions

View File

@@ -2,3 +2,4 @@ export * from "./payment-method-type.enum";
export * from "./plan-sponsorship-type.enum";
export * from "./plan-type.enum";
export * from "./transaction-type.enum";
export * from "./bitwarden-product-type.enum";

View File

@@ -1,4 +1,4 @@
import { BitwardenProductType } from "../../enums/bitwarden-product-type.enum";
import { BitwardenProductType } from "../../enums";
export class OrganizationSubscriptionUpdateRequest {
bitwardenProduct: BitwardenProductType;

View File

@@ -1,7 +1,6 @@
import { ProductType } from "../../../enums";
import { BaseResponse } from "../../../models/response/base.response";
import { PlanType } from "../../enums";
import { BitwardenProductType } from "../../enums/bitwarden-product-type.enum";
import { BitwardenProductType, PlanType } from "../../enums";
export class PlanResponse extends BaseResponse {
type: PlanType;

View File

@@ -1,5 +1,5 @@
import { BaseResponse } from "../../../models/response/base.response";
import { BitwardenProductType } from "../../enums/bitwarden-product-type.enum";
import { BitwardenProductType } from "../../enums";
export class SubscriptionResponse extends BaseResponse {
storageName: string;