sales-frontend-oz 0.0.58 → 0.0.60
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 +18 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -13
- package/dist/index.d.ts +1 -13
- package/dist/index.js +19 -30
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -417,28 +417,24 @@ declare function CreateOzParam({ documentList, extraData, commonArgs, commonExtr
|
|
|
417
417
|
/**
|
|
418
418
|
* 모든 문서에 대해 checkeForm을 Y로 설정하는 명령을 순차적으로 한 번씩 호출합니다.
|
|
419
419
|
*
|
|
420
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
421
420
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
422
421
|
*/
|
|
423
422
|
declare function setCheckEform(reportCount?: number): Promise<void>;
|
|
424
423
|
/**
|
|
425
424
|
* 모든 문서에 대해 INPUT_TRIGGER_CLICK 명령을 순차적으로 한 번씩 호출합니다.
|
|
426
425
|
*
|
|
427
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
428
426
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
429
427
|
*/
|
|
430
428
|
declare function triggerClickOnAllDocuments(reportCount?: number): Promise<void>;
|
|
431
429
|
/**
|
|
432
430
|
* 모든 문서에 대해 서명 부분 이미지 컷팅 명령을 순차적으로 한 번씩 호출합니다.
|
|
433
431
|
*
|
|
434
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
435
432
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
436
433
|
*/
|
|
437
434
|
declare function triggerCropImageOnAllDocuments(reportCount?: number): Promise<void>;
|
|
438
435
|
/**
|
|
439
436
|
* 모든 문서에 대해 전체 페이지 수를 계산하는 명령을 순차적으로 한 번씩 호출합니다.
|
|
440
437
|
*
|
|
441
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
442
438
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
443
439
|
*/
|
|
444
440
|
declare function getTotalPageOnAllDocuments(reportCount?: number): Promise<number[]>;
|
|
@@ -487,8 +483,6 @@ declare function getDraftDataHandler(rawOzRequest: string, documentIndexMap: Rec
|
|
|
487
483
|
* 주어진 문서 인덱스 목록(`indexList`)에 대해
|
|
488
484
|
* 각 문서의 중간저장 데이터를 순차적으로 요청합니다.
|
|
489
485
|
*
|
|
490
|
-
* 각 페이지 검사 사이에 기본 지연(sleep)을 추가하여 처리 속도를 제어합니다.
|
|
491
|
-
*
|
|
492
486
|
* @param indexList - 중간저장 데이터를 요청할 문서의 인덱스 배열
|
|
493
487
|
*/
|
|
494
488
|
declare function triggerDraftDataByIndexList(indexList: number[]): Promise<void>;
|
|
@@ -568,7 +562,6 @@ declare function checkDocumentsValidityByIndex(indexList: number[]): Promise<boo
|
|
|
568
562
|
* 지정된 페이지 범위에 대해 유효성 검사를 수행합니다.
|
|
569
563
|
*
|
|
570
564
|
* 유효성 검사는 1페이지부터 지정된 마지막 페이지까지 진행되며,
|
|
571
|
-
* 각 페이지 검사 사이에 기본 지연(sleep)을 추가하여 처리 속도를 제어합니다.
|
|
572
565
|
* - pageChange 이벤트 내부에서는 현재 페이지 이전까지만 검사
|
|
573
566
|
* - 서명바로가기, 미입력 서명 바로가기, 청약문서 최종 확인하기 버튼을 눌렀을때는 전체 페이지 검사
|
|
574
567
|
*
|
|
@@ -588,11 +581,6 @@ declare const checkValidPageMemo: {
|
|
|
588
581
|
clearCacheByPage(page: number): void;
|
|
589
582
|
};
|
|
590
583
|
|
|
591
|
-
/**
|
|
592
|
-
* 비동기 처리를 일정 시간 지연시키는 함수
|
|
593
|
-
* @param ms - 지연 시간 (밀리초). 기본값은 10ms
|
|
594
|
-
*/
|
|
595
|
-
declare function sleep(ms?: number): Promise<void>;
|
|
596
584
|
/**
|
|
597
585
|
* 문서 데이터에 페이지 범위를 채워주는 함수
|
|
598
586
|
* @param {Array} data - 문서 그룹 데이터
|
|
@@ -614,4 +602,4 @@ declare function getDebouncedValueChangeHandler(docIndex: string, onValueChanged
|
|
|
614
602
|
*/
|
|
615
603
|
declare function clearValueChangeDebounceHandlers(): void;
|
|
616
604
|
|
|
617
|
-
export { AlertDocumentLoadError, AlertTemporaryError, type CategoryEvent, type CommentEvent, CreateOzParam, CreateOzViewer, type ExtraDataType, MovePage, type OZBtnTouchEvent, type OZEFormInputEvent, type OZExportEvent, OZTriggerExternalEvent, type OZViewerChangeEvent, type OZViewerErrorEvent, OZViewerEvent, type OZViewerPageBindEvent, type OZViewerProgressEvent, type OZViewerUserEvent, type PdfEvent, SaveSinglePdf, SaveTotalPdf, type SignatureEvent, type TopEvent, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform,
|
|
605
|
+
export { AlertDocumentLoadError, AlertTemporaryError, type CategoryEvent, type CommentEvent, CreateOzParam, CreateOzViewer, type ExtraDataType, MovePage, type OZBtnTouchEvent, type OZEFormInputEvent, type OZExportEvent, OZTriggerExternalEvent, type OZViewerChangeEvent, type OZViewerErrorEvent, OZViewerEvent, type OZViewerPageBindEvent, type OZViewerProgressEvent, type OZViewerUserEvent, type PdfEvent, SaveSinglePdf, SaveTotalPdf, type SignatureEvent, type TopEvent, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform, triggerClickOnAllDocuments, triggerCropImageOnAllDocuments, triggerDraftDataByIndexList, useDocumentInfo, useOzEventListener, validateAllPages };
|
package/dist/index.d.ts
CHANGED
|
@@ -417,28 +417,24 @@ declare function CreateOzParam({ documentList, extraData, commonArgs, commonExtr
|
|
|
417
417
|
/**
|
|
418
418
|
* 모든 문서에 대해 checkeForm을 Y로 설정하는 명령을 순차적으로 한 번씩 호출합니다.
|
|
419
419
|
*
|
|
420
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
421
420
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
422
421
|
*/
|
|
423
422
|
declare function setCheckEform(reportCount?: number): Promise<void>;
|
|
424
423
|
/**
|
|
425
424
|
* 모든 문서에 대해 INPUT_TRIGGER_CLICK 명령을 순차적으로 한 번씩 호출합니다.
|
|
426
425
|
*
|
|
427
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
428
426
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
429
427
|
*/
|
|
430
428
|
declare function triggerClickOnAllDocuments(reportCount?: number): Promise<void>;
|
|
431
429
|
/**
|
|
432
430
|
* 모든 문서에 대해 서명 부분 이미지 컷팅 명령을 순차적으로 한 번씩 호출합니다.
|
|
433
431
|
*
|
|
434
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
435
432
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
436
433
|
*/
|
|
437
434
|
declare function triggerCropImageOnAllDocuments(reportCount?: number): Promise<void>;
|
|
438
435
|
/**
|
|
439
436
|
* 모든 문서에 대해 전체 페이지 수를 계산하는 명령을 순차적으로 한 번씩 호출합니다.
|
|
440
437
|
*
|
|
441
|
-
* 각 호출 사이에 기본 지연(sleep)을 넣어 처리 속도를 조절합니다.
|
|
442
438
|
* @param reportCount - 리포트 개수 (생략 시 내부에서 자동 계산)
|
|
443
439
|
*/
|
|
444
440
|
declare function getTotalPageOnAllDocuments(reportCount?: number): Promise<number[]>;
|
|
@@ -487,8 +483,6 @@ declare function getDraftDataHandler(rawOzRequest: string, documentIndexMap: Rec
|
|
|
487
483
|
* 주어진 문서 인덱스 목록(`indexList`)에 대해
|
|
488
484
|
* 각 문서의 중간저장 데이터를 순차적으로 요청합니다.
|
|
489
485
|
*
|
|
490
|
-
* 각 페이지 검사 사이에 기본 지연(sleep)을 추가하여 처리 속도를 제어합니다.
|
|
491
|
-
*
|
|
492
486
|
* @param indexList - 중간저장 데이터를 요청할 문서의 인덱스 배열
|
|
493
487
|
*/
|
|
494
488
|
declare function triggerDraftDataByIndexList(indexList: number[]): Promise<void>;
|
|
@@ -568,7 +562,6 @@ declare function checkDocumentsValidityByIndex(indexList: number[]): Promise<boo
|
|
|
568
562
|
* 지정된 페이지 범위에 대해 유효성 검사를 수행합니다.
|
|
569
563
|
*
|
|
570
564
|
* 유효성 검사는 1페이지부터 지정된 마지막 페이지까지 진행되며,
|
|
571
|
-
* 각 페이지 검사 사이에 기본 지연(sleep)을 추가하여 처리 속도를 제어합니다.
|
|
572
565
|
* - pageChange 이벤트 내부에서는 현재 페이지 이전까지만 검사
|
|
573
566
|
* - 서명바로가기, 미입력 서명 바로가기, 청약문서 최종 확인하기 버튼을 눌렀을때는 전체 페이지 검사
|
|
574
567
|
*
|
|
@@ -588,11 +581,6 @@ declare const checkValidPageMemo: {
|
|
|
588
581
|
clearCacheByPage(page: number): void;
|
|
589
582
|
};
|
|
590
583
|
|
|
591
|
-
/**
|
|
592
|
-
* 비동기 처리를 일정 시간 지연시키는 함수
|
|
593
|
-
* @param ms - 지연 시간 (밀리초). 기본값은 10ms
|
|
594
|
-
*/
|
|
595
|
-
declare function sleep(ms?: number): Promise<void>;
|
|
596
584
|
/**
|
|
597
585
|
* 문서 데이터에 페이지 범위를 채워주는 함수
|
|
598
586
|
* @param {Array} data - 문서 그룹 데이터
|
|
@@ -614,4 +602,4 @@ declare function getDebouncedValueChangeHandler(docIndex: string, onValueChanged
|
|
|
614
602
|
*/
|
|
615
603
|
declare function clearValueChangeDebounceHandlers(): void;
|
|
616
604
|
|
|
617
|
-
export { AlertDocumentLoadError, AlertTemporaryError, type CategoryEvent, type CommentEvent, CreateOzParam, CreateOzViewer, type ExtraDataType, MovePage, type OZBtnTouchEvent, type OZEFormInputEvent, type OZExportEvent, OZTriggerExternalEvent, type OZViewerChangeEvent, type OZViewerErrorEvent, OZViewerEvent, type OZViewerPageBindEvent, type OZViewerProgressEvent, type OZViewerUserEvent, type PdfEvent, SaveSinglePdf, SaveTotalPdf, type SignatureEvent, type TopEvent, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform,
|
|
605
|
+
export { AlertDocumentLoadError, AlertTemporaryError, type CategoryEvent, type CommentEvent, CreateOzParam, CreateOzViewer, type ExtraDataType, MovePage, type OZBtnTouchEvent, type OZEFormInputEvent, type OZExportEvent, OZTriggerExternalEvent, type OZViewerChangeEvent, type OZViewerErrorEvent, OZViewerEvent, type OZViewerPageBindEvent, type OZViewerProgressEvent, type OZViewerUserEvent, type PdfEvent, SaveSinglePdf, SaveTotalPdf, type SignatureEvent, type TopEvent, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform, triggerClickOnAllDocuments, triggerCropImageOnAllDocuments, triggerDraftDataByIndexList, useDocumentInfo, useOzEventListener, validateAllPages };
|
package/dist/index.js
CHANGED
|
@@ -296,27 +296,6 @@ function ensureArray(arg) {
|
|
|
296
296
|
function DeepCopy(arg) {
|
|
297
297
|
return JSON.parse(JSON.stringify(arg));
|
|
298
298
|
}
|
|
299
|
-
|
|
300
|
-
// src/oz/utils/common-util.ts
|
|
301
|
-
async function sleep(ms = 10) {
|
|
302
|
-
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
303
|
-
}
|
|
304
|
-
function categorizeByPageRange(data, pageCounts) {
|
|
305
|
-
let currentPage = 1;
|
|
306
|
-
let pageIndex = 0;
|
|
307
|
-
const result = DeepCopy(data);
|
|
308
|
-
result.forEach((group) => {
|
|
309
|
-
group.startPage = currentPage;
|
|
310
|
-
group.doc.forEach((doc) => {
|
|
311
|
-
const pageCount = pageCounts[pageIndex++];
|
|
312
|
-
doc.startPage = currentPage;
|
|
313
|
-
doc.endPage = currentPage + pageCount - 1;
|
|
314
|
-
currentPage += pageCount;
|
|
315
|
-
});
|
|
316
|
-
group.endPage = group.doc[group.doc.length - 1].endPage;
|
|
317
|
-
});
|
|
318
|
-
return result;
|
|
319
|
-
}
|
|
320
299
|
async function fetchDocument(args) {
|
|
321
300
|
const { data: result } = await Bridge.native.downloadDocument(args);
|
|
322
301
|
return result.data.map((i) => ({ ...i, startPage: 0, endPage: 0 }));
|
|
@@ -521,14 +500,12 @@ async function CreateOzParam({ documentList, extraData = {}, commonArgs = [], co
|
|
|
521
500
|
async function setCheckEform(reportCount) {
|
|
522
501
|
const count = reportCount ?? await getReportCountMemo();
|
|
523
502
|
for (let i = 0; i < count; i++) {
|
|
524
|
-
await sleep();
|
|
525
503
|
await Bridge.nativeOz.setGlobal({ key: "checkeForm", value: "Y", docIndex: i });
|
|
526
504
|
}
|
|
527
505
|
}
|
|
528
506
|
async function triggerClickOnAllDocuments(reportCount) {
|
|
529
507
|
const count = reportCount ?? await getReportCountMemo();
|
|
530
508
|
for (let i = 0; i < count; i++) {
|
|
531
|
-
await sleep();
|
|
532
509
|
const command = `INPUT_TRIGGER_CLICK_AT=${i}`;
|
|
533
510
|
await Bridge.nativeOz.getInformation({ command });
|
|
534
511
|
}
|
|
@@ -536,7 +513,6 @@ async function triggerClickOnAllDocuments(reportCount) {
|
|
|
536
513
|
async function triggerCropImageOnAllDocuments(reportCount) {
|
|
537
514
|
const count = reportCount ?? await getReportCountMemo();
|
|
538
515
|
for (let i = 0; i < count; i++) {
|
|
539
|
-
await sleep();
|
|
540
516
|
await Bridge.nativeOz.triggerExternalEventByDocIndex({ param1: "cropimage" /* CropImage */, docIndex: Number(i) });
|
|
541
517
|
}
|
|
542
518
|
}
|
|
@@ -544,7 +520,6 @@ async function getTotalPageOnAllDocuments(reportCount) {
|
|
|
544
520
|
const count = reportCount ?? await getReportCountMemo();
|
|
545
521
|
const totalPages = [];
|
|
546
522
|
for (let i = 0; i < count; i++) {
|
|
547
|
-
await sleep();
|
|
548
523
|
const command = `TOTAL_PAGE_OF_REPORT_FILE_AT=${i}`;
|
|
549
524
|
const { data } = await Bridge.nativeOz.getInformation({ command });
|
|
550
525
|
totalPages.push(Number(data));
|
|
@@ -571,7 +546,6 @@ async function getDraftDataHandler(rawOzRequest, documentIndexMap) {
|
|
|
571
546
|
}
|
|
572
547
|
async function triggerDraftDataByIndexList(indexList) {
|
|
573
548
|
for (let i = 0; i < indexList.length; i++) {
|
|
574
|
-
await sleep();
|
|
575
549
|
await Bridge.nativeOz.triggerExternalEventByDocIndex({ param1: "getDraftData" /* GetDraftData */, docIndex: indexList[i] });
|
|
576
550
|
}
|
|
577
551
|
}
|
|
@@ -583,7 +557,6 @@ async function setFocusOnValidation(enable, reportCount) {
|
|
|
583
557
|
return;
|
|
584
558
|
}
|
|
585
559
|
for (let i = 0; i < count; i++) {
|
|
586
|
-
await sleep();
|
|
587
560
|
await Bridge.nativeOz.setGlobal({ key: "chkFlag", value: expectedValue, docIndex: i });
|
|
588
561
|
}
|
|
589
562
|
return;
|
|
@@ -629,7 +602,6 @@ async function SavePdf({ policyNumber, fileName, startPage, endPage }) {
|
|
|
629
602
|
async function checkDocumentsValidityByIndex(indexList) {
|
|
630
603
|
const VALID = "";
|
|
631
604
|
for (let i = 0; i < indexList.length; i++) {
|
|
632
|
-
await sleep();
|
|
633
605
|
const command = `INVALID_INFO_JSON_AT=${indexList[i]}`;
|
|
634
606
|
const { data } = await Bridge.nativeOz.getInformation({ command });
|
|
635
607
|
if (data !== VALID) {
|
|
@@ -641,7 +613,6 @@ async function checkDocumentsValidityByIndex(indexList) {
|
|
|
641
613
|
async function validateAllPages(pageCount) {
|
|
642
614
|
const count = pageCount ?? await getTotalPageMemo();
|
|
643
615
|
for (let i = 1; i <= count; i++) {
|
|
644
|
-
await sleep();
|
|
645
616
|
const isValid = await checkValidPageMemo(i);
|
|
646
617
|
if (!isValid) {
|
|
647
618
|
return false;
|
|
@@ -682,6 +653,24 @@ var checkValidPageMemo = (() => {
|
|
|
682
653
|
};
|
|
683
654
|
return checkValidPage;
|
|
684
655
|
})();
|
|
656
|
+
|
|
657
|
+
// src/oz/utils/common-util.ts
|
|
658
|
+
function categorizeByPageRange(data, pageCounts) {
|
|
659
|
+
let currentPage = 1;
|
|
660
|
+
let pageIndex = 0;
|
|
661
|
+
const result = DeepCopy(data);
|
|
662
|
+
result.forEach((group) => {
|
|
663
|
+
group.startPage = currentPage;
|
|
664
|
+
group.doc.forEach((doc) => {
|
|
665
|
+
const pageCount = pageCounts[pageIndex++];
|
|
666
|
+
doc.startPage = currentPage;
|
|
667
|
+
doc.endPage = currentPage + pageCount - 1;
|
|
668
|
+
currentPage += pageCount;
|
|
669
|
+
});
|
|
670
|
+
group.endPage = group.doc[group.doc.length - 1].endPage;
|
|
671
|
+
});
|
|
672
|
+
return result;
|
|
673
|
+
}
|
|
685
674
|
var valueChangeDebounceMap = /* @__PURE__ */ new Map();
|
|
686
675
|
function getDebouncedValueChangeHandler(docIndex, onValueChanged) {
|
|
687
676
|
const DEBOUNCE_DELAY = 1e3 * 0.5;
|
|
@@ -699,6 +688,6 @@ function clearValueChangeDebounceHandlers() {
|
|
|
699
688
|
valueChangeDebounceMap.clear();
|
|
700
689
|
}
|
|
701
690
|
|
|
702
|
-
export { AlertDocumentLoadError, AlertTemporaryError, CreateOzParam, CreateOzViewer, MovePage, OZTriggerExternalEvent, OZViewerEvent, SaveSinglePdf, SaveTotalPdf, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform,
|
|
691
|
+
export { AlertDocumentLoadError, AlertTemporaryError, CreateOzParam, CreateOzViewer, MovePage, OZTriggerExternalEvent, OZViewerEvent, SaveSinglePdf, SaveTotalPdf, categorizeByPageRange, checkDocumentsValidityByIndex, checkValidPageMemo, clearValueChangeDebounceHandlers, commentPenEraser, commentPenGreen, commentPenPink, commentPenYellow, commonOzParam, commonPdfExportParam, disableFocusOnValidation, enableFocusOnValidation, fetchDocument, fetchFont, getCurrentPage, getDebouncedValueChangeHandler, getDraftDataHandler, getFileFromDud, getReportCountMemo, getTotalPageMemo, getTotalPageOnAllDocuments, postFiletoDud, setCheckEform, triggerClickOnAllDocuments, triggerCropImageOnAllDocuments, triggerDraftDataByIndexList, useDocumentInfo, useOzEventListener, validateAllPages };
|
|
703
692
|
//# sourceMappingURL=index.js.map
|
|
704
693
|
//# sourceMappingURL=index.js.map
|