@regulaforensics/idv-gui 2.3.148-nightly → 2.3.149-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 +17 -0
- package/dist/main.js +3767 -3628
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export declare type GuiModuleProps = {
|
|
|
40
40
|
templateId: K;
|
|
41
41
|
templateLayout: GuiModulePropsMap[K];
|
|
42
42
|
dataSource?: QuestionsDataSource | null;
|
|
43
|
+
properties?: SessionPropertiesItem[];
|
|
43
44
|
sessionId?: string;
|
|
44
45
|
serviceToken?: string;
|
|
45
46
|
};
|
|
@@ -157,6 +158,22 @@ declare type QuestionsDataSource = {
|
|
|
157
158
|
|
|
158
159
|
declare type QuestionsItemTypes = Array<UITextQuestion | UISelectorQuestion | UIMultiSelectorQuestion>;
|
|
159
160
|
|
|
161
|
+
declare type SessionPropertiesItem = {
|
|
162
|
+
id: string;
|
|
163
|
+
createdAt: string;
|
|
164
|
+
updatedAt: string;
|
|
165
|
+
createdBy: unknown;
|
|
166
|
+
updatedBy: unknown;
|
|
167
|
+
action: unknown;
|
|
168
|
+
step: string;
|
|
169
|
+
name: string;
|
|
170
|
+
path: unknown;
|
|
171
|
+
string: string;
|
|
172
|
+
integer: unknown;
|
|
173
|
+
decimal: unknown;
|
|
174
|
+
object: unknown;
|
|
175
|
+
};
|
|
176
|
+
|
|
160
177
|
declare const TEXT_INPUT_TYPES: {
|
|
161
178
|
readonly FREE_TEXT: "FREE_TEXT";
|
|
162
179
|
readonly EMAIL: "EMAIL";
|