@regulaforensics/idv 3.10.197-beta → 3.10.199-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.
@@ -8,11 +8,11 @@
8
8
  "start": "expo start"
9
9
  },
10
10
  "dependencies": {
11
- "@regulaforensics/idv": "3.10.197-beta",
12
- "@regulaforensics/idv-module-document-reader": "3.9.164",
13
- "@regulaforensics/idv-module-face": "3.9.165",
14
- "@regulaforensics/document-reader-core-fullauthrfid": "9.7.2727",
15
- "@regulaforensics/face-core-basic": "8.3.683",
11
+ "@regulaforensics/idv": "3.10.199-nightly",
12
+ "@regulaforensics/idv-module-document-reader": "3.10.240-nightly",
13
+ "@regulaforensics/idv-module-face": "3.10.243-nightly",
14
+ "@regulaforensics/document-reader-core-fullauthrfid": "9.8.2958-nightly",
15
+ "@regulaforensics/face-core-basic": "8.4.810-nightly",
16
16
  "expo": "^56.0.8",
17
17
  "expo-dev-client": "^56.0.18",
18
18
  "expo-build-properties": "^56.0.16",
@@ -22,13 +22,12 @@
22
22
  "react": "^19.2.7",
23
23
  "@types/react": "^19.2.16",
24
24
  "react-native-webview": "^13.16.1",
25
- "typescript": "6.0.3",
26
- "image-size": "file:vendor/image-size-metro-compat"
25
+ "typescript": "6.0.3"
27
26
  },
28
27
  "overrides": {
29
28
  "postcss": "^8.5.10",
30
29
  "uuid": "^14.0.0",
31
- "image-size": "$image-size",
30
+ "image-size": "npm:image-size-next@2.1.1",
32
31
  "js-yaml": "^4.1.1"
33
32
  }
34
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/idv",
3
- "version": "3.10.197-beta",
3
+ "version": "3.10.199-nightly",
4
4
  "description": "This is an npm module for Regula IDV, which unifies access to all Regula products. This plugin makes possible to use it with react-native, cordova and capacitor applications. Supports Android and iOS.",
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="@regulaforensics/idv" version="3.10.197-beta" xmlns="http://apache.org/cordova/ns/plugins/1.0">
2
+ <plugin id="@regulaforensics/idv" version="3.10.199-nightly" xmlns="http://apache.org/cordova/ns/plugins/1.0">
3
3
  <name>IDV</name>
4
4
  <description>Cordova plugin for Regula IDV</description>
5
5
  <license>commercial</license>
@@ -26,7 +26,7 @@
26
26
  <source url="https://github.com/regulaforensics/podspecs.git" />
27
27
  </config>
28
28
  <pods>
29
- <pod name="IDVSDK" spec="3.9.1987" />
29
+ <pod name="IDVSDKNightly" spec="3.10.2048" />
30
30
  </pods>
31
31
  </podspec>
32
32
  </platform>
@@ -13,12 +13,9 @@
13
13
  },
14
14
  "..": {
15
15
  "name": "@regulaforensics/idv",
16
- "version": "3.10.197-beta",
16
+ "version": "1.0.0",
17
17
  "dev": true,
18
- "license": "commercial",
19
- "dependencies": {
20
- "@expo/config-plugins": "^10.0.0"
21
- }
18
+ "license": "commercial"
22
19
  },
23
20
  "node_modules/@esbuild/aix-ppc64": {
24
21
  "version": "0.25.9",
package/test/test.tsx CHANGED
@@ -1,30 +1,6 @@
1
1
  import { compare } from './utils'
2
- import {
3
- CredentialsConnectionConfig,
4
- TokenConnectionConfig,
5
- ApiKeyConnectionConfig,
6
- PrepareWorkflowConfig,
7
- StartWorkflowConfig,
8
- Workflow,
9
- WorkflowStep,
10
- WorkflowResult,
11
- StartSessionConfig,
12
- SendDataConfig,
13
- LoginConfig,
14
- } from '@regulaforensics/idv/www/capacitor'
15
- import {
16
- apiKeyConnectionConfig,
17
- credentialsConnectionConfig,
18
- prepareWorkflowConfig,
19
- startWorkflowConfig,
20
- tokenConnectionConfig,
21
- workflow,
22
- workflowStep,
23
- workflowResult,
24
- startSessionConfig,
25
- sendDataConfig,
26
- loginConfig,
27
- } from './json'
2
+ import { CredentialsConnectionConfig, TokenConnectionConfig, ApiKeyConnectionConfig, PrepareWorkflowConfig, StartWorkflowConfig, Workflow, WorkflowStep, WorkflowResult, StartSessionConfig, SendDataConfig, LoginConfig } from '@regulaforensics/idv/www/capacitor'
3
+ import { apiKeyConnectionConfig, credentialsConnectionConfig, prepareWorkflowConfig, startWorkflowConfig, tokenConnectionConfig, workflow, workflowStep, workflowResult, startSessionConfig, sendDataConfig, loginConfig } from './json'
28
4
 
29
5
  compare('credentialsConnectionConfig', credentialsConnectionConfig, CredentialsConnectionConfig.fromJson)
30
6
  compare('tokenConnectionConfig', tokenConnectionConfig, TokenConnectionConfig.fromJson)
@@ -1,11 +1,4 @@
1
- import {
2
- exec,
3
- serializeInterface,
4
- setDidStartSessionCompletion,
5
- setDidEndSessionCompletion,
6
- setDidStartRestoreSessionCompletion,
7
- setDidContinueRemoteSessionCompletion,
8
- } from './internal/bridge'
1
+ import { exec, serializeInterface, setDidStartSessionCompletion, setDidEndSessionCompletion, setDidStartRestoreSessionCompletion, setDidContinueRemoteSessionCompletion } from './internal/bridge'
9
2
 
10
3
  import { TokenConnectionConfig } from './config/token_connection_config'
11
4
  import { CredentialsConnectionConfig } from './config/credentials_connection_config'
@@ -18,19 +11,8 @@ import { LoginConfig } from './config/login_config'
18
11
  import { Workflow } from './model/workflow'
19
12
  import { WorkflowResult } from './model/workflow_result'
20
13
  import { WorkflowStep } from './model/workflow_step'
21
- export {
22
- TokenConnectionConfig,
23
- CredentialsConnectionConfig,
24
- ApiKeyConnectionConfig,
25
- PrepareWorkflowConfig,
26
- StartWorkflowConfig,
27
- StartSessionConfig,
28
- SendDataConfig,
29
- LoginConfig,
30
- Workflow,
31
- WorkflowResult,
32
- WorkflowStep,
33
- }
14
+
15
+ export { TokenConnectionConfig, CredentialsConnectionConfig, ApiKeyConnectionConfig, PrepareWorkflowConfig, StartWorkflowConfig, StartSessionConfig, SendDataConfig, LoginConfig, Workflow, WorkflowResult, WorkflowStep }
34
16
 
35
17
  export class IDV {
36
18
  static get instance() { return IDV._instance }
package/www/cordova.js CHANGED
@@ -642,6 +642,7 @@ __webpack_require__.r(__webpack_exports__);
642
642
 
643
643
 
644
644
 
645
+
645
646
  class IDV {
646
647
  static get instance() { return IDV._instance }
647
648
  static _instance = new IDV()
@@ -1,11 +1,4 @@
1
- import {
2
- exec,
3
- serializeInterface,
4
- setDidStartSessionCompletion,
5
- setDidEndSessionCompletion,
6
- setDidStartRestoreSessionCompletion,
7
- setDidContinueRemoteSessionCompletion,
8
- } from './internal/bridge'
1
+ import { exec, serializeInterface, setDidStartSessionCompletion, setDidEndSessionCompletion, setDidStartRestoreSessionCompletion, setDidContinueRemoteSessionCompletion } from './internal/bridge'
9
2
 
10
3
  import { TokenConnectionConfig } from './config/token_connection_config'
11
4
  import { CredentialsConnectionConfig } from './config/credentials_connection_config'
@@ -18,19 +11,8 @@ import { LoginConfig } from './config/login_config'
18
11
  import { Workflow } from './model/workflow'
19
12
  import { WorkflowResult } from './model/workflow_result'
20
13
  import { WorkflowStep } from './model/workflow_step'
21
- export {
22
- TokenConnectionConfig,
23
- CredentialsConnectionConfig,
24
- ApiKeyConnectionConfig,
25
- PrepareWorkflowConfig,
26
- StartWorkflowConfig,
27
- StartSessionConfig,
28
- SendDataConfig,
29
- LoginConfig,
30
- Workflow,
31
- WorkflowResult,
32
- WorkflowStep,
33
- }
14
+
15
+ export { TokenConnectionConfig, CredentialsConnectionConfig, ApiKeyConnectionConfig, PrepareWorkflowConfig, StartWorkflowConfig, StartSessionConfig, SendDataConfig, LoginConfig, Workflow, WorkflowResult, WorkflowStep }
34
16
 
35
17
  export class IDV {
36
18
  static get instance() { return IDV._instance }
@@ -9,19 +9,8 @@ import { LoginConfig } from './config/login_config'
9
9
  import { Workflow } from './model/workflow'
10
10
  import { WorkflowResult } from './model/workflow_result'
11
11
  import { WorkflowStep } from './model/workflow_step'
12
- export {
13
- TokenConnectionConfig,
14
- CredentialsConnectionConfig,
15
- ApiKeyConnectionConfig,
16
- PrepareWorkflowConfig,
17
- StartWorkflowConfig,
18
- StartSessionConfig,
19
- SendDataConfig,
20
- LoginConfig,
21
- Workflow,
22
- WorkflowResult,
23
- WorkflowStep,
24
- }
12
+
13
+ export { TokenConnectionConfig, CredentialsConnectionConfig, ApiKeyConnectionConfig, PrepareWorkflowConfig, StartWorkflowConfig, StartSessionConfig, SendDataConfig, LoginConfig, Workflow, WorkflowResult, WorkflowStep }
25
14
 
26
15
  /**
27
16
  * Entry point of the Regula IDV.
@@ -1,16 +0,0 @@
1
- const fs = require('node:fs')
2
- const next = require('image-size-next')
3
-
4
- function imageSize(input) {
5
- const data = typeof input === 'string'
6
- ? fs.readFileSync(input)
7
- : input
8
-
9
- return next.imageSize(data)
10
- }
11
-
12
- module.exports = imageSize
13
- module.exports.default = imageSize
14
- module.exports.imageSize = imageSize
15
- module.exports.disableTypes = next.disableTypes
16
- module.exports.types = next.types
@@ -1,8 +0,0 @@
1
- {
2
- "name": "image-size",
3
- "version": "2.1.1-compat.0",
4
- "main": "index.cjs",
5
- "dependencies": {
6
- "image-size-next": "2.1.1"
7
- }
8
- }