@hmcts/ccpay-web-component 5.0.7-beta27 → 5.0.7-beta28

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.
@@ -3067,7 +3067,9 @@
3067
3067
  * @return {?}
3068
3068
  */
3069
3069
  function (body) {
3070
- return this.https.post(this.paymentLibService.NOTIFICATION_API_ROOT + "/doc-preview", body).pipe(operators.catchError(this.errorHandlerService.handleError));
3070
+ return this.https.post(this.paymentLibService.NOTIFICATION_API_ROOT + "/doc-preview", body, {
3071
+ withCredentials: true
3072
+ }).pipe(operators.catchError(this.errorHandlerService.handleError));
3071
3073
  };
3072
3074
  NotificationService.decorators = [
3073
3075
  { type: i0.Injectable, args: [{
@@ -11370,7 +11372,9 @@
11370
11372
  console.log('Notification app started');
11371
11373
  /** @type {?} */
11372
11374
  var notficationPreviewRequestBody = new NotificationPreviewRequest(this.payment, this.contactDetails, this.refundReason, this.refundAmount, this.refundReference, this.paymentReference);
11373
- console.log("1." + notficationPreviewRequestBody);
11375
+ for (var notifPrev in notficationPreviewRequestBody) {
11376
+ console.log(notifPrev);
11377
+ }
11374
11378
  this.notificationService.getNotificationPreview(notficationPreviewRequestBody).subscribe(( /**
11375
11379
  * @param {?} res
11376
11380
  * @return {?}