2023-10-04 05:36:45 +10:00
|
|
|
import { NgModule } from "@angular/core";
|
|
|
|
|
|
2024-02-23 18:22:45 +01:00
|
|
|
import { HeaderModule } from "../../layouts/header/header.module";
|
2023-10-04 05:36:45 +10:00
|
|
|
import { SharedModule } from "../../shared";
|
|
|
|
|
|
2024-05-21 18:33:19 +05:30
|
|
|
import { AddCreditDialogComponent } from "./add-credit-dialog.component";
|
2024-04-17 01:08:19 +05:30
|
|
|
import { AdjustPaymentDialogComponent } from "./adjust-payment-dialog.component";
|
2023-10-04 05:36:45 +10:00
|
|
|
import { AdjustStorageComponent } from "./adjust-storage.component";
|
|
|
|
|
import { BillingHistoryComponent } from "./billing-history.component";
|
2024-02-09 12:08:46 -05:00
|
|
|
import { OffboardingSurveyComponent } from "./offboarding-survey.component";
|
2023-10-04 05:36:45 +10:00
|
|
|
import { PaymentMethodComponent } from "./payment-method.component";
|
|
|
|
|
import { PaymentComponent } from "./payment.component";
|
|
|
|
|
import { SecretsManagerSubscribeComponent } from "./sm-subscribe.component";
|
|
|
|
|
import { TaxInfoComponent } from "./tax-info.component";
|
2024-05-28 21:23:54 +05:30
|
|
|
import { UpdateLicenseDialogComponent } from "./update-license-dialog.component";
|
2023-10-04 05:36:45 +10:00
|
|
|
import { UpdateLicenseComponent } from "./update-license.component";
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
2024-02-23 18:22:45 +01:00
|
|
|
imports: [SharedModule, PaymentComponent, TaxInfoComponent, HeaderModule],
|
2023-10-04 05:36:45 +10:00
|
|
|
declarations: [
|
2024-05-21 18:33:19 +05:30
|
|
|
AddCreditDialogComponent,
|
2024-04-17 01:08:19 +05:30
|
|
|
AdjustPaymentDialogComponent,
|
2023-10-04 05:36:45 +10:00
|
|
|
AdjustStorageComponent,
|
|
|
|
|
BillingHistoryComponent,
|
|
|
|
|
PaymentMethodComponent,
|
|
|
|
|
SecretsManagerSubscribeComponent,
|
|
|
|
|
UpdateLicenseComponent,
|
2024-05-28 21:23:54 +05:30
|
|
|
UpdateLicenseDialogComponent,
|
2024-02-09 12:08:46 -05:00
|
|
|
OffboardingSurveyComponent,
|
2023-10-04 05:36:45 +10:00
|
|
|
],
|
|
|
|
|
exports: [
|
|
|
|
|
SharedModule,
|
|
|
|
|
PaymentComponent,
|
|
|
|
|
TaxInfoComponent,
|
|
|
|
|
AdjustStorageComponent,
|
|
|
|
|
BillingHistoryComponent,
|
|
|
|
|
SecretsManagerSubscribeComponent,
|
|
|
|
|
UpdateLicenseComponent,
|
2024-05-28 21:23:54 +05:30
|
|
|
UpdateLicenseDialogComponent,
|
2024-02-09 12:08:46 -05:00
|
|
|
OffboardingSurveyComponent,
|
2023-10-04 05:36:45 +10:00
|
|
|
],
|
|
|
|
|
})
|
|
|
|
|
export class BillingSharedModule {}
|