@regulaforensics/face-sdk 8.3.1100-rc → 8.3.1107-rc
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 +1 -1
- package/android/cordova.gradle +1 -1
- package/android/src/main/java/com/regula/plugin/facesdk/Config.kt +91 -0
- package/android/src/main/java/com/regula/plugin/facesdk/JSONConstructor.kt +106 -3
- package/android/src/main/java/com/regula/plugin/facesdk/Main.kt +39 -1
- package/android/src/main/java/com/regula/plugin/facesdk/Utils.kt +0 -1
- package/examples/capacitor/package-lock.json +227 -221
- package/examples/capacitor/package.json +4 -1
- package/examples/capacitor/scripts/android.sh +1 -1
- package/examples/ionic/package-lock.json +1579 -2369
- package/examples/ionic/package.json +15 -12
- package/examples/ionic/scripts/android.sh +1 -1
- package/examples/react_native/package-lock.json +138 -169
- package/examples/react_native/package.json +3 -2
- package/examples/react_native/scripts/android.sh +1 -1
- package/ios/Config.swift +109 -1
- package/ios/Decoder.swift +71 -3
- package/ios/Main.swift +24 -4
- package/package.json +1 -1
- package/plugin.xml +2 -2
- package/test/json.tsx +134 -57
- package/test/package-lock.json +1 -1
- package/test/test.tsx +68 -60
- package/www/capacitor/customization/customization_images.js +40 -0
- package/www/capacitor/index.js +33 -12
- package/www/capacitor/liveness/enrollment_config.js +102 -0
- package/www/capacitor/liveness/enrollment_request.js +34 -0
- package/www/capacitor/liveness/enrollment_response.js +26 -0
- package/www/capacitor/liveness/error_response.js +21 -0
- package/www/capacitor/liveness/liveness_config.js +1 -0
- package/www/capacitor/liveness/liveness_exception.js +6 -5
- package/www/capacitor/liveness/liveness_notification.js +2 -0
- package/www/capacitor/liveness/verification_config.js +98 -0
- package/www/capacitor/liveness/verification_response.js +27 -0
- package/www/capacitor/liveness/verify_match_response.js +21 -0
- package/www/cordova.js +595 -80
- package/www/react-native/customization/customization_images.js +40 -0
- package/www/react-native/index.js +33 -12
- package/www/react-native/liveness/enrollment_config.js +102 -0
- package/www/react-native/liveness/enrollment_request.js +34 -0
- package/www/react-native/liveness/enrollment_response.js +26 -0
- package/www/react-native/liveness/error_response.js +21 -0
- package/www/react-native/liveness/liveness_config.js +1 -0
- package/www/react-native/liveness/liveness_exception.js +6 -5
- package/www/react-native/liveness/liveness_notification.js +2 -0
- package/www/react-native/liveness/verification_config.js +98 -0
- package/www/react-native/liveness/verification_response.js +27 -0
- package/www/react-native/liveness/verify_match_response.js +21 -0
- package/www/types/customization/customization_images.d.ts +5 -0
- package/www/types/index.d.ts +28 -3
- package/www/types/liveness/enrollment_config.d.ts +97 -0
- package/www/types/liveness/enrollment_request.d.ts +6 -0
- package/www/types/liveness/enrollment_response.d.ts +9 -0
- package/www/types/liveness/error_response.d.ts +6 -0
- package/www/types/liveness/liveness_config.d.ts +1 -0
- package/www/types/liveness/liveness_exception.d.ts +1 -0
- package/www/types/liveness/liveness_notification.d.ts +2 -0
- package/www/types/liveness/verification_config.d.ts +95 -0
- package/www/types/liveness/verification_response.d.ts +10 -0
- package/www/types/liveness/verify_match_response.d.ts +6 -0
|
@@ -7,20 +7,20 @@
|
|
|
7
7
|
"postinstall": "patch-package"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@angular-devkit/build-angular": "^21.
|
|
11
|
-
"@angular/cli": "^21.
|
|
12
|
-
"@angular/common": "^21.
|
|
13
|
-
"@angular/compiler-cli": "^21.
|
|
14
|
-
"@angular/core": "^21.
|
|
15
|
-
"@angular/forms": "^21.
|
|
16
|
-
"@angular/platform-browser-dynamic": "^21.
|
|
17
|
-
"@angular/router": "^21.
|
|
18
|
-
"@ionic/angular": "^8.
|
|
10
|
+
"@angular-devkit/build-angular": "^21.2.2",
|
|
11
|
+
"@angular/cli": "^21.2.2",
|
|
12
|
+
"@angular/common": "^21.2.3",
|
|
13
|
+
"@angular/compiler-cli": "^21.2.3",
|
|
14
|
+
"@angular/core": "^21.2.3",
|
|
15
|
+
"@angular/forms": "^21.2.3",
|
|
16
|
+
"@angular/platform-browser-dynamic": "^21.2.3",
|
|
17
|
+
"@angular/router": "^21.2.3",
|
|
18
|
+
"@ionic/angular": "^8.8.1",
|
|
19
19
|
"@ionic/cordova-builders": "^12.3.0",
|
|
20
20
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
21
21
|
"@awesome-cordova-plugins/dialogs": "^8.1.0",
|
|
22
22
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
23
|
-
"@regulaforensics/face-sdk": "8.3.
|
|
23
|
+
"@regulaforensics/face-sdk": "8.3.1107-rc",
|
|
24
24
|
"@regulaforensics/face-core-basic": "8.3.601-rc",
|
|
25
25
|
"cordova-android": "^14.0.1",
|
|
26
26
|
"cordova-ios": "^8.0.0",
|
|
@@ -38,15 +38,18 @@
|
|
|
38
38
|
"picomatch": "^4.0.4",
|
|
39
39
|
"postcss": "^8.5.10",
|
|
40
40
|
"uuid": "^14.0.0",
|
|
41
|
-
"vite": "^7.3.2"
|
|
41
|
+
"vite": "^7.3.2",
|
|
42
|
+
"webpack-dev-server": "^5.2.4",
|
|
43
|
+
"@babel/core": "^7.29.0",
|
|
44
|
+
"esbuild": "^0.28.1"
|
|
42
45
|
},
|
|
43
46
|
"cordova": {
|
|
44
47
|
"plugins": {
|
|
45
48
|
"@regulaforensics/face-sdk": {},
|
|
46
49
|
"@regulaforensics/face-core-basic": {},
|
|
47
|
-
"cordova-plugin-file": {},
|
|
48
50
|
"cordova-plugin-camera": {},
|
|
49
51
|
"cordova-plugin-dialogs": {},
|
|
52
|
+
"cordova-plugin-file": {},
|
|
50
53
|
"cordova-plugin-ionic-webview": {}
|
|
51
54
|
},
|
|
52
55
|
"platforms": [
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"node_modules/@babel/code-frame": {
|
|
40
|
-
"version": "7.29.
|
|
41
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.
|
|
42
|
-
"integrity": "sha512-
|
|
40
|
+
"version": "7.29.7",
|
|
41
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
|
|
42
|
+
"integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
|
|
43
43
|
"license": "MIT",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@babel/helper-validator-identifier": "^7.
|
|
45
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
46
46
|
"js-tokens": "^4.0.0",
|
|
47
47
|
"picocolors": "^1.1.1"
|
|
48
48
|
},
|
|
@@ -51,29 +51,29 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"node_modules/@babel/compat-data": {
|
|
54
|
-
"version": "7.29.
|
|
55
|
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.
|
|
56
|
-
"integrity": "sha512-
|
|
54
|
+
"version": "7.29.7",
|
|
55
|
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
|
|
56
|
+
"integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
|
|
57
57
|
"license": "MIT",
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=6.9.0"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"node_modules/@babel/core": {
|
|
63
|
-
"version": "7.
|
|
64
|
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.
|
|
65
|
-
"integrity": "sha512-
|
|
66
|
-
"license": "MIT",
|
|
67
|
-
"dependencies": {
|
|
68
|
-
"@babel/code-frame": "^7.
|
|
69
|
-
"@babel/generator": "^7.
|
|
70
|
-
"@babel/helper-compilation-targets": "^7.
|
|
71
|
-
"@babel/helper-module-transforms": "^7.
|
|
72
|
-
"@babel/helpers": "^7.
|
|
73
|
-
"@babel/parser": "^7.
|
|
74
|
-
"@babel/template": "^7.
|
|
75
|
-
"@babel/traverse": "^7.
|
|
76
|
-
"@babel/types": "^7.
|
|
63
|
+
"version": "7.29.7",
|
|
64
|
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
|
|
65
|
+
"integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@babel/code-frame": "^7.29.7",
|
|
69
|
+
"@babel/generator": "^7.29.7",
|
|
70
|
+
"@babel/helper-compilation-targets": "^7.29.7",
|
|
71
|
+
"@babel/helper-module-transforms": "^7.29.7",
|
|
72
|
+
"@babel/helpers": "^7.29.7",
|
|
73
|
+
"@babel/parser": "^7.29.7",
|
|
74
|
+
"@babel/template": "^7.29.7",
|
|
75
|
+
"@babel/traverse": "^7.29.7",
|
|
76
|
+
"@babel/types": "^7.29.7",
|
|
77
77
|
"@jridgewell/remapping": "^2.3.5",
|
|
78
78
|
"convert-source-map": "^2.0.0",
|
|
79
79
|
"debug": "^4.1.0",
|
|
@@ -90,13 +90,13 @@
|
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
92
|
"node_modules/@babel/generator": {
|
|
93
|
-
"version": "7.29.
|
|
94
|
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.
|
|
95
|
-
"integrity": "sha512-
|
|
93
|
+
"version": "7.29.7",
|
|
94
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
|
|
95
|
+
"integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
|
|
96
96
|
"license": "MIT",
|
|
97
97
|
"dependencies": {
|
|
98
|
-
"@babel/parser": "^7.29.
|
|
99
|
-
"@babel/types": "^7.29.
|
|
98
|
+
"@babel/parser": "^7.29.7",
|
|
99
|
+
"@babel/types": "^7.29.7",
|
|
100
100
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
101
101
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
102
102
|
"jsesc": "^3.0.2"
|
|
@@ -118,13 +118,13 @@
|
|
|
118
118
|
}
|
|
119
119
|
},
|
|
120
120
|
"node_modules/@babel/helper-compilation-targets": {
|
|
121
|
-
"version": "7.
|
|
122
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.
|
|
123
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "7.29.7",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
|
|
123
|
+
"integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
|
|
124
124
|
"license": "MIT",
|
|
125
125
|
"dependencies": {
|
|
126
|
-
"@babel/compat-data": "^7.
|
|
127
|
-
"@babel/helper-validator-option": "^7.
|
|
126
|
+
"@babel/compat-data": "^7.29.7",
|
|
127
|
+
"@babel/helper-validator-option": "^7.29.7",
|
|
128
128
|
"browserslist": "^4.24.0",
|
|
129
129
|
"lru-cache": "^5.1.1",
|
|
130
130
|
"semver": "^6.3.1"
|
|
@@ -188,9 +188,9 @@
|
|
|
188
188
|
}
|
|
189
189
|
},
|
|
190
190
|
"node_modules/@babel/helper-globals": {
|
|
191
|
-
"version": "7.
|
|
192
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.
|
|
193
|
-
"integrity": "sha512
|
|
191
|
+
"version": "7.29.7",
|
|
192
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
|
|
193
|
+
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
|
|
194
194
|
"license": "MIT",
|
|
195
195
|
"engines": {
|
|
196
196
|
"node": ">=6.9.0"
|
|
@@ -210,27 +210,27 @@
|
|
|
210
210
|
}
|
|
211
211
|
},
|
|
212
212
|
"node_modules/@babel/helper-module-imports": {
|
|
213
|
-
"version": "7.
|
|
214
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.
|
|
215
|
-
"integrity": "sha512-
|
|
213
|
+
"version": "7.29.7",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
|
|
215
|
+
"integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
|
|
216
216
|
"license": "MIT",
|
|
217
217
|
"dependencies": {
|
|
218
|
-
"@babel/traverse": "^7.
|
|
219
|
-
"@babel/types": "^7.
|
|
218
|
+
"@babel/traverse": "^7.29.7",
|
|
219
|
+
"@babel/types": "^7.29.7"
|
|
220
220
|
},
|
|
221
221
|
"engines": {
|
|
222
222
|
"node": ">=6.9.0"
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
225
|
"node_modules/@babel/helper-module-transforms": {
|
|
226
|
-
"version": "7.
|
|
227
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.
|
|
228
|
-
"integrity": "sha512-
|
|
226
|
+
"version": "7.29.7",
|
|
227
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
|
|
228
|
+
"integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
|
|
229
229
|
"license": "MIT",
|
|
230
230
|
"dependencies": {
|
|
231
|
-
"@babel/helper-module-imports": "^7.
|
|
232
|
-
"@babel/helper-validator-identifier": "^7.
|
|
233
|
-
"@babel/traverse": "^7.
|
|
231
|
+
"@babel/helper-module-imports": "^7.29.7",
|
|
232
|
+
"@babel/helper-validator-identifier": "^7.29.7",
|
|
233
|
+
"@babel/traverse": "^7.29.7"
|
|
234
234
|
},
|
|
235
235
|
"engines": {
|
|
236
236
|
"node": ">=6.9.0"
|
|
@@ -308,27 +308,27 @@
|
|
|
308
308
|
}
|
|
309
309
|
},
|
|
310
310
|
"node_modules/@babel/helper-string-parser": {
|
|
311
|
-
"version": "7.
|
|
312
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.
|
|
313
|
-
"integrity": "sha512-
|
|
311
|
+
"version": "7.29.7",
|
|
312
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
|
|
313
|
+
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
314
314
|
"license": "MIT",
|
|
315
315
|
"engines": {
|
|
316
316
|
"node": ">=6.9.0"
|
|
317
317
|
}
|
|
318
318
|
},
|
|
319
319
|
"node_modules/@babel/helper-validator-identifier": {
|
|
320
|
-
"version": "7.
|
|
321
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.
|
|
322
|
-
"integrity": "sha512-
|
|
320
|
+
"version": "7.29.7",
|
|
321
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
|
|
322
|
+
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
323
323
|
"license": "MIT",
|
|
324
324
|
"engines": {
|
|
325
325
|
"node": ">=6.9.0"
|
|
326
326
|
}
|
|
327
327
|
},
|
|
328
328
|
"node_modules/@babel/helper-validator-option": {
|
|
329
|
-
"version": "7.
|
|
330
|
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.
|
|
331
|
-
"integrity": "sha512-
|
|
329
|
+
"version": "7.29.7",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
|
|
331
|
+
"integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
|
|
332
332
|
"license": "MIT",
|
|
333
333
|
"engines": {
|
|
334
334
|
"node": ">=6.9.0"
|
|
@@ -349,13 +349,13 @@
|
|
|
349
349
|
}
|
|
350
350
|
},
|
|
351
351
|
"node_modules/@babel/helpers": {
|
|
352
|
-
"version": "7.
|
|
353
|
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.
|
|
354
|
-
"integrity": "sha512-
|
|
352
|
+
"version": "7.29.7",
|
|
353
|
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
|
|
354
|
+
"integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
|
|
355
355
|
"license": "MIT",
|
|
356
356
|
"dependencies": {
|
|
357
|
-
"@babel/template": "^7.
|
|
358
|
-
"@babel/types": "^7.
|
|
357
|
+
"@babel/template": "^7.29.7",
|
|
358
|
+
"@babel/types": "^7.29.7"
|
|
359
359
|
},
|
|
360
360
|
"engines": {
|
|
361
361
|
"node": ">=6.9.0"
|
|
@@ -448,12 +448,12 @@
|
|
|
448
448
|
}
|
|
449
449
|
},
|
|
450
450
|
"node_modules/@babel/parser": {
|
|
451
|
-
"version": "7.29.
|
|
452
|
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.
|
|
453
|
-
"integrity": "sha512-
|
|
451
|
+
"version": "7.29.7",
|
|
452
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
|
|
453
|
+
"integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
|
|
454
454
|
"license": "MIT",
|
|
455
455
|
"dependencies": {
|
|
456
|
-
"@babel/types": "^7.29.
|
|
456
|
+
"@babel/types": "^7.29.7"
|
|
457
457
|
},
|
|
458
458
|
"bin": {
|
|
459
459
|
"parser": "bin/babel-parser.js"
|
|
@@ -1435,31 +1435,31 @@
|
|
|
1435
1435
|
}
|
|
1436
1436
|
},
|
|
1437
1437
|
"node_modules/@babel/template": {
|
|
1438
|
-
"version": "7.
|
|
1439
|
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.
|
|
1440
|
-
"integrity": "sha512-
|
|
1438
|
+
"version": "7.29.7",
|
|
1439
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
|
|
1440
|
+
"integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
|
|
1441
1441
|
"license": "MIT",
|
|
1442
1442
|
"dependencies": {
|
|
1443
|
-
"@babel/code-frame": "^7.
|
|
1444
|
-
"@babel/parser": "^7.
|
|
1445
|
-
"@babel/types": "^7.
|
|
1443
|
+
"@babel/code-frame": "^7.29.7",
|
|
1444
|
+
"@babel/parser": "^7.29.7",
|
|
1445
|
+
"@babel/types": "^7.29.7"
|
|
1446
1446
|
},
|
|
1447
1447
|
"engines": {
|
|
1448
1448
|
"node": ">=6.9.0"
|
|
1449
1449
|
}
|
|
1450
1450
|
},
|
|
1451
1451
|
"node_modules/@babel/traverse": {
|
|
1452
|
-
"version": "7.29.
|
|
1453
|
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.
|
|
1454
|
-
"integrity": "sha512-
|
|
1452
|
+
"version": "7.29.7",
|
|
1453
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
|
|
1454
|
+
"integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
|
|
1455
1455
|
"license": "MIT",
|
|
1456
1456
|
"dependencies": {
|
|
1457
|
-
"@babel/code-frame": "^7.29.
|
|
1458
|
-
"@babel/generator": "^7.29.
|
|
1459
|
-
"@babel/helper-globals": "^7.
|
|
1460
|
-
"@babel/parser": "^7.29.
|
|
1461
|
-
"@babel/template": "^7.
|
|
1462
|
-
"@babel/types": "^7.29.
|
|
1457
|
+
"@babel/code-frame": "^7.29.7",
|
|
1458
|
+
"@babel/generator": "^7.29.7",
|
|
1459
|
+
"@babel/helper-globals": "^7.29.7",
|
|
1460
|
+
"@babel/parser": "^7.29.7",
|
|
1461
|
+
"@babel/template": "^7.29.7",
|
|
1462
|
+
"@babel/types": "^7.29.7",
|
|
1463
1463
|
"debug": "^4.3.1"
|
|
1464
1464
|
},
|
|
1465
1465
|
"engines": {
|
|
@@ -1486,13 +1486,13 @@
|
|
|
1486
1486
|
}
|
|
1487
1487
|
},
|
|
1488
1488
|
"node_modules/@babel/types": {
|
|
1489
|
-
"version": "7.29.
|
|
1490
|
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.
|
|
1491
|
-
"integrity": "sha512-
|
|
1489
|
+
"version": "7.29.7",
|
|
1490
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
|
|
1491
|
+
"integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
|
|
1492
1492
|
"license": "MIT",
|
|
1493
1493
|
"dependencies": {
|
|
1494
|
-
"@babel/helper-string-parser": "^7.
|
|
1495
|
-
"@babel/helper-validator-identifier": "^7.
|
|
1494
|
+
"@babel/helper-string-parser": "^7.29.7",
|
|
1495
|
+
"@babel/helper-validator-identifier": "^7.29.7"
|
|
1496
1496
|
},
|
|
1497
1497
|
"engines": {
|
|
1498
1498
|
"node": ">=6.9.0"
|
|
@@ -1595,9 +1595,9 @@
|
|
|
1595
1595
|
}
|
|
1596
1596
|
},
|
|
1597
1597
|
"node_modules/@expo/cli/node_modules/brace-expansion": {
|
|
1598
|
-
"version": "5.0.
|
|
1599
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1600
|
-
"integrity": "sha512-
|
|
1598
|
+
"version": "5.0.6",
|
|
1599
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1600
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1601
1601
|
"license": "MIT",
|
|
1602
1602
|
"dependencies": {
|
|
1603
1603
|
"balanced-match": "^4.0.2"
|
|
@@ -1712,9 +1712,9 @@
|
|
|
1712
1712
|
}
|
|
1713
1713
|
},
|
|
1714
1714
|
"node_modules/@expo/config-plugins/node_modules/brace-expansion": {
|
|
1715
|
-
"version": "5.0.
|
|
1716
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1717
|
-
"integrity": "sha512-
|
|
1715
|
+
"version": "5.0.6",
|
|
1716
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1717
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1718
1718
|
"license": "MIT",
|
|
1719
1719
|
"dependencies": {
|
|
1720
1720
|
"balanced-match": "^4.0.2"
|
|
@@ -1792,9 +1792,9 @@
|
|
|
1792
1792
|
}
|
|
1793
1793
|
},
|
|
1794
1794
|
"node_modules/@expo/config/node_modules/brace-expansion": {
|
|
1795
|
-
"version": "5.0.
|
|
1796
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1797
|
-
"integrity": "sha512-
|
|
1795
|
+
"version": "5.0.6",
|
|
1796
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1797
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1798
1798
|
"license": "MIT",
|
|
1799
1799
|
"dependencies": {
|
|
1800
1800
|
"balanced-match": "^4.0.2"
|
|
@@ -1932,9 +1932,9 @@
|
|
|
1932
1932
|
}
|
|
1933
1933
|
},
|
|
1934
1934
|
"node_modules/@expo/fingerprint/node_modules/brace-expansion": {
|
|
1935
|
-
"version": "5.0.
|
|
1936
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
1937
|
-
"integrity": "sha512-
|
|
1935
|
+
"version": "5.0.6",
|
|
1936
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1937
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1938
1938
|
"license": "MIT",
|
|
1939
1939
|
"dependencies": {
|
|
1940
1940
|
"balanced-match": "^4.0.2"
|
|
@@ -2093,9 +2093,9 @@
|
|
|
2093
2093
|
}
|
|
2094
2094
|
},
|
|
2095
2095
|
"node_modules/@expo/metro-config/node_modules/brace-expansion": {
|
|
2096
|
-
"version": "5.0.
|
|
2097
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
2098
|
-
"integrity": "sha512-
|
|
2096
|
+
"version": "5.0.6",
|
|
2097
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
2098
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
2099
2099
|
"license": "MIT",
|
|
2100
2100
|
"dependencies": {
|
|
2101
2101
|
"balanced-match": "^4.0.2"
|
|
@@ -2323,15 +2323,6 @@
|
|
|
2323
2323
|
"node": ">=8"
|
|
2324
2324
|
}
|
|
2325
2325
|
},
|
|
2326
|
-
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
|
|
2327
|
-
"version": "1.0.10",
|
|
2328
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
|
2329
|
-
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
|
2330
|
-
"license": "MIT",
|
|
2331
|
-
"dependencies": {
|
|
2332
|
-
"sprintf-js": "~1.0.2"
|
|
2333
|
-
}
|
|
2334
|
-
},
|
|
2335
2326
|
"node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": {
|
|
2336
2327
|
"version": "5.3.1",
|
|
2337
2328
|
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
|
@@ -2354,19 +2345,6 @@
|
|
|
2354
2345
|
"node": ">=8"
|
|
2355
2346
|
}
|
|
2356
2347
|
},
|
|
2357
|
-
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
|
|
2358
|
-
"version": "3.14.2",
|
|
2359
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
|
|
2360
|
-
"integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
|
|
2361
|
-
"license": "MIT",
|
|
2362
|
-
"dependencies": {
|
|
2363
|
-
"argparse": "^1.0.7",
|
|
2364
|
-
"esprima": "^4.0.0"
|
|
2365
|
-
},
|
|
2366
|
-
"bin": {
|
|
2367
|
-
"js-yaml": "bin/js-yaml.js"
|
|
2368
|
-
}
|
|
2369
|
-
},
|
|
2370
2348
|
"node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
|
|
2371
2349
|
"version": "5.0.0",
|
|
2372
2350
|
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
|
@@ -2745,9 +2723,9 @@
|
|
|
2745
2723
|
}
|
|
2746
2724
|
},
|
|
2747
2725
|
"node_modules/@react-native/community-cli-plugin/node_modules/ws": {
|
|
2748
|
-
"version": "6.2.
|
|
2749
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.
|
|
2750
|
-
"integrity": "sha512-
|
|
2726
|
+
"version": "6.2.4",
|
|
2727
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.4.tgz",
|
|
2728
|
+
"integrity": "sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==",
|
|
2751
2729
|
"license": "MIT",
|
|
2752
2730
|
"dependencies": {
|
|
2753
2731
|
"async-limiter": "~1.0.0"
|
|
@@ -2785,9 +2763,9 @@
|
|
|
2785
2763
|
}
|
|
2786
2764
|
},
|
|
2787
2765
|
"node_modules/@react-native/dev-middleware/node_modules/ws": {
|
|
2788
|
-
"version": "6.2.
|
|
2789
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.
|
|
2790
|
-
"integrity": "sha512-
|
|
2766
|
+
"version": "6.2.4",
|
|
2767
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.4.tgz",
|
|
2768
|
+
"integrity": "sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==",
|
|
2791
2769
|
"license": "MIT",
|
|
2792
2770
|
"dependencies": {
|
|
2793
2771
|
"async-limiter": "~1.0.0"
|
|
@@ -4242,19 +4220,6 @@
|
|
|
4242
4220
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
4243
4221
|
}
|
|
4244
4222
|
},
|
|
4245
|
-
"node_modules/esprima": {
|
|
4246
|
-
"version": "4.0.1",
|
|
4247
|
-
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
4248
|
-
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
|
4249
|
-
"license": "BSD-2-Clause",
|
|
4250
|
-
"bin": {
|
|
4251
|
-
"esparse": "bin/esparse.js",
|
|
4252
|
-
"esvalidate": "bin/esvalidate.js"
|
|
4253
|
-
},
|
|
4254
|
-
"engines": {
|
|
4255
|
-
"node": ">=4"
|
|
4256
|
-
}
|
|
4257
|
-
},
|
|
4258
4223
|
"node_modules/etag": {
|
|
4259
4224
|
"version": "1.8.1",
|
|
4260
4225
|
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
|
@@ -4561,9 +4526,9 @@
|
|
|
4561
4526
|
"license": "MIT"
|
|
4562
4527
|
},
|
|
4563
4528
|
"node_modules/fast-uri": {
|
|
4564
|
-
"version": "3.1.
|
|
4565
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
4566
|
-
"integrity": "sha512-
|
|
4529
|
+
"version": "3.1.2",
|
|
4530
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
|
|
4531
|
+
"integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
|
|
4567
4532
|
"funding": [
|
|
4568
4533
|
{
|
|
4569
4534
|
"type": "github",
|
|
@@ -5260,9 +5225,19 @@
|
|
|
5260
5225
|
"license": "MIT"
|
|
5261
5226
|
},
|
|
5262
5227
|
"node_modules/js-yaml": {
|
|
5263
|
-
"version": "4.
|
|
5264
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.
|
|
5265
|
-
"integrity": "sha512-
|
|
5228
|
+
"version": "4.2.0",
|
|
5229
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
|
|
5230
|
+
"integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
|
|
5231
|
+
"funding": [
|
|
5232
|
+
{
|
|
5233
|
+
"type": "github",
|
|
5234
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
5235
|
+
},
|
|
5236
|
+
{
|
|
5237
|
+
"type": "github",
|
|
5238
|
+
"url": "https://github.com/sponsors/nodeca"
|
|
5239
|
+
}
|
|
5240
|
+
],
|
|
5266
5241
|
"license": "MIT",
|
|
5267
5242
|
"dependencies": {
|
|
5268
5243
|
"argparse": "^2.0.1"
|
|
@@ -6087,9 +6062,9 @@
|
|
|
6087
6062
|
}
|
|
6088
6063
|
},
|
|
6089
6064
|
"node_modules/metro/node_modules/ws": {
|
|
6090
|
-
"version": "7.5.
|
|
6091
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.
|
|
6092
|
-
"integrity": "sha512
|
|
6065
|
+
"version": "7.5.11",
|
|
6066
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.11.tgz",
|
|
6067
|
+
"integrity": "sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==",
|
|
6093
6068
|
"license": "MIT",
|
|
6094
6069
|
"engines": {
|
|
6095
6070
|
"node": ">=8.3.0"
|
|
@@ -6849,9 +6824,9 @@
|
|
|
6849
6824
|
}
|
|
6850
6825
|
},
|
|
6851
6826
|
"node_modules/react-devtools-core/node_modules/ws": {
|
|
6852
|
-
"version": "7.5.
|
|
6853
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.
|
|
6854
|
-
"integrity": "sha512
|
|
6827
|
+
"version": "7.5.11",
|
|
6828
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.11.tgz",
|
|
6829
|
+
"integrity": "sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==",
|
|
6855
6830
|
"license": "MIT",
|
|
6856
6831
|
"engines": {
|
|
6857
6832
|
"node": ">=8.3.0"
|
|
@@ -7003,9 +6978,9 @@
|
|
|
7003
6978
|
}
|
|
7004
6979
|
},
|
|
7005
6980
|
"node_modules/react-native/node_modules/ws": {
|
|
7006
|
-
"version": "6.2.
|
|
7007
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.
|
|
7008
|
-
"integrity": "sha512-
|
|
6981
|
+
"version": "6.2.4",
|
|
6982
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-6.2.4.tgz",
|
|
6983
|
+
"integrity": "sha512-PNIUUyLI5YpkJZj60YBzX1o0ByQ4ovvfmq9N/Kig/PAYbVlGyz4R6G0SEWrD0O9acc0sT2+IdMBVLFv8FSi0Nw==",
|
|
7009
6984
|
"license": "MIT",
|
|
7010
6985
|
"dependencies": {
|
|
7011
6986
|
"async-limiter": "~1.0.0"
|
|
@@ -7363,9 +7338,9 @@
|
|
|
7363
7338
|
}
|
|
7364
7339
|
},
|
|
7365
7340
|
"node_modules/shell-quote": {
|
|
7366
|
-
"version": "1.8.
|
|
7367
|
-
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.
|
|
7368
|
-
"integrity": "sha512-
|
|
7341
|
+
"version": "1.8.4",
|
|
7342
|
+
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.4.tgz",
|
|
7343
|
+
"integrity": "sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ==",
|
|
7369
7344
|
"license": "MIT",
|
|
7370
7345
|
"engines": {
|
|
7371
7346
|
"node": ">= 0.4"
|
|
@@ -7464,12 +7439,6 @@
|
|
|
7464
7439
|
"node": ">=0.10.0"
|
|
7465
7440
|
}
|
|
7466
7441
|
},
|
|
7467
|
-
"node_modules/sprintf-js": {
|
|
7468
|
-
"version": "1.0.3",
|
|
7469
|
-
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
|
7470
|
-
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
|
|
7471
|
-
"license": "BSD-3-Clause"
|
|
7472
|
-
},
|
|
7473
7442
|
"node_modules/stack-utils": {
|
|
7474
7443
|
"version": "2.0.6",
|
|
7475
7444
|
"resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
|
|
@@ -7658,9 +7627,9 @@
|
|
|
7658
7627
|
}
|
|
7659
7628
|
},
|
|
7660
7629
|
"node_modules/tar": {
|
|
7661
|
-
"version": "7.5.
|
|
7662
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
7663
|
-
"integrity": "sha512-
|
|
7630
|
+
"version": "7.5.16",
|
|
7631
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.16.tgz",
|
|
7632
|
+
"integrity": "sha512-56adEpPMouktRlBLXiaYFFzZ/3+JXa8P9n7WbR+ibIjtviN55mEaOkiysCnPnWm+7kkui1Dn8J9l+g6zV8731w==",
|
|
7664
7633
|
"license": "BlueOak-1.0.0",
|
|
7665
7634
|
"dependencies": {
|
|
7666
7635
|
"@isaacs/fs-minipass": "^4.0.0",
|
|
@@ -8137,9 +8106,9 @@
|
|
|
8137
8106
|
}
|
|
8138
8107
|
},
|
|
8139
8108
|
"node_modules/ws": {
|
|
8140
|
-
"version": "8.
|
|
8141
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
8142
|
-
"integrity": "sha512-
|
|
8109
|
+
"version": "8.21.0",
|
|
8110
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz",
|
|
8111
|
+
"integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==",
|
|
8143
8112
|
"license": "MIT",
|
|
8144
8113
|
"engines": {
|
|
8145
8114
|
"node": ">=10.0.0"
|