@hmcts/ccpay-web-component 6.5.17-beta → 6.5.17
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.
package/index.d.ts
CHANGED
|
@@ -561,6 +561,7 @@ declare class RefundsService {
|
|
|
561
561
|
putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
|
|
562
562
|
patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
|
|
563
563
|
postResetRefund(refund_reference: string): Observable<any>;
|
|
564
|
+
downloadRefundsReport(startDate: string, endDate: string): Observable<any>;
|
|
564
565
|
addHeaders(options: any): any;
|
|
565
566
|
static ɵfac: i0.ɵɵFactoryDeclaration<RefundsService, never>;
|
|
566
567
|
static ɵprov: i0.ɵɵInjectableDeclaration<RefundsService>;
|
|
@@ -1293,6 +1294,7 @@ declare class XlFileService {
|
|
|
1293
1294
|
private setPaymentFailureReportHeaders;
|
|
1294
1295
|
private setShortFallReportHeaders;
|
|
1295
1296
|
private setTelphonyPaymentsReportHeaders;
|
|
1297
|
+
private setRefundsReportHeaders;
|
|
1296
1298
|
private sanitizeString;
|
|
1297
1299
|
static ɵfac: i0.ɵɵFactoryDeclaration<XlFileService, never>;
|
|
1298
1300
|
static ɵprov: i0.ɵɵInjectableDeclaration<XlFileService>;
|
|
@@ -1306,6 +1308,7 @@ declare class ReportsComponent implements OnInit {
|
|
|
1306
1308
|
private bulkScaningPaymentService;
|
|
1307
1309
|
private paymentLibComponent;
|
|
1308
1310
|
private paymentViewService;
|
|
1311
|
+
private refundsService;
|
|
1309
1312
|
ISPAYMENTSTATUSENABLED: boolean;
|
|
1310
1313
|
fmt: string;
|
|
1311
1314
|
loc: string;
|
|
@@ -1320,7 +1323,7 @@ declare class ReportsComponent implements OnInit {
|
|
|
1320
1323
|
isDateRangeBetnWeek: Boolean;
|
|
1321
1324
|
errorMessage: any;
|
|
1322
1325
|
paymentGroups: IPaymentGroup[];
|
|
1323
|
-
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibAlias$9, paymentViewService: PaymentViewService);
|
|
1326
|
+
constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentLibComponent: PaymentLibAlias$9, paymentViewService: PaymentViewService, refundsService: RefundsService);
|
|
1324
1327
|
ngOnInit(): void;
|
|
1325
1328
|
getToday(): string;
|
|
1326
1329
|
getSelectedFromDate(): void;
|