@ekyc_qoobiss/qbs-ect-cmp 1.2.0
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/LICENSE +21 -0
- package/README.md +49 -0
- package/dist/assets/canvas-masks/face_green.svg +8 -0
- package/dist/assets/canvas-masks/face_white.svg +8 -0
- package/dist/assets/canvas-masks/id_green.svg +6 -0
- package/dist/assets/canvas-masks/id_white.svg +6 -0
- package/dist/assets/complete.svg +4 -0
- package/dist/assets/landing/device.svg +14 -0
- package/dist/assets/landing/id.svg +3 -0
- package/dist/assets/landing/info.svg +3 -0
- package/dist/assets/landing/validation.svg +16 -0
- package/dist/assets/ml5-preload.png +0 -0
- package/dist/cjs/agreement-check_17.cjs.entry.js +9549 -0
- package/dist/cjs/index-79f82518.js +1568 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader-dots.cjs.entry.js +19 -0
- package/dist/cjs/loader.cjs.js +22 -0
- package/dist/cjs/qbs-ect-cmp.cjs.js +23 -0
- package/dist/collection/assets/canvas-masks/face_green.svg +8 -0
- package/dist/collection/assets/canvas-masks/face_white.svg +8 -0
- package/dist/collection/assets/canvas-masks/id_green.svg +6 -0
- package/dist/collection/assets/canvas-masks/id_white.svg +6 -0
- package/dist/collection/assets/complete.svg +4 -0
- package/dist/collection/assets/landing/device.svg +14 -0
- package/dist/collection/assets/landing/id.svg +3 -0
- package/dist/collection/assets/landing/info.svg +3 -0
- package/dist/collection/assets/landing/validation.svg +16 -0
- package/dist/collection/collection-manifest.json +29 -0
- package/dist/collection/components/common/agreement-check/agreement-check.css +0 -0
- package/dist/collection/components/common/agreement-check/agreement-check.js +95 -0
- package/dist/collection/components/common/capture-error/capture-error.css +0 -0
- package/dist/collection/components/common/capture-error/capture-error.js +73 -0
- package/dist/collection/components/common/how-to-info/how-to-info.css +0 -0
- package/dist/collection/components/common/how-to-info/how-to-info.js +98 -0
- package/dist/collection/components/common/id-back-capture/id-back-capture.css +35 -0
- package/dist/collection/components/common/id-back-capture/id-back-capture.js +212 -0
- package/dist/collection/components/common/id-capture/id-capture.css +35 -0
- package/dist/collection/components/common/id-capture/id-capture.js +213 -0
- package/dist/collection/components/common/selfie-capture/selfie-capture.css +7 -0
- package/dist/collection/components/common/selfie-capture/selfie-capture.js +222 -0
- package/dist/collection/components/controls/camera/camera.css +47 -0
- package/dist/collection/components/controls/camera/camera.js +309 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.css +61 -0
- package/dist/collection/components/controls/loader-dots/loader-dots.js +18 -0
- package/dist/collection/components/flow/agreement-info/agreement-info.css +0 -0
- package/dist/collection/components/flow/agreement-info/agreement-info.js +73 -0
- package/dist/collection/components/flow/end-redirect/end-redirect.css +128 -0
- package/dist/collection/components/flow/end-redirect/end-redirect.js +26 -0
- package/dist/collection/components/flow/error-end/error-end.css +0 -0
- package/dist/collection/components/flow/error-end/error-end.js +64 -0
- package/dist/collection/components/flow/id-double-side/id-double-side.css +0 -0
- package/dist/collection/components/flow/id-double-side/id-double-side.js +284 -0
- package/dist/collection/components/flow/id-single-side/id-single-side.css +0 -0
- package/dist/collection/components/flow/id-single-side/id-single-side.js +225 -0
- package/dist/collection/components/flow/landing-validation/landing-validation.css +0 -0
- package/dist/collection/components/flow/landing-validation/landing-validation.js +88 -0
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.css +10 -0
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.js +128 -0
- package/dist/collection/components/flow/sms-code-validation/sms-code-validation.css +0 -0
- package/dist/collection/components/flow/sms-code-validation/sms-code-validation.js +115 -0
- package/dist/collection/components/flow/user-liveness/user-liveness.css +0 -0
- package/dist/collection/components/flow/user-liveness/user-liveness.js +214 -0
- package/dist/collection/components/identification-component/identification-component.css +1043 -0
- package/dist/collection/components/identification-component/identification-component.js +355 -0
- package/dist/collection/global.js +0 -0
- package/dist/collection/helpers/ApiCall.js +113 -0
- package/dist/collection/helpers/Cameras.js +98 -0
- package/dist/collection/helpers/Events.js +39 -0
- package/dist/collection/helpers/ML5.js +35 -0
- package/dist/collection/helpers/Stream.js +223 -0
- package/dist/collection/helpers/canvas.js +10 -0
- package/dist/collection/helpers/index.js +54 -0
- package/dist/collection/helpers/security.js +25 -0
- package/dist/collection/helpers/store.js +39 -0
- package/dist/collection/helpers/textValues.js +128 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/libs/FaceML5Detector/FaceML5Detector.js +227 -0
- package/dist/collection/libs/FaceML5Detector/FacePose.js +85 -0
- package/dist/collection/libs/IDML5Detector/IDML5Detector.js +101 -0
- package/dist/collection/libs/IDML5Detector/IDPose.js +8 -0
- package/dist/collection/models/FlowStatus.js +12 -0
- package/dist/collection/models/IAddRequest.js +1 -0
- package/dist/collection/models/IAgreement.js +1 -0
- package/dist/collection/models/ICamera.js +1 -0
- package/dist/collection/models/IConstraints.js +1 -0
- package/dist/collection/models/IDevice.js +1 -0
- package/dist/collection/models/IGeneration.js +1 -0
- package/dist/collection/models/ILinkSend.js +1 -0
- package/dist/collection/models/ILogResult.js +1 -0
- package/dist/collection/models/IOrderStatus.js +1 -0
- package/dist/collection/models/IOtpCheck.js +1 -0
- package/dist/collection/models/IOtpSend.js +1 -0
- package/dist/collection/models/IUploadFile.js +1 -0
- package/dist/collection/models/OrderStatuses.js +7 -0
- package/dist/collection/utils/utils.js +10 -0
- package/dist/esm/agreement-check_17.entry.js +9529 -0
- package/dist/esm/index-9d69e511.js +1538 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader-dots.entry.js +15 -0
- package/dist/esm/loader.js +18 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/esm/qbs-ect-cmp.js +18 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/loader/cdn.js +3 -0
- package/dist/loader/index.cjs.js +3 -0
- package/dist/loader/index.d.ts +21 -0
- package/dist/loader/index.es2017.js +3 -0
- package/dist/loader/index.js +4 -0
- package/dist/loader/package.json +11 -0
- package/dist/qbs-ect-cmp/index.esm.js +0 -0
- package/dist/qbs-ect-cmp/p-06e42b28.js +2 -0
- package/dist/qbs-ect-cmp/p-4c8e922b.entry.js +1 -0
- package/dist/qbs-ect-cmp/p-b65cc797.entry.js +1373 -0
- package/dist/qbs-ect-cmp/qbs-ect-cmp.css +1 -0
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -0
- package/dist/types/components/common/agreement-check/agreement-check.d.ts +12 -0
- package/dist/types/components/common/capture-error/capture-error.d.ts +10 -0
- package/dist/types/components/common/how-to-info/how-to-info.d.ts +12 -0
- package/dist/types/components/common/id-back-capture/id-back-capture.d.ts +28 -0
- package/dist/types/components/common/id-capture/id-capture.d.ts +28 -0
- package/dist/types/components/common/selfie-capture/selfie-capture.d.ts +30 -0
- package/dist/types/components/controls/camera/camera.d.ts +33 -0
- package/dist/types/components/controls/loader-dots/loader-dots.d.ts +3 -0
- package/dist/types/components/flow/agreement-info/agreement-info.d.ts +13 -0
- package/dist/types/components/flow/end-redirect/end-redirect.d.ts +4 -0
- package/dist/types/components/flow/error-end/error-end.d.ts +6 -0
- package/dist/types/components/flow/id-double-side/id-double-side.d.ts +27 -0
- package/dist/types/components/flow/id-single-side/id-single-side.d.ts +23 -0
- package/dist/types/components/flow/landing-validation/landing-validation.d.ts +10 -0
- package/dist/types/components/flow/mobile-redirect/mobile-redirect.d.ts +22 -0
- package/dist/types/components/flow/sms-code-validation/sms-code-validation.d.ts +16 -0
- package/dist/types/components/flow/user-liveness/user-liveness.d.ts +22 -0
- package/dist/types/components/identification-component/identification-component.d.ts +24 -0
- package/dist/types/components.d.ts +370 -0
- package/dist/types/global.d.ts +0 -0
- package/dist/types/helpers/ApiCall.d.ts +19 -0
- package/dist/types/helpers/Cameras.d.ts +8 -0
- package/dist/types/helpers/Events.d.ts +8 -0
- package/dist/types/helpers/ML5.d.ts +10 -0
- package/dist/types/helpers/Stream.d.ts +70 -0
- package/dist/types/helpers/canvas.d.ts +2 -0
- package/dist/types/helpers/index.d.ts +4 -0
- package/dist/types/helpers/security.d.ts +4 -0
- package/dist/types/helpers/store.d.ts +16 -0
- package/dist/types/helpers/textValues.d.ts +107 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/libs/FaceML5Detector/FaceML5Detector.d.ts +40 -0
- package/dist/types/libs/FaceML5Detector/FacePose.d.ts +36 -0
- package/dist/types/libs/IDML5Detector/IDML5Detector.d.ts +22 -0
- package/dist/types/libs/IDML5Detector/IDPose.d.ts +7 -0
- package/dist/types/models/FlowStatus.d.ts +11 -0
- package/dist/types/models/IAddRequest.d.ts +6 -0
- package/dist/types/models/IAgreement.d.ts +3 -0
- package/dist/types/models/ICamera.d.ts +10 -0
- package/dist/types/models/IConstraints.d.ts +21 -0
- package/dist/types/models/IDevice.d.ts +11 -0
- package/dist/types/models/IGeneration.d.ts +3 -0
- package/dist/types/models/ILinkSend.d.ts +3 -0
- package/dist/types/models/ILogResult.d.ts +3 -0
- package/dist/types/models/IOrderStatus.d.ts +4 -0
- package/dist/types/models/IOtpCheck.d.ts +3 -0
- package/dist/types/models/IOtpSend.d.ts +3 -0
- package/dist/types/models/IUploadFile.d.ts +4 -0
- package/dist/types/models/OrderStatuses.d.ts +6 -0
- package/dist/types/stencil-public-runtime.d.ts +1637 -0
- package/dist/types/utils/utils.d.ts +2 -0
- package/package.json +52 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-cyrillic-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-greek-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-greek-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-vietnamese-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-latin-ext-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:900;src:url('./files/inter-latin-900-normal.woff2') format('woff2'), url('./files/inter-all-900-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-cyrillic-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-greek-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-greek-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-vietnamese-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-latin-ext-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:700;src:url('./files/inter-latin-700-normal.woff2') format('woff2'), url('./files/inter-all-700-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-cyrillic-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-greek-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-greek-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-vietnamese-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-latin-ext-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:600;src:url('./files/inter-latin-600-normal.woff2') format('woff2'), url('./files/inter-all-600-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-cyrillic-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+1F00-1FFF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-greek-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0370-03FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-vietnamese-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-ext-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-display:swap;font-weight:400;src:url('./files/inter-latin-400-normal.woff2') format('woff2'), url('./files/inter-all-400-normal.woff') format('woff');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{p as e,b as i}from"./p-06e42b28.js";export{s as setNonce}from"./p-06e42b28.js";(()=>{const i=import.meta.url,t={};return""!==i&&(t.resourcesUrl=new URL(".",i).href),e(t)})().then((e=>i([["p-4c8e922b",[[1,"loader-dots"]]],["p-b65cc797",[[1,"identification-component",{token:[1537],order_id:[1537],api_url:[1537],env:[1537],redirect_id:[1537],idSide:[32],errorMessage:[32],errorTitle:[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"],[0,"apiError","apiErrorEmitter"]]],[0,"id-double-side",{device:[16],showTimeout:[32],showInvalid:[32],showHowTo:[32],front:[32],flow:[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoIdCapture","captureIdImage"],[0,"photoIdBackCapture","captureIdBackImage"],[0,"recordingIdCapture","capturedIdRecording"],[0,"verificationFinished","verificationFinished"]]],[0,"id-single-side",{device:[16],showTimeout:[32],showHowTo:[32],idFlow:[32]},[[0,"captureErrorDone","captureErrorDone"],[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"photoIdCapture","captureIdImage"],[0,"verificationFinished","verificationFinished"],[0,"recordingIdCapture","capturedIdRecording"]]],[0,"user-liveness",{device:[16],showError:[32],showHowTo:[32],selfieFlow:[32]},[[0,"howToInfoDone","howToDone"],[0,"timeElapsed","timeElapsed"],[0,"captureErrorDone","captureErrorDone"],[0,"photoSelfieCapture","captureSelfieImage"],[0,"recordingSelfieCapture","capturedSelfieRecording"],[0,"verificationFinished","verificationFinished"]]],[0,"agreement-info",{agreementsChecked:[32],termsChecked:[32],openAgreements:[32],openTerms:[32]},[[0,"agreementAcceptance","agreementAcceptanceEmitted"]]],[0,"end-redirect"],[0,"error-end",{message:[1],errorTitle:[1,"error-title"]}],[0,"landing-validation",{device:[16],warningText:[32]}],[0,"mobile-redirect",{infoTextTop:[32],infoTextBottom:[32],contact:[32],invalidValue:[32],waitingMobile:[32],orderStatus:[32],redirectLink:[32],qrCode:[32]}],[0,"sms-code-validation",{title:[32],details:[32],buttonText:[32],phoneNumber:[32],code:[32]}],[0,"id-back-capture",{device:[16],videoStarted:[32],cameraSize:[32],captureTaken:[32],verified:[32],titleMesage:[32],showDemo:[32],demoVideo:[32]},[[0,"changeTitle","eventChangeTitle"],[0,"videoStarted","eventVideoStarted"],[0,"verificationFinished","verificationFinished"],[0,"takePhoto","takePhoto"]]],[0,"selfie-capture",{device:[16],videoStarted:[32],captureTaken:[32],verified:[32],titleMesage:[32],demoEnded:[32],demoVideo:[32],uploadingLink:[32],captureHeight:[32],captureWidth:[32]},[[0,"changeTitle","eventChangeTitle"],[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"agreement-check",{agreementType:[1,"agreement-type"],htmlContent:[32]}],[0,"id-capture",{device:[16],videoStarted:[32],cameraSize:[32],captureTaken:[32],verified:[32],titleMesage:[32],showDemo:[32],demoVideo:[32]},[[0,"changeTitle","eventChangeTitle"],[0,"videoStarted","eventVideoStarted"],[0,"takePhoto","takePhoto"],[0,"verificationFinished","verificationFinished"]]],[0,"capture-error",{type:[1]}],[0,"how-to-info",{idSide:[1,"id-side"],topTitle:[32],subTitle:[32],imagePath:[32],buttonText:[32]}],[0,"camera-comp",{modelPath:[1,"model-path"],device:[16],probabilityThreshold:[2,"probability-threshold"],captureMode:[1,"capture-mode"]}]]]],e)));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class AgreementCheck {
|
|
3
|
+
agreementType: string;
|
|
4
|
+
htmlContent: string;
|
|
5
|
+
private apiCalls;
|
|
6
|
+
constructor();
|
|
7
|
+
apiErrorEvent: EventEmitter<any>;
|
|
8
|
+
componentDidLoad(): Promise<void>;
|
|
9
|
+
agreementAcceptance: EventEmitter<any>;
|
|
10
|
+
buttonClick(result: boolean): Promise<void>;
|
|
11
|
+
render(): any;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class CaptureError {
|
|
3
|
+
type: string;
|
|
4
|
+
private imagePath;
|
|
5
|
+
private description;
|
|
6
|
+
eventCaptureErrorDone: EventEmitter;
|
|
7
|
+
componentWillRender(): void;
|
|
8
|
+
buttonClick(): void;
|
|
9
|
+
render(): any;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class HowToInfo {
|
|
3
|
+
idSide: string;
|
|
4
|
+
topTitle: string;
|
|
5
|
+
subTitle: string;
|
|
6
|
+
imagePath: string;
|
|
7
|
+
buttonText: string;
|
|
8
|
+
eventHowToInfoDone: EventEmitter;
|
|
9
|
+
buttonClick(): void;
|
|
10
|
+
componentWillLoad(): void;
|
|
11
|
+
render(): any;
|
|
12
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class IdBackCapture {
|
|
4
|
+
component: HTMLElement;
|
|
5
|
+
device: Device;
|
|
6
|
+
private videoStarted;
|
|
7
|
+
private cameraSize;
|
|
8
|
+
private captureTaken;
|
|
9
|
+
private verified;
|
|
10
|
+
private titleMesage;
|
|
11
|
+
eventPhotoCapture: EventEmitter;
|
|
12
|
+
private cameras;
|
|
13
|
+
private showDemo;
|
|
14
|
+
private demoVideo;
|
|
15
|
+
constructor();
|
|
16
|
+
delay: (ms: any) => Promise<unknown>;
|
|
17
|
+
eventChangeTitle(event: any): Promise<void>;
|
|
18
|
+
eventVideoStarted(event: any): void;
|
|
19
|
+
componentWillLoad(): Promise<void>;
|
|
20
|
+
componentDidLoad(): Promise<void>;
|
|
21
|
+
openCamera(): Promise<void>;
|
|
22
|
+
closeCamera(): void;
|
|
23
|
+
disconnectedCallback(): void;
|
|
24
|
+
verificationFinished(): void;
|
|
25
|
+
takePhoto(): Promise<void>;
|
|
26
|
+
photoIsReady: (photos: any) => void;
|
|
27
|
+
render(): any;
|
|
28
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class IdCapture {
|
|
4
|
+
component: HTMLElement;
|
|
5
|
+
device: Device;
|
|
6
|
+
private videoStarted;
|
|
7
|
+
private cameraSize;
|
|
8
|
+
private captureTaken;
|
|
9
|
+
private verified;
|
|
10
|
+
private titleMesage;
|
|
11
|
+
private showDemo;
|
|
12
|
+
private demoVideo;
|
|
13
|
+
eventPhotoCapture: EventEmitter;
|
|
14
|
+
private cameras;
|
|
15
|
+
constructor();
|
|
16
|
+
delay: (ms: any) => Promise<unknown>;
|
|
17
|
+
eventChangeTitle(event: any): Promise<void>;
|
|
18
|
+
eventVideoStarted(event: any): void;
|
|
19
|
+
componentWillLoad(): Promise<void>;
|
|
20
|
+
componentDidLoad(): Promise<void>;
|
|
21
|
+
openCamera(): Promise<void>;
|
|
22
|
+
closeCamera(): void;
|
|
23
|
+
disconnectedCallback(): void;
|
|
24
|
+
takePhoto(): Promise<void>;
|
|
25
|
+
verificationFinished(): Promise<void>;
|
|
26
|
+
photoIsReady: (photos: any) => void;
|
|
27
|
+
render(): any;
|
|
28
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class SelfieCapture {
|
|
4
|
+
component: HTMLElement;
|
|
5
|
+
device: Device;
|
|
6
|
+
private videoStarted;
|
|
7
|
+
private captureTaken;
|
|
8
|
+
private verified;
|
|
9
|
+
private titleMesage;
|
|
10
|
+
private demoEnded;
|
|
11
|
+
private demoVideo;
|
|
12
|
+
private uploadingLink;
|
|
13
|
+
private captureHeight;
|
|
14
|
+
private captureWidth;
|
|
15
|
+
eventPhotoCapture: EventEmitter;
|
|
16
|
+
private cameras;
|
|
17
|
+
constructor();
|
|
18
|
+
eventChangeTitle(event: any): Promise<void>;
|
|
19
|
+
eventVideoStarted(event: any): void;
|
|
20
|
+
componentWillLoad(): void;
|
|
21
|
+
delay: (ms: any) => Promise<unknown>;
|
|
22
|
+
componentDidLoad(): Promise<void>;
|
|
23
|
+
openCamera(): Promise<void>;
|
|
24
|
+
closeCamera(): void;
|
|
25
|
+
disconnectedCallback(): void;
|
|
26
|
+
takePhoto(): Promise<void>;
|
|
27
|
+
verificationFinished(): void;
|
|
28
|
+
photoIsReady: (photos: any) => void;
|
|
29
|
+
render(): any;
|
|
30
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Device } from '../../../models/IDevice';
|
|
2
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
3
|
+
import { IDPose } from '../../../libs/IDML5Detector/IDPose';
|
|
4
|
+
import { FacePose } from '../../../libs/FaceML5Detector/FacePose';
|
|
5
|
+
export declare class Camera {
|
|
6
|
+
component: HTMLElement;
|
|
7
|
+
modelPath: string;
|
|
8
|
+
device: Device;
|
|
9
|
+
probabilityThreshold: number;
|
|
10
|
+
captureMode: string;
|
|
11
|
+
private cameraVideo;
|
|
12
|
+
private cameraCanvas;
|
|
13
|
+
eventVideoStarted: EventEmitter;
|
|
14
|
+
eventCloseCamera: EventEmitter;
|
|
15
|
+
errorCameraEvent: any;
|
|
16
|
+
eventTakePhoto: EventEmitter;
|
|
17
|
+
eventRecordingSelfieReady: EventEmitter;
|
|
18
|
+
eventRecordingIdReady: EventEmitter;
|
|
19
|
+
eventTimeElapsed: EventEmitter;
|
|
20
|
+
eventChangeTitle: EventEmitter;
|
|
21
|
+
verificationFinished: EventEmitter;
|
|
22
|
+
componentDidLoad(): void;
|
|
23
|
+
render(): any;
|
|
24
|
+
callbackErrors: (error: Error, isError: boolean) => void;
|
|
25
|
+
callbackAutoCapturing: () => void;
|
|
26
|
+
callbackSelfieRecordingReady: (recording: Blob) => void;
|
|
27
|
+
callbackIdRecordingReady: (recording: Blob) => void;
|
|
28
|
+
callbackTimeElapsed: () => void;
|
|
29
|
+
callbackChangeTitle: (message: FacePose | IDPose) => void;
|
|
30
|
+
callbackVideoStarted: () => void;
|
|
31
|
+
callbackVerificationFinished: () => void;
|
|
32
|
+
startStream(): void;
|
|
33
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class AgreementInfo {
|
|
2
|
+
agreementsChecked: boolean;
|
|
3
|
+
termsChecked: boolean;
|
|
4
|
+
openAgreements: boolean;
|
|
5
|
+
openTerms: boolean;
|
|
6
|
+
constructor();
|
|
7
|
+
componentWillLoad(): void;
|
|
8
|
+
buttonClick(): void;
|
|
9
|
+
agreementAcceptanceEmitted(data: any): void;
|
|
10
|
+
agreementsClicked(): void;
|
|
11
|
+
termsClicked(): void;
|
|
12
|
+
render(): any;
|
|
13
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class IdDoubleSide {
|
|
4
|
+
device: Device;
|
|
5
|
+
private captureRetryCount;
|
|
6
|
+
private apiCall;
|
|
7
|
+
private showTimeout;
|
|
8
|
+
private showInvalid;
|
|
9
|
+
private showHowTo;
|
|
10
|
+
private front;
|
|
11
|
+
private flow;
|
|
12
|
+
constructor();
|
|
13
|
+
componentWillLoad(): void;
|
|
14
|
+
apiErrorEvent: EventEmitter<any>;
|
|
15
|
+
howToDone(): void;
|
|
16
|
+
timeElapsed(): void;
|
|
17
|
+
captureErrorDone(): void;
|
|
18
|
+
captureIdImage(event: any): Promise<void>;
|
|
19
|
+
captureIdBackImage(event: any): Promise<void>;
|
|
20
|
+
capturedIdRecording(event: any): Promise<void>;
|
|
21
|
+
verificationFinished(_event: any): Promise<void>;
|
|
22
|
+
uploadPhoto(): Promise<void>;
|
|
23
|
+
uploadRecording(): Promise<void>;
|
|
24
|
+
endFlow(): void;
|
|
25
|
+
switchCamera(): void;
|
|
26
|
+
render(): any;
|
|
27
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class IdSingleSide {
|
|
4
|
+
device: Device;
|
|
5
|
+
private captureRetryCount;
|
|
6
|
+
private apiCall;
|
|
7
|
+
private showTimeout;
|
|
8
|
+
private showHowTo;
|
|
9
|
+
private idFlow;
|
|
10
|
+
constructor();
|
|
11
|
+
apiErrorEvent: EventEmitter<any>;
|
|
12
|
+
captureErrorDone(): void;
|
|
13
|
+
howToDone(): void;
|
|
14
|
+
timeElapsed(): void;
|
|
15
|
+
captureIdImage(event: any): Promise<void>;
|
|
16
|
+
verificationFinished(_event: any): Promise<void>;
|
|
17
|
+
capturedIdRecording(event: any): Promise<void>;
|
|
18
|
+
uploadPhoto(): Promise<void>;
|
|
19
|
+
uploadRecording(): Promise<void>;
|
|
20
|
+
endFlow(): void;
|
|
21
|
+
switchCamera(): void;
|
|
22
|
+
render(): any;
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Device } from '../../../models/IDevice';
|
|
2
|
+
export declare class LandingValidation {
|
|
3
|
+
device: Device;
|
|
4
|
+
warningText: string;
|
|
5
|
+
componentWillLoad(): Promise<void>;
|
|
6
|
+
componentDidLoad(): void;
|
|
7
|
+
initRequest(): Promise<void>;
|
|
8
|
+
startFlow(): Promise<void>;
|
|
9
|
+
render(): any;
|
|
10
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class MobileRedirect {
|
|
3
|
+
private infoTextTop;
|
|
4
|
+
private infoTextBottom;
|
|
5
|
+
private contact;
|
|
6
|
+
private invalidValue;
|
|
7
|
+
private waitingMobile;
|
|
8
|
+
private orderStatus;
|
|
9
|
+
private redirectLink;
|
|
10
|
+
private qrCode;
|
|
11
|
+
private apiCall;
|
|
12
|
+
apiErrorEvent: EventEmitter<any>;
|
|
13
|
+
constructor();
|
|
14
|
+
componentWillLoad(): Promise<void>;
|
|
15
|
+
componentWillRender(): void;
|
|
16
|
+
componentDidLoad(): Promise<void>;
|
|
17
|
+
delay: (ms: any) => Promise<unknown>;
|
|
18
|
+
checkStatus(): Promise<void>;
|
|
19
|
+
buttonClick(): Promise<void>;
|
|
20
|
+
handleChangeContact(ev: any): void;
|
|
21
|
+
render(): any;
|
|
22
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
export declare class SmsCodeValidation {
|
|
3
|
+
private title;
|
|
4
|
+
private details;
|
|
5
|
+
private buttonText;
|
|
6
|
+
private apiCall;
|
|
7
|
+
private phoneNumber;
|
|
8
|
+
private code;
|
|
9
|
+
constructor();
|
|
10
|
+
apiErrorEvent: EventEmitter<any>;
|
|
11
|
+
private doAction;
|
|
12
|
+
componentWillRender(): void;
|
|
13
|
+
handleChangePhone(ev: any): void;
|
|
14
|
+
handleChangeCode(ev: any): void;
|
|
15
|
+
render(): any;
|
|
16
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { EventEmitter } from '../../../stencil-public-runtime';
|
|
2
|
+
import { Device } from '../../../models/IDevice';
|
|
3
|
+
export declare class UserLiveness {
|
|
4
|
+
device: Device;
|
|
5
|
+
showError: boolean;
|
|
6
|
+
showHowTo: boolean;
|
|
7
|
+
private apiCall;
|
|
8
|
+
private selfieFlow;
|
|
9
|
+
apiErrorEvent: EventEmitter<any>;
|
|
10
|
+
constructor();
|
|
11
|
+
componentWillLoad(): void;
|
|
12
|
+
howToDone(): void;
|
|
13
|
+
timeElapsed(): void;
|
|
14
|
+
captureErrorDone(): void;
|
|
15
|
+
captureSelfieImage(event: any): Promise<void>;
|
|
16
|
+
capturedSelfieRecording(event: any): Promise<void>;
|
|
17
|
+
verificationFinished(_event: any): Promise<void>;
|
|
18
|
+
uploadPhoto(): Promise<void>;
|
|
19
|
+
uploadRecording(): Promise<void>;
|
|
20
|
+
endFlow(): void;
|
|
21
|
+
render(): any;
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class IdentificationComponent {
|
|
2
|
+
token: string;
|
|
3
|
+
order_id: string;
|
|
4
|
+
api_url: string;
|
|
5
|
+
env: string;
|
|
6
|
+
redirect_id: string;
|
|
7
|
+
private idSide;
|
|
8
|
+
private errorMessage;
|
|
9
|
+
private errorTitle;
|
|
10
|
+
private device;
|
|
11
|
+
private apiCall;
|
|
12
|
+
onTokenChange(newValue: string, _oldValue: string): Promise<void>;
|
|
13
|
+
onOrderIdChange(newValue: string, _oldValue: string): Promise<void>;
|
|
14
|
+
onApiUrlChange(newValue: string, _oldValue: string): void;
|
|
15
|
+
onEnvChange(newValue: string, _oldValue: string): void;
|
|
16
|
+
onRedirectIdChange(newValue: string, _oldValue: string): Promise<void>;
|
|
17
|
+
agreementAcceptanceEmitted(data: any): void;
|
|
18
|
+
apiErrorEmitter(data: any): Promise<void>;
|
|
19
|
+
constructor();
|
|
20
|
+
componentWillLoad(): Promise<void>;
|
|
21
|
+
componentWillRender(): void;
|
|
22
|
+
initializeRequest(): Promise<void>;
|
|
23
|
+
render(): any;
|
|
24
|
+
}
|