@regulaforensics/face-sdk 8.3.1107-rc → 8.3.1111-nightly
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/RNFaceSDK.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +0 -91
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +3 -106
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +1 -39
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +1 -0
- package/app.plugin.js +42 -0
- package/examples/capacitor/ios/App/Podfile +2 -1
- package/examples/capacitor/package.json +2 -2
- package/examples/ionic/package-lock.json +465 -472
- package/examples/ionic/package.json +14 -13
- package/examples/react_native/app.config.ts +1 -0
- package/examples/react_native/package-lock.json +11 -11
- package/examples/react_native/package.json +2 -2
- package/ios/Config.swift +1 -109
- package/ios/Decoder.swift +3 -71
- package/ios/Main.swift +4 -24
- package/package.json +4 -1
- package/plugin.xml +3 -3
- package/test/json.tsx +57 -134
- package/test/package-lock.json +1 -1
- package/test/test.tsx +60 -68
- package/www/capacitor/customization/customization_images.js +0 -40
- package/www/capacitor/index.js +12 -33
- package/www/capacitor/liveness/liveness_config.js +0 -1
- package/www/capacitor/liveness/liveness_exception.js +5 -6
- package/www/capacitor/liveness/liveness_notification.js +0 -2
- package/www/cordova.js +106 -606
- package/www/react-native/customization/customization_images.js +0 -40
- package/www/react-native/index.js +12 -33
- package/www/react-native/liveness/liveness_config.js +0 -1
- package/www/react-native/liveness/liveness_exception.js +5 -6
- package/www/react-native/liveness/liveness_notification.js +0 -2
- package/www/types/customization/customization_images.d.ts +0 -5
- package/www/types/index.d.ts +3 -28
- package/www/types/liveness/liveness_config.d.ts +0 -1
- package/www/types/liveness/liveness_exception.d.ts +0 -1
- package/www/types/liveness/liveness_notification.d.ts +0 -2
- package/www/capacitor/liveness/enrollment_config.js +0 -102
- package/www/capacitor/liveness/enrollment_request.js +0 -34
- package/www/capacitor/liveness/enrollment_response.js +0 -26
- package/www/capacitor/liveness/error_response.js +0 -21
- package/www/capacitor/liveness/verification_config.js +0 -98
- package/www/capacitor/liveness/verification_response.js +0 -27
- package/www/capacitor/liveness/verify_match_response.js +0 -21
- package/www/react-native/liveness/enrollment_config.js +0 -102
- package/www/react-native/liveness/enrollment_request.js +0 -34
- package/www/react-native/liveness/enrollment_response.js +0 -26
- package/www/react-native/liveness/error_response.js +0 -21
- package/www/react-native/liveness/verification_config.js +0 -98
- package/www/react-native/liveness/verification_response.js +0 -27
- package/www/react-native/liveness/verify_match_response.js +0 -21
- package/www/types/liveness/enrollment_config.d.ts +0 -97
- package/www/types/liveness/enrollment_request.d.ts +0 -6
- package/www/types/liveness/enrollment_response.d.ts +0 -9
- package/www/types/liveness/error_response.d.ts +0 -6
- package/www/types/liveness/verification_config.d.ts +0 -95
- package/www/types/liveness/verification_response.d.ts +0 -10
- package/www/types/liveness/verify_match_response.d.ts +0 -6
package/www/cordova.js
CHANGED
|
@@ -557,36 +557,6 @@ class CustomizationImages {
|
|
|
557
557
|
this._set({ "retryScreenHintGeo": val })
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
_retryScreenHintBadSelfieQuality
|
|
561
|
-
set retryScreenHintBadSelfieQuality(val) {
|
|
562
|
-
this._retryScreenHintBadSelfieQuality = val
|
|
563
|
-
this._set({ "retryScreenHintBadSelfieQuality": val })
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
_retryScreenHintCleanLens
|
|
567
|
-
set retryScreenHintCleanLens(val) {
|
|
568
|
-
this._retryScreenHintCleanLens = val
|
|
569
|
-
this._set({ "retryScreenHintCleanLens": val })
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
_retryScreenHintAddIllumination
|
|
573
|
-
set retryScreenHintAddIllumination(val) {
|
|
574
|
-
this._retryScreenHintAddIllumination = val
|
|
575
|
-
this._set({ "retryScreenHintAddIllumination": val })
|
|
576
|
-
}
|
|
577
|
-
|
|
578
|
-
_retryScreenHintChangeBackground
|
|
579
|
-
set retryScreenHintChangeBackground(val) {
|
|
580
|
-
this._retryScreenHintChangeBackground = val
|
|
581
|
-
this._set({ "retryScreenHintChangeBackground": val })
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
_retryScreenHintFaceOcclusions
|
|
585
|
-
set retryScreenHintFaceOcclusions(val) {
|
|
586
|
-
this._retryScreenHintFaceOcclusions = val
|
|
587
|
-
this._set({ "retryScreenHintFaceOcclusions": val })
|
|
588
|
-
}
|
|
589
|
-
|
|
590
560
|
_processingScreenCloseButton
|
|
591
561
|
set processingScreenCloseButton(val) {
|
|
592
562
|
this._processingScreenCloseButton = val
|
|
@@ -614,11 +584,6 @@ class CustomizationImages {
|
|
|
614
584
|
result._retryScreenHintEnvironment = jsonObject["retryScreenHintEnvironment"]
|
|
615
585
|
result._retryScreenHintSubject = jsonObject["retryScreenHintSubject"]
|
|
616
586
|
result._retryScreenHintGeo = jsonObject["retryScreenHintGeo"]
|
|
617
|
-
result._retryScreenHintBadSelfieQuality = jsonObject["retryScreenHintBadSelfieQuality"]
|
|
618
|
-
result._retryScreenHintCleanLens = jsonObject["retryScreenHintCleanLens"]
|
|
619
|
-
result._retryScreenHintAddIllumination = jsonObject["retryScreenHintAddIllumination"]
|
|
620
|
-
result._retryScreenHintChangeBackground = jsonObject["retryScreenHintChangeBackground"]
|
|
621
|
-
result._retryScreenHintFaceOcclusions = jsonObject["retryScreenHintFaceOcclusions"]
|
|
622
587
|
result._processingScreenCloseButton = jsonObject["processingScreenCloseButton"]
|
|
623
588
|
result._successScreenImage = jsonObject["successScreenImage"]
|
|
624
589
|
|
|
@@ -639,11 +604,6 @@ class CustomizationImages {
|
|
|
639
604
|
"retryScreenHintEnvironment": this._retryScreenHintEnvironment,
|
|
640
605
|
"retryScreenHintSubject": this._retryScreenHintSubject,
|
|
641
606
|
"retryScreenHintGeo": this._retryScreenHintGeo,
|
|
642
|
-
"retryScreenHintBadSelfieQuality": this._retryScreenHintBadSelfieQuality,
|
|
643
|
-
"retryScreenHintCleanLens": this._retryScreenHintCleanLens,
|
|
644
|
-
"retryScreenHintAddIllumination": this._retryScreenHintAddIllumination,
|
|
645
|
-
"retryScreenHintChangeBackground": this._retryScreenHintChangeBackground,
|
|
646
|
-
"retryScreenHintFaceOcclusions": this._retryScreenHintFaceOcclusions,
|
|
647
607
|
"processingScreenCloseButton": this._processingScreenCloseButton,
|
|
648
608
|
"successScreenImage": this._successScreenImage,
|
|
649
609
|
}
|
|
@@ -2248,9 +2208,9 @@ const ImageQualityResultStatus = {
|
|
|
2248
2208
|
__webpack_require__.r(__webpack_exports__);
|
|
2249
2209
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2250
2210
|
/* harmony export */ CameraPosition: () => (/* reexport safe */ _customization_camera_position__WEBPACK_IMPORTED_MODULE_1__.CameraPosition),
|
|
2251
|
-
/* harmony export */ ComparedFace: () => (/* reexport safe */
|
|
2252
|
-
/* harmony export */ ComparedFacesPair: () => (/* reexport safe */
|
|
2253
|
-
/* harmony export */ ComparedFacesSplit: () => (/* reexport safe */
|
|
2211
|
+
/* harmony export */ ComparedFace: () => (/* reexport safe */ _match_faces_compared_face__WEBPACK_IMPORTED_MODULE_40__.ComparedFace),
|
|
2212
|
+
/* harmony export */ ComparedFacesPair: () => (/* reexport safe */ _match_faces_compared_faces_pair__WEBPACK_IMPORTED_MODULE_41__.ComparedFacesPair),
|
|
2213
|
+
/* harmony export */ ComparedFacesSplit: () => (/* reexport safe */ _match_faces_compared_faces_split__WEBPACK_IMPORTED_MODULE_42__.ComparedFacesSplit),
|
|
2254
2214
|
/* harmony export */ Customization: () => (/* reexport safe */ _customization_customization__WEBPACK_IMPORTED_MODULE_5__.Customization),
|
|
2255
2215
|
/* harmony export */ CustomizationColors: () => (/* reexport safe */ _customization_customization_colors__WEBPACK_IMPORTED_MODULE_2__.CustomizationColors),
|
|
2256
2216
|
/* harmony export */ CustomizationFonts: () => (/* reexport safe */ _customization_customization_fonts__WEBPACK_IMPORTED_MODULE_3__.CustomizationFonts),
|
|
@@ -2266,11 +2226,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2266
2226
|
/* harmony export */ DetectFacesRequest: () => (/* reexport safe */ _detect_faces_detect_faces_request__WEBPACK_IMPORTED_MODULE_18__.DetectFacesRequest),
|
|
2267
2227
|
/* harmony export */ DetectFacesResponse: () => (/* reexport safe */ _detect_faces_detect_faces_response__WEBPACK_IMPORTED_MODULE_19__.DetectFacesResponse),
|
|
2268
2228
|
/* harmony export */ DetectFacesScenario: () => (/* reexport safe */ _detect_faces_detect_faces_scenario__WEBPACK_IMPORTED_MODULE_20__.DetectFacesScenario),
|
|
2269
|
-
/* harmony export */ EditGroupPersonsRequest: () => (/* reexport safe */
|
|
2270
|
-
/* harmony export */ EnrollmentConfig: () => (/* reexport safe */ _liveness_enrollment_config__WEBPACK_IMPORTED_MODULE_36__.EnrollmentConfig),
|
|
2271
|
-
/* harmony export */ EnrollmentRequest: () => (/* reexport safe */ _liveness_enrollment_request__WEBPACK_IMPORTED_MODULE_37__.EnrollmentRequest),
|
|
2272
|
-
/* harmony export */ EnrollmentResponse: () => (/* reexport safe */ _liveness_enrollment_response__WEBPACK_IMPORTED_MODULE_44__.EnrollmentResponse),
|
|
2273
|
-
/* harmony export */ ErrorResponse: () => (/* reexport safe */ _liveness_error_response__WEBPACK_IMPORTED_MODULE_43__.ErrorResponse),
|
|
2229
|
+
/* harmony export */ EditGroupPersonsRequest: () => (/* reexport safe */ _person_database_edit_group_persons_request__WEBPACK_IMPORTED_MODULE_51__.EditGroupPersonsRequest),
|
|
2274
2230
|
/* harmony export */ FaceCaptureConfig: () => (/* reexport safe */ _face_capture_face_capture_config__WEBPACK_IMPORTED_MODULE_21__.FaceCaptureConfig),
|
|
2275
2231
|
/* harmony export */ FaceCaptureErrorCode: () => (/* reexport safe */ _face_capture_face_capture_exception__WEBPACK_IMPORTED_MODULE_22__.FaceCaptureErrorCode),
|
|
2276
2232
|
/* harmony export */ FaceCaptureException: () => (/* reexport safe */ _face_capture_face_capture_exception__WEBPACK_IMPORTED_MODULE_22__.FaceCaptureException),
|
|
@@ -2287,53 +2243,50 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2287
2243
|
/* harmony export */ ImageQualityResult: () => (/* reexport safe */ _image_quality_image_quality_result__WEBPACK_IMPORTED_MODULE_34__.ImageQualityResult),
|
|
2288
2244
|
/* harmony export */ ImageQualityResultStatus: () => (/* reexport safe */ _image_quality_image_quality_result__WEBPACK_IMPORTED_MODULE_34__.ImageQualityResultStatus),
|
|
2289
2245
|
/* harmony export */ ImageType: () => (/* reexport safe */ _face_capture_face_capture_image__WEBPACK_IMPORTED_MODULE_23__.ImageType),
|
|
2290
|
-
/* harmony export */ ImageUpload: () => (/* reexport safe */
|
|
2246
|
+
/* harmony export */ ImageUpload: () => (/* reexport safe */ _person_database_image_upload__WEBPACK_IMPORTED_MODULE_52__.ImageUpload),
|
|
2291
2247
|
/* harmony export */ InitConfig: () => (/* reexport safe */ _init_init_config__WEBPACK_IMPORTED_MODULE_9__.InitConfig),
|
|
2292
2248
|
/* harmony export */ InitErrorCode: () => (/* reexport safe */ _init_init_exception__WEBPACK_IMPORTED_MODULE_10__.InitErrorCode),
|
|
2293
2249
|
/* harmony export */ InitException: () => (/* reexport safe */ _init_init_exception__WEBPACK_IMPORTED_MODULE_10__.InitException),
|
|
2294
2250
|
/* harmony export */ LicenseException: () => (/* reexport safe */ _init_license_exception__WEBPACK_IMPORTED_MODULE_11__.LicenseException),
|
|
2295
2251
|
/* harmony export */ LicensingResultCode: () => (/* reexport safe */ _init_license_exception__WEBPACK_IMPORTED_MODULE_11__.LicensingResultCode),
|
|
2296
|
-
/* harmony export */ LivenessBackendErrorCode: () => (/* reexport safe */
|
|
2297
|
-
/* harmony export */ LivenessBackendException: () => (/* reexport safe */
|
|
2298
|
-
/* harmony export */ LivenessConfig: () => (/* reexport safe */
|
|
2299
|
-
/* harmony export */ LivenessErrorCode: () => (/* reexport safe */
|
|
2300
|
-
/* harmony export */ LivenessException: () => (/* reexport safe */
|
|
2301
|
-
/* harmony export */ LivenessNotification: () => (/* reexport safe */
|
|
2302
|
-
/* harmony export */ LivenessProcessStatus: () => (/* reexport safe */
|
|
2303
|
-
/* harmony export */ LivenessResponse: () => (/* reexport safe */
|
|
2304
|
-
/* harmony export */ LivenessSkipStep: () => (/* reexport safe */
|
|
2305
|
-
/* harmony export */ LivenessStatus: () => (/* reexport safe */
|
|
2306
|
-
/* harmony export */ LivenessType: () => (/* reexport safe */
|
|
2307
|
-
/* harmony export */ MatchFacesBackendException: () => (/* reexport safe */
|
|
2308
|
-
/* harmony export */ MatchFacesConfig: () => (/* reexport safe */
|
|
2309
|
-
/* harmony export */ MatchFacesDetection: () => (/* reexport safe */
|
|
2310
|
-
/* harmony export */ MatchFacesDetectionFace: () => (/* reexport safe */
|
|
2311
|
-
/* harmony export */ MatchFacesErrorCode: () => (/* reexport safe */
|
|
2312
|
-
/* harmony export */ MatchFacesException: () => (/* reexport safe */
|
|
2313
|
-
/* harmony export */ MatchFacesImage: () => (/* reexport safe */
|
|
2314
|
-
/* harmony export */ MatchFacesRequest: () => (/* reexport safe */
|
|
2315
|
-
/* harmony export */ MatchFacesResponse: () => (/* reexport safe */
|
|
2252
|
+
/* harmony export */ LivenessBackendErrorCode: () => (/* reexport safe */ _liveness_liveness_backend_exception__WEBPACK_IMPORTED_MODULE_35__.LivenessBackendErrorCode),
|
|
2253
|
+
/* harmony export */ LivenessBackendException: () => (/* reexport safe */ _liveness_liveness_backend_exception__WEBPACK_IMPORTED_MODULE_35__.LivenessBackendException),
|
|
2254
|
+
/* harmony export */ LivenessConfig: () => (/* reexport safe */ _liveness_liveness_config__WEBPACK_IMPORTED_MODULE_36__.LivenessConfig),
|
|
2255
|
+
/* harmony export */ LivenessErrorCode: () => (/* reexport safe */ _liveness_liveness_exception__WEBPACK_IMPORTED_MODULE_37__.LivenessErrorCode),
|
|
2256
|
+
/* harmony export */ LivenessException: () => (/* reexport safe */ _liveness_liveness_exception__WEBPACK_IMPORTED_MODULE_37__.LivenessException),
|
|
2257
|
+
/* harmony export */ LivenessNotification: () => (/* reexport safe */ _liveness_liveness_notification__WEBPACK_IMPORTED_MODULE_38__.LivenessNotification),
|
|
2258
|
+
/* harmony export */ LivenessProcessStatus: () => (/* reexport safe */ _liveness_liveness_notification__WEBPACK_IMPORTED_MODULE_38__.LivenessProcessStatus),
|
|
2259
|
+
/* harmony export */ LivenessResponse: () => (/* reexport safe */ _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_39__.LivenessResponse),
|
|
2260
|
+
/* harmony export */ LivenessSkipStep: () => (/* reexport safe */ _liveness_liveness_config__WEBPACK_IMPORTED_MODULE_36__.LivenessSkipStep),
|
|
2261
|
+
/* harmony export */ LivenessStatus: () => (/* reexport safe */ _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_39__.LivenessStatus),
|
|
2262
|
+
/* harmony export */ LivenessType: () => (/* reexport safe */ _liveness_liveness_config__WEBPACK_IMPORTED_MODULE_36__.LivenessType),
|
|
2263
|
+
/* harmony export */ MatchFacesBackendException: () => (/* reexport safe */ _match_faces_match_faces_backend_exception__WEBPACK_IMPORTED_MODULE_43__.MatchFacesBackendException),
|
|
2264
|
+
/* harmony export */ MatchFacesConfig: () => (/* reexport safe */ _match_faces_match_faces_config__WEBPACK_IMPORTED_MODULE_44__.MatchFacesConfig),
|
|
2265
|
+
/* harmony export */ MatchFacesDetection: () => (/* reexport safe */ _match_faces_match_faces_detection__WEBPACK_IMPORTED_MODULE_46__.MatchFacesDetection),
|
|
2266
|
+
/* harmony export */ MatchFacesDetectionFace: () => (/* reexport safe */ _match_faces_match_faces_detection_face__WEBPACK_IMPORTED_MODULE_45__.MatchFacesDetectionFace),
|
|
2267
|
+
/* harmony export */ MatchFacesErrorCode: () => (/* reexport safe */ _match_faces_match_faces_exception__WEBPACK_IMPORTED_MODULE_47__.MatchFacesErrorCode),
|
|
2268
|
+
/* harmony export */ MatchFacesException: () => (/* reexport safe */ _match_faces_match_faces_exception__WEBPACK_IMPORTED_MODULE_47__.MatchFacesException),
|
|
2269
|
+
/* harmony export */ MatchFacesImage: () => (/* reexport safe */ _match_faces_match_faces_image__WEBPACK_IMPORTED_MODULE_48__.MatchFacesImage),
|
|
2270
|
+
/* harmony export */ MatchFacesRequest: () => (/* reexport safe */ _match_faces_match_faces_request__WEBPACK_IMPORTED_MODULE_49__.MatchFacesRequest),
|
|
2271
|
+
/* harmony export */ MatchFacesResponse: () => (/* reexport safe */ _match_faces_match_faces_response__WEBPACK_IMPORTED_MODULE_50__.MatchFacesResponse),
|
|
2316
2272
|
/* harmony export */ OutputImageCrop: () => (/* reexport safe */ _image_params_output_image_crop__WEBPACK_IMPORTED_MODULE_25__.OutputImageCrop),
|
|
2317
2273
|
/* harmony export */ OutputImageCropAspectRatio: () => (/* reexport safe */ _image_params_output_image_crop__WEBPACK_IMPORTED_MODULE_25__.OutputImageCropAspectRatio),
|
|
2318
2274
|
/* harmony export */ OutputImageParams: () => (/* reexport safe */ _image_params_output_image_params__WEBPACK_IMPORTED_MODULE_26__.OutputImageParams),
|
|
2319
|
-
/* harmony export */ PageableItemList: () => (/* reexport safe */
|
|
2320
|
-
/* harmony export */ Person: () => (/* reexport safe */
|
|
2321
|
-
/* harmony export */ PersonDatabase: () => (/* reexport safe */
|
|
2322
|
-
/* harmony export */ PersonGroup: () => (/* reexport safe */
|
|
2323
|
-
/* harmony export */ PersonImage: () => (/* reexport safe */
|
|
2275
|
+
/* harmony export */ PageableItemList: () => (/* reexport safe */ _person_database_pageable_item_list__WEBPACK_IMPORTED_MODULE_53__.PageableItemList),
|
|
2276
|
+
/* harmony export */ Person: () => (/* reexport safe */ _person_database_person__WEBPACK_IMPORTED_MODULE_57__.Person),
|
|
2277
|
+
/* harmony export */ PersonDatabase: () => (/* reexport safe */ _person_database_person_database__WEBPACK_IMPORTED_MODULE_54__.PersonDatabase),
|
|
2278
|
+
/* harmony export */ PersonGroup: () => (/* reexport safe */ _person_database_person_group__WEBPACK_IMPORTED_MODULE_55__.PersonGroup),
|
|
2279
|
+
/* harmony export */ PersonImage: () => (/* reexport safe */ _person_database_person_image__WEBPACK_IMPORTED_MODULE_56__.PersonImage),
|
|
2324
2280
|
/* harmony export */ Point: () => (/* reexport safe */ _image_params_point__WEBPACK_IMPORTED_MODULE_27__.Point),
|
|
2325
|
-
/* harmony export */ ProcessingMode: () => (/* reexport safe */
|
|
2326
|
-
/* harmony export */ RecordingProcess: () => (/* reexport safe */
|
|
2281
|
+
/* harmony export */ ProcessingMode: () => (/* reexport safe */ _match_faces_match_faces_config__WEBPACK_IMPORTED_MODULE_44__.ProcessingMode),
|
|
2282
|
+
/* harmony export */ RecordingProcess: () => (/* reexport safe */ _liveness_liveness_config__WEBPACK_IMPORTED_MODULE_36__.RecordingProcess),
|
|
2327
2283
|
/* harmony export */ Rect: () => (/* reexport safe */ _image_params_rect__WEBPACK_IMPORTED_MODULE_28__.Rect),
|
|
2328
2284
|
/* harmony export */ ScreenOrientation: () => (/* reexport safe */ _customization_screen_orientation__WEBPACK_IMPORTED_MODULE_7__.ScreenOrientation),
|
|
2329
|
-
/* harmony export */ SearchPerson: () => (/* reexport safe */
|
|
2330
|
-
/* harmony export */ SearchPersonDetection: () => (/* reexport safe */
|
|
2331
|
-
/* harmony export */ SearchPersonImage: () => (/* reexport safe */
|
|
2332
|
-
/* harmony export */ SearchPersonRequest: () => (/* reexport safe */
|
|
2333
|
-
/* harmony export */ Size: () => (/* reexport safe */ _image_params_size__WEBPACK_IMPORTED_MODULE_29__.Size)
|
|
2334
|
-
/* harmony export */ VerificationConfig: () => (/* reexport safe */ _liveness_verification_config__WEBPACK_IMPORTED_MODULE_38__.VerificationConfig),
|
|
2335
|
-
/* harmony export */ VerificationResponse: () => (/* reexport safe */ _liveness_verification_response__WEBPACK_IMPORTED_MODULE_46__.VerificationResponse),
|
|
2336
|
-
/* harmony export */ VerifyMatchResponse: () => (/* reexport safe */ _liveness_verify_match_response__WEBPACK_IMPORTED_MODULE_45__.VerifyMatchResponse)
|
|
2285
|
+
/* harmony export */ SearchPerson: () => (/* reexport safe */ _person_database_search_person__WEBPACK_IMPORTED_MODULE_61__.SearchPerson),
|
|
2286
|
+
/* harmony export */ SearchPersonDetection: () => (/* reexport safe */ _person_database_search_person_detection__WEBPACK_IMPORTED_MODULE_58__.SearchPersonDetection),
|
|
2287
|
+
/* harmony export */ SearchPersonImage: () => (/* reexport safe */ _person_database_search_person_image__WEBPACK_IMPORTED_MODULE_59__.SearchPersonImage),
|
|
2288
|
+
/* harmony export */ SearchPersonRequest: () => (/* reexport safe */ _person_database_search_person_request__WEBPACK_IMPORTED_MODULE_60__.SearchPersonRequest),
|
|
2289
|
+
/* harmony export */ Size: () => (/* reexport safe */ _image_params_size__WEBPACK_IMPORTED_MODULE_29__.Size)
|
|
2337
2290
|
/* harmony export */ });
|
|
2338
2291
|
/* harmony import */ var _internal_bridge__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./internal/bridge */ "./src/internal/bridge.js");
|
|
2339
2292
|
/* harmony import */ var _customization_camera_position__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./customization/camera_position */ "./src/customization/camera_position.js");
|
|
@@ -2370,41 +2323,33 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2370
2323
|
/* harmony import */ var _image_quality_image_quality_group__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./image_quality/image_quality_group */ "./src/image_quality/image_quality_group.js");
|
|
2371
2324
|
/* harmony import */ var _image_quality_image_quality_range__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./image_quality/image_quality_range */ "./src/image_quality/image_quality_range.js");
|
|
2372
2325
|
/* harmony import */ var _image_quality_image_quality_result__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./image_quality/image_quality_result */ "./src/image_quality/image_quality_result.js");
|
|
2373
|
-
/* harmony import */ var
|
|
2374
|
-
/* harmony import */ var
|
|
2375
|
-
/* harmony import */ var
|
|
2376
|
-
/* harmony import */ var
|
|
2377
|
-
/* harmony import */ var
|
|
2378
|
-
/* harmony import */ var
|
|
2379
|
-
/* harmony import */ var
|
|
2380
|
-
/* harmony import */ var
|
|
2381
|
-
/* harmony import */ var
|
|
2382
|
-
/* harmony import */ var
|
|
2383
|
-
/* harmony import */ var
|
|
2384
|
-
/* harmony import */ var
|
|
2385
|
-
/* harmony import */ var
|
|
2386
|
-
/* harmony import */ var
|
|
2387
|
-
/* harmony import */ var
|
|
2388
|
-
/* harmony import */ var
|
|
2389
|
-
/* harmony import */ var
|
|
2390
|
-
/* harmony import */ var
|
|
2391
|
-
/* harmony import */ var
|
|
2392
|
-
/* harmony import */ var
|
|
2393
|
-
/* harmony import */ var
|
|
2394
|
-
/* harmony import */ var
|
|
2395
|
-
/* harmony import */ var
|
|
2396
|
-
/* harmony import */ var
|
|
2397
|
-
/* harmony import */ var
|
|
2398
|
-
/* harmony import */ var
|
|
2399
|
-
/* harmony import */ var
|
|
2400
|
-
/* harmony import */ var _person_database_person_group__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./person_database/person_group */ "./src/person_database/person_group.js");
|
|
2401
|
-
/* harmony import */ var _person_database_person_image__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./person_database/person_image */ "./src/person_database/person_image.js");
|
|
2402
|
-
/* harmony import */ var _person_database_person__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./person_database/person */ "./src/person_database/person.js");
|
|
2403
|
-
/* harmony import */ var _person_database_search_person_detection__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./person_database/search_person_detection */ "./src/person_database/search_person_detection.js");
|
|
2404
|
-
/* harmony import */ var _person_database_search_person_image__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./person_database/search_person_image */ "./src/person_database/search_person_image.js");
|
|
2405
|
-
/* harmony import */ var _person_database_search_person_request__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./person_database/search_person_request */ "./src/person_database/search_person_request.js");
|
|
2406
|
-
/* harmony import */ var _person_database_search_person__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./person_database/search_person */ "./src/person_database/search_person.js");
|
|
2407
|
-
|
|
2326
|
+
/* harmony import */ var _liveness_liveness_backend_exception__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./liveness/liveness_backend_exception */ "./src/liveness/liveness_backend_exception.js");
|
|
2327
|
+
/* harmony import */ var _liveness_liveness_config__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./liveness/liveness_config */ "./src/liveness/liveness_config.js");
|
|
2328
|
+
/* harmony import */ var _liveness_liveness_exception__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./liveness/liveness_exception */ "./src/liveness/liveness_exception.js");
|
|
2329
|
+
/* harmony import */ var _liveness_liveness_notification__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./liveness/liveness_notification */ "./src/liveness/liveness_notification.js");
|
|
2330
|
+
/* harmony import */ var _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./liveness/liveness_response */ "./src/liveness/liveness_response.js");
|
|
2331
|
+
/* harmony import */ var _match_faces_compared_face__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./match_faces/compared_face */ "./src/match_faces/compared_face.js");
|
|
2332
|
+
/* harmony import */ var _match_faces_compared_faces_pair__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./match_faces/compared_faces_pair */ "./src/match_faces/compared_faces_pair.js");
|
|
2333
|
+
/* harmony import */ var _match_faces_compared_faces_split__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./match_faces/compared_faces_split */ "./src/match_faces/compared_faces_split.js");
|
|
2334
|
+
/* harmony import */ var _match_faces_match_faces_backend_exception__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./match_faces/match_faces_backend_exception */ "./src/match_faces/match_faces_backend_exception.js");
|
|
2335
|
+
/* harmony import */ var _match_faces_match_faces_config__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./match_faces/match_faces_config */ "./src/match_faces/match_faces_config.js");
|
|
2336
|
+
/* harmony import */ var _match_faces_match_faces_detection_face__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./match_faces/match_faces_detection_face */ "./src/match_faces/match_faces_detection_face.js");
|
|
2337
|
+
/* harmony import */ var _match_faces_match_faces_detection__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./match_faces/match_faces_detection */ "./src/match_faces/match_faces_detection.js");
|
|
2338
|
+
/* harmony import */ var _match_faces_match_faces_exception__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./match_faces/match_faces_exception */ "./src/match_faces/match_faces_exception.js");
|
|
2339
|
+
/* harmony import */ var _match_faces_match_faces_image__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./match_faces/match_faces_image */ "./src/match_faces/match_faces_image.js");
|
|
2340
|
+
/* harmony import */ var _match_faces_match_faces_request__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./match_faces/match_faces_request */ "./src/match_faces/match_faces_request.js");
|
|
2341
|
+
/* harmony import */ var _match_faces_match_faces_response__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./match_faces/match_faces_response */ "./src/match_faces/match_faces_response.js");
|
|
2342
|
+
/* harmony import */ var _person_database_edit_group_persons_request__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./person_database/edit_group_persons_request */ "./src/person_database/edit_group_persons_request.js");
|
|
2343
|
+
/* harmony import */ var _person_database_image_upload__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./person_database/image_upload */ "./src/person_database/image_upload.js");
|
|
2344
|
+
/* harmony import */ var _person_database_pageable_item_list__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./person_database/pageable_item_list */ "./src/person_database/pageable_item_list.js");
|
|
2345
|
+
/* harmony import */ var _person_database_person_database__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./person_database/person_database */ "./src/person_database/person_database.js");
|
|
2346
|
+
/* harmony import */ var _person_database_person_group__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./person_database/person_group */ "./src/person_database/person_group.js");
|
|
2347
|
+
/* harmony import */ var _person_database_person_image__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./person_database/person_image */ "./src/person_database/person_image.js");
|
|
2348
|
+
/* harmony import */ var _person_database_person__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./person_database/person */ "./src/person_database/person.js");
|
|
2349
|
+
/* harmony import */ var _person_database_search_person_detection__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./person_database/search_person_detection */ "./src/person_database/search_person_detection.js");
|
|
2350
|
+
/* harmony import */ var _person_database_search_person_image__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./person_database/search_person_image */ "./src/person_database/search_person_image.js");
|
|
2351
|
+
/* harmony import */ var _person_database_search_person_request__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./person_database/search_person_request */ "./src/person_database/search_person_request.js");
|
|
2352
|
+
/* harmony import */ var _person_database_search_person__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./person_database/search_person */ "./src/person_database/search_person.js");
|
|
2408
2353
|
|
|
2409
2354
|
|
|
2410
2355
|
|
|
@@ -2415,26 +2360,24 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2415
2360
|
|
|
2416
2361
|
|
|
2417
2362
|
|
|
2418
|
-
;
|
|
2419
|
-
|
|
2420
2363
|
|
|
2421
2364
|
|
|
2365
|
+
;
|
|
2422
2366
|
|
|
2423
2367
|
|
|
2424
2368
|
|
|
2425
2369
|
|
|
2426
|
-
;
|
|
2427
2370
|
|
|
2428
2371
|
|
|
2429
2372
|
|
|
2430
2373
|
|
|
2374
|
+
;
|
|
2431
2375
|
|
|
2432
2376
|
|
|
2433
2377
|
|
|
2434
2378
|
|
|
2435
2379
|
|
|
2436
2380
|
|
|
2437
|
-
;
|
|
2438
2381
|
|
|
2439
2382
|
|
|
2440
2383
|
|
|
@@ -2454,6 +2397,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2454
2397
|
|
|
2455
2398
|
|
|
2456
2399
|
|
|
2400
|
+
|
|
2457
2401
|
;
|
|
2458
2402
|
|
|
2459
2403
|
|
|
@@ -2462,6 +2406,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2462
2406
|
|
|
2463
2407
|
|
|
2464
2408
|
|
|
2409
|
+
;
|
|
2410
|
+
|
|
2465
2411
|
|
|
2466
2412
|
|
|
2467
2413
|
|
|
@@ -2481,6 +2427,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2481
2427
|
|
|
2482
2428
|
|
|
2483
2429
|
|
|
2430
|
+
|
|
2484
2431
|
;
|
|
2485
2432
|
|
|
2486
2433
|
|
|
@@ -2495,6 +2442,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2495
2442
|
|
|
2496
2443
|
|
|
2497
2444
|
|
|
2445
|
+
|
|
2498
2446
|
class FaceSDK {
|
|
2499
2447
|
static get instance() { return FaceSDK._instance }
|
|
2500
2448
|
static _instance = new FaceSDK()
|
|
@@ -2560,7 +2508,7 @@ class FaceSDK {
|
|
|
2560
2508
|
}
|
|
2561
2509
|
|
|
2562
2510
|
get personDatabase() { return this._personDatabase }
|
|
2563
|
-
_personDatabase = new
|
|
2511
|
+
_personDatabase = new _person_database_person_database__WEBPACK_IMPORTED_MODULE_54__.PersonDatabase()
|
|
2564
2512
|
|
|
2565
2513
|
async isInitialized() {
|
|
2566
2514
|
return await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("isInitialized", [])
|
|
@@ -2596,30 +2544,7 @@ class FaceSDK {
|
|
|
2596
2544
|
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setCameraSwitchCallback)(params?.cameraSwitchCallback)
|
|
2597
2545
|
;(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setLivenessNotificationCompletion)(params?.notificationCompletion)
|
|
2598
2546
|
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startLiveness", [params?.config])
|
|
2599
|
-
return
|
|
2600
|
-
}
|
|
2601
|
-
|
|
2602
|
-
async startEnrollment(params) {
|
|
2603
|
-
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setCameraSwitchCallback)(params?.cameraSwitchCallback)
|
|
2604
|
-
;(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setLivenessNotificationCompletion)(params?.notificationCompletion)
|
|
2605
|
-
var response = JSON.parse(await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startEnrollment", [params.config]))
|
|
2606
|
-
var lr = _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_41__.LivenessResponse.fromJson(response["livenessResponse"]);
|
|
2607
|
-
var er = _liveness_enrollment_response__WEBPACK_IMPORTED_MODULE_44__.EnrollmentResponse.fromJson(response["enrollmentResponse"]);
|
|
2608
|
-
return [lr, er];
|
|
2609
|
-
}
|
|
2610
|
-
|
|
2611
|
-
async startVerification(params) {
|
|
2612
|
-
(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setCameraSwitchCallback)(params?.cameraSwitchCallback)
|
|
2613
|
-
;(0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__._setLivenessNotificationCompletion)(params?.notificationCompletion)
|
|
2614
|
-
var response = JSON.parse(await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("startVerification", [params.config]))
|
|
2615
|
-
var lr = _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_41__.LivenessResponse.fromJson(response["livenessResponse"]);
|
|
2616
|
-
var er = _liveness_verification_response__WEBPACK_IMPORTED_MODULE_46__.VerificationResponse.fromJson(response["verificationResponse"]);
|
|
2617
|
-
return [lr, er];
|
|
2618
|
-
}
|
|
2619
|
-
|
|
2620
|
-
async enrollWithTrustedPhoto(request) {
|
|
2621
|
-
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("enrollWithTrustedPhoto", [request])
|
|
2622
|
-
return _liveness_enrollment_response__WEBPACK_IMPORTED_MODULE_44__.EnrollmentResponse.fromJson(JSON.parse(response));
|
|
2547
|
+
return _liveness_liveness_response__WEBPACK_IMPORTED_MODULE_39__.LivenessResponse.fromJson(JSON.parse(response))
|
|
2623
2548
|
}
|
|
2624
2549
|
|
|
2625
2550
|
stopLiveness() {
|
|
@@ -2628,12 +2553,12 @@ class FaceSDK {
|
|
|
2628
2553
|
|
|
2629
2554
|
async matchFaces(request, params) {
|
|
2630
2555
|
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("matchFaces", [request, params?.config])
|
|
2631
|
-
return
|
|
2556
|
+
return _match_faces_match_faces_response__WEBPACK_IMPORTED_MODULE_50__.MatchFacesResponse.fromJson(JSON.parse(response))
|
|
2632
2557
|
}
|
|
2633
2558
|
|
|
2634
2559
|
async splitComparedFaces(facesPairs, similarityThreshold) {
|
|
2635
2560
|
var response = await (0,_internal_bridge__WEBPACK_IMPORTED_MODULE_0__.exec)("splitComparedFaces", [facesPairs, similarityThreshold])
|
|
2636
|
-
return
|
|
2561
|
+
return _match_faces_compared_faces_split__WEBPACK_IMPORTED_MODULE_42__.ComparedFacesSplit.fromJson(JSON.parse(response))
|
|
2637
2562
|
}
|
|
2638
2563
|
|
|
2639
2564
|
async detectFaces(request) {
|
|
@@ -2995,249 +2920,6 @@ class NativeEventEmitter {
|
|
|
2995
2920
|
}
|
|
2996
2921
|
}
|
|
2997
2922
|
|
|
2998
|
-
/***/ },
|
|
2999
|
-
|
|
3000
|
-
/***/ "./src/liveness/enrollment_config.js"
|
|
3001
|
-
/*!*******************************************!*\
|
|
3002
|
-
!*** ./src/liveness/enrollment_config.js ***!
|
|
3003
|
-
\*******************************************/
|
|
3004
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3005
|
-
|
|
3006
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3007
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3008
|
-
/* harmony export */ EnrollmentConfig: () => (/* binding */ EnrollmentConfig)
|
|
3009
|
-
/* harmony export */ });
|
|
3010
|
-
/* harmony import */ var _customization_camera_position__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../customization/camera_position */ "./src/customization/camera_position.js");
|
|
3011
|
-
/* harmony import */ var _customization_screen_orientation__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../customization/screen_orientation */ "./src/customization/screen_orientation.js");
|
|
3012
|
-
/* harmony import */ var _liveness_config__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./liveness_config */ "./src/liveness/liveness_config.js");
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
class EnrollmentConfig {
|
|
3018
|
-
copyright
|
|
3019
|
-
cameraSwitchEnabled
|
|
3020
|
-
closeButtonEnabled
|
|
3021
|
-
torchButtonEnabled
|
|
3022
|
-
vibrateOnSteps
|
|
3023
|
-
cameraPositionIOS
|
|
3024
|
-
cameraPositionAndroid
|
|
3025
|
-
screenOrientation
|
|
3026
|
-
locationTrackingEnabled
|
|
3027
|
-
preventScreenRecording
|
|
3028
|
-
attemptsCount
|
|
3029
|
-
recordingProcess
|
|
3030
|
-
livenessType
|
|
3031
|
-
tag
|
|
3032
|
-
skipStep
|
|
3033
|
-
metadata
|
|
3034
|
-
externalId
|
|
3035
|
-
groupId
|
|
3036
|
-
checkDuplicatesEnabled
|
|
3037
|
-
duplicatesThreshold
|
|
3038
|
-
|
|
3039
|
-
constructor(params) {
|
|
3040
|
-
this.copyright = params?.copyright ?? true
|
|
3041
|
-
this.cameraSwitchEnabled = params?.cameraSwitchEnabled ?? false
|
|
3042
|
-
this.closeButtonEnabled = params?.closeButtonEnabled ?? true
|
|
3043
|
-
this.torchButtonEnabled = params?.torchButtonEnabled ?? true
|
|
3044
|
-
this.vibrateOnSteps = params?.vibrateOnSteps ?? true
|
|
3045
|
-
this.cameraPositionIOS = params?.cameraPositionIOS ?? _customization_camera_position__WEBPACK_IMPORTED_MODULE_0__.CameraPosition.FRONT
|
|
3046
|
-
this.cameraPositionAndroid = params?.cameraPositionAndroid
|
|
3047
|
-
this.screenOrientation = params?.screenOrientation ?? [_customization_screen_orientation__WEBPACK_IMPORTED_MODULE_1__.ScreenOrientation.PORTRAIT]
|
|
3048
|
-
this.locationTrackingEnabled = params?.locationTrackingEnabled ?? true
|
|
3049
|
-
this.preventScreenRecording = params?.preventScreenRecording ?? false
|
|
3050
|
-
this.attemptsCount = params?.attemptsCount ?? 0
|
|
3051
|
-
this.recordingProcess = params?.recordingProcess ?? _liveness_config__WEBPACK_IMPORTED_MODULE_2__.RecordingProcess.ASYNCHRONOUS_UPLOAD
|
|
3052
|
-
this.livenessType = params?.livenessType ?? _liveness_config__WEBPACK_IMPORTED_MODULE_2__.LivenessType.ACTIVE
|
|
3053
|
-
this.tag = params?.tag
|
|
3054
|
-
this.skipStep = params?.skipStep ?? []
|
|
3055
|
-
this.metadata = params?.metadata
|
|
3056
|
-
this.externalId = params?.externalId
|
|
3057
|
-
this.groupId = params?.groupId
|
|
3058
|
-
this.checkDuplicatesEnabled = params?.checkDuplicatesEnabled
|
|
3059
|
-
this.duplicatesThreshold = params?.duplicatesThreshold
|
|
3060
|
-
}
|
|
3061
|
-
|
|
3062
|
-
static fromJson(jsonObject) {
|
|
3063
|
-
if (jsonObject == null) return null
|
|
3064
|
-
const result = new EnrollmentConfig()
|
|
3065
|
-
|
|
3066
|
-
result.copyright = jsonObject["copyright"]
|
|
3067
|
-
result.cameraSwitchEnabled = jsonObject["cameraSwitchEnabled"]
|
|
3068
|
-
result.closeButtonEnabled = jsonObject["closeButtonEnabled"]
|
|
3069
|
-
result.torchButtonEnabled = jsonObject["torchButtonEnabled"]
|
|
3070
|
-
result.vibrateOnSteps = jsonObject["vibrateOnSteps"]
|
|
3071
|
-
result.cameraPositionAndroid = jsonObject["cameraPositionAndroid"]
|
|
3072
|
-
result.cameraPositionIOS = jsonObject["cameraPositionIOS"]
|
|
3073
|
-
result.screenOrientation = jsonObject["screenOrientation"]
|
|
3074
|
-
result.locationTrackingEnabled = jsonObject["locationTrackingEnabled"]
|
|
3075
|
-
result.preventScreenRecording = jsonObject["preventScreenRecording"]
|
|
3076
|
-
result.attemptsCount = jsonObject["attemptsCount"]
|
|
3077
|
-
result.recordingProcess = jsonObject["recordingProcess"]
|
|
3078
|
-
result.livenessType = jsonObject["livenessType"]
|
|
3079
|
-
result.tag = jsonObject["tag"]
|
|
3080
|
-
result.skipStep = jsonObject["skipStep"]
|
|
3081
|
-
result.metadata = jsonObject["metadata"]
|
|
3082
|
-
result.externalId = jsonObject["externalId"]
|
|
3083
|
-
result.groupId = jsonObject["groupId"]
|
|
3084
|
-
result.checkDuplicatesEnabled = jsonObject["checkDuplicatesEnabled"]
|
|
3085
|
-
result.duplicatesThreshold = jsonObject["duplicatesThreshold"]
|
|
3086
|
-
|
|
3087
|
-
return result
|
|
3088
|
-
}
|
|
3089
|
-
|
|
3090
|
-
toJson() {
|
|
3091
|
-
return {
|
|
3092
|
-
"copyright": this.copyright,
|
|
3093
|
-
"cameraSwitchEnabled": this.cameraSwitchEnabled,
|
|
3094
|
-
"closeButtonEnabled": this.closeButtonEnabled,
|
|
3095
|
-
"torchButtonEnabled": this.torchButtonEnabled,
|
|
3096
|
-
"vibrateOnSteps": this.vibrateOnSteps,
|
|
3097
|
-
"cameraPositionAndroid": this.cameraPositionAndroid,
|
|
3098
|
-
"cameraPositionIOS": this.cameraPositionIOS,
|
|
3099
|
-
"screenOrientation": this.screenOrientation,
|
|
3100
|
-
"locationTrackingEnabled": this.locationTrackingEnabled,
|
|
3101
|
-
"preventScreenRecording": this.preventScreenRecording,
|
|
3102
|
-
"attemptsCount": this.attemptsCount,
|
|
3103
|
-
"recordingProcess": this.recordingProcess,
|
|
3104
|
-
"livenessType": this.livenessType,
|
|
3105
|
-
"tag": this.tag,
|
|
3106
|
-
"skipStep": this.skipStep,
|
|
3107
|
-
"metadata": this.metadata,
|
|
3108
|
-
"externalId": this.externalId,
|
|
3109
|
-
"groupId": this.groupId,
|
|
3110
|
-
"checkDuplicatesEnabled": this.checkDuplicatesEnabled,
|
|
3111
|
-
"duplicatesThreshold": this.duplicatesThreshold,
|
|
3112
|
-
}
|
|
3113
|
-
}
|
|
3114
|
-
}
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
/***/ },
|
|
3118
|
-
|
|
3119
|
-
/***/ "./src/liveness/enrollment_request.js"
|
|
3120
|
-
/*!********************************************!*\
|
|
3121
|
-
!*** ./src/liveness/enrollment_request.js ***!
|
|
3122
|
-
\********************************************/
|
|
3123
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3124
|
-
|
|
3125
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3126
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3127
|
-
/* harmony export */ EnrollmentRequest: () => (/* binding */ EnrollmentRequest)
|
|
3128
|
-
/* harmony export */ });
|
|
3129
|
-
class EnrollmentRequest {
|
|
3130
|
-
externalId
|
|
3131
|
-
groupId
|
|
3132
|
-
trustedImage
|
|
3133
|
-
trustedImageUrl
|
|
3134
|
-
|
|
3135
|
-
constructor(params) {
|
|
3136
|
-
this.externalId = params?.externalId
|
|
3137
|
-
this.groupId = params?.groupId
|
|
3138
|
-
this.trustedImage = params?.trustedImage
|
|
3139
|
-
this.trustedImageUrl = params?.trustedImageUrl
|
|
3140
|
-
}
|
|
3141
|
-
|
|
3142
|
-
static fromJson(jsonObject) {
|
|
3143
|
-
if (jsonObject == null) return null
|
|
3144
|
-
const result = new EnrollmentRequest()
|
|
3145
|
-
|
|
3146
|
-
result.externalId = jsonObject["externalId"]
|
|
3147
|
-
result.groupId = jsonObject["groupId"]
|
|
3148
|
-
result.trustedImage = jsonObject["trustedImage"]
|
|
3149
|
-
result.trustedImageUrl = jsonObject["trustedImageUrl"]
|
|
3150
|
-
|
|
3151
|
-
return result
|
|
3152
|
-
}
|
|
3153
|
-
|
|
3154
|
-
toJson() {
|
|
3155
|
-
return {
|
|
3156
|
-
"externalId": this.externalId,
|
|
3157
|
-
"groupId": this.groupId,
|
|
3158
|
-
"trustedImage": this.trustedImage,
|
|
3159
|
-
"trustedImageUrl": this.trustedImageUrl,
|
|
3160
|
-
}
|
|
3161
|
-
}
|
|
3162
|
-
}
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
/***/ },
|
|
3166
|
-
|
|
3167
|
-
/***/ "./src/liveness/enrollment_response.js"
|
|
3168
|
-
/*!*********************************************!*\
|
|
3169
|
-
!*** ./src/liveness/enrollment_response.js ***!
|
|
3170
|
-
\*********************************************/
|
|
3171
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3172
|
-
|
|
3173
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3174
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3175
|
-
/* harmony export */ EnrollmentResponse: () => (/* binding */ EnrollmentResponse)
|
|
3176
|
-
/* harmony export */ });
|
|
3177
|
-
/* harmony import */ var _error_response__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./error_response */ "./src/liveness/error_response.js");
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
class EnrollmentResponse {
|
|
3181
|
-
personId
|
|
3182
|
-
externalId
|
|
3183
|
-
error
|
|
3184
|
-
|
|
3185
|
-
static fromJson(jsonObject) {
|
|
3186
|
-
if (jsonObject == null) return null
|
|
3187
|
-
const result = new EnrollmentResponse()
|
|
3188
|
-
|
|
3189
|
-
result.personId = jsonObject["personId"]
|
|
3190
|
-
result.externalId = jsonObject["externalId"]
|
|
3191
|
-
result.error = _error_response__WEBPACK_IMPORTED_MODULE_0__.ErrorResponse.fromJson(jsonObject["error"])
|
|
3192
|
-
|
|
3193
|
-
return result
|
|
3194
|
-
}
|
|
3195
|
-
|
|
3196
|
-
toJson() {
|
|
3197
|
-
return {
|
|
3198
|
-
"personId": this.personId,
|
|
3199
|
-
"externalId": this.externalId,
|
|
3200
|
-
"error": this.error?.toJson(),
|
|
3201
|
-
}
|
|
3202
|
-
}
|
|
3203
|
-
}
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
/***/ },
|
|
3207
|
-
|
|
3208
|
-
/***/ "./src/liveness/error_response.js"
|
|
3209
|
-
/*!****************************************!*\
|
|
3210
|
-
!*** ./src/liveness/error_response.js ***!
|
|
3211
|
-
\****************************************/
|
|
3212
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3213
|
-
|
|
3214
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3215
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3216
|
-
/* harmony export */ ErrorResponse: () => (/* binding */ ErrorResponse)
|
|
3217
|
-
/* harmony export */ });
|
|
3218
|
-
class ErrorResponse {
|
|
3219
|
-
code
|
|
3220
|
-
message
|
|
3221
|
-
|
|
3222
|
-
static fromJson(jsonObject) {
|
|
3223
|
-
if (jsonObject == null) return null
|
|
3224
|
-
const result = new ErrorResponse()
|
|
3225
|
-
|
|
3226
|
-
result.code = jsonObject["code"]
|
|
3227
|
-
result.message = jsonObject["message"]
|
|
3228
|
-
|
|
3229
|
-
return result
|
|
3230
|
-
}
|
|
3231
|
-
|
|
3232
|
-
toJson() {
|
|
3233
|
-
return {
|
|
3234
|
-
"code": this.code,
|
|
3235
|
-
"message": this.message,
|
|
3236
|
-
}
|
|
3237
|
-
}
|
|
3238
|
-
}
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
2923
|
/***/ },
|
|
3242
2924
|
|
|
3243
2925
|
/***/ "./src/liveness/liveness_backend_exception.js"
|
|
@@ -3420,7 +3102,6 @@ const RecordingProcess = {
|
|
|
3420
3102
|
const LivenessType = {
|
|
3421
3103
|
ACTIVE: 0,
|
|
3422
3104
|
PASSIVE: 1,
|
|
3423
|
-
PASSIVE_WITH_BLINK: 2,
|
|
3424
3105
|
}
|
|
3425
3106
|
|
|
3426
3107
|
const LivenessSkipStep = {
|
|
@@ -3479,12 +3160,11 @@ const LivenessErrorCode = {
|
|
|
3479
3160
|
PROCESSING_FAILED: 6,
|
|
3480
3161
|
PROCESSING_FRAME_FAILED: 7,
|
|
3481
3162
|
APPLICATION_INACTIVE: 8,
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
CAMERA_NOT_AVAILABLE: 14,
|
|
3163
|
+
CONTEXT_IS_NULL: 9,
|
|
3164
|
+
IN_PROGRESS_ALREADY: 10,
|
|
3165
|
+
ZOOM_NOT_SUPPORTED: 11,
|
|
3166
|
+
CAMERA_NO_PERMISSION: 12,
|
|
3167
|
+
CAMERA_NOT_AVAILABLE: 13,
|
|
3488
3168
|
}
|
|
3489
3169
|
|
|
3490
3170
|
/***/ },
|
|
@@ -3541,8 +3221,6 @@ const LivenessProcessStatus = {
|
|
|
3541
3221
|
FAILED: 12,
|
|
3542
3222
|
RETRY: 13,
|
|
3543
3223
|
SUCCESS: 14,
|
|
3544
|
-
BLINK: 15,
|
|
3545
|
-
BAD_FACE_QUALITY: 16,
|
|
3546
3224
|
}
|
|
3547
3225
|
|
|
3548
3226
|
/***/ },
|
|
@@ -3601,199 +3279,6 @@ const LivenessStatus = {
|
|
|
3601
3279
|
UNKNOWN: 1,
|
|
3602
3280
|
}
|
|
3603
3281
|
|
|
3604
|
-
/***/ },
|
|
3605
|
-
|
|
3606
|
-
/***/ "./src/liveness/verification_config.js"
|
|
3607
|
-
/*!*********************************************!*\
|
|
3608
|
-
!*** ./src/liveness/verification_config.js ***!
|
|
3609
|
-
\*********************************************/
|
|
3610
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3611
|
-
|
|
3612
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3613
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3614
|
-
/* harmony export */ VerificationConfig: () => (/* binding */ VerificationConfig)
|
|
3615
|
-
/* harmony export */ });
|
|
3616
|
-
/* harmony import */ var _customization_camera_position__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../customization/camera_position */ "./src/customization/camera_position.js");
|
|
3617
|
-
/* harmony import */ var _customization_screen_orientation__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../customization/screen_orientation */ "./src/customization/screen_orientation.js");
|
|
3618
|
-
/* harmony import */ var _liveness_config__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./liveness_config */ "./src/liveness/liveness_config.js");
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
class VerificationConfig {
|
|
3624
|
-
copyright
|
|
3625
|
-
cameraSwitchEnabled
|
|
3626
|
-
closeButtonEnabled
|
|
3627
|
-
torchButtonEnabled
|
|
3628
|
-
vibrateOnSteps
|
|
3629
|
-
cameraPositionIOS
|
|
3630
|
-
cameraPositionAndroid
|
|
3631
|
-
screenOrientation
|
|
3632
|
-
locationTrackingEnabled
|
|
3633
|
-
preventScreenRecording
|
|
3634
|
-
attemptsCount
|
|
3635
|
-
recordingProcess
|
|
3636
|
-
livenessType
|
|
3637
|
-
tag
|
|
3638
|
-
skipStep
|
|
3639
|
-
metadata
|
|
3640
|
-
personId
|
|
3641
|
-
groupId
|
|
3642
|
-
threshold
|
|
3643
|
-
|
|
3644
|
-
constructor(params) {
|
|
3645
|
-
this.copyright = params?.copyright ?? true
|
|
3646
|
-
this.cameraSwitchEnabled = params?.cameraSwitchEnabled ?? false
|
|
3647
|
-
this.closeButtonEnabled = params?.closeButtonEnabled ?? true
|
|
3648
|
-
this.torchButtonEnabled = params?.torchButtonEnabled ?? true
|
|
3649
|
-
this.vibrateOnSteps = params?.vibrateOnSteps ?? true
|
|
3650
|
-
this.cameraPositionIOS = params?.cameraPositionIOS ?? _customization_camera_position__WEBPACK_IMPORTED_MODULE_0__.CameraPosition.FRONT
|
|
3651
|
-
this.cameraPositionAndroid = params?.cameraPositionAndroid
|
|
3652
|
-
this.screenOrientation = params?.screenOrientation ?? [_customization_screen_orientation__WEBPACK_IMPORTED_MODULE_1__.ScreenOrientation.PORTRAIT]
|
|
3653
|
-
this.locationTrackingEnabled = params?.locationTrackingEnabled ?? true
|
|
3654
|
-
this.preventScreenRecording = params?.preventScreenRecording ?? false
|
|
3655
|
-
this.attemptsCount = params?.attemptsCount ?? 0
|
|
3656
|
-
this.recordingProcess = params?.recordingProcess ?? _liveness_config__WEBPACK_IMPORTED_MODULE_2__.RecordingProcess.ASYNCHRONOUS_UPLOAD
|
|
3657
|
-
this.livenessType = params?.livenessType ?? _liveness_config__WEBPACK_IMPORTED_MODULE_2__.LivenessType.ACTIVE
|
|
3658
|
-
this.tag = params?.tag
|
|
3659
|
-
this.skipStep = params?.skipStep ?? []
|
|
3660
|
-
this.metadata = params?.metadata
|
|
3661
|
-
this.personId = params?.personId
|
|
3662
|
-
this.groupId = params?.groupId
|
|
3663
|
-
this.threshold = params?.threshold
|
|
3664
|
-
}
|
|
3665
|
-
|
|
3666
|
-
static fromJson(jsonObject) {
|
|
3667
|
-
if (jsonObject == null) return null
|
|
3668
|
-
const result = new VerificationConfig()
|
|
3669
|
-
|
|
3670
|
-
result.copyright = jsonObject["copyright"]
|
|
3671
|
-
result.cameraSwitchEnabled = jsonObject["cameraSwitchEnabled"]
|
|
3672
|
-
result.closeButtonEnabled = jsonObject["closeButtonEnabled"]
|
|
3673
|
-
result.torchButtonEnabled = jsonObject["torchButtonEnabled"]
|
|
3674
|
-
result.vibrateOnSteps = jsonObject["vibrateOnSteps"]
|
|
3675
|
-
result.cameraPositionAndroid = jsonObject["cameraPositionAndroid"]
|
|
3676
|
-
result.cameraPositionIOS = jsonObject["cameraPositionIOS"]
|
|
3677
|
-
result.screenOrientation = jsonObject["screenOrientation"]
|
|
3678
|
-
result.locationTrackingEnabled = jsonObject["locationTrackingEnabled"]
|
|
3679
|
-
result.preventScreenRecording = jsonObject["preventScreenRecording"]
|
|
3680
|
-
result.attemptsCount = jsonObject["attemptsCount"]
|
|
3681
|
-
result.recordingProcess = jsonObject["recordingProcess"]
|
|
3682
|
-
result.livenessType = jsonObject["livenessType"]
|
|
3683
|
-
result.tag = jsonObject["tag"]
|
|
3684
|
-
result.skipStep = jsonObject["skipStep"]
|
|
3685
|
-
result.metadata = jsonObject["metadata"]
|
|
3686
|
-
result.personId = jsonObject["personId"]
|
|
3687
|
-
result.groupId = jsonObject["groupId"]
|
|
3688
|
-
result.threshold = jsonObject["threshold"]
|
|
3689
|
-
|
|
3690
|
-
return result
|
|
3691
|
-
}
|
|
3692
|
-
|
|
3693
|
-
toJson() {
|
|
3694
|
-
return {
|
|
3695
|
-
"copyright": this.copyright,
|
|
3696
|
-
"cameraSwitchEnabled": this.cameraSwitchEnabled,
|
|
3697
|
-
"closeButtonEnabled": this.closeButtonEnabled,
|
|
3698
|
-
"torchButtonEnabled": this.torchButtonEnabled,
|
|
3699
|
-
"vibrateOnSteps": this.vibrateOnSteps,
|
|
3700
|
-
"cameraPositionAndroid": this.cameraPositionAndroid,
|
|
3701
|
-
"cameraPositionIOS": this.cameraPositionIOS,
|
|
3702
|
-
"screenOrientation": this.screenOrientation,
|
|
3703
|
-
"locationTrackingEnabled": this.locationTrackingEnabled,
|
|
3704
|
-
"preventScreenRecording": this.preventScreenRecording,
|
|
3705
|
-
"attemptsCount": this.attemptsCount,
|
|
3706
|
-
"recordingProcess": this.recordingProcess,
|
|
3707
|
-
"livenessType": this.livenessType,
|
|
3708
|
-
"tag": this.tag,
|
|
3709
|
-
"skipStep": this.skipStep,
|
|
3710
|
-
"metadata": this.metadata,
|
|
3711
|
-
"personId": this.personId,
|
|
3712
|
-
"groupId": this.groupId,
|
|
3713
|
-
"threshold": this.threshold,
|
|
3714
|
-
}
|
|
3715
|
-
}
|
|
3716
|
-
}
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
/***/ },
|
|
3720
|
-
|
|
3721
|
-
/***/ "./src/liveness/verification_response.js"
|
|
3722
|
-
/*!***********************************************!*\
|
|
3723
|
-
!*** ./src/liveness/verification_response.js ***!
|
|
3724
|
-
\***********************************************/
|
|
3725
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3726
|
-
|
|
3727
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3728
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3729
|
-
/* harmony export */ VerificationResponse: () => (/* binding */ VerificationResponse)
|
|
3730
|
-
/* harmony export */ });
|
|
3731
|
-
/* harmony import */ var _verify_match_response__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./verify_match_response */ "./src/liveness/verify_match_response.js");
|
|
3732
|
-
/* harmony import */ var _error_response__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./error_response */ "./src/liveness/error_response.js");
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
class VerificationResponse {
|
|
3737
|
-
passed
|
|
3738
|
-
match
|
|
3739
|
-
error
|
|
3740
|
-
|
|
3741
|
-
static fromJson(jsonObject) {
|
|
3742
|
-
if (jsonObject == null) return null
|
|
3743
|
-
const result = new VerificationResponse()
|
|
3744
|
-
|
|
3745
|
-
result.passed = jsonObject["passed"]
|
|
3746
|
-
result.match = _verify_match_response__WEBPACK_IMPORTED_MODULE_0__.VerifyMatchResponse.fromJson(jsonObject["match"])
|
|
3747
|
-
result.error = _error_response__WEBPACK_IMPORTED_MODULE_1__.ErrorResponse.fromJson(jsonObject["error"])
|
|
3748
|
-
|
|
3749
|
-
return result
|
|
3750
|
-
}
|
|
3751
|
-
|
|
3752
|
-
toJson() {
|
|
3753
|
-
return {
|
|
3754
|
-
"passed": this.passed,
|
|
3755
|
-
"match": this.match?.toJson(),
|
|
3756
|
-
"error": this.error?.toJson(),
|
|
3757
|
-
}
|
|
3758
|
-
}
|
|
3759
|
-
}
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
/***/ },
|
|
3763
|
-
|
|
3764
|
-
/***/ "./src/liveness/verify_match_response.js"
|
|
3765
|
-
/*!***********************************************!*\
|
|
3766
|
-
!*** ./src/liveness/verify_match_response.js ***!
|
|
3767
|
-
\***********************************************/
|
|
3768
|
-
(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3769
|
-
|
|
3770
|
-
__webpack_require__.r(__webpack_exports__);
|
|
3771
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3772
|
-
/* harmony export */ VerifyMatchResponse: () => (/* binding */ VerifyMatchResponse)
|
|
3773
|
-
/* harmony export */ });
|
|
3774
|
-
class VerifyMatchResponse {
|
|
3775
|
-
passed
|
|
3776
|
-
similarity
|
|
3777
|
-
|
|
3778
|
-
static fromJson(jsonObject) {
|
|
3779
|
-
if (jsonObject == null) return null
|
|
3780
|
-
const result = new VerifyMatchResponse()
|
|
3781
|
-
|
|
3782
|
-
result.passed = jsonObject["passed"]
|
|
3783
|
-
result.similarity = jsonObject["similarity"]
|
|
3784
|
-
|
|
3785
|
-
return result
|
|
3786
|
-
}
|
|
3787
|
-
|
|
3788
|
-
toJson() {
|
|
3789
|
-
return {
|
|
3790
|
-
"passed": this.passed,
|
|
3791
|
-
"similarity": this.similarity,
|
|
3792
|
-
}
|
|
3793
|
-
}
|
|
3794
|
-
}
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
3282
|
/***/ },
|
|
3798
3283
|
|
|
3799
3284
|
/***/ "./src/match_faces/compared_face.js"
|
|
@@ -4991,17 +4476,17 @@ class SearchPersonRequest {
|
|
|
4991
4476
|
/******/ });
|
|
4992
4477
|
/************************************************************************/
|
|
4993
4478
|
/******/ // The module cache
|
|
4994
|
-
/******/
|
|
4479
|
+
/******/ const __webpack_module_cache__ = {};
|
|
4995
4480
|
/******/
|
|
4996
4481
|
/******/ // The require function
|
|
4997
4482
|
/******/ function __webpack_require__(moduleId) {
|
|
4998
4483
|
/******/ // Check if module is in cache
|
|
4999
|
-
/******/
|
|
4484
|
+
/******/ const cachedModule = __webpack_module_cache__[moduleId];
|
|
5000
4485
|
/******/ if (cachedModule !== undefined) {
|
|
5001
4486
|
/******/ return cachedModule.exports;
|
|
5002
4487
|
/******/ }
|
|
5003
4488
|
/******/ // Create a new module (and put it into the cache)
|
|
5004
|
-
/******/
|
|
4489
|
+
/******/ const module = __webpack_module_cache__[moduleId] = {
|
|
5005
4490
|
/******/ // no module.id needed
|
|
5006
4491
|
/******/ // no module.loaded needed
|
|
5007
4492
|
/******/ exports: {}
|
|
@@ -5010,7 +4495,7 @@ class SearchPersonRequest {
|
|
|
5010
4495
|
/******/ // Execute the module function
|
|
5011
4496
|
/******/ if (!(moduleId in __webpack_modules__)) {
|
|
5012
4497
|
/******/ delete __webpack_module_cache__[moduleId];
|
|
5013
|
-
/******/
|
|
4498
|
+
/******/ const e = new Error("Cannot find module '" + moduleId + "'");
|
|
5014
4499
|
/******/ e.code = 'MODULE_NOT_FOUND';
|
|
5015
4500
|
/******/ throw e;
|
|
5016
4501
|
/******/ }
|
|
@@ -5023,11 +4508,26 @@ class SearchPersonRequest {
|
|
|
5023
4508
|
/************************************************************************/
|
|
5024
4509
|
/******/ /* webpack/runtime/define property getters */
|
|
5025
4510
|
/******/ (() => {
|
|
5026
|
-
/******/ // define getter functions for harmony exports
|
|
4511
|
+
/******/ // define getter/value functions for harmony exports
|
|
5027
4512
|
/******/ __webpack_require__.d = (exports, definition) => {
|
|
5028
|
-
/******/
|
|
5029
|
-
/******/
|
|
5030
|
-
/******/
|
|
4513
|
+
/******/ if(Array.isArray(definition)) {
|
|
4514
|
+
/******/ var i = 0;
|
|
4515
|
+
/******/ while(i < definition.length) {
|
|
4516
|
+
/******/ var key = definition[i++];
|
|
4517
|
+
/******/ var binding = definition[i++];
|
|
4518
|
+
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
4519
|
+
/******/ if(binding === 0) {
|
|
4520
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
4521
|
+
/******/ } else {
|
|
4522
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
4523
|
+
/******/ }
|
|
4524
|
+
/******/ } else if(binding === 0) { i++; }
|
|
4525
|
+
/******/ }
|
|
4526
|
+
/******/ } else {
|
|
4527
|
+
/******/ for(var key in definition) {
|
|
4528
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
4529
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
4530
|
+
/******/ }
|
|
5031
4531
|
/******/ }
|
|
5032
4532
|
/******/ }
|
|
5033
4533
|
/******/ };
|
|
@@ -5042,7 +4542,7 @@ class SearchPersonRequest {
|
|
|
5042
4542
|
/******/ (() => {
|
|
5043
4543
|
/******/ // define __esModule on exports
|
|
5044
4544
|
/******/ __webpack_require__.r = (exports) => {
|
|
5045
|
-
/******/ if(
|
|
4545
|
+
/******/ if(Symbol.toStringTag) {
|
|
5046
4546
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
5047
4547
|
/******/ }
|
|
5048
4548
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
@@ -5054,8 +4554,8 @@ class SearchPersonRequest {
|
|
|
5054
4554
|
/******/ // startup
|
|
5055
4555
|
/******/ // Load entry module and return exports
|
|
5056
4556
|
/******/ // This entry module is referenced by other modules so it can't be inlined
|
|
5057
|
-
/******/
|
|
5058
|
-
/******/
|
|
4557
|
+
/******/ let __webpack_exports__ = __webpack_require__("./src/index.js");
|
|
4558
|
+
/******/ const __webpack_export_target__ = exports;
|
|
5059
4559
|
/******/ for(var __webpack_i__ in __webpack_exports__) __webpack_export_target__[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
5060
4560
|
/******/ if(__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, "__esModule", { value: true });
|
|
5061
4561
|
/******/
|