@regulaforensics/idv-capture-web 3.6.346-nightly → 3.6.348-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/README.md +6 -3
- package/dist/index.d.ts +1 -0
- package/dist/main.iife.js +8 -8
- package/dist/main.js +140 -137
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,9 +227,12 @@ service.sessionRestoreMode = true;
|
|
|
227
227
|
|
|
228
228
|
### Getters
|
|
229
229
|
|
|
230
|
-
|
|
231
|
-
|
|
|
232
|
-
|
|
|
230
|
+
|
|
231
|
+
| Getter | Description |
|
|
232
|
+
| ------------------ | ------------------------------------------------------------------- |
|
|
233
|
+
| `version` | Returns the version of the component. |
|
|
234
|
+
| `currentSessionId` | Returns the current session ID if a session has been started; otherwise, returns `null`. |
|
|
235
|
+
|
|
233
236
|
|
|
234
237
|
```javascript
|
|
235
238
|
const service = new IdvIntegrationService();
|
package/dist/index.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ export declare class IdvIntegrationService {
|
|
|
449
449
|
deinitialize(): Promise<DeinitializeCompletion>;
|
|
450
450
|
/** service commands */
|
|
451
451
|
get version(): string;
|
|
452
|
+
get currentSessionId(): string | null;
|
|
452
453
|
set nonce(id: string);
|
|
453
454
|
set eventListener(callback: (message: IdvMessageEvent) => void);
|
|
454
455
|
set sessionRestoreMode(isEnabled: boolean);
|