@sachin9822/reports-lib 0.0.224 → 0.0.225

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/esm2020/lib/components/acc-gl-details-enquiry-report/acc-gl-details-enquiry-report.component.mjs +1 -1
  2. package/esm2020/lib/components/accounting-report/accounting-report.component.mjs +1 -1
  3. package/esm2020/lib/components/branch-activity-receive-report/branch-activity-receive-report.component.mjs +1 -1
  4. package/esm2020/lib/components/branch-activity-send-report/branch-activity-send-report.component.mjs +1 -1
  5. package/esm2020/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.mjs +700 -0
  6. package/esm2020/lib/components/cancellation-transaction-report/cancellation-transaction-report.component.mjs +1 -1
  7. package/esm2020/lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component.mjs +1 -1
  8. package/esm2020/lib/components/funding-report/funding-report.component.mjs +1 -1
  9. package/esm2020/lib/components/revenue-per-transaction-report/revenue-per-transaction-report.component.mjs +1 -1
  10. package/esm2020/lib/components/statement-of-accounts-report/statement-of-accounts-report.component.mjs +1 -1
  11. package/esm2020/lib/components/transaction-enquiry-report/transaction-enquiry-report.component.mjs +1 -1
  12. package/esm2020/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.mjs +311 -0
  13. package/esm2020/lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component.mjs +1 -1
  14. package/esm2020/lib/models/branch-activity-report/branch-activity-send-report.mjs +1 -1
  15. package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.mjs +6 -0
  16. package/esm2020/lib/models/transaction-monitoring-report/transaction-monitoring-report.mjs +5 -0
  17. package/esm2020/lib/reports-lib.module.mjs +15 -5
  18. package/esm2020/lib/services/report.service.mjs +59 -1
  19. package/esm2020/lib/shared/export-generic.service.mjs +10 -1
  20. package/esm2020/lib/shared/search-filter/search-filter.component.mjs +314 -3
  21. package/esm2020/public-api.mjs +5 -1
  22. package/fesm2015/sachin9822-reports-lib.mjs +1549 -188
  23. package/fesm2015/sachin9822-reports-lib.mjs.map +1 -1
  24. package/fesm2020/sachin9822-reports-lib.mjs +1552 -189
  25. package/fesm2020/sachin9822-reports-lib.mjs.map +1 -1
  26. package/lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component.d.ts +78 -0
  27. package/lib/components/transaction-monitoring-report/transaction-monitoring-report.component.d.ts +68 -0
  28. package/lib/models/branch-activity-report/branch-activity-send-report.d.ts +4 -0
  29. package/lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model.d.ts +13 -0
  30. package/lib/models/transaction-monitoring-report/transaction-monitoring-report.d.ts +23 -0
  31. package/lib/reports-lib.module.d.ts +12 -10
  32. package/lib/services/report.service.d.ts +10 -0
  33. package/lib/shared/search-filter/search-filter.component.d.ts +6 -1
  34. package/package.json +1 -1
  35. package/public-api.d.ts +4 -0
@@ -0,0 +1,78 @@
1
+ import { NgZone, OnInit } from '@angular/core';
2
+ import { ColDef, GridApi, GridReadyEvent } from 'ag-grid-community';
3
+ import { BranchActivityReport } from '../../models/branch-activity-report/branch-activity-send-report';
4
+ import { ComponentLoadingStates } from '../../models/component-loading-states';
5
+ import { ExportOptions, GenericExportService } from '../../shared/export-generic.service';
6
+ import { ReportService } from '../../services/report.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class BranchActivitySendSummaryReportComponent implements OnInit {
9
+ private reportService;
10
+ private ngZone;
11
+ dataMap: Record<string, BranchActivityReport[]>;
12
+ filteredData: Record<string, BranchActivityReport[]>;
13
+ proxyData: Record<string, BranchActivityReport[]>;
14
+ showReport: boolean;
15
+ paginationArray: any[];
16
+ selectedExportOption: string;
17
+ gridApis: GridApi[];
18
+ gridColumnApi: any;
19
+ user: string;
20
+ reportDate: string;
21
+ fromDate: string;
22
+ toDate: string;
23
+ searchText: string;
24
+ buffer: any;
25
+ sysUserId: string;
26
+ private logoBase64;
27
+ ComponentLoadingState: typeof ComponentLoadingStates;
28
+ loadingState: ComponentLoadingStates;
29
+ ReportName: string;
30
+ leftData: Record<string, string>;
31
+ metaDataTwo: Record<string, string>;
32
+ exportService: GenericExportService;
33
+ searchCriteria: [string, string][];
34
+ showMessage: boolean;
35
+ noDataFound: boolean;
36
+ isFormValid: boolean;
37
+ clearSearch: boolean;
38
+ isTotalSummary: boolean;
39
+ columnDefs: ColDef<BranchActivityReport>[];
40
+ defaultColDef: {
41
+ sortable: boolean;
42
+ filter: boolean;
43
+ resizable: boolean;
44
+ minwidth: number;
45
+ wrapHeaderText: boolean;
46
+ autoHeaderHeight: boolean;
47
+ suppressSizeToFit: boolean;
48
+ wrapText: boolean;
49
+ };
50
+ rowClassRules: {
51
+ 'total-row': (params: any) => any;
52
+ };
53
+ rowData: BranchActivityReport[];
54
+ constructor(reportService: ReportService, ngZone: NgZone);
55
+ reportTheme: import("@ag-grid-community/theming").Theme<import("@ag-grid-community/theming/dist/types/src/styles/core/core-css").CoreParams & import("@ag-grid-community/theming").CheckboxStyleParams & import("@ag-grid-community/theming").TabStyleParams & import("@ag-grid-community/theming").InputStyleParams>;
56
+ ngOnInit(): void;
57
+ filter(text: string): void;
58
+ onGridReady(params: GridReadyEvent, id: number): void;
59
+ handleExport(option: string): void;
60
+ exportToExcel({ title, metadata, searchCriteria, columns, data, options }: {
61
+ title: string;
62
+ metadata: [string, string][];
63
+ searchCriteria: [string, string][];
64
+ columns: any[];
65
+ data: any[] | Record<string, any[]>;
66
+ options?: ExportOptions;
67
+ }): Promise<void>;
68
+ private prepareTableRows;
69
+ private formatDateByFormat;
70
+ dateValueFormatter(format: string): (params: any) => string;
71
+ getKeys(obj: Record<string, unknown>): string[];
72
+ hasAnyGroups(): boolean;
73
+ formatAmount(params: any): string;
74
+ handleSearch(criteria: any): void;
75
+ handleFormValid(isValid: boolean): void;
76
+ static ɵfac: i0.ɵɵFactoryDeclaration<BranchActivitySendSummaryReportComponent, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<BranchActivitySendSummaryReportComponent, "lib-branch-activity-send-summary-report", never, {}, {}, never, never, false>;
78
+ }
@@ -0,0 +1,68 @@
1
+ import { NgZone, OnInit } from "@angular/core";
2
+ import { TransactionMonitoringReport } from "../../models/transaction-monitoring-report/transaction-monitoring-report";
3
+ import { ColDef, GridApi, GridReadyEvent } from "ag-grid-community";
4
+ import { ComponentLoadingStates } from "../../models/component-loading-states";
5
+ import { GenericExportService } from "../../shared/export-generic.service";
6
+ import { ReportService } from "../../services/report.service";
7
+ import { ActivatedRoute } from '@angular/router';
8
+ import * as i0 from "@angular/core";
9
+ export declare class TransactionMonitoringReportComponent implements OnInit {
10
+ private reportService;
11
+ private ngZone;
12
+ private route;
13
+ dataMap: Record<string, TransactionMonitoringReport[]>;
14
+ filteredData: Record<string, TransactionMonitoringReport[]>;
15
+ proxyData: Record<string, TransactionMonitoringReport[]>;
16
+ showReport: boolean;
17
+ paginationArray: any[];
18
+ selectedExportOption: string;
19
+ gridApis: GridApi[];
20
+ gridColumnApi: any;
21
+ user: string;
22
+ reportDate: string;
23
+ fromDate: string;
24
+ toDate: string;
25
+ searchText: string;
26
+ buffer: any;
27
+ sysUserId: string;
28
+ private logoBase64;
29
+ ComponentLoadingState: typeof ComponentLoadingStates;
30
+ loadingState: ComponentLoadingStates;
31
+ ReportName: string;
32
+ leftData: Record<string, string>;
33
+ metaDataTwo: Record<string, string>;
34
+ exportService: GenericExportService;
35
+ searchCriteria: [string, string][];
36
+ initialFilters: any;
37
+ showMessage: boolean;
38
+ noDataFound: boolean;
39
+ isFormValid: boolean;
40
+ columnDefs: ColDef<TransactionMonitoringReport>[];
41
+ defaultColDef: {
42
+ sortable: boolean;
43
+ filter: boolean;
44
+ resizable: boolean;
45
+ minwidth: number;
46
+ wrapHeaderText: boolean;
47
+ autoHeaderHeight: boolean;
48
+ suppressSizeToFit: boolean;
49
+ wrapText: boolean;
50
+ };
51
+ rowData: TransactionMonitoringReport[];
52
+ constructor(reportService: ReportService, ngZone: NgZone, route: ActivatedRoute);
53
+ reportTheme: import("@ag-grid-community/theming").Theme<import("@ag-grid-community/theming/dist/types/src/styles/core/core-css").CoreParams & import("@ag-grid-community/theming").CheckboxStyleParams & import("@ag-grid-community/theming").TabStyleParams & import("@ag-grid-community/theming").InputStyleParams>;
54
+ ngOnInit(): void;
55
+ filter(text: string): void;
56
+ onGridReady(params: GridReadyEvent, id: number): void;
57
+ handleExport(option: string): void;
58
+ dateValueFormatter(format: string): (params: any) => string;
59
+ getKeys(obj: Record<string, unknown>): string[];
60
+ hasAnyGroups(): boolean;
61
+ formatAmount(params: any): string;
62
+ statusOrderMap: any;
63
+ statusOrderComparator: (a: any, b: any) => number;
64
+ handleSearch(criteria: any): void;
65
+ handleFormValid(isValid: boolean): void;
66
+ static ɵfac: i0.ɵɵFactoryDeclaration<TransactionMonitoringReportComponent, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<TransactionMonitoringReportComponent, "lib-transaction-monitoring-report", never, {}, {}, never, never, false>;
68
+ }
@@ -17,4 +17,8 @@ export declare class BranchActivityReport {
17
17
  Tax?: number;
18
18
  TotalPayinAmount?: number;
19
19
  Status: string;
20
+ TransactionCount: number;
21
+ payinCCcode: string;
22
+ IsTotalRow: boolean;
23
+ isTotalRow: boolean;
20
24
  }
@@ -0,0 +1,13 @@
1
+ export declare class TransactionMonitoringRequestDomainModel {
2
+ startDate: string;
3
+ endDate: string;
4
+ sendCountryCode: string;
5
+ recvCountryCode: string;
6
+ businessPartnerCode: string;
7
+ transactionStatus: string;
8
+ payoutCurrency: string;
9
+ transactionType: string;
10
+ branchCode: string;
11
+ companyCode: string;
12
+ constructor(values?: Object);
13
+ }
@@ -0,0 +1,23 @@
1
+ export declare class TransactionMonitoringReport {
2
+ SendAgentBranchNameAndCode: string;
3
+ BusinessDateTime: string;
4
+ TransactionDateTime: string;
5
+ TransactionNumber: string;
6
+ Product: string;
7
+ SendAgentBranchCode: string;
8
+ SendPrincipalAgentCode: string;
9
+ ReceiveAgentCode: string;
10
+ PayoutCCcode: string;
11
+ PayoutAmount?: number;
12
+ PayinCCcode: string;
13
+ PayinAmount?: number;
14
+ TransactionCommissionAmount?: number;
15
+ Tax?: number;
16
+ TotalPayinAmount?: number;
17
+ Status: string;
18
+ TxnStatusDateAndTime: string;
19
+ SendAgentCode: string;
20
+ SendAgentBranchName: string;
21
+ SenderName: string;
22
+ ReceiverName: string;
23
+ }
@@ -14,18 +14,20 @@ import * as i11 from "./components/accounting-report/accounting-report.component
14
14
  import * as i12 from "./components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component";
15
15
  import * as i13 from "./components/funding-report/funding-report.component";
16
16
  import * as i14 from "./components/trial-balance-accounts-report/trial-balance-accounts-report.component";
17
- import * as i15 from "ag-grid-angular";
18
- import * as i16 from "./reports-lib-routing.module";
19
- import * as i17 from "@angular/common";
20
- import * as i18 from "@angular/router";
21
- import * as i19 from "@ng-bootstrap/ng-bootstrap";
22
- import * as i20 from "./shared/shared.module";
23
- import * as i21 from "@angular/platform-browser";
24
- import * as i22 from "@angular/forms";
25
- import * as i23 from "@ng-select/ng-select";
17
+ import * as i15 from "./components/branch-activity-send-summary-report/branch-activity-send-summary-report.component";
18
+ import * as i16 from "./components/transaction-monitoring-report/transaction-monitoring-report.component";
19
+ import * as i17 from "ag-grid-angular";
20
+ import * as i18 from "./reports-lib-routing.module";
21
+ import * as i19 from "@angular/common";
22
+ import * as i20 from "@angular/router";
23
+ import * as i21 from "@ng-bootstrap/ng-bootstrap";
24
+ import * as i22 from "./shared/shared.module";
25
+ import * as i23 from "@angular/platform-browser";
26
+ import * as i24 from "@angular/forms";
27
+ import * as i25 from "@ng-select/ng-select";
26
28
  export declare function initializeApp(config: ConfigService): () => Promise<any>;
27
29
  export declare class ReportsLibModule {
28
30
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportsLibModule, never>;
29
- static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibModule, [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent, typeof i3.BranchActivitySendReportComponent, typeof i4.LoaderComponent, typeof i5.TransactionEnquiryComponent, typeof i4.LoaderComponent, typeof i6.SearchFilterComponent, typeof i7.BranchActivityReceiveReportComponent, typeof i8.CancellationTransactionReportComponent, typeof i9.RevenuePerTransactionReportComponent, typeof i10.StatementOfAccountsReportComponent, typeof i11.AccountingReportComponent, typeof i12.CreditLimitStatusEnquiryReportComponent, typeof i13.FundingReportComponent, typeof i14.TrialBalanceAccountsReportComponent], [typeof i15.AgGridModule, typeof i16.ReportsLibRoutingModule, typeof i17.CommonModule, typeof i18.RouterModule, typeof i19.NgbDatepickerModule, typeof i20.SharedModule, typeof i21.BrowserModule, typeof i15.AgGridModule, typeof i16.ReportsLibRoutingModule, typeof i22.FormsModule, typeof i15.AgGridModule, typeof i19.NgbModule, typeof i22.ReactiveFormsModule, typeof i23.NgSelectModule, typeof i22.ReactiveFormsModule, typeof i19.NgbModule, typeof i23.NgSelectModule], [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent, typeof i3.BranchActivitySendReportComponent, typeof i5.TransactionEnquiryComponent, typeof i8.CancellationTransactionReportComponent, typeof i10.StatementOfAccountsReportComponent, typeof i11.AccountingReportComponent, typeof i13.FundingReportComponent, typeof i12.CreditLimitStatusEnquiryReportComponent, typeof i14.TrialBalanceAccountsReportComponent]>;
31
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ReportsLibModule, [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent, typeof i3.BranchActivitySendReportComponent, typeof i4.LoaderComponent, typeof i5.TransactionEnquiryComponent, typeof i4.LoaderComponent, typeof i6.SearchFilterComponent, typeof i7.BranchActivityReceiveReportComponent, typeof i8.CancellationTransactionReportComponent, typeof i9.RevenuePerTransactionReportComponent, typeof i10.StatementOfAccountsReportComponent, typeof i11.AccountingReportComponent, typeof i12.CreditLimitStatusEnquiryReportComponent, typeof i13.FundingReportComponent, typeof i14.TrialBalanceAccountsReportComponent, typeof i15.BranchActivitySendSummaryReportComponent, typeof i16.TransactionMonitoringReportComponent], [typeof i17.AgGridModule, typeof i18.ReportsLibRoutingModule, typeof i19.CommonModule, typeof i20.RouterModule, typeof i21.NgbDatepickerModule, typeof i22.SharedModule, typeof i23.BrowserModule, typeof i17.AgGridModule, typeof i18.ReportsLibRoutingModule, typeof i24.FormsModule, typeof i17.AgGridModule, typeof i21.NgbModule, typeof i24.ReactiveFormsModule, typeof i25.NgSelectModule, typeof i24.ReactiveFormsModule, typeof i21.NgbModule, typeof i25.NgSelectModule], [typeof i1.ReportsLibComponent, typeof i2.AccGlDetailsEnquiryReportComponent, typeof i3.BranchActivitySendReportComponent, typeof i5.TransactionEnquiryComponent, typeof i8.CancellationTransactionReportComponent, typeof i10.StatementOfAccountsReportComponent, typeof i11.AccountingReportComponent, typeof i13.FundingReportComponent, typeof i12.CreditLimitStatusEnquiryReportComponent, typeof i14.TrialBalanceAccountsReportComponent, typeof i15.BranchActivitySendSummaryReportComponent, typeof i16.TransactionMonitoringReportComponent]>;
30
32
  static ɵinj: i0.ɵɵInjectorDeclaration<ReportsLibModule>;
31
33
  }
@@ -11,6 +11,8 @@ import { RevenuePerTransactionResponseModel } from '../models/revenue-per-transa
11
11
  import { StatementOfAccountRequest, StatementOfAccountResponse } from '../models/statement-of-account-report/statement-of-accounts.model';
12
12
  import { AccountingReportModel } from '../models/accounting-report/accounting-report-model';
13
13
  import { TrialBalanceReport } from '../models/trial-balance-accounts-report/trial-balance-accounts.models';
14
+ import { TransactionMonitoringRequestDomainModel } from '../models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model';
15
+ import { TransactionMonitoringReport } from '../models/transaction-monitoring-report/transaction-monitoring-report';
14
16
  import * as i0 from "@angular/core";
15
17
  export declare class ReportService {
16
18
  private http;
@@ -65,6 +67,14 @@ export declare class ReportService {
65
67
  getTransactionTypesForCreditLimitStatusEnquiryReport(): Observable<any[]>;
66
68
  getCreditLimitStatusEnquiryReport(model: any): Observable<any[]>;
67
69
  getFundingReport(criteria: any): Observable<any>;
70
+ getPayInAgentforSendSummaryReport(): Observable<any[]>;
71
+ getBranchByAgentForSendSummaryReport(code: string): Observable<any[]>;
72
+ getParamsForSendSummaryReport(): Observable<any[]>;
73
+ getBranchActivitySendSummaryReport(data: BranchActivitySendReportRequestDomainModel | any): Observable<Record<string, BranchActivityReport[]>>;
74
+ getParamsForTransactionMonitoringReport(): Observable<any[]>;
75
+ getBranchByAgentForTransactionMonitoringReport(code: string): Observable<any[]>;
76
+ getPayInAgentforTransactionMonitoringReport(): Observable<any[]>;
77
+ getTransactionMonitoringReport(data: TransactionMonitoringRequestDomainModel | any): Observable<Record<string, TransactionMonitoringReport[]>>;
68
78
  static ɵfac: i0.ɵɵFactoryDeclaration<ReportService, never>;
69
79
  static ɵprov: i0.ɵɵInjectableDeclaration<ReportService>;
70
80
  }
@@ -14,6 +14,7 @@ export declare class SearchFilterComponent implements OnInit, OnDestroy {
14
14
  searchClicked: EventEmitter<any>;
15
15
  formValid: EventEmitter<boolean>;
16
16
  searchForm: FormGroup;
17
+ initialFilters: any;
17
18
  formValidationError: boolean;
18
19
  private destroy$;
19
20
  loadingState: ComponentLoadingState;
@@ -33,6 +34,7 @@ export declare class SearchFilterComponent implements OnInit, OnDestroy {
33
34
  currencies: Currency[];
34
35
  products: Product[];
35
36
  transactionStatuses: TransactionStatus[];
37
+ summaryReportTypes: any[];
36
38
  selectedStatuses: string[];
37
39
  showStatusDropdown: boolean;
38
40
  visibleFieldKeys: string[];
@@ -68,6 +70,9 @@ export declare class SearchFilterComponent implements OnInit, OnDestroy {
68
70
  ngOnDestroy(): void;
69
71
  private checkReport;
70
72
  loadInitialData(): void;
73
+ loadInitialDataforBranchActivitySendSummary(): void;
74
+ loadInitialDataforTransactionMonitoring(): void;
75
+ private applyInitialFilters;
71
76
  private initializeForm;
72
77
  loadInitialDataforBranchActivitySend(): void;
73
78
  private loadInitialDatafortxnEnquiry;
@@ -118,5 +123,5 @@ export declare class SearchFilterComponent implements OnInit, OnDestroy {
118
123
  */
119
124
  getSearchCriteriaArray(): [string, string][];
120
125
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFilterComponent, never>;
121
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchFilterComponent, "lib-search-filter", never, { "ReportName": "ReportName"; }, { "searchClicked": "searchClicked"; "formValid": "formValid"; }, never, never, false>;
126
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchFilterComponent, "lib-search-filter", never, { "ReportName": "ReportName"; "initialFilters": "initialFilters"; }, { "searchClicked": "searchClicked"; "formValid": "formValid"; }, never, never, false>;
122
127
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sachin9822/reports-lib",
3
- "version": "0.0.224",
3
+ "version": "0.0.225",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
6
  "@angular/core": "^14.2.0"
package/public-api.d.ts CHANGED
@@ -17,6 +17,8 @@ export * from './lib/components/accounting-report/accounting-report.component';
17
17
  export * from './lib/components/credit-limit-status-enquiry-report/credit-limit-status-enquiry-report.component';
18
18
  export * from './lib/components/funding-report/funding-report.component';
19
19
  export * from './lib/components/trial-balance-accounts-report/trial-balance-accounts-report.component';
20
+ export * from './lib/components/branch-activity-send-summary-report/branch-activity-send-summary-report.component';
21
+ export * from './lib/components/transaction-monitoring-report/transaction-monitoring-report.component';
20
22
  export * from './lib/models/transaction-enquiry-report/transaction-enquiry.model';
21
23
  export * from './lib/models/app-config.model';
22
24
  export * from './lib/models/branch-activity-report/branch-activity-send-report';
@@ -28,3 +30,5 @@ export * from './lib/models/statement-of-account-report/statement-of-accounts.mo
28
30
  export * from './lib/models/credit-limit-status-enquiry-report/credit-limit-status-enquiry.model';
29
31
  export * from './lib/models/statement-of-account-report/statement-of-accounts.model';
30
32
  export * from './lib/models/trial-balance-accounts-report/trial-balance-accounts.models';
33
+ export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report-request-domain-model';
34
+ export * from './lib/models/transaction-monitoring-report/transaction-monitoring-report';