@regulaforensics/face-sdk 6.3.29-beta → 6.3.42-beta

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.
@@ -1,5 +1,6 @@
1
1
  package com.regula.plugin.facesdk
2
2
 
3
+ import com.facebook.react.ReactPackage
3
4
  import com.facebook.react.bridge.Promise
4
5
  import com.facebook.react.bridge.ReactApplicationContext
5
6
  import com.facebook.react.bridge.ReactContext
@@ -7,6 +8,7 @@ import com.facebook.react.bridge.ReactContextBaseJavaModule
7
8
  import com.facebook.react.bridge.ReactMethod
8
9
  import com.facebook.react.bridge.ReadableArray
9
10
  import com.facebook.react.modules.core.DeviceEventManagerModule
11
+ import com.facebook.react.uimanager.ViewManager
10
12
  import org.json.JSONArray
11
13
  import org.json.JSONObject
12
14
 
@@ -28,6 +30,11 @@ fun <T> argsNullable(index: Int): T? {
28
30
  return value as T
29
31
  }
30
32
 
33
+ class RNFaceSDKPackage : ReactPackage {
34
+ override fun createNativeModules(rc: ReactApplicationContext) = listOf(RNFaceSDKModule(rc))
35
+ override fun createViewManagers(rc: ReactApplicationContext) = emptyList<ViewManager<*, *>>()
36
+ }
37
+
31
38
  @Suppress("unused", "UNUSED_PARAMETER")
32
39
  class RNFaceSDKModule(rc: ReactApplicationContext) : ReactContextBaseJavaModule(rc) {
33
40
  init {
@@ -15,8 +15,8 @@
15
15
  "lint": "eslint"
16
16
  },
17
17
  "dependencies": {
18
- "@regulaforensics/face-sdk": "6.3.29-beta",
19
- "@regulaforensics/cordova-plugin-face-core-basic": "6.3.165",
18
+ "@regulaforensics/face-sdk": "6.3.42-beta",
19
+ "@regulaforensics/face-core-basic": "6.3.12-beta",
20
20
  "@awesome-cordova-plugins/camera": "6.6.0",
21
21
  "@awesome-cordova-plugins/file": "6.6.0",
22
22
  "@awesome-cordova-plugins/dialogs": "6.6.0",
@@ -14,8 +14,8 @@
14
14
  "author": "Regula Forensics Inc.",
15
15
  "license": "commercial",
16
16
  "dependencies": {
17
- "@regulaforensics/face-sdk": "6.3.29-beta",
18
- "@regulaforensics/cordova-plugin-face-core-basic": "6.3.165",
17
+ "@regulaforensics/face-sdk": "6.3.42-beta",
18
+ "@regulaforensics/face-core-basic": "6.3.12-beta",
19
19
  "cordova-android": "12.0.1",
20
20
  "cordova-ios": "7.0.1",
21
21
  "cordova-plugin-add-swift-support": "2.0.2",
@@ -27,7 +27,7 @@
27
27
  "cordova": {
28
28
  "plugins": {
29
29
  "@regulaforensics/face-sdk": {},
30
- "@regulaforensics/cordova-plugin-face-core-basic": {},
30
+ "@regulaforensics/face-core-basic": {},
31
31
  "cordova-plugin-camera": {},
32
32
  "cordova-plugin-dialogs": {},
33
33
  "cordova-plugin-file": {}
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "private": true,
18
18
  "dependencies": {
19
- "@regulaforensics/face-sdk": "6.3.29-beta",
20
- "@regulaforensics/cordova-plugin-face-core-basic": "6.3.165",
19
+ "@regulaforensics/face-sdk": "6.3.42-beta",
20
+ "@regulaforensics/face-core-basic": "6.3.12-beta",
21
21
  "cordova-plugin-camera": "7.0.0",
22
22
  "@awesome-cordova-plugins/camera": "6.6.0",
23
23
  "@awesome-cordova-plugins/core": "6.6.0",
@@ -79,7 +79,7 @@
79
79
  "cordova": {
80
80
  "plugins": {
81
81
  "@regulaforensics/face-sdk": {},
82
- "@regulaforensics/cordova-plugin-face-core-basic": {},
82
+ "@regulaforensics/face-core-basic": {},
83
83
  "cordova-plugin-camera": {},
84
84
  "cordova-plugin-dialogs": {},
85
85
  "cordova-plugin-statusbar": {},
@@ -1,15 +1,15 @@
1
1
  {
2
- "name": "face-sdk",
2
+ "name": "facesdk",
3
3
  "version": "1.0.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
- "name": "face-sdk",
8
+ "name": "facesdk",
9
9
  "version": "1.0.0",
10
10
  "dependencies": {
11
11
  "react": "18.3.1",
12
- "react-native": "0.75.3",
12
+ "react-native": "0.75.4",
13
13
  "react-native-fs": "2.20.0",
14
14
  "react-native-image-picker": "7.1.2"
15
15
  },
@@ -17,10 +17,10 @@
17
17
  "@babel/core": "^7.20.0",
18
18
  "@babel/preset-env": "^7.20.0",
19
19
  "@babel/runtime": "^7.20.0",
20
- "@react-native/babel-preset": "0.75.3",
21
- "@react-native/eslint-config": "0.75.3",
22
- "@react-native/metro-config": "0.75.3",
23
- "@react-native/typescript-config": "0.75.3",
20
+ "@react-native/babel-preset": "0.75.4",
21
+ "@react-native/eslint-config": "0.75.4",
22
+ "@react-native/metro-config": "0.75.4",
23
+ "@react-native/typescript-config": "0.75.4",
24
24
  "@types/react": "^18.2.6",
25
25
  "@types/react-test-renderer": "^18.0.0",
26
26
  "babel-jest": "^29.6.3",
@@ -46,10 +46,12 @@
46
46
  }
47
47
  },
48
48
  "node_modules/@babel/code-frame": {
49
- "version": "7.24.7",
49
+ "version": "7.25.7",
50
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz",
51
+ "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==",
50
52
  "license": "MIT",
51
53
  "dependencies": {
52
- "@babel/highlight": "^7.24.7",
54
+ "@babel/highlight": "^7.25.7",
53
55
  "picocolors": "^1.0.0"
54
56
  },
55
57
  "engines": {
@@ -109,23 +111,27 @@
109
111
  }
110
112
  },
111
113
  "node_modules/@babel/generator": {
112
- "version": "7.25.0",
114
+ "version": "7.25.7",
115
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz",
116
+ "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==",
113
117
  "license": "MIT",
114
118
  "dependencies": {
115
- "@babel/types": "^7.25.0",
119
+ "@babel/types": "^7.25.7",
116
120
  "@jridgewell/gen-mapping": "^0.3.5",
117
121
  "@jridgewell/trace-mapping": "^0.3.25",
118
- "jsesc": "^2.5.1"
122
+ "jsesc": "^3.0.2"
119
123
  },
120
124
  "engines": {
121
125
  "node": ">=6.9.0"
122
126
  }
123
127
  },
124
128
  "node_modules/@babel/helper-annotate-as-pure": {
125
- "version": "7.24.7",
129
+ "version": "7.25.7",
130
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz",
131
+ "integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==",
126
132
  "license": "MIT",
127
133
  "dependencies": {
128
- "@babel/types": "^7.24.7"
134
+ "@babel/types": "^7.25.7"
129
135
  },
130
136
  "engines": {
131
137
  "node": ">=6.9.0"
@@ -157,15 +163,17 @@
157
163
  }
158
164
  },
159
165
  "node_modules/@babel/helper-create-class-features-plugin": {
160
- "version": "7.25.0",
166
+ "version": "7.25.7",
167
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.7.tgz",
168
+ "integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==",
161
169
  "license": "MIT",
162
170
  "dependencies": {
163
- "@babel/helper-annotate-as-pure": "^7.24.7",
164
- "@babel/helper-member-expression-to-functions": "^7.24.8",
165
- "@babel/helper-optimise-call-expression": "^7.24.7",
166
- "@babel/helper-replace-supers": "^7.25.0",
167
- "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7",
168
- "@babel/traverse": "^7.25.0",
171
+ "@babel/helper-annotate-as-pure": "^7.25.7",
172
+ "@babel/helper-member-expression-to-functions": "^7.25.7",
173
+ "@babel/helper-optimise-call-expression": "^7.25.7",
174
+ "@babel/helper-replace-supers": "^7.25.7",
175
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7",
176
+ "@babel/traverse": "^7.25.7",
169
177
  "semver": "^6.3.1"
170
178
  },
171
179
  "engines": {
@@ -205,35 +213,41 @@
205
213
  }
206
214
  },
207
215
  "node_modules/@babel/helper-member-expression-to-functions": {
208
- "version": "7.24.8",
216
+ "version": "7.25.7",
217
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.7.tgz",
218
+ "integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==",
209
219
  "license": "MIT",
210
220
  "dependencies": {
211
- "@babel/traverse": "^7.24.8",
212
- "@babel/types": "^7.24.8"
221
+ "@babel/traverse": "^7.25.7",
222
+ "@babel/types": "^7.25.7"
213
223
  },
214
224
  "engines": {
215
225
  "node": ">=6.9.0"
216
226
  }
217
227
  },
218
228
  "node_modules/@babel/helper-module-imports": {
219
- "version": "7.24.7",
229
+ "version": "7.25.7",
230
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz",
231
+ "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==",
220
232
  "license": "MIT",
221
233
  "dependencies": {
222
- "@babel/traverse": "^7.24.7",
223
- "@babel/types": "^7.24.7"
234
+ "@babel/traverse": "^7.25.7",
235
+ "@babel/types": "^7.25.7"
224
236
  },
225
237
  "engines": {
226
238
  "node": ">=6.9.0"
227
239
  }
228
240
  },
229
241
  "node_modules/@babel/helper-module-transforms": {
230
- "version": "7.25.2",
242
+ "version": "7.25.7",
243
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz",
244
+ "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==",
231
245
  "license": "MIT",
232
246
  "dependencies": {
233
- "@babel/helper-module-imports": "^7.24.7",
234
- "@babel/helper-simple-access": "^7.24.7",
235
- "@babel/helper-validator-identifier": "^7.24.7",
236
- "@babel/traverse": "^7.25.2"
247
+ "@babel/helper-module-imports": "^7.25.7",
248
+ "@babel/helper-simple-access": "^7.25.7",
249
+ "@babel/helper-validator-identifier": "^7.25.7",
250
+ "@babel/traverse": "^7.25.7"
237
251
  },
238
252
  "engines": {
239
253
  "node": ">=6.9.0"
@@ -243,17 +257,21 @@
243
257
  }
244
258
  },
245
259
  "node_modules/@babel/helper-optimise-call-expression": {
246
- "version": "7.24.7",
260
+ "version": "7.25.7",
261
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.7.tgz",
262
+ "integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==",
247
263
  "license": "MIT",
248
264
  "dependencies": {
249
- "@babel/types": "^7.24.7"
265
+ "@babel/types": "^7.25.7"
250
266
  },
251
267
  "engines": {
252
268
  "node": ">=6.9.0"
253
269
  }
254
270
  },
255
271
  "node_modules/@babel/helper-plugin-utils": {
256
- "version": "7.24.8",
272
+ "version": "7.25.7",
273
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz",
274
+ "integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==",
257
275
  "license": "MIT",
258
276
  "engines": {
259
277
  "node": ">=6.9.0"
@@ -275,12 +293,14 @@
275
293
  }
276
294
  },
277
295
  "node_modules/@babel/helper-replace-supers": {
278
- "version": "7.25.0",
296
+ "version": "7.25.7",
297
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.7.tgz",
298
+ "integrity": "sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==",
279
299
  "license": "MIT",
280
300
  "dependencies": {
281
- "@babel/helper-member-expression-to-functions": "^7.24.8",
282
- "@babel/helper-optimise-call-expression": "^7.24.7",
283
- "@babel/traverse": "^7.25.0"
301
+ "@babel/helper-member-expression-to-functions": "^7.25.7",
302
+ "@babel/helper-optimise-call-expression": "^7.25.7",
303
+ "@babel/traverse": "^7.25.7"
284
304
  },
285
305
  "engines": {
286
306
  "node": ">=6.9.0"
@@ -290,43 +310,53 @@
290
310
  }
291
311
  },
292
312
  "node_modules/@babel/helper-simple-access": {
293
- "version": "7.24.7",
313
+ "version": "7.25.7",
314
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz",
315
+ "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==",
294
316
  "license": "MIT",
295
317
  "dependencies": {
296
- "@babel/traverse": "^7.24.7",
297
- "@babel/types": "^7.24.7"
318
+ "@babel/traverse": "^7.25.7",
319
+ "@babel/types": "^7.25.7"
298
320
  },
299
321
  "engines": {
300
322
  "node": ">=6.9.0"
301
323
  }
302
324
  },
303
325
  "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
304
- "version": "7.24.7",
326
+ "version": "7.25.7",
327
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.7.tgz",
328
+ "integrity": "sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==",
305
329
  "license": "MIT",
306
330
  "dependencies": {
307
- "@babel/traverse": "^7.24.7",
308
- "@babel/types": "^7.24.7"
331
+ "@babel/traverse": "^7.25.7",
332
+ "@babel/types": "^7.25.7"
309
333
  },
310
334
  "engines": {
311
335
  "node": ">=6.9.0"
312
336
  }
313
337
  },
314
338
  "node_modules/@babel/helper-string-parser": {
315
- "version": "7.24.8",
339
+ "version": "7.25.7",
340
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz",
341
+ "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==",
316
342
  "license": "MIT",
317
343
  "engines": {
318
344
  "node": ">=6.9.0"
319
345
  }
320
346
  },
321
347
  "node_modules/@babel/helper-validator-identifier": {
322
- "version": "7.24.7",
348
+ "version": "7.25.7",
349
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz",
350
+ "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==",
323
351
  "license": "MIT",
324
352
  "engines": {
325
353
  "node": ">=6.9.0"
326
354
  }
327
355
  },
328
356
  "node_modules/@babel/helper-validator-option": {
329
- "version": "7.24.8",
357
+ "version": "7.25.7",
358
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz",
359
+ "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==",
330
360
  "license": "MIT",
331
361
  "engines": {
332
362
  "node": ">=6.9.0"
@@ -356,10 +386,12 @@
356
386
  }
357
387
  },
358
388
  "node_modules/@babel/highlight": {
359
- "version": "7.24.7",
389
+ "version": "7.25.7",
390
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz",
391
+ "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==",
360
392
  "license": "MIT",
361
393
  "dependencies": {
362
- "@babel/helper-validator-identifier": "^7.24.7",
394
+ "@babel/helper-validator-identifier": "^7.25.7",
363
395
  "chalk": "^2.4.2",
364
396
  "js-tokens": "^4.0.0",
365
397
  "picocolors": "^1.0.0"
@@ -369,10 +401,12 @@
369
401
  }
370
402
  },
371
403
  "node_modules/@babel/parser": {
372
- "version": "7.25.3",
404
+ "version": "7.25.7",
405
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.7.tgz",
406
+ "integrity": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==",
373
407
  "license": "MIT",
374
408
  "dependencies": {
375
- "@babel/types": "^7.25.2"
409
+ "@babel/types": "^7.25.7"
376
410
  },
377
411
  "bin": {
378
412
  "parser": "bin/babel-parser.js"
@@ -604,10 +638,12 @@
604
638
  }
605
639
  },
606
640
  "node_modules/@babel/plugin-syntax-flow": {
607
- "version": "7.24.7",
641
+ "version": "7.25.7",
642
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.25.7.tgz",
643
+ "integrity": "sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==",
608
644
  "license": "MIT",
609
645
  "dependencies": {
610
- "@babel/helper-plugin-utils": "^7.24.7"
646
+ "@babel/helper-plugin-utils": "^7.25.7"
611
647
  },
612
648
  "engines": {
613
649
  "node": ">=6.9.0"
@@ -663,10 +699,12 @@
663
699
  }
664
700
  },
665
701
  "node_modules/@babel/plugin-syntax-jsx": {
666
- "version": "7.24.7",
702
+ "version": "7.25.7",
703
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz",
704
+ "integrity": "sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==",
667
705
  "license": "MIT",
668
706
  "dependencies": {
669
- "@babel/helper-plugin-utils": "^7.24.7"
707
+ "@babel/helper-plugin-utils": "^7.25.7"
670
708
  },
671
709
  "engines": {
672
710
  "node": ">=6.9.0"
@@ -762,10 +800,12 @@
762
800
  }
763
801
  },
764
802
  "node_modules/@babel/plugin-syntax-typescript": {
765
- "version": "7.24.7",
803
+ "version": "7.25.7",
804
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz",
805
+ "integrity": "sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==",
766
806
  "license": "MIT",
767
807
  "dependencies": {
768
- "@babel/helper-plugin-utils": "^7.24.7"
808
+ "@babel/helper-plugin-utils": "^7.25.7"
769
809
  },
770
810
  "engines": {
771
811
  "node": ">=6.9.0"
@@ -1016,11 +1056,13 @@
1016
1056
  }
1017
1057
  },
1018
1058
  "node_modules/@babel/plugin-transform-flow-strip-types": {
1019
- "version": "7.25.2",
1059
+ "version": "7.25.7",
1060
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.7.tgz",
1061
+ "integrity": "sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==",
1020
1062
  "license": "MIT",
1021
1063
  "dependencies": {
1022
- "@babel/helper-plugin-utils": "^7.24.8",
1023
- "@babel/plugin-syntax-flow": "^7.24.7"
1064
+ "@babel/helper-plugin-utils": "^7.25.7",
1065
+ "@babel/plugin-syntax-flow": "^7.25.7"
1024
1066
  },
1025
1067
  "engines": {
1026
1068
  "node": ">=6.9.0"
@@ -1127,12 +1169,14 @@
1127
1169
  }
1128
1170
  },
1129
1171
  "node_modules/@babel/plugin-transform-modules-commonjs": {
1130
- "version": "7.24.8",
1172
+ "version": "7.25.7",
1173
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.25.7.tgz",
1174
+ "integrity": "sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==",
1131
1175
  "license": "MIT",
1132
1176
  "dependencies": {
1133
- "@babel/helper-module-transforms": "^7.24.8",
1134
- "@babel/helper-plugin-utils": "^7.24.8",
1135
- "@babel/helper-simple-access": "^7.24.7"
1177
+ "@babel/helper-module-transforms": "^7.25.7",
1178
+ "@babel/helper-plugin-utils": "^7.25.7",
1179
+ "@babel/helper-simple-access": "^7.25.7"
1136
1180
  },
1137
1181
  "engines": {
1138
1182
  "node": ">=6.9.0"
@@ -1509,14 +1553,16 @@
1509
1553
  }
1510
1554
  },
1511
1555
  "node_modules/@babel/plugin-transform-typescript": {
1512
- "version": "7.25.2",
1556
+ "version": "7.25.7",
1557
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.7.tgz",
1558
+ "integrity": "sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==",
1513
1559
  "license": "MIT",
1514
1560
  "dependencies": {
1515
- "@babel/helper-annotate-as-pure": "^7.24.7",
1516
- "@babel/helper-create-class-features-plugin": "^7.25.0",
1517
- "@babel/helper-plugin-utils": "^7.24.8",
1518
- "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7",
1519
- "@babel/plugin-syntax-typescript": "^7.24.7"
1561
+ "@babel/helper-annotate-as-pure": "^7.25.7",
1562
+ "@babel/helper-create-class-features-plugin": "^7.25.7",
1563
+ "@babel/helper-plugin-utils": "^7.25.7",
1564
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7",
1565
+ "@babel/plugin-syntax-typescript": "^7.25.7"
1520
1566
  },
1521
1567
  "engines": {
1522
1568
  "node": ">=6.9.0"
@@ -1676,14 +1722,14 @@
1676
1722
  }
1677
1723
  },
1678
1724
  "node_modules/@babel/preset-flow": {
1679
- "version": "7.24.7",
1680
- "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.7.tgz",
1681
- "integrity": "sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==",
1725
+ "version": "7.25.7",
1726
+ "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.7.tgz",
1727
+ "integrity": "sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==",
1682
1728
  "license": "MIT",
1683
1729
  "dependencies": {
1684
- "@babel/helper-plugin-utils": "^7.24.7",
1685
- "@babel/helper-validator-option": "^7.24.7",
1686
- "@babel/plugin-transform-flow-strip-types": "^7.24.7"
1730
+ "@babel/helper-plugin-utils": "^7.25.7",
1731
+ "@babel/helper-validator-option": "^7.25.7",
1732
+ "@babel/plugin-transform-flow-strip-types": "^7.25.7"
1687
1733
  },
1688
1734
  "engines": {
1689
1735
  "node": ">=6.9.0"
@@ -1705,16 +1751,16 @@
1705
1751
  }
1706
1752
  },
1707
1753
  "node_modules/@babel/preset-typescript": {
1708
- "version": "7.24.7",
1709
- "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz",
1710
- "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==",
1754
+ "version": "7.25.7",
1755
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.25.7.tgz",
1756
+ "integrity": "sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==",
1711
1757
  "license": "MIT",
1712
1758
  "dependencies": {
1713
- "@babel/helper-plugin-utils": "^7.24.7",
1714
- "@babel/helper-validator-option": "^7.24.7",
1715
- "@babel/plugin-syntax-jsx": "^7.24.7",
1716
- "@babel/plugin-transform-modules-commonjs": "^7.24.7",
1717
- "@babel/plugin-transform-typescript": "^7.24.7"
1759
+ "@babel/helper-plugin-utils": "^7.25.7",
1760
+ "@babel/helper-validator-option": "^7.25.7",
1761
+ "@babel/plugin-syntax-jsx": "^7.25.7",
1762
+ "@babel/plugin-transform-modules-commonjs": "^7.25.7",
1763
+ "@babel/plugin-transform-typescript": "^7.25.7"
1718
1764
  },
1719
1765
  "engines": {
1720
1766
  "node": ">=6.9.0"
@@ -1724,9 +1770,9 @@
1724
1770
  }
1725
1771
  },
1726
1772
  "node_modules/@babel/register": {
1727
- "version": "7.24.6",
1728
- "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.24.6.tgz",
1729
- "integrity": "sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==",
1773
+ "version": "7.25.7",
1774
+ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.7.tgz",
1775
+ "integrity": "sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==",
1730
1776
  "license": "MIT",
1731
1777
  "dependencies": {
1732
1778
  "clone-deep": "^4.0.1",
@@ -1789,26 +1835,30 @@
1789
1835
  }
1790
1836
  },
1791
1837
  "node_modules/@babel/template": {
1792
- "version": "7.25.0",
1838
+ "version": "7.25.7",
1839
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz",
1840
+ "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==",
1793
1841
  "license": "MIT",
1794
1842
  "dependencies": {
1795
- "@babel/code-frame": "^7.24.7",
1796
- "@babel/parser": "^7.25.0",
1797
- "@babel/types": "^7.25.0"
1843
+ "@babel/code-frame": "^7.25.7",
1844
+ "@babel/parser": "^7.25.7",
1845
+ "@babel/types": "^7.25.7"
1798
1846
  },
1799
1847
  "engines": {
1800
1848
  "node": ">=6.9.0"
1801
1849
  }
1802
1850
  },
1803
1851
  "node_modules/@babel/traverse": {
1804
- "version": "7.25.3",
1852
+ "version": "7.25.7",
1853
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz",
1854
+ "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==",
1805
1855
  "license": "MIT",
1806
1856
  "dependencies": {
1807
- "@babel/code-frame": "^7.24.7",
1808
- "@babel/generator": "^7.25.0",
1809
- "@babel/parser": "^7.25.3",
1810
- "@babel/template": "^7.25.0",
1811
- "@babel/types": "^7.25.2",
1857
+ "@babel/code-frame": "^7.25.7",
1858
+ "@babel/generator": "^7.25.7",
1859
+ "@babel/parser": "^7.25.7",
1860
+ "@babel/template": "^7.25.7",
1861
+ "@babel/types": "^7.25.7",
1812
1862
  "debug": "^4.3.1",
1813
1863
  "globals": "^11.1.0"
1814
1864
  },
@@ -1817,11 +1867,13 @@
1817
1867
  }
1818
1868
  },
1819
1869
  "node_modules/@babel/types": {
1820
- "version": "7.25.2",
1870
+ "version": "7.25.7",
1871
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.7.tgz",
1872
+ "integrity": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==",
1821
1873
  "license": "MIT",
1822
1874
  "dependencies": {
1823
- "@babel/helper-string-parser": "^7.24.8",
1824
- "@babel/helper-validator-identifier": "^7.24.7",
1875
+ "@babel/helper-string-parser": "^7.25.7",
1876
+ "@babel/helper-validator-identifier": "^7.25.7",
1825
1877
  "to-fast-properties": "^2.0.0"
1826
1878
  },
1827
1879
  "engines": {
@@ -3726,30 +3778,30 @@
3726
3778
  }
3727
3779
  },
3728
3780
  "node_modules/@react-native/assets-registry": {
3729
- "version": "0.75.3",
3730
- "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.75.3.tgz",
3731
- "integrity": "sha512-i7MaRbYR06WdpJWv3a0PQ2ScFBUeevwcJ0tVopnFwTg0tBWp3NFEMDIcU8lyXVy9Y59WmrP1V2ROaRDaPiESgg==",
3781
+ "version": "0.75.4",
3782
+ "resolved": "https://registry.npmjs.org/@react-native/assets-registry/-/assets-registry-0.75.4.tgz",
3783
+ "integrity": "sha512-WX6/LNHwyjislSFM+h3qQjBiPaXXPJW5ZV4TdgNKb6QOPO0g1KGYRQj44cI2xSpZ3fcWrvQFZfQgSMbVK9Sg7A==",
3732
3784
  "license": "MIT",
3733
3785
  "engines": {
3734
3786
  "node": ">=18"
3735
3787
  }
3736
3788
  },
3737
3789
  "node_modules/@react-native/babel-plugin-codegen": {
3738
- "version": "0.75.3",
3739
- "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.3.tgz",
3740
- "integrity": "sha512-8JmXEKq+Efb9AffsV48l8gmKe/ZQ2PbBygZjHdIf8DNZZhO/z5mt27J4B43MWNdp5Ww1l59T0mEaf8l/uywQUg==",
3790
+ "version": "0.75.4",
3791
+ "resolved": "https://registry.npmjs.org/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.75.4.tgz",
3792
+ "integrity": "sha512-gu5ZRIdr7+ufi09DJROhfDtbF4biTnCDJqtqcmtsku4cXOXPHE36QbC/vAmKEZ0PMPURBI8lwF2wfaeHLn7gig==",
3741
3793
  "license": "MIT",
3742
3794
  "dependencies": {
3743
- "@react-native/codegen": "0.75.3"
3795
+ "@react-native/codegen": "0.75.4"
3744
3796
  },
3745
3797
  "engines": {
3746
3798
  "node": ">=18"
3747
3799
  }
3748
3800
  },
3749
3801
  "node_modules/@react-native/babel-preset": {
3750
- "version": "0.75.3",
3751
- "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.75.3.tgz",
3752
- "integrity": "sha512-VZQkQEj36DKEGApXFYdVcFtqdglbnoVr7aOZpjffURSgPcIA9vWTm1b+OL4ayOaRZXTZKiDBNQCXvBX5E5AgQg==",
3802
+ "version": "0.75.4",
3803
+ "resolved": "https://registry.npmjs.org/@react-native/babel-preset/-/babel-preset-0.75.4.tgz",
3804
+ "integrity": "sha512-UtyYCDJ3rZIeggyFEfh/q5t/FZ5a1h9F8EI37Nbrwyk/OKPH+1XS4PbHROHJzBARlJwOAfmT75+ovYUO0eakJA==",
3753
3805
  "license": "MIT",
3754
3806
  "dependencies": {
3755
3807
  "@babel/core": "^7.20.0",
@@ -3794,7 +3846,7 @@
3794
3846
  "@babel/plugin-transform-typescript": "^7.5.0",
3795
3847
  "@babel/plugin-transform-unicode-regex": "^7.0.0",
3796
3848
  "@babel/template": "^7.0.0",
3797
- "@react-native/babel-plugin-codegen": "0.75.3",
3849
+ "@react-native/babel-plugin-codegen": "0.75.4",
3798
3850
  "babel-plugin-transform-flow-enums": "^0.0.2",
3799
3851
  "react-refresh": "^0.14.0"
3800
3852
  },
@@ -3806,9 +3858,9 @@
3806
3858
  }
3807
3859
  },
3808
3860
  "node_modules/@react-native/codegen": {
3809
- "version": "0.75.3",
3810
- "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.75.3.tgz",
3811
- "integrity": "sha512-I0bz5jwOkiR7vnhYLGoV22RGmesErUg03tjsCiQgmsMpbyCYumudEtLNN5+DplHGK56bu8KyzBqKkWXGSKSCZQ==",
3861
+ "version": "0.75.4",
3862
+ "resolved": "https://registry.npmjs.org/@react-native/codegen/-/codegen-0.75.4.tgz",
3863
+ "integrity": "sha512-0FplNAD/S5FUvm8YIn6uyarOcP4jdJPqWz17K4a/Gp2KSsG/JJKEskX3aj5wpePzVfNQl3WyvBJ0whODdCocIA==",
3812
3864
  "license": "MIT",
3813
3865
  "dependencies": {
3814
3866
  "@babel/parser": "^7.20.0",
@@ -3828,15 +3880,15 @@
3828
3880
  }
3829
3881
  },
3830
3882
  "node_modules/@react-native/community-cli-plugin": {
3831
- "version": "0.75.3",
3832
- "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.3.tgz",
3833
- "integrity": "sha512-njsYm+jBWzfLcJcxavAY5QFzYTrmPtjbxq/64GSqwcQYzy9qAkI7LNTK/Wprq1I/4HOuHJO7Km+EddCXB+ByRQ==",
3883
+ "version": "0.75.4",
3884
+ "resolved": "https://registry.npmjs.org/@react-native/community-cli-plugin/-/community-cli-plugin-0.75.4.tgz",
3885
+ "integrity": "sha512-k/hevYPjEpW0MNVVyb3v9PJosOP+FzenS7+oqYNLXdEmgTnGHrAtYX9ABrJJgzeJt7I6g8g+RDvm8PSE+tnM5w==",
3834
3886
  "license": "MIT",
3835
3887
  "dependencies": {
3836
3888
  "@react-native-community/cli-server-api": "14.1.0",
3837
3889
  "@react-native-community/cli-tools": "14.1.0",
3838
- "@react-native/dev-middleware": "0.75.3",
3839
- "@react-native/metro-babel-transformer": "0.75.3",
3890
+ "@react-native/dev-middleware": "0.75.4",
3891
+ "@react-native/metro-babel-transformer": "0.75.4",
3840
3892
  "chalk": "^4.0.0",
3841
3893
  "execa": "^5.1.1",
3842
3894
  "metro": "^0.80.3",
@@ -3920,22 +3972,22 @@
3920
3972
  }
3921
3973
  },
3922
3974
  "node_modules/@react-native/debugger-frontend": {
3923
- "version": "0.75.3",
3924
- "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.75.3.tgz",
3925
- "integrity": "sha512-99bLQsUwsxUMNR7Wa9eV2uyR38yfd6mOEqfN+JIm8/L9sKA926oh+CZkjDy1M8RmCB6spB5N9fVFVkrVdf2yFA==",
3975
+ "version": "0.75.4",
3976
+ "resolved": "https://registry.npmjs.org/@react-native/debugger-frontend/-/debugger-frontend-0.75.4.tgz",
3977
+ "integrity": "sha512-QfGurR5hV6bhMPn/6VxS2RomYrPRFGwA03jJr+zKyWHnxDAu5jOqYVyKAktIIbhYe5sPp78QVl1ZYuhcnsRbEw==",
3926
3978
  "license": "BSD-3-Clause",
3927
3979
  "engines": {
3928
3980
  "node": ">=18"
3929
3981
  }
3930
3982
  },
3931
3983
  "node_modules/@react-native/dev-middleware": {
3932
- "version": "0.75.3",
3933
- "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.75.3.tgz",
3934
- "integrity": "sha512-h2/6+UGmeMWjnT43axy27jNqoDRsE1C1qpjRC3sYpD4g0bI0jSTkY1kAgj8uqGGXLnHXiHOtjLDGdbAgZrsPaA==",
3984
+ "version": "0.75.4",
3985
+ "resolved": "https://registry.npmjs.org/@react-native/dev-middleware/-/dev-middleware-0.75.4.tgz",
3986
+ "integrity": "sha512-UhyBeQOG2wNcvrUGw3+IBrHBk/lIu7hHGmWt4j8W9Aqv9BwktHKkPyko+5A1yoUeO1O/VDnHWYqWeOejcA9wpQ==",
3935
3987
  "license": "MIT",
3936
3988
  "dependencies": {
3937
3989
  "@isaacs/ttlcache": "^1.4.1",
3938
- "@react-native/debugger-frontend": "0.75.3",
3990
+ "@react-native/debugger-frontend": "0.75.4",
3939
3991
  "chrome-launcher": "^0.15.2",
3940
3992
  "chromium-edge-launcher": "^0.2.0",
3941
3993
  "connect": "^3.6.5",
@@ -3992,15 +4044,15 @@
3992
4044
  }
3993
4045
  },
3994
4046
  "node_modules/@react-native/eslint-config": {
3995
- "version": "0.75.3",
3996
- "resolved": "https://registry.npmjs.org/@react-native/eslint-config/-/eslint-config-0.75.3.tgz",
3997
- "integrity": "sha512-BUkgQ3+irVZFfikIX3JgQQut/LABcumMZD3lzWRpf1hpbsEsXmYLo3u9qpfyYsavnqVGtWg8bLZDDGG6lmQBhA==",
4047
+ "version": "0.75.4",
4048
+ "resolved": "https://registry.npmjs.org/@react-native/eslint-config/-/eslint-config-0.75.4.tgz",
4049
+ "integrity": "sha512-3KBHYwp4HnBdaCFx9KDPvQY+sGrv5fHX2qDkXGKmN3uYBz+zfnMQXTiht6OuBbWULUF0y0o8m+uH1yYAn/V9mw==",
3998
4050
  "dev": true,
3999
4051
  "license": "MIT",
4000
4052
  "dependencies": {
4001
4053
  "@babel/core": "^7.20.0",
4002
4054
  "@babel/eslint-parser": "^7.20.0",
4003
- "@react-native/eslint-plugin": "0.75.3",
4055
+ "@react-native/eslint-plugin": "0.75.4",
4004
4056
  "@typescript-eslint/eslint-plugin": "^7.1.1",
4005
4057
  "@typescript-eslint/parser": "^7.1.1",
4006
4058
  "eslint-config-prettier": "^8.5.0",
@@ -4020,9 +4072,9 @@
4020
4072
  }
4021
4073
  },
4022
4074
  "node_modules/@react-native/eslint-plugin": {
4023
- "version": "0.75.3",
4024
- "resolved": "https://registry.npmjs.org/@react-native/eslint-plugin/-/eslint-plugin-0.75.3.tgz",
4025
- "integrity": "sha512-p0BwuqflumZtUJ8VUt5YQPsYnxrwfHJZCTQ0N1X+4B8aoBNIKxtfzeIqJsSz/GvM86HGgGnd/nyxEo8IwkPo7Q==",
4075
+ "version": "0.75.4",
4076
+ "resolved": "https://registry.npmjs.org/@react-native/eslint-plugin/-/eslint-plugin-0.75.4.tgz",
4077
+ "integrity": "sha512-1kEZzC8UKi3baHnH7tBVCNpF4aoAmT7g7hEa5/rtZ+Z7vcpaxeY6wjNYt3j02Z9n310yX0NKDJox30CqvzEvsg==",
4026
4078
  "dev": true,
4027
4079
  "license": "MIT",
4028
4080
  "engines": {
@@ -4030,31 +4082,31 @@
4030
4082
  }
4031
4083
  },
4032
4084
  "node_modules/@react-native/gradle-plugin": {
4033
- "version": "0.75.3",
4034
- "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.75.3.tgz",
4035
- "integrity": "sha512-mSfa/Mq/AsALuG/kvXz5ECrc6HdY5waMHal2sSfa8KA0Gt3JqYQVXF9Pdwd4yR5ClPZDI2HRa1tdE8GVlhMvPA==",
4085
+ "version": "0.75.4",
4086
+ "resolved": "https://registry.npmjs.org/@react-native/gradle-plugin/-/gradle-plugin-0.75.4.tgz",
4087
+ "integrity": "sha512-kKTmw7cF7p1raT30DC0L6N+xiVXN7dlRy0J+hYPiCRRVHplwgvyS7pszjxfzwXmHFqOxwpxQVI3du8opsma1Mg==",
4036
4088
  "license": "MIT",
4037
4089
  "engines": {
4038
4090
  "node": ">=18"
4039
4091
  }
4040
4092
  },
4041
4093
  "node_modules/@react-native/js-polyfills": {
4042
- "version": "0.75.3",
4043
- "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.75.3.tgz",
4044
- "integrity": "sha512-+JVFJ351GSJT3V7LuXscMqfnpR/UxzsAjbBjfAHBR3kqTbVqrAmBccqPCA3NLzgb/RY8khLJklwMUVlWrn8iFg==",
4094
+ "version": "0.75.4",
4095
+ "resolved": "https://registry.npmjs.org/@react-native/js-polyfills/-/js-polyfills-0.75.4.tgz",
4096
+ "integrity": "sha512-NF5ID5FjcVHBYk1LQ4JMRjPmxBWEo4yoqW1m6vGOQZPT8D5Qs9afgx3f7gQatxbn3ivMh0FVbLW0zBx6LyxEzA==",
4045
4097
  "license": "MIT",
4046
4098
  "engines": {
4047
4099
  "node": ">=18"
4048
4100
  }
4049
4101
  },
4050
4102
  "node_modules/@react-native/metro-babel-transformer": {
4051
- "version": "0.75.3",
4052
- "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.3.tgz",
4053
- "integrity": "sha512-gDlEl6C2mwQPLxFOR+yla5MpJpDPNOFD6J5Hd9JM9+lOdUq6MNujh1Xn4ZMvglW7rfViq3nMjg4xPQeGUhDG+w==",
4103
+ "version": "0.75.4",
4104
+ "resolved": "https://registry.npmjs.org/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.75.4.tgz",
4105
+ "integrity": "sha512-O0WMW/K8Ny/MAAeRebqGEQhrbzcioxcPHZtos+EH2hWeBTEKHQV8fMYYxfYDabpr392qdhSBwg3LlXUD4U3PXQ==",
4054
4106
  "license": "MIT",
4055
4107
  "dependencies": {
4056
4108
  "@babel/core": "^7.20.0",
4057
- "@react-native/babel-preset": "0.75.3",
4109
+ "@react-native/babel-preset": "0.75.4",
4058
4110
  "hermes-parser": "0.22.0",
4059
4111
  "nullthrows": "^1.1.1"
4060
4112
  },
@@ -4066,14 +4118,14 @@
4066
4118
  }
4067
4119
  },
4068
4120
  "node_modules/@react-native/metro-config": {
4069
- "version": "0.75.3",
4070
- "resolved": "https://registry.npmjs.org/@react-native/metro-config/-/metro-config-0.75.3.tgz",
4071
- "integrity": "sha512-BKvJGCzKMtGPfKU4v8+16xtv6iXPbnSeeD6ONvzW0Hm9amPxAP9GGweiUTwnOXUqt9XcfRhytZosiOmGa39Wqg==",
4121
+ "version": "0.75.4",
4122
+ "resolved": "https://registry.npmjs.org/@react-native/metro-config/-/metro-config-0.75.4.tgz",
4123
+ "integrity": "sha512-gIIVlPUtZ1UKCxMJRtG88FoWS5REbI4YUmiyoM8eBUA85Zvk27b67iBX5Lkuxg8FGc7t9tjWQRpVGs2IK5uZpQ==",
4072
4124
  "dev": true,
4073
4125
  "license": "MIT",
4074
4126
  "dependencies": {
4075
- "@react-native/js-polyfills": "0.75.3",
4076
- "@react-native/metro-babel-transformer": "0.75.3",
4127
+ "@react-native/js-polyfills": "0.75.4",
4128
+ "@react-native/metro-babel-transformer": "0.75.4",
4077
4129
  "metro-config": "^0.80.3",
4078
4130
  "metro-runtime": "^0.80.3"
4079
4131
  },
@@ -4082,22 +4134,22 @@
4082
4134
  }
4083
4135
  },
4084
4136
  "node_modules/@react-native/normalize-colors": {
4085
- "version": "0.75.3",
4086
- "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.75.3.tgz",
4087
- "integrity": "sha512-3mhF8AJFfIN0E5bEs/DQ4U2LzMJYm+FPSwY5bJ1DZhrxW1PFAh24bAPrSd8PwS0iarQ7biLdr1lWf/8LFv8pDA==",
4137
+ "version": "0.75.4",
4138
+ "resolved": "https://registry.npmjs.org/@react-native/normalize-colors/-/normalize-colors-0.75.4.tgz",
4139
+ "integrity": "sha512-90QrQDLg0/k9xqYesaKuIkayOSjD+FKa0hsHollbwT5h3kuGMY+lU7UZxnb8tU55Y1PKdvjYxqQsYWI/ql79zA==",
4088
4140
  "license": "MIT"
4089
4141
  },
4090
4142
  "node_modules/@react-native/typescript-config": {
4091
- "version": "0.75.3",
4092
- "resolved": "https://registry.npmjs.org/@react-native/typescript-config/-/typescript-config-0.75.3.tgz",
4093
- "integrity": "sha512-yekwhjG9lDvib+3jYwagEXcyTJ4mEryDLCoQINWCwy+7GtMx2BrKweHc4Phcc1dqmK1U/XMzVUXF3X3hc+FVPA==",
4143
+ "version": "0.75.4",
4144
+ "resolved": "https://registry.npmjs.org/@react-native/typescript-config/-/typescript-config-0.75.4.tgz",
4145
+ "integrity": "sha512-0849BqSIDGYltqMbniZg1MvDSFO5KMQsmIKpGzioTm3+SF73Ec1LihA1CtpJyZFonEclKXEIawRTNh2bxGgJJQ==",
4094
4146
  "dev": true,
4095
4147
  "license": "MIT"
4096
4148
  },
4097
4149
  "node_modules/@react-native/virtualized-lists": {
4098
- "version": "0.75.3",
4099
- "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.75.3.tgz",
4100
- "integrity": "sha512-cTLm7k7Y//SvV8UK8esrDHEw5OrwwSJ4Fqc3x52Imi6ROuhshfGIPFwhtn4pmAg9nWHzHwwqiJ+9hCSVnXXX+g==",
4150
+ "version": "0.75.4",
4151
+ "resolved": "https://registry.npmjs.org/@react-native/virtualized-lists/-/virtualized-lists-0.75.4.tgz",
4152
+ "integrity": "sha512-iEauRiXjvWG/iOH8bV+9MfepCS+72cuL5rhkrenYZS0NUnDcNjF+wtaoS9+Gx5z1UJOfEXxSmyXRtQJZne8SnA==",
4101
4153
  "license": "MIT",
4102
4154
  "dependencies": {
4103
4155
  "invariant": "^2.2.4",
@@ -5216,6 +5268,8 @@
5216
5268
  },
5217
5269
  "node_modules/chalk": {
5218
5270
  "version": "2.4.2",
5271
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
5272
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
5219
5273
  "license": "MIT",
5220
5274
  "dependencies": {
5221
5275
  "ansi-styles": "^3.2.1",
@@ -7102,9 +7156,9 @@
7102
7156
  "license": "MIT"
7103
7157
  },
7104
7158
  "node_modules/flow-parser": {
7105
- "version": "0.246.0",
7106
- "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.246.0.tgz",
7107
- "integrity": "sha512-WHRizzSrWFTcKo7cVcbP3wzZVhzsoYxoWqbnH4z+JXGqrjVmnsld6kBZWVlB200PwD5ur8r+HV3KUDxv3cHhOQ==",
7159
+ "version": "0.247.1",
7160
+ "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.247.1.tgz",
7161
+ "integrity": "sha512-DHwcm06fWbn2Z6uFD3NaBZ5lMOoABIQ4asrVA80IWvYjjT5WdbghkUOL1wIcbLcagnFTdCZYOlSNnKNp/xnRZQ==",
7108
7162
  "license": "MIT",
7109
7163
  "engines": {
7110
7164
  "node": ">=0.4.0"
@@ -7372,6 +7426,8 @@
7372
7426
  },
7373
7427
  "node_modules/has-flag": {
7374
7428
  "version": "3.0.0",
7429
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
7430
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
7375
7431
  "license": "MIT",
7376
7432
  "engines": {
7377
7433
  "node": ">=4"
@@ -9697,13 +9753,15 @@
9697
9753
  }
9698
9754
  },
9699
9755
  "node_modules/jsesc": {
9700
- "version": "2.5.2",
9756
+ "version": "3.0.2",
9757
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
9758
+ "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
9701
9759
  "license": "MIT",
9702
9760
  "bin": {
9703
9761
  "jsesc": "bin/jsesc"
9704
9762
  },
9705
9763
  "engines": {
9706
- "node": ">=4"
9764
+ "node": ">=6"
9707
9765
  }
9708
9766
  },
9709
9767
  "node_modules/json-buffer": {
@@ -11314,22 +11372,22 @@
11314
11372
  "license": "MIT"
11315
11373
  },
11316
11374
  "node_modules/react-native": {
11317
- "version": "0.75.3",
11318
- "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.75.3.tgz",
11319
- "integrity": "sha512-+Ne6u5H+tPo36sme19SCd1u2UID2uo0J/XzAJarxmrDj4Nsdi44eyUDKtQHmhgxjRGsuVJqAYrMK0abLSq8AHw==",
11375
+ "version": "0.75.4",
11376
+ "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.75.4.tgz",
11377
+ "integrity": "sha512-Jehg4AMNIAXu9cn0/1jbTCoNg3tc+t6EekwucCalN8YoRmxGd/PY6osQTI/5fSAM40JQ4O8uv8Qg09Ycpb5sxQ==",
11320
11378
  "license": "MIT",
11321
11379
  "dependencies": {
11322
11380
  "@jest/create-cache-key-function": "^29.6.3",
11323
11381
  "@react-native-community/cli": "14.1.0",
11324
11382
  "@react-native-community/cli-platform-android": "14.1.0",
11325
11383
  "@react-native-community/cli-platform-ios": "14.1.0",
11326
- "@react-native/assets-registry": "0.75.3",
11327
- "@react-native/codegen": "0.75.3",
11328
- "@react-native/community-cli-plugin": "0.75.3",
11329
- "@react-native/gradle-plugin": "0.75.3",
11330
- "@react-native/js-polyfills": "0.75.3",
11331
- "@react-native/normalize-colors": "0.75.3",
11332
- "@react-native/virtualized-lists": "0.75.3",
11384
+ "@react-native/assets-registry": "0.75.4",
11385
+ "@react-native/codegen": "0.75.4",
11386
+ "@react-native/community-cli-plugin": "0.75.4",
11387
+ "@react-native/gradle-plugin": "0.75.4",
11388
+ "@react-native/js-polyfills": "0.75.4",
11389
+ "@react-native/normalize-colors": "0.75.4",
11390
+ "@react-native/virtualized-lists": "0.75.4",
11333
11391
  "abort-controller": "^3.0.0",
11334
11392
  "anser": "^1.4.9",
11335
11393
  "ansi-regex": "^5.0.0",
@@ -12352,6 +12410,8 @@
12352
12410
  },
12353
12411
  "node_modules/supports-color": {
12354
12412
  "version": "5.5.0",
12413
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
12414
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
12355
12415
  "license": "MIT",
12356
12416
  "dependencies": {
12357
12417
  "has-flag": "^3.0.0"
@@ -12,10 +12,10 @@
12
12
  "test": "jest"
13
13
  },
14
14
  "dependencies": {
15
- "@regulaforensics/face-sdk": "6.3.29-beta",
16
- "@regulaforensics/react-native-face-core-basic": "6.3.165",
15
+ "@regulaforensics/face-sdk": "6.3.42-beta",
16
+ "@regulaforensics/face-core-basic": "6.3.12-beta",
17
17
  "react": "18.3.1",
18
- "react-native": "0.75.3",
18
+ "react-native": "0.75.4",
19
19
  "react-native-fs": "2.20.0",
20
20
  "react-native-image-picker": "7.1.2"
21
21
  },
@@ -23,10 +23,10 @@
23
23
  "@babel/core": "^7.20.0",
24
24
  "@babel/preset-env": "^7.20.0",
25
25
  "@babel/runtime": "^7.20.0",
26
- "@react-native/babel-preset": "0.75.3",
27
- "@react-native/eslint-config": "0.75.3",
28
- "@react-native/metro-config": "0.75.3",
29
- "@react-native/typescript-config": "0.75.3",
26
+ "@react-native/babel-preset": "0.75.4",
27
+ "@react-native/eslint-config": "0.75.4",
28
+ "@react-native/metro-config": "0.75.4",
29
+ "@react-native/typescript-config": "0.75.4",
30
30
  "@types/react": "^18.2.6",
31
31
  "@types/react-test-renderer": "^18.0.0",
32
32
  "babel-jest": "^29.6.3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/face-sdk",
3
- "version": "6.3.29-beta",
3
+ "version": "6.3.42-beta",
4
4
  "description": "This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.",
5
5
  "main": "www/react-native/index.js",
6
6
  "module": "www/capacitor/index.js",
package/plugin.xml CHANGED
@@ -1,5 +1,5 @@
1
1
  <?xml version='1.0' encoding='utf-8'?>
2
- <plugin id="face-sdk" version="6.3.29-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
2
+ <plugin id="@regulaforensics/face-sdk" version="6.3.42-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
3
  <name>FaceSDK</name>
4
4
  <description>Cordova plugin for Regula Face SDK</description>
5
5
  <license>commercial</license>
@@ -1 +0,0 @@
1
- <manifest package="com.regula.plugin.facesdk" />
@@ -1,11 +0,0 @@
1
- package com.regula.plugin.facesdk
2
-
3
- import com.facebook.react.ReactPackage
4
- import com.facebook.react.bridge.NativeModule
5
- import com.facebook.react.bridge.ReactApplicationContext
6
- import com.facebook.react.uimanager.ViewManager
7
-
8
- class RNFaceSDKPackage : ReactPackage {
9
- override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> = listOf(RNFaceSDKModule(reactContext))
10
- override fun createViewManagers(reactContext: ReactApplicationContext): List<ViewManager<*, *>> = emptyList()
11
- }