@opencrvs/toolkit 1.8.0-rc.f9fb039 → 1.8.0-rc.fa564ca

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