@opencrvs/toolkit 1.8.0-rc.ff0b26c → 1.8.0-rc.ff1f8e0
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/commons/api/router.d.ts +2356 -1097
- package/dist/commons/conditionals/conditionals.d.ts +7 -6
- package/dist/commons/events/ActionConfig.d.ts +15774 -7797
- package/dist/commons/events/ActionDocument.d.ts +533 -346
- package/dist/commons/events/ActionInput.d.ts +197 -125
- package/dist/commons/events/Constants.d.ts +2 -0
- package/dist/commons/events/CountryConfigQueryInput.d.ts +2982 -0
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -0
- package/dist/commons/events/Draft.d.ts +29 -24
- package/dist/commons/events/EventConfig.d.ts +13649 -9488
- package/dist/commons/events/EventDocument.d.ts +386 -267
- package/dist/commons/events/EventIndex.d.ts +209 -605
- package/dist/commons/events/EventInput.d.ts +0 -13
- package/dist/commons/events/EventMetadata.d.ts +71 -48
- package/dist/commons/events/FieldConfig.d.ts +486 -440
- package/dist/commons/events/FieldTypeMapping.d.ts +5 -2
- package/dist/commons/events/FieldValue.d.ts +2 -0
- package/dist/commons/events/FormConfig.d.ts +3346 -3052
- package/dist/commons/events/PageConfig.d.ts +750 -680
- package/dist/commons/events/User.d.ts +31 -7
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +3460 -485
- package/dist/commons/events/defineConfig.d.ts +1381 -575
- package/dist/commons/events/event.d.ts +2 -2
- package/dist/commons/events/field.d.ts +4 -13
- package/dist/commons/events/index.d.ts +4 -0
- package/dist/commons/events/serializer.d.ts +2 -0
- package/dist/commons/events/test.utils.d.ts +26 -5
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +333 -296
- package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
- package/dist/conditionals/index.js +28 -8
- package/dist/events/index.js +1564 -584
- package/package.json +1 -1
@@ -5,6 +5,7 @@ import { Action, ActionUpdate, EventState } from './ActionDocument';
|
|
5
5
|
import { PageConfig, VerificationPageConfig } from './PageConfig';
|
6
6
|
import { Draft } from './Draft';
|
7
7
|
import { EventDocument } from './EventDocument';
|
8
|
+
import { UUID } from '../uuid';
|
8
9
|
import { ActionConfig } from './ActionConfig';
|
9
10
|
import { FormConfig } from './FormConfig';
|
10
11
|
export declare function getDeclarationFields(configuration: EventConfig): FieldConfig[];
|
@@ -17,14 +18,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
17
18
|
id: string;
|
18
19
|
label: import("./TranslationConfig").TranslationConfig;
|
19
20
|
parent?: {
|
20
|
-
|
21
|
+
$$field: string;
|
21
22
|
} | undefined;
|
22
23
|
validation?: {
|
23
24
|
message: import("./TranslationConfig").TranslationConfig;
|
24
25
|
validator: import(".").JSONSchema;
|
25
26
|
}[] | undefined;
|
26
27
|
required?: boolean | undefined;
|
27
|
-
defaultValue?: string | number | boolean | undefined;
|
28
28
|
conditionals?: ({
|
29
29
|
type: "SHOW";
|
30
30
|
conditional: import(".").JSONSchema;
|
@@ -43,14 +43,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
43
43
|
id: string;
|
44
44
|
label: import("./TranslationConfig").TranslationConfig;
|
45
45
|
parent?: {
|
46
|
-
|
46
|
+
$$field: string;
|
47
47
|
} | undefined;
|
48
48
|
validation?: {
|
49
49
|
message: import("./TranslationConfig").TranslationConfig;
|
50
50
|
validator: import(".").JSONSchema;
|
51
51
|
}[] | undefined;
|
52
52
|
required?: boolean | undefined;
|
53
|
-
defaultValue?: string | undefined;
|
54
53
|
conditionals?: ({
|
55
54
|
type: "SHOW";
|
56
55
|
conditional: import(".").JSONSchema;
|
@@ -64,6 +63,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
64
63
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
65
64
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
66
65
|
hideLabel?: boolean | undefined;
|
66
|
+
defaultValue?: string | undefined;
|
67
67
|
configuration?: {
|
68
68
|
type?: "text" | "password" | undefined;
|
69
69
|
maxLength?: number | undefined;
|
@@ -75,14 +75,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
75
75
|
id: string;
|
76
76
|
label: import("./TranslationConfig").TranslationConfig;
|
77
77
|
parent?: {
|
78
|
-
|
78
|
+
$$field: string;
|
79
79
|
} | undefined;
|
80
80
|
validation?: {
|
81
81
|
message: import("./TranslationConfig").TranslationConfig;
|
82
82
|
validator: import(".").JSONSchema;
|
83
83
|
}[] | undefined;
|
84
84
|
required?: boolean | undefined;
|
85
|
-
defaultValue?: number | undefined;
|
86
85
|
conditionals?: ({
|
87
86
|
type: "SHOW";
|
88
87
|
conditional: import(".").JSONSchema;
|
@@ -96,6 +95,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
96
95
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
97
96
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
98
97
|
hideLabel?: boolean | undefined;
|
98
|
+
defaultValue?: number | undefined;
|
99
99
|
configuration?: {
|
100
100
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
101
101
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -107,14 +107,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
107
107
|
id: string;
|
108
108
|
label: import("./TranslationConfig").TranslationConfig;
|
109
109
|
parent?: {
|
110
|
-
|
110
|
+
$$field: string;
|
111
111
|
} | undefined;
|
112
112
|
validation?: {
|
113
113
|
message: import("./TranslationConfig").TranslationConfig;
|
114
114
|
validator: import(".").JSONSchema;
|
115
115
|
}[] | undefined;
|
116
116
|
required?: boolean | undefined;
|
117
|
-
defaultValue?: string | undefined;
|
118
117
|
conditionals?: ({
|
119
118
|
type: "SHOW";
|
120
119
|
conditional: import(".").JSONSchema;
|
@@ -128,6 +127,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
128
127
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
129
128
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
130
129
|
hideLabel?: boolean | undefined;
|
130
|
+
defaultValue?: string | undefined;
|
131
131
|
configuration?: {
|
132
132
|
maxLength?: number | undefined;
|
133
133
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -145,14 +145,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
145
145
|
};
|
146
146
|
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
147
147
|
parent?: {
|
148
|
-
|
148
|
+
$$field: string;
|
149
149
|
} | undefined;
|
150
150
|
validation?: {
|
151
151
|
message: import("./TranslationConfig").TranslationConfig;
|
152
152
|
validator: import(".").JSONSchema;
|
153
153
|
}[] | undefined;
|
154
154
|
required?: boolean | undefined;
|
155
|
-
defaultValue?: string | number | boolean | undefined;
|
156
155
|
conditionals?: ({
|
157
156
|
type: "SHOW";
|
158
157
|
conditional: import(".").JSONSchema;
|
@@ -166,19 +165,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
166
165
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
167
166
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
168
167
|
hideLabel?: boolean | undefined;
|
168
|
+
defaultValue?: string | undefined;
|
169
169
|
} | {
|
170
170
|
type: "EMAIL";
|
171
171
|
id: string;
|
172
172
|
label: import("./TranslationConfig").TranslationConfig;
|
173
173
|
parent?: {
|
174
|
-
|
174
|
+
$$field: string;
|
175
175
|
} | undefined;
|
176
176
|
validation?: {
|
177
177
|
message: import("./TranslationConfig").TranslationConfig;
|
178
178
|
validator: import(".").JSONSchema;
|
179
179
|
}[] | undefined;
|
180
180
|
required?: boolean | undefined;
|
181
|
-
defaultValue?: string | undefined;
|
182
181
|
conditionals?: ({
|
183
182
|
type: "SHOW";
|
184
183
|
conditional: import(".").JSONSchema;
|
@@ -192,6 +191,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
192
191
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
193
192
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
194
193
|
hideLabel?: boolean | undefined;
|
194
|
+
defaultValue?: string | undefined;
|
195
195
|
configuration?: {
|
196
196
|
maxLength?: number | undefined;
|
197
197
|
} | undefined;
|
@@ -200,14 +200,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
200
200
|
id: string;
|
201
201
|
label: import("./TranslationConfig").TranslationConfig;
|
202
202
|
parent?: {
|
203
|
-
|
203
|
+
$$field: string;
|
204
204
|
} | undefined;
|
205
205
|
validation?: {
|
206
206
|
message: import("./TranslationConfig").TranslationConfig;
|
207
207
|
validator: import(".").JSONSchema;
|
208
208
|
}[] | undefined;
|
209
209
|
required?: boolean | undefined;
|
210
|
-
defaultValue?: string | undefined;
|
211
210
|
conditionals?: ({
|
212
211
|
type: "SHOW";
|
213
212
|
conditional: import(".").JSONSchema;
|
@@ -221,6 +220,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
221
220
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
222
221
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
223
222
|
hideLabel?: boolean | undefined;
|
223
|
+
defaultValue?: string | undefined;
|
224
224
|
configuration?: {
|
225
225
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
226
226
|
} | undefined;
|
@@ -229,14 +229,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
229
229
|
id: string;
|
230
230
|
label: import("./TranslationConfig").TranslationConfig;
|
231
231
|
parent?: {
|
232
|
-
|
232
|
+
$$field: string;
|
233
233
|
} | undefined;
|
234
234
|
validation?: {
|
235
235
|
message: import("./TranslationConfig").TranslationConfig;
|
236
236
|
validator: import(".").JSONSchema;
|
237
237
|
}[] | undefined;
|
238
238
|
required?: boolean | undefined;
|
239
|
-
defaultValue?: string | [string, string] | undefined;
|
240
239
|
conditionals?: ({
|
241
240
|
type: "SHOW";
|
242
241
|
conditional: import(".").JSONSchema;
|
@@ -250,6 +249,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
250
249
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
251
250
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
252
251
|
hideLabel?: boolean | undefined;
|
252
|
+
defaultValue?: string | [string, string] | undefined;
|
253
253
|
configuration?: {
|
254
254
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
255
255
|
} | undefined;
|
@@ -263,14 +263,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
263
263
|
} | undefined;
|
264
264
|
};
|
265
265
|
parent?: {
|
266
|
-
|
266
|
+
$$field: string;
|
267
267
|
} | undefined;
|
268
268
|
validation?: {
|
269
269
|
message: import("./TranslationConfig").TranslationConfig;
|
270
270
|
validator: import(".").JSONSchema;
|
271
271
|
}[] | undefined;
|
272
272
|
required?: boolean | undefined;
|
273
|
-
defaultValue?: string | undefined;
|
274
273
|
conditionals?: ({
|
275
274
|
type: "SHOW";
|
276
275
|
conditional: import(".").JSONSchema;
|
@@ -284,19 +283,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
284
283
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
285
284
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
286
285
|
hideLabel?: boolean | undefined;
|
286
|
+
defaultValue?: string | undefined;
|
287
287
|
} | {
|
288
288
|
type: "PAGE_HEADER";
|
289
289
|
id: string;
|
290
290
|
label: import("./TranslationConfig").TranslationConfig;
|
291
291
|
parent?: {
|
292
|
-
|
292
|
+
$$field: string;
|
293
293
|
} | undefined;
|
294
294
|
validation?: {
|
295
295
|
message: import("./TranslationConfig").TranslationConfig;
|
296
296
|
validator: import(".").JSONSchema;
|
297
297
|
}[] | undefined;
|
298
298
|
required?: boolean | undefined;
|
299
|
-
defaultValue?: string | undefined;
|
300
299
|
conditionals?: ({
|
301
300
|
type: "SHOW";
|
302
301
|
conditional: import(".").JSONSchema;
|
@@ -310,6 +309,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
310
309
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
311
310
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
312
311
|
hideLabel?: boolean | undefined;
|
312
|
+
defaultValue?: string | undefined;
|
313
313
|
} | {
|
314
314
|
type: "FILE";
|
315
315
|
id: string;
|
@@ -323,14 +323,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
323
323
|
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
324
324
|
};
|
325
325
|
parent?: {
|
326
|
-
|
326
|
+
$$field: string;
|
327
327
|
} | undefined;
|
328
328
|
validation?: {
|
329
329
|
message: import("./TranslationConfig").TranslationConfig;
|
330
330
|
validator: import(".").JSONSchema;
|
331
331
|
}[] | undefined;
|
332
332
|
required?: boolean | undefined;
|
333
|
-
defaultValue?: string | number | boolean | undefined;
|
334
333
|
conditionals?: ({
|
335
334
|
type: "SHOW";
|
336
335
|
conditional: import(".").JSONSchema;
|
@@ -344,6 +343,11 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
344
343
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
345
344
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
346
345
|
hideLabel?: boolean | undefined;
|
346
|
+
defaultValue?: {
|
347
|
+
type: string;
|
348
|
+
filename: string;
|
349
|
+
originalFilename: string;
|
350
|
+
} | undefined;
|
347
351
|
} | {
|
348
352
|
type: "RADIO_GROUP";
|
349
353
|
id: string;
|
@@ -353,14 +357,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
353
357
|
}[];
|
354
358
|
label: import("./TranslationConfig").TranslationConfig;
|
355
359
|
parent?: {
|
356
|
-
|
360
|
+
$$field: string;
|
357
361
|
} | undefined;
|
358
362
|
validation?: {
|
359
363
|
message: import("./TranslationConfig").TranslationConfig;
|
360
364
|
validator: import(".").JSONSchema;
|
361
365
|
}[] | undefined;
|
362
366
|
required?: boolean | undefined;
|
363
|
-
defaultValue?: string | undefined;
|
364
367
|
conditionals?: ({
|
365
368
|
type: "SHOW";
|
366
369
|
conditional: import(".").JSONSchema;
|
@@ -374,6 +377,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
374
377
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
375
378
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
376
379
|
hideLabel?: boolean | undefined;
|
380
|
+
defaultValue?: string | undefined;
|
377
381
|
configuration?: {
|
378
382
|
styles?: {
|
379
383
|
size?: "NORMAL" | "LARGE" | undefined;
|
@@ -390,14 +394,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
390
394
|
};
|
391
395
|
items: import("./TranslationConfig").TranslationConfig[];
|
392
396
|
parent?: {
|
393
|
-
|
397
|
+
$$field: string;
|
394
398
|
} | undefined;
|
395
399
|
validation?: {
|
396
400
|
message: import("./TranslationConfig").TranslationConfig;
|
397
401
|
validator: import(".").JSONSchema;
|
398
402
|
}[] | undefined;
|
399
403
|
required?: boolean | undefined;
|
400
|
-
defaultValue?: string | undefined;
|
401
404
|
conditionals?: ({
|
402
405
|
type: "SHOW";
|
403
406
|
conditional: import(".").JSONSchema;
|
@@ -411,6 +414,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
411
414
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
412
415
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
413
416
|
hideLabel?: boolean | undefined;
|
417
|
+
defaultValue?: string | undefined;
|
414
418
|
} | {
|
415
419
|
type: "SELECT";
|
416
420
|
id: string;
|
@@ -420,14 +424,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
420
424
|
}[];
|
421
425
|
label: import("./TranslationConfig").TranslationConfig;
|
422
426
|
parent?: {
|
423
|
-
|
427
|
+
$$field: string;
|
424
428
|
} | undefined;
|
425
429
|
validation?: {
|
426
430
|
message: import("./TranslationConfig").TranslationConfig;
|
427
431
|
validator: import(".").JSONSchema;
|
428
432
|
}[] | undefined;
|
429
433
|
required?: boolean | undefined;
|
430
|
-
defaultValue?: string | undefined;
|
431
434
|
conditionals?: ({
|
432
435
|
type: "SHOW";
|
433
436
|
conditional: import(".").JSONSchema;
|
@@ -441,19 +444,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
441
444
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
442
445
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
443
446
|
hideLabel?: boolean | undefined;
|
447
|
+
defaultValue?: string | undefined;
|
444
448
|
} | {
|
445
449
|
type: "CHECKBOX";
|
446
450
|
id: string;
|
447
451
|
label: import("./TranslationConfig").TranslationConfig;
|
448
452
|
parent?: {
|
449
|
-
|
453
|
+
$$field: string;
|
450
454
|
} | undefined;
|
451
455
|
validation?: {
|
452
456
|
message: import("./TranslationConfig").TranslationConfig;
|
453
457
|
validator: import(".").JSONSchema;
|
454
458
|
}[] | undefined;
|
455
459
|
required?: boolean | undefined;
|
456
|
-
defaultValue?: boolean | undefined;
|
457
460
|
conditionals?: ({
|
458
461
|
type: "SHOW";
|
459
462
|
conditional: import(".").JSONSchema;
|
@@ -467,19 +470,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
467
470
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
468
471
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
469
472
|
hideLabel?: boolean | undefined;
|
473
|
+
defaultValue?: boolean | undefined;
|
470
474
|
} | {
|
471
475
|
type: "COUNTRY";
|
472
476
|
id: string;
|
473
477
|
label: import("./TranslationConfig").TranslationConfig;
|
474
478
|
parent?: {
|
475
|
-
|
479
|
+
$$field: string;
|
476
480
|
} | undefined;
|
477
481
|
validation?: {
|
478
482
|
message: import("./TranslationConfig").TranslationConfig;
|
479
483
|
validator: import(".").JSONSchema;
|
480
484
|
}[] | undefined;
|
481
485
|
required?: boolean | undefined;
|
482
|
-
defaultValue?: string | undefined;
|
483
486
|
conditionals?: ({
|
484
487
|
type: "SHOW";
|
485
488
|
conditional: import(".").JSONSchema;
|
@@ -493,6 +496,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
493
496
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
494
497
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
495
498
|
hideLabel?: boolean | undefined;
|
499
|
+
defaultValue?: string | undefined;
|
496
500
|
} | {
|
497
501
|
type: "ADMINISTRATIVE_AREA";
|
498
502
|
id: string;
|
@@ -504,14 +508,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
504
508
|
} | undefined;
|
505
509
|
};
|
506
510
|
parent?: {
|
507
|
-
|
511
|
+
$$field: string;
|
508
512
|
} | undefined;
|
509
513
|
validation?: {
|
510
514
|
message: import("./TranslationConfig").TranslationConfig;
|
511
515
|
validator: import(".").JSONSchema;
|
512
516
|
}[] | undefined;
|
513
517
|
required?: boolean | undefined;
|
514
|
-
defaultValue?: string | undefined;
|
515
518
|
conditionals?: ({
|
516
519
|
type: "SHOW";
|
517
520
|
conditional: import(".").JSONSchema;
|
@@ -525,19 +528,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
525
528
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
526
529
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
527
530
|
hideLabel?: boolean | undefined;
|
531
|
+
defaultValue?: string | undefined;
|
528
532
|
} | {
|
529
533
|
type: "LOCATION";
|
530
534
|
id: string;
|
531
535
|
label: import("./TranslationConfig").TranslationConfig;
|
532
536
|
parent?: {
|
533
|
-
|
537
|
+
$$field: string;
|
534
538
|
} | undefined;
|
535
539
|
validation?: {
|
536
540
|
message: import("./TranslationConfig").TranslationConfig;
|
537
541
|
validator: import(".").JSONSchema;
|
538
542
|
}[] | undefined;
|
539
543
|
required?: boolean | undefined;
|
540
|
-
defaultValue?: string | undefined;
|
541
544
|
conditionals?: ({
|
542
545
|
type: "SHOW";
|
543
546
|
conditional: import(".").JSONSchema;
|
@@ -551,6 +554,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
551
554
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
552
555
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
553
556
|
hideLabel?: boolean | undefined;
|
557
|
+
defaultValue?: string | undefined;
|
554
558
|
} | {
|
555
559
|
type: "FILE_WITH_OPTIONS";
|
556
560
|
id: string;
|
@@ -564,14 +568,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
564
568
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
565
569
|
};
|
566
570
|
parent?: {
|
567
|
-
|
571
|
+
$$field: string;
|
568
572
|
} | undefined;
|
569
573
|
validation?: {
|
570
574
|
message: import("./TranslationConfig").TranslationConfig;
|
571
575
|
validator: import(".").JSONSchema;
|
572
576
|
}[] | undefined;
|
573
577
|
required?: boolean | undefined;
|
574
|
-
defaultValue?: string | number | boolean | undefined;
|
575
578
|
conditionals?: ({
|
576
579
|
type: "SHOW";
|
577
580
|
conditional: import(".").JSONSchema;
|
@@ -585,19 +588,24 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
585
588
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
586
589
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
587
590
|
hideLabel?: boolean | undefined;
|
591
|
+
defaultValue?: {
|
592
|
+
type: string;
|
593
|
+
option: string;
|
594
|
+
filename: string;
|
595
|
+
originalFilename: string;
|
596
|
+
}[] | undefined;
|
588
597
|
} | {
|
589
598
|
type: "FACILITY";
|
590
599
|
id: string;
|
591
600
|
label: import("./TranslationConfig").TranslationConfig;
|
592
601
|
parent?: {
|
593
|
-
|
602
|
+
$$field: string;
|
594
603
|
} | undefined;
|
595
604
|
validation?: {
|
596
605
|
message: import("./TranslationConfig").TranslationConfig;
|
597
606
|
validator: import(".").JSONSchema;
|
598
607
|
}[] | undefined;
|
599
608
|
required?: boolean | undefined;
|
600
|
-
defaultValue?: string | undefined;
|
601
609
|
conditionals?: ({
|
602
610
|
type: "SHOW";
|
603
611
|
conditional: import(".").JSONSchema;
|
@@ -611,19 +619,19 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
611
619
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
612
620
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
613
621
|
hideLabel?: boolean | undefined;
|
622
|
+
defaultValue?: string | undefined;
|
614
623
|
} | {
|
615
624
|
type: "OFFICE";
|
616
625
|
id: string;
|
617
626
|
label: import("./TranslationConfig").TranslationConfig;
|
618
627
|
parent?: {
|
619
|
-
|
628
|
+
$$field: string;
|
620
629
|
} | undefined;
|
621
630
|
validation?: {
|
622
631
|
message: import("./TranslationConfig").TranslationConfig;
|
623
632
|
validator: import(".").JSONSchema;
|
624
633
|
}[] | undefined;
|
625
634
|
required?: boolean | undefined;
|
626
|
-
defaultValue?: string | undefined;
|
627
635
|
conditionals?: ({
|
628
636
|
type: "SHOW";
|
629
637
|
conditional: import(".").JSONSchema;
|
@@ -637,18 +645,32 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
637
645
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
638
646
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
639
647
|
hideLabel?: boolean | undefined;
|
648
|
+
defaultValue?: string | undefined;
|
640
649
|
} | {
|
641
650
|
type: "ADDRESS";
|
642
651
|
id: string;
|
643
652
|
label: import("./TranslationConfig").TranslationConfig;
|
644
653
|
parent?: {
|
645
|
-
|
654
|
+
$$field: string;
|
646
655
|
} | undefined;
|
647
656
|
validation?: {
|
648
657
|
message: import("./TranslationConfig").TranslationConfig;
|
649
658
|
validator: import(".").JSONSchema;
|
650
659
|
}[] | undefined;
|
651
660
|
required?: boolean | undefined;
|
661
|
+
conditionals?: ({
|
662
|
+
type: "SHOW";
|
663
|
+
conditional: import(".").JSONSchema;
|
664
|
+
} | {
|
665
|
+
type: "ENABLE";
|
666
|
+
conditional: import(".").JSONSchema;
|
667
|
+
} | {
|
668
|
+
type: "DISPLAY_ON_REVIEW";
|
669
|
+
conditional: import(".").JSONSchema;
|
670
|
+
})[] | undefined;
|
671
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
672
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
673
|
+
hideLabel?: boolean | undefined;
|
652
674
|
defaultValue?: {
|
653
675
|
country: string;
|
654
676
|
district: string;
|
@@ -678,19 +700,6 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
678
700
|
addressLine3?: string | undefined;
|
679
701
|
postcodeOrZip?: string | undefined;
|
680
702
|
} | undefined;
|
681
|
-
conditionals?: ({
|
682
|
-
type: "SHOW";
|
683
|
-
conditional: import(".").JSONSchema;
|
684
|
-
} | {
|
685
|
-
type: "ENABLE";
|
686
|
-
conditional: import(".").JSONSchema;
|
687
|
-
} | {
|
688
|
-
type: "DISPLAY_ON_REVIEW";
|
689
|
-
conditional: import(".").JSONSchema;
|
690
|
-
})[] | undefined;
|
691
|
-
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
692
|
-
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
693
|
-
hideLabel?: boolean | undefined;
|
694
703
|
} | {
|
695
704
|
type: "DATA";
|
696
705
|
id: string;
|
@@ -705,14 +714,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
705
714
|
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
706
715
|
};
|
707
716
|
parent?: {
|
708
|
-
|
717
|
+
$$field: string;
|
709
718
|
} | undefined;
|
710
719
|
validation?: {
|
711
720
|
message: import("./TranslationConfig").TranslationConfig;
|
712
721
|
validator: import(".").JSONSchema;
|
713
722
|
}[] | undefined;
|
714
723
|
required?: boolean | undefined;
|
715
|
-
defaultValue?: string | number | boolean | undefined;
|
716
724
|
conditionals?: ({
|
717
725
|
type: "SHOW";
|
718
726
|
conditional: import(".").JSONSchema;
|
@@ -740,14 +748,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
740
748
|
id: string;
|
741
749
|
label: import("./TranslationConfig").TranslationConfig;
|
742
750
|
parent?: {
|
743
|
-
|
751
|
+
$$field: string;
|
744
752
|
} | undefined;
|
745
753
|
validation?: {
|
746
754
|
message: import("./TranslationConfig").TranslationConfig;
|
747
755
|
validator: import(".").JSONSchema;
|
748
756
|
}[] | undefined;
|
749
757
|
required?: boolean | undefined;
|
750
|
-
defaultValue?: string | number | boolean | undefined;
|
751
758
|
conditionals?: ({
|
752
759
|
type: "SHOW";
|
753
760
|
conditional: import(".").JSONSchema;
|
@@ -766,14 +773,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
766
773
|
id: string;
|
767
774
|
label: import("./TranslationConfig").TranslationConfig;
|
768
775
|
parent?: {
|
769
|
-
|
776
|
+
$$field: string;
|
770
777
|
} | undefined;
|
771
778
|
validation?: {
|
772
779
|
message: import("./TranslationConfig").TranslationConfig;
|
773
780
|
validator: import(".").JSONSchema;
|
774
781
|
}[] | undefined;
|
775
782
|
required?: boolean | undefined;
|
776
|
-
defaultValue?: string | undefined;
|
777
783
|
conditionals?: ({
|
778
784
|
type: "SHOW";
|
779
785
|
conditional: import(".").JSONSchema;
|
@@ -787,6 +793,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
787
793
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
788
794
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
789
795
|
hideLabel?: boolean | undefined;
|
796
|
+
defaultValue?: string | undefined;
|
790
797
|
configuration?: {
|
791
798
|
type?: "text" | "password" | undefined;
|
792
799
|
maxLength?: number | undefined;
|
@@ -798,14 +805,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
798
805
|
id: string;
|
799
806
|
label: import("./TranslationConfig").TranslationConfig;
|
800
807
|
parent?: {
|
801
|
-
|
808
|
+
$$field: string;
|
802
809
|
} | undefined;
|
803
810
|
validation?: {
|
804
811
|
message: import("./TranslationConfig").TranslationConfig;
|
805
812
|
validator: import(".").JSONSchema;
|
806
813
|
}[] | undefined;
|
807
814
|
required?: boolean | undefined;
|
808
|
-
defaultValue?: number | undefined;
|
809
815
|
conditionals?: ({
|
810
816
|
type: "SHOW";
|
811
817
|
conditional: import(".").JSONSchema;
|
@@ -819,6 +825,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
819
825
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
820
826
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
821
827
|
hideLabel?: boolean | undefined;
|
828
|
+
defaultValue?: number | undefined;
|
822
829
|
configuration?: {
|
823
830
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
824
831
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -830,14 +837,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
830
837
|
id: string;
|
831
838
|
label: import("./TranslationConfig").TranslationConfig;
|
832
839
|
parent?: {
|
833
|
-
|
840
|
+
$$field: string;
|
834
841
|
} | undefined;
|
835
842
|
validation?: {
|
836
843
|
message: import("./TranslationConfig").TranslationConfig;
|
837
844
|
validator: import(".").JSONSchema;
|
838
845
|
}[] | undefined;
|
839
846
|
required?: boolean | undefined;
|
840
|
-
defaultValue?: string | undefined;
|
841
847
|
conditionals?: ({
|
842
848
|
type: "SHOW";
|
843
849
|
conditional: import(".").JSONSchema;
|
@@ -851,6 +857,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
851
857
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
852
858
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
853
859
|
hideLabel?: boolean | undefined;
|
860
|
+
defaultValue?: string | undefined;
|
854
861
|
configuration?: {
|
855
862
|
maxLength?: number | undefined;
|
856
863
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -868,14 +875,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
868
875
|
};
|
869
876
|
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
870
877
|
parent?: {
|
871
|
-
|
878
|
+
$$field: string;
|
872
879
|
} | undefined;
|
873
880
|
validation?: {
|
874
881
|
message: import("./TranslationConfig").TranslationConfig;
|
875
882
|
validator: import(".").JSONSchema;
|
876
883
|
}[] | undefined;
|
877
884
|
required?: boolean | undefined;
|
878
|
-
defaultValue?: string | number | boolean | undefined;
|
879
885
|
conditionals?: ({
|
880
886
|
type: "SHOW";
|
881
887
|
conditional: import(".").JSONSchema;
|
@@ -889,19 +895,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
889
895
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
890
896
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
891
897
|
hideLabel?: boolean | undefined;
|
898
|
+
defaultValue?: string | undefined;
|
892
899
|
} | {
|
893
900
|
type: "EMAIL";
|
894
901
|
id: string;
|
895
902
|
label: import("./TranslationConfig").TranslationConfig;
|
896
903
|
parent?: {
|
897
|
-
|
904
|
+
$$field: string;
|
898
905
|
} | undefined;
|
899
906
|
validation?: {
|
900
907
|
message: import("./TranslationConfig").TranslationConfig;
|
901
908
|
validator: import(".").JSONSchema;
|
902
909
|
}[] | undefined;
|
903
910
|
required?: boolean | undefined;
|
904
|
-
defaultValue?: string | undefined;
|
905
911
|
conditionals?: ({
|
906
912
|
type: "SHOW";
|
907
913
|
conditional: import(".").JSONSchema;
|
@@ -915,6 +921,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
915
921
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
916
922
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
917
923
|
hideLabel?: boolean | undefined;
|
924
|
+
defaultValue?: string | undefined;
|
918
925
|
configuration?: {
|
919
926
|
maxLength?: number | undefined;
|
920
927
|
} | undefined;
|
@@ -923,14 +930,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
923
930
|
id: string;
|
924
931
|
label: import("./TranslationConfig").TranslationConfig;
|
925
932
|
parent?: {
|
926
|
-
|
933
|
+
$$field: string;
|
927
934
|
} | undefined;
|
928
935
|
validation?: {
|
929
936
|
message: import("./TranslationConfig").TranslationConfig;
|
930
937
|
validator: import(".").JSONSchema;
|
931
938
|
}[] | undefined;
|
932
939
|
required?: boolean | undefined;
|
933
|
-
defaultValue?: string | undefined;
|
934
940
|
conditionals?: ({
|
935
941
|
type: "SHOW";
|
936
942
|
conditional: import(".").JSONSchema;
|
@@ -944,6 +950,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
944
950
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
945
951
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
946
952
|
hideLabel?: boolean | undefined;
|
953
|
+
defaultValue?: string | undefined;
|
947
954
|
configuration?: {
|
948
955
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
949
956
|
} | undefined;
|
@@ -952,14 +959,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
952
959
|
id: string;
|
953
960
|
label: import("./TranslationConfig").TranslationConfig;
|
954
961
|
parent?: {
|
955
|
-
|
962
|
+
$$field: string;
|
956
963
|
} | undefined;
|
957
964
|
validation?: {
|
958
965
|
message: import("./TranslationConfig").TranslationConfig;
|
959
966
|
validator: import(".").JSONSchema;
|
960
967
|
}[] | undefined;
|
961
968
|
required?: boolean | undefined;
|
962
|
-
defaultValue?: string | [string, string] | undefined;
|
963
969
|
conditionals?: ({
|
964
970
|
type: "SHOW";
|
965
971
|
conditional: import(".").JSONSchema;
|
@@ -973,6 +979,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
973
979
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
974
980
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
975
981
|
hideLabel?: boolean | undefined;
|
982
|
+
defaultValue?: string | [string, string] | undefined;
|
976
983
|
configuration?: {
|
977
984
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
978
985
|
} | undefined;
|
@@ -986,14 +993,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
986
993
|
} | undefined;
|
987
994
|
};
|
988
995
|
parent?: {
|
989
|
-
|
996
|
+
$$field: string;
|
990
997
|
} | undefined;
|
991
998
|
validation?: {
|
992
999
|
message: import("./TranslationConfig").TranslationConfig;
|
993
1000
|
validator: import(".").JSONSchema;
|
994
1001
|
}[] | undefined;
|
995
1002
|
required?: boolean | undefined;
|
996
|
-
defaultValue?: string | undefined;
|
997
1003
|
conditionals?: ({
|
998
1004
|
type: "SHOW";
|
999
1005
|
conditional: import(".").JSONSchema;
|
@@ -1007,19 +1013,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1007
1013
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1008
1014
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1009
1015
|
hideLabel?: boolean | undefined;
|
1016
|
+
defaultValue?: string | undefined;
|
1010
1017
|
} | {
|
1011
1018
|
type: "PAGE_HEADER";
|
1012
1019
|
id: string;
|
1013
1020
|
label: import("./TranslationConfig").TranslationConfig;
|
1014
1021
|
parent?: {
|
1015
|
-
|
1022
|
+
$$field: string;
|
1016
1023
|
} | undefined;
|
1017
1024
|
validation?: {
|
1018
1025
|
message: import("./TranslationConfig").TranslationConfig;
|
1019
1026
|
validator: import(".").JSONSchema;
|
1020
1027
|
}[] | undefined;
|
1021
1028
|
required?: boolean | undefined;
|
1022
|
-
defaultValue?: string | undefined;
|
1023
1029
|
conditionals?: ({
|
1024
1030
|
type: "SHOW";
|
1025
1031
|
conditional: import(".").JSONSchema;
|
@@ -1033,6 +1039,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1033
1039
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1034
1040
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1035
1041
|
hideLabel?: boolean | undefined;
|
1042
|
+
defaultValue?: string | undefined;
|
1036
1043
|
} | {
|
1037
1044
|
type: "FILE";
|
1038
1045
|
id: string;
|
@@ -1046,14 +1053,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1046
1053
|
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
1047
1054
|
};
|
1048
1055
|
parent?: {
|
1049
|
-
|
1056
|
+
$$field: string;
|
1050
1057
|
} | undefined;
|
1051
1058
|
validation?: {
|
1052
1059
|
message: import("./TranslationConfig").TranslationConfig;
|
1053
1060
|
validator: import(".").JSONSchema;
|
1054
1061
|
}[] | undefined;
|
1055
1062
|
required?: boolean | undefined;
|
1056
|
-
defaultValue?: string | number | boolean | undefined;
|
1057
1063
|
conditionals?: ({
|
1058
1064
|
type: "SHOW";
|
1059
1065
|
conditional: import(".").JSONSchema;
|
@@ -1067,6 +1073,11 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1067
1073
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1068
1074
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1069
1075
|
hideLabel?: boolean | undefined;
|
1076
|
+
defaultValue?: {
|
1077
|
+
type: string;
|
1078
|
+
filename: string;
|
1079
|
+
originalFilename: string;
|
1080
|
+
} | undefined;
|
1070
1081
|
} | {
|
1071
1082
|
type: "RADIO_GROUP";
|
1072
1083
|
id: string;
|
@@ -1076,14 +1087,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1076
1087
|
}[];
|
1077
1088
|
label: import("./TranslationConfig").TranslationConfig;
|
1078
1089
|
parent?: {
|
1079
|
-
|
1090
|
+
$$field: string;
|
1080
1091
|
} | undefined;
|
1081
1092
|
validation?: {
|
1082
1093
|
message: import("./TranslationConfig").TranslationConfig;
|
1083
1094
|
validator: import(".").JSONSchema;
|
1084
1095
|
}[] | undefined;
|
1085
1096
|
required?: boolean | undefined;
|
1086
|
-
defaultValue?: string | undefined;
|
1087
1097
|
conditionals?: ({
|
1088
1098
|
type: "SHOW";
|
1089
1099
|
conditional: import(".").JSONSchema;
|
@@ -1097,6 +1107,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1097
1107
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1098
1108
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1099
1109
|
hideLabel?: boolean | undefined;
|
1110
|
+
defaultValue?: string | undefined;
|
1100
1111
|
configuration?: {
|
1101
1112
|
styles?: {
|
1102
1113
|
size?: "NORMAL" | "LARGE" | undefined;
|
@@ -1113,14 +1124,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1113
1124
|
};
|
1114
1125
|
items: import("./TranslationConfig").TranslationConfig[];
|
1115
1126
|
parent?: {
|
1116
|
-
|
1127
|
+
$$field: string;
|
1117
1128
|
} | undefined;
|
1118
1129
|
validation?: {
|
1119
1130
|
message: import("./TranslationConfig").TranslationConfig;
|
1120
1131
|
validator: import(".").JSONSchema;
|
1121
1132
|
}[] | undefined;
|
1122
1133
|
required?: boolean | undefined;
|
1123
|
-
defaultValue?: string | undefined;
|
1124
1134
|
conditionals?: ({
|
1125
1135
|
type: "SHOW";
|
1126
1136
|
conditional: import(".").JSONSchema;
|
@@ -1134,6 +1144,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1134
1144
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1135
1145
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1136
1146
|
hideLabel?: boolean | undefined;
|
1147
|
+
defaultValue?: string | undefined;
|
1137
1148
|
} | {
|
1138
1149
|
type: "SELECT";
|
1139
1150
|
id: string;
|
@@ -1143,14 +1154,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1143
1154
|
}[];
|
1144
1155
|
label: import("./TranslationConfig").TranslationConfig;
|
1145
1156
|
parent?: {
|
1146
|
-
|
1157
|
+
$$field: string;
|
1147
1158
|
} | undefined;
|
1148
1159
|
validation?: {
|
1149
1160
|
message: import("./TranslationConfig").TranslationConfig;
|
1150
1161
|
validator: import(".").JSONSchema;
|
1151
1162
|
}[] | undefined;
|
1152
1163
|
required?: boolean | undefined;
|
1153
|
-
defaultValue?: string | undefined;
|
1154
1164
|
conditionals?: ({
|
1155
1165
|
type: "SHOW";
|
1156
1166
|
conditional: import(".").JSONSchema;
|
@@ -1164,19 +1174,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1164
1174
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1165
1175
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1166
1176
|
hideLabel?: boolean | undefined;
|
1177
|
+
defaultValue?: string | undefined;
|
1167
1178
|
} | {
|
1168
1179
|
type: "CHECKBOX";
|
1169
1180
|
id: string;
|
1170
1181
|
label: import("./TranslationConfig").TranslationConfig;
|
1171
1182
|
parent?: {
|
1172
|
-
|
1183
|
+
$$field: string;
|
1173
1184
|
} | undefined;
|
1174
1185
|
validation?: {
|
1175
1186
|
message: import("./TranslationConfig").TranslationConfig;
|
1176
1187
|
validator: import(".").JSONSchema;
|
1177
1188
|
}[] | undefined;
|
1178
1189
|
required?: boolean | undefined;
|
1179
|
-
defaultValue?: boolean | undefined;
|
1180
1190
|
conditionals?: ({
|
1181
1191
|
type: "SHOW";
|
1182
1192
|
conditional: import(".").JSONSchema;
|
@@ -1190,19 +1200,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1190
1200
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1191
1201
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1192
1202
|
hideLabel?: boolean | undefined;
|
1203
|
+
defaultValue?: boolean | undefined;
|
1193
1204
|
} | {
|
1194
1205
|
type: "COUNTRY";
|
1195
1206
|
id: string;
|
1196
1207
|
label: import("./TranslationConfig").TranslationConfig;
|
1197
1208
|
parent?: {
|
1198
|
-
|
1209
|
+
$$field: string;
|
1199
1210
|
} | undefined;
|
1200
1211
|
validation?: {
|
1201
1212
|
message: import("./TranslationConfig").TranslationConfig;
|
1202
1213
|
validator: import(".").JSONSchema;
|
1203
1214
|
}[] | undefined;
|
1204
1215
|
required?: boolean | undefined;
|
1205
|
-
defaultValue?: string | undefined;
|
1206
1216
|
conditionals?: ({
|
1207
1217
|
type: "SHOW";
|
1208
1218
|
conditional: import(".").JSONSchema;
|
@@ -1216,6 +1226,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1216
1226
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1217
1227
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1218
1228
|
hideLabel?: boolean | undefined;
|
1229
|
+
defaultValue?: string | undefined;
|
1219
1230
|
} | {
|
1220
1231
|
type: "ADMINISTRATIVE_AREA";
|
1221
1232
|
id: string;
|
@@ -1227,14 +1238,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1227
1238
|
} | undefined;
|
1228
1239
|
};
|
1229
1240
|
parent?: {
|
1230
|
-
|
1241
|
+
$$field: string;
|
1231
1242
|
} | undefined;
|
1232
1243
|
validation?: {
|
1233
1244
|
message: import("./TranslationConfig").TranslationConfig;
|
1234
1245
|
validator: import(".").JSONSchema;
|
1235
1246
|
}[] | undefined;
|
1236
1247
|
required?: boolean | undefined;
|
1237
|
-
defaultValue?: string | undefined;
|
1238
1248
|
conditionals?: ({
|
1239
1249
|
type: "SHOW";
|
1240
1250
|
conditional: import(".").JSONSchema;
|
@@ -1248,19 +1258,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1248
1258
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1249
1259
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1250
1260
|
hideLabel?: boolean | undefined;
|
1261
|
+
defaultValue?: string | undefined;
|
1251
1262
|
} | {
|
1252
1263
|
type: "LOCATION";
|
1253
1264
|
id: string;
|
1254
1265
|
label: import("./TranslationConfig").TranslationConfig;
|
1255
1266
|
parent?: {
|
1256
|
-
|
1267
|
+
$$field: string;
|
1257
1268
|
} | undefined;
|
1258
1269
|
validation?: {
|
1259
1270
|
message: import("./TranslationConfig").TranslationConfig;
|
1260
1271
|
validator: import(".").JSONSchema;
|
1261
1272
|
}[] | undefined;
|
1262
1273
|
required?: boolean | undefined;
|
1263
|
-
defaultValue?: string | undefined;
|
1264
1274
|
conditionals?: ({
|
1265
1275
|
type: "SHOW";
|
1266
1276
|
conditional: import(".").JSONSchema;
|
@@ -1274,6 +1284,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1274
1284
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1275
1285
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1276
1286
|
hideLabel?: boolean | undefined;
|
1287
|
+
defaultValue?: string | undefined;
|
1277
1288
|
} | {
|
1278
1289
|
type: "FILE_WITH_OPTIONS";
|
1279
1290
|
id: string;
|
@@ -1287,14 +1298,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1287
1298
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
1288
1299
|
};
|
1289
1300
|
parent?: {
|
1290
|
-
|
1301
|
+
$$field: string;
|
1291
1302
|
} | undefined;
|
1292
1303
|
validation?: {
|
1293
1304
|
message: import("./TranslationConfig").TranslationConfig;
|
1294
1305
|
validator: import(".").JSONSchema;
|
1295
1306
|
}[] | undefined;
|
1296
1307
|
required?: boolean | undefined;
|
1297
|
-
defaultValue?: string | number | boolean | undefined;
|
1298
1308
|
conditionals?: ({
|
1299
1309
|
type: "SHOW";
|
1300
1310
|
conditional: import(".").JSONSchema;
|
@@ -1308,19 +1318,24 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1308
1318
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1309
1319
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1310
1320
|
hideLabel?: boolean | undefined;
|
1321
|
+
defaultValue?: {
|
1322
|
+
type: string;
|
1323
|
+
option: string;
|
1324
|
+
filename: string;
|
1325
|
+
originalFilename: string;
|
1326
|
+
}[] | undefined;
|
1311
1327
|
} | {
|
1312
1328
|
type: "FACILITY";
|
1313
1329
|
id: string;
|
1314
1330
|
label: import("./TranslationConfig").TranslationConfig;
|
1315
1331
|
parent?: {
|
1316
|
-
|
1332
|
+
$$field: string;
|
1317
1333
|
} | undefined;
|
1318
1334
|
validation?: {
|
1319
1335
|
message: import("./TranslationConfig").TranslationConfig;
|
1320
1336
|
validator: import(".").JSONSchema;
|
1321
1337
|
}[] | undefined;
|
1322
1338
|
required?: boolean | undefined;
|
1323
|
-
defaultValue?: string | undefined;
|
1324
1339
|
conditionals?: ({
|
1325
1340
|
type: "SHOW";
|
1326
1341
|
conditional: import(".").JSONSchema;
|
@@ -1334,19 +1349,19 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1334
1349
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1335
1350
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1336
1351
|
hideLabel?: boolean | undefined;
|
1352
|
+
defaultValue?: string | undefined;
|
1337
1353
|
} | {
|
1338
1354
|
type: "OFFICE";
|
1339
1355
|
id: string;
|
1340
1356
|
label: import("./TranslationConfig").TranslationConfig;
|
1341
1357
|
parent?: {
|
1342
|
-
|
1358
|
+
$$field: string;
|
1343
1359
|
} | undefined;
|
1344
1360
|
validation?: {
|
1345
1361
|
message: import("./TranslationConfig").TranslationConfig;
|
1346
1362
|
validator: import(".").JSONSchema;
|
1347
1363
|
}[] | undefined;
|
1348
1364
|
required?: boolean | undefined;
|
1349
|
-
defaultValue?: string | undefined;
|
1350
1365
|
conditionals?: ({
|
1351
1366
|
type: "SHOW";
|
1352
1367
|
conditional: import(".").JSONSchema;
|
@@ -1360,18 +1375,32 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1360
1375
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1361
1376
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1362
1377
|
hideLabel?: boolean | undefined;
|
1378
|
+
defaultValue?: string | undefined;
|
1363
1379
|
} | {
|
1364
1380
|
type: "ADDRESS";
|
1365
1381
|
id: string;
|
1366
1382
|
label: import("./TranslationConfig").TranslationConfig;
|
1367
1383
|
parent?: {
|
1368
|
-
|
1384
|
+
$$field: string;
|
1369
1385
|
} | undefined;
|
1370
1386
|
validation?: {
|
1371
1387
|
message: import("./TranslationConfig").TranslationConfig;
|
1372
1388
|
validator: import(".").JSONSchema;
|
1373
1389
|
}[] | undefined;
|
1374
1390
|
required?: boolean | undefined;
|
1391
|
+
conditionals?: ({
|
1392
|
+
type: "SHOW";
|
1393
|
+
conditional: import(".").JSONSchema;
|
1394
|
+
} | {
|
1395
|
+
type: "ENABLE";
|
1396
|
+
conditional: import(".").JSONSchema;
|
1397
|
+
} | {
|
1398
|
+
type: "DISPLAY_ON_REVIEW";
|
1399
|
+
conditional: import(".").JSONSchema;
|
1400
|
+
})[] | undefined;
|
1401
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1402
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1403
|
+
hideLabel?: boolean | undefined;
|
1375
1404
|
defaultValue?: {
|
1376
1405
|
country: string;
|
1377
1406
|
district: string;
|
@@ -1401,19 +1430,6 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1401
1430
|
addressLine3?: string | undefined;
|
1402
1431
|
postcodeOrZip?: string | undefined;
|
1403
1432
|
} | undefined;
|
1404
|
-
conditionals?: ({
|
1405
|
-
type: "SHOW";
|
1406
|
-
conditional: import(".").JSONSchema;
|
1407
|
-
} | {
|
1408
|
-
type: "ENABLE";
|
1409
|
-
conditional: import(".").JSONSchema;
|
1410
|
-
} | {
|
1411
|
-
type: "DISPLAY_ON_REVIEW";
|
1412
|
-
conditional: import(".").JSONSchema;
|
1413
|
-
})[] | undefined;
|
1414
|
-
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1415
|
-
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1416
|
-
hideLabel?: boolean | undefined;
|
1417
1433
|
} | {
|
1418
1434
|
type: "DATA";
|
1419
1435
|
id: string;
|
@@ -1428,14 +1444,13 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1428
1444
|
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
1429
1445
|
};
|
1430
1446
|
parent?: {
|
1431
|
-
|
1447
|
+
$$field: string;
|
1432
1448
|
} | undefined;
|
1433
1449
|
validation?: {
|
1434
1450
|
message: import("./TranslationConfig").TranslationConfig;
|
1435
1451
|
validator: import(".").JSONSchema;
|
1436
1452
|
}[] | undefined;
|
1437
1453
|
required?: boolean | undefined;
|
1438
|
-
defaultValue?: string | number | boolean | undefined;
|
1439
1454
|
conditionals?: ({
|
1440
1455
|
type: "SHOW";
|
1441
1456
|
conditional: import(".").JSONSchema;
|
@@ -1458,14 +1473,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1458
1473
|
id: string;
|
1459
1474
|
label: import("./TranslationConfig").TranslationConfig;
|
1460
1475
|
parent?: {
|
1461
|
-
|
1476
|
+
$$field: string;
|
1462
1477
|
} | undefined;
|
1463
1478
|
validation?: {
|
1464
1479
|
message: import("./TranslationConfig").TranslationConfig;
|
1465
1480
|
validator: import(".").JSONSchema;
|
1466
1481
|
}[] | undefined;
|
1467
1482
|
required?: boolean | undefined;
|
1468
|
-
defaultValue?: string | number | boolean | undefined;
|
1469
1483
|
conditionals?: ({
|
1470
1484
|
type: "SHOW";
|
1471
1485
|
conditional: import(".").JSONSchema;
|
@@ -1484,14 +1498,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1484
1498
|
id: string;
|
1485
1499
|
label: import("./TranslationConfig").TranslationConfig;
|
1486
1500
|
parent?: {
|
1487
|
-
|
1501
|
+
$$field: string;
|
1488
1502
|
} | undefined;
|
1489
1503
|
validation?: {
|
1490
1504
|
message: import("./TranslationConfig").TranslationConfig;
|
1491
1505
|
validator: import(".").JSONSchema;
|
1492
1506
|
}[] | undefined;
|
1493
1507
|
required?: boolean | undefined;
|
1494
|
-
defaultValue?: string | undefined;
|
1495
1508
|
conditionals?: ({
|
1496
1509
|
type: "SHOW";
|
1497
1510
|
conditional: import(".").JSONSchema;
|
@@ -1505,6 +1518,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1505
1518
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1506
1519
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1507
1520
|
hideLabel?: boolean | undefined;
|
1521
|
+
defaultValue?: string | undefined;
|
1508
1522
|
configuration?: {
|
1509
1523
|
type?: "text" | "password" | undefined;
|
1510
1524
|
maxLength?: number | undefined;
|
@@ -1516,14 +1530,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1516
1530
|
id: string;
|
1517
1531
|
label: import("./TranslationConfig").TranslationConfig;
|
1518
1532
|
parent?: {
|
1519
|
-
|
1533
|
+
$$field: string;
|
1520
1534
|
} | undefined;
|
1521
1535
|
validation?: {
|
1522
1536
|
message: import("./TranslationConfig").TranslationConfig;
|
1523
1537
|
validator: import(".").JSONSchema;
|
1524
1538
|
}[] | undefined;
|
1525
1539
|
required?: boolean | undefined;
|
1526
|
-
defaultValue?: number | undefined;
|
1527
1540
|
conditionals?: ({
|
1528
1541
|
type: "SHOW";
|
1529
1542
|
conditional: import(".").JSONSchema;
|
@@ -1537,6 +1550,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1537
1550
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1538
1551
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1539
1552
|
hideLabel?: boolean | undefined;
|
1553
|
+
defaultValue?: number | undefined;
|
1540
1554
|
configuration?: {
|
1541
1555
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
1542
1556
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1548,14 +1562,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1548
1562
|
id: string;
|
1549
1563
|
label: import("./TranslationConfig").TranslationConfig;
|
1550
1564
|
parent?: {
|
1551
|
-
|
1565
|
+
$$field: string;
|
1552
1566
|
} | undefined;
|
1553
1567
|
validation?: {
|
1554
1568
|
message: import("./TranslationConfig").TranslationConfig;
|
1555
1569
|
validator: import(".").JSONSchema;
|
1556
1570
|
}[] | undefined;
|
1557
1571
|
required?: boolean | undefined;
|
1558
|
-
defaultValue?: string | undefined;
|
1559
1572
|
conditionals?: ({
|
1560
1573
|
type: "SHOW";
|
1561
1574
|
conditional: import(".").JSONSchema;
|
@@ -1569,6 +1582,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1569
1582
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1570
1583
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1571
1584
|
hideLabel?: boolean | undefined;
|
1585
|
+
defaultValue?: string | undefined;
|
1572
1586
|
configuration?: {
|
1573
1587
|
maxLength?: number | undefined;
|
1574
1588
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1586,14 +1600,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1586
1600
|
};
|
1587
1601
|
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
1588
1602
|
parent?: {
|
1589
|
-
|
1603
|
+
$$field: string;
|
1590
1604
|
} | undefined;
|
1591
1605
|
validation?: {
|
1592
1606
|
message: import("./TranslationConfig").TranslationConfig;
|
1593
1607
|
validator: import(".").JSONSchema;
|
1594
1608
|
}[] | undefined;
|
1595
1609
|
required?: boolean | undefined;
|
1596
|
-
defaultValue?: string | number | boolean | undefined;
|
1597
1610
|
conditionals?: ({
|
1598
1611
|
type: "SHOW";
|
1599
1612
|
conditional: import(".").JSONSchema;
|
@@ -1607,19 +1620,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1607
1620
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1608
1621
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1609
1622
|
hideLabel?: boolean | undefined;
|
1623
|
+
defaultValue?: string | undefined;
|
1610
1624
|
} | {
|
1611
1625
|
type: "EMAIL";
|
1612
1626
|
id: string;
|
1613
1627
|
label: import("./TranslationConfig").TranslationConfig;
|
1614
1628
|
parent?: {
|
1615
|
-
|
1629
|
+
$$field: string;
|
1616
1630
|
} | undefined;
|
1617
1631
|
validation?: {
|
1618
1632
|
message: import("./TranslationConfig").TranslationConfig;
|
1619
1633
|
validator: import(".").JSONSchema;
|
1620
1634
|
}[] | undefined;
|
1621
1635
|
required?: boolean | undefined;
|
1622
|
-
defaultValue?: string | undefined;
|
1623
1636
|
conditionals?: ({
|
1624
1637
|
type: "SHOW";
|
1625
1638
|
conditional: import(".").JSONSchema;
|
@@ -1633,6 +1646,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1633
1646
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1634
1647
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1635
1648
|
hideLabel?: boolean | undefined;
|
1649
|
+
defaultValue?: string | undefined;
|
1636
1650
|
configuration?: {
|
1637
1651
|
maxLength?: number | undefined;
|
1638
1652
|
} | undefined;
|
@@ -1641,14 +1655,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1641
1655
|
id: string;
|
1642
1656
|
label: import("./TranslationConfig").TranslationConfig;
|
1643
1657
|
parent?: {
|
1644
|
-
|
1658
|
+
$$field: string;
|
1645
1659
|
} | undefined;
|
1646
1660
|
validation?: {
|
1647
1661
|
message: import("./TranslationConfig").TranslationConfig;
|
1648
1662
|
validator: import(".").JSONSchema;
|
1649
1663
|
}[] | undefined;
|
1650
1664
|
required?: boolean | undefined;
|
1651
|
-
defaultValue?: string | undefined;
|
1652
1665
|
conditionals?: ({
|
1653
1666
|
type: "SHOW";
|
1654
1667
|
conditional: import(".").JSONSchema;
|
@@ -1662,6 +1675,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1662
1675
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1663
1676
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1664
1677
|
hideLabel?: boolean | undefined;
|
1678
|
+
defaultValue?: string | undefined;
|
1665
1679
|
configuration?: {
|
1666
1680
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
1667
1681
|
} | undefined;
|
@@ -1670,14 +1684,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1670
1684
|
id: string;
|
1671
1685
|
label: import("./TranslationConfig").TranslationConfig;
|
1672
1686
|
parent?: {
|
1673
|
-
|
1687
|
+
$$field: string;
|
1674
1688
|
} | undefined;
|
1675
1689
|
validation?: {
|
1676
1690
|
message: import("./TranslationConfig").TranslationConfig;
|
1677
1691
|
validator: import(".").JSONSchema;
|
1678
1692
|
}[] | undefined;
|
1679
1693
|
required?: boolean | undefined;
|
1680
|
-
defaultValue?: string | [string, string] | undefined;
|
1681
1694
|
conditionals?: ({
|
1682
1695
|
type: "SHOW";
|
1683
1696
|
conditional: import(".").JSONSchema;
|
@@ -1691,6 +1704,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1691
1704
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1692
1705
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1693
1706
|
hideLabel?: boolean | undefined;
|
1707
|
+
defaultValue?: string | [string, string] | undefined;
|
1694
1708
|
configuration?: {
|
1695
1709
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
1696
1710
|
} | undefined;
|
@@ -1704,14 +1718,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1704
1718
|
} | undefined;
|
1705
1719
|
};
|
1706
1720
|
parent?: {
|
1707
|
-
|
1721
|
+
$$field: string;
|
1708
1722
|
} | undefined;
|
1709
1723
|
validation?: {
|
1710
1724
|
message: import("./TranslationConfig").TranslationConfig;
|
1711
1725
|
validator: import(".").JSONSchema;
|
1712
1726
|
}[] | undefined;
|
1713
1727
|
required?: boolean | undefined;
|
1714
|
-
defaultValue?: string | undefined;
|
1715
1728
|
conditionals?: ({
|
1716
1729
|
type: "SHOW";
|
1717
1730
|
conditional: import(".").JSONSchema;
|
@@ -1725,19 +1738,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1725
1738
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1726
1739
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1727
1740
|
hideLabel?: boolean | undefined;
|
1741
|
+
defaultValue?: string | undefined;
|
1728
1742
|
} | {
|
1729
1743
|
type: "PAGE_HEADER";
|
1730
1744
|
id: string;
|
1731
1745
|
label: import("./TranslationConfig").TranslationConfig;
|
1732
1746
|
parent?: {
|
1733
|
-
|
1747
|
+
$$field: string;
|
1734
1748
|
} | undefined;
|
1735
1749
|
validation?: {
|
1736
1750
|
message: import("./TranslationConfig").TranslationConfig;
|
1737
1751
|
validator: import(".").JSONSchema;
|
1738
1752
|
}[] | undefined;
|
1739
1753
|
required?: boolean | undefined;
|
1740
|
-
defaultValue?: string | undefined;
|
1741
1754
|
conditionals?: ({
|
1742
1755
|
type: "SHOW";
|
1743
1756
|
conditional: import(".").JSONSchema;
|
@@ -1751,6 +1764,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1751
1764
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1752
1765
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1753
1766
|
hideLabel?: boolean | undefined;
|
1767
|
+
defaultValue?: string | undefined;
|
1754
1768
|
} | {
|
1755
1769
|
type: "FILE";
|
1756
1770
|
id: string;
|
@@ -1764,14 +1778,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1764
1778
|
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
1765
1779
|
};
|
1766
1780
|
parent?: {
|
1767
|
-
|
1781
|
+
$$field: string;
|
1768
1782
|
} | undefined;
|
1769
1783
|
validation?: {
|
1770
1784
|
message: import("./TranslationConfig").TranslationConfig;
|
1771
1785
|
validator: import(".").JSONSchema;
|
1772
1786
|
}[] | undefined;
|
1773
1787
|
required?: boolean | undefined;
|
1774
|
-
defaultValue?: string | number | boolean | undefined;
|
1775
1788
|
conditionals?: ({
|
1776
1789
|
type: "SHOW";
|
1777
1790
|
conditional: import(".").JSONSchema;
|
@@ -1785,6 +1798,11 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1785
1798
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1786
1799
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1787
1800
|
hideLabel?: boolean | undefined;
|
1801
|
+
defaultValue?: {
|
1802
|
+
type: string;
|
1803
|
+
filename: string;
|
1804
|
+
originalFilename: string;
|
1805
|
+
} | undefined;
|
1788
1806
|
} | {
|
1789
1807
|
type: "RADIO_GROUP";
|
1790
1808
|
id: string;
|
@@ -1794,14 +1812,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1794
1812
|
}[];
|
1795
1813
|
label: import("./TranslationConfig").TranslationConfig;
|
1796
1814
|
parent?: {
|
1797
|
-
|
1815
|
+
$$field: string;
|
1798
1816
|
} | undefined;
|
1799
1817
|
validation?: {
|
1800
1818
|
message: import("./TranslationConfig").TranslationConfig;
|
1801
1819
|
validator: import(".").JSONSchema;
|
1802
1820
|
}[] | undefined;
|
1803
1821
|
required?: boolean | undefined;
|
1804
|
-
defaultValue?: string | undefined;
|
1805
1822
|
conditionals?: ({
|
1806
1823
|
type: "SHOW";
|
1807
1824
|
conditional: import(".").JSONSchema;
|
@@ -1815,6 +1832,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1815
1832
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1816
1833
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1817
1834
|
hideLabel?: boolean | undefined;
|
1835
|
+
defaultValue?: string | undefined;
|
1818
1836
|
configuration?: {
|
1819
1837
|
styles?: {
|
1820
1838
|
size?: "NORMAL" | "LARGE" | undefined;
|
@@ -1831,14 +1849,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1831
1849
|
};
|
1832
1850
|
items: import("./TranslationConfig").TranslationConfig[];
|
1833
1851
|
parent?: {
|
1834
|
-
|
1852
|
+
$$field: string;
|
1835
1853
|
} | undefined;
|
1836
1854
|
validation?: {
|
1837
1855
|
message: import("./TranslationConfig").TranslationConfig;
|
1838
1856
|
validator: import(".").JSONSchema;
|
1839
1857
|
}[] | undefined;
|
1840
1858
|
required?: boolean | undefined;
|
1841
|
-
defaultValue?: string | undefined;
|
1842
1859
|
conditionals?: ({
|
1843
1860
|
type: "SHOW";
|
1844
1861
|
conditional: import(".").JSONSchema;
|
@@ -1852,6 +1869,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1852
1869
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1853
1870
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1854
1871
|
hideLabel?: boolean | undefined;
|
1872
|
+
defaultValue?: string | undefined;
|
1855
1873
|
} | {
|
1856
1874
|
type: "SELECT";
|
1857
1875
|
id: string;
|
@@ -1861,14 +1879,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1861
1879
|
}[];
|
1862
1880
|
label: import("./TranslationConfig").TranslationConfig;
|
1863
1881
|
parent?: {
|
1864
|
-
|
1882
|
+
$$field: string;
|
1865
1883
|
} | undefined;
|
1866
1884
|
validation?: {
|
1867
1885
|
message: import("./TranslationConfig").TranslationConfig;
|
1868
1886
|
validator: import(".").JSONSchema;
|
1869
1887
|
}[] | undefined;
|
1870
1888
|
required?: boolean | undefined;
|
1871
|
-
defaultValue?: string | undefined;
|
1872
1889
|
conditionals?: ({
|
1873
1890
|
type: "SHOW";
|
1874
1891
|
conditional: import(".").JSONSchema;
|
@@ -1882,19 +1899,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1882
1899
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1883
1900
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1884
1901
|
hideLabel?: boolean | undefined;
|
1902
|
+
defaultValue?: string | undefined;
|
1885
1903
|
} | {
|
1886
1904
|
type: "CHECKBOX";
|
1887
1905
|
id: string;
|
1888
1906
|
label: import("./TranslationConfig").TranslationConfig;
|
1889
1907
|
parent?: {
|
1890
|
-
|
1908
|
+
$$field: string;
|
1891
1909
|
} | undefined;
|
1892
1910
|
validation?: {
|
1893
1911
|
message: import("./TranslationConfig").TranslationConfig;
|
1894
1912
|
validator: import(".").JSONSchema;
|
1895
1913
|
}[] | undefined;
|
1896
1914
|
required?: boolean | undefined;
|
1897
|
-
defaultValue?: boolean | undefined;
|
1898
1915
|
conditionals?: ({
|
1899
1916
|
type: "SHOW";
|
1900
1917
|
conditional: import(".").JSONSchema;
|
@@ -1908,19 +1925,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1908
1925
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1909
1926
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1910
1927
|
hideLabel?: boolean | undefined;
|
1928
|
+
defaultValue?: boolean | undefined;
|
1911
1929
|
} | {
|
1912
1930
|
type: "COUNTRY";
|
1913
1931
|
id: string;
|
1914
1932
|
label: import("./TranslationConfig").TranslationConfig;
|
1915
1933
|
parent?: {
|
1916
|
-
|
1934
|
+
$$field: string;
|
1917
1935
|
} | undefined;
|
1918
1936
|
validation?: {
|
1919
1937
|
message: import("./TranslationConfig").TranslationConfig;
|
1920
1938
|
validator: import(".").JSONSchema;
|
1921
1939
|
}[] | undefined;
|
1922
1940
|
required?: boolean | undefined;
|
1923
|
-
defaultValue?: string | undefined;
|
1924
1941
|
conditionals?: ({
|
1925
1942
|
type: "SHOW";
|
1926
1943
|
conditional: import(".").JSONSchema;
|
@@ -1934,6 +1951,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1934
1951
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1935
1952
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1936
1953
|
hideLabel?: boolean | undefined;
|
1954
|
+
defaultValue?: string | undefined;
|
1937
1955
|
} | {
|
1938
1956
|
type: "ADMINISTRATIVE_AREA";
|
1939
1957
|
id: string;
|
@@ -1945,14 +1963,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1945
1963
|
} | undefined;
|
1946
1964
|
};
|
1947
1965
|
parent?: {
|
1948
|
-
|
1966
|
+
$$field: string;
|
1949
1967
|
} | undefined;
|
1950
1968
|
validation?: {
|
1951
1969
|
message: import("./TranslationConfig").TranslationConfig;
|
1952
1970
|
validator: import(".").JSONSchema;
|
1953
1971
|
}[] | undefined;
|
1954
1972
|
required?: boolean | undefined;
|
1955
|
-
defaultValue?: string | undefined;
|
1956
1973
|
conditionals?: ({
|
1957
1974
|
type: "SHOW";
|
1958
1975
|
conditional: import(".").JSONSchema;
|
@@ -1966,19 +1983,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1966
1983
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1967
1984
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1968
1985
|
hideLabel?: boolean | undefined;
|
1986
|
+
defaultValue?: string | undefined;
|
1969
1987
|
} | {
|
1970
1988
|
type: "LOCATION";
|
1971
1989
|
id: string;
|
1972
1990
|
label: import("./TranslationConfig").TranslationConfig;
|
1973
1991
|
parent?: {
|
1974
|
-
|
1992
|
+
$$field: string;
|
1975
1993
|
} | undefined;
|
1976
1994
|
validation?: {
|
1977
1995
|
message: import("./TranslationConfig").TranslationConfig;
|
1978
1996
|
validator: import(".").JSONSchema;
|
1979
1997
|
}[] | undefined;
|
1980
1998
|
required?: boolean | undefined;
|
1981
|
-
defaultValue?: string | undefined;
|
1982
1999
|
conditionals?: ({
|
1983
2000
|
type: "SHOW";
|
1984
2001
|
conditional: import(".").JSONSchema;
|
@@ -1992,6 +2009,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1992
2009
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1993
2010
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1994
2011
|
hideLabel?: boolean | undefined;
|
2012
|
+
defaultValue?: string | undefined;
|
1995
2013
|
} | {
|
1996
2014
|
type: "FILE_WITH_OPTIONS";
|
1997
2015
|
id: string;
|
@@ -2005,14 +2023,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2005
2023
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2006
2024
|
};
|
2007
2025
|
parent?: {
|
2008
|
-
|
2026
|
+
$$field: string;
|
2009
2027
|
} | undefined;
|
2010
2028
|
validation?: {
|
2011
2029
|
message: import("./TranslationConfig").TranslationConfig;
|
2012
2030
|
validator: import(".").JSONSchema;
|
2013
2031
|
}[] | undefined;
|
2014
2032
|
required?: boolean | undefined;
|
2015
|
-
defaultValue?: string | number | boolean | undefined;
|
2016
2033
|
conditionals?: ({
|
2017
2034
|
type: "SHOW";
|
2018
2035
|
conditional: import(".").JSONSchema;
|
@@ -2026,19 +2043,24 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2026
2043
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2027
2044
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2028
2045
|
hideLabel?: boolean | undefined;
|
2046
|
+
defaultValue?: {
|
2047
|
+
type: string;
|
2048
|
+
option: string;
|
2049
|
+
filename: string;
|
2050
|
+
originalFilename: string;
|
2051
|
+
}[] | undefined;
|
2029
2052
|
} | {
|
2030
2053
|
type: "FACILITY";
|
2031
2054
|
id: string;
|
2032
2055
|
label: import("./TranslationConfig").TranslationConfig;
|
2033
2056
|
parent?: {
|
2034
|
-
|
2057
|
+
$$field: string;
|
2035
2058
|
} | undefined;
|
2036
2059
|
validation?: {
|
2037
2060
|
message: import("./TranslationConfig").TranslationConfig;
|
2038
2061
|
validator: import(".").JSONSchema;
|
2039
2062
|
}[] | undefined;
|
2040
2063
|
required?: boolean | undefined;
|
2041
|
-
defaultValue?: string | undefined;
|
2042
2064
|
conditionals?: ({
|
2043
2065
|
type: "SHOW";
|
2044
2066
|
conditional: import(".").JSONSchema;
|
@@ -2052,19 +2074,19 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2052
2074
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2053
2075
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2054
2076
|
hideLabel?: boolean | undefined;
|
2077
|
+
defaultValue?: string | undefined;
|
2055
2078
|
} | {
|
2056
2079
|
type: "OFFICE";
|
2057
2080
|
id: string;
|
2058
2081
|
label: import("./TranslationConfig").TranslationConfig;
|
2059
2082
|
parent?: {
|
2060
|
-
|
2083
|
+
$$field: string;
|
2061
2084
|
} | undefined;
|
2062
2085
|
validation?: {
|
2063
2086
|
message: import("./TranslationConfig").TranslationConfig;
|
2064
2087
|
validator: import(".").JSONSchema;
|
2065
2088
|
}[] | undefined;
|
2066
2089
|
required?: boolean | undefined;
|
2067
|
-
defaultValue?: string | undefined;
|
2068
2090
|
conditionals?: ({
|
2069
2091
|
type: "SHOW";
|
2070
2092
|
conditional: import(".").JSONSchema;
|
@@ -2078,18 +2100,32 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2078
2100
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2079
2101
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2080
2102
|
hideLabel?: boolean | undefined;
|
2103
|
+
defaultValue?: string | undefined;
|
2081
2104
|
} | {
|
2082
2105
|
type: "ADDRESS";
|
2083
2106
|
id: string;
|
2084
2107
|
label: import("./TranslationConfig").TranslationConfig;
|
2085
2108
|
parent?: {
|
2086
|
-
|
2109
|
+
$$field: string;
|
2087
2110
|
} | undefined;
|
2088
2111
|
validation?: {
|
2089
2112
|
message: import("./TranslationConfig").TranslationConfig;
|
2090
2113
|
validator: import(".").JSONSchema;
|
2091
2114
|
}[] | undefined;
|
2092
2115
|
required?: boolean | undefined;
|
2116
|
+
conditionals?: ({
|
2117
|
+
type: "SHOW";
|
2118
|
+
conditional: import(".").JSONSchema;
|
2119
|
+
} | {
|
2120
|
+
type: "ENABLE";
|
2121
|
+
conditional: import(".").JSONSchema;
|
2122
|
+
} | {
|
2123
|
+
type: "DISPLAY_ON_REVIEW";
|
2124
|
+
conditional: import(".").JSONSchema;
|
2125
|
+
})[] | undefined;
|
2126
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2127
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2128
|
+
hideLabel?: boolean | undefined;
|
2093
2129
|
defaultValue?: {
|
2094
2130
|
country: string;
|
2095
2131
|
district: string;
|
@@ -2119,19 +2155,6 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2119
2155
|
addressLine3?: string | undefined;
|
2120
2156
|
postcodeOrZip?: string | undefined;
|
2121
2157
|
} | undefined;
|
2122
|
-
conditionals?: ({
|
2123
|
-
type: "SHOW";
|
2124
|
-
conditional: import(".").JSONSchema;
|
2125
|
-
} | {
|
2126
|
-
type: "ENABLE";
|
2127
|
-
conditional: import(".").JSONSchema;
|
2128
|
-
} | {
|
2129
|
-
type: "DISPLAY_ON_REVIEW";
|
2130
|
-
conditional: import(".").JSONSchema;
|
2131
|
-
})[] | undefined;
|
2132
|
-
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2133
|
-
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2134
|
-
hideLabel?: boolean | undefined;
|
2135
2158
|
} | {
|
2136
2159
|
type: "DATA";
|
2137
2160
|
id: string;
|
@@ -2146,14 +2169,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2146
2169
|
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
2147
2170
|
};
|
2148
2171
|
parent?: {
|
2149
|
-
|
2172
|
+
$$field: string;
|
2150
2173
|
} | undefined;
|
2151
2174
|
validation?: {
|
2152
2175
|
message: import("./TranslationConfig").TranslationConfig;
|
2153
2176
|
validator: import(".").JSONSchema;
|
2154
2177
|
}[] | undefined;
|
2155
2178
|
required?: boolean | undefined;
|
2156
|
-
defaultValue?: string | number | boolean | undefined;
|
2157
2179
|
conditionals?: ({
|
2158
2180
|
type: "SHOW";
|
2159
2181
|
conditional: import(".").JSONSchema;
|
@@ -2179,14 +2201,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2179
2201
|
id: string;
|
2180
2202
|
label: import("./TranslationConfig").TranslationConfig;
|
2181
2203
|
parent?: {
|
2182
|
-
|
2204
|
+
$$field: string;
|
2183
2205
|
} | undefined;
|
2184
2206
|
validation?: {
|
2185
2207
|
message: import("./TranslationConfig").TranslationConfig;
|
2186
2208
|
validator: import(".").JSONSchema;
|
2187
2209
|
}[] | undefined;
|
2188
2210
|
required?: boolean | undefined;
|
2189
|
-
defaultValue?: string | number | boolean | undefined;
|
2190
2211
|
conditionals?: ({
|
2191
2212
|
type: "SHOW";
|
2192
2213
|
conditional: import(".").JSONSchema;
|
@@ -2205,14 +2226,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2205
2226
|
id: string;
|
2206
2227
|
label: import("./TranslationConfig").TranslationConfig;
|
2207
2228
|
parent?: {
|
2208
|
-
|
2229
|
+
$$field: string;
|
2209
2230
|
} | undefined;
|
2210
2231
|
validation?: {
|
2211
2232
|
message: import("./TranslationConfig").TranslationConfig;
|
2212
2233
|
validator: import(".").JSONSchema;
|
2213
2234
|
}[] | undefined;
|
2214
2235
|
required?: boolean | undefined;
|
2215
|
-
defaultValue?: string | undefined;
|
2216
2236
|
conditionals?: ({
|
2217
2237
|
type: "SHOW";
|
2218
2238
|
conditional: import(".").JSONSchema;
|
@@ -2226,6 +2246,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2226
2246
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2227
2247
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2228
2248
|
hideLabel?: boolean | undefined;
|
2249
|
+
defaultValue?: string | undefined;
|
2229
2250
|
configuration?: {
|
2230
2251
|
type?: "text" | "password" | undefined;
|
2231
2252
|
maxLength?: number | undefined;
|
@@ -2237,14 +2258,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2237
2258
|
id: string;
|
2238
2259
|
label: import("./TranslationConfig").TranslationConfig;
|
2239
2260
|
parent?: {
|
2240
|
-
|
2261
|
+
$$field: string;
|
2241
2262
|
} | undefined;
|
2242
2263
|
validation?: {
|
2243
2264
|
message: import("./TranslationConfig").TranslationConfig;
|
2244
2265
|
validator: import(".").JSONSchema;
|
2245
2266
|
}[] | undefined;
|
2246
2267
|
required?: boolean | undefined;
|
2247
|
-
defaultValue?: number | undefined;
|
2248
2268
|
conditionals?: ({
|
2249
2269
|
type: "SHOW";
|
2250
2270
|
conditional: import(".").JSONSchema;
|
@@ -2258,6 +2278,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2258
2278
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2259
2279
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2260
2280
|
hideLabel?: boolean | undefined;
|
2281
|
+
defaultValue?: number | undefined;
|
2261
2282
|
configuration?: {
|
2262
2283
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2263
2284
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2269,14 +2290,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2269
2290
|
id: string;
|
2270
2291
|
label: import("./TranslationConfig").TranslationConfig;
|
2271
2292
|
parent?: {
|
2272
|
-
|
2293
|
+
$$field: string;
|
2273
2294
|
} | undefined;
|
2274
2295
|
validation?: {
|
2275
2296
|
message: import("./TranslationConfig").TranslationConfig;
|
2276
2297
|
validator: import(".").JSONSchema;
|
2277
2298
|
}[] | undefined;
|
2278
2299
|
required?: boolean | undefined;
|
2279
|
-
defaultValue?: string | undefined;
|
2280
2300
|
conditionals?: ({
|
2281
2301
|
type: "SHOW";
|
2282
2302
|
conditional: import(".").JSONSchema;
|
@@ -2290,6 +2310,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2290
2310
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2291
2311
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2292
2312
|
hideLabel?: boolean | undefined;
|
2313
|
+
defaultValue?: string | undefined;
|
2293
2314
|
configuration?: {
|
2294
2315
|
maxLength?: number | undefined;
|
2295
2316
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2307,14 +2328,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2307
2328
|
};
|
2308
2329
|
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
2309
2330
|
parent?: {
|
2310
|
-
|
2331
|
+
$$field: string;
|
2311
2332
|
} | undefined;
|
2312
2333
|
validation?: {
|
2313
2334
|
message: import("./TranslationConfig").TranslationConfig;
|
2314
2335
|
validator: import(".").JSONSchema;
|
2315
2336
|
}[] | undefined;
|
2316
2337
|
required?: boolean | undefined;
|
2317
|
-
defaultValue?: string | number | boolean | undefined;
|
2318
2338
|
conditionals?: ({
|
2319
2339
|
type: "SHOW";
|
2320
2340
|
conditional: import(".").JSONSchema;
|
@@ -2328,19 +2348,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2328
2348
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2329
2349
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2330
2350
|
hideLabel?: boolean | undefined;
|
2351
|
+
defaultValue?: string | undefined;
|
2331
2352
|
} | {
|
2332
2353
|
type: "EMAIL";
|
2333
2354
|
id: string;
|
2334
2355
|
label: import("./TranslationConfig").TranslationConfig;
|
2335
2356
|
parent?: {
|
2336
|
-
|
2357
|
+
$$field: string;
|
2337
2358
|
} | undefined;
|
2338
2359
|
validation?: {
|
2339
2360
|
message: import("./TranslationConfig").TranslationConfig;
|
2340
2361
|
validator: import(".").JSONSchema;
|
2341
2362
|
}[] | undefined;
|
2342
2363
|
required?: boolean | undefined;
|
2343
|
-
defaultValue?: string | undefined;
|
2344
2364
|
conditionals?: ({
|
2345
2365
|
type: "SHOW";
|
2346
2366
|
conditional: import(".").JSONSchema;
|
@@ -2354,6 +2374,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2354
2374
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2355
2375
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2356
2376
|
hideLabel?: boolean | undefined;
|
2377
|
+
defaultValue?: string | undefined;
|
2357
2378
|
configuration?: {
|
2358
2379
|
maxLength?: number | undefined;
|
2359
2380
|
} | undefined;
|
@@ -2362,14 +2383,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2362
2383
|
id: string;
|
2363
2384
|
label: import("./TranslationConfig").TranslationConfig;
|
2364
2385
|
parent?: {
|
2365
|
-
|
2386
|
+
$$field: string;
|
2366
2387
|
} | undefined;
|
2367
2388
|
validation?: {
|
2368
2389
|
message: import("./TranslationConfig").TranslationConfig;
|
2369
2390
|
validator: import(".").JSONSchema;
|
2370
2391
|
}[] | undefined;
|
2371
2392
|
required?: boolean | undefined;
|
2372
|
-
defaultValue?: string | undefined;
|
2373
2393
|
conditionals?: ({
|
2374
2394
|
type: "SHOW";
|
2375
2395
|
conditional: import(".").JSONSchema;
|
@@ -2383,6 +2403,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2383
2403
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2384
2404
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2385
2405
|
hideLabel?: boolean | undefined;
|
2406
|
+
defaultValue?: string | undefined;
|
2386
2407
|
configuration?: {
|
2387
2408
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2388
2409
|
} | undefined;
|
@@ -2391,14 +2412,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2391
2412
|
id: string;
|
2392
2413
|
label: import("./TranslationConfig").TranslationConfig;
|
2393
2414
|
parent?: {
|
2394
|
-
|
2415
|
+
$$field: string;
|
2395
2416
|
} | undefined;
|
2396
2417
|
validation?: {
|
2397
2418
|
message: import("./TranslationConfig").TranslationConfig;
|
2398
2419
|
validator: import(".").JSONSchema;
|
2399
2420
|
}[] | undefined;
|
2400
2421
|
required?: boolean | undefined;
|
2401
|
-
defaultValue?: string | [string, string] | undefined;
|
2402
2422
|
conditionals?: ({
|
2403
2423
|
type: "SHOW";
|
2404
2424
|
conditional: import(".").JSONSchema;
|
@@ -2412,6 +2432,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2412
2432
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2413
2433
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2414
2434
|
hideLabel?: boolean | undefined;
|
2435
|
+
defaultValue?: string | [string, string] | undefined;
|
2415
2436
|
configuration?: {
|
2416
2437
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2417
2438
|
} | undefined;
|
@@ -2425,14 +2446,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2425
2446
|
} | undefined;
|
2426
2447
|
};
|
2427
2448
|
parent?: {
|
2428
|
-
|
2449
|
+
$$field: string;
|
2429
2450
|
} | undefined;
|
2430
2451
|
validation?: {
|
2431
2452
|
message: import("./TranslationConfig").TranslationConfig;
|
2432
2453
|
validator: import(".").JSONSchema;
|
2433
2454
|
}[] | undefined;
|
2434
2455
|
required?: boolean | undefined;
|
2435
|
-
defaultValue?: string | undefined;
|
2436
2456
|
conditionals?: ({
|
2437
2457
|
type: "SHOW";
|
2438
2458
|
conditional: import(".").JSONSchema;
|
@@ -2446,19 +2466,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2446
2466
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2447
2467
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2448
2468
|
hideLabel?: boolean | undefined;
|
2469
|
+
defaultValue?: string | undefined;
|
2449
2470
|
} | {
|
2450
2471
|
type: "PAGE_HEADER";
|
2451
2472
|
id: string;
|
2452
2473
|
label: import("./TranslationConfig").TranslationConfig;
|
2453
2474
|
parent?: {
|
2454
|
-
|
2475
|
+
$$field: string;
|
2455
2476
|
} | undefined;
|
2456
2477
|
validation?: {
|
2457
2478
|
message: import("./TranslationConfig").TranslationConfig;
|
2458
2479
|
validator: import(".").JSONSchema;
|
2459
2480
|
}[] | undefined;
|
2460
2481
|
required?: boolean | undefined;
|
2461
|
-
defaultValue?: string | undefined;
|
2462
2482
|
conditionals?: ({
|
2463
2483
|
type: "SHOW";
|
2464
2484
|
conditional: import(".").JSONSchema;
|
@@ -2472,6 +2492,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2472
2492
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2473
2493
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2474
2494
|
hideLabel?: boolean | undefined;
|
2495
|
+
defaultValue?: string | undefined;
|
2475
2496
|
} | {
|
2476
2497
|
type: "FILE";
|
2477
2498
|
id: string;
|
@@ -2485,14 +2506,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2485
2506
|
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
2486
2507
|
};
|
2487
2508
|
parent?: {
|
2488
|
-
|
2509
|
+
$$field: string;
|
2489
2510
|
} | undefined;
|
2490
2511
|
validation?: {
|
2491
2512
|
message: import("./TranslationConfig").TranslationConfig;
|
2492
2513
|
validator: import(".").JSONSchema;
|
2493
2514
|
}[] | undefined;
|
2494
2515
|
required?: boolean | undefined;
|
2495
|
-
defaultValue?: string | number | boolean | undefined;
|
2496
2516
|
conditionals?: ({
|
2497
2517
|
type: "SHOW";
|
2498
2518
|
conditional: import(".").JSONSchema;
|
@@ -2506,6 +2526,11 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2506
2526
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2507
2527
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2508
2528
|
hideLabel?: boolean | undefined;
|
2529
|
+
defaultValue?: {
|
2530
|
+
type: string;
|
2531
|
+
filename: string;
|
2532
|
+
originalFilename: string;
|
2533
|
+
} | undefined;
|
2509
2534
|
} | {
|
2510
2535
|
type: "RADIO_GROUP";
|
2511
2536
|
id: string;
|
@@ -2515,14 +2540,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2515
2540
|
}[];
|
2516
2541
|
label: import("./TranslationConfig").TranslationConfig;
|
2517
2542
|
parent?: {
|
2518
|
-
|
2543
|
+
$$field: string;
|
2519
2544
|
} | undefined;
|
2520
2545
|
validation?: {
|
2521
2546
|
message: import("./TranslationConfig").TranslationConfig;
|
2522
2547
|
validator: import(".").JSONSchema;
|
2523
2548
|
}[] | undefined;
|
2524
2549
|
required?: boolean | undefined;
|
2525
|
-
defaultValue?: string | undefined;
|
2526
2550
|
conditionals?: ({
|
2527
2551
|
type: "SHOW";
|
2528
2552
|
conditional: import(".").JSONSchema;
|
@@ -2536,6 +2560,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2536
2560
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2537
2561
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2538
2562
|
hideLabel?: boolean | undefined;
|
2563
|
+
defaultValue?: string | undefined;
|
2539
2564
|
configuration?: {
|
2540
2565
|
styles?: {
|
2541
2566
|
size?: "NORMAL" | "LARGE" | undefined;
|
@@ -2552,14 +2577,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2552
2577
|
};
|
2553
2578
|
items: import("./TranslationConfig").TranslationConfig[];
|
2554
2579
|
parent?: {
|
2555
|
-
|
2580
|
+
$$field: string;
|
2556
2581
|
} | undefined;
|
2557
2582
|
validation?: {
|
2558
2583
|
message: import("./TranslationConfig").TranslationConfig;
|
2559
2584
|
validator: import(".").JSONSchema;
|
2560
2585
|
}[] | undefined;
|
2561
2586
|
required?: boolean | undefined;
|
2562
|
-
defaultValue?: string | undefined;
|
2563
2587
|
conditionals?: ({
|
2564
2588
|
type: "SHOW";
|
2565
2589
|
conditional: import(".").JSONSchema;
|
@@ -2573,6 +2597,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2573
2597
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2574
2598
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2575
2599
|
hideLabel?: boolean | undefined;
|
2600
|
+
defaultValue?: string | undefined;
|
2576
2601
|
} | {
|
2577
2602
|
type: "SELECT";
|
2578
2603
|
id: string;
|
@@ -2582,14 +2607,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2582
2607
|
}[];
|
2583
2608
|
label: import("./TranslationConfig").TranslationConfig;
|
2584
2609
|
parent?: {
|
2585
|
-
|
2610
|
+
$$field: string;
|
2586
2611
|
} | undefined;
|
2587
2612
|
validation?: {
|
2588
2613
|
message: import("./TranslationConfig").TranslationConfig;
|
2589
2614
|
validator: import(".").JSONSchema;
|
2590
2615
|
}[] | undefined;
|
2591
2616
|
required?: boolean | undefined;
|
2592
|
-
defaultValue?: string | undefined;
|
2593
2617
|
conditionals?: ({
|
2594
2618
|
type: "SHOW";
|
2595
2619
|
conditional: import(".").JSONSchema;
|
@@ -2603,19 +2627,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2603
2627
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2604
2628
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2605
2629
|
hideLabel?: boolean | undefined;
|
2630
|
+
defaultValue?: string | undefined;
|
2606
2631
|
} | {
|
2607
2632
|
type: "CHECKBOX";
|
2608
2633
|
id: string;
|
2609
2634
|
label: import("./TranslationConfig").TranslationConfig;
|
2610
2635
|
parent?: {
|
2611
|
-
|
2636
|
+
$$field: string;
|
2612
2637
|
} | undefined;
|
2613
2638
|
validation?: {
|
2614
2639
|
message: import("./TranslationConfig").TranslationConfig;
|
2615
2640
|
validator: import(".").JSONSchema;
|
2616
2641
|
}[] | undefined;
|
2617
2642
|
required?: boolean | undefined;
|
2618
|
-
defaultValue?: boolean | undefined;
|
2619
2643
|
conditionals?: ({
|
2620
2644
|
type: "SHOW";
|
2621
2645
|
conditional: import(".").JSONSchema;
|
@@ -2629,19 +2653,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2629
2653
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2630
2654
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2631
2655
|
hideLabel?: boolean | undefined;
|
2656
|
+
defaultValue?: boolean | undefined;
|
2632
2657
|
} | {
|
2633
2658
|
type: "COUNTRY";
|
2634
2659
|
id: string;
|
2635
2660
|
label: import("./TranslationConfig").TranslationConfig;
|
2636
2661
|
parent?: {
|
2637
|
-
|
2662
|
+
$$field: string;
|
2638
2663
|
} | undefined;
|
2639
2664
|
validation?: {
|
2640
2665
|
message: import("./TranslationConfig").TranslationConfig;
|
2641
2666
|
validator: import(".").JSONSchema;
|
2642
2667
|
}[] | undefined;
|
2643
2668
|
required?: boolean | undefined;
|
2644
|
-
defaultValue?: string | undefined;
|
2645
2669
|
conditionals?: ({
|
2646
2670
|
type: "SHOW";
|
2647
2671
|
conditional: import(".").JSONSchema;
|
@@ -2655,6 +2679,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2655
2679
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2656
2680
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2657
2681
|
hideLabel?: boolean | undefined;
|
2682
|
+
defaultValue?: string | undefined;
|
2658
2683
|
} | {
|
2659
2684
|
type: "ADMINISTRATIVE_AREA";
|
2660
2685
|
id: string;
|
@@ -2666,14 +2691,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2666
2691
|
} | undefined;
|
2667
2692
|
};
|
2668
2693
|
parent?: {
|
2669
|
-
|
2694
|
+
$$field: string;
|
2670
2695
|
} | undefined;
|
2671
2696
|
validation?: {
|
2672
2697
|
message: import("./TranslationConfig").TranslationConfig;
|
2673
2698
|
validator: import(".").JSONSchema;
|
2674
2699
|
}[] | undefined;
|
2675
2700
|
required?: boolean | undefined;
|
2676
|
-
defaultValue?: string | undefined;
|
2677
2701
|
conditionals?: ({
|
2678
2702
|
type: "SHOW";
|
2679
2703
|
conditional: import(".").JSONSchema;
|
@@ -2687,19 +2711,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2687
2711
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2688
2712
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2689
2713
|
hideLabel?: boolean | undefined;
|
2714
|
+
defaultValue?: string | undefined;
|
2690
2715
|
} | {
|
2691
2716
|
type: "LOCATION";
|
2692
2717
|
id: string;
|
2693
2718
|
label: import("./TranslationConfig").TranslationConfig;
|
2694
2719
|
parent?: {
|
2695
|
-
|
2720
|
+
$$field: string;
|
2696
2721
|
} | undefined;
|
2697
2722
|
validation?: {
|
2698
2723
|
message: import("./TranslationConfig").TranslationConfig;
|
2699
2724
|
validator: import(".").JSONSchema;
|
2700
2725
|
}[] | undefined;
|
2701
2726
|
required?: boolean | undefined;
|
2702
|
-
defaultValue?: string | undefined;
|
2703
2727
|
conditionals?: ({
|
2704
2728
|
type: "SHOW";
|
2705
2729
|
conditional: import(".").JSONSchema;
|
@@ -2713,6 +2737,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2713
2737
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2714
2738
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2715
2739
|
hideLabel?: boolean | undefined;
|
2740
|
+
defaultValue?: string | undefined;
|
2716
2741
|
} | {
|
2717
2742
|
type: "FILE_WITH_OPTIONS";
|
2718
2743
|
id: string;
|
@@ -2726,14 +2751,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2726
2751
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
2727
2752
|
};
|
2728
2753
|
parent?: {
|
2729
|
-
|
2754
|
+
$$field: string;
|
2730
2755
|
} | undefined;
|
2731
2756
|
validation?: {
|
2732
2757
|
message: import("./TranslationConfig").TranslationConfig;
|
2733
2758
|
validator: import(".").JSONSchema;
|
2734
2759
|
}[] | undefined;
|
2735
2760
|
required?: boolean | undefined;
|
2736
|
-
defaultValue?: string | number | boolean | undefined;
|
2737
2761
|
conditionals?: ({
|
2738
2762
|
type: "SHOW";
|
2739
2763
|
conditional: import(".").JSONSchema;
|
@@ -2747,19 +2771,24 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2747
2771
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2748
2772
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2749
2773
|
hideLabel?: boolean | undefined;
|
2774
|
+
defaultValue?: {
|
2775
|
+
type: string;
|
2776
|
+
option: string;
|
2777
|
+
filename: string;
|
2778
|
+
originalFilename: string;
|
2779
|
+
}[] | undefined;
|
2750
2780
|
} | {
|
2751
2781
|
type: "FACILITY";
|
2752
2782
|
id: string;
|
2753
2783
|
label: import("./TranslationConfig").TranslationConfig;
|
2754
2784
|
parent?: {
|
2755
|
-
|
2785
|
+
$$field: string;
|
2756
2786
|
} | undefined;
|
2757
2787
|
validation?: {
|
2758
2788
|
message: import("./TranslationConfig").TranslationConfig;
|
2759
2789
|
validator: import(".").JSONSchema;
|
2760
2790
|
}[] | undefined;
|
2761
2791
|
required?: boolean | undefined;
|
2762
|
-
defaultValue?: string | undefined;
|
2763
2792
|
conditionals?: ({
|
2764
2793
|
type: "SHOW";
|
2765
2794
|
conditional: import(".").JSONSchema;
|
@@ -2773,19 +2802,19 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2773
2802
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2774
2803
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2775
2804
|
hideLabel?: boolean | undefined;
|
2805
|
+
defaultValue?: string | undefined;
|
2776
2806
|
} | {
|
2777
2807
|
type: "OFFICE";
|
2778
2808
|
id: string;
|
2779
2809
|
label: import("./TranslationConfig").TranslationConfig;
|
2780
2810
|
parent?: {
|
2781
|
-
|
2811
|
+
$$field: string;
|
2782
2812
|
} | undefined;
|
2783
2813
|
validation?: {
|
2784
2814
|
message: import("./TranslationConfig").TranslationConfig;
|
2785
2815
|
validator: import(".").JSONSchema;
|
2786
2816
|
}[] | undefined;
|
2787
2817
|
required?: boolean | undefined;
|
2788
|
-
defaultValue?: string | undefined;
|
2789
2818
|
conditionals?: ({
|
2790
2819
|
type: "SHOW";
|
2791
2820
|
conditional: import(".").JSONSchema;
|
@@ -2799,18 +2828,32 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2799
2828
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2800
2829
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2801
2830
|
hideLabel?: boolean | undefined;
|
2831
|
+
defaultValue?: string | undefined;
|
2802
2832
|
} | {
|
2803
2833
|
type: "ADDRESS";
|
2804
2834
|
id: string;
|
2805
2835
|
label: import("./TranslationConfig").TranslationConfig;
|
2806
2836
|
parent?: {
|
2807
|
-
|
2837
|
+
$$field: string;
|
2808
2838
|
} | undefined;
|
2809
2839
|
validation?: {
|
2810
2840
|
message: import("./TranslationConfig").TranslationConfig;
|
2811
2841
|
validator: import(".").JSONSchema;
|
2812
2842
|
}[] | undefined;
|
2813
2843
|
required?: boolean | undefined;
|
2844
|
+
conditionals?: ({
|
2845
|
+
type: "SHOW";
|
2846
|
+
conditional: import(".").JSONSchema;
|
2847
|
+
} | {
|
2848
|
+
type: "ENABLE";
|
2849
|
+
conditional: import(".").JSONSchema;
|
2850
|
+
} | {
|
2851
|
+
type: "DISPLAY_ON_REVIEW";
|
2852
|
+
conditional: import(".").JSONSchema;
|
2853
|
+
})[] | undefined;
|
2854
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2855
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2856
|
+
hideLabel?: boolean | undefined;
|
2814
2857
|
defaultValue?: {
|
2815
2858
|
country: string;
|
2816
2859
|
district: string;
|
@@ -2840,19 +2883,6 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2840
2883
|
addressLine3?: string | undefined;
|
2841
2884
|
postcodeOrZip?: string | undefined;
|
2842
2885
|
} | undefined;
|
2843
|
-
conditionals?: ({
|
2844
|
-
type: "SHOW";
|
2845
|
-
conditional: import(".").JSONSchema;
|
2846
|
-
} | {
|
2847
|
-
type: "ENABLE";
|
2848
|
-
conditional: import(".").JSONSchema;
|
2849
|
-
} | {
|
2850
|
-
type: "DISPLAY_ON_REVIEW";
|
2851
|
-
conditional: import(".").JSONSchema;
|
2852
|
-
})[] | undefined;
|
2853
|
-
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2854
|
-
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2855
|
-
hideLabel?: boolean | undefined;
|
2856
2886
|
} | {
|
2857
2887
|
type: "DATA";
|
2858
2888
|
id: string;
|
@@ -2867,14 +2897,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2867
2897
|
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
2868
2898
|
};
|
2869
2899
|
parent?: {
|
2870
|
-
|
2900
|
+
$$field: string;
|
2871
2901
|
} | undefined;
|
2872
2902
|
validation?: {
|
2873
2903
|
message: import("./TranslationConfig").TranslationConfig;
|
2874
2904
|
validator: import(".").JSONSchema;
|
2875
2905
|
}[] | undefined;
|
2876
2906
|
required?: boolean | undefined;
|
2877
|
-
defaultValue?: string | number | boolean | undefined;
|
2878
2907
|
conditionals?: ({
|
2879
2908
|
type: "SHOW";
|
2880
2909
|
conditional: import(".").JSONSchema;
|
@@ -2895,14 +2924,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2895
2924
|
id: string;
|
2896
2925
|
label: import("./TranslationConfig").TranslationConfig;
|
2897
2926
|
parent?: {
|
2898
|
-
|
2927
|
+
$$field: string;
|
2899
2928
|
} | undefined;
|
2900
2929
|
validation?: {
|
2901
2930
|
message: import("./TranslationConfig").TranslationConfig;
|
2902
2931
|
validator: import(".").JSONSchema;
|
2903
2932
|
}[] | undefined;
|
2904
2933
|
required?: boolean | undefined;
|
2905
|
-
defaultValue?: string | number | boolean | undefined;
|
2906
2934
|
conditionals?: ({
|
2907
2935
|
type: "SHOW";
|
2908
2936
|
conditional: import(".").JSONSchema;
|
@@ -2921,14 +2949,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2921
2949
|
id: string;
|
2922
2950
|
label: import("./TranslationConfig").TranslationConfig;
|
2923
2951
|
parent?: {
|
2924
|
-
|
2952
|
+
$$field: string;
|
2925
2953
|
} | undefined;
|
2926
2954
|
validation?: {
|
2927
2955
|
message: import("./TranslationConfig").TranslationConfig;
|
2928
2956
|
validator: import(".").JSONSchema;
|
2929
2957
|
}[] | undefined;
|
2930
2958
|
required?: boolean | undefined;
|
2931
|
-
defaultValue?: string | undefined;
|
2932
2959
|
conditionals?: ({
|
2933
2960
|
type: "SHOW";
|
2934
2961
|
conditional: import(".").JSONSchema;
|
@@ -2942,6 +2969,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2942
2969
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2943
2970
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2944
2971
|
hideLabel?: boolean | undefined;
|
2972
|
+
defaultValue?: string | undefined;
|
2945
2973
|
configuration?: {
|
2946
2974
|
type?: "text" | "password" | undefined;
|
2947
2975
|
maxLength?: number | undefined;
|
@@ -2953,14 +2981,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2953
2981
|
id: string;
|
2954
2982
|
label: import("./TranslationConfig").TranslationConfig;
|
2955
2983
|
parent?: {
|
2956
|
-
|
2984
|
+
$$field: string;
|
2957
2985
|
} | undefined;
|
2958
2986
|
validation?: {
|
2959
2987
|
message: import("./TranslationConfig").TranslationConfig;
|
2960
2988
|
validator: import(".").JSONSchema;
|
2961
2989
|
}[] | undefined;
|
2962
2990
|
required?: boolean | undefined;
|
2963
|
-
defaultValue?: number | undefined;
|
2964
2991
|
conditionals?: ({
|
2965
2992
|
type: "SHOW";
|
2966
2993
|
conditional: import(".").JSONSchema;
|
@@ -2974,6 +3001,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2974
3001
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2975
3002
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2976
3003
|
hideLabel?: boolean | undefined;
|
3004
|
+
defaultValue?: number | undefined;
|
2977
3005
|
configuration?: {
|
2978
3006
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
2979
3007
|
postfix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2985,14 +3013,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2985
3013
|
id: string;
|
2986
3014
|
label: import("./TranslationConfig").TranslationConfig;
|
2987
3015
|
parent?: {
|
2988
|
-
|
3016
|
+
$$field: string;
|
2989
3017
|
} | undefined;
|
2990
3018
|
validation?: {
|
2991
3019
|
message: import("./TranslationConfig").TranslationConfig;
|
2992
3020
|
validator: import(".").JSONSchema;
|
2993
3021
|
}[] | undefined;
|
2994
3022
|
required?: boolean | undefined;
|
2995
|
-
defaultValue?: string | undefined;
|
2996
3023
|
conditionals?: ({
|
2997
3024
|
type: "SHOW";
|
2998
3025
|
conditional: import(".").JSONSchema;
|
@@ -3006,6 +3033,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3006
3033
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3007
3034
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3008
3035
|
hideLabel?: boolean | undefined;
|
3036
|
+
defaultValue?: string | undefined;
|
3009
3037
|
configuration?: {
|
3010
3038
|
maxLength?: number | undefined;
|
3011
3039
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3023,14 +3051,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3023
3051
|
};
|
3024
3052
|
signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
|
3025
3053
|
parent?: {
|
3026
|
-
|
3054
|
+
$$field: string;
|
3027
3055
|
} | undefined;
|
3028
3056
|
validation?: {
|
3029
3057
|
message: import("./TranslationConfig").TranslationConfig;
|
3030
3058
|
validator: import(".").JSONSchema;
|
3031
3059
|
}[] | undefined;
|
3032
3060
|
required?: boolean | undefined;
|
3033
|
-
defaultValue?: string | number | boolean | undefined;
|
3034
3061
|
conditionals?: ({
|
3035
3062
|
type: "SHOW";
|
3036
3063
|
conditional: import(".").JSONSchema;
|
@@ -3044,19 +3071,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3044
3071
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3045
3072
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3046
3073
|
hideLabel?: boolean | undefined;
|
3074
|
+
defaultValue?: string | undefined;
|
3047
3075
|
} | {
|
3048
3076
|
type: "EMAIL";
|
3049
3077
|
id: string;
|
3050
3078
|
label: import("./TranslationConfig").TranslationConfig;
|
3051
3079
|
parent?: {
|
3052
|
-
|
3080
|
+
$$field: string;
|
3053
3081
|
} | undefined;
|
3054
3082
|
validation?: {
|
3055
3083
|
message: import("./TranslationConfig").TranslationConfig;
|
3056
3084
|
validator: import(".").JSONSchema;
|
3057
3085
|
}[] | undefined;
|
3058
3086
|
required?: boolean | undefined;
|
3059
|
-
defaultValue?: string | undefined;
|
3060
3087
|
conditionals?: ({
|
3061
3088
|
type: "SHOW";
|
3062
3089
|
conditional: import(".").JSONSchema;
|
@@ -3070,6 +3097,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3070
3097
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3071
3098
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3072
3099
|
hideLabel?: boolean | undefined;
|
3100
|
+
defaultValue?: string | undefined;
|
3073
3101
|
configuration?: {
|
3074
3102
|
maxLength?: number | undefined;
|
3075
3103
|
} | undefined;
|
@@ -3078,14 +3106,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3078
3106
|
id: string;
|
3079
3107
|
label: import("./TranslationConfig").TranslationConfig;
|
3080
3108
|
parent?: {
|
3081
|
-
|
3109
|
+
$$field: string;
|
3082
3110
|
} | undefined;
|
3083
3111
|
validation?: {
|
3084
3112
|
message: import("./TranslationConfig").TranslationConfig;
|
3085
3113
|
validator: import(".").JSONSchema;
|
3086
3114
|
}[] | undefined;
|
3087
3115
|
required?: boolean | undefined;
|
3088
|
-
defaultValue?: string | undefined;
|
3089
3116
|
conditionals?: ({
|
3090
3117
|
type: "SHOW";
|
3091
3118
|
conditional: import(".").JSONSchema;
|
@@ -3099,6 +3126,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3099
3126
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3100
3127
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3101
3128
|
hideLabel?: boolean | undefined;
|
3129
|
+
defaultValue?: string | undefined;
|
3102
3130
|
configuration?: {
|
3103
3131
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
3104
3132
|
} | undefined;
|
@@ -3107,14 +3135,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3107
3135
|
id: string;
|
3108
3136
|
label: import("./TranslationConfig").TranslationConfig;
|
3109
3137
|
parent?: {
|
3110
|
-
|
3138
|
+
$$field: string;
|
3111
3139
|
} | undefined;
|
3112
3140
|
validation?: {
|
3113
3141
|
message: import("./TranslationConfig").TranslationConfig;
|
3114
3142
|
validator: import(".").JSONSchema;
|
3115
3143
|
}[] | undefined;
|
3116
3144
|
required?: boolean | undefined;
|
3117
|
-
defaultValue?: string | [string, string] | undefined;
|
3118
3145
|
conditionals?: ({
|
3119
3146
|
type: "SHOW";
|
3120
3147
|
conditional: import(".").JSONSchema;
|
@@ -3128,6 +3155,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3128
3155
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3129
3156
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3130
3157
|
hideLabel?: boolean | undefined;
|
3158
|
+
defaultValue?: string | [string, string] | undefined;
|
3131
3159
|
configuration?: {
|
3132
3160
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
3133
3161
|
} | undefined;
|
@@ -3141,14 +3169,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3141
3169
|
} | undefined;
|
3142
3170
|
};
|
3143
3171
|
parent?: {
|
3144
|
-
|
3172
|
+
$$field: string;
|
3145
3173
|
} | undefined;
|
3146
3174
|
validation?: {
|
3147
3175
|
message: import("./TranslationConfig").TranslationConfig;
|
3148
3176
|
validator: import(".").JSONSchema;
|
3149
3177
|
}[] | undefined;
|
3150
3178
|
required?: boolean | undefined;
|
3151
|
-
defaultValue?: string | undefined;
|
3152
3179
|
conditionals?: ({
|
3153
3180
|
type: "SHOW";
|
3154
3181
|
conditional: import(".").JSONSchema;
|
@@ -3162,19 +3189,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3162
3189
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3163
3190
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3164
3191
|
hideLabel?: boolean | undefined;
|
3192
|
+
defaultValue?: string | undefined;
|
3165
3193
|
} | {
|
3166
3194
|
type: "PAGE_HEADER";
|
3167
3195
|
id: string;
|
3168
3196
|
label: import("./TranslationConfig").TranslationConfig;
|
3169
3197
|
parent?: {
|
3170
|
-
|
3198
|
+
$$field: string;
|
3171
3199
|
} | undefined;
|
3172
3200
|
validation?: {
|
3173
3201
|
message: import("./TranslationConfig").TranslationConfig;
|
3174
3202
|
validator: import(".").JSONSchema;
|
3175
3203
|
}[] | undefined;
|
3176
3204
|
required?: boolean | undefined;
|
3177
|
-
defaultValue?: string | undefined;
|
3178
3205
|
conditionals?: ({
|
3179
3206
|
type: "SHOW";
|
3180
3207
|
conditional: import(".").JSONSchema;
|
@@ -3188,6 +3215,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3188
3215
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3189
3216
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3190
3217
|
hideLabel?: boolean | undefined;
|
3218
|
+
defaultValue?: string | undefined;
|
3191
3219
|
} | {
|
3192
3220
|
type: "FILE";
|
3193
3221
|
id: string;
|
@@ -3201,14 +3229,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3201
3229
|
fileName?: import("./TranslationConfig").TranslationConfig | undefined;
|
3202
3230
|
};
|
3203
3231
|
parent?: {
|
3204
|
-
|
3232
|
+
$$field: string;
|
3205
3233
|
} | undefined;
|
3206
3234
|
validation?: {
|
3207
3235
|
message: import("./TranslationConfig").TranslationConfig;
|
3208
3236
|
validator: import(".").JSONSchema;
|
3209
3237
|
}[] | undefined;
|
3210
3238
|
required?: boolean | undefined;
|
3211
|
-
defaultValue?: string | number | boolean | undefined;
|
3212
3239
|
conditionals?: ({
|
3213
3240
|
type: "SHOW";
|
3214
3241
|
conditional: import(".").JSONSchema;
|
@@ -3222,6 +3249,11 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3222
3249
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3223
3250
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3224
3251
|
hideLabel?: boolean | undefined;
|
3252
|
+
defaultValue?: {
|
3253
|
+
type: string;
|
3254
|
+
filename: string;
|
3255
|
+
originalFilename: string;
|
3256
|
+
} | undefined;
|
3225
3257
|
} | {
|
3226
3258
|
type: "RADIO_GROUP";
|
3227
3259
|
id: string;
|
@@ -3231,14 +3263,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3231
3263
|
}[];
|
3232
3264
|
label: import("./TranslationConfig").TranslationConfig;
|
3233
3265
|
parent?: {
|
3234
|
-
|
3266
|
+
$$field: string;
|
3235
3267
|
} | undefined;
|
3236
3268
|
validation?: {
|
3237
3269
|
message: import("./TranslationConfig").TranslationConfig;
|
3238
3270
|
validator: import(".").JSONSchema;
|
3239
3271
|
}[] | undefined;
|
3240
3272
|
required?: boolean | undefined;
|
3241
|
-
defaultValue?: string | undefined;
|
3242
3273
|
conditionals?: ({
|
3243
3274
|
type: "SHOW";
|
3244
3275
|
conditional: import(".").JSONSchema;
|
@@ -3252,6 +3283,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3252
3283
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3253
3284
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3254
3285
|
hideLabel?: boolean | undefined;
|
3286
|
+
defaultValue?: string | undefined;
|
3255
3287
|
configuration?: {
|
3256
3288
|
styles?: {
|
3257
3289
|
size?: "NORMAL" | "LARGE" | undefined;
|
@@ -3268,14 +3300,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3268
3300
|
};
|
3269
3301
|
items: import("./TranslationConfig").TranslationConfig[];
|
3270
3302
|
parent?: {
|
3271
|
-
|
3303
|
+
$$field: string;
|
3272
3304
|
} | undefined;
|
3273
3305
|
validation?: {
|
3274
3306
|
message: import("./TranslationConfig").TranslationConfig;
|
3275
3307
|
validator: import(".").JSONSchema;
|
3276
3308
|
}[] | undefined;
|
3277
3309
|
required?: boolean | undefined;
|
3278
|
-
defaultValue?: string | undefined;
|
3279
3310
|
conditionals?: ({
|
3280
3311
|
type: "SHOW";
|
3281
3312
|
conditional: import(".").JSONSchema;
|
@@ -3289,6 +3320,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3289
3320
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3290
3321
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3291
3322
|
hideLabel?: boolean | undefined;
|
3323
|
+
defaultValue?: string | undefined;
|
3292
3324
|
} | {
|
3293
3325
|
type: "SELECT";
|
3294
3326
|
id: string;
|
@@ -3298,14 +3330,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3298
3330
|
}[];
|
3299
3331
|
label: import("./TranslationConfig").TranslationConfig;
|
3300
3332
|
parent?: {
|
3301
|
-
|
3333
|
+
$$field: string;
|
3302
3334
|
} | undefined;
|
3303
3335
|
validation?: {
|
3304
3336
|
message: import("./TranslationConfig").TranslationConfig;
|
3305
3337
|
validator: import(".").JSONSchema;
|
3306
3338
|
}[] | undefined;
|
3307
3339
|
required?: boolean | undefined;
|
3308
|
-
defaultValue?: string | undefined;
|
3309
3340
|
conditionals?: ({
|
3310
3341
|
type: "SHOW";
|
3311
3342
|
conditional: import(".").JSONSchema;
|
@@ -3319,19 +3350,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3319
3350
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3320
3351
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3321
3352
|
hideLabel?: boolean | undefined;
|
3353
|
+
defaultValue?: string | undefined;
|
3322
3354
|
} | {
|
3323
3355
|
type: "CHECKBOX";
|
3324
3356
|
id: string;
|
3325
3357
|
label: import("./TranslationConfig").TranslationConfig;
|
3326
3358
|
parent?: {
|
3327
|
-
|
3359
|
+
$$field: string;
|
3328
3360
|
} | undefined;
|
3329
3361
|
validation?: {
|
3330
3362
|
message: import("./TranslationConfig").TranslationConfig;
|
3331
3363
|
validator: import(".").JSONSchema;
|
3332
3364
|
}[] | undefined;
|
3333
3365
|
required?: boolean | undefined;
|
3334
|
-
defaultValue?: boolean | undefined;
|
3335
3366
|
conditionals?: ({
|
3336
3367
|
type: "SHOW";
|
3337
3368
|
conditional: import(".").JSONSchema;
|
@@ -3345,19 +3376,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3345
3376
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3346
3377
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3347
3378
|
hideLabel?: boolean | undefined;
|
3379
|
+
defaultValue?: boolean | undefined;
|
3348
3380
|
} | {
|
3349
3381
|
type: "COUNTRY";
|
3350
3382
|
id: string;
|
3351
3383
|
label: import("./TranslationConfig").TranslationConfig;
|
3352
3384
|
parent?: {
|
3353
|
-
|
3385
|
+
$$field: string;
|
3354
3386
|
} | undefined;
|
3355
3387
|
validation?: {
|
3356
3388
|
message: import("./TranslationConfig").TranslationConfig;
|
3357
3389
|
validator: import(".").JSONSchema;
|
3358
3390
|
}[] | undefined;
|
3359
3391
|
required?: boolean | undefined;
|
3360
|
-
defaultValue?: string | undefined;
|
3361
3392
|
conditionals?: ({
|
3362
3393
|
type: "SHOW";
|
3363
3394
|
conditional: import(".").JSONSchema;
|
@@ -3371,6 +3402,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3371
3402
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3372
3403
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3373
3404
|
hideLabel?: boolean | undefined;
|
3405
|
+
defaultValue?: string | undefined;
|
3374
3406
|
} | {
|
3375
3407
|
type: "ADMINISTRATIVE_AREA";
|
3376
3408
|
id: string;
|
@@ -3382,14 +3414,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3382
3414
|
} | undefined;
|
3383
3415
|
};
|
3384
3416
|
parent?: {
|
3385
|
-
|
3417
|
+
$$field: string;
|
3386
3418
|
} | undefined;
|
3387
3419
|
validation?: {
|
3388
3420
|
message: import("./TranslationConfig").TranslationConfig;
|
3389
3421
|
validator: import(".").JSONSchema;
|
3390
3422
|
}[] | undefined;
|
3391
3423
|
required?: boolean | undefined;
|
3392
|
-
defaultValue?: string | undefined;
|
3393
3424
|
conditionals?: ({
|
3394
3425
|
type: "SHOW";
|
3395
3426
|
conditional: import(".").JSONSchema;
|
@@ -3403,19 +3434,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3403
3434
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3404
3435
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3405
3436
|
hideLabel?: boolean | undefined;
|
3437
|
+
defaultValue?: string | undefined;
|
3406
3438
|
} | {
|
3407
3439
|
type: "LOCATION";
|
3408
3440
|
id: string;
|
3409
3441
|
label: import("./TranslationConfig").TranslationConfig;
|
3410
3442
|
parent?: {
|
3411
|
-
|
3443
|
+
$$field: string;
|
3412
3444
|
} | undefined;
|
3413
3445
|
validation?: {
|
3414
3446
|
message: import("./TranslationConfig").TranslationConfig;
|
3415
3447
|
validator: import(".").JSONSchema;
|
3416
3448
|
}[] | undefined;
|
3417
3449
|
required?: boolean | undefined;
|
3418
|
-
defaultValue?: string | undefined;
|
3419
3450
|
conditionals?: ({
|
3420
3451
|
type: "SHOW";
|
3421
3452
|
conditional: import(".").JSONSchema;
|
@@ -3429,6 +3460,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3429
3460
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3430
3461
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3431
3462
|
hideLabel?: boolean | undefined;
|
3463
|
+
defaultValue?: string | undefined;
|
3432
3464
|
} | {
|
3433
3465
|
type: "FILE_WITH_OPTIONS";
|
3434
3466
|
id: string;
|
@@ -3442,14 +3474,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3442
3474
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
3443
3475
|
};
|
3444
3476
|
parent?: {
|
3445
|
-
|
3477
|
+
$$field: string;
|
3446
3478
|
} | undefined;
|
3447
3479
|
validation?: {
|
3448
3480
|
message: import("./TranslationConfig").TranslationConfig;
|
3449
3481
|
validator: import(".").JSONSchema;
|
3450
3482
|
}[] | undefined;
|
3451
3483
|
required?: boolean | undefined;
|
3452
|
-
defaultValue?: string | number | boolean | undefined;
|
3453
3484
|
conditionals?: ({
|
3454
3485
|
type: "SHOW";
|
3455
3486
|
conditional: import(".").JSONSchema;
|
@@ -3463,19 +3494,24 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3463
3494
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3464
3495
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3465
3496
|
hideLabel?: boolean | undefined;
|
3497
|
+
defaultValue?: {
|
3498
|
+
type: string;
|
3499
|
+
option: string;
|
3500
|
+
filename: string;
|
3501
|
+
originalFilename: string;
|
3502
|
+
}[] | undefined;
|
3466
3503
|
} | {
|
3467
3504
|
type: "FACILITY";
|
3468
3505
|
id: string;
|
3469
3506
|
label: import("./TranslationConfig").TranslationConfig;
|
3470
3507
|
parent?: {
|
3471
|
-
|
3508
|
+
$$field: string;
|
3472
3509
|
} | undefined;
|
3473
3510
|
validation?: {
|
3474
3511
|
message: import("./TranslationConfig").TranslationConfig;
|
3475
3512
|
validator: import(".").JSONSchema;
|
3476
3513
|
}[] | undefined;
|
3477
3514
|
required?: boolean | undefined;
|
3478
|
-
defaultValue?: string | undefined;
|
3479
3515
|
conditionals?: ({
|
3480
3516
|
type: "SHOW";
|
3481
3517
|
conditional: import(".").JSONSchema;
|
@@ -3489,19 +3525,19 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3489
3525
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3490
3526
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3491
3527
|
hideLabel?: boolean | undefined;
|
3528
|
+
defaultValue?: string | undefined;
|
3492
3529
|
} | {
|
3493
3530
|
type: "OFFICE";
|
3494
3531
|
id: string;
|
3495
3532
|
label: import("./TranslationConfig").TranslationConfig;
|
3496
3533
|
parent?: {
|
3497
|
-
|
3534
|
+
$$field: string;
|
3498
3535
|
} | undefined;
|
3499
3536
|
validation?: {
|
3500
3537
|
message: import("./TranslationConfig").TranslationConfig;
|
3501
3538
|
validator: import(".").JSONSchema;
|
3502
3539
|
}[] | undefined;
|
3503
3540
|
required?: boolean | undefined;
|
3504
|
-
defaultValue?: string | undefined;
|
3505
3541
|
conditionals?: ({
|
3506
3542
|
type: "SHOW";
|
3507
3543
|
conditional: import(".").JSONSchema;
|
@@ -3515,18 +3551,32 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3515
3551
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3516
3552
|
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3517
3553
|
hideLabel?: boolean | undefined;
|
3554
|
+
defaultValue?: string | undefined;
|
3518
3555
|
} | {
|
3519
3556
|
type: "ADDRESS";
|
3520
3557
|
id: string;
|
3521
3558
|
label: import("./TranslationConfig").TranslationConfig;
|
3522
3559
|
parent?: {
|
3523
|
-
|
3560
|
+
$$field: string;
|
3524
3561
|
} | undefined;
|
3525
3562
|
validation?: {
|
3526
3563
|
message: import("./TranslationConfig").TranslationConfig;
|
3527
3564
|
validator: import(".").JSONSchema;
|
3528
3565
|
}[] | undefined;
|
3529
3566
|
required?: boolean | undefined;
|
3567
|
+
conditionals?: ({
|
3568
|
+
type: "SHOW";
|
3569
|
+
conditional: import(".").JSONSchema;
|
3570
|
+
} | {
|
3571
|
+
type: "ENABLE";
|
3572
|
+
conditional: import(".").JSONSchema;
|
3573
|
+
} | {
|
3574
|
+
type: "DISPLAY_ON_REVIEW";
|
3575
|
+
conditional: import(".").JSONSchema;
|
3576
|
+
})[] | undefined;
|
3577
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3578
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3579
|
+
hideLabel?: boolean | undefined;
|
3530
3580
|
defaultValue?: {
|
3531
3581
|
country: string;
|
3532
3582
|
district: string;
|
@@ -3556,19 +3606,6 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3556
3606
|
addressLine3?: string | undefined;
|
3557
3607
|
postcodeOrZip?: string | undefined;
|
3558
3608
|
} | undefined;
|
3559
|
-
conditionals?: ({
|
3560
|
-
type: "SHOW";
|
3561
|
-
conditional: import(".").JSONSchema;
|
3562
|
-
} | {
|
3563
|
-
type: "ENABLE";
|
3564
|
-
conditional: import(".").JSONSchema;
|
3565
|
-
} | {
|
3566
|
-
type: "DISPLAY_ON_REVIEW";
|
3567
|
-
conditional: import(".").JSONSchema;
|
3568
|
-
})[] | undefined;
|
3569
|
-
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3570
|
-
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3571
|
-
hideLabel?: boolean | undefined;
|
3572
3609
|
} | {
|
3573
3610
|
type: "DATA";
|
3574
3611
|
id: string;
|
@@ -3583,14 +3620,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3583
3620
|
subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
|
3584
3621
|
};
|
3585
3622
|
parent?: {
|
3586
|
-
|
3623
|
+
$$field: string;
|
3587
3624
|
} | undefined;
|
3588
3625
|
validation?: {
|
3589
3626
|
message: import("./TranslationConfig").TranslationConfig;
|
3590
3627
|
validator: import(".").JSONSchema;
|
3591
3628
|
}[] | undefined;
|
3592
3629
|
required?: boolean | undefined;
|
3593
|
-
defaultValue?: string | number | boolean | undefined;
|
3594
3630
|
conditionals?: ({
|
3595
3631
|
type: "SHOW";
|
3596
3632
|
conditional: import(".").JSONSchema;
|
@@ -3646,10 +3682,10 @@ export declare function omitHiddenPaginatedFields(formConfig: FormConfig, declar
|
|
3646
3682
|
originalFilename: string;
|
3647
3683
|
}[] | [string, string] | undefined>>;
|
3648
3684
|
export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]): {
|
3649
|
-
id: string
|
3685
|
+
id: string & import("zod").BRAND<"UUID">;
|
3650
3686
|
transactionId: string;
|
3651
3687
|
createdAt: string;
|
3652
|
-
eventId: string
|
3688
|
+
eventId: string & import("zod").BRAND<"UUID">;
|
3653
3689
|
action: {
|
3654
3690
|
type: "DECLARE" | "REGISTER" | "VALIDATE" | "DELETE" | "CREATE" | "NOTIFY" | "DETECT_DUPLICATE" | "REJECT" | "MARKED_AS_DUPLICATE" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "READ" | "ASSIGN" | "UNASSIGN";
|
3655
3691
|
status: "Rejected" | "Requested" | "Accepted";
|
@@ -3695,7 +3731,8 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
|
|
3695
3731
|
filename: string;
|
3696
3732
|
originalFilename: string;
|
3697
3733
|
}[] | [string, string] | undefined>;
|
3698
|
-
|
3734
|
+
createdBySignature?: string | null | undefined;
|
3735
|
+
createdAtLocation?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
3699
3736
|
annotation?: Record<string, string | number | boolean | {
|
3700
3737
|
type: string;
|
3701
3738
|
filename: string;
|
@@ -3733,11 +3770,11 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
|
|
3733
3770
|
option: string;
|
3734
3771
|
filename: string;
|
3735
3772
|
originalFilename: string;
|
3736
|
-
}[] | [string, string] | undefined> | undefined;
|
3737
|
-
originalActionId?: string | undefined;
|
3773
|
+
}[] | [string, string] | undefined> | null | undefined;
|
3774
|
+
originalActionId?: (string & import("zod").BRAND<"UUID">) | null | undefined;
|
3738
3775
|
};
|
3739
3776
|
}[];
|
3740
|
-
export declare function createEmptyDraft(eventId:
|
3777
|
+
export declare function createEmptyDraft(eventId: UUID, draftId: UUID, actionType: ActionType): Draft;
|
3741
3778
|
export declare function isVerificationPage(page: PageConfig): page is VerificationPageConfig;
|
3742
3779
|
export declare function getVisibleVerificationPageIds(pages: PageConfig[], annotation: ActionUpdate): string[];
|
3743
3780
|
export declare function getActionVerificationPageIds(actionConfig: ActionConfig, annotation: ActionUpdate): string[];
|