@hmcts/ccpay-web-component 6.5.14 → 6.5.15-beta13

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
@@ -560,6 +560,7 @@ declare class RefundsService {
560
560
  postIssueRefund(body: IssueRefundRequest): Observable<any>;
561
561
  putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
562
562
  patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
563
+ postResetRefund(refund_reference: string): Observable<any>;
563
564
  addHeaders(options: any): any;
564
565
  static ɵfac: i0.ɵɵFactoryDeclaration<RefundsService, never>;
565
566
  static ɵprov: i0.ɵɵInjectableDeclaration<RefundsService>;
@@ -2171,6 +2172,7 @@ declare class RefundStatusComponent implements OnInit {
2171
2172
  notificationPreview: boolean;
2172
2173
  notificationSentView: boolean;
2173
2174
  allowedRolesToAccessRefund: string[];
2175
+ isRefundStatusResetBtnDisabled: boolean;
2174
2176
  constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibAlias$2, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
2175
2177
  ngOnInit(): void;
2176
2178
  getRefundsStatusHistoryList(): void;
@@ -2203,6 +2205,12 @@ declare class RefundStatusComponent implements OnInit {
2203
2205
  hideNotificationPreview(): void;
2204
2206
  showNotificationSentView(index: number): void;
2205
2207
  hideNotificationSentView(): void;
2208
+ displayResetRefundConfirmation(): void;
2209
+ redirectToRefundListPage(): void;
2210
+ postResetRefund(): void;
2211
+ isCurrentRefundVisibleForReset(): boolean;
2212
+ hasValidRefundRoles(): boolean;
2213
+ isCurrentRefundInProcess(): boolean;
2206
2214
  static ɵfac: i0.ɵɵFactoryDeclaration<RefundStatusComponent, never>;
2207
2215
  static ɵcmp: i0.ɵɵComponentDeclaration<RefundStatusComponent, "ccpay-refund-status", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; }, {}, never, never, true, never>;
2208
2216
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "6.5.14",
3
+ "version": "6.5.15-beta13",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -9,7 +9,10 @@
9
9
  "@angular/core": "~20.3.1"
10
10
  },
11
11
  "license": "MIT",
12
- "repository": "https://github.com/hmcts/ccpay-web-component.git",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/hmcts/ccpay-web-component.git"
15
+ },
13
16
  "description": "Angular web component for displaying payments returned from ccpay api",
14
17
  "author": "Mateusz Swirski <mateusz.swirski@hmcts.net>",
15
18
  "contributors": [
@@ -41,4 +44,4 @@
41
44
  "dependencies": {
42
45
  "tslib": "^2.3.0"
43
46
  }
44
- }
47
+ }