@hmcts/ccpay-web-component 6.5.21 → 6.5.22-beta01
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
|
@@ -655,7 +655,7 @@ declare class PaymentToPayhubRequest {
|
|
|
655
655
|
constructor(ccd_case_number: string, amount: number, caseType: string, telephony_system: string);
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
declare class
|
|
658
|
+
declare class TelephonyToPayhubRequest {
|
|
659
659
|
currency: string;
|
|
660
660
|
case_type: string;
|
|
661
661
|
ccd_case_number: string;
|
|
@@ -779,7 +779,7 @@ declare class PaymentViewService {
|
|
|
779
779
|
postPaymentGroupWithRemissions(paymentGroupReference: string, feeId: number, body: AddRemissionRequest): Observable$1<any>;
|
|
780
780
|
deleteFeeFromPaymentGroup(feeId: number): Observable$1<any>;
|
|
781
781
|
postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable$1<any>;
|
|
782
|
-
|
|
782
|
+
postTelephonyPaymentToPayHub(body: TelephonyToPayhubRequest, paymentGroupRef: string): Observable$1<any>;
|
|
783
783
|
downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable$1<any>;
|
|
784
784
|
downloadFailureReport(startDate: string, endDate: string): Observable$1<any>;
|
|
785
785
|
downloadTelephonyPaymentsReport(startDate: string, endDate: string): Observable$1<any>;
|
|
@@ -1230,7 +1230,6 @@ declare class FeeSummaryComponent implements OnInit {
|
|
|
1230
1230
|
totalFee: number;
|
|
1231
1231
|
payhubHtml: SafeHtml;
|
|
1232
1232
|
service: string;
|
|
1233
|
-
platForm: string;
|
|
1234
1233
|
upPaymentErrorMessage: string;
|
|
1235
1234
|
selectedOption: string;
|
|
1236
1235
|
isBackButtonEnable: boolean;
|
|
@@ -1257,10 +1256,8 @@ declare class FeeSummaryComponent implements OnInit {
|
|
|
1257
1256
|
takePayment(): void;
|
|
1258
1257
|
goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean): void;
|
|
1259
1258
|
isCheckAmountdueExist(amountDue: any): amountDue is undefined;
|
|
1260
|
-
getAntennaValue(): string;
|
|
1261
1259
|
getKervValue(): string;
|
|
1262
1260
|
getPaymentMethod(): string;
|
|
1263
|
-
setPaymentValue(value: string): void;
|
|
1264
1261
|
isTakePaymentButtonDisabled(): boolean;
|
|
1265
1262
|
isTelephonySelectionEnable(): boolean;
|
|
1266
1263
|
isTelephonySelectionEnableNull(): void;
|
|
@@ -2347,5 +2344,5 @@ declare class RefundsRequest {
|
|
|
2347
2344
|
constructor(payment_reference: string, refund_reason: string);
|
|
2348
2345
|
}
|
|
2349
2346
|
|
|
2350
|
-
export { AddRemissionRequest, AddRetroRemissionRequest, AllocatePaymentRequest, IAllocationPaymentsRequest, IPaymentStatus, IPutNotificationRequest, IResubmitRefundRequest, IserviceRequestCardPayment, IserviceRequestPbaPayment, IssueRefundRequest, NotificationPreviewRequest,
|
|
2347
|
+
export { AddRemissionRequest, AddRetroRemissionRequest, AllocatePaymentRequest, IAllocationPaymentsRequest, IPaymentStatus, IPutNotificationRequest, IResubmitRefundRequest, IserviceRequestCardPayment, IserviceRequestPbaPayment, IssueRefundRequest, NotificationPreviewRequest, PaymentLibComponent, PaymentLibModule, PaymentLibService, PaymentToPayhubRequest, PostIssueRefundRetroRemission, PostRefundRetroRemission, RefundsRequest, TelephonyToPayhubRequest, UnidentifiedPaymentsRequest, UnsolicitedPaymentsRequest };
|
|
2351
2348
|
export type { IBSPayments, ICardDetails, ICasePayments, IFee, INotificationPreview, IOrderReferenceFee, IPatchRefundAction, IPayment, IPaymentDetails, IPaymentFailure, IPaymentGroup, IPaymentHistory, IPaymentView, IPayments, IRefundAction, IRefundContactDetails, IRefundFee, IRefundList, IRefundNotification, IRefundReasons, IRefundRejectReason, IRefundStatus, IRefundStatusHistory, IRefundsNotifications, IRemission, IStatusHistories, IStatusHistory, IUnprocessedRecords };
|