@regulaforensics/idv-gui 2.3.151-nightly → 2.3.153-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/dist/index.d.ts +2 -1
- package/dist/main.js +5623 -5214
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ declare type ContentMode = (typeof ContentMode)[keyof typeof ContentMode];
|
|
|
9
9
|
declare const DATA_SOURCE_ANSWER_TYPE: {
|
|
10
10
|
readonly text: "text";
|
|
11
11
|
readonly selector: "selector";
|
|
12
|
-
readonly
|
|
12
|
+
readonly multiSelector: "multiSelector";
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
declare type DATA_SOURCE_ANSWER_TYPE = (typeof DATA_SOURCE_ANSWER_TYPE)[keyof typeof DATA_SOURCE_ANSWER_TYPE];
|
|
@@ -169,6 +169,7 @@ declare type SessionPropertiesItem = {
|
|
|
169
169
|
name: string;
|
|
170
170
|
path: unknown;
|
|
171
171
|
string: string;
|
|
172
|
+
array?: string[];
|
|
172
173
|
integer: unknown;
|
|
173
174
|
decimal: unknown;
|
|
174
175
|
object: unknown;
|