@opencrvs/toolkit 1.8.0-rc.feef45c → 1.8.0-rc.ff0a1b5
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 +679 -332
- package/dist/commons/events/ActionConfig.d.ts +4879 -1232
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +34 -36
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +2711 -967
- package/dist/commons/events/EventDocument.d.ts +241 -312
- package/dist/commons/events/EventIndex.d.ts +817 -279
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +267 -3
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +2279 -629
- package/dist/commons/events/PageConfig.d.ts +406 -0
- package/dist/commons/events/SummaryConfig.d.ts +17 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +1222 -8
- package/dist/commons/events/defineConfig.d.ts +283 -2
- package/dist/commons/events/event.d.ts +3 -1
- package/dist/commons/events/field.d.ts +3 -3
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +193 -21
- package/dist/events/index.js +1141 -774
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -106,12 +106,18 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
106
106
|
}>, "many">>>;
|
107
107
|
}, {
|
108
108
|
fieldId: z.ZodString;
|
109
|
+
label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
110
|
+
id: string;
|
111
|
+
description: string;
|
112
|
+
defaultMessage: string;
|
113
|
+
}>>;
|
109
114
|
}>, "strip", z.ZodTypeAny, {
|
110
115
|
fieldId: string;
|
111
116
|
conditionals?: {
|
112
117
|
type: "SHOW";
|
113
118
|
conditional: import(".").JSONSchema;
|
114
119
|
}[] | undefined;
|
120
|
+
label?: TranslationConfig | undefined;
|
115
121
|
emptyValueMessage?: TranslationConfig | undefined;
|
116
122
|
}, {
|
117
123
|
fieldId: string;
|
@@ -119,6 +125,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
119
125
|
type: "SHOW";
|
120
126
|
conditional: import(".").JSONSchema;
|
121
127
|
}[] | undefined;
|
128
|
+
label?: {
|
129
|
+
id: string;
|
130
|
+
description: string;
|
131
|
+
defaultMessage: string;
|
132
|
+
} | undefined;
|
122
133
|
emptyValueMessage?: {
|
123
134
|
id: string;
|
124
135
|
description: string;
|
@@ -132,6 +143,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
132
143
|
type: "SHOW";
|
133
144
|
conditional: import(".").JSONSchema;
|
134
145
|
}[] | undefined;
|
146
|
+
label?: TranslationConfig | undefined;
|
135
147
|
emptyValueMessage?: TranslationConfig | undefined;
|
136
148
|
} | {
|
137
149
|
id: string;
|
@@ -150,6 +162,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
150
162
|
type: "SHOW";
|
151
163
|
conditional: import(".").JSONSchema;
|
152
164
|
}[] | undefined;
|
165
|
+
label?: {
|
166
|
+
id: string;
|
167
|
+
description: string;
|
168
|
+
defaultMessage: string;
|
169
|
+
} | undefined;
|
153
170
|
emptyValueMessage?: {
|
154
171
|
id: string;
|
155
172
|
description: string;
|
@@ -1096,6 +1113,137 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1096
1113
|
defaultMessage: string;
|
1097
1114
|
}>;
|
1098
1115
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1116
|
+
}, {
|
1117
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
1118
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
1119
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
1120
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1121
|
+
id: string;
|
1122
|
+
description: string;
|
1123
|
+
defaultMessage: string;
|
1124
|
+
}>>;
|
1125
|
+
}, "strip", z.ZodTypeAny, {
|
1126
|
+
notice?: TranslationConfig | undefined;
|
1127
|
+
}, {
|
1128
|
+
notice?: {
|
1129
|
+
id: string;
|
1130
|
+
description: string;
|
1131
|
+
defaultMessage: string;
|
1132
|
+
} | undefined;
|
1133
|
+
}>>;
|
1134
|
+
}>, "strip", z.ZodTypeAny, {
|
1135
|
+
type: "DATE_RANGE";
|
1136
|
+
id: string;
|
1137
|
+
label: TranslationConfig;
|
1138
|
+
parent?: {
|
1139
|
+
_fieldId?: string | undefined;
|
1140
|
+
} | undefined;
|
1141
|
+
validation?: {
|
1142
|
+
message: TranslationConfig;
|
1143
|
+
validator: import(".").JSONSchema;
|
1144
|
+
}[] | undefined;
|
1145
|
+
required?: boolean | undefined;
|
1146
|
+
defaultValue?: string | [string, string] | undefined;
|
1147
|
+
conditionals?: ({
|
1148
|
+
type: "SHOW";
|
1149
|
+
conditional: import(".").JSONSchema;
|
1150
|
+
} | {
|
1151
|
+
type: "ENABLE";
|
1152
|
+
conditional: import(".").JSONSchema;
|
1153
|
+
} | {
|
1154
|
+
type: "DISPLAY_ON_REVIEW";
|
1155
|
+
conditional: import(".").JSONSchema;
|
1156
|
+
})[] | undefined;
|
1157
|
+
placeholder?: TranslationConfig | undefined;
|
1158
|
+
hideLabel?: boolean | undefined;
|
1159
|
+
configuration?: {
|
1160
|
+
notice?: TranslationConfig | undefined;
|
1161
|
+
} | undefined;
|
1162
|
+
}, {
|
1163
|
+
type: "DATE_RANGE";
|
1164
|
+
id: string;
|
1165
|
+
label: {
|
1166
|
+
id: string;
|
1167
|
+
description: string;
|
1168
|
+
defaultMessage: string;
|
1169
|
+
};
|
1170
|
+
parent?: {
|
1171
|
+
_fieldId?: string | undefined;
|
1172
|
+
} | undefined;
|
1173
|
+
validation?: {
|
1174
|
+
message: {
|
1175
|
+
id: string;
|
1176
|
+
description: string;
|
1177
|
+
defaultMessage: string;
|
1178
|
+
};
|
1179
|
+
validator: import(".").JSONSchema;
|
1180
|
+
}[] | undefined;
|
1181
|
+
required?: boolean | undefined;
|
1182
|
+
defaultValue?: string | [string, string] | undefined;
|
1183
|
+
conditionals?: ({
|
1184
|
+
type: "SHOW";
|
1185
|
+
conditional: import(".").JSONSchema;
|
1186
|
+
} | {
|
1187
|
+
type: "ENABLE";
|
1188
|
+
conditional: import(".").JSONSchema;
|
1189
|
+
} | {
|
1190
|
+
type: "DISPLAY_ON_REVIEW";
|
1191
|
+
conditional: import(".").JSONSchema;
|
1192
|
+
})[] | undefined;
|
1193
|
+
placeholder?: {
|
1194
|
+
id: string;
|
1195
|
+
description: string;
|
1196
|
+
defaultMessage: string;
|
1197
|
+
} | undefined;
|
1198
|
+
hideLabel?: boolean | undefined;
|
1199
|
+
configuration?: {
|
1200
|
+
notice?: {
|
1201
|
+
id: string;
|
1202
|
+
description: string;
|
1203
|
+
defaultMessage: string;
|
1204
|
+
} | undefined;
|
1205
|
+
} | undefined;
|
1206
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1207
|
+
id: z.ZodString;
|
1208
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
1209
|
+
parent: z.ZodOptional<z.ZodObject<{
|
1210
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
1211
|
+
}, "strip", z.ZodTypeAny, {
|
1212
|
+
_fieldId?: string | undefined;
|
1213
|
+
}, {
|
1214
|
+
_fieldId?: string | undefined;
|
1215
|
+
}>>;
|
1216
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1217
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1218
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1219
|
+
id: string;
|
1220
|
+
description: string;
|
1221
|
+
defaultMessage: string;
|
1222
|
+
}>>;
|
1223
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
1224
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
1225
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1226
|
+
id: string;
|
1227
|
+
description: string;
|
1228
|
+
defaultMessage: string;
|
1229
|
+
}>;
|
1230
|
+
}, "strip", z.ZodTypeAny, {
|
1231
|
+
message: TranslationConfig;
|
1232
|
+
validator: import(".").JSONSchema;
|
1233
|
+
}, {
|
1234
|
+
message: {
|
1235
|
+
id: string;
|
1236
|
+
description: string;
|
1237
|
+
defaultMessage: string;
|
1238
|
+
};
|
1239
|
+
validator: import(".").JSONSchema;
|
1240
|
+
}>, "many">>>;
|
1241
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1242
|
+
id: string;
|
1243
|
+
description: string;
|
1244
|
+
defaultMessage: string;
|
1245
|
+
}>;
|
1246
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1099
1247
|
}, {
|
1100
1248
|
type: z.ZodLiteral<"PARAGRAPH">;
|
1101
1249
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -3490,6 +3638,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
3490
3638
|
configuration?: {
|
3491
3639
|
notice?: TranslationConfig | undefined;
|
3492
3640
|
} | undefined;
|
3641
|
+
} | {
|
3642
|
+
type: "DATE_RANGE";
|
3643
|
+
id: string;
|
3644
|
+
label: TranslationConfig;
|
3645
|
+
parent?: {
|
3646
|
+
_fieldId?: string | undefined;
|
3647
|
+
} | undefined;
|
3648
|
+
validation?: {
|
3649
|
+
message: TranslationConfig;
|
3650
|
+
validator: import(".").JSONSchema;
|
3651
|
+
}[] | undefined;
|
3652
|
+
required?: boolean | undefined;
|
3653
|
+
defaultValue?: string | [string, string] | undefined;
|
3654
|
+
conditionals?: ({
|
3655
|
+
type: "SHOW";
|
3656
|
+
conditional: import(".").JSONSchema;
|
3657
|
+
} | {
|
3658
|
+
type: "ENABLE";
|
3659
|
+
conditional: import(".").JSONSchema;
|
3660
|
+
} | {
|
3661
|
+
type: "DISPLAY_ON_REVIEW";
|
3662
|
+
conditional: import(".").JSONSchema;
|
3663
|
+
})[] | undefined;
|
3664
|
+
placeholder?: TranslationConfig | undefined;
|
3665
|
+
hideLabel?: boolean | undefined;
|
3666
|
+
configuration?: {
|
3667
|
+
notice?: TranslationConfig | undefined;
|
3668
|
+
} | undefined;
|
3493
3669
|
} | {
|
3494
3670
|
type: "PARAGRAPH";
|
3495
3671
|
id: string;
|
@@ -4279,49 +4455,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
4279
4455
|
} | undefined;
|
4280
4456
|
} | undefined;
|
4281
4457
|
} | {
|
4282
|
-
type: "
|
4283
|
-
id: string;
|
4284
|
-
label: {
|
4285
|
-
id: string;
|
4286
|
-
description: string;
|
4287
|
-
defaultMessage: string;
|
4288
|
-
};
|
4289
|
-
parent?: {
|
4290
|
-
_fieldId?: string | undefined;
|
4291
|
-
} | undefined;
|
4292
|
-
validation?: {
|
4293
|
-
message: {
|
4294
|
-
id: string;
|
4295
|
-
description: string;
|
4296
|
-
defaultMessage: string;
|
4297
|
-
};
|
4298
|
-
validator: import(".").JSONSchema;
|
4299
|
-
}[] | undefined;
|
4300
|
-
required?: boolean | undefined;
|
4301
|
-
defaultValue?: string | undefined;
|
4302
|
-
conditionals?: ({
|
4303
|
-
type: "SHOW";
|
4304
|
-
conditional: import(".").JSONSchema;
|
4305
|
-
} | {
|
4306
|
-
type: "ENABLE";
|
4307
|
-
conditional: import(".").JSONSchema;
|
4308
|
-
} | {
|
4309
|
-
type: "DISPLAY_ON_REVIEW";
|
4310
|
-
conditional: import(".").JSONSchema;
|
4311
|
-
})[] | undefined;
|
4312
|
-
placeholder?: {
|
4313
|
-
id: string;
|
4314
|
-
description: string;
|
4315
|
-
defaultMessage: string;
|
4316
|
-
} | undefined;
|
4317
|
-
hideLabel?: boolean | undefined;
|
4318
|
-
configuration?: {
|
4319
|
-
styles?: {
|
4320
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
4321
|
-
} | undefined;
|
4322
|
-
} | undefined;
|
4323
|
-
} | {
|
4324
|
-
type: "PAGE_HEADER";
|
4458
|
+
type: "DATE_RANGE";
|
4325
4459
|
id: string;
|
4326
4460
|
label: {
|
4327
4461
|
id: string;
|
@@ -4340,44 +4474,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
4340
4474
|
validator: import(".").JSONSchema;
|
4341
4475
|
}[] | undefined;
|
4342
4476
|
required?: boolean | undefined;
|
4343
|
-
defaultValue?: string | undefined;
|
4344
|
-
conditionals?: ({
|
4345
|
-
type: "SHOW";
|
4346
|
-
conditional: import(".").JSONSchema;
|
4347
|
-
} | {
|
4348
|
-
type: "ENABLE";
|
4349
|
-
conditional: import(".").JSONSchema;
|
4350
|
-
} | {
|
4351
|
-
type: "DISPLAY_ON_REVIEW";
|
4352
|
-
conditional: import(".").JSONSchema;
|
4353
|
-
})[] | undefined;
|
4354
|
-
placeholder?: {
|
4355
|
-
id: string;
|
4356
|
-
description: string;
|
4357
|
-
defaultMessage: string;
|
4358
|
-
} | undefined;
|
4359
|
-
hideLabel?: boolean | undefined;
|
4360
|
-
} | {
|
4361
|
-
type: "FILE";
|
4362
|
-
id: string;
|
4363
|
-
label: {
|
4364
|
-
id: string;
|
4365
|
-
description: string;
|
4366
|
-
defaultMessage: string;
|
4367
|
-
};
|
4368
|
-
parent?: {
|
4369
|
-
_fieldId?: string | undefined;
|
4370
|
-
} | undefined;
|
4371
|
-
validation?: {
|
4372
|
-
message: {
|
4373
|
-
id: string;
|
4374
|
-
description: string;
|
4375
|
-
defaultMessage: string;
|
4376
|
-
};
|
4377
|
-
validator: import(".").JSONSchema;
|
4378
|
-
}[] | undefined;
|
4379
|
-
required?: boolean | undefined;
|
4380
|
-
defaultValue?: string | number | boolean | undefined;
|
4477
|
+
defaultValue?: string | [string, string] | undefined;
|
4381
4478
|
conditionals?: ({
|
4382
4479
|
type: "SHOW";
|
4383
4480
|
conditional: import(".").JSONSchema;
|
@@ -4395,28 +4492,151 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
4395
4492
|
} | undefined;
|
4396
4493
|
hideLabel?: boolean | undefined;
|
4397
4494
|
configuration?: {
|
4398
|
-
|
4399
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4400
|
-
style?: {
|
4401
|
-
width?: "full" | "auto" | undefined;
|
4402
|
-
} | undefined;
|
4403
|
-
fileName?: {
|
4495
|
+
notice?: {
|
4404
4496
|
id: string;
|
4405
4497
|
description: string;
|
4406
4498
|
defaultMessage: string;
|
4407
4499
|
} | undefined;
|
4408
4500
|
} | undefined;
|
4409
4501
|
} | {
|
4410
|
-
type: "
|
4502
|
+
type: "PARAGRAPH";
|
4411
4503
|
id: string;
|
4412
|
-
|
4413
|
-
|
4414
|
-
|
4415
|
-
|
4416
|
-
|
4417
|
-
|
4418
|
-
|
4419
|
-
}
|
4504
|
+
label: {
|
4505
|
+
id: string;
|
4506
|
+
description: string;
|
4507
|
+
defaultMessage: string;
|
4508
|
+
};
|
4509
|
+
parent?: {
|
4510
|
+
_fieldId?: string | undefined;
|
4511
|
+
} | undefined;
|
4512
|
+
validation?: {
|
4513
|
+
message: {
|
4514
|
+
id: string;
|
4515
|
+
description: string;
|
4516
|
+
defaultMessage: string;
|
4517
|
+
};
|
4518
|
+
validator: import(".").JSONSchema;
|
4519
|
+
}[] | undefined;
|
4520
|
+
required?: boolean | undefined;
|
4521
|
+
defaultValue?: string | undefined;
|
4522
|
+
conditionals?: ({
|
4523
|
+
type: "SHOW";
|
4524
|
+
conditional: import(".").JSONSchema;
|
4525
|
+
} | {
|
4526
|
+
type: "ENABLE";
|
4527
|
+
conditional: import(".").JSONSchema;
|
4528
|
+
} | {
|
4529
|
+
type: "DISPLAY_ON_REVIEW";
|
4530
|
+
conditional: import(".").JSONSchema;
|
4531
|
+
})[] | undefined;
|
4532
|
+
placeholder?: {
|
4533
|
+
id: string;
|
4534
|
+
description: string;
|
4535
|
+
defaultMessage: string;
|
4536
|
+
} | undefined;
|
4537
|
+
hideLabel?: boolean | undefined;
|
4538
|
+
configuration?: {
|
4539
|
+
styles?: {
|
4540
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
4541
|
+
} | undefined;
|
4542
|
+
} | undefined;
|
4543
|
+
} | {
|
4544
|
+
type: "PAGE_HEADER";
|
4545
|
+
id: string;
|
4546
|
+
label: {
|
4547
|
+
id: string;
|
4548
|
+
description: string;
|
4549
|
+
defaultMessage: string;
|
4550
|
+
};
|
4551
|
+
parent?: {
|
4552
|
+
_fieldId?: string | undefined;
|
4553
|
+
} | undefined;
|
4554
|
+
validation?: {
|
4555
|
+
message: {
|
4556
|
+
id: string;
|
4557
|
+
description: string;
|
4558
|
+
defaultMessage: string;
|
4559
|
+
};
|
4560
|
+
validator: import(".").JSONSchema;
|
4561
|
+
}[] | undefined;
|
4562
|
+
required?: boolean | undefined;
|
4563
|
+
defaultValue?: string | undefined;
|
4564
|
+
conditionals?: ({
|
4565
|
+
type: "SHOW";
|
4566
|
+
conditional: import(".").JSONSchema;
|
4567
|
+
} | {
|
4568
|
+
type: "ENABLE";
|
4569
|
+
conditional: import(".").JSONSchema;
|
4570
|
+
} | {
|
4571
|
+
type: "DISPLAY_ON_REVIEW";
|
4572
|
+
conditional: import(".").JSONSchema;
|
4573
|
+
})[] | undefined;
|
4574
|
+
placeholder?: {
|
4575
|
+
id: string;
|
4576
|
+
description: string;
|
4577
|
+
defaultMessage: string;
|
4578
|
+
} | undefined;
|
4579
|
+
hideLabel?: boolean | undefined;
|
4580
|
+
} | {
|
4581
|
+
type: "FILE";
|
4582
|
+
id: string;
|
4583
|
+
label: {
|
4584
|
+
id: string;
|
4585
|
+
description: string;
|
4586
|
+
defaultMessage: string;
|
4587
|
+
};
|
4588
|
+
parent?: {
|
4589
|
+
_fieldId?: string | undefined;
|
4590
|
+
} | undefined;
|
4591
|
+
validation?: {
|
4592
|
+
message: {
|
4593
|
+
id: string;
|
4594
|
+
description: string;
|
4595
|
+
defaultMessage: string;
|
4596
|
+
};
|
4597
|
+
validator: import(".").JSONSchema;
|
4598
|
+
}[] | undefined;
|
4599
|
+
required?: boolean | undefined;
|
4600
|
+
defaultValue?: string | number | boolean | undefined;
|
4601
|
+
conditionals?: ({
|
4602
|
+
type: "SHOW";
|
4603
|
+
conditional: import(".").JSONSchema;
|
4604
|
+
} | {
|
4605
|
+
type: "ENABLE";
|
4606
|
+
conditional: import(".").JSONSchema;
|
4607
|
+
} | {
|
4608
|
+
type: "DISPLAY_ON_REVIEW";
|
4609
|
+
conditional: import(".").JSONSchema;
|
4610
|
+
})[] | undefined;
|
4611
|
+
placeholder?: {
|
4612
|
+
id: string;
|
4613
|
+
description: string;
|
4614
|
+
defaultMessage: string;
|
4615
|
+
} | undefined;
|
4616
|
+
hideLabel?: boolean | undefined;
|
4617
|
+
configuration?: {
|
4618
|
+
maxFileSize?: number | undefined;
|
4619
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4620
|
+
style?: {
|
4621
|
+
width?: "full" | "auto" | undefined;
|
4622
|
+
} | undefined;
|
4623
|
+
fileName?: {
|
4624
|
+
id: string;
|
4625
|
+
description: string;
|
4626
|
+
defaultMessage: string;
|
4627
|
+
} | undefined;
|
4628
|
+
} | undefined;
|
4629
|
+
} | {
|
4630
|
+
type: "RADIO_GROUP";
|
4631
|
+
id: string;
|
4632
|
+
options: {
|
4633
|
+
value: string;
|
4634
|
+
label: {
|
4635
|
+
id: string;
|
4636
|
+
description: string;
|
4637
|
+
defaultMessage: string;
|
4638
|
+
};
|
4639
|
+
}[];
|
4420
4640
|
label: {
|
4421
4641
|
id: string;
|
4422
4642
|
description: string;
|
@@ -5163,6 +5383,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5163
5383
|
configuration?: {
|
5164
5384
|
notice?: TranslationConfig | undefined;
|
5165
5385
|
} | undefined;
|
5386
|
+
} | {
|
5387
|
+
type: "DATE_RANGE";
|
5388
|
+
id: string;
|
5389
|
+
label: TranslationConfig;
|
5390
|
+
parent?: {
|
5391
|
+
_fieldId?: string | undefined;
|
5392
|
+
} | undefined;
|
5393
|
+
validation?: {
|
5394
|
+
message: TranslationConfig;
|
5395
|
+
validator: import(".").JSONSchema;
|
5396
|
+
}[] | undefined;
|
5397
|
+
required?: boolean | undefined;
|
5398
|
+
defaultValue?: string | [string, string] | undefined;
|
5399
|
+
conditionals?: ({
|
5400
|
+
type: "SHOW";
|
5401
|
+
conditional: import(".").JSONSchema;
|
5402
|
+
} | {
|
5403
|
+
type: "ENABLE";
|
5404
|
+
conditional: import(".").JSONSchema;
|
5405
|
+
} | {
|
5406
|
+
type: "DISPLAY_ON_REVIEW";
|
5407
|
+
conditional: import(".").JSONSchema;
|
5408
|
+
})[] | undefined;
|
5409
|
+
placeholder?: TranslationConfig | undefined;
|
5410
|
+
hideLabel?: boolean | undefined;
|
5411
|
+
configuration?: {
|
5412
|
+
notice?: TranslationConfig | undefined;
|
5413
|
+
} | undefined;
|
5166
5414
|
} | {
|
5167
5415
|
type: "PARAGRAPH";
|
5168
5416
|
id: string;
|
@@ -5959,49 +6207,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
5959
6207
|
} | undefined;
|
5960
6208
|
} | undefined;
|
5961
6209
|
} | {
|
5962
|
-
type: "
|
5963
|
-
id: string;
|
5964
|
-
label: {
|
5965
|
-
id: string;
|
5966
|
-
description: string;
|
5967
|
-
defaultMessage: string;
|
5968
|
-
};
|
5969
|
-
parent?: {
|
5970
|
-
_fieldId?: string | undefined;
|
5971
|
-
} | undefined;
|
5972
|
-
validation?: {
|
5973
|
-
message: {
|
5974
|
-
id: string;
|
5975
|
-
description: string;
|
5976
|
-
defaultMessage: string;
|
5977
|
-
};
|
5978
|
-
validator: import(".").JSONSchema;
|
5979
|
-
}[] | undefined;
|
5980
|
-
required?: boolean | undefined;
|
5981
|
-
defaultValue?: string | undefined;
|
5982
|
-
conditionals?: ({
|
5983
|
-
type: "SHOW";
|
5984
|
-
conditional: import(".").JSONSchema;
|
5985
|
-
} | {
|
5986
|
-
type: "ENABLE";
|
5987
|
-
conditional: import(".").JSONSchema;
|
5988
|
-
} | {
|
5989
|
-
type: "DISPLAY_ON_REVIEW";
|
5990
|
-
conditional: import(".").JSONSchema;
|
5991
|
-
})[] | undefined;
|
5992
|
-
placeholder?: {
|
5993
|
-
id: string;
|
5994
|
-
description: string;
|
5995
|
-
defaultMessage: string;
|
5996
|
-
} | undefined;
|
5997
|
-
hideLabel?: boolean | undefined;
|
5998
|
-
configuration?: {
|
5999
|
-
styles?: {
|
6000
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6001
|
-
} | undefined;
|
6002
|
-
} | undefined;
|
6003
|
-
} | {
|
6004
|
-
type: "PAGE_HEADER";
|
6210
|
+
type: "DATE_RANGE";
|
6005
6211
|
id: string;
|
6006
6212
|
label: {
|
6007
6213
|
id: string;
|
@@ -6020,44 +6226,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6020
6226
|
validator: import(".").JSONSchema;
|
6021
6227
|
}[] | undefined;
|
6022
6228
|
required?: boolean | undefined;
|
6023
|
-
defaultValue?: string | undefined;
|
6024
|
-
conditionals?: ({
|
6025
|
-
type: "SHOW";
|
6026
|
-
conditional: import(".").JSONSchema;
|
6027
|
-
} | {
|
6028
|
-
type: "ENABLE";
|
6029
|
-
conditional: import(".").JSONSchema;
|
6030
|
-
} | {
|
6031
|
-
type: "DISPLAY_ON_REVIEW";
|
6032
|
-
conditional: import(".").JSONSchema;
|
6033
|
-
})[] | undefined;
|
6034
|
-
placeholder?: {
|
6035
|
-
id: string;
|
6036
|
-
description: string;
|
6037
|
-
defaultMessage: string;
|
6038
|
-
} | undefined;
|
6039
|
-
hideLabel?: boolean | undefined;
|
6040
|
-
} | {
|
6041
|
-
type: "FILE";
|
6042
|
-
id: string;
|
6043
|
-
label: {
|
6044
|
-
id: string;
|
6045
|
-
description: string;
|
6046
|
-
defaultMessage: string;
|
6047
|
-
};
|
6048
|
-
parent?: {
|
6049
|
-
_fieldId?: string | undefined;
|
6050
|
-
} | undefined;
|
6051
|
-
validation?: {
|
6052
|
-
message: {
|
6053
|
-
id: string;
|
6054
|
-
description: string;
|
6055
|
-
defaultMessage: string;
|
6056
|
-
};
|
6057
|
-
validator: import(".").JSONSchema;
|
6058
|
-
}[] | undefined;
|
6059
|
-
required?: boolean | undefined;
|
6060
|
-
defaultValue?: string | number | boolean | undefined;
|
6229
|
+
defaultValue?: string | [string, string] | undefined;
|
6061
6230
|
conditionals?: ({
|
6062
6231
|
type: "SHOW";
|
6063
6232
|
conditional: import(".").JSONSchema;
|
@@ -6075,28 +6244,151 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6075
6244
|
} | undefined;
|
6076
6245
|
hideLabel?: boolean | undefined;
|
6077
6246
|
configuration?: {
|
6078
|
-
|
6079
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
6080
|
-
style?: {
|
6081
|
-
width?: "full" | "auto" | undefined;
|
6082
|
-
} | undefined;
|
6083
|
-
fileName?: {
|
6247
|
+
notice?: {
|
6084
6248
|
id: string;
|
6085
6249
|
description: string;
|
6086
6250
|
defaultMessage: string;
|
6087
6251
|
} | undefined;
|
6088
6252
|
} | undefined;
|
6089
6253
|
} | {
|
6090
|
-
type: "
|
6254
|
+
type: "PARAGRAPH";
|
6091
6255
|
id: string;
|
6092
|
-
|
6093
|
-
|
6094
|
-
|
6095
|
-
|
6096
|
-
|
6097
|
-
|
6098
|
-
|
6099
|
-
}
|
6256
|
+
label: {
|
6257
|
+
id: string;
|
6258
|
+
description: string;
|
6259
|
+
defaultMessage: string;
|
6260
|
+
};
|
6261
|
+
parent?: {
|
6262
|
+
_fieldId?: string | undefined;
|
6263
|
+
} | undefined;
|
6264
|
+
validation?: {
|
6265
|
+
message: {
|
6266
|
+
id: string;
|
6267
|
+
description: string;
|
6268
|
+
defaultMessage: string;
|
6269
|
+
};
|
6270
|
+
validator: import(".").JSONSchema;
|
6271
|
+
}[] | undefined;
|
6272
|
+
required?: boolean | undefined;
|
6273
|
+
defaultValue?: string | undefined;
|
6274
|
+
conditionals?: ({
|
6275
|
+
type: "SHOW";
|
6276
|
+
conditional: import(".").JSONSchema;
|
6277
|
+
} | {
|
6278
|
+
type: "ENABLE";
|
6279
|
+
conditional: import(".").JSONSchema;
|
6280
|
+
} | {
|
6281
|
+
type: "DISPLAY_ON_REVIEW";
|
6282
|
+
conditional: import(".").JSONSchema;
|
6283
|
+
})[] | undefined;
|
6284
|
+
placeholder?: {
|
6285
|
+
id: string;
|
6286
|
+
description: string;
|
6287
|
+
defaultMessage: string;
|
6288
|
+
} | undefined;
|
6289
|
+
hideLabel?: boolean | undefined;
|
6290
|
+
configuration?: {
|
6291
|
+
styles?: {
|
6292
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6293
|
+
} | undefined;
|
6294
|
+
} | undefined;
|
6295
|
+
} | {
|
6296
|
+
type: "PAGE_HEADER";
|
6297
|
+
id: string;
|
6298
|
+
label: {
|
6299
|
+
id: string;
|
6300
|
+
description: string;
|
6301
|
+
defaultMessage: string;
|
6302
|
+
};
|
6303
|
+
parent?: {
|
6304
|
+
_fieldId?: string | undefined;
|
6305
|
+
} | undefined;
|
6306
|
+
validation?: {
|
6307
|
+
message: {
|
6308
|
+
id: string;
|
6309
|
+
description: string;
|
6310
|
+
defaultMessage: string;
|
6311
|
+
};
|
6312
|
+
validator: import(".").JSONSchema;
|
6313
|
+
}[] | undefined;
|
6314
|
+
required?: boolean | undefined;
|
6315
|
+
defaultValue?: string | undefined;
|
6316
|
+
conditionals?: ({
|
6317
|
+
type: "SHOW";
|
6318
|
+
conditional: import(".").JSONSchema;
|
6319
|
+
} | {
|
6320
|
+
type: "ENABLE";
|
6321
|
+
conditional: import(".").JSONSchema;
|
6322
|
+
} | {
|
6323
|
+
type: "DISPLAY_ON_REVIEW";
|
6324
|
+
conditional: import(".").JSONSchema;
|
6325
|
+
})[] | undefined;
|
6326
|
+
placeholder?: {
|
6327
|
+
id: string;
|
6328
|
+
description: string;
|
6329
|
+
defaultMessage: string;
|
6330
|
+
} | undefined;
|
6331
|
+
hideLabel?: boolean | undefined;
|
6332
|
+
} | {
|
6333
|
+
type: "FILE";
|
6334
|
+
id: string;
|
6335
|
+
label: {
|
6336
|
+
id: string;
|
6337
|
+
description: string;
|
6338
|
+
defaultMessage: string;
|
6339
|
+
};
|
6340
|
+
parent?: {
|
6341
|
+
_fieldId?: string | undefined;
|
6342
|
+
} | undefined;
|
6343
|
+
validation?: {
|
6344
|
+
message: {
|
6345
|
+
id: string;
|
6346
|
+
description: string;
|
6347
|
+
defaultMessage: string;
|
6348
|
+
};
|
6349
|
+
validator: import(".").JSONSchema;
|
6350
|
+
}[] | undefined;
|
6351
|
+
required?: boolean | undefined;
|
6352
|
+
defaultValue?: string | number | boolean | undefined;
|
6353
|
+
conditionals?: ({
|
6354
|
+
type: "SHOW";
|
6355
|
+
conditional: import(".").JSONSchema;
|
6356
|
+
} | {
|
6357
|
+
type: "ENABLE";
|
6358
|
+
conditional: import(".").JSONSchema;
|
6359
|
+
} | {
|
6360
|
+
type: "DISPLAY_ON_REVIEW";
|
6361
|
+
conditional: import(".").JSONSchema;
|
6362
|
+
})[] | undefined;
|
6363
|
+
placeholder?: {
|
6364
|
+
id: string;
|
6365
|
+
description: string;
|
6366
|
+
defaultMessage: string;
|
6367
|
+
} | undefined;
|
6368
|
+
hideLabel?: boolean | undefined;
|
6369
|
+
configuration?: {
|
6370
|
+
maxFileSize?: number | undefined;
|
6371
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
6372
|
+
style?: {
|
6373
|
+
width?: "full" | "auto" | undefined;
|
6374
|
+
} | undefined;
|
6375
|
+
fileName?: {
|
6376
|
+
id: string;
|
6377
|
+
description: string;
|
6378
|
+
defaultMessage: string;
|
6379
|
+
} | undefined;
|
6380
|
+
} | undefined;
|
6381
|
+
} | {
|
6382
|
+
type: "RADIO_GROUP";
|
6383
|
+
id: string;
|
6384
|
+
options: {
|
6385
|
+
value: string;
|
6386
|
+
label: {
|
6387
|
+
id: string;
|
6388
|
+
description: string;
|
6389
|
+
defaultMessage: string;
|
6390
|
+
};
|
6391
|
+
}[];
|
6100
6392
|
label: {
|
6101
6393
|
id: string;
|
6102
6394
|
description: string;
|
@@ -6662,11 +6954,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6662
6954
|
}>;
|
6663
6955
|
fields: z.ZodArray<z.ZodDiscriminatedUnion<"fieldType", [z.ZodObject<z.objectUtil.extendShape<{
|
6664
6956
|
config: z.ZodObject<{
|
6665
|
-
type: z.ZodEnum<["
|
6957
|
+
type: z.ZodEnum<["fuzzy", "exact", "range"]>;
|
6666
6958
|
}, "strip", z.ZodTypeAny, {
|
6667
|
-
type: "
|
6959
|
+
type: "exact" | "fuzzy" | "range";
|
6668
6960
|
}, {
|
6669
|
-
type: "
|
6961
|
+
type: "exact" | "fuzzy" | "range";
|
6670
6962
|
}>;
|
6671
6963
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6672
6964
|
value: z.ZodString;
|
@@ -6691,7 +6983,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6691
6983
|
fieldType: z.ZodLiteral<"field">;
|
6692
6984
|
}>, "strip", z.ZodTypeAny, {
|
6693
6985
|
config: {
|
6694
|
-
type: "
|
6986
|
+
type: "exact" | "fuzzy" | "range";
|
6695
6987
|
};
|
6696
6988
|
fieldId: string;
|
6697
6989
|
fieldType: "field";
|
@@ -6701,7 +6993,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6701
6993
|
}[] | undefined;
|
6702
6994
|
}, {
|
6703
6995
|
config: {
|
6704
|
-
type: "
|
6996
|
+
type: "exact" | "fuzzy" | "range";
|
6705
6997
|
};
|
6706
6998
|
fieldId: string;
|
6707
6999
|
fieldType: "field";
|
@@ -6715,11 +7007,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6715
7007
|
}[] | undefined;
|
6716
7008
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6717
7009
|
config: z.ZodObject<{
|
6718
|
-
type: z.ZodEnum<["
|
7010
|
+
type: z.ZodEnum<["fuzzy", "exact", "range"]>;
|
6719
7011
|
}, "strip", z.ZodTypeAny, {
|
6720
|
-
type: "
|
7012
|
+
type: "exact" | "fuzzy" | "range";
|
6721
7013
|
}, {
|
6722
|
-
type: "
|
7014
|
+
type: "exact" | "fuzzy" | "range";
|
6723
7015
|
}>;
|
6724
7016
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6725
7017
|
value: z.ZodString;
|
@@ -6744,7 +7036,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6744
7036
|
fieldType: z.ZodLiteral<"event">;
|
6745
7037
|
}>, "strip", z.ZodTypeAny, {
|
6746
7038
|
config: {
|
6747
|
-
type: "
|
7039
|
+
type: "exact" | "fuzzy" | "range";
|
6748
7040
|
};
|
6749
7041
|
fieldId: "status" | "trackingId";
|
6750
7042
|
fieldType: "event";
|
@@ -6754,7 +7046,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6754
7046
|
}[] | undefined;
|
6755
7047
|
}, {
|
6756
7048
|
config: {
|
6757
|
-
type: "
|
7049
|
+
type: "exact" | "fuzzy" | "range";
|
6758
7050
|
};
|
6759
7051
|
fieldId: "status" | "trackingId";
|
6760
7052
|
fieldType: "event";
|
@@ -6771,7 +7063,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6771
7063
|
title: TranslationConfig;
|
6772
7064
|
fields: ({
|
6773
7065
|
config: {
|
6774
|
-
type: "
|
7066
|
+
type: "exact" | "fuzzy" | "range";
|
6775
7067
|
};
|
6776
7068
|
fieldId: string;
|
6777
7069
|
fieldType: "field";
|
@@ -6781,7 +7073,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6781
7073
|
}[] | undefined;
|
6782
7074
|
} | {
|
6783
7075
|
config: {
|
6784
|
-
type: "
|
7076
|
+
type: "exact" | "fuzzy" | "range";
|
6785
7077
|
};
|
6786
7078
|
fieldId: "status" | "trackingId";
|
6787
7079
|
fieldType: "event";
|
@@ -6798,7 +7090,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6798
7090
|
};
|
6799
7091
|
fields: ({
|
6800
7092
|
config: {
|
6801
|
-
type: "
|
7093
|
+
type: "exact" | "fuzzy" | "range";
|
6802
7094
|
};
|
6803
7095
|
fieldId: string;
|
6804
7096
|
fieldType: "field";
|
@@ -6812,7 +7104,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
6812
7104
|
}[] | undefined;
|
6813
7105
|
} | {
|
6814
7106
|
config: {
|
6815
|
-
type: "
|
7107
|
+
type: "exact" | "fuzzy" | "range";
|
6816
7108
|
};
|
6817
7109
|
fieldId: "status" | "trackingId";
|
6818
7110
|
fieldType: "event";
|
@@ -7040,6 +7332,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7040
7332
|
configuration?: {
|
7041
7333
|
notice?: TranslationConfig | undefined;
|
7042
7334
|
} | undefined;
|
7335
|
+
} | {
|
7336
|
+
type: "DATE_RANGE";
|
7337
|
+
id: string;
|
7338
|
+
label: TranslationConfig;
|
7339
|
+
parent?: {
|
7340
|
+
_fieldId?: string | undefined;
|
7341
|
+
} | undefined;
|
7342
|
+
validation?: {
|
7343
|
+
message: TranslationConfig;
|
7344
|
+
validator: import(".").JSONSchema;
|
7345
|
+
}[] | undefined;
|
7346
|
+
required?: boolean | undefined;
|
7347
|
+
defaultValue?: string | [string, string] | undefined;
|
7348
|
+
conditionals?: ({
|
7349
|
+
type: "SHOW";
|
7350
|
+
conditional: import(".").JSONSchema;
|
7351
|
+
} | {
|
7352
|
+
type: "ENABLE";
|
7353
|
+
conditional: import(".").JSONSchema;
|
7354
|
+
} | {
|
7355
|
+
type: "DISPLAY_ON_REVIEW";
|
7356
|
+
conditional: import(".").JSONSchema;
|
7357
|
+
})[] | undefined;
|
7358
|
+
placeholder?: TranslationConfig | undefined;
|
7359
|
+
hideLabel?: boolean | undefined;
|
7360
|
+
configuration?: {
|
7361
|
+
notice?: TranslationConfig | undefined;
|
7362
|
+
} | undefined;
|
7043
7363
|
} | {
|
7044
7364
|
type: "PARAGRAPH";
|
7045
7365
|
id: string;
|
@@ -7719,6 +8039,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
7719
8039
|
configuration?: {
|
7720
8040
|
notice?: TranslationConfig | undefined;
|
7721
8041
|
} | undefined;
|
8042
|
+
} | {
|
8043
|
+
type: "DATE_RANGE";
|
8044
|
+
id: string;
|
8045
|
+
label: TranslationConfig;
|
8046
|
+
parent?: {
|
8047
|
+
_fieldId?: string | undefined;
|
8048
|
+
} | undefined;
|
8049
|
+
validation?: {
|
8050
|
+
message: TranslationConfig;
|
8051
|
+
validator: import(".").JSONSchema;
|
8052
|
+
}[] | undefined;
|
8053
|
+
required?: boolean | undefined;
|
8054
|
+
defaultValue?: string | [string, string] | undefined;
|
8055
|
+
conditionals?: ({
|
8056
|
+
type: "SHOW";
|
8057
|
+
conditional: import(".").JSONSchema;
|
8058
|
+
} | {
|
8059
|
+
type: "ENABLE";
|
8060
|
+
conditional: import(".").JSONSchema;
|
8061
|
+
} | {
|
8062
|
+
type: "DISPLAY_ON_REVIEW";
|
8063
|
+
conditional: import(".").JSONSchema;
|
8064
|
+
})[] | undefined;
|
8065
|
+
placeholder?: TranslationConfig | undefined;
|
8066
|
+
hideLabel?: boolean | undefined;
|
8067
|
+
configuration?: {
|
8068
|
+
notice?: TranslationConfig | undefined;
|
8069
|
+
} | undefined;
|
7722
8070
|
} | {
|
7723
8071
|
type: "PARAGRAPH";
|
7724
8072
|
id: string;
|
@@ -8397,6 +8745,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
8397
8745
|
configuration?: {
|
8398
8746
|
notice?: TranslationConfig | undefined;
|
8399
8747
|
} | undefined;
|
8748
|
+
} | {
|
8749
|
+
type: "DATE_RANGE";
|
8750
|
+
id: string;
|
8751
|
+
label: TranslationConfig;
|
8752
|
+
parent?: {
|
8753
|
+
_fieldId?: string | undefined;
|
8754
|
+
} | undefined;
|
8755
|
+
validation?: {
|
8756
|
+
message: TranslationConfig;
|
8757
|
+
validator: import(".").JSONSchema;
|
8758
|
+
}[] | undefined;
|
8759
|
+
required?: boolean | undefined;
|
8760
|
+
defaultValue?: string | [string, string] | undefined;
|
8761
|
+
conditionals?: ({
|
8762
|
+
type: "SHOW";
|
8763
|
+
conditional: import(".").JSONSchema;
|
8764
|
+
} | {
|
8765
|
+
type: "ENABLE";
|
8766
|
+
conditional: import(".").JSONSchema;
|
8767
|
+
} | {
|
8768
|
+
type: "DISPLAY_ON_REVIEW";
|
8769
|
+
conditional: import(".").JSONSchema;
|
8770
|
+
})[] | undefined;
|
8771
|
+
placeholder?: TranslationConfig | undefined;
|
8772
|
+
hideLabel?: boolean | undefined;
|
8773
|
+
configuration?: {
|
8774
|
+
notice?: TranslationConfig | undefined;
|
8775
|
+
} | undefined;
|
8400
8776
|
} | {
|
8401
8777
|
type: "PARAGRAPH";
|
8402
8778
|
id: string;
|
@@ -9075,6 +9451,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9075
9451
|
configuration?: {
|
9076
9452
|
notice?: TranslationConfig | undefined;
|
9077
9453
|
} | undefined;
|
9454
|
+
} | {
|
9455
|
+
type: "DATE_RANGE";
|
9456
|
+
id: string;
|
9457
|
+
label: TranslationConfig;
|
9458
|
+
parent?: {
|
9459
|
+
_fieldId?: string | undefined;
|
9460
|
+
} | undefined;
|
9461
|
+
validation?: {
|
9462
|
+
message: TranslationConfig;
|
9463
|
+
validator: import(".").JSONSchema;
|
9464
|
+
}[] | undefined;
|
9465
|
+
required?: boolean | undefined;
|
9466
|
+
defaultValue?: string | [string, string] | undefined;
|
9467
|
+
conditionals?: ({
|
9468
|
+
type: "SHOW";
|
9469
|
+
conditional: import(".").JSONSchema;
|
9470
|
+
} | {
|
9471
|
+
type: "ENABLE";
|
9472
|
+
conditional: import(".").JSONSchema;
|
9473
|
+
} | {
|
9474
|
+
type: "DISPLAY_ON_REVIEW";
|
9475
|
+
conditional: import(".").JSONSchema;
|
9476
|
+
})[] | undefined;
|
9477
|
+
placeholder?: TranslationConfig | undefined;
|
9478
|
+
hideLabel?: boolean | undefined;
|
9479
|
+
configuration?: {
|
9480
|
+
notice?: TranslationConfig | undefined;
|
9481
|
+
} | undefined;
|
9078
9482
|
} | {
|
9079
9483
|
type: "PARAGRAPH";
|
9080
9484
|
id: string;
|
@@ -9802,14 +10206,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9802
10206
|
notice?: TranslationConfig | undefined;
|
9803
10207
|
} | undefined;
|
9804
10208
|
} | {
|
9805
|
-
type: "
|
10209
|
+
type: "DATE_RANGE";
|
9806
10210
|
id: string;
|
9807
10211
|
label: TranslationConfig;
|
9808
|
-
configuration: {
|
9809
|
-
styles?: {
|
9810
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9811
|
-
} | undefined;
|
9812
|
-
};
|
9813
10212
|
parent?: {
|
9814
10213
|
_fieldId?: string | undefined;
|
9815
10214
|
} | undefined;
|
@@ -9818,7 +10217,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9818
10217
|
validator: import(".").JSONSchema;
|
9819
10218
|
}[] | undefined;
|
9820
10219
|
required?: boolean | undefined;
|
9821
|
-
defaultValue?: string | undefined;
|
10220
|
+
defaultValue?: string | [string, string] | undefined;
|
9822
10221
|
conditionals?: ({
|
9823
10222
|
type: "SHOW";
|
9824
10223
|
conditional: import(".").JSONSchema;
|
@@ -9831,8 +10230,41 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
9831
10230
|
})[] | undefined;
|
9832
10231
|
placeholder?: TranslationConfig | undefined;
|
9833
10232
|
hideLabel?: boolean | undefined;
|
10233
|
+
configuration?: {
|
10234
|
+
notice?: TranslationConfig | undefined;
|
10235
|
+
} | undefined;
|
9834
10236
|
} | {
|
9835
|
-
type: "
|
10237
|
+
type: "PARAGRAPH";
|
10238
|
+
id: string;
|
10239
|
+
label: TranslationConfig;
|
10240
|
+
configuration: {
|
10241
|
+
styles?: {
|
10242
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
10243
|
+
} | undefined;
|
10244
|
+
};
|
10245
|
+
parent?: {
|
10246
|
+
_fieldId?: string | undefined;
|
10247
|
+
} | undefined;
|
10248
|
+
validation?: {
|
10249
|
+
message: TranslationConfig;
|
10250
|
+
validator: import(".").JSONSchema;
|
10251
|
+
}[] | undefined;
|
10252
|
+
required?: boolean | undefined;
|
10253
|
+
defaultValue?: string | undefined;
|
10254
|
+
conditionals?: ({
|
10255
|
+
type: "SHOW";
|
10256
|
+
conditional: import(".").JSONSchema;
|
10257
|
+
} | {
|
10258
|
+
type: "ENABLE";
|
10259
|
+
conditional: import(".").JSONSchema;
|
10260
|
+
} | {
|
10261
|
+
type: "DISPLAY_ON_REVIEW";
|
10262
|
+
conditional: import(".").JSONSchema;
|
10263
|
+
})[] | undefined;
|
10264
|
+
placeholder?: TranslationConfig | undefined;
|
10265
|
+
hideLabel?: boolean | undefined;
|
10266
|
+
} | {
|
10267
|
+
type: "PAGE_HEADER";
|
9836
10268
|
id: string;
|
9837
10269
|
label: TranslationConfig;
|
9838
10270
|
parent?: {
|
@@ -10482,6 +10914,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
10482
10914
|
configuration?: {
|
10483
10915
|
notice?: TranslationConfig | undefined;
|
10484
10916
|
} | undefined;
|
10917
|
+
} | {
|
10918
|
+
type: "DATE_RANGE";
|
10919
|
+
id: string;
|
10920
|
+
label: TranslationConfig;
|
10921
|
+
parent?: {
|
10922
|
+
_fieldId?: string | undefined;
|
10923
|
+
} | undefined;
|
10924
|
+
validation?: {
|
10925
|
+
message: TranslationConfig;
|
10926
|
+
validator: import(".").JSONSchema;
|
10927
|
+
}[] | undefined;
|
10928
|
+
required?: boolean | undefined;
|
10929
|
+
defaultValue?: string | [string, string] | undefined;
|
10930
|
+
conditionals?: ({
|
10931
|
+
type: "SHOW";
|
10932
|
+
conditional: import(".").JSONSchema;
|
10933
|
+
} | {
|
10934
|
+
type: "ENABLE";
|
10935
|
+
conditional: import(".").JSONSchema;
|
10936
|
+
} | {
|
10937
|
+
type: "DISPLAY_ON_REVIEW";
|
10938
|
+
conditional: import(".").JSONSchema;
|
10939
|
+
})[] | undefined;
|
10940
|
+
placeholder?: TranslationConfig | undefined;
|
10941
|
+
hideLabel?: boolean | undefined;
|
10942
|
+
configuration?: {
|
10943
|
+
notice?: TranslationConfig | undefined;
|
10944
|
+
} | undefined;
|
10485
10945
|
} | {
|
10486
10946
|
type: "PARAGRAPH";
|
10487
10947
|
id: string;
|
@@ -11164,6 +11624,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11164
11624
|
configuration?: {
|
11165
11625
|
notice?: TranslationConfig | undefined;
|
11166
11626
|
} | undefined;
|
11627
|
+
} | {
|
11628
|
+
type: "DATE_RANGE";
|
11629
|
+
id: string;
|
11630
|
+
label: TranslationConfig;
|
11631
|
+
parent?: {
|
11632
|
+
_fieldId?: string | undefined;
|
11633
|
+
} | undefined;
|
11634
|
+
validation?: {
|
11635
|
+
message: TranslationConfig;
|
11636
|
+
validator: import(".").JSONSchema;
|
11637
|
+
}[] | undefined;
|
11638
|
+
required?: boolean | undefined;
|
11639
|
+
defaultValue?: string | [string, string] | undefined;
|
11640
|
+
conditionals?: ({
|
11641
|
+
type: "SHOW";
|
11642
|
+
conditional: import(".").JSONSchema;
|
11643
|
+
} | {
|
11644
|
+
type: "ENABLE";
|
11645
|
+
conditional: import(".").JSONSchema;
|
11646
|
+
} | {
|
11647
|
+
type: "DISPLAY_ON_REVIEW";
|
11648
|
+
conditional: import(".").JSONSchema;
|
11649
|
+
})[] | undefined;
|
11650
|
+
placeholder?: TranslationConfig | undefined;
|
11651
|
+
hideLabel?: boolean | undefined;
|
11652
|
+
configuration?: {
|
11653
|
+
notice?: TranslationConfig | undefined;
|
11654
|
+
} | undefined;
|
11167
11655
|
} | {
|
11168
11656
|
type: "PARAGRAPH";
|
11169
11657
|
id: string;
|
@@ -11845,6 +12333,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
11845
12333
|
configuration?: {
|
11846
12334
|
notice?: TranslationConfig | undefined;
|
11847
12335
|
} | undefined;
|
12336
|
+
} | {
|
12337
|
+
type: "DATE_RANGE";
|
12338
|
+
id: string;
|
12339
|
+
label: TranslationConfig;
|
12340
|
+
parent?: {
|
12341
|
+
_fieldId?: string | undefined;
|
12342
|
+
} | undefined;
|
12343
|
+
validation?: {
|
12344
|
+
message: TranslationConfig;
|
12345
|
+
validator: import(".").JSONSchema;
|
12346
|
+
}[] | undefined;
|
12347
|
+
required?: boolean | undefined;
|
12348
|
+
defaultValue?: string | [string, string] | undefined;
|
12349
|
+
conditionals?: ({
|
12350
|
+
type: "SHOW";
|
12351
|
+
conditional: import(".").JSONSchema;
|
12352
|
+
} | {
|
12353
|
+
type: "ENABLE";
|
12354
|
+
conditional: import(".").JSONSchema;
|
12355
|
+
} | {
|
12356
|
+
type: "DISPLAY_ON_REVIEW";
|
12357
|
+
conditional: import(".").JSONSchema;
|
12358
|
+
})[] | undefined;
|
12359
|
+
placeholder?: TranslationConfig | undefined;
|
12360
|
+
hideLabel?: boolean | undefined;
|
12361
|
+
configuration?: {
|
12362
|
+
notice?: TranslationConfig | undefined;
|
12363
|
+
} | undefined;
|
11848
12364
|
} | {
|
11849
12365
|
type: "PARAGRAPH";
|
11850
12366
|
id: string;
|
@@ -12516,14 +13032,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12516
13032
|
notice?: TranslationConfig | undefined;
|
12517
13033
|
} | undefined;
|
12518
13034
|
} | {
|
12519
|
-
type: "
|
13035
|
+
type: "DATE_RANGE";
|
12520
13036
|
id: string;
|
12521
13037
|
label: TranslationConfig;
|
12522
|
-
configuration: {
|
12523
|
-
styles?: {
|
12524
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12525
|
-
} | undefined;
|
12526
|
-
};
|
12527
13038
|
parent?: {
|
12528
13039
|
_fieldId?: string | undefined;
|
12529
13040
|
} | undefined;
|
@@ -12532,7 +13043,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12532
13043
|
validator: import(".").JSONSchema;
|
12533
13044
|
}[] | undefined;
|
12534
13045
|
required?: boolean | undefined;
|
12535
|
-
defaultValue?: string | undefined;
|
13046
|
+
defaultValue?: string | [string, string] | undefined;
|
12536
13047
|
conditionals?: ({
|
12537
13048
|
type: "SHOW";
|
12538
13049
|
conditional: import(".").JSONSchema;
|
@@ -12545,42 +13056,17 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12545
13056
|
})[] | undefined;
|
12546
13057
|
placeholder?: TranslationConfig | undefined;
|
12547
13058
|
hideLabel?: boolean | undefined;
|
12548
|
-
|
12549
|
-
|
12550
|
-
id: string;
|
12551
|
-
label: TranslationConfig;
|
12552
|
-
parent?: {
|
12553
|
-
_fieldId?: string | undefined;
|
13059
|
+
configuration?: {
|
13060
|
+
notice?: TranslationConfig | undefined;
|
12554
13061
|
} | undefined;
|
12555
|
-
validation?: {
|
12556
|
-
message: TranslationConfig;
|
12557
|
-
validator: import(".").JSONSchema;
|
12558
|
-
}[] | undefined;
|
12559
|
-
required?: boolean | undefined;
|
12560
|
-
defaultValue?: string | undefined;
|
12561
|
-
conditionals?: ({
|
12562
|
-
type: "SHOW";
|
12563
|
-
conditional: import(".").JSONSchema;
|
12564
|
-
} | {
|
12565
|
-
type: "ENABLE";
|
12566
|
-
conditional: import(".").JSONSchema;
|
12567
|
-
} | {
|
12568
|
-
type: "DISPLAY_ON_REVIEW";
|
12569
|
-
conditional: import(".").JSONSchema;
|
12570
|
-
})[] | undefined;
|
12571
|
-
placeholder?: TranslationConfig | undefined;
|
12572
|
-
hideLabel?: boolean | undefined;
|
12573
13062
|
} | {
|
12574
|
-
type: "
|
13063
|
+
type: "PARAGRAPH";
|
12575
13064
|
id: string;
|
12576
13065
|
label: TranslationConfig;
|
12577
13066
|
configuration: {
|
12578
|
-
|
12579
|
-
|
12580
|
-
style?: {
|
12581
|
-
width?: "full" | "auto" | undefined;
|
13067
|
+
styles?: {
|
13068
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12582
13069
|
} | undefined;
|
12583
|
-
fileName?: TranslationConfig | undefined;
|
12584
13070
|
};
|
12585
13071
|
parent?: {
|
12586
13072
|
_fieldId?: string | undefined;
|
@@ -12590,7 +13076,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12590
13076
|
validator: import(".").JSONSchema;
|
12591
13077
|
}[] | undefined;
|
12592
13078
|
required?: boolean | undefined;
|
12593
|
-
defaultValue?: string |
|
13079
|
+
defaultValue?: string | undefined;
|
12594
13080
|
conditionals?: ({
|
12595
13081
|
type: "SHOW";
|
12596
13082
|
conditional: import(".").JSONSchema;
|
@@ -12604,12 +13090,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12604
13090
|
placeholder?: TranslationConfig | undefined;
|
12605
13091
|
hideLabel?: boolean | undefined;
|
12606
13092
|
} | {
|
12607
|
-
type: "
|
13093
|
+
type: "PAGE_HEADER";
|
12608
13094
|
id: string;
|
12609
|
-
options: {
|
12610
|
-
value: string;
|
12611
|
-
label: TranslationConfig;
|
12612
|
-
}[];
|
12613
13095
|
label: TranslationConfig;
|
12614
13096
|
parent?: {
|
12615
13097
|
_fieldId?: string | undefined;
|
@@ -12632,21 +13114,18 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12632
13114
|
})[] | undefined;
|
12633
13115
|
placeholder?: TranslationConfig | undefined;
|
12634
13116
|
hideLabel?: boolean | undefined;
|
12635
|
-
configuration?: {
|
12636
|
-
styles?: {
|
12637
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
12638
|
-
} | undefined;
|
12639
|
-
} | undefined;
|
12640
13117
|
} | {
|
12641
|
-
type: "
|
13118
|
+
type: "FILE";
|
12642
13119
|
id: string;
|
12643
13120
|
label: TranslationConfig;
|
12644
13121
|
configuration: {
|
12645
|
-
|
12646
|
-
|
13122
|
+
maxFileSize: number;
|
13123
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
13124
|
+
style?: {
|
13125
|
+
width?: "full" | "auto" | undefined;
|
12647
13126
|
} | undefined;
|
13127
|
+
fileName?: TranslationConfig | undefined;
|
12648
13128
|
};
|
12649
|
-
items: TranslationConfig[];
|
12650
13129
|
parent?: {
|
12651
13130
|
_fieldId?: string | undefined;
|
12652
13131
|
} | undefined;
|
@@ -12655,7 +13134,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12655
13134
|
validator: import(".").JSONSchema;
|
12656
13135
|
}[] | undefined;
|
12657
13136
|
required?: boolean | undefined;
|
12658
|
-
defaultValue?: string | undefined;
|
13137
|
+
defaultValue?: string | number | boolean | undefined;
|
12659
13138
|
conditionals?: ({
|
12660
13139
|
type: "SHOW";
|
12661
13140
|
conditional: import(".").JSONSchema;
|
@@ -12669,7 +13148,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12669
13148
|
placeholder?: TranslationConfig | undefined;
|
12670
13149
|
hideLabel?: boolean | undefined;
|
12671
13150
|
} | {
|
12672
|
-
type: "
|
13151
|
+
type: "RADIO_GROUP";
|
12673
13152
|
id: string;
|
12674
13153
|
options: {
|
12675
13154
|
value: string;
|
@@ -12697,66 +13176,156 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12697
13176
|
})[] | undefined;
|
12698
13177
|
placeholder?: TranslationConfig | undefined;
|
12699
13178
|
hideLabel?: boolean | undefined;
|
12700
|
-
|
12701
|
-
|
12702
|
-
|
12703
|
-
|
12704
|
-
parent?: {
|
12705
|
-
_fieldId?: string | undefined;
|
12706
|
-
} | undefined;
|
12707
|
-
validation?: {
|
12708
|
-
message: TranslationConfig;
|
12709
|
-
validator: import(".").JSONSchema;
|
12710
|
-
}[] | undefined;
|
12711
|
-
required?: boolean | undefined;
|
12712
|
-
defaultValue?: boolean | undefined;
|
12713
|
-
conditionals?: ({
|
12714
|
-
type: "SHOW";
|
12715
|
-
conditional: import(".").JSONSchema;
|
12716
|
-
} | {
|
12717
|
-
type: "ENABLE";
|
12718
|
-
conditional: import(".").JSONSchema;
|
12719
|
-
} | {
|
12720
|
-
type: "DISPLAY_ON_REVIEW";
|
12721
|
-
conditional: import(".").JSONSchema;
|
12722
|
-
})[] | undefined;
|
12723
|
-
placeholder?: TranslationConfig | undefined;
|
12724
|
-
hideLabel?: boolean | undefined;
|
12725
|
-
} | {
|
12726
|
-
type: "COUNTRY";
|
12727
|
-
id: string;
|
12728
|
-
label: TranslationConfig;
|
12729
|
-
parent?: {
|
12730
|
-
_fieldId?: string | undefined;
|
13179
|
+
configuration?: {
|
13180
|
+
styles?: {
|
13181
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
13182
|
+
} | undefined;
|
12731
13183
|
} | undefined;
|
12732
|
-
validation?: {
|
12733
|
-
message: TranslationConfig;
|
12734
|
-
validator: import(".").JSONSchema;
|
12735
|
-
}[] | undefined;
|
12736
|
-
required?: boolean | undefined;
|
12737
|
-
defaultValue?: string | undefined;
|
12738
|
-
conditionals?: ({
|
12739
|
-
type: "SHOW";
|
12740
|
-
conditional: import(".").JSONSchema;
|
12741
|
-
} | {
|
12742
|
-
type: "ENABLE";
|
12743
|
-
conditional: import(".").JSONSchema;
|
12744
|
-
} | {
|
12745
|
-
type: "DISPLAY_ON_REVIEW";
|
12746
|
-
conditional: import(".").JSONSchema;
|
12747
|
-
})[] | undefined;
|
12748
|
-
placeholder?: TranslationConfig | undefined;
|
12749
|
-
hideLabel?: boolean | undefined;
|
12750
13184
|
} | {
|
12751
|
-
type: "
|
13185
|
+
type: "BULLET_LIST";
|
12752
13186
|
id: string;
|
12753
13187
|
label: TranslationConfig;
|
12754
13188
|
configuration: {
|
12755
|
-
|
12756
|
-
|
12757
|
-
$declaration: string;
|
13189
|
+
styles?: {
|
13190
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12758
13191
|
} | undefined;
|
12759
13192
|
};
|
13193
|
+
items: TranslationConfig[];
|
13194
|
+
parent?: {
|
13195
|
+
_fieldId?: string | undefined;
|
13196
|
+
} | undefined;
|
13197
|
+
validation?: {
|
13198
|
+
message: TranslationConfig;
|
13199
|
+
validator: import(".").JSONSchema;
|
13200
|
+
}[] | undefined;
|
13201
|
+
required?: boolean | undefined;
|
13202
|
+
defaultValue?: string | undefined;
|
13203
|
+
conditionals?: ({
|
13204
|
+
type: "SHOW";
|
13205
|
+
conditional: import(".").JSONSchema;
|
13206
|
+
} | {
|
13207
|
+
type: "ENABLE";
|
13208
|
+
conditional: import(".").JSONSchema;
|
13209
|
+
} | {
|
13210
|
+
type: "DISPLAY_ON_REVIEW";
|
13211
|
+
conditional: import(".").JSONSchema;
|
13212
|
+
})[] | undefined;
|
13213
|
+
placeholder?: TranslationConfig | undefined;
|
13214
|
+
hideLabel?: boolean | undefined;
|
13215
|
+
} | {
|
13216
|
+
type: "SELECT";
|
13217
|
+
id: string;
|
13218
|
+
options: {
|
13219
|
+
value: string;
|
13220
|
+
label: TranslationConfig;
|
13221
|
+
}[];
|
13222
|
+
label: TranslationConfig;
|
13223
|
+
parent?: {
|
13224
|
+
_fieldId?: string | undefined;
|
13225
|
+
} | undefined;
|
13226
|
+
validation?: {
|
13227
|
+
message: TranslationConfig;
|
13228
|
+
validator: import(".").JSONSchema;
|
13229
|
+
}[] | undefined;
|
13230
|
+
required?: boolean | undefined;
|
13231
|
+
defaultValue?: string | undefined;
|
13232
|
+
conditionals?: ({
|
13233
|
+
type: "SHOW";
|
13234
|
+
conditional: import(".").JSONSchema;
|
13235
|
+
} | {
|
13236
|
+
type: "ENABLE";
|
13237
|
+
conditional: import(".").JSONSchema;
|
13238
|
+
} | {
|
13239
|
+
type: "DISPLAY_ON_REVIEW";
|
13240
|
+
conditional: import(".").JSONSchema;
|
13241
|
+
})[] | undefined;
|
13242
|
+
placeholder?: TranslationConfig | undefined;
|
13243
|
+
hideLabel?: boolean | undefined;
|
13244
|
+
} | {
|
13245
|
+
type: "CHECKBOX";
|
13246
|
+
id: string;
|
13247
|
+
label: TranslationConfig;
|
13248
|
+
parent?: {
|
13249
|
+
_fieldId?: string | undefined;
|
13250
|
+
} | undefined;
|
13251
|
+
validation?: {
|
13252
|
+
message: TranslationConfig;
|
13253
|
+
validator: import(".").JSONSchema;
|
13254
|
+
}[] | undefined;
|
13255
|
+
required?: boolean | undefined;
|
13256
|
+
defaultValue?: boolean | undefined;
|
13257
|
+
conditionals?: ({
|
13258
|
+
type: "SHOW";
|
13259
|
+
conditional: import(".").JSONSchema;
|
13260
|
+
} | {
|
13261
|
+
type: "ENABLE";
|
13262
|
+
conditional: import(".").JSONSchema;
|
13263
|
+
} | {
|
13264
|
+
type: "DISPLAY_ON_REVIEW";
|
13265
|
+
conditional: import(".").JSONSchema;
|
13266
|
+
})[] | undefined;
|
13267
|
+
placeholder?: TranslationConfig | undefined;
|
13268
|
+
hideLabel?: boolean | undefined;
|
13269
|
+
} | {
|
13270
|
+
type: "COUNTRY";
|
13271
|
+
id: string;
|
13272
|
+
label: TranslationConfig;
|
13273
|
+
parent?: {
|
13274
|
+
_fieldId?: string | undefined;
|
13275
|
+
} | undefined;
|
13276
|
+
validation?: {
|
13277
|
+
message: TranslationConfig;
|
13278
|
+
validator: import(".").JSONSchema;
|
13279
|
+
}[] | undefined;
|
13280
|
+
required?: boolean | undefined;
|
13281
|
+
defaultValue?: string | undefined;
|
13282
|
+
conditionals?: ({
|
13283
|
+
type: "SHOW";
|
13284
|
+
conditional: import(".").JSONSchema;
|
13285
|
+
} | {
|
13286
|
+
type: "ENABLE";
|
13287
|
+
conditional: import(".").JSONSchema;
|
13288
|
+
} | {
|
13289
|
+
type: "DISPLAY_ON_REVIEW";
|
13290
|
+
conditional: import(".").JSONSchema;
|
13291
|
+
})[] | undefined;
|
13292
|
+
placeholder?: TranslationConfig | undefined;
|
13293
|
+
hideLabel?: boolean | undefined;
|
13294
|
+
} | {
|
13295
|
+
type: "ADMINISTRATIVE_AREA";
|
13296
|
+
id: string;
|
13297
|
+
label: TranslationConfig;
|
13298
|
+
configuration: {
|
13299
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
13300
|
+
partOf?: {
|
13301
|
+
$declaration: string;
|
13302
|
+
} | undefined;
|
13303
|
+
};
|
13304
|
+
parent?: {
|
13305
|
+
_fieldId?: string | undefined;
|
13306
|
+
} | undefined;
|
13307
|
+
validation?: {
|
13308
|
+
message: TranslationConfig;
|
13309
|
+
validator: import(".").JSONSchema;
|
13310
|
+
}[] | undefined;
|
13311
|
+
required?: boolean | undefined;
|
13312
|
+
defaultValue?: string | undefined;
|
13313
|
+
conditionals?: ({
|
13314
|
+
type: "SHOW";
|
13315
|
+
conditional: import(".").JSONSchema;
|
13316
|
+
} | {
|
13317
|
+
type: "ENABLE";
|
13318
|
+
conditional: import(".").JSONSchema;
|
13319
|
+
} | {
|
13320
|
+
type: "DISPLAY_ON_REVIEW";
|
13321
|
+
conditional: import(".").JSONSchema;
|
13322
|
+
})[] | undefined;
|
13323
|
+
placeholder?: TranslationConfig | undefined;
|
13324
|
+
hideLabel?: boolean | undefined;
|
13325
|
+
} | {
|
13326
|
+
type: "LOCATION";
|
13327
|
+
id: string;
|
13328
|
+
label: TranslationConfig;
|
12760
13329
|
parent?: {
|
12761
13330
|
_fieldId?: string | undefined;
|
12762
13331
|
} | undefined;
|
@@ -12779,31 +13348,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
12779
13348
|
placeholder?: TranslationConfig | undefined;
|
12780
13349
|
hideLabel?: boolean | undefined;
|
12781
13350
|
} | {
|
12782
|
-
type: "LOCATION";
|
12783
|
-
id: string;
|
12784
|
-
label: TranslationConfig;
|
12785
|
-
parent?: {
|
12786
|
-
_fieldId?: string | undefined;
|
12787
|
-
} | undefined;
|
12788
|
-
validation?: {
|
12789
|
-
message: TranslationConfig;
|
12790
|
-
validator: import(".").JSONSchema;
|
12791
|
-
}[] | undefined;
|
12792
|
-
required?: boolean | undefined;
|
12793
|
-
defaultValue?: string | undefined;
|
12794
|
-
conditionals?: ({
|
12795
|
-
type: "SHOW";
|
12796
|
-
conditional: import(".").JSONSchema;
|
12797
|
-
} | {
|
12798
|
-
type: "ENABLE";
|
12799
|
-
conditional: import(".").JSONSchema;
|
12800
|
-
} | {
|
12801
|
-
type: "DISPLAY_ON_REVIEW";
|
12802
|
-
conditional: import(".").JSONSchema;
|
12803
|
-
})[] | undefined;
|
12804
|
-
placeholder?: TranslationConfig | undefined;
|
12805
|
-
hideLabel?: boolean | undefined;
|
12806
|
-
} | {
|
12807
13351
|
type: "FILE_WITH_OPTIONS";
|
12808
13352
|
id: string;
|
12809
13353
|
options: {
|
@@ -13196,6 +13740,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13196
13740
|
configuration?: {
|
13197
13741
|
notice?: TranslationConfig | undefined;
|
13198
13742
|
} | undefined;
|
13743
|
+
} | {
|
13744
|
+
type: "DATE_RANGE";
|
13745
|
+
id: string;
|
13746
|
+
label: TranslationConfig;
|
13747
|
+
parent?: {
|
13748
|
+
_fieldId?: string | undefined;
|
13749
|
+
} | undefined;
|
13750
|
+
validation?: {
|
13751
|
+
message: TranslationConfig;
|
13752
|
+
validator: import(".").JSONSchema;
|
13753
|
+
}[] | undefined;
|
13754
|
+
required?: boolean | undefined;
|
13755
|
+
defaultValue?: string | [string, string] | undefined;
|
13756
|
+
conditionals?: ({
|
13757
|
+
type: "SHOW";
|
13758
|
+
conditional: import(".").JSONSchema;
|
13759
|
+
} | {
|
13760
|
+
type: "ENABLE";
|
13761
|
+
conditional: import(".").JSONSchema;
|
13762
|
+
} | {
|
13763
|
+
type: "DISPLAY_ON_REVIEW";
|
13764
|
+
conditional: import(".").JSONSchema;
|
13765
|
+
})[] | undefined;
|
13766
|
+
placeholder?: TranslationConfig | undefined;
|
13767
|
+
hideLabel?: boolean | undefined;
|
13768
|
+
configuration?: {
|
13769
|
+
notice?: TranslationConfig | undefined;
|
13770
|
+
} | undefined;
|
13199
13771
|
} | {
|
13200
13772
|
type: "PARAGRAPH";
|
13201
13773
|
id: string;
|
@@ -13689,6 +14261,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13689
14261
|
type: "SHOW";
|
13690
14262
|
conditional: import(".").JSONSchema;
|
13691
14263
|
}[] | undefined;
|
14264
|
+
label?: TranslationConfig | undefined;
|
13692
14265
|
emptyValueMessage?: TranslationConfig | undefined;
|
13693
14266
|
} | {
|
13694
14267
|
id: string;
|
@@ -13710,7 +14283,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13710
14283
|
title: TranslationConfig;
|
13711
14284
|
fields: ({
|
13712
14285
|
config: {
|
13713
|
-
type: "
|
14286
|
+
type: "exact" | "fuzzy" | "range";
|
13714
14287
|
};
|
13715
14288
|
fieldId: string;
|
13716
14289
|
fieldType: "field";
|
@@ -13720,7 +14293,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
13720
14293
|
}[] | undefined;
|
13721
14294
|
} | {
|
13722
14295
|
config: {
|
13723
|
-
type: "
|
14296
|
+
type: "exact" | "fuzzy" | "range";
|
13724
14297
|
};
|
13725
14298
|
fieldId: "status" | "trackingId";
|
13726
14299
|
fieldType: "event";
|
@@ -14076,7 +14649,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14076
14649
|
} | undefined;
|
14077
14650
|
} | undefined;
|
14078
14651
|
} | {
|
14079
|
-
type: "
|
14652
|
+
type: "DATE_RANGE";
|
14080
14653
|
id: string;
|
14081
14654
|
label: {
|
14082
14655
|
id: string;
|
@@ -14095,7 +14668,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14095
14668
|
validator: import(".").JSONSchema;
|
14096
14669
|
}[] | undefined;
|
14097
14670
|
required?: boolean | undefined;
|
14098
|
-
defaultValue?: string | undefined;
|
14671
|
+
defaultValue?: string | [string, string] | undefined;
|
14099
14672
|
conditionals?: ({
|
14100
14673
|
type: "SHOW";
|
14101
14674
|
conditional: import(".").JSONSchema;
|
@@ -14113,107 +14686,151 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
14113
14686
|
} | undefined;
|
14114
14687
|
hideLabel?: boolean | undefined;
|
14115
14688
|
configuration?: {
|
14116
|
-
|
14117
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
14118
|
-
} | undefined;
|
14119
|
-
} | undefined;
|
14120
|
-
} | {
|
14121
|
-
type: "PAGE_HEADER";
|
14122
|
-
id: string;
|
14123
|
-
label: {
|
14124
|
-
id: string;
|
14125
|
-
description: string;
|
14126
|
-
defaultMessage: string;
|
14127
|
-
};
|
14128
|
-
parent?: {
|
14129
|
-
_fieldId?: string | undefined;
|
14130
|
-
} | undefined;
|
14131
|
-
validation?: {
|
14132
|
-
message: {
|
14133
|
-
id: string;
|
14134
|
-
description: string;
|
14135
|
-
defaultMessage: string;
|
14136
|
-
};
|
14137
|
-
validator: import(".").JSONSchema;
|
14138
|
-
}[] | undefined;
|
14139
|
-
required?: boolean | undefined;
|
14140
|
-
defaultValue?: string | undefined;
|
14141
|
-
conditionals?: ({
|
14142
|
-
type: "SHOW";
|
14143
|
-
conditional: import(".").JSONSchema;
|
14144
|
-
} | {
|
14145
|
-
type: "ENABLE";
|
14146
|
-
conditional: import(".").JSONSchema;
|
14147
|
-
} | {
|
14148
|
-
type: "DISPLAY_ON_REVIEW";
|
14149
|
-
conditional: import(".").JSONSchema;
|
14150
|
-
})[] | undefined;
|
14151
|
-
placeholder?: {
|
14152
|
-
id: string;
|
14153
|
-
description: string;
|
14154
|
-
defaultMessage: string;
|
14155
|
-
} | undefined;
|
14156
|
-
hideLabel?: boolean | undefined;
|
14157
|
-
} | {
|
14158
|
-
type: "FILE";
|
14159
|
-
id: string;
|
14160
|
-
label: {
|
14161
|
-
id: string;
|
14162
|
-
description: string;
|
14163
|
-
defaultMessage: string;
|
14164
|
-
};
|
14165
|
-
parent?: {
|
14166
|
-
_fieldId?: string | undefined;
|
14167
|
-
} | undefined;
|
14168
|
-
validation?: {
|
14169
|
-
message: {
|
14170
|
-
id: string;
|
14171
|
-
description: string;
|
14172
|
-
defaultMessage: string;
|
14173
|
-
};
|
14174
|
-
validator: import(".").JSONSchema;
|
14175
|
-
}[] | undefined;
|
14176
|
-
required?: boolean | undefined;
|
14177
|
-
defaultValue?: string | number | boolean | undefined;
|
14178
|
-
conditionals?: ({
|
14179
|
-
type: "SHOW";
|
14180
|
-
conditional: import(".").JSONSchema;
|
14181
|
-
} | {
|
14182
|
-
type: "ENABLE";
|
14183
|
-
conditional: import(".").JSONSchema;
|
14184
|
-
} | {
|
14185
|
-
type: "DISPLAY_ON_REVIEW";
|
14186
|
-
conditional: import(".").JSONSchema;
|
14187
|
-
})[] | undefined;
|
14188
|
-
placeholder?: {
|
14189
|
-
id: string;
|
14190
|
-
description: string;
|
14191
|
-
defaultMessage: string;
|
14192
|
-
} | undefined;
|
14193
|
-
hideLabel?: boolean | undefined;
|
14194
|
-
configuration?: {
|
14195
|
-
maxFileSize?: number | undefined;
|
14196
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
14197
|
-
style?: {
|
14198
|
-
width?: "full" | "auto" | undefined;
|
14199
|
-
} | undefined;
|
14200
|
-
fileName?: {
|
14689
|
+
notice?: {
|
14201
14690
|
id: string;
|
14202
14691
|
description: string;
|
14203
14692
|
defaultMessage: string;
|
14204
14693
|
} | undefined;
|
14205
14694
|
} | undefined;
|
14206
14695
|
} | {
|
14207
|
-
type: "
|
14696
|
+
type: "PARAGRAPH";
|
14208
14697
|
id: string;
|
14209
|
-
|
14210
|
-
|
14211
|
-
|
14212
|
-
|
14213
|
-
|
14214
|
-
|
14215
|
-
|
14216
|
-
}
|
14698
|
+
label: {
|
14699
|
+
id: string;
|
14700
|
+
description: string;
|
14701
|
+
defaultMessage: string;
|
14702
|
+
};
|
14703
|
+
parent?: {
|
14704
|
+
_fieldId?: string | undefined;
|
14705
|
+
} | undefined;
|
14706
|
+
validation?: {
|
14707
|
+
message: {
|
14708
|
+
id: string;
|
14709
|
+
description: string;
|
14710
|
+
defaultMessage: string;
|
14711
|
+
};
|
14712
|
+
validator: import(".").JSONSchema;
|
14713
|
+
}[] | undefined;
|
14714
|
+
required?: boolean | undefined;
|
14715
|
+
defaultValue?: string | undefined;
|
14716
|
+
conditionals?: ({
|
14717
|
+
type: "SHOW";
|
14718
|
+
conditional: import(".").JSONSchema;
|
14719
|
+
} | {
|
14720
|
+
type: "ENABLE";
|
14721
|
+
conditional: import(".").JSONSchema;
|
14722
|
+
} | {
|
14723
|
+
type: "DISPLAY_ON_REVIEW";
|
14724
|
+
conditional: import(".").JSONSchema;
|
14725
|
+
})[] | undefined;
|
14726
|
+
placeholder?: {
|
14727
|
+
id: string;
|
14728
|
+
description: string;
|
14729
|
+
defaultMessage: string;
|
14730
|
+
} | undefined;
|
14731
|
+
hideLabel?: boolean | undefined;
|
14732
|
+
configuration?: {
|
14733
|
+
styles?: {
|
14734
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
14735
|
+
} | undefined;
|
14736
|
+
} | undefined;
|
14737
|
+
} | {
|
14738
|
+
type: "PAGE_HEADER";
|
14739
|
+
id: string;
|
14740
|
+
label: {
|
14741
|
+
id: string;
|
14742
|
+
description: string;
|
14743
|
+
defaultMessage: string;
|
14744
|
+
};
|
14745
|
+
parent?: {
|
14746
|
+
_fieldId?: string | undefined;
|
14747
|
+
} | undefined;
|
14748
|
+
validation?: {
|
14749
|
+
message: {
|
14750
|
+
id: string;
|
14751
|
+
description: string;
|
14752
|
+
defaultMessage: string;
|
14753
|
+
};
|
14754
|
+
validator: import(".").JSONSchema;
|
14755
|
+
}[] | undefined;
|
14756
|
+
required?: boolean | undefined;
|
14757
|
+
defaultValue?: string | undefined;
|
14758
|
+
conditionals?: ({
|
14759
|
+
type: "SHOW";
|
14760
|
+
conditional: import(".").JSONSchema;
|
14761
|
+
} | {
|
14762
|
+
type: "ENABLE";
|
14763
|
+
conditional: import(".").JSONSchema;
|
14764
|
+
} | {
|
14765
|
+
type: "DISPLAY_ON_REVIEW";
|
14766
|
+
conditional: import(".").JSONSchema;
|
14767
|
+
})[] | undefined;
|
14768
|
+
placeholder?: {
|
14769
|
+
id: string;
|
14770
|
+
description: string;
|
14771
|
+
defaultMessage: string;
|
14772
|
+
} | undefined;
|
14773
|
+
hideLabel?: boolean | undefined;
|
14774
|
+
} | {
|
14775
|
+
type: "FILE";
|
14776
|
+
id: string;
|
14777
|
+
label: {
|
14778
|
+
id: string;
|
14779
|
+
description: string;
|
14780
|
+
defaultMessage: string;
|
14781
|
+
};
|
14782
|
+
parent?: {
|
14783
|
+
_fieldId?: string | undefined;
|
14784
|
+
} | undefined;
|
14785
|
+
validation?: {
|
14786
|
+
message: {
|
14787
|
+
id: string;
|
14788
|
+
description: string;
|
14789
|
+
defaultMessage: string;
|
14790
|
+
};
|
14791
|
+
validator: import(".").JSONSchema;
|
14792
|
+
}[] | undefined;
|
14793
|
+
required?: boolean | undefined;
|
14794
|
+
defaultValue?: string | number | boolean | undefined;
|
14795
|
+
conditionals?: ({
|
14796
|
+
type: "SHOW";
|
14797
|
+
conditional: import(".").JSONSchema;
|
14798
|
+
} | {
|
14799
|
+
type: "ENABLE";
|
14800
|
+
conditional: import(".").JSONSchema;
|
14801
|
+
} | {
|
14802
|
+
type: "DISPLAY_ON_REVIEW";
|
14803
|
+
conditional: import(".").JSONSchema;
|
14804
|
+
})[] | undefined;
|
14805
|
+
placeholder?: {
|
14806
|
+
id: string;
|
14807
|
+
description: string;
|
14808
|
+
defaultMessage: string;
|
14809
|
+
} | undefined;
|
14810
|
+
hideLabel?: boolean | undefined;
|
14811
|
+
configuration?: {
|
14812
|
+
maxFileSize?: number | undefined;
|
14813
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
14814
|
+
style?: {
|
14815
|
+
width?: "full" | "auto" | undefined;
|
14816
|
+
} | undefined;
|
14817
|
+
fileName?: {
|
14818
|
+
id: string;
|
14819
|
+
description: string;
|
14820
|
+
defaultMessage: string;
|
14821
|
+
} | undefined;
|
14822
|
+
} | undefined;
|
14823
|
+
} | {
|
14824
|
+
type: "RADIO_GROUP";
|
14825
|
+
id: string;
|
14826
|
+
options: {
|
14827
|
+
value: string;
|
14828
|
+
label: {
|
14829
|
+
id: string;
|
14830
|
+
description: string;
|
14831
|
+
defaultMessage: string;
|
14832
|
+
};
|
14833
|
+
}[];
|
14217
14834
|
label: {
|
14218
14835
|
id: string;
|
14219
14836
|
description: string;
|
@@ -15084,6 +15701,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
15084
15701
|
defaultMessage: string;
|
15085
15702
|
} | undefined;
|
15086
15703
|
} | undefined;
|
15704
|
+
} | {
|
15705
|
+
type: "DATE_RANGE";
|
15706
|
+
id: string;
|
15707
|
+
label: {
|
15708
|
+
id: string;
|
15709
|
+
description: string;
|
15710
|
+
defaultMessage: string;
|
15711
|
+
};
|
15712
|
+
parent?: {
|
15713
|
+
_fieldId?: string | undefined;
|
15714
|
+
} | undefined;
|
15715
|
+
validation?: {
|
15716
|
+
message: {
|
15717
|
+
id: string;
|
15718
|
+
description: string;
|
15719
|
+
defaultMessage: string;
|
15720
|
+
};
|
15721
|
+
validator: import(".").JSONSchema;
|
15722
|
+
}[] | undefined;
|
15723
|
+
required?: boolean | undefined;
|
15724
|
+
defaultValue?: string | [string, string] | undefined;
|
15725
|
+
conditionals?: ({
|
15726
|
+
type: "SHOW";
|
15727
|
+
conditional: import(".").JSONSchema;
|
15728
|
+
} | {
|
15729
|
+
type: "ENABLE";
|
15730
|
+
conditional: import(".").JSONSchema;
|
15731
|
+
} | {
|
15732
|
+
type: "DISPLAY_ON_REVIEW";
|
15733
|
+
conditional: import(".").JSONSchema;
|
15734
|
+
})[] | undefined;
|
15735
|
+
placeholder?: {
|
15736
|
+
id: string;
|
15737
|
+
description: string;
|
15738
|
+
defaultMessage: string;
|
15739
|
+
} | undefined;
|
15740
|
+
hideLabel?: boolean | undefined;
|
15741
|
+
configuration?: {
|
15742
|
+
notice?: {
|
15743
|
+
id: string;
|
15744
|
+
description: string;
|
15745
|
+
defaultMessage: string;
|
15746
|
+
} | undefined;
|
15747
|
+
} | undefined;
|
15087
15748
|
} | {
|
15088
15749
|
type: "PARAGRAPH";
|
15089
15750
|
id: string;
|
@@ -16098,6 +16759,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
16098
16759
|
defaultMessage: string;
|
16099
16760
|
} | undefined;
|
16100
16761
|
} | undefined;
|
16762
|
+
} | {
|
16763
|
+
type: "DATE_RANGE";
|
16764
|
+
id: string;
|
16765
|
+
label: {
|
16766
|
+
id: string;
|
16767
|
+
description: string;
|
16768
|
+
defaultMessage: string;
|
16769
|
+
};
|
16770
|
+
parent?: {
|
16771
|
+
_fieldId?: string | undefined;
|
16772
|
+
} | undefined;
|
16773
|
+
validation?: {
|
16774
|
+
message: {
|
16775
|
+
id: string;
|
16776
|
+
description: string;
|
16777
|
+
defaultMessage: string;
|
16778
|
+
};
|
16779
|
+
validator: import(".").JSONSchema;
|
16780
|
+
}[] | undefined;
|
16781
|
+
required?: boolean | undefined;
|
16782
|
+
defaultValue?: string | [string, string] | undefined;
|
16783
|
+
conditionals?: ({
|
16784
|
+
type: "SHOW";
|
16785
|
+
conditional: import(".").JSONSchema;
|
16786
|
+
} | {
|
16787
|
+
type: "ENABLE";
|
16788
|
+
conditional: import(".").JSONSchema;
|
16789
|
+
} | {
|
16790
|
+
type: "DISPLAY_ON_REVIEW";
|
16791
|
+
conditional: import(".").JSONSchema;
|
16792
|
+
})[] | undefined;
|
16793
|
+
placeholder?: {
|
16794
|
+
id: string;
|
16795
|
+
description: string;
|
16796
|
+
defaultMessage: string;
|
16797
|
+
} | undefined;
|
16798
|
+
hideLabel?: boolean | undefined;
|
16799
|
+
configuration?: {
|
16800
|
+
notice?: {
|
16801
|
+
id: string;
|
16802
|
+
description: string;
|
16803
|
+
defaultMessage: string;
|
16804
|
+
} | undefined;
|
16805
|
+
} | undefined;
|
16101
16806
|
} | {
|
16102
16807
|
type: "PARAGRAPH";
|
16103
16808
|
id: string;
|
@@ -17112,6 +17817,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
17112
17817
|
defaultMessage: string;
|
17113
17818
|
} | undefined;
|
17114
17819
|
} | undefined;
|
17820
|
+
} | {
|
17821
|
+
type: "DATE_RANGE";
|
17822
|
+
id: string;
|
17823
|
+
label: {
|
17824
|
+
id: string;
|
17825
|
+
description: string;
|
17826
|
+
defaultMessage: string;
|
17827
|
+
};
|
17828
|
+
parent?: {
|
17829
|
+
_fieldId?: string | undefined;
|
17830
|
+
} | undefined;
|
17831
|
+
validation?: {
|
17832
|
+
message: {
|
17833
|
+
id: string;
|
17834
|
+
description: string;
|
17835
|
+
defaultMessage: string;
|
17836
|
+
};
|
17837
|
+
validator: import(".").JSONSchema;
|
17838
|
+
}[] | undefined;
|
17839
|
+
required?: boolean | undefined;
|
17840
|
+
defaultValue?: string | [string, string] | undefined;
|
17841
|
+
conditionals?: ({
|
17842
|
+
type: "SHOW";
|
17843
|
+
conditional: import(".").JSONSchema;
|
17844
|
+
} | {
|
17845
|
+
type: "ENABLE";
|
17846
|
+
conditional: import(".").JSONSchema;
|
17847
|
+
} | {
|
17848
|
+
type: "DISPLAY_ON_REVIEW";
|
17849
|
+
conditional: import(".").JSONSchema;
|
17850
|
+
})[] | undefined;
|
17851
|
+
placeholder?: {
|
17852
|
+
id: string;
|
17853
|
+
description: string;
|
17854
|
+
defaultMessage: string;
|
17855
|
+
} | undefined;
|
17856
|
+
hideLabel?: boolean | undefined;
|
17857
|
+
configuration?: {
|
17858
|
+
notice?: {
|
17859
|
+
id: string;
|
17860
|
+
description: string;
|
17861
|
+
defaultMessage: string;
|
17862
|
+
} | undefined;
|
17863
|
+
} | undefined;
|
17115
17864
|
} | {
|
17116
17865
|
type: "PARAGRAPH";
|
17117
17866
|
id: string;
|
@@ -18193,6 +18942,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
18193
18942
|
defaultMessage: string;
|
18194
18943
|
} | undefined;
|
18195
18944
|
} | undefined;
|
18945
|
+
} | {
|
18946
|
+
type: "DATE_RANGE";
|
18947
|
+
id: string;
|
18948
|
+
label: {
|
18949
|
+
id: string;
|
18950
|
+
description: string;
|
18951
|
+
defaultMessage: string;
|
18952
|
+
};
|
18953
|
+
parent?: {
|
18954
|
+
_fieldId?: string | undefined;
|
18955
|
+
} | undefined;
|
18956
|
+
validation?: {
|
18957
|
+
message: {
|
18958
|
+
id: string;
|
18959
|
+
description: string;
|
18960
|
+
defaultMessage: string;
|
18961
|
+
};
|
18962
|
+
validator: import(".").JSONSchema;
|
18963
|
+
}[] | undefined;
|
18964
|
+
required?: boolean | undefined;
|
18965
|
+
defaultValue?: string | [string, string] | undefined;
|
18966
|
+
conditionals?: ({
|
18967
|
+
type: "SHOW";
|
18968
|
+
conditional: import(".").JSONSchema;
|
18969
|
+
} | {
|
18970
|
+
type: "ENABLE";
|
18971
|
+
conditional: import(".").JSONSchema;
|
18972
|
+
} | {
|
18973
|
+
type: "DISPLAY_ON_REVIEW";
|
18974
|
+
conditional: import(".").JSONSchema;
|
18975
|
+
})[] | undefined;
|
18976
|
+
placeholder?: {
|
18977
|
+
id: string;
|
18978
|
+
description: string;
|
18979
|
+
defaultMessage: string;
|
18980
|
+
} | undefined;
|
18981
|
+
hideLabel?: boolean | undefined;
|
18982
|
+
configuration?: {
|
18983
|
+
notice?: {
|
18984
|
+
id: string;
|
18985
|
+
description: string;
|
18986
|
+
defaultMessage: string;
|
18987
|
+
} | undefined;
|
18988
|
+
} | undefined;
|
18196
18989
|
} | {
|
18197
18990
|
type: "PARAGRAPH";
|
18198
18991
|
id: string;
|
@@ -19223,6 +20016,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
19223
20016
|
defaultMessage: string;
|
19224
20017
|
} | undefined;
|
19225
20018
|
} | undefined;
|
20019
|
+
} | {
|
20020
|
+
type: "DATE_RANGE";
|
20021
|
+
id: string;
|
20022
|
+
label: {
|
20023
|
+
id: string;
|
20024
|
+
description: string;
|
20025
|
+
defaultMessage: string;
|
20026
|
+
};
|
20027
|
+
parent?: {
|
20028
|
+
_fieldId?: string | undefined;
|
20029
|
+
} | undefined;
|
20030
|
+
validation?: {
|
20031
|
+
message: {
|
20032
|
+
id: string;
|
20033
|
+
description: string;
|
20034
|
+
defaultMessage: string;
|
20035
|
+
};
|
20036
|
+
validator: import(".").JSONSchema;
|
20037
|
+
}[] | undefined;
|
20038
|
+
required?: boolean | undefined;
|
20039
|
+
defaultValue?: string | [string, string] | undefined;
|
20040
|
+
conditionals?: ({
|
20041
|
+
type: "SHOW";
|
20042
|
+
conditional: import(".").JSONSchema;
|
20043
|
+
} | {
|
20044
|
+
type: "ENABLE";
|
20045
|
+
conditional: import(".").JSONSchema;
|
20046
|
+
} | {
|
20047
|
+
type: "DISPLAY_ON_REVIEW";
|
20048
|
+
conditional: import(".").JSONSchema;
|
20049
|
+
})[] | undefined;
|
20050
|
+
placeholder?: {
|
20051
|
+
id: string;
|
20052
|
+
description: string;
|
20053
|
+
defaultMessage: string;
|
20054
|
+
} | undefined;
|
20055
|
+
hideLabel?: boolean | undefined;
|
20056
|
+
configuration?: {
|
20057
|
+
notice?: {
|
20058
|
+
id: string;
|
20059
|
+
description: string;
|
20060
|
+
defaultMessage: string;
|
20061
|
+
} | undefined;
|
20062
|
+
} | undefined;
|
19226
20063
|
} | {
|
19227
20064
|
type: "PARAGRAPH";
|
19228
20065
|
id: string;
|
@@ -20240,6 +21077,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
20240
21077
|
defaultMessage: string;
|
20241
21078
|
} | undefined;
|
20242
21079
|
} | undefined;
|
21080
|
+
} | {
|
21081
|
+
type: "DATE_RANGE";
|
21082
|
+
id: string;
|
21083
|
+
label: {
|
21084
|
+
id: string;
|
21085
|
+
description: string;
|
21086
|
+
defaultMessage: string;
|
21087
|
+
};
|
21088
|
+
parent?: {
|
21089
|
+
_fieldId?: string | undefined;
|
21090
|
+
} | undefined;
|
21091
|
+
validation?: {
|
21092
|
+
message: {
|
21093
|
+
id: string;
|
21094
|
+
description: string;
|
21095
|
+
defaultMessage: string;
|
21096
|
+
};
|
21097
|
+
validator: import(".").JSONSchema;
|
21098
|
+
}[] | undefined;
|
21099
|
+
required?: boolean | undefined;
|
21100
|
+
defaultValue?: string | [string, string] | undefined;
|
21101
|
+
conditionals?: ({
|
21102
|
+
type: "SHOW";
|
21103
|
+
conditional: import(".").JSONSchema;
|
21104
|
+
} | {
|
21105
|
+
type: "ENABLE";
|
21106
|
+
conditional: import(".").JSONSchema;
|
21107
|
+
} | {
|
21108
|
+
type: "DISPLAY_ON_REVIEW";
|
21109
|
+
conditional: import(".").JSONSchema;
|
21110
|
+
})[] | undefined;
|
21111
|
+
placeholder?: {
|
21112
|
+
id: string;
|
21113
|
+
description: string;
|
21114
|
+
defaultMessage: string;
|
21115
|
+
} | undefined;
|
21116
|
+
hideLabel?: boolean | undefined;
|
21117
|
+
configuration?: {
|
21118
|
+
notice?: {
|
21119
|
+
id: string;
|
21120
|
+
description: string;
|
21121
|
+
defaultMessage: string;
|
21122
|
+
} | undefined;
|
21123
|
+
} | undefined;
|
20243
21124
|
} | {
|
20244
21125
|
type: "PARAGRAPH";
|
20245
21126
|
id: string;
|
@@ -21270,6 +22151,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
21270
22151
|
defaultMessage: string;
|
21271
22152
|
} | undefined;
|
21272
22153
|
} | undefined;
|
22154
|
+
} | {
|
22155
|
+
type: "DATE_RANGE";
|
22156
|
+
id: string;
|
22157
|
+
label: {
|
22158
|
+
id: string;
|
22159
|
+
description: string;
|
22160
|
+
defaultMessage: string;
|
22161
|
+
};
|
22162
|
+
parent?: {
|
22163
|
+
_fieldId?: string | undefined;
|
22164
|
+
} | undefined;
|
22165
|
+
validation?: {
|
22166
|
+
message: {
|
22167
|
+
id: string;
|
22168
|
+
description: string;
|
22169
|
+
defaultMessage: string;
|
22170
|
+
};
|
22171
|
+
validator: import(".").JSONSchema;
|
22172
|
+
}[] | undefined;
|
22173
|
+
required?: boolean | undefined;
|
22174
|
+
defaultValue?: string | [string, string] | undefined;
|
22175
|
+
conditionals?: ({
|
22176
|
+
type: "SHOW";
|
22177
|
+
conditional: import(".").JSONSchema;
|
22178
|
+
} | {
|
22179
|
+
type: "ENABLE";
|
22180
|
+
conditional: import(".").JSONSchema;
|
22181
|
+
} | {
|
22182
|
+
type: "DISPLAY_ON_REVIEW";
|
22183
|
+
conditional: import(".").JSONSchema;
|
22184
|
+
})[] | undefined;
|
22185
|
+
placeholder?: {
|
22186
|
+
id: string;
|
22187
|
+
description: string;
|
22188
|
+
defaultMessage: string;
|
22189
|
+
} | undefined;
|
22190
|
+
hideLabel?: boolean | undefined;
|
22191
|
+
configuration?: {
|
22192
|
+
notice?: {
|
22193
|
+
id: string;
|
22194
|
+
description: string;
|
22195
|
+
defaultMessage: string;
|
22196
|
+
} | undefined;
|
22197
|
+
} | undefined;
|
21273
22198
|
} | {
|
21274
22199
|
type: "PARAGRAPH";
|
21275
22200
|
id: string;
|
@@ -22272,7 +23197,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22272
23197
|
} | undefined;
|
22273
23198
|
} | undefined;
|
22274
23199
|
} | {
|
22275
|
-
type: "
|
23200
|
+
type: "DATE_RANGE";
|
22276
23201
|
id: string;
|
22277
23202
|
label: {
|
22278
23203
|
id: string;
|
@@ -22291,7 +23216,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22291
23216
|
validator: import(".").JSONSchema;
|
22292
23217
|
}[] | undefined;
|
22293
23218
|
required?: boolean | undefined;
|
22294
|
-
defaultValue?: string | undefined;
|
23219
|
+
defaultValue?: string | [string, string] | undefined;
|
22295
23220
|
conditionals?: ({
|
22296
23221
|
type: "SHOW";
|
22297
23222
|
conditional: import(".").JSONSchema;
|
@@ -22309,49 +23234,14 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22309
23234
|
} | undefined;
|
22310
23235
|
hideLabel?: boolean | undefined;
|
22311
23236
|
configuration?: {
|
22312
|
-
|
22313
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
22314
|
-
} | undefined;
|
22315
|
-
} | undefined;
|
22316
|
-
} | {
|
22317
|
-
type: "PAGE_HEADER";
|
22318
|
-
id: string;
|
22319
|
-
label: {
|
22320
|
-
id: string;
|
22321
|
-
description: string;
|
22322
|
-
defaultMessage: string;
|
22323
|
-
};
|
22324
|
-
parent?: {
|
22325
|
-
_fieldId?: string | undefined;
|
22326
|
-
} | undefined;
|
22327
|
-
validation?: {
|
22328
|
-
message: {
|
23237
|
+
notice?: {
|
22329
23238
|
id: string;
|
22330
23239
|
description: string;
|
22331
23240
|
defaultMessage: string;
|
22332
|
-
};
|
22333
|
-
validator: import(".").JSONSchema;
|
22334
|
-
}[] | undefined;
|
22335
|
-
required?: boolean | undefined;
|
22336
|
-
defaultValue?: string | undefined;
|
22337
|
-
conditionals?: ({
|
22338
|
-
type: "SHOW";
|
22339
|
-
conditional: import(".").JSONSchema;
|
22340
|
-
} | {
|
22341
|
-
type: "ENABLE";
|
22342
|
-
conditional: import(".").JSONSchema;
|
22343
|
-
} | {
|
22344
|
-
type: "DISPLAY_ON_REVIEW";
|
22345
|
-
conditional: import(".").JSONSchema;
|
22346
|
-
})[] | undefined;
|
22347
|
-
placeholder?: {
|
22348
|
-
id: string;
|
22349
|
-
description: string;
|
22350
|
-
defaultMessage: string;
|
23241
|
+
} | undefined;
|
22351
23242
|
} | undefined;
|
22352
|
-
hideLabel?: boolean | undefined;
|
22353
23243
|
} | {
|
22354
|
-
type: "
|
23244
|
+
type: "PARAGRAPH";
|
22355
23245
|
id: string;
|
22356
23246
|
label: {
|
22357
23247
|
id: string;
|
@@ -22370,7 +23260,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22370
23260
|
validator: import(".").JSONSchema;
|
22371
23261
|
}[] | undefined;
|
22372
23262
|
required?: boolean | undefined;
|
22373
|
-
defaultValue?: string |
|
23263
|
+
defaultValue?: string | undefined;
|
22374
23264
|
conditionals?: ({
|
22375
23265
|
type: "SHOW";
|
22376
23266
|
conditional: import(".").JSONSchema;
|
@@ -22388,28 +23278,13 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22388
23278
|
} | undefined;
|
22389
23279
|
hideLabel?: boolean | undefined;
|
22390
23280
|
configuration?: {
|
22391
|
-
|
22392
|
-
|
22393
|
-
style?: {
|
22394
|
-
width?: "full" | "auto" | undefined;
|
22395
|
-
} | undefined;
|
22396
|
-
fileName?: {
|
22397
|
-
id: string;
|
22398
|
-
description: string;
|
22399
|
-
defaultMessage: string;
|
23281
|
+
styles?: {
|
23282
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
22400
23283
|
} | undefined;
|
22401
23284
|
} | undefined;
|
22402
23285
|
} | {
|
22403
|
-
type: "
|
23286
|
+
type: "PAGE_HEADER";
|
22404
23287
|
id: string;
|
22405
|
-
options: {
|
22406
|
-
value: string;
|
22407
|
-
label: {
|
22408
|
-
id: string;
|
22409
|
-
description: string;
|
22410
|
-
defaultMessage: string;
|
22411
|
-
};
|
22412
|
-
}[];
|
22413
23288
|
label: {
|
22414
23289
|
id: string;
|
22415
23290
|
description: string;
|
@@ -22444,24 +23319,14 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22444
23319
|
defaultMessage: string;
|
22445
23320
|
} | undefined;
|
22446
23321
|
hideLabel?: boolean | undefined;
|
22447
|
-
configuration?: {
|
22448
|
-
styles?: {
|
22449
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
22450
|
-
} | undefined;
|
22451
|
-
} | undefined;
|
22452
23322
|
} | {
|
22453
|
-
type: "
|
23323
|
+
type: "FILE";
|
22454
23324
|
id: string;
|
22455
23325
|
label: {
|
22456
23326
|
id: string;
|
22457
23327
|
description: string;
|
22458
23328
|
defaultMessage: string;
|
22459
23329
|
};
|
22460
|
-
items: {
|
22461
|
-
id: string;
|
22462
|
-
description: string;
|
22463
|
-
defaultMessage: string;
|
22464
|
-
}[];
|
22465
23330
|
parent?: {
|
22466
23331
|
_fieldId?: string | undefined;
|
22467
23332
|
} | undefined;
|
@@ -22474,7 +23339,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22474
23339
|
validator: import(".").JSONSchema;
|
22475
23340
|
}[] | undefined;
|
22476
23341
|
required?: boolean | undefined;
|
22477
|
-
defaultValue?: string | undefined;
|
23342
|
+
defaultValue?: string | number | boolean | undefined;
|
22478
23343
|
conditionals?: ({
|
22479
23344
|
type: "SHOW";
|
22480
23345
|
conditional: import(".").JSONSchema;
|
@@ -22492,12 +23357,116 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
22492
23357
|
} | undefined;
|
22493
23358
|
hideLabel?: boolean | undefined;
|
22494
23359
|
configuration?: {
|
22495
|
-
|
22496
|
-
|
23360
|
+
maxFileSize?: number | undefined;
|
23361
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
23362
|
+
style?: {
|
23363
|
+
width?: "full" | "auto" | undefined;
|
23364
|
+
} | undefined;
|
23365
|
+
fileName?: {
|
23366
|
+
id: string;
|
23367
|
+
description: string;
|
23368
|
+
defaultMessage: string;
|
22497
23369
|
} | undefined;
|
22498
23370
|
} | undefined;
|
22499
23371
|
} | {
|
22500
|
-
type: "
|
23372
|
+
type: "RADIO_GROUP";
|
23373
|
+
id: string;
|
23374
|
+
options: {
|
23375
|
+
value: string;
|
23376
|
+
label: {
|
23377
|
+
id: string;
|
23378
|
+
description: string;
|
23379
|
+
defaultMessage: string;
|
23380
|
+
};
|
23381
|
+
}[];
|
23382
|
+
label: {
|
23383
|
+
id: string;
|
23384
|
+
description: string;
|
23385
|
+
defaultMessage: string;
|
23386
|
+
};
|
23387
|
+
parent?: {
|
23388
|
+
_fieldId?: string | undefined;
|
23389
|
+
} | undefined;
|
23390
|
+
validation?: {
|
23391
|
+
message: {
|
23392
|
+
id: string;
|
23393
|
+
description: string;
|
23394
|
+
defaultMessage: string;
|
23395
|
+
};
|
23396
|
+
validator: import(".").JSONSchema;
|
23397
|
+
}[] | undefined;
|
23398
|
+
required?: boolean | undefined;
|
23399
|
+
defaultValue?: string | undefined;
|
23400
|
+
conditionals?: ({
|
23401
|
+
type: "SHOW";
|
23402
|
+
conditional: import(".").JSONSchema;
|
23403
|
+
} | {
|
23404
|
+
type: "ENABLE";
|
23405
|
+
conditional: import(".").JSONSchema;
|
23406
|
+
} | {
|
23407
|
+
type: "DISPLAY_ON_REVIEW";
|
23408
|
+
conditional: import(".").JSONSchema;
|
23409
|
+
})[] | undefined;
|
23410
|
+
placeholder?: {
|
23411
|
+
id: string;
|
23412
|
+
description: string;
|
23413
|
+
defaultMessage: string;
|
23414
|
+
} | undefined;
|
23415
|
+
hideLabel?: boolean | undefined;
|
23416
|
+
configuration?: {
|
23417
|
+
styles?: {
|
23418
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
23419
|
+
} | undefined;
|
23420
|
+
} | undefined;
|
23421
|
+
} | {
|
23422
|
+
type: "BULLET_LIST";
|
23423
|
+
id: string;
|
23424
|
+
label: {
|
23425
|
+
id: string;
|
23426
|
+
description: string;
|
23427
|
+
defaultMessage: string;
|
23428
|
+
};
|
23429
|
+
items: {
|
23430
|
+
id: string;
|
23431
|
+
description: string;
|
23432
|
+
defaultMessage: string;
|
23433
|
+
}[];
|
23434
|
+
parent?: {
|
23435
|
+
_fieldId?: string | undefined;
|
23436
|
+
} | undefined;
|
23437
|
+
validation?: {
|
23438
|
+
message: {
|
23439
|
+
id: string;
|
23440
|
+
description: string;
|
23441
|
+
defaultMessage: string;
|
23442
|
+
};
|
23443
|
+
validator: import(".").JSONSchema;
|
23444
|
+
}[] | undefined;
|
23445
|
+
required?: boolean | undefined;
|
23446
|
+
defaultValue?: string | undefined;
|
23447
|
+
conditionals?: ({
|
23448
|
+
type: "SHOW";
|
23449
|
+
conditional: import(".").JSONSchema;
|
23450
|
+
} | {
|
23451
|
+
type: "ENABLE";
|
23452
|
+
conditional: import(".").JSONSchema;
|
23453
|
+
} | {
|
23454
|
+
type: "DISPLAY_ON_REVIEW";
|
23455
|
+
conditional: import(".").JSONSchema;
|
23456
|
+
})[] | undefined;
|
23457
|
+
placeholder?: {
|
23458
|
+
id: string;
|
23459
|
+
description: string;
|
23460
|
+
defaultMessage: string;
|
23461
|
+
} | undefined;
|
23462
|
+
hideLabel?: boolean | undefined;
|
23463
|
+
configuration?: {
|
23464
|
+
styles?: {
|
23465
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
23466
|
+
} | undefined;
|
23467
|
+
} | undefined;
|
23468
|
+
} | {
|
23469
|
+
type: "SELECT";
|
22501
23470
|
id: string;
|
22502
23471
|
options: {
|
22503
23472
|
value: string;
|
@@ -23301,6 +24270,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
23301
24270
|
defaultMessage: string;
|
23302
24271
|
} | undefined;
|
23303
24272
|
} | undefined;
|
24273
|
+
} | {
|
24274
|
+
type: "DATE_RANGE";
|
24275
|
+
id: string;
|
24276
|
+
label: {
|
24277
|
+
id: string;
|
24278
|
+
description: string;
|
24279
|
+
defaultMessage: string;
|
24280
|
+
};
|
24281
|
+
parent?: {
|
24282
|
+
_fieldId?: string | undefined;
|
24283
|
+
} | undefined;
|
24284
|
+
validation?: {
|
24285
|
+
message: {
|
24286
|
+
id: string;
|
24287
|
+
description: string;
|
24288
|
+
defaultMessage: string;
|
24289
|
+
};
|
24290
|
+
validator: import(".").JSONSchema;
|
24291
|
+
}[] | undefined;
|
24292
|
+
required?: boolean | undefined;
|
24293
|
+
defaultValue?: string | [string, string] | undefined;
|
24294
|
+
conditionals?: ({
|
24295
|
+
type: "SHOW";
|
24296
|
+
conditional: import(".").JSONSchema;
|
24297
|
+
} | {
|
24298
|
+
type: "ENABLE";
|
24299
|
+
conditional: import(".").JSONSchema;
|
24300
|
+
} | {
|
24301
|
+
type: "DISPLAY_ON_REVIEW";
|
24302
|
+
conditional: import(".").JSONSchema;
|
24303
|
+
})[] | undefined;
|
24304
|
+
placeholder?: {
|
24305
|
+
id: string;
|
24306
|
+
description: string;
|
24307
|
+
defaultMessage: string;
|
24308
|
+
} | undefined;
|
24309
|
+
hideLabel?: boolean | undefined;
|
24310
|
+
configuration?: {
|
24311
|
+
notice?: {
|
24312
|
+
id: string;
|
24313
|
+
description: string;
|
24314
|
+
defaultMessage: string;
|
24315
|
+
} | undefined;
|
24316
|
+
} | undefined;
|
23304
24317
|
} | {
|
23305
24318
|
type: "PARAGRAPH";
|
23306
24319
|
id: string;
|
@@ -24025,6 +25038,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24025
25038
|
type: "SHOW";
|
24026
25039
|
conditional: import(".").JSONSchema;
|
24027
25040
|
}[] | undefined;
|
25041
|
+
label?: {
|
25042
|
+
id: string;
|
25043
|
+
description: string;
|
25044
|
+
defaultMessage: string;
|
25045
|
+
} | undefined;
|
24028
25046
|
emptyValueMessage?: {
|
24029
25047
|
id: string;
|
24030
25048
|
description: string;
|
@@ -24078,7 +25096,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24078
25096
|
};
|
24079
25097
|
fields: ({
|
24080
25098
|
config: {
|
24081
|
-
type: "
|
25099
|
+
type: "exact" | "fuzzy" | "range";
|
24082
25100
|
};
|
24083
25101
|
fieldId: string;
|
24084
25102
|
fieldType: "field";
|
@@ -24092,7 +25110,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24092
25110
|
}[] | undefined;
|
24093
25111
|
} | {
|
24094
25112
|
config: {
|
24095
|
-
type: "
|
25113
|
+
type: "exact" | "fuzzy" | "range";
|
24096
25114
|
};
|
24097
25115
|
fieldId: "status" | "trackingId";
|
24098
25116
|
fieldType: "event";
|
@@ -24320,6 +25338,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24320
25338
|
configuration?: {
|
24321
25339
|
notice?: TranslationConfig | undefined;
|
24322
25340
|
} | undefined;
|
25341
|
+
} | {
|
25342
|
+
type: "DATE_RANGE";
|
25343
|
+
id: string;
|
25344
|
+
label: TranslationConfig;
|
25345
|
+
parent?: {
|
25346
|
+
_fieldId?: string | undefined;
|
25347
|
+
} | undefined;
|
25348
|
+
validation?: {
|
25349
|
+
message: TranslationConfig;
|
25350
|
+
validator: import(".").JSONSchema;
|
25351
|
+
}[] | undefined;
|
25352
|
+
required?: boolean | undefined;
|
25353
|
+
defaultValue?: string | [string, string] | undefined;
|
25354
|
+
conditionals?: ({
|
25355
|
+
type: "SHOW";
|
25356
|
+
conditional: import(".").JSONSchema;
|
25357
|
+
} | {
|
25358
|
+
type: "ENABLE";
|
25359
|
+
conditional: import(".").JSONSchema;
|
25360
|
+
} | {
|
25361
|
+
type: "DISPLAY_ON_REVIEW";
|
25362
|
+
conditional: import(".").JSONSchema;
|
25363
|
+
})[] | undefined;
|
25364
|
+
placeholder?: TranslationConfig | undefined;
|
25365
|
+
hideLabel?: boolean | undefined;
|
25366
|
+
configuration?: {
|
25367
|
+
notice?: TranslationConfig | undefined;
|
25368
|
+
} | undefined;
|
24323
25369
|
} | {
|
24324
25370
|
type: "PARAGRAPH";
|
24325
25371
|
id: string;
|
@@ -24999,6 +26045,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
24999
26045
|
configuration?: {
|
25000
26046
|
notice?: TranslationConfig | undefined;
|
25001
26047
|
} | undefined;
|
26048
|
+
} | {
|
26049
|
+
type: "DATE_RANGE";
|
26050
|
+
id: string;
|
26051
|
+
label: TranslationConfig;
|
26052
|
+
parent?: {
|
26053
|
+
_fieldId?: string | undefined;
|
26054
|
+
} | undefined;
|
26055
|
+
validation?: {
|
26056
|
+
message: TranslationConfig;
|
26057
|
+
validator: import(".").JSONSchema;
|
26058
|
+
}[] | undefined;
|
26059
|
+
required?: boolean | undefined;
|
26060
|
+
defaultValue?: string | [string, string] | undefined;
|
26061
|
+
conditionals?: ({
|
26062
|
+
type: "SHOW";
|
26063
|
+
conditional: import(".").JSONSchema;
|
26064
|
+
} | {
|
26065
|
+
type: "ENABLE";
|
26066
|
+
conditional: import(".").JSONSchema;
|
26067
|
+
} | {
|
26068
|
+
type: "DISPLAY_ON_REVIEW";
|
26069
|
+
conditional: import(".").JSONSchema;
|
26070
|
+
})[] | undefined;
|
26071
|
+
placeholder?: TranslationConfig | undefined;
|
26072
|
+
hideLabel?: boolean | undefined;
|
26073
|
+
configuration?: {
|
26074
|
+
notice?: TranslationConfig | undefined;
|
26075
|
+
} | undefined;
|
25002
26076
|
} | {
|
25003
26077
|
type: "PARAGRAPH";
|
25004
26078
|
id: string;
|
@@ -25677,6 +26751,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
25677
26751
|
configuration?: {
|
25678
26752
|
notice?: TranslationConfig | undefined;
|
25679
26753
|
} | undefined;
|
26754
|
+
} | {
|
26755
|
+
type: "DATE_RANGE";
|
26756
|
+
id: string;
|
26757
|
+
label: TranslationConfig;
|
26758
|
+
parent?: {
|
26759
|
+
_fieldId?: string | undefined;
|
26760
|
+
} | undefined;
|
26761
|
+
validation?: {
|
26762
|
+
message: TranslationConfig;
|
26763
|
+
validator: import(".").JSONSchema;
|
26764
|
+
}[] | undefined;
|
26765
|
+
required?: boolean | undefined;
|
26766
|
+
defaultValue?: string | [string, string] | undefined;
|
26767
|
+
conditionals?: ({
|
26768
|
+
type: "SHOW";
|
26769
|
+
conditional: import(".").JSONSchema;
|
26770
|
+
} | {
|
26771
|
+
type: "ENABLE";
|
26772
|
+
conditional: import(".").JSONSchema;
|
26773
|
+
} | {
|
26774
|
+
type: "DISPLAY_ON_REVIEW";
|
26775
|
+
conditional: import(".").JSONSchema;
|
26776
|
+
})[] | undefined;
|
26777
|
+
placeholder?: TranslationConfig | undefined;
|
26778
|
+
hideLabel?: boolean | undefined;
|
26779
|
+
configuration?: {
|
26780
|
+
notice?: TranslationConfig | undefined;
|
26781
|
+
} | undefined;
|
25680
26782
|
} | {
|
25681
26783
|
type: "PARAGRAPH";
|
25682
26784
|
id: string;
|
@@ -26355,6 +27457,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
26355
27457
|
configuration?: {
|
26356
27458
|
notice?: TranslationConfig | undefined;
|
26357
27459
|
} | undefined;
|
27460
|
+
} | {
|
27461
|
+
type: "DATE_RANGE";
|
27462
|
+
id: string;
|
27463
|
+
label: TranslationConfig;
|
27464
|
+
parent?: {
|
27465
|
+
_fieldId?: string | undefined;
|
27466
|
+
} | undefined;
|
27467
|
+
validation?: {
|
27468
|
+
message: TranslationConfig;
|
27469
|
+
validator: import(".").JSONSchema;
|
27470
|
+
}[] | undefined;
|
27471
|
+
required?: boolean | undefined;
|
27472
|
+
defaultValue?: string | [string, string] | undefined;
|
27473
|
+
conditionals?: ({
|
27474
|
+
type: "SHOW";
|
27475
|
+
conditional: import(".").JSONSchema;
|
27476
|
+
} | {
|
27477
|
+
type: "ENABLE";
|
27478
|
+
conditional: import(".").JSONSchema;
|
27479
|
+
} | {
|
27480
|
+
type: "DISPLAY_ON_REVIEW";
|
27481
|
+
conditional: import(".").JSONSchema;
|
27482
|
+
})[] | undefined;
|
27483
|
+
placeholder?: TranslationConfig | undefined;
|
27484
|
+
hideLabel?: boolean | undefined;
|
27485
|
+
configuration?: {
|
27486
|
+
notice?: TranslationConfig | undefined;
|
27487
|
+
} | undefined;
|
26358
27488
|
} | {
|
26359
27489
|
type: "PARAGRAPH";
|
26360
27490
|
id: string;
|
@@ -27082,14 +28212,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27082
28212
|
notice?: TranslationConfig | undefined;
|
27083
28213
|
} | undefined;
|
27084
28214
|
} | {
|
27085
|
-
type: "
|
28215
|
+
type: "DATE_RANGE";
|
27086
28216
|
id: string;
|
27087
28217
|
label: TranslationConfig;
|
27088
|
-
configuration: {
|
27089
|
-
styles?: {
|
27090
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27091
|
-
} | undefined;
|
27092
|
-
};
|
27093
28218
|
parent?: {
|
27094
28219
|
_fieldId?: string | undefined;
|
27095
28220
|
} | undefined;
|
@@ -27098,7 +28223,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27098
28223
|
validator: import(".").JSONSchema;
|
27099
28224
|
}[] | undefined;
|
27100
28225
|
required?: boolean | undefined;
|
27101
|
-
defaultValue?: string | undefined;
|
28226
|
+
defaultValue?: string | [string, string] | undefined;
|
27102
28227
|
conditionals?: ({
|
27103
28228
|
type: "SHOW";
|
27104
28229
|
conditional: import(".").JSONSchema;
|
@@ -27111,8 +28236,41 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27111
28236
|
})[] | undefined;
|
27112
28237
|
placeholder?: TranslationConfig | undefined;
|
27113
28238
|
hideLabel?: boolean | undefined;
|
28239
|
+
configuration?: {
|
28240
|
+
notice?: TranslationConfig | undefined;
|
28241
|
+
} | undefined;
|
27114
28242
|
} | {
|
27115
|
-
type: "
|
28243
|
+
type: "PARAGRAPH";
|
28244
|
+
id: string;
|
28245
|
+
label: TranslationConfig;
|
28246
|
+
configuration: {
|
28247
|
+
styles?: {
|
28248
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28249
|
+
} | undefined;
|
28250
|
+
};
|
28251
|
+
parent?: {
|
28252
|
+
_fieldId?: string | undefined;
|
28253
|
+
} | undefined;
|
28254
|
+
validation?: {
|
28255
|
+
message: TranslationConfig;
|
28256
|
+
validator: import(".").JSONSchema;
|
28257
|
+
}[] | undefined;
|
28258
|
+
required?: boolean | undefined;
|
28259
|
+
defaultValue?: string | undefined;
|
28260
|
+
conditionals?: ({
|
28261
|
+
type: "SHOW";
|
28262
|
+
conditional: import(".").JSONSchema;
|
28263
|
+
} | {
|
28264
|
+
type: "ENABLE";
|
28265
|
+
conditional: import(".").JSONSchema;
|
28266
|
+
} | {
|
28267
|
+
type: "DISPLAY_ON_REVIEW";
|
28268
|
+
conditional: import(".").JSONSchema;
|
28269
|
+
})[] | undefined;
|
28270
|
+
placeholder?: TranslationConfig | undefined;
|
28271
|
+
hideLabel?: boolean | undefined;
|
28272
|
+
} | {
|
28273
|
+
type: "PAGE_HEADER";
|
27116
28274
|
id: string;
|
27117
28275
|
label: TranslationConfig;
|
27118
28276
|
parent?: {
|
@@ -27762,6 +28920,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
27762
28920
|
configuration?: {
|
27763
28921
|
notice?: TranslationConfig | undefined;
|
27764
28922
|
} | undefined;
|
28923
|
+
} | {
|
28924
|
+
type: "DATE_RANGE";
|
28925
|
+
id: string;
|
28926
|
+
label: TranslationConfig;
|
28927
|
+
parent?: {
|
28928
|
+
_fieldId?: string | undefined;
|
28929
|
+
} | undefined;
|
28930
|
+
validation?: {
|
28931
|
+
message: TranslationConfig;
|
28932
|
+
validator: import(".").JSONSchema;
|
28933
|
+
}[] | undefined;
|
28934
|
+
required?: boolean | undefined;
|
28935
|
+
defaultValue?: string | [string, string] | undefined;
|
28936
|
+
conditionals?: ({
|
28937
|
+
type: "SHOW";
|
28938
|
+
conditional: import(".").JSONSchema;
|
28939
|
+
} | {
|
28940
|
+
type: "ENABLE";
|
28941
|
+
conditional: import(".").JSONSchema;
|
28942
|
+
} | {
|
28943
|
+
type: "DISPLAY_ON_REVIEW";
|
28944
|
+
conditional: import(".").JSONSchema;
|
28945
|
+
})[] | undefined;
|
28946
|
+
placeholder?: TranslationConfig | undefined;
|
28947
|
+
hideLabel?: boolean | undefined;
|
28948
|
+
configuration?: {
|
28949
|
+
notice?: TranslationConfig | undefined;
|
28950
|
+
} | undefined;
|
27765
28951
|
} | {
|
27766
28952
|
type: "PARAGRAPH";
|
27767
28953
|
id: string;
|
@@ -28444,6 +29630,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
28444
29630
|
configuration?: {
|
28445
29631
|
notice?: TranslationConfig | undefined;
|
28446
29632
|
} | undefined;
|
29633
|
+
} | {
|
29634
|
+
type: "DATE_RANGE";
|
29635
|
+
id: string;
|
29636
|
+
label: TranslationConfig;
|
29637
|
+
parent?: {
|
29638
|
+
_fieldId?: string | undefined;
|
29639
|
+
} | undefined;
|
29640
|
+
validation?: {
|
29641
|
+
message: TranslationConfig;
|
29642
|
+
validator: import(".").JSONSchema;
|
29643
|
+
}[] | undefined;
|
29644
|
+
required?: boolean | undefined;
|
29645
|
+
defaultValue?: string | [string, string] | undefined;
|
29646
|
+
conditionals?: ({
|
29647
|
+
type: "SHOW";
|
29648
|
+
conditional: import(".").JSONSchema;
|
29649
|
+
} | {
|
29650
|
+
type: "ENABLE";
|
29651
|
+
conditional: import(".").JSONSchema;
|
29652
|
+
} | {
|
29653
|
+
type: "DISPLAY_ON_REVIEW";
|
29654
|
+
conditional: import(".").JSONSchema;
|
29655
|
+
})[] | undefined;
|
29656
|
+
placeholder?: TranslationConfig | undefined;
|
29657
|
+
hideLabel?: boolean | undefined;
|
29658
|
+
configuration?: {
|
29659
|
+
notice?: TranslationConfig | undefined;
|
29660
|
+
} | undefined;
|
28447
29661
|
} | {
|
28448
29662
|
type: "PARAGRAPH";
|
28449
29663
|
id: string;
|
@@ -29125,6 +30339,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29125
30339
|
configuration?: {
|
29126
30340
|
notice?: TranslationConfig | undefined;
|
29127
30341
|
} | undefined;
|
30342
|
+
} | {
|
30343
|
+
type: "DATE_RANGE";
|
30344
|
+
id: string;
|
30345
|
+
label: TranslationConfig;
|
30346
|
+
parent?: {
|
30347
|
+
_fieldId?: string | undefined;
|
30348
|
+
} | undefined;
|
30349
|
+
validation?: {
|
30350
|
+
message: TranslationConfig;
|
30351
|
+
validator: import(".").JSONSchema;
|
30352
|
+
}[] | undefined;
|
30353
|
+
required?: boolean | undefined;
|
30354
|
+
defaultValue?: string | [string, string] | undefined;
|
30355
|
+
conditionals?: ({
|
30356
|
+
type: "SHOW";
|
30357
|
+
conditional: import(".").JSONSchema;
|
30358
|
+
} | {
|
30359
|
+
type: "ENABLE";
|
30360
|
+
conditional: import(".").JSONSchema;
|
30361
|
+
} | {
|
30362
|
+
type: "DISPLAY_ON_REVIEW";
|
30363
|
+
conditional: import(".").JSONSchema;
|
30364
|
+
})[] | undefined;
|
30365
|
+
placeholder?: TranslationConfig | undefined;
|
30366
|
+
hideLabel?: boolean | undefined;
|
30367
|
+
configuration?: {
|
30368
|
+
notice?: TranslationConfig | undefined;
|
30369
|
+
} | undefined;
|
29128
30370
|
} | {
|
29129
30371
|
type: "PARAGRAPH";
|
29130
30372
|
id: string;
|
@@ -29796,14 +31038,9 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29796
31038
|
notice?: TranslationConfig | undefined;
|
29797
31039
|
} | undefined;
|
29798
31040
|
} | {
|
29799
|
-
type: "
|
31041
|
+
type: "DATE_RANGE";
|
29800
31042
|
id: string;
|
29801
31043
|
label: TranslationConfig;
|
29802
|
-
configuration: {
|
29803
|
-
styles?: {
|
29804
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
29805
|
-
} | undefined;
|
29806
|
-
};
|
29807
31044
|
parent?: {
|
29808
31045
|
_fieldId?: string | undefined;
|
29809
31046
|
} | undefined;
|
@@ -29812,7 +31049,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29812
31049
|
validator: import(".").JSONSchema;
|
29813
31050
|
}[] | undefined;
|
29814
31051
|
required?: boolean | undefined;
|
29815
|
-
defaultValue?: string | undefined;
|
31052
|
+
defaultValue?: string | [string, string] | undefined;
|
29816
31053
|
conditionals?: ({
|
29817
31054
|
type: "SHOW";
|
29818
31055
|
conditional: import(".").JSONSchema;
|
@@ -29825,42 +31062,17 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29825
31062
|
})[] | undefined;
|
29826
31063
|
placeholder?: TranslationConfig | undefined;
|
29827
31064
|
hideLabel?: boolean | undefined;
|
29828
|
-
|
29829
|
-
|
29830
|
-
id: string;
|
29831
|
-
label: TranslationConfig;
|
29832
|
-
parent?: {
|
29833
|
-
_fieldId?: string | undefined;
|
31065
|
+
configuration?: {
|
31066
|
+
notice?: TranslationConfig | undefined;
|
29834
31067
|
} | undefined;
|
29835
|
-
validation?: {
|
29836
|
-
message: TranslationConfig;
|
29837
|
-
validator: import(".").JSONSchema;
|
29838
|
-
}[] | undefined;
|
29839
|
-
required?: boolean | undefined;
|
29840
|
-
defaultValue?: string | undefined;
|
29841
|
-
conditionals?: ({
|
29842
|
-
type: "SHOW";
|
29843
|
-
conditional: import(".").JSONSchema;
|
29844
|
-
} | {
|
29845
|
-
type: "ENABLE";
|
29846
|
-
conditional: import(".").JSONSchema;
|
29847
|
-
} | {
|
29848
|
-
type: "DISPLAY_ON_REVIEW";
|
29849
|
-
conditional: import(".").JSONSchema;
|
29850
|
-
})[] | undefined;
|
29851
|
-
placeholder?: TranslationConfig | undefined;
|
29852
|
-
hideLabel?: boolean | undefined;
|
29853
31068
|
} | {
|
29854
|
-
type: "
|
31069
|
+
type: "PARAGRAPH";
|
29855
31070
|
id: string;
|
29856
31071
|
label: TranslationConfig;
|
29857
31072
|
configuration: {
|
29858
|
-
|
29859
|
-
|
29860
|
-
style?: {
|
29861
|
-
width?: "full" | "auto" | undefined;
|
31073
|
+
styles?: {
|
31074
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
29862
31075
|
} | undefined;
|
29863
|
-
fileName?: TranslationConfig | undefined;
|
29864
31076
|
};
|
29865
31077
|
parent?: {
|
29866
31078
|
_fieldId?: string | undefined;
|
@@ -29870,7 +31082,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29870
31082
|
validator: import(".").JSONSchema;
|
29871
31083
|
}[] | undefined;
|
29872
31084
|
required?: boolean | undefined;
|
29873
|
-
defaultValue?: string |
|
31085
|
+
defaultValue?: string | undefined;
|
29874
31086
|
conditionals?: ({
|
29875
31087
|
type: "SHOW";
|
29876
31088
|
conditional: import(".").JSONSchema;
|
@@ -29884,12 +31096,8 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29884
31096
|
placeholder?: TranslationConfig | undefined;
|
29885
31097
|
hideLabel?: boolean | undefined;
|
29886
31098
|
} | {
|
29887
|
-
type: "
|
31099
|
+
type: "PAGE_HEADER";
|
29888
31100
|
id: string;
|
29889
|
-
options: {
|
29890
|
-
value: string;
|
29891
|
-
label: TranslationConfig;
|
29892
|
-
}[];
|
29893
31101
|
label: TranslationConfig;
|
29894
31102
|
parent?: {
|
29895
31103
|
_fieldId?: string | undefined;
|
@@ -29912,21 +31120,18 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29912
31120
|
})[] | undefined;
|
29913
31121
|
placeholder?: TranslationConfig | undefined;
|
29914
31122
|
hideLabel?: boolean | undefined;
|
29915
|
-
configuration?: {
|
29916
|
-
styles?: {
|
29917
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
29918
|
-
} | undefined;
|
29919
|
-
} | undefined;
|
29920
31123
|
} | {
|
29921
|
-
type: "
|
31124
|
+
type: "FILE";
|
29922
31125
|
id: string;
|
29923
31126
|
label: TranslationConfig;
|
29924
31127
|
configuration: {
|
29925
|
-
|
29926
|
-
|
31128
|
+
maxFileSize: number;
|
31129
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
31130
|
+
style?: {
|
31131
|
+
width?: "full" | "auto" | undefined;
|
29927
31132
|
} | undefined;
|
31133
|
+
fileName?: TranslationConfig | undefined;
|
29928
31134
|
};
|
29929
|
-
items: TranslationConfig[];
|
29930
31135
|
parent?: {
|
29931
31136
|
_fieldId?: string | undefined;
|
29932
31137
|
} | undefined;
|
@@ -29935,7 +31140,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29935
31140
|
validator: import(".").JSONSchema;
|
29936
31141
|
}[] | undefined;
|
29937
31142
|
required?: boolean | undefined;
|
29938
|
-
defaultValue?: string | undefined;
|
31143
|
+
defaultValue?: string | number | boolean | undefined;
|
29939
31144
|
conditionals?: ({
|
29940
31145
|
type: "SHOW";
|
29941
31146
|
conditional: import(".").JSONSchema;
|
@@ -29949,7 +31154,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29949
31154
|
placeholder?: TranslationConfig | undefined;
|
29950
31155
|
hideLabel?: boolean | undefined;
|
29951
31156
|
} | {
|
29952
|
-
type: "
|
31157
|
+
type: "RADIO_GROUP";
|
29953
31158
|
id: string;
|
29954
31159
|
options: {
|
29955
31160
|
value: string;
|
@@ -29977,66 +31182,156 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
29977
31182
|
})[] | undefined;
|
29978
31183
|
placeholder?: TranslationConfig | undefined;
|
29979
31184
|
hideLabel?: boolean | undefined;
|
29980
|
-
|
29981
|
-
|
29982
|
-
|
29983
|
-
|
29984
|
-
parent?: {
|
29985
|
-
_fieldId?: string | undefined;
|
29986
|
-
} | undefined;
|
29987
|
-
validation?: {
|
29988
|
-
message: TranslationConfig;
|
29989
|
-
validator: import(".").JSONSchema;
|
29990
|
-
}[] | undefined;
|
29991
|
-
required?: boolean | undefined;
|
29992
|
-
defaultValue?: boolean | undefined;
|
29993
|
-
conditionals?: ({
|
29994
|
-
type: "SHOW";
|
29995
|
-
conditional: import(".").JSONSchema;
|
29996
|
-
} | {
|
29997
|
-
type: "ENABLE";
|
29998
|
-
conditional: import(".").JSONSchema;
|
29999
|
-
} | {
|
30000
|
-
type: "DISPLAY_ON_REVIEW";
|
30001
|
-
conditional: import(".").JSONSchema;
|
30002
|
-
})[] | undefined;
|
30003
|
-
placeholder?: TranslationConfig | undefined;
|
30004
|
-
hideLabel?: boolean | undefined;
|
30005
|
-
} | {
|
30006
|
-
type: "COUNTRY";
|
30007
|
-
id: string;
|
30008
|
-
label: TranslationConfig;
|
30009
|
-
parent?: {
|
30010
|
-
_fieldId?: string | undefined;
|
31185
|
+
configuration?: {
|
31186
|
+
styles?: {
|
31187
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
31188
|
+
} | undefined;
|
30011
31189
|
} | undefined;
|
30012
|
-
validation?: {
|
30013
|
-
message: TranslationConfig;
|
30014
|
-
validator: import(".").JSONSchema;
|
30015
|
-
}[] | undefined;
|
30016
|
-
required?: boolean | undefined;
|
30017
|
-
defaultValue?: string | undefined;
|
30018
|
-
conditionals?: ({
|
30019
|
-
type: "SHOW";
|
30020
|
-
conditional: import(".").JSONSchema;
|
30021
|
-
} | {
|
30022
|
-
type: "ENABLE";
|
30023
|
-
conditional: import(".").JSONSchema;
|
30024
|
-
} | {
|
30025
|
-
type: "DISPLAY_ON_REVIEW";
|
30026
|
-
conditional: import(".").JSONSchema;
|
30027
|
-
})[] | undefined;
|
30028
|
-
placeholder?: TranslationConfig | undefined;
|
30029
|
-
hideLabel?: boolean | undefined;
|
30030
31190
|
} | {
|
30031
|
-
type: "
|
31191
|
+
type: "BULLET_LIST";
|
30032
31192
|
id: string;
|
30033
31193
|
label: TranslationConfig;
|
30034
31194
|
configuration: {
|
30035
|
-
|
30036
|
-
|
30037
|
-
$declaration: string;
|
31195
|
+
styles?: {
|
31196
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
30038
31197
|
} | undefined;
|
30039
31198
|
};
|
31199
|
+
items: TranslationConfig[];
|
31200
|
+
parent?: {
|
31201
|
+
_fieldId?: string | undefined;
|
31202
|
+
} | undefined;
|
31203
|
+
validation?: {
|
31204
|
+
message: TranslationConfig;
|
31205
|
+
validator: import(".").JSONSchema;
|
31206
|
+
}[] | undefined;
|
31207
|
+
required?: boolean | undefined;
|
31208
|
+
defaultValue?: string | undefined;
|
31209
|
+
conditionals?: ({
|
31210
|
+
type: "SHOW";
|
31211
|
+
conditional: import(".").JSONSchema;
|
31212
|
+
} | {
|
31213
|
+
type: "ENABLE";
|
31214
|
+
conditional: import(".").JSONSchema;
|
31215
|
+
} | {
|
31216
|
+
type: "DISPLAY_ON_REVIEW";
|
31217
|
+
conditional: import(".").JSONSchema;
|
31218
|
+
})[] | undefined;
|
31219
|
+
placeholder?: TranslationConfig | undefined;
|
31220
|
+
hideLabel?: boolean | undefined;
|
31221
|
+
} | {
|
31222
|
+
type: "SELECT";
|
31223
|
+
id: string;
|
31224
|
+
options: {
|
31225
|
+
value: string;
|
31226
|
+
label: TranslationConfig;
|
31227
|
+
}[];
|
31228
|
+
label: TranslationConfig;
|
31229
|
+
parent?: {
|
31230
|
+
_fieldId?: string | undefined;
|
31231
|
+
} | undefined;
|
31232
|
+
validation?: {
|
31233
|
+
message: TranslationConfig;
|
31234
|
+
validator: import(".").JSONSchema;
|
31235
|
+
}[] | undefined;
|
31236
|
+
required?: boolean | undefined;
|
31237
|
+
defaultValue?: string | undefined;
|
31238
|
+
conditionals?: ({
|
31239
|
+
type: "SHOW";
|
31240
|
+
conditional: import(".").JSONSchema;
|
31241
|
+
} | {
|
31242
|
+
type: "ENABLE";
|
31243
|
+
conditional: import(".").JSONSchema;
|
31244
|
+
} | {
|
31245
|
+
type: "DISPLAY_ON_REVIEW";
|
31246
|
+
conditional: import(".").JSONSchema;
|
31247
|
+
})[] | undefined;
|
31248
|
+
placeholder?: TranslationConfig | undefined;
|
31249
|
+
hideLabel?: boolean | undefined;
|
31250
|
+
} | {
|
31251
|
+
type: "CHECKBOX";
|
31252
|
+
id: string;
|
31253
|
+
label: TranslationConfig;
|
31254
|
+
parent?: {
|
31255
|
+
_fieldId?: string | undefined;
|
31256
|
+
} | undefined;
|
31257
|
+
validation?: {
|
31258
|
+
message: TranslationConfig;
|
31259
|
+
validator: import(".").JSONSchema;
|
31260
|
+
}[] | undefined;
|
31261
|
+
required?: boolean | undefined;
|
31262
|
+
defaultValue?: boolean | undefined;
|
31263
|
+
conditionals?: ({
|
31264
|
+
type: "SHOW";
|
31265
|
+
conditional: import(".").JSONSchema;
|
31266
|
+
} | {
|
31267
|
+
type: "ENABLE";
|
31268
|
+
conditional: import(".").JSONSchema;
|
31269
|
+
} | {
|
31270
|
+
type: "DISPLAY_ON_REVIEW";
|
31271
|
+
conditional: import(".").JSONSchema;
|
31272
|
+
})[] | undefined;
|
31273
|
+
placeholder?: TranslationConfig | undefined;
|
31274
|
+
hideLabel?: boolean | undefined;
|
31275
|
+
} | {
|
31276
|
+
type: "COUNTRY";
|
31277
|
+
id: string;
|
31278
|
+
label: TranslationConfig;
|
31279
|
+
parent?: {
|
31280
|
+
_fieldId?: string | undefined;
|
31281
|
+
} | undefined;
|
31282
|
+
validation?: {
|
31283
|
+
message: TranslationConfig;
|
31284
|
+
validator: import(".").JSONSchema;
|
31285
|
+
}[] | undefined;
|
31286
|
+
required?: boolean | undefined;
|
31287
|
+
defaultValue?: string | undefined;
|
31288
|
+
conditionals?: ({
|
31289
|
+
type: "SHOW";
|
31290
|
+
conditional: import(".").JSONSchema;
|
31291
|
+
} | {
|
31292
|
+
type: "ENABLE";
|
31293
|
+
conditional: import(".").JSONSchema;
|
31294
|
+
} | {
|
31295
|
+
type: "DISPLAY_ON_REVIEW";
|
31296
|
+
conditional: import(".").JSONSchema;
|
31297
|
+
})[] | undefined;
|
31298
|
+
placeholder?: TranslationConfig | undefined;
|
31299
|
+
hideLabel?: boolean | undefined;
|
31300
|
+
} | {
|
31301
|
+
type: "ADMINISTRATIVE_AREA";
|
31302
|
+
id: string;
|
31303
|
+
label: TranslationConfig;
|
31304
|
+
configuration: {
|
31305
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
31306
|
+
partOf?: {
|
31307
|
+
$declaration: string;
|
31308
|
+
} | undefined;
|
31309
|
+
};
|
31310
|
+
parent?: {
|
31311
|
+
_fieldId?: string | undefined;
|
31312
|
+
} | undefined;
|
31313
|
+
validation?: {
|
31314
|
+
message: TranslationConfig;
|
31315
|
+
validator: import(".").JSONSchema;
|
31316
|
+
}[] | undefined;
|
31317
|
+
required?: boolean | undefined;
|
31318
|
+
defaultValue?: string | undefined;
|
31319
|
+
conditionals?: ({
|
31320
|
+
type: "SHOW";
|
31321
|
+
conditional: import(".").JSONSchema;
|
31322
|
+
} | {
|
31323
|
+
type: "ENABLE";
|
31324
|
+
conditional: import(".").JSONSchema;
|
31325
|
+
} | {
|
31326
|
+
type: "DISPLAY_ON_REVIEW";
|
31327
|
+
conditional: import(".").JSONSchema;
|
31328
|
+
})[] | undefined;
|
31329
|
+
placeholder?: TranslationConfig | undefined;
|
31330
|
+
hideLabel?: boolean | undefined;
|
31331
|
+
} | {
|
31332
|
+
type: "LOCATION";
|
31333
|
+
id: string;
|
31334
|
+
label: TranslationConfig;
|
30040
31335
|
parent?: {
|
30041
31336
|
_fieldId?: string | undefined;
|
30042
31337
|
} | undefined;
|
@@ -30059,31 +31354,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30059
31354
|
placeholder?: TranslationConfig | undefined;
|
30060
31355
|
hideLabel?: boolean | undefined;
|
30061
31356
|
} | {
|
30062
|
-
type: "LOCATION";
|
30063
|
-
id: string;
|
30064
|
-
label: TranslationConfig;
|
30065
|
-
parent?: {
|
30066
|
-
_fieldId?: string | undefined;
|
30067
|
-
} | undefined;
|
30068
|
-
validation?: {
|
30069
|
-
message: TranslationConfig;
|
30070
|
-
validator: import(".").JSONSchema;
|
30071
|
-
}[] | undefined;
|
30072
|
-
required?: boolean | undefined;
|
30073
|
-
defaultValue?: string | undefined;
|
30074
|
-
conditionals?: ({
|
30075
|
-
type: "SHOW";
|
30076
|
-
conditional: import(".").JSONSchema;
|
30077
|
-
} | {
|
30078
|
-
type: "ENABLE";
|
30079
|
-
conditional: import(".").JSONSchema;
|
30080
|
-
} | {
|
30081
|
-
type: "DISPLAY_ON_REVIEW";
|
30082
|
-
conditional: import(".").JSONSchema;
|
30083
|
-
})[] | undefined;
|
30084
|
-
placeholder?: TranslationConfig | undefined;
|
30085
|
-
hideLabel?: boolean | undefined;
|
30086
|
-
} | {
|
30087
31357
|
type: "FILE_WITH_OPTIONS";
|
30088
31358
|
id: string;
|
30089
31359
|
options: {
|
@@ -30476,6 +31746,34 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30476
31746
|
configuration?: {
|
30477
31747
|
notice?: TranslationConfig | undefined;
|
30478
31748
|
} | undefined;
|
31749
|
+
} | {
|
31750
|
+
type: "DATE_RANGE";
|
31751
|
+
id: string;
|
31752
|
+
label: TranslationConfig;
|
31753
|
+
parent?: {
|
31754
|
+
_fieldId?: string | undefined;
|
31755
|
+
} | undefined;
|
31756
|
+
validation?: {
|
31757
|
+
message: TranslationConfig;
|
31758
|
+
validator: import(".").JSONSchema;
|
31759
|
+
}[] | undefined;
|
31760
|
+
required?: boolean | undefined;
|
31761
|
+
defaultValue?: string | [string, string] | undefined;
|
31762
|
+
conditionals?: ({
|
31763
|
+
type: "SHOW";
|
31764
|
+
conditional: import(".").JSONSchema;
|
31765
|
+
} | {
|
31766
|
+
type: "ENABLE";
|
31767
|
+
conditional: import(".").JSONSchema;
|
31768
|
+
} | {
|
31769
|
+
type: "DISPLAY_ON_REVIEW";
|
31770
|
+
conditional: import(".").JSONSchema;
|
31771
|
+
})[] | undefined;
|
31772
|
+
placeholder?: TranslationConfig | undefined;
|
31773
|
+
hideLabel?: boolean | undefined;
|
31774
|
+
configuration?: {
|
31775
|
+
notice?: TranslationConfig | undefined;
|
31776
|
+
} | undefined;
|
30479
31777
|
} | {
|
30480
31778
|
type: "PARAGRAPH";
|
30481
31779
|
id: string;
|
@@ -30969,6 +32267,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30969
32267
|
type: "SHOW";
|
30970
32268
|
conditional: import(".").JSONSchema;
|
30971
32269
|
}[] | undefined;
|
32270
|
+
label?: TranslationConfig | undefined;
|
30972
32271
|
emptyValueMessage?: TranslationConfig | undefined;
|
30973
32272
|
} | {
|
30974
32273
|
id: string;
|
@@ -30990,7 +32289,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
30990
32289
|
title: TranslationConfig;
|
30991
32290
|
fields: ({
|
30992
32291
|
config: {
|
30993
|
-
type: "
|
32292
|
+
type: "exact" | "fuzzy" | "range";
|
30994
32293
|
};
|
30995
32294
|
fieldId: string;
|
30996
32295
|
fieldType: "field";
|
@@ -31000,7 +32299,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31000
32299
|
}[] | undefined;
|
31001
32300
|
} | {
|
31002
32301
|
config: {
|
31003
|
-
type: "
|
32302
|
+
type: "exact" | "fuzzy" | "range";
|
31004
32303
|
};
|
31005
32304
|
fieldId: "status" | "trackingId";
|
31006
32305
|
fieldType: "event";
|
@@ -31356,7 +32655,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31356
32655
|
} | undefined;
|
31357
32656
|
} | undefined;
|
31358
32657
|
} | {
|
31359
|
-
type: "
|
32658
|
+
type: "DATE_RANGE";
|
31360
32659
|
id: string;
|
31361
32660
|
label: {
|
31362
32661
|
id: string;
|
@@ -31375,7 +32674,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31375
32674
|
validator: import(".").JSONSchema;
|
31376
32675
|
}[] | undefined;
|
31377
32676
|
required?: boolean | undefined;
|
31378
|
-
defaultValue?: string | undefined;
|
32677
|
+
defaultValue?: string | [string, string] | undefined;
|
31379
32678
|
conditionals?: ({
|
31380
32679
|
type: "SHOW";
|
31381
32680
|
conditional: import(".").JSONSchema;
|
@@ -31393,107 +32692,151 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
31393
32692
|
} | undefined;
|
31394
32693
|
hideLabel?: boolean | undefined;
|
31395
32694
|
configuration?: {
|
31396
|
-
|
31397
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
31398
|
-
} | undefined;
|
31399
|
-
} | undefined;
|
31400
|
-
} | {
|
31401
|
-
type: "PAGE_HEADER";
|
31402
|
-
id: string;
|
31403
|
-
label: {
|
31404
|
-
id: string;
|
31405
|
-
description: string;
|
31406
|
-
defaultMessage: string;
|
31407
|
-
};
|
31408
|
-
parent?: {
|
31409
|
-
_fieldId?: string | undefined;
|
31410
|
-
} | undefined;
|
31411
|
-
validation?: {
|
31412
|
-
message: {
|
31413
|
-
id: string;
|
31414
|
-
description: string;
|
31415
|
-
defaultMessage: string;
|
31416
|
-
};
|
31417
|
-
validator: import(".").JSONSchema;
|
31418
|
-
}[] | undefined;
|
31419
|
-
required?: boolean | undefined;
|
31420
|
-
defaultValue?: string | undefined;
|
31421
|
-
conditionals?: ({
|
31422
|
-
type: "SHOW";
|
31423
|
-
conditional: import(".").JSONSchema;
|
31424
|
-
} | {
|
31425
|
-
type: "ENABLE";
|
31426
|
-
conditional: import(".").JSONSchema;
|
31427
|
-
} | {
|
31428
|
-
type: "DISPLAY_ON_REVIEW";
|
31429
|
-
conditional: import(".").JSONSchema;
|
31430
|
-
})[] | undefined;
|
31431
|
-
placeholder?: {
|
31432
|
-
id: string;
|
31433
|
-
description: string;
|
31434
|
-
defaultMessage: string;
|
31435
|
-
} | undefined;
|
31436
|
-
hideLabel?: boolean | undefined;
|
31437
|
-
} | {
|
31438
|
-
type: "FILE";
|
31439
|
-
id: string;
|
31440
|
-
label: {
|
31441
|
-
id: string;
|
31442
|
-
description: string;
|
31443
|
-
defaultMessage: string;
|
31444
|
-
};
|
31445
|
-
parent?: {
|
31446
|
-
_fieldId?: string | undefined;
|
31447
|
-
} | undefined;
|
31448
|
-
validation?: {
|
31449
|
-
message: {
|
31450
|
-
id: string;
|
31451
|
-
description: string;
|
31452
|
-
defaultMessage: string;
|
31453
|
-
};
|
31454
|
-
validator: import(".").JSONSchema;
|
31455
|
-
}[] | undefined;
|
31456
|
-
required?: boolean | undefined;
|
31457
|
-
defaultValue?: string | number | boolean | undefined;
|
31458
|
-
conditionals?: ({
|
31459
|
-
type: "SHOW";
|
31460
|
-
conditional: import(".").JSONSchema;
|
31461
|
-
} | {
|
31462
|
-
type: "ENABLE";
|
31463
|
-
conditional: import(".").JSONSchema;
|
31464
|
-
} | {
|
31465
|
-
type: "DISPLAY_ON_REVIEW";
|
31466
|
-
conditional: import(".").JSONSchema;
|
31467
|
-
})[] | undefined;
|
31468
|
-
placeholder?: {
|
31469
|
-
id: string;
|
31470
|
-
description: string;
|
31471
|
-
defaultMessage: string;
|
31472
|
-
} | undefined;
|
31473
|
-
hideLabel?: boolean | undefined;
|
31474
|
-
configuration?: {
|
31475
|
-
maxFileSize?: number | undefined;
|
31476
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
31477
|
-
style?: {
|
31478
|
-
width?: "full" | "auto" | undefined;
|
31479
|
-
} | undefined;
|
31480
|
-
fileName?: {
|
32695
|
+
notice?: {
|
31481
32696
|
id: string;
|
31482
32697
|
description: string;
|
31483
32698
|
defaultMessage: string;
|
31484
32699
|
} | undefined;
|
31485
32700
|
} | undefined;
|
31486
32701
|
} | {
|
31487
|
-
type: "
|
32702
|
+
type: "PARAGRAPH";
|
31488
32703
|
id: string;
|
31489
|
-
|
31490
|
-
|
31491
|
-
|
31492
|
-
|
31493
|
-
|
31494
|
-
|
31495
|
-
|
31496
|
-
}
|
32704
|
+
label: {
|
32705
|
+
id: string;
|
32706
|
+
description: string;
|
32707
|
+
defaultMessage: string;
|
32708
|
+
};
|
32709
|
+
parent?: {
|
32710
|
+
_fieldId?: string | undefined;
|
32711
|
+
} | undefined;
|
32712
|
+
validation?: {
|
32713
|
+
message: {
|
32714
|
+
id: string;
|
32715
|
+
description: string;
|
32716
|
+
defaultMessage: string;
|
32717
|
+
};
|
32718
|
+
validator: import(".").JSONSchema;
|
32719
|
+
}[] | undefined;
|
32720
|
+
required?: boolean | undefined;
|
32721
|
+
defaultValue?: string | undefined;
|
32722
|
+
conditionals?: ({
|
32723
|
+
type: "SHOW";
|
32724
|
+
conditional: import(".").JSONSchema;
|
32725
|
+
} | {
|
32726
|
+
type: "ENABLE";
|
32727
|
+
conditional: import(".").JSONSchema;
|
32728
|
+
} | {
|
32729
|
+
type: "DISPLAY_ON_REVIEW";
|
32730
|
+
conditional: import(".").JSONSchema;
|
32731
|
+
})[] | undefined;
|
32732
|
+
placeholder?: {
|
32733
|
+
id: string;
|
32734
|
+
description: string;
|
32735
|
+
defaultMessage: string;
|
32736
|
+
} | undefined;
|
32737
|
+
hideLabel?: boolean | undefined;
|
32738
|
+
configuration?: {
|
32739
|
+
styles?: {
|
32740
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
32741
|
+
} | undefined;
|
32742
|
+
} | undefined;
|
32743
|
+
} | {
|
32744
|
+
type: "PAGE_HEADER";
|
32745
|
+
id: string;
|
32746
|
+
label: {
|
32747
|
+
id: string;
|
32748
|
+
description: string;
|
32749
|
+
defaultMessage: string;
|
32750
|
+
};
|
32751
|
+
parent?: {
|
32752
|
+
_fieldId?: string | undefined;
|
32753
|
+
} | undefined;
|
32754
|
+
validation?: {
|
32755
|
+
message: {
|
32756
|
+
id: string;
|
32757
|
+
description: string;
|
32758
|
+
defaultMessage: string;
|
32759
|
+
};
|
32760
|
+
validator: import(".").JSONSchema;
|
32761
|
+
}[] | undefined;
|
32762
|
+
required?: boolean | undefined;
|
32763
|
+
defaultValue?: string | undefined;
|
32764
|
+
conditionals?: ({
|
32765
|
+
type: "SHOW";
|
32766
|
+
conditional: import(".").JSONSchema;
|
32767
|
+
} | {
|
32768
|
+
type: "ENABLE";
|
32769
|
+
conditional: import(".").JSONSchema;
|
32770
|
+
} | {
|
32771
|
+
type: "DISPLAY_ON_REVIEW";
|
32772
|
+
conditional: import(".").JSONSchema;
|
32773
|
+
})[] | undefined;
|
32774
|
+
placeholder?: {
|
32775
|
+
id: string;
|
32776
|
+
description: string;
|
32777
|
+
defaultMessage: string;
|
32778
|
+
} | undefined;
|
32779
|
+
hideLabel?: boolean | undefined;
|
32780
|
+
} | {
|
32781
|
+
type: "FILE";
|
32782
|
+
id: string;
|
32783
|
+
label: {
|
32784
|
+
id: string;
|
32785
|
+
description: string;
|
32786
|
+
defaultMessage: string;
|
32787
|
+
};
|
32788
|
+
parent?: {
|
32789
|
+
_fieldId?: string | undefined;
|
32790
|
+
} | undefined;
|
32791
|
+
validation?: {
|
32792
|
+
message: {
|
32793
|
+
id: string;
|
32794
|
+
description: string;
|
32795
|
+
defaultMessage: string;
|
32796
|
+
};
|
32797
|
+
validator: import(".").JSONSchema;
|
32798
|
+
}[] | undefined;
|
32799
|
+
required?: boolean | undefined;
|
32800
|
+
defaultValue?: string | number | boolean | undefined;
|
32801
|
+
conditionals?: ({
|
32802
|
+
type: "SHOW";
|
32803
|
+
conditional: import(".").JSONSchema;
|
32804
|
+
} | {
|
32805
|
+
type: "ENABLE";
|
32806
|
+
conditional: import(".").JSONSchema;
|
32807
|
+
} | {
|
32808
|
+
type: "DISPLAY_ON_REVIEW";
|
32809
|
+
conditional: import(".").JSONSchema;
|
32810
|
+
})[] | undefined;
|
32811
|
+
placeholder?: {
|
32812
|
+
id: string;
|
32813
|
+
description: string;
|
32814
|
+
defaultMessage: string;
|
32815
|
+
} | undefined;
|
32816
|
+
hideLabel?: boolean | undefined;
|
32817
|
+
configuration?: {
|
32818
|
+
maxFileSize?: number | undefined;
|
32819
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
32820
|
+
style?: {
|
32821
|
+
width?: "full" | "auto" | undefined;
|
32822
|
+
} | undefined;
|
32823
|
+
fileName?: {
|
32824
|
+
id: string;
|
32825
|
+
description: string;
|
32826
|
+
defaultMessage: string;
|
32827
|
+
} | undefined;
|
32828
|
+
} | undefined;
|
32829
|
+
} | {
|
32830
|
+
type: "RADIO_GROUP";
|
32831
|
+
id: string;
|
32832
|
+
options: {
|
32833
|
+
value: string;
|
32834
|
+
label: {
|
32835
|
+
id: string;
|
32836
|
+
description: string;
|
32837
|
+
defaultMessage: string;
|
32838
|
+
};
|
32839
|
+
}[];
|
31497
32840
|
label: {
|
31498
32841
|
id: string;
|
31499
32842
|
description: string;
|
@@ -32364,6 +33707,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
32364
33707
|
defaultMessage: string;
|
32365
33708
|
} | undefined;
|
32366
33709
|
} | undefined;
|
33710
|
+
} | {
|
33711
|
+
type: "DATE_RANGE";
|
33712
|
+
id: string;
|
33713
|
+
label: {
|
33714
|
+
id: string;
|
33715
|
+
description: string;
|
33716
|
+
defaultMessage: string;
|
33717
|
+
};
|
33718
|
+
parent?: {
|
33719
|
+
_fieldId?: string | undefined;
|
33720
|
+
} | undefined;
|
33721
|
+
validation?: {
|
33722
|
+
message: {
|
33723
|
+
id: string;
|
33724
|
+
description: string;
|
33725
|
+
defaultMessage: string;
|
33726
|
+
};
|
33727
|
+
validator: import(".").JSONSchema;
|
33728
|
+
}[] | undefined;
|
33729
|
+
required?: boolean | undefined;
|
33730
|
+
defaultValue?: string | [string, string] | undefined;
|
33731
|
+
conditionals?: ({
|
33732
|
+
type: "SHOW";
|
33733
|
+
conditional: import(".").JSONSchema;
|
33734
|
+
} | {
|
33735
|
+
type: "ENABLE";
|
33736
|
+
conditional: import(".").JSONSchema;
|
33737
|
+
} | {
|
33738
|
+
type: "DISPLAY_ON_REVIEW";
|
33739
|
+
conditional: import(".").JSONSchema;
|
33740
|
+
})[] | undefined;
|
33741
|
+
placeholder?: {
|
33742
|
+
id: string;
|
33743
|
+
description: string;
|
33744
|
+
defaultMessage: string;
|
33745
|
+
} | undefined;
|
33746
|
+
hideLabel?: boolean | undefined;
|
33747
|
+
configuration?: {
|
33748
|
+
notice?: {
|
33749
|
+
id: string;
|
33750
|
+
description: string;
|
33751
|
+
defaultMessage: string;
|
33752
|
+
} | undefined;
|
33753
|
+
} | undefined;
|
32367
33754
|
} | {
|
32368
33755
|
type: "PARAGRAPH";
|
32369
33756
|
id: string;
|
@@ -33378,6 +34765,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
33378
34765
|
defaultMessage: string;
|
33379
34766
|
} | undefined;
|
33380
34767
|
} | undefined;
|
34768
|
+
} | {
|
34769
|
+
type: "DATE_RANGE";
|
34770
|
+
id: string;
|
34771
|
+
label: {
|
34772
|
+
id: string;
|
34773
|
+
description: string;
|
34774
|
+
defaultMessage: string;
|
34775
|
+
};
|
34776
|
+
parent?: {
|
34777
|
+
_fieldId?: string | undefined;
|
34778
|
+
} | undefined;
|
34779
|
+
validation?: {
|
34780
|
+
message: {
|
34781
|
+
id: string;
|
34782
|
+
description: string;
|
34783
|
+
defaultMessage: string;
|
34784
|
+
};
|
34785
|
+
validator: import(".").JSONSchema;
|
34786
|
+
}[] | undefined;
|
34787
|
+
required?: boolean | undefined;
|
34788
|
+
defaultValue?: string | [string, string] | undefined;
|
34789
|
+
conditionals?: ({
|
34790
|
+
type: "SHOW";
|
34791
|
+
conditional: import(".").JSONSchema;
|
34792
|
+
} | {
|
34793
|
+
type: "ENABLE";
|
34794
|
+
conditional: import(".").JSONSchema;
|
34795
|
+
} | {
|
34796
|
+
type: "DISPLAY_ON_REVIEW";
|
34797
|
+
conditional: import(".").JSONSchema;
|
34798
|
+
})[] | undefined;
|
34799
|
+
placeholder?: {
|
34800
|
+
id: string;
|
34801
|
+
description: string;
|
34802
|
+
defaultMessage: string;
|
34803
|
+
} | undefined;
|
34804
|
+
hideLabel?: boolean | undefined;
|
34805
|
+
configuration?: {
|
34806
|
+
notice?: {
|
34807
|
+
id: string;
|
34808
|
+
description: string;
|
34809
|
+
defaultMessage: string;
|
34810
|
+
} | undefined;
|
34811
|
+
} | undefined;
|
33381
34812
|
} | {
|
33382
34813
|
type: "PARAGRAPH";
|
33383
34814
|
id: string;
|
@@ -34392,6 +35823,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
34392
35823
|
defaultMessage: string;
|
34393
35824
|
} | undefined;
|
34394
35825
|
} | undefined;
|
35826
|
+
} | {
|
35827
|
+
type: "DATE_RANGE";
|
35828
|
+
id: string;
|
35829
|
+
label: {
|
35830
|
+
id: string;
|
35831
|
+
description: string;
|
35832
|
+
defaultMessage: string;
|
35833
|
+
};
|
35834
|
+
parent?: {
|
35835
|
+
_fieldId?: string | undefined;
|
35836
|
+
} | undefined;
|
35837
|
+
validation?: {
|
35838
|
+
message: {
|
35839
|
+
id: string;
|
35840
|
+
description: string;
|
35841
|
+
defaultMessage: string;
|
35842
|
+
};
|
35843
|
+
validator: import(".").JSONSchema;
|
35844
|
+
}[] | undefined;
|
35845
|
+
required?: boolean | undefined;
|
35846
|
+
defaultValue?: string | [string, string] | undefined;
|
35847
|
+
conditionals?: ({
|
35848
|
+
type: "SHOW";
|
35849
|
+
conditional: import(".").JSONSchema;
|
35850
|
+
} | {
|
35851
|
+
type: "ENABLE";
|
35852
|
+
conditional: import(".").JSONSchema;
|
35853
|
+
} | {
|
35854
|
+
type: "DISPLAY_ON_REVIEW";
|
35855
|
+
conditional: import(".").JSONSchema;
|
35856
|
+
})[] | undefined;
|
35857
|
+
placeholder?: {
|
35858
|
+
id: string;
|
35859
|
+
description: string;
|
35860
|
+
defaultMessage: string;
|
35861
|
+
} | undefined;
|
35862
|
+
hideLabel?: boolean | undefined;
|
35863
|
+
configuration?: {
|
35864
|
+
notice?: {
|
35865
|
+
id: string;
|
35866
|
+
description: string;
|
35867
|
+
defaultMessage: string;
|
35868
|
+
} | undefined;
|
35869
|
+
} | undefined;
|
34395
35870
|
} | {
|
34396
35871
|
type: "PARAGRAPH";
|
34397
35872
|
id: string;
|
@@ -35473,6 +36948,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
35473
36948
|
defaultMessage: string;
|
35474
36949
|
} | undefined;
|
35475
36950
|
} | undefined;
|
36951
|
+
} | {
|
36952
|
+
type: "DATE_RANGE";
|
36953
|
+
id: string;
|
36954
|
+
label: {
|
36955
|
+
id: string;
|
36956
|
+
description: string;
|
36957
|
+
defaultMessage: string;
|
36958
|
+
};
|
36959
|
+
parent?: {
|
36960
|
+
_fieldId?: string | undefined;
|
36961
|
+
} | undefined;
|
36962
|
+
validation?: {
|
36963
|
+
message: {
|
36964
|
+
id: string;
|
36965
|
+
description: string;
|
36966
|
+
defaultMessage: string;
|
36967
|
+
};
|
36968
|
+
validator: import(".").JSONSchema;
|
36969
|
+
}[] | undefined;
|
36970
|
+
required?: boolean | undefined;
|
36971
|
+
defaultValue?: string | [string, string] | undefined;
|
36972
|
+
conditionals?: ({
|
36973
|
+
type: "SHOW";
|
36974
|
+
conditional: import(".").JSONSchema;
|
36975
|
+
} | {
|
36976
|
+
type: "ENABLE";
|
36977
|
+
conditional: import(".").JSONSchema;
|
36978
|
+
} | {
|
36979
|
+
type: "DISPLAY_ON_REVIEW";
|
36980
|
+
conditional: import(".").JSONSchema;
|
36981
|
+
})[] | undefined;
|
36982
|
+
placeholder?: {
|
36983
|
+
id: string;
|
36984
|
+
description: string;
|
36985
|
+
defaultMessage: string;
|
36986
|
+
} | undefined;
|
36987
|
+
hideLabel?: boolean | undefined;
|
36988
|
+
configuration?: {
|
36989
|
+
notice?: {
|
36990
|
+
id: string;
|
36991
|
+
description: string;
|
36992
|
+
defaultMessage: string;
|
36993
|
+
} | undefined;
|
36994
|
+
} | undefined;
|
35476
36995
|
} | {
|
35477
36996
|
type: "PARAGRAPH";
|
35478
36997
|
id: string;
|
@@ -36503,6 +38022,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
36503
38022
|
defaultMessage: string;
|
36504
38023
|
} | undefined;
|
36505
38024
|
} | undefined;
|
38025
|
+
} | {
|
38026
|
+
type: "DATE_RANGE";
|
38027
|
+
id: string;
|
38028
|
+
label: {
|
38029
|
+
id: string;
|
38030
|
+
description: string;
|
38031
|
+
defaultMessage: string;
|
38032
|
+
};
|
38033
|
+
parent?: {
|
38034
|
+
_fieldId?: string | undefined;
|
38035
|
+
} | undefined;
|
38036
|
+
validation?: {
|
38037
|
+
message: {
|
38038
|
+
id: string;
|
38039
|
+
description: string;
|
38040
|
+
defaultMessage: string;
|
38041
|
+
};
|
38042
|
+
validator: import(".").JSONSchema;
|
38043
|
+
}[] | undefined;
|
38044
|
+
required?: boolean | undefined;
|
38045
|
+
defaultValue?: string | [string, string] | undefined;
|
38046
|
+
conditionals?: ({
|
38047
|
+
type: "SHOW";
|
38048
|
+
conditional: import(".").JSONSchema;
|
38049
|
+
} | {
|
38050
|
+
type: "ENABLE";
|
38051
|
+
conditional: import(".").JSONSchema;
|
38052
|
+
} | {
|
38053
|
+
type: "DISPLAY_ON_REVIEW";
|
38054
|
+
conditional: import(".").JSONSchema;
|
38055
|
+
})[] | undefined;
|
38056
|
+
placeholder?: {
|
38057
|
+
id: string;
|
38058
|
+
description: string;
|
38059
|
+
defaultMessage: string;
|
38060
|
+
} | undefined;
|
38061
|
+
hideLabel?: boolean | undefined;
|
38062
|
+
configuration?: {
|
38063
|
+
notice?: {
|
38064
|
+
id: string;
|
38065
|
+
description: string;
|
38066
|
+
defaultMessage: string;
|
38067
|
+
} | undefined;
|
38068
|
+
} | undefined;
|
36506
38069
|
} | {
|
36507
38070
|
type: "PARAGRAPH";
|
36508
38071
|
id: string;
|
@@ -37520,6 +39083,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
37520
39083
|
defaultMessage: string;
|
37521
39084
|
} | undefined;
|
37522
39085
|
} | undefined;
|
39086
|
+
} | {
|
39087
|
+
type: "DATE_RANGE";
|
39088
|
+
id: string;
|
39089
|
+
label: {
|
39090
|
+
id: string;
|
39091
|
+
description: string;
|
39092
|
+
defaultMessage: string;
|
39093
|
+
};
|
39094
|
+
parent?: {
|
39095
|
+
_fieldId?: string | undefined;
|
39096
|
+
} | undefined;
|
39097
|
+
validation?: {
|
39098
|
+
message: {
|
39099
|
+
id: string;
|
39100
|
+
description: string;
|
39101
|
+
defaultMessage: string;
|
39102
|
+
};
|
39103
|
+
validator: import(".").JSONSchema;
|
39104
|
+
}[] | undefined;
|
39105
|
+
required?: boolean | undefined;
|
39106
|
+
defaultValue?: string | [string, string] | undefined;
|
39107
|
+
conditionals?: ({
|
39108
|
+
type: "SHOW";
|
39109
|
+
conditional: import(".").JSONSchema;
|
39110
|
+
} | {
|
39111
|
+
type: "ENABLE";
|
39112
|
+
conditional: import(".").JSONSchema;
|
39113
|
+
} | {
|
39114
|
+
type: "DISPLAY_ON_REVIEW";
|
39115
|
+
conditional: import(".").JSONSchema;
|
39116
|
+
})[] | undefined;
|
39117
|
+
placeholder?: {
|
39118
|
+
id: string;
|
39119
|
+
description: string;
|
39120
|
+
defaultMessage: string;
|
39121
|
+
} | undefined;
|
39122
|
+
hideLabel?: boolean | undefined;
|
39123
|
+
configuration?: {
|
39124
|
+
notice?: {
|
39125
|
+
id: string;
|
39126
|
+
description: string;
|
39127
|
+
defaultMessage: string;
|
39128
|
+
} | undefined;
|
39129
|
+
} | undefined;
|
37523
39130
|
} | {
|
37524
39131
|
type: "PARAGRAPH";
|
37525
39132
|
id: string;
|
@@ -38550,6 +40157,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
38550
40157
|
defaultMessage: string;
|
38551
40158
|
} | undefined;
|
38552
40159
|
} | undefined;
|
40160
|
+
} | {
|
40161
|
+
type: "DATE_RANGE";
|
40162
|
+
id: string;
|
40163
|
+
label: {
|
40164
|
+
id: string;
|
40165
|
+
description: string;
|
40166
|
+
defaultMessage: string;
|
40167
|
+
};
|
40168
|
+
parent?: {
|
40169
|
+
_fieldId?: string | undefined;
|
40170
|
+
} | undefined;
|
40171
|
+
validation?: {
|
40172
|
+
message: {
|
40173
|
+
id: string;
|
40174
|
+
description: string;
|
40175
|
+
defaultMessage: string;
|
40176
|
+
};
|
40177
|
+
validator: import(".").JSONSchema;
|
40178
|
+
}[] | undefined;
|
40179
|
+
required?: boolean | undefined;
|
40180
|
+
defaultValue?: string | [string, string] | undefined;
|
40181
|
+
conditionals?: ({
|
40182
|
+
type: "SHOW";
|
40183
|
+
conditional: import(".").JSONSchema;
|
40184
|
+
} | {
|
40185
|
+
type: "ENABLE";
|
40186
|
+
conditional: import(".").JSONSchema;
|
40187
|
+
} | {
|
40188
|
+
type: "DISPLAY_ON_REVIEW";
|
40189
|
+
conditional: import(".").JSONSchema;
|
40190
|
+
})[] | undefined;
|
40191
|
+
placeholder?: {
|
40192
|
+
id: string;
|
40193
|
+
description: string;
|
40194
|
+
defaultMessage: string;
|
40195
|
+
} | undefined;
|
40196
|
+
hideLabel?: boolean | undefined;
|
40197
|
+
configuration?: {
|
40198
|
+
notice?: {
|
40199
|
+
id: string;
|
40200
|
+
description: string;
|
40201
|
+
defaultMessage: string;
|
40202
|
+
} | undefined;
|
40203
|
+
} | undefined;
|
38553
40204
|
} | {
|
38554
40205
|
type: "PARAGRAPH";
|
38555
40206
|
id: string;
|
@@ -39220,55 +40871,255 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39220
40871
|
defaultMessage: string;
|
39221
40872
|
} | undefined;
|
39222
40873
|
hideLabel?: boolean | undefined;
|
39223
|
-
})[];
|
39224
|
-
conditional?: import(".").JSONSchema | undefined;
|
39225
|
-
})[];
|
39226
|
-
additionalDetailsForm: ({
|
39227
|
-
id: string;
|
39228
|
-
title: {
|
39229
|
-
id: string;
|
39230
|
-
description: string;
|
39231
|
-
defaultMessage: string;
|
39232
|
-
};
|
39233
|
-
fields: ({
|
39234
|
-
type: "DIVIDER";
|
39235
|
-
id: string;
|
39236
|
-
label: {
|
39237
|
-
id: string;
|
39238
|
-
description: string;
|
39239
|
-
defaultMessage: string;
|
39240
|
-
};
|
39241
|
-
parent?: {
|
39242
|
-
_fieldId?: string | undefined;
|
39243
|
-
} | undefined;
|
39244
|
-
validation?: {
|
39245
|
-
message: {
|
39246
|
-
id: string;
|
39247
|
-
description: string;
|
39248
|
-
defaultMessage: string;
|
39249
|
-
};
|
39250
|
-
validator: import(".").JSONSchema;
|
39251
|
-
}[] | undefined;
|
39252
|
-
required?: boolean | undefined;
|
39253
|
-
defaultValue?: string | number | boolean | undefined;
|
39254
|
-
conditionals?: ({
|
39255
|
-
type: "SHOW";
|
39256
|
-
conditional: import(".").JSONSchema;
|
39257
|
-
} | {
|
39258
|
-
type: "ENABLE";
|
39259
|
-
conditional: import(".").JSONSchema;
|
39260
|
-
} | {
|
39261
|
-
type: "DISPLAY_ON_REVIEW";
|
39262
|
-
conditional: import(".").JSONSchema;
|
39263
|
-
})[] | undefined;
|
39264
|
-
placeholder?: {
|
39265
|
-
id: string;
|
39266
|
-
description: string;
|
39267
|
-
defaultMessage: string;
|
40874
|
+
})[];
|
40875
|
+
conditional?: import(".").JSONSchema | undefined;
|
40876
|
+
})[];
|
40877
|
+
additionalDetailsForm: ({
|
40878
|
+
id: string;
|
40879
|
+
title: {
|
40880
|
+
id: string;
|
40881
|
+
description: string;
|
40882
|
+
defaultMessage: string;
|
40883
|
+
};
|
40884
|
+
fields: ({
|
40885
|
+
type: "DIVIDER";
|
40886
|
+
id: string;
|
40887
|
+
label: {
|
40888
|
+
id: string;
|
40889
|
+
description: string;
|
40890
|
+
defaultMessage: string;
|
40891
|
+
};
|
40892
|
+
parent?: {
|
40893
|
+
_fieldId?: string | undefined;
|
40894
|
+
} | undefined;
|
40895
|
+
validation?: {
|
40896
|
+
message: {
|
40897
|
+
id: string;
|
40898
|
+
description: string;
|
40899
|
+
defaultMessage: string;
|
40900
|
+
};
|
40901
|
+
validator: import(".").JSONSchema;
|
40902
|
+
}[] | undefined;
|
40903
|
+
required?: boolean | undefined;
|
40904
|
+
defaultValue?: string | number | boolean | undefined;
|
40905
|
+
conditionals?: ({
|
40906
|
+
type: "SHOW";
|
40907
|
+
conditional: import(".").JSONSchema;
|
40908
|
+
} | {
|
40909
|
+
type: "ENABLE";
|
40910
|
+
conditional: import(".").JSONSchema;
|
40911
|
+
} | {
|
40912
|
+
type: "DISPLAY_ON_REVIEW";
|
40913
|
+
conditional: import(".").JSONSchema;
|
40914
|
+
})[] | undefined;
|
40915
|
+
placeholder?: {
|
40916
|
+
id: string;
|
40917
|
+
description: string;
|
40918
|
+
defaultMessage: string;
|
40919
|
+
} | undefined;
|
40920
|
+
hideLabel?: boolean | undefined;
|
40921
|
+
} | {
|
40922
|
+
type: "TEXT";
|
40923
|
+
id: string;
|
40924
|
+
label: {
|
40925
|
+
id: string;
|
40926
|
+
description: string;
|
40927
|
+
defaultMessage: string;
|
40928
|
+
};
|
40929
|
+
parent?: {
|
40930
|
+
_fieldId?: string | undefined;
|
40931
|
+
} | undefined;
|
40932
|
+
validation?: {
|
40933
|
+
message: {
|
40934
|
+
id: string;
|
40935
|
+
description: string;
|
40936
|
+
defaultMessage: string;
|
40937
|
+
};
|
40938
|
+
validator: import(".").JSONSchema;
|
40939
|
+
}[] | undefined;
|
40940
|
+
required?: boolean | undefined;
|
40941
|
+
defaultValue?: string | undefined;
|
40942
|
+
conditionals?: ({
|
40943
|
+
type: "SHOW";
|
40944
|
+
conditional: import(".").JSONSchema;
|
40945
|
+
} | {
|
40946
|
+
type: "ENABLE";
|
40947
|
+
conditional: import(".").JSONSchema;
|
40948
|
+
} | {
|
40949
|
+
type: "DISPLAY_ON_REVIEW";
|
40950
|
+
conditional: import(".").JSONSchema;
|
40951
|
+
})[] | undefined;
|
40952
|
+
placeholder?: {
|
40953
|
+
id: string;
|
40954
|
+
description: string;
|
40955
|
+
defaultMessage: string;
|
40956
|
+
} | undefined;
|
40957
|
+
hideLabel?: boolean | undefined;
|
40958
|
+
configuration?: {
|
40959
|
+
type?: "text" | "password" | undefined;
|
40960
|
+
maxLength?: number | undefined;
|
40961
|
+
prefix?: {
|
40962
|
+
id: string;
|
40963
|
+
description: string;
|
40964
|
+
defaultMessage: string;
|
40965
|
+
} | undefined;
|
40966
|
+
postfix?: {
|
40967
|
+
id: string;
|
40968
|
+
description: string;
|
40969
|
+
defaultMessage: string;
|
40970
|
+
} | undefined;
|
40971
|
+
} | undefined;
|
40972
|
+
} | {
|
40973
|
+
type: "NUMBER";
|
40974
|
+
id: string;
|
40975
|
+
label: {
|
40976
|
+
id: string;
|
40977
|
+
description: string;
|
40978
|
+
defaultMessage: string;
|
40979
|
+
};
|
40980
|
+
parent?: {
|
40981
|
+
_fieldId?: string | undefined;
|
40982
|
+
} | undefined;
|
40983
|
+
validation?: {
|
40984
|
+
message: {
|
40985
|
+
id: string;
|
40986
|
+
description: string;
|
40987
|
+
defaultMessage: string;
|
40988
|
+
};
|
40989
|
+
validator: import(".").JSONSchema;
|
40990
|
+
}[] | undefined;
|
40991
|
+
required?: boolean | undefined;
|
40992
|
+
defaultValue?: number | undefined;
|
40993
|
+
conditionals?: ({
|
40994
|
+
type: "SHOW";
|
40995
|
+
conditional: import(".").JSONSchema;
|
40996
|
+
} | {
|
40997
|
+
type: "ENABLE";
|
40998
|
+
conditional: import(".").JSONSchema;
|
40999
|
+
} | {
|
41000
|
+
type: "DISPLAY_ON_REVIEW";
|
41001
|
+
conditional: import(".").JSONSchema;
|
41002
|
+
})[] | undefined;
|
41003
|
+
placeholder?: {
|
41004
|
+
id: string;
|
41005
|
+
description: string;
|
41006
|
+
defaultMessage: string;
|
41007
|
+
} | undefined;
|
41008
|
+
hideLabel?: boolean | undefined;
|
41009
|
+
configuration?: {
|
41010
|
+
prefix?: {
|
41011
|
+
id: string;
|
41012
|
+
description: string;
|
41013
|
+
defaultMessage: string;
|
41014
|
+
} | undefined;
|
41015
|
+
postfix?: {
|
41016
|
+
id: string;
|
41017
|
+
description: string;
|
41018
|
+
defaultMessage: string;
|
41019
|
+
} | undefined;
|
41020
|
+
min?: number | undefined;
|
41021
|
+
max?: number | undefined;
|
41022
|
+
} | undefined;
|
41023
|
+
} | {
|
41024
|
+
type: "TEXTAREA";
|
41025
|
+
id: string;
|
41026
|
+
label: {
|
41027
|
+
id: string;
|
41028
|
+
description: string;
|
41029
|
+
defaultMessage: string;
|
41030
|
+
};
|
41031
|
+
parent?: {
|
41032
|
+
_fieldId?: string | undefined;
|
41033
|
+
} | undefined;
|
41034
|
+
validation?: {
|
41035
|
+
message: {
|
41036
|
+
id: string;
|
41037
|
+
description: string;
|
41038
|
+
defaultMessage: string;
|
41039
|
+
};
|
41040
|
+
validator: import(".").JSONSchema;
|
41041
|
+
}[] | undefined;
|
41042
|
+
required?: boolean | undefined;
|
41043
|
+
defaultValue?: string | undefined;
|
41044
|
+
conditionals?: ({
|
41045
|
+
type: "SHOW";
|
41046
|
+
conditional: import(".").JSONSchema;
|
41047
|
+
} | {
|
41048
|
+
type: "ENABLE";
|
41049
|
+
conditional: import(".").JSONSchema;
|
41050
|
+
} | {
|
41051
|
+
type: "DISPLAY_ON_REVIEW";
|
41052
|
+
conditional: import(".").JSONSchema;
|
41053
|
+
})[] | undefined;
|
41054
|
+
placeholder?: {
|
41055
|
+
id: string;
|
41056
|
+
description: string;
|
41057
|
+
defaultMessage: string;
|
41058
|
+
} | undefined;
|
41059
|
+
hideLabel?: boolean | undefined;
|
41060
|
+
configuration?: {
|
41061
|
+
maxLength?: number | undefined;
|
41062
|
+
prefix?: {
|
41063
|
+
id: string;
|
41064
|
+
description: string;
|
41065
|
+
defaultMessage: string;
|
41066
|
+
} | undefined;
|
41067
|
+
postfix?: {
|
41068
|
+
id: string;
|
41069
|
+
description: string;
|
41070
|
+
defaultMessage: string;
|
41071
|
+
} | undefined;
|
41072
|
+
rows?: number | undefined;
|
41073
|
+
cols?: number | undefined;
|
41074
|
+
} | undefined;
|
41075
|
+
} | {
|
41076
|
+
type: "SIGNATURE";
|
41077
|
+
id: string;
|
41078
|
+
label: {
|
41079
|
+
id: string;
|
41080
|
+
description: string;
|
41081
|
+
defaultMessage: string;
|
41082
|
+
};
|
41083
|
+
signaturePromptLabel: {
|
41084
|
+
id: string;
|
41085
|
+
description: string;
|
41086
|
+
defaultMessage: string;
|
41087
|
+
};
|
41088
|
+
parent?: {
|
41089
|
+
_fieldId?: string | undefined;
|
41090
|
+
} | undefined;
|
41091
|
+
validation?: {
|
41092
|
+
message: {
|
41093
|
+
id: string;
|
41094
|
+
description: string;
|
41095
|
+
defaultMessage: string;
|
41096
|
+
};
|
41097
|
+
validator: import(".").JSONSchema;
|
41098
|
+
}[] | undefined;
|
41099
|
+
required?: boolean | undefined;
|
41100
|
+
defaultValue?: string | number | boolean | undefined;
|
41101
|
+
conditionals?: ({
|
41102
|
+
type: "SHOW";
|
41103
|
+
conditional: import(".").JSONSchema;
|
41104
|
+
} | {
|
41105
|
+
type: "ENABLE";
|
41106
|
+
conditional: import(".").JSONSchema;
|
41107
|
+
} | {
|
41108
|
+
type: "DISPLAY_ON_REVIEW";
|
41109
|
+
conditional: import(".").JSONSchema;
|
41110
|
+
})[] | undefined;
|
41111
|
+
placeholder?: {
|
41112
|
+
id: string;
|
41113
|
+
description: string;
|
41114
|
+
defaultMessage: string;
|
41115
|
+
} | undefined;
|
41116
|
+
hideLabel?: boolean | undefined;
|
41117
|
+
configuration?: {
|
41118
|
+
maxFileSize?: number | undefined;
|
41119
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
39268
41120
|
} | undefined;
|
39269
|
-
hideLabel?: boolean | undefined;
|
39270
41121
|
} | {
|
39271
|
-
type: "
|
41122
|
+
type: "EMAIL";
|
39272
41123
|
id: string;
|
39273
41124
|
label: {
|
39274
41125
|
id: string;
|
@@ -39305,72 +41156,10 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39305
41156
|
} | undefined;
|
39306
41157
|
hideLabel?: boolean | undefined;
|
39307
41158
|
configuration?: {
|
39308
|
-
type?: "text" | "password" | undefined;
|
39309
41159
|
maxLength?: number | undefined;
|
39310
|
-
prefix?: {
|
39311
|
-
id: string;
|
39312
|
-
description: string;
|
39313
|
-
defaultMessage: string;
|
39314
|
-
} | undefined;
|
39315
|
-
postfix?: {
|
39316
|
-
id: string;
|
39317
|
-
description: string;
|
39318
|
-
defaultMessage: string;
|
39319
|
-
} | undefined;
|
39320
|
-
} | undefined;
|
39321
|
-
} | {
|
39322
|
-
type: "NUMBER";
|
39323
|
-
id: string;
|
39324
|
-
label: {
|
39325
|
-
id: string;
|
39326
|
-
description: string;
|
39327
|
-
defaultMessage: string;
|
39328
|
-
};
|
39329
|
-
parent?: {
|
39330
|
-
_fieldId?: string | undefined;
|
39331
|
-
} | undefined;
|
39332
|
-
validation?: {
|
39333
|
-
message: {
|
39334
|
-
id: string;
|
39335
|
-
description: string;
|
39336
|
-
defaultMessage: string;
|
39337
|
-
};
|
39338
|
-
validator: import(".").JSONSchema;
|
39339
|
-
}[] | undefined;
|
39340
|
-
required?: boolean | undefined;
|
39341
|
-
defaultValue?: number | undefined;
|
39342
|
-
conditionals?: ({
|
39343
|
-
type: "SHOW";
|
39344
|
-
conditional: import(".").JSONSchema;
|
39345
|
-
} | {
|
39346
|
-
type: "ENABLE";
|
39347
|
-
conditional: import(".").JSONSchema;
|
39348
|
-
} | {
|
39349
|
-
type: "DISPLAY_ON_REVIEW";
|
39350
|
-
conditional: import(".").JSONSchema;
|
39351
|
-
})[] | undefined;
|
39352
|
-
placeholder?: {
|
39353
|
-
id: string;
|
39354
|
-
description: string;
|
39355
|
-
defaultMessage: string;
|
39356
|
-
} | undefined;
|
39357
|
-
hideLabel?: boolean | undefined;
|
39358
|
-
configuration?: {
|
39359
|
-
prefix?: {
|
39360
|
-
id: string;
|
39361
|
-
description: string;
|
39362
|
-
defaultMessage: string;
|
39363
|
-
} | undefined;
|
39364
|
-
postfix?: {
|
39365
|
-
id: string;
|
39366
|
-
description: string;
|
39367
|
-
defaultMessage: string;
|
39368
|
-
} | undefined;
|
39369
|
-
min?: number | undefined;
|
39370
|
-
max?: number | undefined;
|
39371
41160
|
} | undefined;
|
39372
41161
|
} | {
|
39373
|
-
type: "
|
41162
|
+
type: "DATE";
|
39374
41163
|
id: string;
|
39375
41164
|
label: {
|
39376
41165
|
id: string;
|
@@ -39407,33 +41196,20 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39407
41196
|
} | undefined;
|
39408
41197
|
hideLabel?: boolean | undefined;
|
39409
41198
|
configuration?: {
|
39410
|
-
|
39411
|
-
prefix?: {
|
39412
|
-
id: string;
|
39413
|
-
description: string;
|
39414
|
-
defaultMessage: string;
|
39415
|
-
} | undefined;
|
39416
|
-
postfix?: {
|
41199
|
+
notice?: {
|
39417
41200
|
id: string;
|
39418
41201
|
description: string;
|
39419
41202
|
defaultMessage: string;
|
39420
41203
|
} | undefined;
|
39421
|
-
rows?: number | undefined;
|
39422
|
-
cols?: number | undefined;
|
39423
41204
|
} | undefined;
|
39424
41205
|
} | {
|
39425
|
-
type: "
|
41206
|
+
type: "DATE_RANGE";
|
39426
41207
|
id: string;
|
39427
41208
|
label: {
|
39428
41209
|
id: string;
|
39429
41210
|
description: string;
|
39430
41211
|
defaultMessage: string;
|
39431
41212
|
};
|
39432
|
-
signaturePromptLabel: {
|
39433
|
-
id: string;
|
39434
|
-
description: string;
|
39435
|
-
defaultMessage: string;
|
39436
|
-
};
|
39437
41213
|
parent?: {
|
39438
41214
|
_fieldId?: string | undefined;
|
39439
41215
|
} | undefined;
|
@@ -39446,88 +41222,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
39446
41222
|
validator: import(".").JSONSchema;
|
39447
41223
|
}[] | undefined;
|
39448
41224
|
required?: boolean | undefined;
|
39449
|
-
defaultValue?: string |
|
39450
|
-
conditionals?: ({
|
39451
|
-
type: "SHOW";
|
39452
|
-
conditional: import(".").JSONSchema;
|
39453
|
-
} | {
|
39454
|
-
type: "ENABLE";
|
39455
|
-
conditional: import(".").JSONSchema;
|
39456
|
-
} | {
|
39457
|
-
type: "DISPLAY_ON_REVIEW";
|
39458
|
-
conditional: import(".").JSONSchema;
|
39459
|
-
})[] | undefined;
|
39460
|
-
placeholder?: {
|
39461
|
-
id: string;
|
39462
|
-
description: string;
|
39463
|
-
defaultMessage: string;
|
39464
|
-
} | undefined;
|
39465
|
-
hideLabel?: boolean | undefined;
|
39466
|
-
configuration?: {
|
39467
|
-
maxFileSize?: number | undefined;
|
39468
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
39469
|
-
} | undefined;
|
39470
|
-
} | {
|
39471
|
-
type: "EMAIL";
|
39472
|
-
id: string;
|
39473
|
-
label: {
|
39474
|
-
id: string;
|
39475
|
-
description: string;
|
39476
|
-
defaultMessage: string;
|
39477
|
-
};
|
39478
|
-
parent?: {
|
39479
|
-
_fieldId?: string | undefined;
|
39480
|
-
} | undefined;
|
39481
|
-
validation?: {
|
39482
|
-
message: {
|
39483
|
-
id: string;
|
39484
|
-
description: string;
|
39485
|
-
defaultMessage: string;
|
39486
|
-
};
|
39487
|
-
validator: import(".").JSONSchema;
|
39488
|
-
}[] | undefined;
|
39489
|
-
required?: boolean | undefined;
|
39490
|
-
defaultValue?: string | undefined;
|
39491
|
-
conditionals?: ({
|
39492
|
-
type: "SHOW";
|
39493
|
-
conditional: import(".").JSONSchema;
|
39494
|
-
} | {
|
39495
|
-
type: "ENABLE";
|
39496
|
-
conditional: import(".").JSONSchema;
|
39497
|
-
} | {
|
39498
|
-
type: "DISPLAY_ON_REVIEW";
|
39499
|
-
conditional: import(".").JSONSchema;
|
39500
|
-
})[] | undefined;
|
39501
|
-
placeholder?: {
|
39502
|
-
id: string;
|
39503
|
-
description: string;
|
39504
|
-
defaultMessage: string;
|
39505
|
-
} | undefined;
|
39506
|
-
hideLabel?: boolean | undefined;
|
39507
|
-
configuration?: {
|
39508
|
-
maxLength?: number | undefined;
|
39509
|
-
} | undefined;
|
39510
|
-
} | {
|
39511
|
-
type: "DATE";
|
39512
|
-
id: string;
|
39513
|
-
label: {
|
39514
|
-
id: string;
|
39515
|
-
description: string;
|
39516
|
-
defaultMessage: string;
|
39517
|
-
};
|
39518
|
-
parent?: {
|
39519
|
-
_fieldId?: string | undefined;
|
39520
|
-
} | undefined;
|
39521
|
-
validation?: {
|
39522
|
-
message: {
|
39523
|
-
id: string;
|
39524
|
-
description: string;
|
39525
|
-
defaultMessage: string;
|
39526
|
-
};
|
39527
|
-
validator: import(".").JSONSchema;
|
39528
|
-
}[] | undefined;
|
39529
|
-
required?: boolean | undefined;
|
39530
|
-
defaultValue?: string | undefined;
|
41225
|
+
defaultValue?: string | [string, string] | undefined;
|
39531
41226
|
conditionals?: ({
|
39532
41227
|
type: "SHOW";
|
39533
41228
|
conditional: import(".").JSONSchema;
|
@@ -40581,6 +42276,50 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
40581
42276
|
defaultMessage: string;
|
40582
42277
|
} | undefined;
|
40583
42278
|
} | undefined;
|
42279
|
+
} | {
|
42280
|
+
type: "DATE_RANGE";
|
42281
|
+
id: string;
|
42282
|
+
label: {
|
42283
|
+
id: string;
|
42284
|
+
description: string;
|
42285
|
+
defaultMessage: string;
|
42286
|
+
};
|
42287
|
+
parent?: {
|
42288
|
+
_fieldId?: string | undefined;
|
42289
|
+
} | undefined;
|
42290
|
+
validation?: {
|
42291
|
+
message: {
|
42292
|
+
id: string;
|
42293
|
+
description: string;
|
42294
|
+
defaultMessage: string;
|
42295
|
+
};
|
42296
|
+
validator: import(".").JSONSchema;
|
42297
|
+
}[] | undefined;
|
42298
|
+
required?: boolean | undefined;
|
42299
|
+
defaultValue?: string | [string, string] | undefined;
|
42300
|
+
conditionals?: ({
|
42301
|
+
type: "SHOW";
|
42302
|
+
conditional: import(".").JSONSchema;
|
42303
|
+
} | {
|
42304
|
+
type: "ENABLE";
|
42305
|
+
conditional: import(".").JSONSchema;
|
42306
|
+
} | {
|
42307
|
+
type: "DISPLAY_ON_REVIEW";
|
42308
|
+
conditional: import(".").JSONSchema;
|
42309
|
+
})[] | undefined;
|
42310
|
+
placeholder?: {
|
42311
|
+
id: string;
|
42312
|
+
description: string;
|
42313
|
+
defaultMessage: string;
|
42314
|
+
} | undefined;
|
42315
|
+
hideLabel?: boolean | undefined;
|
42316
|
+
configuration?: {
|
42317
|
+
notice?: {
|
42318
|
+
id: string;
|
42319
|
+
description: string;
|
42320
|
+
defaultMessage: string;
|
42321
|
+
} | undefined;
|
42322
|
+
} | undefined;
|
40584
42323
|
} | {
|
40585
42324
|
type: "PARAGRAPH";
|
40586
42325
|
id: string;
|
@@ -41305,6 +43044,11 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41305
43044
|
type: "SHOW";
|
41306
43045
|
conditional: import(".").JSONSchema;
|
41307
43046
|
}[] | undefined;
|
43047
|
+
label?: {
|
43048
|
+
id: string;
|
43049
|
+
description: string;
|
43050
|
+
defaultMessage: string;
|
43051
|
+
} | undefined;
|
41308
43052
|
emptyValueMessage?: {
|
41309
43053
|
id: string;
|
41310
43054
|
description: string;
|
@@ -41358,7 +43102,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41358
43102
|
};
|
41359
43103
|
fields: ({
|
41360
43104
|
config: {
|
41361
|
-
type: "
|
43105
|
+
type: "exact" | "fuzzy" | "range";
|
41362
43106
|
};
|
41363
43107
|
fieldId: string;
|
41364
43108
|
fieldType: "field";
|
@@ -41372,7 +43116,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
41372
43116
|
}[] | undefined;
|
41373
43117
|
} | {
|
41374
43118
|
config: {
|
41375
|
-
type: "
|
43119
|
+
type: "exact" | "fuzzy" | "range";
|
41376
43120
|
};
|
41377
43121
|
fieldId: "status" | "trackingId";
|
41378
43122
|
fieldType: "event";
|