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