sales-frontend-oz 0.0.82 → 0.0.83

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/dist/index.cjs CHANGED
@@ -617,6 +617,11 @@ function categorizeByPageRange(data, pageCounts) {
617
617
  });
618
618
  return result;
619
619
  }
620
+ function triggerOZReportCreatedEvent() {
621
+ window.dispatchEvent(
622
+ new CustomEvent("OZReportCreated" /* OZReportCreated */)
623
+ );
624
+ }
620
625
  function triggerSignatureInProgressEvent() {
621
626
  window.dispatchEvent(
622
627
  new CustomEvent(
@@ -675,6 +680,7 @@ exports.setCheckEform = setCheckEform;
675
680
  exports.triggerClickOnAllDocuments = triggerClickOnAllDocuments;
676
681
  exports.triggerCropImageOnAllDocuments = triggerCropImageOnAllDocuments;
677
682
  exports.triggerDraftDataByIndexList = triggerDraftDataByIndexList;
683
+ exports.triggerOZReportCreatedEvent = triggerOZReportCreatedEvent;
678
684
  exports.triggerSignatureInProgressEvent = triggerSignatureInProgressEvent;
679
685
  exports.useDocumentInfo = useDocumentInfo;
680
686
  exports.useOzEventListener = useOzEventListener;