@opencrvs/toolkit 1.8.0-rc.fa8bcf6 → 1.8.0-rc.facf9d6

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.
Files changed (39) hide show
  1. package/dist/commons/api/router.d.ts +7597 -4530
  2. package/dist/commons/conditionals/conditionals.d.ts +7 -6
  3. package/dist/commons/events/ActionConfig.d.ts +47498 -39631
  4. package/dist/commons/events/ActionDocument.d.ts +620 -413
  5. package/dist/commons/events/ActionInput.d.ts +255 -183
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +637 -48
  7. package/dist/commons/events/Constants.d.ts +2 -0
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +2982 -0
  9. package/dist/commons/events/CreatedAtLocation.d.ts +3 -0
  10. package/dist/commons/events/Draft.d.ts +29 -26
  11. package/dist/commons/events/EventConfig.d.ts +18414 -16593
  12. package/dist/commons/events/EventDocument.d.ts +373 -325
  13. package/dist/commons/events/EventIndex.d.ts +706 -291
  14. package/dist/commons/events/EventInput.d.ts +0 -13
  15. package/dist/commons/events/EventMetadata.d.ts +290 -14
  16. package/dist/commons/events/FieldConfig.d.ts +1305 -441
  17. package/dist/commons/events/FieldType.d.ts +3 -2
  18. package/dist/commons/events/FieldTypeMapping.d.ts +16 -6
  19. package/dist/commons/events/FieldValue.d.ts +8 -3
  20. package/dist/commons/events/FormConfig.d.ts +8993 -3809
  21. package/dist/commons/events/PageConfig.d.ts +1912 -636
  22. package/dist/commons/events/SummaryConfig.d.ts +17 -0
  23. package/dist/commons/events/User.d.ts +31 -7
  24. package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
  25. package/dist/commons/events/WorkqueueConfig.d.ts +4491 -10
  26. package/dist/commons/events/defineConfig.d.ts +3576 -3692
  27. package/dist/commons/events/event.d.ts +37 -8
  28. package/dist/commons/events/field.d.ts +28 -23
  29. package/dist/commons/events/index.d.ts +4 -0
  30. package/dist/commons/events/scopes.d.ts +21 -2
  31. package/dist/commons/events/serializer.d.ts +2 -0
  32. package/dist/commons/events/test.utils.d.ts +33 -13
  33. package/dist/commons/events/utils.d.ts +619 -291
  34. package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
  35. package/dist/conditionals/index.js +28 -8
  36. package/dist/events/index.js +3204 -1546
  37. package/dist/scopes/index.d.ts +158 -1
  38. package/dist/scopes/index.js +152 -1
  39. package/package.json +1 -1
@@ -17,14 +17,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
17
17
  id: string;
18
18
  label: import("./TranslationConfig").TranslationConfig;
19
19
  parent?: {
20
- _fieldId?: string | undefined;
20
+ $$field: string;
21
21
  } | undefined;
22
22
  validation?: {
23
23
  message: import("./TranslationConfig").TranslationConfig;
24
24
  validator: import(".").JSONSchema;
25
25
  }[] | undefined;
26
26
  required?: boolean | undefined;
27
- defaultValue?: string | number | boolean | undefined;
28
27
  conditionals?: ({
29
28
  type: "SHOW";
30
29
  conditional: import(".").JSONSchema;
@@ -36,20 +35,20 @@ export declare function getDeclarationPages(configuration: EventConfig): {
36
35
  conditional: import(".").JSONSchema;
37
36
  })[] | undefined;
38
37
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
38
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
39
39
  hideLabel?: boolean | undefined;
40
40
  } | {
41
41
  type: "TEXT";
42
42
  id: string;
43
43
  label: import("./TranslationConfig").TranslationConfig;
44
44
  parent?: {
45
- _fieldId?: string | undefined;
45
+ $$field: string;
46
46
  } | undefined;
47
47
  validation?: {
48
48
  message: import("./TranslationConfig").TranslationConfig;
49
49
  validator: import(".").JSONSchema;
50
50
  }[] | undefined;
51
51
  required?: boolean | undefined;
52
- defaultValue?: string | undefined;
53
52
  conditionals?: ({
54
53
  type: "SHOW";
55
54
  conditional: import(".").JSONSchema;
@@ -61,7 +60,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
61
60
  conditional: import(".").JSONSchema;
62
61
  })[] | undefined;
63
62
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
63
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
64
64
  hideLabel?: boolean | undefined;
65
+ defaultValue?: string | undefined;
65
66
  configuration?: {
66
67
  type?: "text" | "password" | undefined;
67
68
  maxLength?: number | undefined;
@@ -73,14 +74,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
73
74
  id: string;
74
75
  label: import("./TranslationConfig").TranslationConfig;
75
76
  parent?: {
76
- _fieldId?: string | undefined;
77
+ $$field: string;
77
78
  } | undefined;
78
79
  validation?: {
79
80
  message: import("./TranslationConfig").TranslationConfig;
80
81
  validator: import(".").JSONSchema;
81
82
  }[] | undefined;
82
83
  required?: boolean | undefined;
83
- defaultValue?: number | undefined;
84
84
  conditionals?: ({
85
85
  type: "SHOW";
86
86
  conditional: import(".").JSONSchema;
@@ -92,7 +92,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
92
92
  conditional: import(".").JSONSchema;
93
93
  })[] | undefined;
94
94
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
95
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
95
96
  hideLabel?: boolean | undefined;
97
+ defaultValue?: number | undefined;
96
98
  configuration?: {
97
99
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
98
100
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -104,14 +106,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
104
106
  id: string;
105
107
  label: import("./TranslationConfig").TranslationConfig;
106
108
  parent?: {
107
- _fieldId?: string | undefined;
109
+ $$field: string;
108
110
  } | undefined;
109
111
  validation?: {
110
112
  message: import("./TranslationConfig").TranslationConfig;
111
113
  validator: import(".").JSONSchema;
112
114
  }[] | undefined;
113
115
  required?: boolean | undefined;
114
- defaultValue?: string | undefined;
115
116
  conditionals?: ({
116
117
  type: "SHOW";
117
118
  conditional: import(".").JSONSchema;
@@ -123,7 +124,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
123
124
  conditional: import(".").JSONSchema;
124
125
  })[] | undefined;
125
126
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
127
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
126
128
  hideLabel?: boolean | undefined;
129
+ defaultValue?: string | undefined;
127
130
  configuration?: {
128
131
  maxLength?: number | undefined;
129
132
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -141,14 +144,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
141
144
  };
142
145
  signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
143
146
  parent?: {
144
- _fieldId?: string | undefined;
147
+ $$field: string;
145
148
  } | undefined;
146
149
  validation?: {
147
150
  message: import("./TranslationConfig").TranslationConfig;
148
151
  validator: import(".").JSONSchema;
149
152
  }[] | undefined;
150
153
  required?: boolean | undefined;
151
- defaultValue?: string | number | boolean | undefined;
152
154
  conditionals?: ({
153
155
  type: "SHOW";
154
156
  conditional: import(".").JSONSchema;
@@ -160,20 +162,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
160
162
  conditional: import(".").JSONSchema;
161
163
  })[] | undefined;
162
164
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
165
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
163
166
  hideLabel?: boolean | undefined;
167
+ defaultValue?: string | undefined;
164
168
  } | {
165
169
  type: "EMAIL";
166
170
  id: string;
167
171
  label: import("./TranslationConfig").TranslationConfig;
168
172
  parent?: {
169
- _fieldId?: string | undefined;
173
+ $$field: string;
170
174
  } | undefined;
171
175
  validation?: {
172
176
  message: import("./TranslationConfig").TranslationConfig;
173
177
  validator: import(".").JSONSchema;
174
178
  }[] | undefined;
175
179
  required?: boolean | undefined;
176
- defaultValue?: string | undefined;
177
180
  conditionals?: ({
178
181
  type: "SHOW";
179
182
  conditional: import(".").JSONSchema;
@@ -185,7 +188,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
185
188
  conditional: import(".").JSONSchema;
186
189
  })[] | undefined;
187
190
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
191
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
188
192
  hideLabel?: boolean | undefined;
193
+ defaultValue?: string | undefined;
189
194
  configuration?: {
190
195
  maxLength?: number | undefined;
191
196
  } | undefined;
@@ -194,14 +199,42 @@ export declare function getDeclarationPages(configuration: EventConfig): {
194
199
  id: string;
195
200
  label: import("./TranslationConfig").TranslationConfig;
196
201
  parent?: {
197
- _fieldId?: string | undefined;
202
+ $$field: string;
198
203
  } | undefined;
199
204
  validation?: {
200
205
  message: import("./TranslationConfig").TranslationConfig;
201
206
  validator: import(".").JSONSchema;
202
207
  }[] | undefined;
203
208
  required?: boolean | undefined;
209
+ conditionals?: ({
210
+ type: "SHOW";
211
+ conditional: import(".").JSONSchema;
212
+ } | {
213
+ type: "ENABLE";
214
+ conditional: import(".").JSONSchema;
215
+ } | {
216
+ type: "DISPLAY_ON_REVIEW";
217
+ conditional: import(".").JSONSchema;
218
+ })[] | undefined;
219
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
220
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
221
+ hideLabel?: boolean | undefined;
204
222
  defaultValue?: string | undefined;
223
+ configuration?: {
224
+ notice?: import("./TranslationConfig").TranslationConfig | undefined;
225
+ } | undefined;
226
+ } | {
227
+ type: "DATE_RANGE";
228
+ id: string;
229
+ label: import("./TranslationConfig").TranslationConfig;
230
+ parent?: {
231
+ $$field: string;
232
+ } | undefined;
233
+ validation?: {
234
+ message: import("./TranslationConfig").TranslationConfig;
235
+ validator: import(".").JSONSchema;
236
+ }[] | undefined;
237
+ required?: boolean | undefined;
205
238
  conditionals?: ({
206
239
  type: "SHOW";
207
240
  conditional: import(".").JSONSchema;
@@ -213,7 +246,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
213
246
  conditional: import(".").JSONSchema;
214
247
  })[] | undefined;
215
248
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
249
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
216
250
  hideLabel?: boolean | undefined;
251
+ defaultValue?: string | [string, string] | undefined;
217
252
  configuration?: {
218
253
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
219
254
  } | undefined;
@@ -224,17 +259,17 @@ export declare function getDeclarationPages(configuration: EventConfig): {
224
259
  configuration: {
225
260
  styles?: {
226
261
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
262
+ hint?: boolean | undefined;
227
263
  } | undefined;
228
264
  };
229
265
  parent?: {
230
- _fieldId?: string | undefined;
266
+ $$field: string;
231
267
  } | undefined;
232
268
  validation?: {
233
269
  message: import("./TranslationConfig").TranslationConfig;
234
270
  validator: import(".").JSONSchema;
235
271
  }[] | undefined;
236
272
  required?: boolean | undefined;
237
- defaultValue?: string | undefined;
238
273
  conditionals?: ({
239
274
  type: "SHOW";
240
275
  conditional: import(".").JSONSchema;
@@ -246,20 +281,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
246
281
  conditional: import(".").JSONSchema;
247
282
  })[] | undefined;
248
283
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
284
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
249
285
  hideLabel?: boolean | undefined;
286
+ defaultValue?: string | undefined;
250
287
  } | {
251
288
  type: "PAGE_HEADER";
252
289
  id: string;
253
290
  label: import("./TranslationConfig").TranslationConfig;
254
291
  parent?: {
255
- _fieldId?: string | undefined;
292
+ $$field: string;
256
293
  } | undefined;
257
294
  validation?: {
258
295
  message: import("./TranslationConfig").TranslationConfig;
259
296
  validator: import(".").JSONSchema;
260
297
  }[] | undefined;
261
298
  required?: boolean | undefined;
262
- defaultValue?: string | undefined;
263
299
  conditionals?: ({
264
300
  type: "SHOW";
265
301
  conditional: import(".").JSONSchema;
@@ -271,7 +307,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
271
307
  conditional: import(".").JSONSchema;
272
308
  })[] | undefined;
273
309
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
310
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
274
311
  hideLabel?: boolean | undefined;
312
+ defaultValue?: string | undefined;
275
313
  } | {
276
314
  type: "FILE";
277
315
  id: string;
@@ -285,14 +323,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
285
323
  fileName?: import("./TranslationConfig").TranslationConfig | undefined;
286
324
  };
287
325
  parent?: {
288
- _fieldId?: string | undefined;
326
+ $$field: string;
289
327
  } | undefined;
290
328
  validation?: {
291
329
  message: import("./TranslationConfig").TranslationConfig;
292
330
  validator: import(".").JSONSchema;
293
331
  }[] | undefined;
294
332
  required?: boolean | undefined;
295
- defaultValue?: string | number | boolean | undefined;
296
333
  conditionals?: ({
297
334
  type: "SHOW";
298
335
  conditional: import(".").JSONSchema;
@@ -304,7 +341,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
304
341
  conditional: import(".").JSONSchema;
305
342
  })[] | undefined;
306
343
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
344
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
307
345
  hideLabel?: boolean | undefined;
346
+ defaultValue?: {
347
+ type: string;
348
+ filename: string;
349
+ originalFilename: string;
350
+ } | undefined;
308
351
  } | {
309
352
  type: "RADIO_GROUP";
310
353
  id: string;
@@ -314,14 +357,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
314
357
  }[];
315
358
  label: import("./TranslationConfig").TranslationConfig;
316
359
  parent?: {
317
- _fieldId?: string | undefined;
360
+ $$field: string;
318
361
  } | undefined;
319
362
  validation?: {
320
363
  message: import("./TranslationConfig").TranslationConfig;
321
364
  validator: import(".").JSONSchema;
322
365
  }[] | undefined;
323
366
  required?: boolean | undefined;
324
- defaultValue?: string | undefined;
325
367
  conditionals?: ({
326
368
  type: "SHOW";
327
369
  conditional: import(".").JSONSchema;
@@ -333,7 +375,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
333
375
  conditional: import(".").JSONSchema;
334
376
  })[] | undefined;
335
377
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
378
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
336
379
  hideLabel?: boolean | undefined;
380
+ defaultValue?: string | undefined;
337
381
  configuration?: {
338
382
  styles?: {
339
383
  size?: "NORMAL" | "LARGE" | undefined;
@@ -350,14 +394,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
350
394
  };
351
395
  items: import("./TranslationConfig").TranslationConfig[];
352
396
  parent?: {
353
- _fieldId?: string | undefined;
397
+ $$field: string;
354
398
  } | undefined;
355
399
  validation?: {
356
400
  message: import("./TranslationConfig").TranslationConfig;
357
401
  validator: import(".").JSONSchema;
358
402
  }[] | undefined;
359
403
  required?: boolean | undefined;
360
- defaultValue?: string | undefined;
361
404
  conditionals?: ({
362
405
  type: "SHOW";
363
406
  conditional: import(".").JSONSchema;
@@ -369,7 +412,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
369
412
  conditional: import(".").JSONSchema;
370
413
  })[] | undefined;
371
414
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
415
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
372
416
  hideLabel?: boolean | undefined;
417
+ defaultValue?: string | undefined;
373
418
  } | {
374
419
  type: "SELECT";
375
420
  id: string;
@@ -379,14 +424,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
379
424
  }[];
380
425
  label: import("./TranslationConfig").TranslationConfig;
381
426
  parent?: {
382
- _fieldId?: string | undefined;
427
+ $$field: string;
383
428
  } | undefined;
384
429
  validation?: {
385
430
  message: import("./TranslationConfig").TranslationConfig;
386
431
  validator: import(".").JSONSchema;
387
432
  }[] | undefined;
388
433
  required?: boolean | undefined;
389
- defaultValue?: string | undefined;
390
434
  conditionals?: ({
391
435
  type: "SHOW";
392
436
  conditional: import(".").JSONSchema;
@@ -398,20 +442,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
398
442
  conditional: import(".").JSONSchema;
399
443
  })[] | undefined;
400
444
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
445
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
401
446
  hideLabel?: boolean | undefined;
447
+ defaultValue?: string | undefined;
402
448
  } | {
403
449
  type: "CHECKBOX";
404
450
  id: string;
405
451
  label: import("./TranslationConfig").TranslationConfig;
406
452
  parent?: {
407
- _fieldId?: string | undefined;
453
+ $$field: string;
408
454
  } | undefined;
409
455
  validation?: {
410
456
  message: import("./TranslationConfig").TranslationConfig;
411
457
  validator: import(".").JSONSchema;
412
458
  }[] | undefined;
413
459
  required?: boolean | undefined;
414
- defaultValue?: boolean | undefined;
415
460
  conditionals?: ({
416
461
  type: "SHOW";
417
462
  conditional: import(".").JSONSchema;
@@ -423,20 +468,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
423
468
  conditional: import(".").JSONSchema;
424
469
  })[] | undefined;
425
470
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
471
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
426
472
  hideLabel?: boolean | undefined;
473
+ defaultValue?: boolean | undefined;
427
474
  } | {
428
475
  type: "COUNTRY";
429
476
  id: string;
430
477
  label: import("./TranslationConfig").TranslationConfig;
431
478
  parent?: {
432
- _fieldId?: string | undefined;
479
+ $$field: string;
433
480
  } | undefined;
434
481
  validation?: {
435
482
  message: import("./TranslationConfig").TranslationConfig;
436
483
  validator: import(".").JSONSchema;
437
484
  }[] | undefined;
438
485
  required?: boolean | undefined;
439
- defaultValue?: string | undefined;
440
486
  conditionals?: ({
441
487
  type: "SHOW";
442
488
  conditional: import(".").JSONSchema;
@@ -448,7 +494,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
448
494
  conditional: import(".").JSONSchema;
449
495
  })[] | undefined;
450
496
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
497
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
451
498
  hideLabel?: boolean | undefined;
499
+ defaultValue?: string | undefined;
452
500
  } | {
453
501
  type: "ADMINISTRATIVE_AREA";
454
502
  id: string;
@@ -460,14 +508,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
460
508
  } | undefined;
461
509
  };
462
510
  parent?: {
463
- _fieldId?: string | undefined;
511
+ $$field: string;
464
512
  } | undefined;
465
513
  validation?: {
466
514
  message: import("./TranslationConfig").TranslationConfig;
467
515
  validator: import(".").JSONSchema;
468
516
  }[] | undefined;
469
517
  required?: boolean | undefined;
470
- defaultValue?: string | undefined;
471
518
  conditionals?: ({
472
519
  type: "SHOW";
473
520
  conditional: import(".").JSONSchema;
@@ -479,20 +526,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
479
526
  conditional: import(".").JSONSchema;
480
527
  })[] | undefined;
481
528
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
529
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
482
530
  hideLabel?: boolean | undefined;
531
+ defaultValue?: string | undefined;
483
532
  } | {
484
533
  type: "LOCATION";
485
534
  id: string;
486
535
  label: import("./TranslationConfig").TranslationConfig;
487
536
  parent?: {
488
- _fieldId?: string | undefined;
537
+ $$field: string;
489
538
  } | undefined;
490
539
  validation?: {
491
540
  message: import("./TranslationConfig").TranslationConfig;
492
541
  validator: import(".").JSONSchema;
493
542
  }[] | undefined;
494
543
  required?: boolean | undefined;
495
- defaultValue?: string | undefined;
496
544
  conditionals?: ({
497
545
  type: "SHOW";
498
546
  conditional: import(".").JSONSchema;
@@ -504,7 +552,9 @@ export declare function getDeclarationPages(configuration: EventConfig): {
504
552
  conditional: import(".").JSONSchema;
505
553
  })[] | undefined;
506
554
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
555
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
507
556
  hideLabel?: boolean | undefined;
557
+ defaultValue?: string | undefined;
508
558
  } | {
509
559
  type: "FILE_WITH_OPTIONS";
510
560
  id: string;
@@ -518,14 +568,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
518
568
  acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
519
569
  };
520
570
  parent?: {
521
- _fieldId?: string | undefined;
571
+ $$field: string;
522
572
  } | undefined;
523
573
  validation?: {
524
574
  message: import("./TranslationConfig").TranslationConfig;
525
575
  validator: import(".").JSONSchema;
526
576
  }[] | undefined;
527
577
  required?: boolean | undefined;
528
- defaultValue?: string | number | boolean | undefined;
529
578
  conditionals?: ({
530
579
  type: "SHOW";
531
580
  conditional: import(".").JSONSchema;
@@ -537,20 +586,26 @@ export declare function getDeclarationPages(configuration: EventConfig): {
537
586
  conditional: import(".").JSONSchema;
538
587
  })[] | undefined;
539
588
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
589
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
540
590
  hideLabel?: boolean | undefined;
591
+ defaultValue?: {
592
+ type: string;
593
+ option: string;
594
+ filename: string;
595
+ originalFilename: string;
596
+ }[] | undefined;
541
597
  } | {
542
598
  type: "FACILITY";
543
599
  id: string;
544
600
  label: import("./TranslationConfig").TranslationConfig;
545
601
  parent?: {
546
- _fieldId?: string | undefined;
602
+ $$field: string;
547
603
  } | undefined;
548
604
  validation?: {
549
605
  message: import("./TranslationConfig").TranslationConfig;
550
606
  validator: import(".").JSONSchema;
551
607
  }[] | undefined;
552
608
  required?: boolean | undefined;
553
- defaultValue?: string | undefined;
554
609
  conditionals?: ({
555
610
  type: "SHOW";
556
611
  conditional: import(".").JSONSchema;
@@ -562,20 +617,21 @@ export declare function getDeclarationPages(configuration: EventConfig): {
562
617
  conditional: import(".").JSONSchema;
563
618
  })[] | undefined;
564
619
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
620
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
565
621
  hideLabel?: boolean | undefined;
622
+ defaultValue?: string | undefined;
566
623
  } | {
567
624
  type: "OFFICE";
568
625
  id: string;
569
626
  label: import("./TranslationConfig").TranslationConfig;
570
627
  parent?: {
571
- _fieldId?: string | undefined;
628
+ $$field: string;
572
629
  } | undefined;
573
630
  validation?: {
574
631
  message: import("./TranslationConfig").TranslationConfig;
575
632
  validator: import(".").JSONSchema;
576
633
  }[] | undefined;
577
634
  required?: boolean | undefined;
578
- defaultValue?: string | undefined;
579
635
  conditionals?: ({
580
636
  type: "SHOW";
581
637
  conditional: import(".").JSONSchema;
@@ -587,19 +643,34 @@ export declare function getDeclarationPages(configuration: EventConfig): {
587
643
  conditional: import(".").JSONSchema;
588
644
  })[] | undefined;
589
645
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
646
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
590
647
  hideLabel?: boolean | undefined;
648
+ defaultValue?: string | undefined;
591
649
  } | {
592
650
  type: "ADDRESS";
593
651
  id: string;
594
652
  label: import("./TranslationConfig").TranslationConfig;
595
653
  parent?: {
596
- _fieldId?: string | undefined;
654
+ $$field: string;
597
655
  } | undefined;
598
656
  validation?: {
599
657
  message: import("./TranslationConfig").TranslationConfig;
600
658
  validator: import(".").JSONSchema;
601
659
  }[] | undefined;
602
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;
603
674
  defaultValue?: {
604
675
  country: string;
605
676
  district: string;
@@ -629,18 +700,6 @@ export declare function getDeclarationPages(configuration: EventConfig): {
629
700
  addressLine3?: string | undefined;
630
701
  postcodeOrZip?: string | undefined;
631
702
  } | undefined;
632
- conditionals?: ({
633
- type: "SHOW";
634
- conditional: import(".").JSONSchema;
635
- } | {
636
- type: "ENABLE";
637
- conditional: import(".").JSONSchema;
638
- } | {
639
- type: "DISPLAY_ON_REVIEW";
640
- conditional: import(".").JSONSchema;
641
- })[] | undefined;
642
- placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
643
- hideLabel?: boolean | undefined;
644
703
  } | {
645
704
  type: "DATA";
646
705
  id: string;
@@ -655,14 +714,13 @@ export declare function getDeclarationPages(configuration: EventConfig): {
655
714
  subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
656
715
  };
657
716
  parent?: {
658
- _fieldId?: string | undefined;
717
+ $$field: string;
659
718
  } | undefined;
660
719
  validation?: {
661
720
  message: import("./TranslationConfig").TranslationConfig;
662
721
  validator: import(".").JSONSchema;
663
722
  }[] | undefined;
664
723
  required?: boolean | undefined;
665
- defaultValue?: string | number | boolean | undefined;
666
724
  conditionals?: ({
667
725
  type: "SHOW";
668
726
  conditional: import(".").JSONSchema;
@@ -674,6 +732,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
674
732
  conditional: import(".").JSONSchema;
675
733
  })[] | undefined;
676
734
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
735
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
677
736
  hideLabel?: boolean | undefined;
678
737
  })[];
679
738
  conditional?: import(".").JSONSchema | undefined;
@@ -689,14 +748,13 @@ export declare function getDeclaration(configuration: EventConfig): {
689
748
  id: string;
690
749
  label: import("./TranslationConfig").TranslationConfig;
691
750
  parent?: {
692
- _fieldId?: string | undefined;
751
+ $$field: string;
693
752
  } | undefined;
694
753
  validation?: {
695
754
  message: import("./TranslationConfig").TranslationConfig;
696
755
  validator: import(".").JSONSchema;
697
756
  }[] | undefined;
698
757
  required?: boolean | undefined;
699
- defaultValue?: string | number | boolean | undefined;
700
758
  conditionals?: ({
701
759
  type: "SHOW";
702
760
  conditional: import(".").JSONSchema;
@@ -708,20 +766,20 @@ export declare function getDeclaration(configuration: EventConfig): {
708
766
  conditional: import(".").JSONSchema;
709
767
  })[] | undefined;
710
768
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
769
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
711
770
  hideLabel?: boolean | undefined;
712
771
  } | {
713
772
  type: "TEXT";
714
773
  id: string;
715
774
  label: import("./TranslationConfig").TranslationConfig;
716
775
  parent?: {
717
- _fieldId?: string | undefined;
776
+ $$field: string;
718
777
  } | undefined;
719
778
  validation?: {
720
779
  message: import("./TranslationConfig").TranslationConfig;
721
780
  validator: import(".").JSONSchema;
722
781
  }[] | undefined;
723
782
  required?: boolean | undefined;
724
- defaultValue?: string | undefined;
725
783
  conditionals?: ({
726
784
  type: "SHOW";
727
785
  conditional: import(".").JSONSchema;
@@ -733,7 +791,9 @@ export declare function getDeclaration(configuration: EventConfig): {
733
791
  conditional: import(".").JSONSchema;
734
792
  })[] | undefined;
735
793
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
794
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
736
795
  hideLabel?: boolean | undefined;
796
+ defaultValue?: string | undefined;
737
797
  configuration?: {
738
798
  type?: "text" | "password" | undefined;
739
799
  maxLength?: number | undefined;
@@ -745,14 +805,13 @@ export declare function getDeclaration(configuration: EventConfig): {
745
805
  id: string;
746
806
  label: import("./TranslationConfig").TranslationConfig;
747
807
  parent?: {
748
- _fieldId?: string | undefined;
808
+ $$field: string;
749
809
  } | undefined;
750
810
  validation?: {
751
811
  message: import("./TranslationConfig").TranslationConfig;
752
812
  validator: import(".").JSONSchema;
753
813
  }[] | undefined;
754
814
  required?: boolean | undefined;
755
- defaultValue?: number | undefined;
756
815
  conditionals?: ({
757
816
  type: "SHOW";
758
817
  conditional: import(".").JSONSchema;
@@ -764,7 +823,9 @@ export declare function getDeclaration(configuration: EventConfig): {
764
823
  conditional: import(".").JSONSchema;
765
824
  })[] | undefined;
766
825
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
826
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
767
827
  hideLabel?: boolean | undefined;
828
+ defaultValue?: number | undefined;
768
829
  configuration?: {
769
830
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
770
831
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -776,14 +837,13 @@ export declare function getDeclaration(configuration: EventConfig): {
776
837
  id: string;
777
838
  label: import("./TranslationConfig").TranslationConfig;
778
839
  parent?: {
779
- _fieldId?: string | undefined;
840
+ $$field: string;
780
841
  } | undefined;
781
842
  validation?: {
782
843
  message: import("./TranslationConfig").TranslationConfig;
783
844
  validator: import(".").JSONSchema;
784
845
  }[] | undefined;
785
846
  required?: boolean | undefined;
786
- defaultValue?: string | undefined;
787
847
  conditionals?: ({
788
848
  type: "SHOW";
789
849
  conditional: import(".").JSONSchema;
@@ -795,7 +855,9 @@ export declare function getDeclaration(configuration: EventConfig): {
795
855
  conditional: import(".").JSONSchema;
796
856
  })[] | undefined;
797
857
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
858
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
798
859
  hideLabel?: boolean | undefined;
860
+ defaultValue?: string | undefined;
799
861
  configuration?: {
800
862
  maxLength?: number | undefined;
801
863
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -813,14 +875,13 @@ export declare function getDeclaration(configuration: EventConfig): {
813
875
  };
814
876
  signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
815
877
  parent?: {
816
- _fieldId?: string | undefined;
878
+ $$field: string;
817
879
  } | undefined;
818
880
  validation?: {
819
881
  message: import("./TranslationConfig").TranslationConfig;
820
882
  validator: import(".").JSONSchema;
821
883
  }[] | undefined;
822
884
  required?: boolean | undefined;
823
- defaultValue?: string | number | boolean | undefined;
824
885
  conditionals?: ({
825
886
  type: "SHOW";
826
887
  conditional: import(".").JSONSchema;
@@ -832,20 +893,21 @@ export declare function getDeclaration(configuration: EventConfig): {
832
893
  conditional: import(".").JSONSchema;
833
894
  })[] | undefined;
834
895
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
896
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
835
897
  hideLabel?: boolean | undefined;
898
+ defaultValue?: string | undefined;
836
899
  } | {
837
900
  type: "EMAIL";
838
901
  id: string;
839
902
  label: import("./TranslationConfig").TranslationConfig;
840
903
  parent?: {
841
- _fieldId?: string | undefined;
904
+ $$field: string;
842
905
  } | undefined;
843
906
  validation?: {
844
907
  message: import("./TranslationConfig").TranslationConfig;
845
908
  validator: import(".").JSONSchema;
846
909
  }[] | undefined;
847
910
  required?: boolean | undefined;
848
- defaultValue?: string | undefined;
849
911
  conditionals?: ({
850
912
  type: "SHOW";
851
913
  conditional: import(".").JSONSchema;
@@ -857,7 +919,9 @@ export declare function getDeclaration(configuration: EventConfig): {
857
919
  conditional: import(".").JSONSchema;
858
920
  })[] | undefined;
859
921
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
922
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
860
923
  hideLabel?: boolean | undefined;
924
+ defaultValue?: string | undefined;
861
925
  configuration?: {
862
926
  maxLength?: number | undefined;
863
927
  } | undefined;
@@ -866,14 +930,42 @@ export declare function getDeclaration(configuration: EventConfig): {
866
930
  id: string;
867
931
  label: import("./TranslationConfig").TranslationConfig;
868
932
  parent?: {
869
- _fieldId?: string | undefined;
933
+ $$field: string;
870
934
  } | undefined;
871
935
  validation?: {
872
936
  message: import("./TranslationConfig").TranslationConfig;
873
937
  validator: import(".").JSONSchema;
874
938
  }[] | undefined;
875
939
  required?: boolean | undefined;
940
+ conditionals?: ({
941
+ type: "SHOW";
942
+ conditional: import(".").JSONSchema;
943
+ } | {
944
+ type: "ENABLE";
945
+ conditional: import(".").JSONSchema;
946
+ } | {
947
+ type: "DISPLAY_ON_REVIEW";
948
+ conditional: import(".").JSONSchema;
949
+ })[] | undefined;
950
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
951
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
952
+ hideLabel?: boolean | undefined;
876
953
  defaultValue?: string | undefined;
954
+ configuration?: {
955
+ notice?: import("./TranslationConfig").TranslationConfig | undefined;
956
+ } | undefined;
957
+ } | {
958
+ type: "DATE_RANGE";
959
+ id: string;
960
+ label: import("./TranslationConfig").TranslationConfig;
961
+ parent?: {
962
+ $$field: string;
963
+ } | undefined;
964
+ validation?: {
965
+ message: import("./TranslationConfig").TranslationConfig;
966
+ validator: import(".").JSONSchema;
967
+ }[] | undefined;
968
+ required?: boolean | undefined;
877
969
  conditionals?: ({
878
970
  type: "SHOW";
879
971
  conditional: import(".").JSONSchema;
@@ -885,7 +977,9 @@ export declare function getDeclaration(configuration: EventConfig): {
885
977
  conditional: import(".").JSONSchema;
886
978
  })[] | undefined;
887
979
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
980
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
888
981
  hideLabel?: boolean | undefined;
982
+ defaultValue?: string | [string, string] | undefined;
889
983
  configuration?: {
890
984
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
891
985
  } | undefined;
@@ -896,17 +990,17 @@ export declare function getDeclaration(configuration: EventConfig): {
896
990
  configuration: {
897
991
  styles?: {
898
992
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
993
+ hint?: boolean | undefined;
899
994
  } | undefined;
900
995
  };
901
996
  parent?: {
902
- _fieldId?: string | undefined;
997
+ $$field: string;
903
998
  } | undefined;
904
999
  validation?: {
905
1000
  message: import("./TranslationConfig").TranslationConfig;
906
1001
  validator: import(".").JSONSchema;
907
1002
  }[] | undefined;
908
1003
  required?: boolean | undefined;
909
- defaultValue?: string | undefined;
910
1004
  conditionals?: ({
911
1005
  type: "SHOW";
912
1006
  conditional: import(".").JSONSchema;
@@ -918,20 +1012,21 @@ export declare function getDeclaration(configuration: EventConfig): {
918
1012
  conditional: import(".").JSONSchema;
919
1013
  })[] | undefined;
920
1014
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1015
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
921
1016
  hideLabel?: boolean | undefined;
1017
+ defaultValue?: string | undefined;
922
1018
  } | {
923
1019
  type: "PAGE_HEADER";
924
1020
  id: string;
925
1021
  label: import("./TranslationConfig").TranslationConfig;
926
1022
  parent?: {
927
- _fieldId?: string | undefined;
1023
+ $$field: string;
928
1024
  } | undefined;
929
1025
  validation?: {
930
1026
  message: import("./TranslationConfig").TranslationConfig;
931
1027
  validator: import(".").JSONSchema;
932
1028
  }[] | undefined;
933
1029
  required?: boolean | undefined;
934
- defaultValue?: string | undefined;
935
1030
  conditionals?: ({
936
1031
  type: "SHOW";
937
1032
  conditional: import(".").JSONSchema;
@@ -943,7 +1038,9 @@ export declare function getDeclaration(configuration: EventConfig): {
943
1038
  conditional: import(".").JSONSchema;
944
1039
  })[] | undefined;
945
1040
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1041
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
946
1042
  hideLabel?: boolean | undefined;
1043
+ defaultValue?: string | undefined;
947
1044
  } | {
948
1045
  type: "FILE";
949
1046
  id: string;
@@ -957,14 +1054,13 @@ export declare function getDeclaration(configuration: EventConfig): {
957
1054
  fileName?: import("./TranslationConfig").TranslationConfig | undefined;
958
1055
  };
959
1056
  parent?: {
960
- _fieldId?: string | undefined;
1057
+ $$field: string;
961
1058
  } | undefined;
962
1059
  validation?: {
963
1060
  message: import("./TranslationConfig").TranslationConfig;
964
1061
  validator: import(".").JSONSchema;
965
1062
  }[] | undefined;
966
1063
  required?: boolean | undefined;
967
- defaultValue?: string | number | boolean | undefined;
968
1064
  conditionals?: ({
969
1065
  type: "SHOW";
970
1066
  conditional: import(".").JSONSchema;
@@ -976,7 +1072,13 @@ export declare function getDeclaration(configuration: EventConfig): {
976
1072
  conditional: import(".").JSONSchema;
977
1073
  })[] | undefined;
978
1074
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1075
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
979
1076
  hideLabel?: boolean | undefined;
1077
+ defaultValue?: {
1078
+ type: string;
1079
+ filename: string;
1080
+ originalFilename: string;
1081
+ } | undefined;
980
1082
  } | {
981
1083
  type: "RADIO_GROUP";
982
1084
  id: string;
@@ -986,14 +1088,13 @@ export declare function getDeclaration(configuration: EventConfig): {
986
1088
  }[];
987
1089
  label: import("./TranslationConfig").TranslationConfig;
988
1090
  parent?: {
989
- _fieldId?: string | undefined;
1091
+ $$field: string;
990
1092
  } | undefined;
991
1093
  validation?: {
992
1094
  message: import("./TranslationConfig").TranslationConfig;
993
1095
  validator: import(".").JSONSchema;
994
1096
  }[] | undefined;
995
1097
  required?: boolean | undefined;
996
- defaultValue?: string | undefined;
997
1098
  conditionals?: ({
998
1099
  type: "SHOW";
999
1100
  conditional: import(".").JSONSchema;
@@ -1005,7 +1106,9 @@ export declare function getDeclaration(configuration: EventConfig): {
1005
1106
  conditional: import(".").JSONSchema;
1006
1107
  })[] | undefined;
1007
1108
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1109
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1008
1110
  hideLabel?: boolean | undefined;
1111
+ defaultValue?: string | undefined;
1009
1112
  configuration?: {
1010
1113
  styles?: {
1011
1114
  size?: "NORMAL" | "LARGE" | undefined;
@@ -1022,14 +1125,13 @@ export declare function getDeclaration(configuration: EventConfig): {
1022
1125
  };
1023
1126
  items: import("./TranslationConfig").TranslationConfig[];
1024
1127
  parent?: {
1025
- _fieldId?: string | undefined;
1128
+ $$field: string;
1026
1129
  } | undefined;
1027
1130
  validation?: {
1028
1131
  message: import("./TranslationConfig").TranslationConfig;
1029
1132
  validator: import(".").JSONSchema;
1030
1133
  }[] | undefined;
1031
1134
  required?: boolean | undefined;
1032
- defaultValue?: string | undefined;
1033
1135
  conditionals?: ({
1034
1136
  type: "SHOW";
1035
1137
  conditional: import(".").JSONSchema;
@@ -1041,7 +1143,9 @@ export declare function getDeclaration(configuration: EventConfig): {
1041
1143
  conditional: import(".").JSONSchema;
1042
1144
  })[] | undefined;
1043
1145
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1146
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1044
1147
  hideLabel?: boolean | undefined;
1148
+ defaultValue?: string | undefined;
1045
1149
  } | {
1046
1150
  type: "SELECT";
1047
1151
  id: string;
@@ -1051,14 +1155,13 @@ export declare function getDeclaration(configuration: EventConfig): {
1051
1155
  }[];
1052
1156
  label: import("./TranslationConfig").TranslationConfig;
1053
1157
  parent?: {
1054
- _fieldId?: string | undefined;
1158
+ $$field: string;
1055
1159
  } | undefined;
1056
1160
  validation?: {
1057
1161
  message: import("./TranslationConfig").TranslationConfig;
1058
1162
  validator: import(".").JSONSchema;
1059
1163
  }[] | undefined;
1060
1164
  required?: boolean | undefined;
1061
- defaultValue?: string | undefined;
1062
1165
  conditionals?: ({
1063
1166
  type: "SHOW";
1064
1167
  conditional: import(".").JSONSchema;
@@ -1070,20 +1173,21 @@ export declare function getDeclaration(configuration: EventConfig): {
1070
1173
  conditional: import(".").JSONSchema;
1071
1174
  })[] | undefined;
1072
1175
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1176
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1073
1177
  hideLabel?: boolean | undefined;
1178
+ defaultValue?: string | undefined;
1074
1179
  } | {
1075
1180
  type: "CHECKBOX";
1076
1181
  id: string;
1077
1182
  label: import("./TranslationConfig").TranslationConfig;
1078
1183
  parent?: {
1079
- _fieldId?: string | undefined;
1184
+ $$field: string;
1080
1185
  } | undefined;
1081
1186
  validation?: {
1082
1187
  message: import("./TranslationConfig").TranslationConfig;
1083
1188
  validator: import(".").JSONSchema;
1084
1189
  }[] | undefined;
1085
1190
  required?: boolean | undefined;
1086
- defaultValue?: boolean | undefined;
1087
1191
  conditionals?: ({
1088
1192
  type: "SHOW";
1089
1193
  conditional: import(".").JSONSchema;
@@ -1095,20 +1199,21 @@ export declare function getDeclaration(configuration: EventConfig): {
1095
1199
  conditional: import(".").JSONSchema;
1096
1200
  })[] | undefined;
1097
1201
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1202
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1098
1203
  hideLabel?: boolean | undefined;
1204
+ defaultValue?: boolean | undefined;
1099
1205
  } | {
1100
1206
  type: "COUNTRY";
1101
1207
  id: string;
1102
1208
  label: import("./TranslationConfig").TranslationConfig;
1103
1209
  parent?: {
1104
- _fieldId?: string | undefined;
1210
+ $$field: string;
1105
1211
  } | undefined;
1106
1212
  validation?: {
1107
1213
  message: import("./TranslationConfig").TranslationConfig;
1108
1214
  validator: import(".").JSONSchema;
1109
1215
  }[] | undefined;
1110
1216
  required?: boolean | undefined;
1111
- defaultValue?: string | undefined;
1112
1217
  conditionals?: ({
1113
1218
  type: "SHOW";
1114
1219
  conditional: import(".").JSONSchema;
@@ -1120,7 +1225,9 @@ export declare function getDeclaration(configuration: EventConfig): {
1120
1225
  conditional: import(".").JSONSchema;
1121
1226
  })[] | undefined;
1122
1227
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1228
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1123
1229
  hideLabel?: boolean | undefined;
1230
+ defaultValue?: string | undefined;
1124
1231
  } | {
1125
1232
  type: "ADMINISTRATIVE_AREA";
1126
1233
  id: string;
@@ -1132,14 +1239,13 @@ export declare function getDeclaration(configuration: EventConfig): {
1132
1239
  } | undefined;
1133
1240
  };
1134
1241
  parent?: {
1135
- _fieldId?: string | undefined;
1242
+ $$field: string;
1136
1243
  } | undefined;
1137
1244
  validation?: {
1138
1245
  message: import("./TranslationConfig").TranslationConfig;
1139
1246
  validator: import(".").JSONSchema;
1140
1247
  }[] | undefined;
1141
1248
  required?: boolean | undefined;
1142
- defaultValue?: string | undefined;
1143
1249
  conditionals?: ({
1144
1250
  type: "SHOW";
1145
1251
  conditional: import(".").JSONSchema;
@@ -1151,20 +1257,21 @@ export declare function getDeclaration(configuration: EventConfig): {
1151
1257
  conditional: import(".").JSONSchema;
1152
1258
  })[] | undefined;
1153
1259
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1260
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1154
1261
  hideLabel?: boolean | undefined;
1262
+ defaultValue?: string | undefined;
1155
1263
  } | {
1156
1264
  type: "LOCATION";
1157
1265
  id: string;
1158
1266
  label: import("./TranslationConfig").TranslationConfig;
1159
1267
  parent?: {
1160
- _fieldId?: string | undefined;
1268
+ $$field: string;
1161
1269
  } | undefined;
1162
1270
  validation?: {
1163
1271
  message: import("./TranslationConfig").TranslationConfig;
1164
1272
  validator: import(".").JSONSchema;
1165
1273
  }[] | undefined;
1166
1274
  required?: boolean | undefined;
1167
- defaultValue?: string | undefined;
1168
1275
  conditionals?: ({
1169
1276
  type: "SHOW";
1170
1277
  conditional: import(".").JSONSchema;
@@ -1176,7 +1283,9 @@ export declare function getDeclaration(configuration: EventConfig): {
1176
1283
  conditional: import(".").JSONSchema;
1177
1284
  })[] | undefined;
1178
1285
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1286
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1179
1287
  hideLabel?: boolean | undefined;
1288
+ defaultValue?: string | undefined;
1180
1289
  } | {
1181
1290
  type: "FILE_WITH_OPTIONS";
1182
1291
  id: string;
@@ -1190,14 +1299,13 @@ export declare function getDeclaration(configuration: EventConfig): {
1190
1299
  acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
1191
1300
  };
1192
1301
  parent?: {
1193
- _fieldId?: string | undefined;
1302
+ $$field: string;
1194
1303
  } | undefined;
1195
1304
  validation?: {
1196
1305
  message: import("./TranslationConfig").TranslationConfig;
1197
1306
  validator: import(".").JSONSchema;
1198
1307
  }[] | undefined;
1199
1308
  required?: boolean | undefined;
1200
- defaultValue?: string | number | boolean | undefined;
1201
1309
  conditionals?: ({
1202
1310
  type: "SHOW";
1203
1311
  conditional: import(".").JSONSchema;
@@ -1209,20 +1317,26 @@ export declare function getDeclaration(configuration: EventConfig): {
1209
1317
  conditional: import(".").JSONSchema;
1210
1318
  })[] | undefined;
1211
1319
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1320
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1212
1321
  hideLabel?: boolean | undefined;
1322
+ defaultValue?: {
1323
+ type: string;
1324
+ option: string;
1325
+ filename: string;
1326
+ originalFilename: string;
1327
+ }[] | undefined;
1213
1328
  } | {
1214
1329
  type: "FACILITY";
1215
1330
  id: string;
1216
1331
  label: import("./TranslationConfig").TranslationConfig;
1217
1332
  parent?: {
1218
- _fieldId?: string | undefined;
1333
+ $$field: string;
1219
1334
  } | undefined;
1220
1335
  validation?: {
1221
1336
  message: import("./TranslationConfig").TranslationConfig;
1222
1337
  validator: import(".").JSONSchema;
1223
1338
  }[] | undefined;
1224
1339
  required?: boolean | undefined;
1225
- defaultValue?: string | undefined;
1226
1340
  conditionals?: ({
1227
1341
  type: "SHOW";
1228
1342
  conditional: import(".").JSONSchema;
@@ -1234,20 +1348,21 @@ export declare function getDeclaration(configuration: EventConfig): {
1234
1348
  conditional: import(".").JSONSchema;
1235
1349
  })[] | undefined;
1236
1350
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1351
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1237
1352
  hideLabel?: boolean | undefined;
1353
+ defaultValue?: string | undefined;
1238
1354
  } | {
1239
1355
  type: "OFFICE";
1240
1356
  id: string;
1241
1357
  label: import("./TranslationConfig").TranslationConfig;
1242
1358
  parent?: {
1243
- _fieldId?: string | undefined;
1359
+ $$field: string;
1244
1360
  } | undefined;
1245
1361
  validation?: {
1246
1362
  message: import("./TranslationConfig").TranslationConfig;
1247
1363
  validator: import(".").JSONSchema;
1248
1364
  }[] | undefined;
1249
1365
  required?: boolean | undefined;
1250
- defaultValue?: string | undefined;
1251
1366
  conditionals?: ({
1252
1367
  type: "SHOW";
1253
1368
  conditional: import(".").JSONSchema;
@@ -1259,19 +1374,34 @@ export declare function getDeclaration(configuration: EventConfig): {
1259
1374
  conditional: import(".").JSONSchema;
1260
1375
  })[] | undefined;
1261
1376
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1377
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1262
1378
  hideLabel?: boolean | undefined;
1379
+ defaultValue?: string | undefined;
1263
1380
  } | {
1264
1381
  type: "ADDRESS";
1265
1382
  id: string;
1266
1383
  label: import("./TranslationConfig").TranslationConfig;
1267
1384
  parent?: {
1268
- _fieldId?: string | undefined;
1385
+ $$field: string;
1269
1386
  } | undefined;
1270
1387
  validation?: {
1271
1388
  message: import("./TranslationConfig").TranslationConfig;
1272
1389
  validator: import(".").JSONSchema;
1273
1390
  }[] | undefined;
1274
1391
  required?: boolean | undefined;
1392
+ conditionals?: ({
1393
+ type: "SHOW";
1394
+ conditional: import(".").JSONSchema;
1395
+ } | {
1396
+ type: "ENABLE";
1397
+ conditional: import(".").JSONSchema;
1398
+ } | {
1399
+ type: "DISPLAY_ON_REVIEW";
1400
+ conditional: import(".").JSONSchema;
1401
+ })[] | undefined;
1402
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1403
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1404
+ hideLabel?: boolean | undefined;
1275
1405
  defaultValue?: {
1276
1406
  country: string;
1277
1407
  district: string;
@@ -1301,18 +1431,6 @@ export declare function getDeclaration(configuration: EventConfig): {
1301
1431
  addressLine3?: string | undefined;
1302
1432
  postcodeOrZip?: string | undefined;
1303
1433
  } | undefined;
1304
- conditionals?: ({
1305
- type: "SHOW";
1306
- conditional: import(".").JSONSchema;
1307
- } | {
1308
- type: "ENABLE";
1309
- conditional: import(".").JSONSchema;
1310
- } | {
1311
- type: "DISPLAY_ON_REVIEW";
1312
- conditional: import(".").JSONSchema;
1313
- })[] | undefined;
1314
- placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1315
- hideLabel?: boolean | undefined;
1316
1434
  } | {
1317
1435
  type: "DATA";
1318
1436
  id: string;
@@ -1327,14 +1445,13 @@ export declare function getDeclaration(configuration: EventConfig): {
1327
1445
  subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
1328
1446
  };
1329
1447
  parent?: {
1330
- _fieldId?: string | undefined;
1448
+ $$field: string;
1331
1449
  } | undefined;
1332
1450
  validation?: {
1333
1451
  message: import("./TranslationConfig").TranslationConfig;
1334
1452
  validator: import(".").JSONSchema;
1335
1453
  }[] | undefined;
1336
1454
  required?: boolean | undefined;
1337
- defaultValue?: string | number | boolean | undefined;
1338
1455
  conditionals?: ({
1339
1456
  type: "SHOW";
1340
1457
  conditional: import(".").JSONSchema;
@@ -1346,6 +1463,7 @@ export declare function getDeclaration(configuration: EventConfig): {
1346
1463
  conditional: import(".").JSONSchema;
1347
1464
  })[] | undefined;
1348
1465
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1466
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1349
1467
  hideLabel?: boolean | undefined;
1350
1468
  })[];
1351
1469
  conditional?: import(".").JSONSchema | undefined;
@@ -1356,14 +1474,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1356
1474
  id: string;
1357
1475
  label: import("./TranslationConfig").TranslationConfig;
1358
1476
  parent?: {
1359
- _fieldId?: string | undefined;
1477
+ $$field: string;
1360
1478
  } | undefined;
1361
1479
  validation?: {
1362
1480
  message: import("./TranslationConfig").TranslationConfig;
1363
1481
  validator: import(".").JSONSchema;
1364
1482
  }[] | undefined;
1365
1483
  required?: boolean | undefined;
1366
- defaultValue?: string | number | boolean | undefined;
1367
1484
  conditionals?: ({
1368
1485
  type: "SHOW";
1369
1486
  conditional: import(".").JSONSchema;
@@ -1375,20 +1492,20 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1375
1492
  conditional: import(".").JSONSchema;
1376
1493
  })[] | undefined;
1377
1494
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1495
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1378
1496
  hideLabel?: boolean | undefined;
1379
1497
  } | {
1380
1498
  type: "TEXT";
1381
1499
  id: string;
1382
1500
  label: import("./TranslationConfig").TranslationConfig;
1383
1501
  parent?: {
1384
- _fieldId?: string | undefined;
1502
+ $$field: string;
1385
1503
  } | undefined;
1386
1504
  validation?: {
1387
1505
  message: import("./TranslationConfig").TranslationConfig;
1388
1506
  validator: import(".").JSONSchema;
1389
1507
  }[] | undefined;
1390
1508
  required?: boolean | undefined;
1391
- defaultValue?: string | undefined;
1392
1509
  conditionals?: ({
1393
1510
  type: "SHOW";
1394
1511
  conditional: import(".").JSONSchema;
@@ -1400,7 +1517,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1400
1517
  conditional: import(".").JSONSchema;
1401
1518
  })[] | undefined;
1402
1519
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1520
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1403
1521
  hideLabel?: boolean | undefined;
1522
+ defaultValue?: string | undefined;
1404
1523
  configuration?: {
1405
1524
  type?: "text" | "password" | undefined;
1406
1525
  maxLength?: number | undefined;
@@ -1412,14 +1531,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1412
1531
  id: string;
1413
1532
  label: import("./TranslationConfig").TranslationConfig;
1414
1533
  parent?: {
1415
- _fieldId?: string | undefined;
1534
+ $$field: string;
1416
1535
  } | undefined;
1417
1536
  validation?: {
1418
1537
  message: import("./TranslationConfig").TranslationConfig;
1419
1538
  validator: import(".").JSONSchema;
1420
1539
  }[] | undefined;
1421
1540
  required?: boolean | undefined;
1422
- defaultValue?: number | undefined;
1423
1541
  conditionals?: ({
1424
1542
  type: "SHOW";
1425
1543
  conditional: import(".").JSONSchema;
@@ -1431,7 +1549,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1431
1549
  conditional: import(".").JSONSchema;
1432
1550
  })[] | undefined;
1433
1551
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1552
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1434
1553
  hideLabel?: boolean | undefined;
1554
+ defaultValue?: number | undefined;
1435
1555
  configuration?: {
1436
1556
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
1437
1557
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -1443,14 +1563,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1443
1563
  id: string;
1444
1564
  label: import("./TranslationConfig").TranslationConfig;
1445
1565
  parent?: {
1446
- _fieldId?: string | undefined;
1566
+ $$field: string;
1447
1567
  } | undefined;
1448
1568
  validation?: {
1449
1569
  message: import("./TranslationConfig").TranslationConfig;
1450
1570
  validator: import(".").JSONSchema;
1451
1571
  }[] | undefined;
1452
1572
  required?: boolean | undefined;
1453
- defaultValue?: string | undefined;
1454
1573
  conditionals?: ({
1455
1574
  type: "SHOW";
1456
1575
  conditional: import(".").JSONSchema;
@@ -1462,7 +1581,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1462
1581
  conditional: import(".").JSONSchema;
1463
1582
  })[] | undefined;
1464
1583
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1584
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1465
1585
  hideLabel?: boolean | undefined;
1586
+ defaultValue?: string | undefined;
1466
1587
  configuration?: {
1467
1588
  maxLength?: number | undefined;
1468
1589
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -1480,14 +1601,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1480
1601
  };
1481
1602
  signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
1482
1603
  parent?: {
1483
- _fieldId?: string | undefined;
1604
+ $$field: string;
1484
1605
  } | undefined;
1485
1606
  validation?: {
1486
1607
  message: import("./TranslationConfig").TranslationConfig;
1487
1608
  validator: import(".").JSONSchema;
1488
1609
  }[] | undefined;
1489
1610
  required?: boolean | undefined;
1490
- defaultValue?: string | number | boolean | undefined;
1491
1611
  conditionals?: ({
1492
1612
  type: "SHOW";
1493
1613
  conditional: import(".").JSONSchema;
@@ -1499,20 +1619,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1499
1619
  conditional: import(".").JSONSchema;
1500
1620
  })[] | undefined;
1501
1621
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1622
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1502
1623
  hideLabel?: boolean | undefined;
1624
+ defaultValue?: string | undefined;
1503
1625
  } | {
1504
1626
  type: "EMAIL";
1505
1627
  id: string;
1506
1628
  label: import("./TranslationConfig").TranslationConfig;
1507
1629
  parent?: {
1508
- _fieldId?: string | undefined;
1630
+ $$field: string;
1509
1631
  } | undefined;
1510
1632
  validation?: {
1511
1633
  message: import("./TranslationConfig").TranslationConfig;
1512
1634
  validator: import(".").JSONSchema;
1513
1635
  }[] | undefined;
1514
1636
  required?: boolean | undefined;
1515
- defaultValue?: string | undefined;
1516
1637
  conditionals?: ({
1517
1638
  type: "SHOW";
1518
1639
  conditional: import(".").JSONSchema;
@@ -1524,7 +1645,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1524
1645
  conditional: import(".").JSONSchema;
1525
1646
  })[] | undefined;
1526
1647
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1648
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1527
1649
  hideLabel?: boolean | undefined;
1650
+ defaultValue?: string | undefined;
1528
1651
  configuration?: {
1529
1652
  maxLength?: number | undefined;
1530
1653
  } | undefined;
@@ -1533,14 +1656,42 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1533
1656
  id: string;
1534
1657
  label: import("./TranslationConfig").TranslationConfig;
1535
1658
  parent?: {
1536
- _fieldId?: string | undefined;
1659
+ $$field: string;
1537
1660
  } | undefined;
1538
1661
  validation?: {
1539
1662
  message: import("./TranslationConfig").TranslationConfig;
1540
1663
  validator: import(".").JSONSchema;
1541
1664
  }[] | undefined;
1542
1665
  required?: boolean | undefined;
1666
+ conditionals?: ({
1667
+ type: "SHOW";
1668
+ conditional: import(".").JSONSchema;
1669
+ } | {
1670
+ type: "ENABLE";
1671
+ conditional: import(".").JSONSchema;
1672
+ } | {
1673
+ type: "DISPLAY_ON_REVIEW";
1674
+ conditional: import(".").JSONSchema;
1675
+ })[] | undefined;
1676
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1677
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1678
+ hideLabel?: boolean | undefined;
1543
1679
  defaultValue?: string | undefined;
1680
+ configuration?: {
1681
+ notice?: import("./TranslationConfig").TranslationConfig | undefined;
1682
+ } | undefined;
1683
+ } | {
1684
+ type: "DATE_RANGE";
1685
+ id: string;
1686
+ label: import("./TranslationConfig").TranslationConfig;
1687
+ parent?: {
1688
+ $$field: string;
1689
+ } | undefined;
1690
+ validation?: {
1691
+ message: import("./TranslationConfig").TranslationConfig;
1692
+ validator: import(".").JSONSchema;
1693
+ }[] | undefined;
1694
+ required?: boolean | undefined;
1544
1695
  conditionals?: ({
1545
1696
  type: "SHOW";
1546
1697
  conditional: import(".").JSONSchema;
@@ -1552,7 +1703,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1552
1703
  conditional: import(".").JSONSchema;
1553
1704
  })[] | undefined;
1554
1705
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1706
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1555
1707
  hideLabel?: boolean | undefined;
1708
+ defaultValue?: string | [string, string] | undefined;
1556
1709
  configuration?: {
1557
1710
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
1558
1711
  } | undefined;
@@ -1563,17 +1716,17 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1563
1716
  configuration: {
1564
1717
  styles?: {
1565
1718
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1719
+ hint?: boolean | undefined;
1566
1720
  } | undefined;
1567
1721
  };
1568
1722
  parent?: {
1569
- _fieldId?: string | undefined;
1723
+ $$field: string;
1570
1724
  } | undefined;
1571
1725
  validation?: {
1572
1726
  message: import("./TranslationConfig").TranslationConfig;
1573
1727
  validator: import(".").JSONSchema;
1574
1728
  }[] | undefined;
1575
1729
  required?: boolean | undefined;
1576
- defaultValue?: string | undefined;
1577
1730
  conditionals?: ({
1578
1731
  type: "SHOW";
1579
1732
  conditional: import(".").JSONSchema;
@@ -1585,20 +1738,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1585
1738
  conditional: import(".").JSONSchema;
1586
1739
  })[] | undefined;
1587
1740
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1741
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1588
1742
  hideLabel?: boolean | undefined;
1743
+ defaultValue?: string | undefined;
1589
1744
  } | {
1590
1745
  type: "PAGE_HEADER";
1591
1746
  id: string;
1592
1747
  label: import("./TranslationConfig").TranslationConfig;
1593
1748
  parent?: {
1594
- _fieldId?: string | undefined;
1749
+ $$field: string;
1595
1750
  } | undefined;
1596
1751
  validation?: {
1597
1752
  message: import("./TranslationConfig").TranslationConfig;
1598
1753
  validator: import(".").JSONSchema;
1599
1754
  }[] | undefined;
1600
1755
  required?: boolean | undefined;
1601
- defaultValue?: string | undefined;
1602
1756
  conditionals?: ({
1603
1757
  type: "SHOW";
1604
1758
  conditional: import(".").JSONSchema;
@@ -1610,7 +1764,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1610
1764
  conditional: import(".").JSONSchema;
1611
1765
  })[] | undefined;
1612
1766
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1767
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1613
1768
  hideLabel?: boolean | undefined;
1769
+ defaultValue?: string | undefined;
1614
1770
  } | {
1615
1771
  type: "FILE";
1616
1772
  id: string;
@@ -1624,14 +1780,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1624
1780
  fileName?: import("./TranslationConfig").TranslationConfig | undefined;
1625
1781
  };
1626
1782
  parent?: {
1627
- _fieldId?: string | undefined;
1783
+ $$field: string;
1628
1784
  } | undefined;
1629
1785
  validation?: {
1630
1786
  message: import("./TranslationConfig").TranslationConfig;
1631
1787
  validator: import(".").JSONSchema;
1632
1788
  }[] | undefined;
1633
1789
  required?: boolean | undefined;
1634
- defaultValue?: string | number | boolean | undefined;
1635
1790
  conditionals?: ({
1636
1791
  type: "SHOW";
1637
1792
  conditional: import(".").JSONSchema;
@@ -1643,7 +1798,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1643
1798
  conditional: import(".").JSONSchema;
1644
1799
  })[] | undefined;
1645
1800
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1801
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1646
1802
  hideLabel?: boolean | undefined;
1803
+ defaultValue?: {
1804
+ type: string;
1805
+ filename: string;
1806
+ originalFilename: string;
1807
+ } | undefined;
1647
1808
  } | {
1648
1809
  type: "RADIO_GROUP";
1649
1810
  id: string;
@@ -1653,14 +1814,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1653
1814
  }[];
1654
1815
  label: import("./TranslationConfig").TranslationConfig;
1655
1816
  parent?: {
1656
- _fieldId?: string | undefined;
1817
+ $$field: string;
1657
1818
  } | undefined;
1658
1819
  validation?: {
1659
1820
  message: import("./TranslationConfig").TranslationConfig;
1660
1821
  validator: import(".").JSONSchema;
1661
1822
  }[] | undefined;
1662
1823
  required?: boolean | undefined;
1663
- defaultValue?: string | undefined;
1664
1824
  conditionals?: ({
1665
1825
  type: "SHOW";
1666
1826
  conditional: import(".").JSONSchema;
@@ -1672,7 +1832,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1672
1832
  conditional: import(".").JSONSchema;
1673
1833
  })[] | undefined;
1674
1834
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1835
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1675
1836
  hideLabel?: boolean | undefined;
1837
+ defaultValue?: string | undefined;
1676
1838
  configuration?: {
1677
1839
  styles?: {
1678
1840
  size?: "NORMAL" | "LARGE" | undefined;
@@ -1689,14 +1851,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1689
1851
  };
1690
1852
  items: import("./TranslationConfig").TranslationConfig[];
1691
1853
  parent?: {
1692
- _fieldId?: string | undefined;
1854
+ $$field: string;
1693
1855
  } | undefined;
1694
1856
  validation?: {
1695
1857
  message: import("./TranslationConfig").TranslationConfig;
1696
1858
  validator: import(".").JSONSchema;
1697
1859
  }[] | undefined;
1698
1860
  required?: boolean | undefined;
1699
- defaultValue?: string | undefined;
1700
1861
  conditionals?: ({
1701
1862
  type: "SHOW";
1702
1863
  conditional: import(".").JSONSchema;
@@ -1708,7 +1869,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1708
1869
  conditional: import(".").JSONSchema;
1709
1870
  })[] | undefined;
1710
1871
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1872
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1711
1873
  hideLabel?: boolean | undefined;
1874
+ defaultValue?: string | undefined;
1712
1875
  } | {
1713
1876
  type: "SELECT";
1714
1877
  id: string;
@@ -1718,14 +1881,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1718
1881
  }[];
1719
1882
  label: import("./TranslationConfig").TranslationConfig;
1720
1883
  parent?: {
1721
- _fieldId?: string | undefined;
1884
+ $$field: string;
1722
1885
  } | undefined;
1723
1886
  validation?: {
1724
1887
  message: import("./TranslationConfig").TranslationConfig;
1725
1888
  validator: import(".").JSONSchema;
1726
1889
  }[] | undefined;
1727
1890
  required?: boolean | undefined;
1728
- defaultValue?: string | undefined;
1729
1891
  conditionals?: ({
1730
1892
  type: "SHOW";
1731
1893
  conditional: import(".").JSONSchema;
@@ -1737,20 +1899,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1737
1899
  conditional: import(".").JSONSchema;
1738
1900
  })[] | undefined;
1739
1901
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1902
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1740
1903
  hideLabel?: boolean | undefined;
1904
+ defaultValue?: string | undefined;
1741
1905
  } | {
1742
1906
  type: "CHECKBOX";
1743
1907
  id: string;
1744
1908
  label: import("./TranslationConfig").TranslationConfig;
1745
1909
  parent?: {
1746
- _fieldId?: string | undefined;
1910
+ $$field: string;
1747
1911
  } | undefined;
1748
1912
  validation?: {
1749
1913
  message: import("./TranslationConfig").TranslationConfig;
1750
1914
  validator: import(".").JSONSchema;
1751
1915
  }[] | undefined;
1752
1916
  required?: boolean | undefined;
1753
- defaultValue?: boolean | undefined;
1754
1917
  conditionals?: ({
1755
1918
  type: "SHOW";
1756
1919
  conditional: import(".").JSONSchema;
@@ -1762,20 +1925,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1762
1925
  conditional: import(".").JSONSchema;
1763
1926
  })[] | undefined;
1764
1927
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1928
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1765
1929
  hideLabel?: boolean | undefined;
1930
+ defaultValue?: boolean | undefined;
1766
1931
  } | {
1767
1932
  type: "COUNTRY";
1768
1933
  id: string;
1769
1934
  label: import("./TranslationConfig").TranslationConfig;
1770
1935
  parent?: {
1771
- _fieldId?: string | undefined;
1936
+ $$field: string;
1772
1937
  } | undefined;
1773
1938
  validation?: {
1774
1939
  message: import("./TranslationConfig").TranslationConfig;
1775
1940
  validator: import(".").JSONSchema;
1776
1941
  }[] | undefined;
1777
1942
  required?: boolean | undefined;
1778
- defaultValue?: string | undefined;
1779
1943
  conditionals?: ({
1780
1944
  type: "SHOW";
1781
1945
  conditional: import(".").JSONSchema;
@@ -1787,7 +1951,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1787
1951
  conditional: import(".").JSONSchema;
1788
1952
  })[] | undefined;
1789
1953
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1954
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1790
1955
  hideLabel?: boolean | undefined;
1956
+ defaultValue?: string | undefined;
1791
1957
  } | {
1792
1958
  type: "ADMINISTRATIVE_AREA";
1793
1959
  id: string;
@@ -1799,14 +1965,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1799
1965
  } | undefined;
1800
1966
  };
1801
1967
  parent?: {
1802
- _fieldId?: string | undefined;
1968
+ $$field: string;
1803
1969
  } | undefined;
1804
1970
  validation?: {
1805
1971
  message: import("./TranslationConfig").TranslationConfig;
1806
1972
  validator: import(".").JSONSchema;
1807
1973
  }[] | undefined;
1808
1974
  required?: boolean | undefined;
1809
- defaultValue?: string | undefined;
1810
1975
  conditionals?: ({
1811
1976
  type: "SHOW";
1812
1977
  conditional: import(".").JSONSchema;
@@ -1818,20 +1983,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1818
1983
  conditional: import(".").JSONSchema;
1819
1984
  })[] | undefined;
1820
1985
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1986
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1821
1987
  hideLabel?: boolean | undefined;
1988
+ defaultValue?: string | undefined;
1822
1989
  } | {
1823
1990
  type: "LOCATION";
1824
1991
  id: string;
1825
1992
  label: import("./TranslationConfig").TranslationConfig;
1826
1993
  parent?: {
1827
- _fieldId?: string | undefined;
1994
+ $$field: string;
1828
1995
  } | undefined;
1829
1996
  validation?: {
1830
1997
  message: import("./TranslationConfig").TranslationConfig;
1831
1998
  validator: import(".").JSONSchema;
1832
1999
  }[] | undefined;
1833
2000
  required?: boolean | undefined;
1834
- defaultValue?: string | undefined;
1835
2001
  conditionals?: ({
1836
2002
  type: "SHOW";
1837
2003
  conditional: import(".").JSONSchema;
@@ -1843,7 +2009,9 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1843
2009
  conditional: import(".").JSONSchema;
1844
2010
  })[] | undefined;
1845
2011
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2012
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1846
2013
  hideLabel?: boolean | undefined;
2014
+ defaultValue?: string | undefined;
1847
2015
  } | {
1848
2016
  type: "FILE_WITH_OPTIONS";
1849
2017
  id: string;
@@ -1857,14 +2025,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1857
2025
  acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
1858
2026
  };
1859
2027
  parent?: {
1860
- _fieldId?: string | undefined;
2028
+ $$field: string;
1861
2029
  } | undefined;
1862
2030
  validation?: {
1863
2031
  message: import("./TranslationConfig").TranslationConfig;
1864
2032
  validator: import(".").JSONSchema;
1865
2033
  }[] | undefined;
1866
2034
  required?: boolean | undefined;
1867
- defaultValue?: string | number | boolean | undefined;
1868
2035
  conditionals?: ({
1869
2036
  type: "SHOW";
1870
2037
  conditional: import(".").JSONSchema;
@@ -1876,20 +2043,26 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1876
2043
  conditional: import(".").JSONSchema;
1877
2044
  })[] | undefined;
1878
2045
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2046
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1879
2047
  hideLabel?: boolean | undefined;
2048
+ defaultValue?: {
2049
+ type: string;
2050
+ option: string;
2051
+ filename: string;
2052
+ originalFilename: string;
2053
+ }[] | undefined;
1880
2054
  } | {
1881
2055
  type: "FACILITY";
1882
2056
  id: string;
1883
2057
  label: import("./TranslationConfig").TranslationConfig;
1884
2058
  parent?: {
1885
- _fieldId?: string | undefined;
2059
+ $$field: string;
1886
2060
  } | undefined;
1887
2061
  validation?: {
1888
2062
  message: import("./TranslationConfig").TranslationConfig;
1889
2063
  validator: import(".").JSONSchema;
1890
2064
  }[] | undefined;
1891
2065
  required?: boolean | undefined;
1892
- defaultValue?: string | undefined;
1893
2066
  conditionals?: ({
1894
2067
  type: "SHOW";
1895
2068
  conditional: import(".").JSONSchema;
@@ -1901,20 +2074,21 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1901
2074
  conditional: import(".").JSONSchema;
1902
2075
  })[] | undefined;
1903
2076
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2077
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1904
2078
  hideLabel?: boolean | undefined;
2079
+ defaultValue?: string | undefined;
1905
2080
  } | {
1906
2081
  type: "OFFICE";
1907
2082
  id: string;
1908
2083
  label: import("./TranslationConfig").TranslationConfig;
1909
2084
  parent?: {
1910
- _fieldId?: string | undefined;
2085
+ $$field: string;
1911
2086
  } | undefined;
1912
2087
  validation?: {
1913
2088
  message: import("./TranslationConfig").TranslationConfig;
1914
2089
  validator: import(".").JSONSchema;
1915
2090
  }[] | undefined;
1916
2091
  required?: boolean | undefined;
1917
- defaultValue?: string | undefined;
1918
2092
  conditionals?: ({
1919
2093
  type: "SHOW";
1920
2094
  conditional: import(".").JSONSchema;
@@ -1926,19 +2100,34 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1926
2100
  conditional: import(".").JSONSchema;
1927
2101
  })[] | undefined;
1928
2102
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2103
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
1929
2104
  hideLabel?: boolean | undefined;
2105
+ defaultValue?: string | undefined;
1930
2106
  } | {
1931
2107
  type: "ADDRESS";
1932
2108
  id: string;
1933
2109
  label: import("./TranslationConfig").TranslationConfig;
1934
2110
  parent?: {
1935
- _fieldId?: string | undefined;
2111
+ $$field: string;
1936
2112
  } | undefined;
1937
2113
  validation?: {
1938
2114
  message: import("./TranslationConfig").TranslationConfig;
1939
2115
  validator: import(".").JSONSchema;
1940
2116
  }[] | undefined;
1941
2117
  required?: boolean | undefined;
2118
+ conditionals?: ({
2119
+ type: "SHOW";
2120
+ conditional: import(".").JSONSchema;
2121
+ } | {
2122
+ type: "ENABLE";
2123
+ conditional: import(".").JSONSchema;
2124
+ } | {
2125
+ type: "DISPLAY_ON_REVIEW";
2126
+ conditional: import(".").JSONSchema;
2127
+ })[] | undefined;
2128
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2129
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2130
+ hideLabel?: boolean | undefined;
1942
2131
  defaultValue?: {
1943
2132
  country: string;
1944
2133
  district: string;
@@ -1968,18 +2157,6 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1968
2157
  addressLine3?: string | undefined;
1969
2158
  postcodeOrZip?: string | undefined;
1970
2159
  } | undefined;
1971
- conditionals?: ({
1972
- type: "SHOW";
1973
- conditional: import(".").JSONSchema;
1974
- } | {
1975
- type: "ENABLE";
1976
- conditional: import(".").JSONSchema;
1977
- } | {
1978
- type: "DISPLAY_ON_REVIEW";
1979
- conditional: import(".").JSONSchema;
1980
- })[] | undefined;
1981
- placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
1982
- hideLabel?: boolean | undefined;
1983
2160
  } | {
1984
2161
  type: "DATA";
1985
2162
  id: string;
@@ -1994,14 +2171,13 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
1994
2171
  subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
1995
2172
  };
1996
2173
  parent?: {
1997
- _fieldId?: string | undefined;
2174
+ $$field: string;
1998
2175
  } | undefined;
1999
2176
  validation?: {
2000
2177
  message: import("./TranslationConfig").TranslationConfig;
2001
2178
  validator: import(".").JSONSchema;
2002
2179
  }[] | undefined;
2003
2180
  required?: boolean | undefined;
2004
- defaultValue?: string | number | boolean | undefined;
2005
2181
  conditionals?: ({
2006
2182
  type: "SHOW";
2007
2183
  conditional: import(".").JSONSchema;
@@ -2013,6 +2189,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
2013
2189
  conditional: import(".").JSONSchema;
2014
2190
  })[] | undefined;
2015
2191
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2192
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2016
2193
  hideLabel?: boolean | undefined;
2017
2194
  })[];
2018
2195
  /**
@@ -2026,14 +2203,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2026
2203
  id: string;
2027
2204
  label: import("./TranslationConfig").TranslationConfig;
2028
2205
  parent?: {
2029
- _fieldId?: string | undefined;
2206
+ $$field: string;
2030
2207
  } | undefined;
2031
2208
  validation?: {
2032
2209
  message: import("./TranslationConfig").TranslationConfig;
2033
2210
  validator: import(".").JSONSchema;
2034
2211
  }[] | undefined;
2035
2212
  required?: boolean | undefined;
2036
- defaultValue?: string | number | boolean | undefined;
2037
2213
  conditionals?: ({
2038
2214
  type: "SHOW";
2039
2215
  conditional: import(".").JSONSchema;
@@ -2045,20 +2221,20 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2045
2221
  conditional: import(".").JSONSchema;
2046
2222
  })[] | undefined;
2047
2223
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2224
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2048
2225
  hideLabel?: boolean | undefined;
2049
2226
  } | {
2050
2227
  type: "TEXT";
2051
2228
  id: string;
2052
2229
  label: import("./TranslationConfig").TranslationConfig;
2053
2230
  parent?: {
2054
- _fieldId?: string | undefined;
2231
+ $$field: string;
2055
2232
  } | undefined;
2056
2233
  validation?: {
2057
2234
  message: import("./TranslationConfig").TranslationConfig;
2058
2235
  validator: import(".").JSONSchema;
2059
2236
  }[] | undefined;
2060
2237
  required?: boolean | undefined;
2061
- defaultValue?: string | undefined;
2062
2238
  conditionals?: ({
2063
2239
  type: "SHOW";
2064
2240
  conditional: import(".").JSONSchema;
@@ -2070,7 +2246,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2070
2246
  conditional: import(".").JSONSchema;
2071
2247
  })[] | undefined;
2072
2248
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2249
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2073
2250
  hideLabel?: boolean | undefined;
2251
+ defaultValue?: string | undefined;
2074
2252
  configuration?: {
2075
2253
  type?: "text" | "password" | undefined;
2076
2254
  maxLength?: number | undefined;
@@ -2082,14 +2260,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2082
2260
  id: string;
2083
2261
  label: import("./TranslationConfig").TranslationConfig;
2084
2262
  parent?: {
2085
- _fieldId?: string | undefined;
2263
+ $$field: string;
2086
2264
  } | undefined;
2087
2265
  validation?: {
2088
2266
  message: import("./TranslationConfig").TranslationConfig;
2089
2267
  validator: import(".").JSONSchema;
2090
2268
  }[] | undefined;
2091
2269
  required?: boolean | undefined;
2092
- defaultValue?: number | undefined;
2093
2270
  conditionals?: ({
2094
2271
  type: "SHOW";
2095
2272
  conditional: import(".").JSONSchema;
@@ -2101,7 +2278,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2101
2278
  conditional: import(".").JSONSchema;
2102
2279
  })[] | undefined;
2103
2280
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2281
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2104
2282
  hideLabel?: boolean | undefined;
2283
+ defaultValue?: number | undefined;
2105
2284
  configuration?: {
2106
2285
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
2107
2286
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -2113,14 +2292,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2113
2292
  id: string;
2114
2293
  label: import("./TranslationConfig").TranslationConfig;
2115
2294
  parent?: {
2116
- _fieldId?: string | undefined;
2295
+ $$field: string;
2117
2296
  } | undefined;
2118
2297
  validation?: {
2119
2298
  message: import("./TranslationConfig").TranslationConfig;
2120
2299
  validator: import(".").JSONSchema;
2121
2300
  }[] | undefined;
2122
2301
  required?: boolean | undefined;
2123
- defaultValue?: string | undefined;
2124
2302
  conditionals?: ({
2125
2303
  type: "SHOW";
2126
2304
  conditional: import(".").JSONSchema;
@@ -2132,7 +2310,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2132
2310
  conditional: import(".").JSONSchema;
2133
2311
  })[] | undefined;
2134
2312
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2313
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2135
2314
  hideLabel?: boolean | undefined;
2315
+ defaultValue?: string | undefined;
2136
2316
  configuration?: {
2137
2317
  maxLength?: number | undefined;
2138
2318
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -2150,14 +2330,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2150
2330
  };
2151
2331
  signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
2152
2332
  parent?: {
2153
- _fieldId?: string | undefined;
2333
+ $$field: string;
2154
2334
  } | undefined;
2155
2335
  validation?: {
2156
2336
  message: import("./TranslationConfig").TranslationConfig;
2157
2337
  validator: import(".").JSONSchema;
2158
2338
  }[] | undefined;
2159
2339
  required?: boolean | undefined;
2160
- defaultValue?: string | number | boolean | undefined;
2161
2340
  conditionals?: ({
2162
2341
  type: "SHOW";
2163
2342
  conditional: import(".").JSONSchema;
@@ -2169,20 +2348,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2169
2348
  conditional: import(".").JSONSchema;
2170
2349
  })[] | undefined;
2171
2350
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2351
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2172
2352
  hideLabel?: boolean | undefined;
2353
+ defaultValue?: string | undefined;
2173
2354
  } | {
2174
2355
  type: "EMAIL";
2175
2356
  id: string;
2176
2357
  label: import("./TranslationConfig").TranslationConfig;
2177
2358
  parent?: {
2178
- _fieldId?: string | undefined;
2359
+ $$field: string;
2179
2360
  } | undefined;
2180
2361
  validation?: {
2181
2362
  message: import("./TranslationConfig").TranslationConfig;
2182
2363
  validator: import(".").JSONSchema;
2183
2364
  }[] | undefined;
2184
2365
  required?: boolean | undefined;
2185
- defaultValue?: string | undefined;
2186
2366
  conditionals?: ({
2187
2367
  type: "SHOW";
2188
2368
  conditional: import(".").JSONSchema;
@@ -2194,7 +2374,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2194
2374
  conditional: import(".").JSONSchema;
2195
2375
  })[] | undefined;
2196
2376
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2377
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2197
2378
  hideLabel?: boolean | undefined;
2379
+ defaultValue?: string | undefined;
2198
2380
  configuration?: {
2199
2381
  maxLength?: number | undefined;
2200
2382
  } | undefined;
@@ -2203,14 +2385,42 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2203
2385
  id: string;
2204
2386
  label: import("./TranslationConfig").TranslationConfig;
2205
2387
  parent?: {
2206
- _fieldId?: string | undefined;
2388
+ $$field: string;
2207
2389
  } | undefined;
2208
2390
  validation?: {
2209
2391
  message: import("./TranslationConfig").TranslationConfig;
2210
2392
  validator: import(".").JSONSchema;
2211
2393
  }[] | undefined;
2212
2394
  required?: boolean | undefined;
2395
+ conditionals?: ({
2396
+ type: "SHOW";
2397
+ conditional: import(".").JSONSchema;
2398
+ } | {
2399
+ type: "ENABLE";
2400
+ conditional: import(".").JSONSchema;
2401
+ } | {
2402
+ type: "DISPLAY_ON_REVIEW";
2403
+ conditional: import(".").JSONSchema;
2404
+ })[] | undefined;
2405
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2406
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2407
+ hideLabel?: boolean | undefined;
2213
2408
  defaultValue?: string | undefined;
2409
+ configuration?: {
2410
+ notice?: import("./TranslationConfig").TranslationConfig | undefined;
2411
+ } | undefined;
2412
+ } | {
2413
+ type: "DATE_RANGE";
2414
+ id: string;
2415
+ label: import("./TranslationConfig").TranslationConfig;
2416
+ parent?: {
2417
+ $$field: string;
2418
+ } | undefined;
2419
+ validation?: {
2420
+ message: import("./TranslationConfig").TranslationConfig;
2421
+ validator: import(".").JSONSchema;
2422
+ }[] | undefined;
2423
+ required?: boolean | undefined;
2214
2424
  conditionals?: ({
2215
2425
  type: "SHOW";
2216
2426
  conditional: import(".").JSONSchema;
@@ -2222,7 +2432,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2222
2432
  conditional: import(".").JSONSchema;
2223
2433
  })[] | undefined;
2224
2434
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2435
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2225
2436
  hideLabel?: boolean | undefined;
2437
+ defaultValue?: string | [string, string] | undefined;
2226
2438
  configuration?: {
2227
2439
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
2228
2440
  } | undefined;
@@ -2233,17 +2445,17 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2233
2445
  configuration: {
2234
2446
  styles?: {
2235
2447
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
2448
+ hint?: boolean | undefined;
2236
2449
  } | undefined;
2237
2450
  };
2238
2451
  parent?: {
2239
- _fieldId?: string | undefined;
2452
+ $$field: string;
2240
2453
  } | undefined;
2241
2454
  validation?: {
2242
2455
  message: import("./TranslationConfig").TranslationConfig;
2243
2456
  validator: import(".").JSONSchema;
2244
2457
  }[] | undefined;
2245
2458
  required?: boolean | undefined;
2246
- defaultValue?: string | undefined;
2247
2459
  conditionals?: ({
2248
2460
  type: "SHOW";
2249
2461
  conditional: import(".").JSONSchema;
@@ -2255,20 +2467,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2255
2467
  conditional: import(".").JSONSchema;
2256
2468
  })[] | undefined;
2257
2469
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2470
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2258
2471
  hideLabel?: boolean | undefined;
2472
+ defaultValue?: string | undefined;
2259
2473
  } | {
2260
2474
  type: "PAGE_HEADER";
2261
2475
  id: string;
2262
2476
  label: import("./TranslationConfig").TranslationConfig;
2263
2477
  parent?: {
2264
- _fieldId?: string | undefined;
2478
+ $$field: string;
2265
2479
  } | undefined;
2266
2480
  validation?: {
2267
2481
  message: import("./TranslationConfig").TranslationConfig;
2268
2482
  validator: import(".").JSONSchema;
2269
2483
  }[] | undefined;
2270
2484
  required?: boolean | undefined;
2271
- defaultValue?: string | undefined;
2272
2485
  conditionals?: ({
2273
2486
  type: "SHOW";
2274
2487
  conditional: import(".").JSONSchema;
@@ -2280,7 +2493,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2280
2493
  conditional: import(".").JSONSchema;
2281
2494
  })[] | undefined;
2282
2495
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2496
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2283
2497
  hideLabel?: boolean | undefined;
2498
+ defaultValue?: string | undefined;
2284
2499
  } | {
2285
2500
  type: "FILE";
2286
2501
  id: string;
@@ -2294,14 +2509,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2294
2509
  fileName?: import("./TranslationConfig").TranslationConfig | undefined;
2295
2510
  };
2296
2511
  parent?: {
2297
- _fieldId?: string | undefined;
2512
+ $$field: string;
2298
2513
  } | undefined;
2299
2514
  validation?: {
2300
2515
  message: import("./TranslationConfig").TranslationConfig;
2301
2516
  validator: import(".").JSONSchema;
2302
2517
  }[] | undefined;
2303
2518
  required?: boolean | undefined;
2304
- defaultValue?: string | number | boolean | undefined;
2305
2519
  conditionals?: ({
2306
2520
  type: "SHOW";
2307
2521
  conditional: import(".").JSONSchema;
@@ -2313,7 +2527,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2313
2527
  conditional: import(".").JSONSchema;
2314
2528
  })[] | undefined;
2315
2529
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2530
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2316
2531
  hideLabel?: boolean | undefined;
2532
+ defaultValue?: {
2533
+ type: string;
2534
+ filename: string;
2535
+ originalFilename: string;
2536
+ } | undefined;
2317
2537
  } | {
2318
2538
  type: "RADIO_GROUP";
2319
2539
  id: string;
@@ -2323,14 +2543,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2323
2543
  }[];
2324
2544
  label: import("./TranslationConfig").TranslationConfig;
2325
2545
  parent?: {
2326
- _fieldId?: string | undefined;
2546
+ $$field: string;
2327
2547
  } | undefined;
2328
2548
  validation?: {
2329
2549
  message: import("./TranslationConfig").TranslationConfig;
2330
2550
  validator: import(".").JSONSchema;
2331
2551
  }[] | undefined;
2332
2552
  required?: boolean | undefined;
2333
- defaultValue?: string | undefined;
2334
2553
  conditionals?: ({
2335
2554
  type: "SHOW";
2336
2555
  conditional: import(".").JSONSchema;
@@ -2342,7 +2561,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2342
2561
  conditional: import(".").JSONSchema;
2343
2562
  })[] | undefined;
2344
2563
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2564
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2345
2565
  hideLabel?: boolean | undefined;
2566
+ defaultValue?: string | undefined;
2346
2567
  configuration?: {
2347
2568
  styles?: {
2348
2569
  size?: "NORMAL" | "LARGE" | undefined;
@@ -2359,14 +2580,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2359
2580
  };
2360
2581
  items: import("./TranslationConfig").TranslationConfig[];
2361
2582
  parent?: {
2362
- _fieldId?: string | undefined;
2583
+ $$field: string;
2363
2584
  } | undefined;
2364
2585
  validation?: {
2365
2586
  message: import("./TranslationConfig").TranslationConfig;
2366
2587
  validator: import(".").JSONSchema;
2367
2588
  }[] | undefined;
2368
2589
  required?: boolean | undefined;
2369
- defaultValue?: string | undefined;
2370
2590
  conditionals?: ({
2371
2591
  type: "SHOW";
2372
2592
  conditional: import(".").JSONSchema;
@@ -2378,7 +2598,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2378
2598
  conditional: import(".").JSONSchema;
2379
2599
  })[] | undefined;
2380
2600
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2601
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2381
2602
  hideLabel?: boolean | undefined;
2603
+ defaultValue?: string | undefined;
2382
2604
  } | {
2383
2605
  type: "SELECT";
2384
2606
  id: string;
@@ -2388,14 +2610,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2388
2610
  }[];
2389
2611
  label: import("./TranslationConfig").TranslationConfig;
2390
2612
  parent?: {
2391
- _fieldId?: string | undefined;
2613
+ $$field: string;
2392
2614
  } | undefined;
2393
2615
  validation?: {
2394
2616
  message: import("./TranslationConfig").TranslationConfig;
2395
2617
  validator: import(".").JSONSchema;
2396
2618
  }[] | undefined;
2397
2619
  required?: boolean | undefined;
2398
- defaultValue?: string | undefined;
2399
2620
  conditionals?: ({
2400
2621
  type: "SHOW";
2401
2622
  conditional: import(".").JSONSchema;
@@ -2407,20 +2628,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2407
2628
  conditional: import(".").JSONSchema;
2408
2629
  })[] | undefined;
2409
2630
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2631
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2410
2632
  hideLabel?: boolean | undefined;
2633
+ defaultValue?: string | undefined;
2411
2634
  } | {
2412
2635
  type: "CHECKBOX";
2413
2636
  id: string;
2414
2637
  label: import("./TranslationConfig").TranslationConfig;
2415
2638
  parent?: {
2416
- _fieldId?: string | undefined;
2639
+ $$field: string;
2417
2640
  } | undefined;
2418
2641
  validation?: {
2419
2642
  message: import("./TranslationConfig").TranslationConfig;
2420
2643
  validator: import(".").JSONSchema;
2421
2644
  }[] | undefined;
2422
2645
  required?: boolean | undefined;
2423
- defaultValue?: boolean | undefined;
2424
2646
  conditionals?: ({
2425
2647
  type: "SHOW";
2426
2648
  conditional: import(".").JSONSchema;
@@ -2432,20 +2654,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2432
2654
  conditional: import(".").JSONSchema;
2433
2655
  })[] | undefined;
2434
2656
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2657
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2435
2658
  hideLabel?: boolean | undefined;
2659
+ defaultValue?: boolean | undefined;
2436
2660
  } | {
2437
2661
  type: "COUNTRY";
2438
2662
  id: string;
2439
2663
  label: import("./TranslationConfig").TranslationConfig;
2440
2664
  parent?: {
2441
- _fieldId?: string | undefined;
2665
+ $$field: string;
2442
2666
  } | undefined;
2443
2667
  validation?: {
2444
2668
  message: import("./TranslationConfig").TranslationConfig;
2445
2669
  validator: import(".").JSONSchema;
2446
2670
  }[] | undefined;
2447
2671
  required?: boolean | undefined;
2448
- defaultValue?: string | undefined;
2449
2672
  conditionals?: ({
2450
2673
  type: "SHOW";
2451
2674
  conditional: import(".").JSONSchema;
@@ -2457,7 +2680,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2457
2680
  conditional: import(".").JSONSchema;
2458
2681
  })[] | undefined;
2459
2682
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2683
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2460
2684
  hideLabel?: boolean | undefined;
2685
+ defaultValue?: string | undefined;
2461
2686
  } | {
2462
2687
  type: "ADMINISTRATIVE_AREA";
2463
2688
  id: string;
@@ -2469,14 +2694,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2469
2694
  } | undefined;
2470
2695
  };
2471
2696
  parent?: {
2472
- _fieldId?: string | undefined;
2697
+ $$field: string;
2473
2698
  } | undefined;
2474
2699
  validation?: {
2475
2700
  message: import("./TranslationConfig").TranslationConfig;
2476
2701
  validator: import(".").JSONSchema;
2477
2702
  }[] | undefined;
2478
2703
  required?: boolean | undefined;
2479
- defaultValue?: string | undefined;
2480
2704
  conditionals?: ({
2481
2705
  type: "SHOW";
2482
2706
  conditional: import(".").JSONSchema;
@@ -2488,20 +2712,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2488
2712
  conditional: import(".").JSONSchema;
2489
2713
  })[] | undefined;
2490
2714
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2715
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2491
2716
  hideLabel?: boolean | undefined;
2717
+ defaultValue?: string | undefined;
2492
2718
  } | {
2493
2719
  type: "LOCATION";
2494
2720
  id: string;
2495
2721
  label: import("./TranslationConfig").TranslationConfig;
2496
2722
  parent?: {
2497
- _fieldId?: string | undefined;
2723
+ $$field: string;
2498
2724
  } | undefined;
2499
2725
  validation?: {
2500
2726
  message: import("./TranslationConfig").TranslationConfig;
2501
2727
  validator: import(".").JSONSchema;
2502
2728
  }[] | undefined;
2503
2729
  required?: boolean | undefined;
2504
- defaultValue?: string | undefined;
2505
2730
  conditionals?: ({
2506
2731
  type: "SHOW";
2507
2732
  conditional: import(".").JSONSchema;
@@ -2513,7 +2738,9 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2513
2738
  conditional: import(".").JSONSchema;
2514
2739
  })[] | undefined;
2515
2740
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2741
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2516
2742
  hideLabel?: boolean | undefined;
2743
+ defaultValue?: string | undefined;
2517
2744
  } | {
2518
2745
  type: "FILE_WITH_OPTIONS";
2519
2746
  id: string;
@@ -2527,14 +2754,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2527
2754
  acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
2528
2755
  };
2529
2756
  parent?: {
2530
- _fieldId?: string | undefined;
2757
+ $$field: string;
2531
2758
  } | undefined;
2532
2759
  validation?: {
2533
2760
  message: import("./TranslationConfig").TranslationConfig;
2534
2761
  validator: import(".").JSONSchema;
2535
2762
  }[] | undefined;
2536
2763
  required?: boolean | undefined;
2537
- defaultValue?: string | number | boolean | undefined;
2538
2764
  conditionals?: ({
2539
2765
  type: "SHOW";
2540
2766
  conditional: import(".").JSONSchema;
@@ -2546,20 +2772,26 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2546
2772
  conditional: import(".").JSONSchema;
2547
2773
  })[] | undefined;
2548
2774
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2775
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2549
2776
  hideLabel?: boolean | undefined;
2777
+ defaultValue?: {
2778
+ type: string;
2779
+ option: string;
2780
+ filename: string;
2781
+ originalFilename: string;
2782
+ }[] | undefined;
2550
2783
  } | {
2551
2784
  type: "FACILITY";
2552
2785
  id: string;
2553
2786
  label: import("./TranslationConfig").TranslationConfig;
2554
2787
  parent?: {
2555
- _fieldId?: string | undefined;
2788
+ $$field: string;
2556
2789
  } | undefined;
2557
2790
  validation?: {
2558
2791
  message: import("./TranslationConfig").TranslationConfig;
2559
2792
  validator: import(".").JSONSchema;
2560
2793
  }[] | undefined;
2561
2794
  required?: boolean | undefined;
2562
- defaultValue?: string | undefined;
2563
2795
  conditionals?: ({
2564
2796
  type: "SHOW";
2565
2797
  conditional: import(".").JSONSchema;
@@ -2571,20 +2803,21 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2571
2803
  conditional: import(".").JSONSchema;
2572
2804
  })[] | undefined;
2573
2805
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2806
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2574
2807
  hideLabel?: boolean | undefined;
2808
+ defaultValue?: string | undefined;
2575
2809
  } | {
2576
2810
  type: "OFFICE";
2577
2811
  id: string;
2578
2812
  label: import("./TranslationConfig").TranslationConfig;
2579
2813
  parent?: {
2580
- _fieldId?: string | undefined;
2814
+ $$field: string;
2581
2815
  } | undefined;
2582
2816
  validation?: {
2583
2817
  message: import("./TranslationConfig").TranslationConfig;
2584
2818
  validator: import(".").JSONSchema;
2585
2819
  }[] | undefined;
2586
2820
  required?: boolean | undefined;
2587
- defaultValue?: string | undefined;
2588
2821
  conditionals?: ({
2589
2822
  type: "SHOW";
2590
2823
  conditional: import(".").JSONSchema;
@@ -2596,19 +2829,34 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2596
2829
  conditional: import(".").JSONSchema;
2597
2830
  })[] | undefined;
2598
2831
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2832
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2599
2833
  hideLabel?: boolean | undefined;
2834
+ defaultValue?: string | undefined;
2600
2835
  } | {
2601
2836
  type: "ADDRESS";
2602
2837
  id: string;
2603
2838
  label: import("./TranslationConfig").TranslationConfig;
2604
2839
  parent?: {
2605
- _fieldId?: string | undefined;
2840
+ $$field: string;
2606
2841
  } | undefined;
2607
2842
  validation?: {
2608
2843
  message: import("./TranslationConfig").TranslationConfig;
2609
2844
  validator: import(".").JSONSchema;
2610
2845
  }[] | undefined;
2611
2846
  required?: boolean | undefined;
2847
+ conditionals?: ({
2848
+ type: "SHOW";
2849
+ conditional: import(".").JSONSchema;
2850
+ } | {
2851
+ type: "ENABLE";
2852
+ conditional: import(".").JSONSchema;
2853
+ } | {
2854
+ type: "DISPLAY_ON_REVIEW";
2855
+ conditional: import(".").JSONSchema;
2856
+ })[] | undefined;
2857
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2858
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2859
+ hideLabel?: boolean | undefined;
2612
2860
  defaultValue?: {
2613
2861
  country: string;
2614
2862
  district: string;
@@ -2638,18 +2886,6 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2638
2886
  addressLine3?: string | undefined;
2639
2887
  postcodeOrZip?: string | undefined;
2640
2888
  } | undefined;
2641
- conditionals?: ({
2642
- type: "SHOW";
2643
- conditional: import(".").JSONSchema;
2644
- } | {
2645
- type: "ENABLE";
2646
- conditional: import(".").JSONSchema;
2647
- } | {
2648
- type: "DISPLAY_ON_REVIEW";
2649
- conditional: import(".").JSONSchema;
2650
- })[] | undefined;
2651
- placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2652
- hideLabel?: boolean | undefined;
2653
2889
  } | {
2654
2890
  type: "DATA";
2655
2891
  id: string;
@@ -2664,14 +2900,13 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2664
2900
  subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
2665
2901
  };
2666
2902
  parent?: {
2667
- _fieldId?: string | undefined;
2903
+ $$field: string;
2668
2904
  } | undefined;
2669
2905
  validation?: {
2670
2906
  message: import("./TranslationConfig").TranslationConfig;
2671
2907
  validator: import(".").JSONSchema;
2672
2908
  }[] | undefined;
2673
2909
  required?: boolean | undefined;
2674
- defaultValue?: string | number | boolean | undefined;
2675
2910
  conditionals?: ({
2676
2911
  type: "SHOW";
2677
2912
  conditional: import(".").JSONSchema;
@@ -2683,6 +2918,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
2683
2918
  conditional: import(".").JSONSchema;
2684
2919
  })[] | undefined;
2685
2920
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2921
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2686
2922
  hideLabel?: boolean | undefined;
2687
2923
  })[];
2688
2924
  };
@@ -2691,14 +2927,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2691
2927
  id: string;
2692
2928
  label: import("./TranslationConfig").TranslationConfig;
2693
2929
  parent?: {
2694
- _fieldId?: string | undefined;
2930
+ $$field: string;
2695
2931
  } | undefined;
2696
2932
  validation?: {
2697
2933
  message: import("./TranslationConfig").TranslationConfig;
2698
2934
  validator: import(".").JSONSchema;
2699
2935
  }[] | undefined;
2700
2936
  required?: boolean | undefined;
2701
- defaultValue?: string | number | boolean | undefined;
2702
2937
  conditionals?: ({
2703
2938
  type: "SHOW";
2704
2939
  conditional: import(".").JSONSchema;
@@ -2710,20 +2945,20 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2710
2945
  conditional: import(".").JSONSchema;
2711
2946
  })[] | undefined;
2712
2947
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2948
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2713
2949
  hideLabel?: boolean | undefined;
2714
2950
  } | {
2715
2951
  type: "TEXT";
2716
2952
  id: string;
2717
2953
  label: import("./TranslationConfig").TranslationConfig;
2718
2954
  parent?: {
2719
- _fieldId?: string | undefined;
2955
+ $$field: string;
2720
2956
  } | undefined;
2721
2957
  validation?: {
2722
2958
  message: import("./TranslationConfig").TranslationConfig;
2723
2959
  validator: import(".").JSONSchema;
2724
2960
  }[] | undefined;
2725
2961
  required?: boolean | undefined;
2726
- defaultValue?: string | undefined;
2727
2962
  conditionals?: ({
2728
2963
  type: "SHOW";
2729
2964
  conditional: import(".").JSONSchema;
@@ -2735,7 +2970,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2735
2970
  conditional: import(".").JSONSchema;
2736
2971
  })[] | undefined;
2737
2972
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
2973
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2738
2974
  hideLabel?: boolean | undefined;
2975
+ defaultValue?: string | undefined;
2739
2976
  configuration?: {
2740
2977
  type?: "text" | "password" | undefined;
2741
2978
  maxLength?: number | undefined;
@@ -2747,14 +2984,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2747
2984
  id: string;
2748
2985
  label: import("./TranslationConfig").TranslationConfig;
2749
2986
  parent?: {
2750
- _fieldId?: string | undefined;
2987
+ $$field: string;
2751
2988
  } | undefined;
2752
2989
  validation?: {
2753
2990
  message: import("./TranslationConfig").TranslationConfig;
2754
2991
  validator: import(".").JSONSchema;
2755
2992
  }[] | undefined;
2756
2993
  required?: boolean | undefined;
2757
- defaultValue?: number | undefined;
2758
2994
  conditionals?: ({
2759
2995
  type: "SHOW";
2760
2996
  conditional: import(".").JSONSchema;
@@ -2766,7 +3002,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2766
3002
  conditional: import(".").JSONSchema;
2767
3003
  })[] | undefined;
2768
3004
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3005
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2769
3006
  hideLabel?: boolean | undefined;
3007
+ defaultValue?: number | undefined;
2770
3008
  configuration?: {
2771
3009
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
2772
3010
  postfix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -2778,14 +3016,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2778
3016
  id: string;
2779
3017
  label: import("./TranslationConfig").TranslationConfig;
2780
3018
  parent?: {
2781
- _fieldId?: string | undefined;
3019
+ $$field: string;
2782
3020
  } | undefined;
2783
3021
  validation?: {
2784
3022
  message: import("./TranslationConfig").TranslationConfig;
2785
3023
  validator: import(".").JSONSchema;
2786
3024
  }[] | undefined;
2787
3025
  required?: boolean | undefined;
2788
- defaultValue?: string | undefined;
2789
3026
  conditionals?: ({
2790
3027
  type: "SHOW";
2791
3028
  conditional: import(".").JSONSchema;
@@ -2797,7 +3034,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2797
3034
  conditional: import(".").JSONSchema;
2798
3035
  })[] | undefined;
2799
3036
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3037
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2800
3038
  hideLabel?: boolean | undefined;
3039
+ defaultValue?: string | undefined;
2801
3040
  configuration?: {
2802
3041
  maxLength?: number | undefined;
2803
3042
  prefix?: import("./TranslationConfig").TranslationConfig | undefined;
@@ -2815,14 +3054,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2815
3054
  };
2816
3055
  signaturePromptLabel: import("./TranslationConfig").TranslationConfig;
2817
3056
  parent?: {
2818
- _fieldId?: string | undefined;
3057
+ $$field: string;
2819
3058
  } | undefined;
2820
3059
  validation?: {
2821
3060
  message: import("./TranslationConfig").TranslationConfig;
2822
3061
  validator: import(".").JSONSchema;
2823
3062
  }[] | undefined;
2824
3063
  required?: boolean | undefined;
2825
- defaultValue?: string | number | boolean | undefined;
2826
3064
  conditionals?: ({
2827
3065
  type: "SHOW";
2828
3066
  conditional: import(".").JSONSchema;
@@ -2834,20 +3072,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2834
3072
  conditional: import(".").JSONSchema;
2835
3073
  })[] | undefined;
2836
3074
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3075
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2837
3076
  hideLabel?: boolean | undefined;
3077
+ defaultValue?: string | undefined;
2838
3078
  } | {
2839
3079
  type: "EMAIL";
2840
3080
  id: string;
2841
3081
  label: import("./TranslationConfig").TranslationConfig;
2842
3082
  parent?: {
2843
- _fieldId?: string | undefined;
3083
+ $$field: string;
2844
3084
  } | undefined;
2845
3085
  validation?: {
2846
3086
  message: import("./TranslationConfig").TranslationConfig;
2847
3087
  validator: import(".").JSONSchema;
2848
3088
  }[] | undefined;
2849
3089
  required?: boolean | undefined;
2850
- defaultValue?: string | undefined;
2851
3090
  conditionals?: ({
2852
3091
  type: "SHOW";
2853
3092
  conditional: import(".").JSONSchema;
@@ -2859,7 +3098,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2859
3098
  conditional: import(".").JSONSchema;
2860
3099
  })[] | undefined;
2861
3100
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3101
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2862
3102
  hideLabel?: boolean | undefined;
3103
+ defaultValue?: string | undefined;
2863
3104
  configuration?: {
2864
3105
  maxLength?: number | undefined;
2865
3106
  } | undefined;
@@ -2868,14 +3109,42 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2868
3109
  id: string;
2869
3110
  label: import("./TranslationConfig").TranslationConfig;
2870
3111
  parent?: {
2871
- _fieldId?: string | undefined;
3112
+ $$field: string;
2872
3113
  } | undefined;
2873
3114
  validation?: {
2874
3115
  message: import("./TranslationConfig").TranslationConfig;
2875
3116
  validator: import(".").JSONSchema;
2876
3117
  }[] | undefined;
2877
3118
  required?: boolean | undefined;
3119
+ conditionals?: ({
3120
+ type: "SHOW";
3121
+ conditional: import(".").JSONSchema;
3122
+ } | {
3123
+ type: "ENABLE";
3124
+ conditional: import(".").JSONSchema;
3125
+ } | {
3126
+ type: "DISPLAY_ON_REVIEW";
3127
+ conditional: import(".").JSONSchema;
3128
+ })[] | undefined;
3129
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3130
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3131
+ hideLabel?: boolean | undefined;
2878
3132
  defaultValue?: string | undefined;
3133
+ configuration?: {
3134
+ notice?: import("./TranslationConfig").TranslationConfig | undefined;
3135
+ } | undefined;
3136
+ } | {
3137
+ type: "DATE_RANGE";
3138
+ id: string;
3139
+ label: import("./TranslationConfig").TranslationConfig;
3140
+ parent?: {
3141
+ $$field: string;
3142
+ } | undefined;
3143
+ validation?: {
3144
+ message: import("./TranslationConfig").TranslationConfig;
3145
+ validator: import(".").JSONSchema;
3146
+ }[] | undefined;
3147
+ required?: boolean | undefined;
2879
3148
  conditionals?: ({
2880
3149
  type: "SHOW";
2881
3150
  conditional: import(".").JSONSchema;
@@ -2887,7 +3156,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2887
3156
  conditional: import(".").JSONSchema;
2888
3157
  })[] | undefined;
2889
3158
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3159
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2890
3160
  hideLabel?: boolean | undefined;
3161
+ defaultValue?: string | [string, string] | undefined;
2891
3162
  configuration?: {
2892
3163
  notice?: import("./TranslationConfig").TranslationConfig | undefined;
2893
3164
  } | undefined;
@@ -2898,17 +3169,17 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2898
3169
  configuration: {
2899
3170
  styles?: {
2900
3171
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
3172
+ hint?: boolean | undefined;
2901
3173
  } | undefined;
2902
3174
  };
2903
3175
  parent?: {
2904
- _fieldId?: string | undefined;
3176
+ $$field: string;
2905
3177
  } | undefined;
2906
3178
  validation?: {
2907
3179
  message: import("./TranslationConfig").TranslationConfig;
2908
3180
  validator: import(".").JSONSchema;
2909
3181
  }[] | undefined;
2910
3182
  required?: boolean | undefined;
2911
- defaultValue?: string | undefined;
2912
3183
  conditionals?: ({
2913
3184
  type: "SHOW";
2914
3185
  conditional: import(".").JSONSchema;
@@ -2920,20 +3191,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2920
3191
  conditional: import(".").JSONSchema;
2921
3192
  })[] | undefined;
2922
3193
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3194
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2923
3195
  hideLabel?: boolean | undefined;
3196
+ defaultValue?: string | undefined;
2924
3197
  } | {
2925
3198
  type: "PAGE_HEADER";
2926
3199
  id: string;
2927
3200
  label: import("./TranslationConfig").TranslationConfig;
2928
3201
  parent?: {
2929
- _fieldId?: string | undefined;
3202
+ $$field: string;
2930
3203
  } | undefined;
2931
3204
  validation?: {
2932
3205
  message: import("./TranslationConfig").TranslationConfig;
2933
3206
  validator: import(".").JSONSchema;
2934
3207
  }[] | undefined;
2935
3208
  required?: boolean | undefined;
2936
- defaultValue?: string | undefined;
2937
3209
  conditionals?: ({
2938
3210
  type: "SHOW";
2939
3211
  conditional: import(".").JSONSchema;
@@ -2945,7 +3217,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2945
3217
  conditional: import(".").JSONSchema;
2946
3218
  })[] | undefined;
2947
3219
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3220
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2948
3221
  hideLabel?: boolean | undefined;
3222
+ defaultValue?: string | undefined;
2949
3223
  } | {
2950
3224
  type: "FILE";
2951
3225
  id: string;
@@ -2959,14 +3233,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2959
3233
  fileName?: import("./TranslationConfig").TranslationConfig | undefined;
2960
3234
  };
2961
3235
  parent?: {
2962
- _fieldId?: string | undefined;
3236
+ $$field: string;
2963
3237
  } | undefined;
2964
3238
  validation?: {
2965
3239
  message: import("./TranslationConfig").TranslationConfig;
2966
3240
  validator: import(".").JSONSchema;
2967
3241
  }[] | undefined;
2968
3242
  required?: boolean | undefined;
2969
- defaultValue?: string | number | boolean | undefined;
2970
3243
  conditionals?: ({
2971
3244
  type: "SHOW";
2972
3245
  conditional: import(".").JSONSchema;
@@ -2978,7 +3251,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2978
3251
  conditional: import(".").JSONSchema;
2979
3252
  })[] | undefined;
2980
3253
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3254
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
2981
3255
  hideLabel?: boolean | undefined;
3256
+ defaultValue?: {
3257
+ type: string;
3258
+ filename: string;
3259
+ originalFilename: string;
3260
+ } | undefined;
2982
3261
  } | {
2983
3262
  type: "RADIO_GROUP";
2984
3263
  id: string;
@@ -2988,14 +3267,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
2988
3267
  }[];
2989
3268
  label: import("./TranslationConfig").TranslationConfig;
2990
3269
  parent?: {
2991
- _fieldId?: string | undefined;
3270
+ $$field: string;
2992
3271
  } | undefined;
2993
3272
  validation?: {
2994
3273
  message: import("./TranslationConfig").TranslationConfig;
2995
3274
  validator: import(".").JSONSchema;
2996
3275
  }[] | undefined;
2997
3276
  required?: boolean | undefined;
2998
- defaultValue?: string | undefined;
2999
3277
  conditionals?: ({
3000
3278
  type: "SHOW";
3001
3279
  conditional: import(".").JSONSchema;
@@ -3007,7 +3285,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3007
3285
  conditional: import(".").JSONSchema;
3008
3286
  })[] | undefined;
3009
3287
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3288
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3010
3289
  hideLabel?: boolean | undefined;
3290
+ defaultValue?: string | undefined;
3011
3291
  configuration?: {
3012
3292
  styles?: {
3013
3293
  size?: "NORMAL" | "LARGE" | undefined;
@@ -3024,14 +3304,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3024
3304
  };
3025
3305
  items: import("./TranslationConfig").TranslationConfig[];
3026
3306
  parent?: {
3027
- _fieldId?: string | undefined;
3307
+ $$field: string;
3028
3308
  } | undefined;
3029
3309
  validation?: {
3030
3310
  message: import("./TranslationConfig").TranslationConfig;
3031
3311
  validator: import(".").JSONSchema;
3032
3312
  }[] | undefined;
3033
3313
  required?: boolean | undefined;
3034
- defaultValue?: string | undefined;
3035
3314
  conditionals?: ({
3036
3315
  type: "SHOW";
3037
3316
  conditional: import(".").JSONSchema;
@@ -3043,7 +3322,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3043
3322
  conditional: import(".").JSONSchema;
3044
3323
  })[] | undefined;
3045
3324
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3325
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3046
3326
  hideLabel?: boolean | undefined;
3327
+ defaultValue?: string | undefined;
3047
3328
  } | {
3048
3329
  type: "SELECT";
3049
3330
  id: string;
@@ -3053,14 +3334,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3053
3334
  }[];
3054
3335
  label: import("./TranslationConfig").TranslationConfig;
3055
3336
  parent?: {
3056
- _fieldId?: string | undefined;
3337
+ $$field: string;
3057
3338
  } | undefined;
3058
3339
  validation?: {
3059
3340
  message: import("./TranslationConfig").TranslationConfig;
3060
3341
  validator: import(".").JSONSchema;
3061
3342
  }[] | undefined;
3062
3343
  required?: boolean | undefined;
3063
- defaultValue?: string | undefined;
3064
3344
  conditionals?: ({
3065
3345
  type: "SHOW";
3066
3346
  conditional: import(".").JSONSchema;
@@ -3072,20 +3352,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3072
3352
  conditional: import(".").JSONSchema;
3073
3353
  })[] | undefined;
3074
3354
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3355
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3075
3356
  hideLabel?: boolean | undefined;
3357
+ defaultValue?: string | undefined;
3076
3358
  } | {
3077
3359
  type: "CHECKBOX";
3078
3360
  id: string;
3079
3361
  label: import("./TranslationConfig").TranslationConfig;
3080
3362
  parent?: {
3081
- _fieldId?: string | undefined;
3363
+ $$field: string;
3082
3364
  } | undefined;
3083
3365
  validation?: {
3084
3366
  message: import("./TranslationConfig").TranslationConfig;
3085
3367
  validator: import(".").JSONSchema;
3086
3368
  }[] | undefined;
3087
3369
  required?: boolean | undefined;
3088
- defaultValue?: boolean | undefined;
3089
3370
  conditionals?: ({
3090
3371
  type: "SHOW";
3091
3372
  conditional: import(".").JSONSchema;
@@ -3097,20 +3378,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3097
3378
  conditional: import(".").JSONSchema;
3098
3379
  })[] | undefined;
3099
3380
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3381
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3100
3382
  hideLabel?: boolean | undefined;
3383
+ defaultValue?: boolean | undefined;
3101
3384
  } | {
3102
3385
  type: "COUNTRY";
3103
3386
  id: string;
3104
3387
  label: import("./TranslationConfig").TranslationConfig;
3105
3388
  parent?: {
3106
- _fieldId?: string | undefined;
3389
+ $$field: string;
3107
3390
  } | undefined;
3108
3391
  validation?: {
3109
3392
  message: import("./TranslationConfig").TranslationConfig;
3110
3393
  validator: import(".").JSONSchema;
3111
3394
  }[] | undefined;
3112
3395
  required?: boolean | undefined;
3113
- defaultValue?: string | undefined;
3114
3396
  conditionals?: ({
3115
3397
  type: "SHOW";
3116
3398
  conditional: import(".").JSONSchema;
@@ -3122,7 +3404,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3122
3404
  conditional: import(".").JSONSchema;
3123
3405
  })[] | undefined;
3124
3406
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3407
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3125
3408
  hideLabel?: boolean | undefined;
3409
+ defaultValue?: string | undefined;
3126
3410
  } | {
3127
3411
  type: "ADMINISTRATIVE_AREA";
3128
3412
  id: string;
@@ -3134,14 +3418,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3134
3418
  } | undefined;
3135
3419
  };
3136
3420
  parent?: {
3137
- _fieldId?: string | undefined;
3421
+ $$field: string;
3138
3422
  } | undefined;
3139
3423
  validation?: {
3140
3424
  message: import("./TranslationConfig").TranslationConfig;
3141
3425
  validator: import(".").JSONSchema;
3142
3426
  }[] | undefined;
3143
3427
  required?: boolean | undefined;
3144
- defaultValue?: string | undefined;
3145
3428
  conditionals?: ({
3146
3429
  type: "SHOW";
3147
3430
  conditional: import(".").JSONSchema;
@@ -3153,20 +3436,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3153
3436
  conditional: import(".").JSONSchema;
3154
3437
  })[] | undefined;
3155
3438
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3439
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3156
3440
  hideLabel?: boolean | undefined;
3441
+ defaultValue?: string | undefined;
3157
3442
  } | {
3158
3443
  type: "LOCATION";
3159
3444
  id: string;
3160
3445
  label: import("./TranslationConfig").TranslationConfig;
3161
3446
  parent?: {
3162
- _fieldId?: string | undefined;
3447
+ $$field: string;
3163
3448
  } | undefined;
3164
3449
  validation?: {
3165
3450
  message: import("./TranslationConfig").TranslationConfig;
3166
3451
  validator: import(".").JSONSchema;
3167
3452
  }[] | undefined;
3168
3453
  required?: boolean | undefined;
3169
- defaultValue?: string | undefined;
3170
3454
  conditionals?: ({
3171
3455
  type: "SHOW";
3172
3456
  conditional: import(".").JSONSchema;
@@ -3178,7 +3462,9 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3178
3462
  conditional: import(".").JSONSchema;
3179
3463
  })[] | undefined;
3180
3464
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3465
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3181
3466
  hideLabel?: boolean | undefined;
3467
+ defaultValue?: string | undefined;
3182
3468
  } | {
3183
3469
  type: "FILE_WITH_OPTIONS";
3184
3470
  id: string;
@@ -3192,14 +3478,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3192
3478
  acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
3193
3479
  };
3194
3480
  parent?: {
3195
- _fieldId?: string | undefined;
3481
+ $$field: string;
3196
3482
  } | undefined;
3197
3483
  validation?: {
3198
3484
  message: import("./TranslationConfig").TranslationConfig;
3199
3485
  validator: import(".").JSONSchema;
3200
3486
  }[] | undefined;
3201
3487
  required?: boolean | undefined;
3202
- defaultValue?: string | number | boolean | undefined;
3203
3488
  conditionals?: ({
3204
3489
  type: "SHOW";
3205
3490
  conditional: import(".").JSONSchema;
@@ -3211,20 +3496,26 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3211
3496
  conditional: import(".").JSONSchema;
3212
3497
  })[] | undefined;
3213
3498
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3499
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3214
3500
  hideLabel?: boolean | undefined;
3501
+ defaultValue?: {
3502
+ type: string;
3503
+ option: string;
3504
+ filename: string;
3505
+ originalFilename: string;
3506
+ }[] | undefined;
3215
3507
  } | {
3216
3508
  type: "FACILITY";
3217
3509
  id: string;
3218
3510
  label: import("./TranslationConfig").TranslationConfig;
3219
3511
  parent?: {
3220
- _fieldId?: string | undefined;
3512
+ $$field: string;
3221
3513
  } | undefined;
3222
3514
  validation?: {
3223
3515
  message: import("./TranslationConfig").TranslationConfig;
3224
3516
  validator: import(".").JSONSchema;
3225
3517
  }[] | undefined;
3226
3518
  required?: boolean | undefined;
3227
- defaultValue?: string | undefined;
3228
3519
  conditionals?: ({
3229
3520
  type: "SHOW";
3230
3521
  conditional: import(".").JSONSchema;
@@ -3236,20 +3527,21 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3236
3527
  conditional: import(".").JSONSchema;
3237
3528
  })[] | undefined;
3238
3529
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3530
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3239
3531
  hideLabel?: boolean | undefined;
3532
+ defaultValue?: string | undefined;
3240
3533
  } | {
3241
3534
  type: "OFFICE";
3242
3535
  id: string;
3243
3536
  label: import("./TranslationConfig").TranslationConfig;
3244
3537
  parent?: {
3245
- _fieldId?: string | undefined;
3538
+ $$field: string;
3246
3539
  } | undefined;
3247
3540
  validation?: {
3248
3541
  message: import("./TranslationConfig").TranslationConfig;
3249
3542
  validator: import(".").JSONSchema;
3250
3543
  }[] | undefined;
3251
3544
  required?: boolean | undefined;
3252
- defaultValue?: string | undefined;
3253
3545
  conditionals?: ({
3254
3546
  type: "SHOW";
3255
3547
  conditional: import(".").JSONSchema;
@@ -3261,19 +3553,34 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3261
3553
  conditional: import(".").JSONSchema;
3262
3554
  })[] | undefined;
3263
3555
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3556
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3264
3557
  hideLabel?: boolean | undefined;
3558
+ defaultValue?: string | undefined;
3265
3559
  } | {
3266
3560
  type: "ADDRESS";
3267
3561
  id: string;
3268
3562
  label: import("./TranslationConfig").TranslationConfig;
3269
3563
  parent?: {
3270
- _fieldId?: string | undefined;
3564
+ $$field: string;
3271
3565
  } | undefined;
3272
3566
  validation?: {
3273
3567
  message: import("./TranslationConfig").TranslationConfig;
3274
3568
  validator: import(".").JSONSchema;
3275
3569
  }[] | undefined;
3276
3570
  required?: boolean | undefined;
3571
+ conditionals?: ({
3572
+ type: "SHOW";
3573
+ conditional: import(".").JSONSchema;
3574
+ } | {
3575
+ type: "ENABLE";
3576
+ conditional: import(".").JSONSchema;
3577
+ } | {
3578
+ type: "DISPLAY_ON_REVIEW";
3579
+ conditional: import(".").JSONSchema;
3580
+ })[] | undefined;
3581
+ placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3582
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3583
+ hideLabel?: boolean | undefined;
3277
3584
  defaultValue?: {
3278
3585
  country: string;
3279
3586
  district: string;
@@ -3303,18 +3610,6 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3303
3610
  addressLine3?: string | undefined;
3304
3611
  postcodeOrZip?: string | undefined;
3305
3612
  } | undefined;
3306
- conditionals?: ({
3307
- type: "SHOW";
3308
- conditional: import(".").JSONSchema;
3309
- } | {
3310
- type: "ENABLE";
3311
- conditional: import(".").JSONSchema;
3312
- } | {
3313
- type: "DISPLAY_ON_REVIEW";
3314
- conditional: import(".").JSONSchema;
3315
- })[] | undefined;
3316
- placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3317
- hideLabel?: boolean | undefined;
3318
3613
  } | {
3319
3614
  type: "DATA";
3320
3615
  id: string;
@@ -3329,14 +3624,13 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3329
3624
  subtitle?: import("./TranslationConfig").TranslationConfig | undefined;
3330
3625
  };
3331
3626
  parent?: {
3332
- _fieldId?: string | undefined;
3627
+ $$field: string;
3333
3628
  } | undefined;
3334
3629
  validation?: {
3335
3630
  message: import("./TranslationConfig").TranslationConfig;
3336
3631
  validator: import(".").JSONSchema;
3337
3632
  }[] | undefined;
3338
3633
  required?: boolean | undefined;
3339
- defaultValue?: string | number | boolean | undefined;
3340
3634
  conditionals?: ({
3341
3635
  type: "SHOW";
3342
3636
  conditional: import(".").JSONSchema;
@@ -3348,11 +3642,49 @@ export declare function getActionReviewFields(configuration: EventConfig, action
3348
3642
  conditional: import(".").JSONSchema;
3349
3643
  })[] | undefined;
3350
3644
  placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
3645
+ helperText?: import("./TranslationConfig").TranslationConfig | undefined;
3351
3646
  hideLabel?: boolean | undefined;
3352
3647
  })[];
3353
3648
  export declare function isPageVisible(page: PageConfig, formValues: ActionUpdate): boolean;
3354
3649
  export declare function omitHiddenFields<T extends EventState | ActionUpdate>(fields: FieldConfig[], values: T, visibleVerificationPageIds?: string[]): Partial<T>;
3355
- export declare function omitHiddenPaginatedFields(formConfig: FormConfig, declaration: EventState): Partial<EventState>;
3650
+ export declare function omitHiddenPaginatedFields(formConfig: FormConfig, declaration: EventState): Partial<Record<string, string | number | boolean | {
3651
+ type: string;
3652
+ filename: string;
3653
+ originalFilename: string;
3654
+ } | {
3655
+ country: string;
3656
+ district: string;
3657
+ addressType: "DOMESTIC";
3658
+ province: string;
3659
+ urbanOrRural: "URBAN";
3660
+ number?: string | undefined;
3661
+ town?: string | undefined;
3662
+ residentialArea?: string | undefined;
3663
+ street?: string | undefined;
3664
+ zipCode?: string | undefined;
3665
+ } | {
3666
+ country: string;
3667
+ district: string;
3668
+ addressType: "DOMESTIC";
3669
+ province: string;
3670
+ urbanOrRural: "RURAL";
3671
+ village?: string | undefined;
3672
+ } | {
3673
+ country: string;
3674
+ state: string;
3675
+ addressType: "INTERNATIONAL";
3676
+ district2: string;
3677
+ cityOrTown?: string | undefined;
3678
+ addressLine1?: string | undefined;
3679
+ addressLine2?: string | undefined;
3680
+ addressLine3?: string | undefined;
3681
+ postcodeOrZip?: string | undefined;
3682
+ } | {
3683
+ type: string;
3684
+ option: string;
3685
+ filename: string;
3686
+ originalFilename: string;
3687
+ }[] | [string, string] | undefined>>;
3356
3688
  export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]): {
3357
3689
  id: string;
3358
3690
  transactionId: string;
@@ -3402,7 +3734,9 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
3402
3734
  option: string;
3403
3735
  filename: string;
3404
3736
  originalFilename: string;
3405
- }[] | undefined>;
3737
+ }[] | [string, string] | undefined>;
3738
+ createdBySignature?: string | null | undefined;
3739
+ createdAtLocation?: string | null | undefined;
3406
3740
  annotation?: Record<string, string | number | boolean | {
3407
3741
  type: string;
3408
3742
  filename: string;
@@ -3440,26 +3774,11 @@ export declare function findActiveDrafts(event: EventDocument, drafts: Draft[]):
3440
3774
  option: string;
3441
3775
  filename: string;
3442
3776
  originalFilename: string;
3443
- }[] | undefined> | undefined;
3444
- createdAtLocation?: string | undefined;
3445
- updatedAtLocation?: string | undefined;
3777
+ }[] | [string, string] | undefined> | undefined;
3446
3778
  originalActionId?: string | undefined;
3447
3779
  };
3448
3780
  }[];
3449
- export declare function createEmptyDraft(eventId: string, draftId: string, actionType: ActionType): {
3450
- id: string;
3451
- eventId: string;
3452
- createdAt: string;
3453
- transactionId: import("../uuid").UUID;
3454
- action: {
3455
- type: ActionType;
3456
- declaration: {};
3457
- annotation: {};
3458
- createdAt: string;
3459
- createdBy: string;
3460
- createdAtLocation: string;
3461
- };
3462
- };
3781
+ export declare function createEmptyDraft(eventId: string, draftId: string, actionType: ActionType): Draft;
3463
3782
  export declare function isVerificationPage(page: PageConfig): page is VerificationPageConfig;
3464
3783
  export declare function getVisibleVerificationPageIds(pages: PageConfig[], annotation: ActionUpdate): string[];
3465
3784
  export declare function getActionVerificationPageIds(actionConfig: ActionConfig, annotation: ActionUpdate): string[];
@@ -3529,9 +3848,9 @@ export declare function omitHiddenAnnotationFields(actionConfig: ActionConfig, d
3529
3848
  option: string;
3530
3849
  filename: string;
3531
3850
  originalFilename: string;
3532
- }[] | undefined;
3851
+ }[] | [string, string] | undefined;
3533
3852
  }>;
3534
- export declare function deepMerge<T extends Record<string, unknown>>(currentDocument: T, actionDocument: T): T;
3853
+ export declare function deepMerge<T extends Record<string, unknown>, K extends Record<string, unknown>>(currentDocument: T, actionDocument: K): T & K;
3535
3854
  export declare function findLastAssignmentAction(actions: Action[]): Action | undefined;
3536
3855
  /** Tell compiler that accessing record with arbitrary key might result to undefined
3537
3856
  * Use when you **cannot guarantee** that key exists in the record
@@ -3544,4 +3863,13 @@ export declare function isWriteAction(actionType: ActionType): boolean;
3544
3863
  * @returns All the fields in the event configuration.
3545
3864
  */
3546
3865
  export declare const findAllFields: (config: EventConfig) => FieldConfig[];
3866
+ /**
3867
+ * Returns the value of the object at the given path with the ability of resolving mixed paths. See examples.
3868
+ *
3869
+ * @param obj Entity we want to get the value from
3870
+ * @param path property path e.g. `a.b.c`
3871
+ * @param defaultValue
3872
+ * @returns the value of the object at the given path.
3873
+ */
3874
+ export declare function getMixedPath<T = unknown>(obj: Record<string, unknown>, path: string, defaultValue?: T | undefined): T | undefined;
3547
3875
  //# sourceMappingURL=utils.d.ts.map