@opencrvs/toolkit 1.8.1-rc.b6b235d → 1.8.1-rc.b8eea90
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 +1 -3
- package/dist/commons/conditionals/validate.d.ts +2 -3
- package/dist/commons/events/ActionConfig.d.ts +13593 -4629
- package/dist/commons/events/EventConfig.d.ts +7441 -3499
- package/dist/commons/events/EventIndex.d.ts +0 -3
- package/dist/commons/events/EventMetadata.d.ts +0 -3
- package/dist/commons/events/FieldConfig.d.ts +1050 -362
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +15 -1
- package/dist/commons/events/FieldValue.d.ts +4 -0
- package/dist/commons/events/FormConfig.d.ts +6350 -2138
- package/dist/commons/events/PageConfig.d.ts +2058 -1014
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +638 -8
- package/dist/commons/events/event.d.ts +1 -55
- package/dist/commons/events/utils.d.ts +1136 -16
- package/dist/events/index.js +75 -112
- package/package.json +1 -1
@@ -4417,18 +4417,113 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4417
4417
|
} | undefined;
|
4418
4418
|
hideLabel?: boolean | undefined;
|
4419
4419
|
uncorrectable?: boolean | undefined;
|
4420
|
-
}
|
4421
|
-
|
4422
|
-
|
4423
|
-
|
4424
|
-
|
4425
|
-
|
4426
|
-
|
4427
|
-
|
4428
|
-
|
4429
|
-
|
4420
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4421
|
+
id: z.ZodString;
|
4422
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4423
|
+
id: string;
|
4424
|
+
description: string;
|
4425
|
+
defaultMessage: string;
|
4426
|
+
}>;
|
4427
|
+
parent: z.ZodOptional<z.ZodObject<{
|
4428
|
+
$$field: z.ZodString;
|
4429
|
+
}, "strip", z.ZodTypeAny, {
|
4430
|
+
$$field: string;
|
4431
|
+
}, {
|
4432
|
+
$$field: string;
|
4433
|
+
}>>;
|
4434
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4435
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4436
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4437
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4438
|
+
id: string;
|
4439
|
+
description: string;
|
4440
|
+
defaultMessage: string;
|
4441
|
+
}>>;
|
4442
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
4443
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
4444
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4445
|
+
id: string;
|
4446
|
+
description: string;
|
4447
|
+
defaultMessage: string;
|
4448
|
+
}>;
|
4449
|
+
}, "strip", z.ZodTypeAny, {
|
4450
|
+
message: TranslationConfig;
|
4451
|
+
validator: import(".").JSONSchema;
|
4452
|
+
}, {
|
4453
|
+
message: {
|
4454
|
+
id: string;
|
4455
|
+
description: string;
|
4456
|
+
defaultMessage: string;
|
4457
|
+
};
|
4458
|
+
validator: import(".").JSONSchema;
|
4459
|
+
}>, "many">>>;
|
4460
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4461
|
+
id: string;
|
4462
|
+
description: string;
|
4463
|
+
defaultMessage: string;
|
4464
|
+
}>>;
|
4465
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4466
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4467
|
+
}, {
|
4468
|
+
type: z.ZodLiteral<"BUTTON">;
|
4469
|
+
configuration: z.ZodObject<{
|
4470
|
+
onClick: z.ZodObject<{
|
4471
|
+
$$field: z.ZodString;
|
4472
|
+
}, "strip", z.ZodTypeAny, {
|
4473
|
+
$$field: string;
|
4474
|
+
}, {
|
4475
|
+
$$field: string;
|
4476
|
+
}>;
|
4477
|
+
icon: z.ZodOptional<z.ZodString>;
|
4478
|
+
shouldHandleLoadingState: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4479
|
+
buttonLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4480
|
+
id: string;
|
4481
|
+
description: string;
|
4482
|
+
defaultMessage: string;
|
4483
|
+
}>;
|
4484
|
+
loadingLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4485
|
+
id: string;
|
4486
|
+
description: string;
|
4487
|
+
defaultMessage: string;
|
4488
|
+
}>>;
|
4489
|
+
}, "strip", z.ZodTypeAny, {
|
4490
|
+
onClick: {
|
4491
|
+
$$field: string;
|
4492
|
+
};
|
4493
|
+
buttonLabel: TranslationConfig;
|
4494
|
+
icon?: string | undefined;
|
4495
|
+
shouldHandleLoadingState?: boolean | undefined;
|
4496
|
+
loadingLabel?: TranslationConfig | undefined;
|
4497
|
+
}, {
|
4498
|
+
onClick: {
|
4499
|
+
$$field: string;
|
4500
|
+
};
|
4501
|
+
buttonLabel: {
|
4502
|
+
id: string;
|
4503
|
+
description: string;
|
4504
|
+
defaultMessage: string;
|
4505
|
+
};
|
4506
|
+
icon?: string | undefined;
|
4507
|
+
shouldHandleLoadingState?: boolean | undefined;
|
4508
|
+
loadingLabel?: {
|
4509
|
+
id: string;
|
4510
|
+
description: string;
|
4511
|
+
defaultMessage: string;
|
4512
|
+
} | undefined;
|
4513
|
+
}>;
|
4514
|
+
}>, "strip", z.ZodTypeAny, {
|
4515
|
+
type: "BUTTON";
|
4430
4516
|
id: string;
|
4431
4517
|
label: TranslationConfig;
|
4518
|
+
configuration: {
|
4519
|
+
onClick: {
|
4520
|
+
$$field: string;
|
4521
|
+
};
|
4522
|
+
buttonLabel: TranslationConfig;
|
4523
|
+
icon?: string | undefined;
|
4524
|
+
shouldHandleLoadingState?: boolean | undefined;
|
4525
|
+
loadingLabel?: TranslationConfig | undefined;
|
4526
|
+
};
|
4432
4527
|
parent?: {
|
4433
4528
|
$$field: string;
|
4434
4529
|
} | undefined;
|
@@ -4452,15 +4547,40 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4452
4547
|
helperText?: TranslationConfig | undefined;
|
4453
4548
|
hideLabel?: boolean | undefined;
|
4454
4549
|
uncorrectable?: boolean | undefined;
|
4455
|
-
}
|
4456
|
-
type: "
|
4550
|
+
}, {
|
4551
|
+
type: "BUTTON";
|
4457
4552
|
id: string;
|
4458
|
-
label:
|
4553
|
+
label: {
|
4554
|
+
id: string;
|
4555
|
+
description: string;
|
4556
|
+
defaultMessage: string;
|
4557
|
+
};
|
4558
|
+
configuration: {
|
4559
|
+
onClick: {
|
4560
|
+
$$field: string;
|
4561
|
+
};
|
4562
|
+
buttonLabel: {
|
4563
|
+
id: string;
|
4564
|
+
description: string;
|
4565
|
+
defaultMessage: string;
|
4566
|
+
};
|
4567
|
+
icon?: string | undefined;
|
4568
|
+
shouldHandleLoadingState?: boolean | undefined;
|
4569
|
+
loadingLabel?: {
|
4570
|
+
id: string;
|
4571
|
+
description: string;
|
4572
|
+
defaultMessage: string;
|
4573
|
+
} | undefined;
|
4574
|
+
};
|
4459
4575
|
parent?: {
|
4460
4576
|
$$field: string;
|
4461
4577
|
} | undefined;
|
4462
4578
|
validation?: {
|
4463
|
-
message:
|
4579
|
+
message: {
|
4580
|
+
id: string;
|
4581
|
+
description: string;
|
4582
|
+
defaultMessage: string;
|
4583
|
+
};
|
4464
4584
|
validator: import(".").JSONSchema;
|
4465
4585
|
}[] | undefined;
|
4466
4586
|
required?: boolean | undefined;
|
@@ -4475,21 +4595,97 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4475
4595
|
conditional: import(".").JSONSchema;
|
4476
4596
|
})[] | undefined;
|
4477
4597
|
secured?: boolean | undefined;
|
4478
|
-
placeholder?:
|
4479
|
-
|
4598
|
+
placeholder?: {
|
4599
|
+
id: string;
|
4600
|
+
description: string;
|
4601
|
+
defaultMessage: string;
|
4602
|
+
} | undefined;
|
4603
|
+
helperText?: {
|
4604
|
+
id: string;
|
4605
|
+
description: string;
|
4606
|
+
defaultMessage: string;
|
4607
|
+
} | undefined;
|
4480
4608
|
hideLabel?: boolean | undefined;
|
4481
4609
|
uncorrectable?: boolean | undefined;
|
4482
|
-
|
4483
|
-
|
4484
|
-
|
4485
|
-
|
4486
|
-
|
4487
|
-
|
4488
|
-
}
|
4489
|
-
|
4490
|
-
|
4610
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4611
|
+
id: z.ZodString;
|
4612
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4613
|
+
id: string;
|
4614
|
+
description: string;
|
4615
|
+
defaultMessage: string;
|
4616
|
+
}>;
|
4617
|
+
parent: z.ZodOptional<z.ZodObject<{
|
4618
|
+
$$field: z.ZodString;
|
4619
|
+
}, "strip", z.ZodTypeAny, {
|
4620
|
+
$$field: string;
|
4621
|
+
}, {
|
4622
|
+
$$field: string;
|
4623
|
+
}>>;
|
4624
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4625
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4626
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4627
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4628
|
+
id: string;
|
4629
|
+
description: string;
|
4630
|
+
defaultMessage: string;
|
4631
|
+
}>>;
|
4632
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
4633
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
4634
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4635
|
+
id: string;
|
4636
|
+
description: string;
|
4637
|
+
defaultMessage: string;
|
4638
|
+
}>;
|
4639
|
+
}, "strip", z.ZodTypeAny, {
|
4640
|
+
message: TranslationConfig;
|
4641
|
+
validator: import(".").JSONSchema;
|
4642
|
+
}, {
|
4643
|
+
message: {
|
4644
|
+
id: string;
|
4645
|
+
description: string;
|
4646
|
+
defaultMessage: string;
|
4647
|
+
};
|
4648
|
+
validator: import(".").JSONSchema;
|
4649
|
+
}>, "many">>>;
|
4650
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4651
|
+
id: string;
|
4652
|
+
description: string;
|
4653
|
+
defaultMessage: string;
|
4654
|
+
}>>;
|
4655
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4656
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4657
|
+
}, {
|
4658
|
+
type: z.ZodLiteral<"HTTP">;
|
4659
|
+
configuration: z.ZodObject<{
|
4660
|
+
method: z.ZodEnum<["GET", "POST", "PUT", "DELETE"]>;
|
4661
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4662
|
+
body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4663
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4664
|
+
url: z.ZodString;
|
4665
|
+
}, "strip", z.ZodTypeAny, {
|
4666
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
4667
|
+
url: string;
|
4668
|
+
params?: Record<string, string> | undefined;
|
4669
|
+
headers?: Record<string, string> | undefined;
|
4670
|
+
body?: Record<string, string> | undefined;
|
4671
|
+
}, {
|
4672
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
4673
|
+
url: string;
|
4674
|
+
params?: Record<string, string> | undefined;
|
4675
|
+
headers?: Record<string, string> | undefined;
|
4676
|
+
body?: Record<string, string> | undefined;
|
4677
|
+
}>;
|
4678
|
+
}>, "strip", z.ZodTypeAny, {
|
4679
|
+
type: "HTTP";
|
4491
4680
|
id: string;
|
4492
4681
|
label: TranslationConfig;
|
4682
|
+
configuration: {
|
4683
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
4684
|
+
url: string;
|
4685
|
+
params?: Record<string, string> | undefined;
|
4686
|
+
headers?: Record<string, string> | undefined;
|
4687
|
+
body?: Record<string, string> | undefined;
|
4688
|
+
};
|
4493
4689
|
parent?: {
|
4494
4690
|
$$field: string;
|
4495
4691
|
} | undefined;
|
@@ -4513,22 +4709,30 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4513
4709
|
helperText?: TranslationConfig | undefined;
|
4514
4710
|
hideLabel?: boolean | undefined;
|
4515
4711
|
uncorrectable?: boolean | undefined;
|
4516
|
-
|
4517
|
-
|
4518
|
-
prefix?: TranslationConfig | undefined;
|
4519
|
-
postfix?: TranslationConfig | undefined;
|
4520
|
-
min?: number | undefined;
|
4521
|
-
max?: number | undefined;
|
4522
|
-
} | undefined;
|
4523
|
-
} | {
|
4524
|
-
type: "TEXTAREA";
|
4712
|
+
}, {
|
4713
|
+
type: "HTTP";
|
4525
4714
|
id: string;
|
4526
|
-
label:
|
4715
|
+
label: {
|
4716
|
+
id: string;
|
4717
|
+
description: string;
|
4718
|
+
defaultMessage: string;
|
4719
|
+
};
|
4720
|
+
configuration: {
|
4721
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
4722
|
+
url: string;
|
4723
|
+
params?: Record<string, string> | undefined;
|
4724
|
+
headers?: Record<string, string> | undefined;
|
4725
|
+
body?: Record<string, string> | undefined;
|
4726
|
+
};
|
4527
4727
|
parent?: {
|
4528
4728
|
$$field: string;
|
4529
4729
|
} | undefined;
|
4530
4730
|
validation?: {
|
4531
|
-
message:
|
4731
|
+
message: {
|
4732
|
+
id: string;
|
4733
|
+
description: string;
|
4734
|
+
defaultMessage: string;
|
4735
|
+
};
|
4532
4736
|
validator: import(".").JSONSchema;
|
4533
4737
|
}[] | undefined;
|
4534
4738
|
required?: boolean | undefined;
|
@@ -4543,27 +4747,30 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4543
4747
|
conditional: import(".").JSONSchema;
|
4544
4748
|
})[] | undefined;
|
4545
4749
|
secured?: boolean | undefined;
|
4546
|
-
placeholder?:
|
4547
|
-
|
4750
|
+
placeholder?: {
|
4751
|
+
id: string;
|
4752
|
+
description: string;
|
4753
|
+
defaultMessage: string;
|
4754
|
+
} | undefined;
|
4755
|
+
helperText?: {
|
4756
|
+
id: string;
|
4757
|
+
description: string;
|
4758
|
+
defaultMessage: string;
|
4759
|
+
} | undefined;
|
4548
4760
|
hideLabel?: boolean | undefined;
|
4549
4761
|
uncorrectable?: boolean | undefined;
|
4550
|
-
|
4551
|
-
|
4552
|
-
|
4553
|
-
|
4554
|
-
|
4555
|
-
|
4556
|
-
|
4557
|
-
|
4558
|
-
|
4559
|
-
type: "
|
4762
|
+
}>]>, "many">;
|
4763
|
+
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
4764
|
+
}, {
|
4765
|
+
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
4766
|
+
}>, "strip", z.ZodTypeAny, {
|
4767
|
+
type: "FORM";
|
4768
|
+
id: string;
|
4769
|
+
title: TranslationConfig;
|
4770
|
+
fields: ({
|
4771
|
+
type: "DIVIDER";
|
4560
4772
|
id: string;
|
4561
4773
|
label: TranslationConfig;
|
4562
|
-
configuration: {
|
4563
|
-
maxFileSize: number;
|
4564
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4565
|
-
};
|
4566
|
-
signaturePromptLabel: TranslationConfig;
|
4567
4774
|
parent?: {
|
4568
4775
|
$$field: string;
|
4569
4776
|
} | undefined;
|
@@ -4587,9 +4794,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4587
4794
|
helperText?: TranslationConfig | undefined;
|
4588
4795
|
hideLabel?: boolean | undefined;
|
4589
4796
|
uncorrectable?: boolean | undefined;
|
4590
|
-
defaultValue?: string | undefined;
|
4591
4797
|
} | {
|
4592
|
-
type: "
|
4798
|
+
type: "TEXT";
|
4593
4799
|
id: string;
|
4594
4800
|
label: TranslationConfig;
|
4595
4801
|
parent?: {
|
@@ -4617,10 +4823,146 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4617
4823
|
uncorrectable?: boolean | undefined;
|
4618
4824
|
defaultValue?: string | undefined;
|
4619
4825
|
configuration?: {
|
4826
|
+
type?: "text" | "password" | undefined;
|
4620
4827
|
maxLength?: number | undefined;
|
4828
|
+
prefix?: TranslationConfig | undefined;
|
4829
|
+
postfix?: TranslationConfig | undefined;
|
4621
4830
|
} | undefined;
|
4622
4831
|
} | {
|
4623
|
-
type: "
|
4832
|
+
type: "NUMBER";
|
4833
|
+
id: string;
|
4834
|
+
label: TranslationConfig;
|
4835
|
+
parent?: {
|
4836
|
+
$$field: string;
|
4837
|
+
} | undefined;
|
4838
|
+
validation?: {
|
4839
|
+
message: TranslationConfig;
|
4840
|
+
validator: import(".").JSONSchema;
|
4841
|
+
}[] | undefined;
|
4842
|
+
required?: boolean | undefined;
|
4843
|
+
conditionals?: ({
|
4844
|
+
type: "SHOW";
|
4845
|
+
conditional: import(".").JSONSchema;
|
4846
|
+
} | {
|
4847
|
+
type: "ENABLE";
|
4848
|
+
conditional: import(".").JSONSchema;
|
4849
|
+
} | {
|
4850
|
+
type: "DISPLAY_ON_REVIEW";
|
4851
|
+
conditional: import(".").JSONSchema;
|
4852
|
+
})[] | undefined;
|
4853
|
+
secured?: boolean | undefined;
|
4854
|
+
placeholder?: TranslationConfig | undefined;
|
4855
|
+
helperText?: TranslationConfig | undefined;
|
4856
|
+
hideLabel?: boolean | undefined;
|
4857
|
+
uncorrectable?: boolean | undefined;
|
4858
|
+
defaultValue?: number | undefined;
|
4859
|
+
configuration?: {
|
4860
|
+
prefix?: TranslationConfig | undefined;
|
4861
|
+
postfix?: TranslationConfig | undefined;
|
4862
|
+
min?: number | undefined;
|
4863
|
+
max?: number | undefined;
|
4864
|
+
} | undefined;
|
4865
|
+
} | {
|
4866
|
+
type: "TEXTAREA";
|
4867
|
+
id: string;
|
4868
|
+
label: TranslationConfig;
|
4869
|
+
parent?: {
|
4870
|
+
$$field: string;
|
4871
|
+
} | undefined;
|
4872
|
+
validation?: {
|
4873
|
+
message: TranslationConfig;
|
4874
|
+
validator: import(".").JSONSchema;
|
4875
|
+
}[] | undefined;
|
4876
|
+
required?: boolean | undefined;
|
4877
|
+
conditionals?: ({
|
4878
|
+
type: "SHOW";
|
4879
|
+
conditional: import(".").JSONSchema;
|
4880
|
+
} | {
|
4881
|
+
type: "ENABLE";
|
4882
|
+
conditional: import(".").JSONSchema;
|
4883
|
+
} | {
|
4884
|
+
type: "DISPLAY_ON_REVIEW";
|
4885
|
+
conditional: import(".").JSONSchema;
|
4886
|
+
})[] | undefined;
|
4887
|
+
secured?: boolean | undefined;
|
4888
|
+
placeholder?: TranslationConfig | undefined;
|
4889
|
+
helperText?: TranslationConfig | undefined;
|
4890
|
+
hideLabel?: boolean | undefined;
|
4891
|
+
uncorrectable?: boolean | undefined;
|
4892
|
+
defaultValue?: string | undefined;
|
4893
|
+
configuration?: {
|
4894
|
+
maxLength?: number | undefined;
|
4895
|
+
prefix?: TranslationConfig | undefined;
|
4896
|
+
postfix?: TranslationConfig | undefined;
|
4897
|
+
rows?: number | undefined;
|
4898
|
+
cols?: number | undefined;
|
4899
|
+
} | undefined;
|
4900
|
+
} | {
|
4901
|
+
type: "SIGNATURE";
|
4902
|
+
id: string;
|
4903
|
+
label: TranslationConfig;
|
4904
|
+
configuration: {
|
4905
|
+
maxFileSize: number;
|
4906
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4907
|
+
};
|
4908
|
+
signaturePromptLabel: TranslationConfig;
|
4909
|
+
parent?: {
|
4910
|
+
$$field: string;
|
4911
|
+
} | undefined;
|
4912
|
+
validation?: {
|
4913
|
+
message: TranslationConfig;
|
4914
|
+
validator: import(".").JSONSchema;
|
4915
|
+
}[] | undefined;
|
4916
|
+
required?: boolean | undefined;
|
4917
|
+
conditionals?: ({
|
4918
|
+
type: "SHOW";
|
4919
|
+
conditional: import(".").JSONSchema;
|
4920
|
+
} | {
|
4921
|
+
type: "ENABLE";
|
4922
|
+
conditional: import(".").JSONSchema;
|
4923
|
+
} | {
|
4924
|
+
type: "DISPLAY_ON_REVIEW";
|
4925
|
+
conditional: import(".").JSONSchema;
|
4926
|
+
})[] | undefined;
|
4927
|
+
secured?: boolean | undefined;
|
4928
|
+
placeholder?: TranslationConfig | undefined;
|
4929
|
+
helperText?: TranslationConfig | undefined;
|
4930
|
+
hideLabel?: boolean | undefined;
|
4931
|
+
uncorrectable?: boolean | undefined;
|
4932
|
+
defaultValue?: string | undefined;
|
4933
|
+
} | {
|
4934
|
+
type: "EMAIL";
|
4935
|
+
id: string;
|
4936
|
+
label: TranslationConfig;
|
4937
|
+
parent?: {
|
4938
|
+
$$field: string;
|
4939
|
+
} | undefined;
|
4940
|
+
validation?: {
|
4941
|
+
message: TranslationConfig;
|
4942
|
+
validator: import(".").JSONSchema;
|
4943
|
+
}[] | undefined;
|
4944
|
+
required?: boolean | undefined;
|
4945
|
+
conditionals?: ({
|
4946
|
+
type: "SHOW";
|
4947
|
+
conditional: import(".").JSONSchema;
|
4948
|
+
} | {
|
4949
|
+
type: "ENABLE";
|
4950
|
+
conditional: import(".").JSONSchema;
|
4951
|
+
} | {
|
4952
|
+
type: "DISPLAY_ON_REVIEW";
|
4953
|
+
conditional: import(".").JSONSchema;
|
4954
|
+
})[] | undefined;
|
4955
|
+
secured?: boolean | undefined;
|
4956
|
+
placeholder?: TranslationConfig | undefined;
|
4957
|
+
helperText?: TranslationConfig | undefined;
|
4958
|
+
hideLabel?: boolean | undefined;
|
4959
|
+
uncorrectable?: boolean | undefined;
|
4960
|
+
defaultValue?: string | undefined;
|
4961
|
+
configuration?: {
|
4962
|
+
maxLength?: number | undefined;
|
4963
|
+
} | undefined;
|
4964
|
+
} | {
|
4965
|
+
type: "DATE";
|
4624
4966
|
id: string;
|
4625
4967
|
label: TranslationConfig;
|
4626
4968
|
parent?: {
|
@@ -5359,6 +5701,76 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
5359
5701
|
helperText?: TranslationConfig | undefined;
|
5360
5702
|
hideLabel?: boolean | undefined;
|
5361
5703
|
uncorrectable?: boolean | undefined;
|
5704
|
+
} | {
|
5705
|
+
type: "BUTTON";
|
5706
|
+
id: string;
|
5707
|
+
label: TranslationConfig;
|
5708
|
+
configuration: {
|
5709
|
+
onClick: {
|
5710
|
+
$$field: string;
|
5711
|
+
};
|
5712
|
+
buttonLabel: TranslationConfig;
|
5713
|
+
icon?: string | undefined;
|
5714
|
+
shouldHandleLoadingState?: boolean | undefined;
|
5715
|
+
loadingLabel?: TranslationConfig | undefined;
|
5716
|
+
};
|
5717
|
+
parent?: {
|
5718
|
+
$$field: string;
|
5719
|
+
} | undefined;
|
5720
|
+
validation?: {
|
5721
|
+
message: TranslationConfig;
|
5722
|
+
validator: import(".").JSONSchema;
|
5723
|
+
}[] | undefined;
|
5724
|
+
required?: boolean | undefined;
|
5725
|
+
conditionals?: ({
|
5726
|
+
type: "SHOW";
|
5727
|
+
conditional: import(".").JSONSchema;
|
5728
|
+
} | {
|
5729
|
+
type: "ENABLE";
|
5730
|
+
conditional: import(".").JSONSchema;
|
5731
|
+
} | {
|
5732
|
+
type: "DISPLAY_ON_REVIEW";
|
5733
|
+
conditional: import(".").JSONSchema;
|
5734
|
+
})[] | undefined;
|
5735
|
+
secured?: boolean | undefined;
|
5736
|
+
placeholder?: TranslationConfig | undefined;
|
5737
|
+
helperText?: TranslationConfig | undefined;
|
5738
|
+
hideLabel?: boolean | undefined;
|
5739
|
+
uncorrectable?: boolean | undefined;
|
5740
|
+
} | {
|
5741
|
+
type: "HTTP";
|
5742
|
+
id: string;
|
5743
|
+
label: TranslationConfig;
|
5744
|
+
configuration: {
|
5745
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
5746
|
+
url: string;
|
5747
|
+
params?: Record<string, string> | undefined;
|
5748
|
+
headers?: Record<string, string> | undefined;
|
5749
|
+
body?: Record<string, string> | undefined;
|
5750
|
+
};
|
5751
|
+
parent?: {
|
5752
|
+
$$field: string;
|
5753
|
+
} | undefined;
|
5754
|
+
validation?: {
|
5755
|
+
message: TranslationConfig;
|
5756
|
+
validator: import(".").JSONSchema;
|
5757
|
+
}[] | undefined;
|
5758
|
+
required?: boolean | undefined;
|
5759
|
+
conditionals?: ({
|
5760
|
+
type: "SHOW";
|
5761
|
+
conditional: import(".").JSONSchema;
|
5762
|
+
} | {
|
5763
|
+
type: "ENABLE";
|
5764
|
+
conditional: import(".").JSONSchema;
|
5765
|
+
} | {
|
5766
|
+
type: "DISPLAY_ON_REVIEW";
|
5767
|
+
conditional: import(".").JSONSchema;
|
5768
|
+
})[] | undefined;
|
5769
|
+
secured?: boolean | undefined;
|
5770
|
+
placeholder?: TranslationConfig | undefined;
|
5771
|
+
helperText?: TranslationConfig | undefined;
|
5772
|
+
hideLabel?: boolean | undefined;
|
5773
|
+
uncorrectable?: boolean | undefined;
|
5362
5774
|
})[];
|
5363
5775
|
conditional?: import(".").JSONSchema | undefined;
|
5364
5776
|
}, {
|
@@ -6834,79 +7246,189 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
6834
7246
|
} | undefined;
|
6835
7247
|
hideLabel?: boolean | undefined;
|
6836
7248
|
uncorrectable?: boolean | undefined;
|
6837
|
-
}
|
6838
|
-
|
6839
|
-
|
6840
|
-
}>;
|
6841
|
-
export type FormPageConfig = z.infer<typeof FormPageConfig>;
|
6842
|
-
export type FormPageConfigInput = z.input<typeof FormPageConfig>;
|
6843
|
-
export declare const VerificationActionConfig: z.ZodObject<{
|
6844
|
-
verify: z.ZodObject<{
|
6845
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6846
|
-
id: string;
|
6847
|
-
description: string;
|
6848
|
-
defaultMessage: string;
|
6849
|
-
}>;
|
6850
|
-
}, "strip", z.ZodTypeAny, {
|
6851
|
-
label: TranslationConfig;
|
6852
|
-
}, {
|
7249
|
+
} | {
|
7250
|
+
type: "BUTTON";
|
7251
|
+
id: string;
|
6853
7252
|
label: {
|
6854
7253
|
id: string;
|
6855
7254
|
description: string;
|
6856
7255
|
defaultMessage: string;
|
6857
7256
|
};
|
6858
|
-
|
6859
|
-
|
6860
|
-
|
6861
|
-
|
6862
|
-
|
6863
|
-
defaultMessage: string;
|
6864
|
-
}>;
|
6865
|
-
confirmation: z.ZodObject<{
|
6866
|
-
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6867
|
-
id: string;
|
6868
|
-
description: string;
|
6869
|
-
defaultMessage: string;
|
6870
|
-
}>;
|
6871
|
-
body: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6872
|
-
id: string;
|
6873
|
-
description: string;
|
6874
|
-
defaultMessage: string;
|
6875
|
-
}>;
|
6876
|
-
}, "strip", z.ZodTypeAny, {
|
6877
|
-
title: TranslationConfig;
|
6878
|
-
body: TranslationConfig;
|
6879
|
-
}, {
|
6880
|
-
title: {
|
7257
|
+
configuration: {
|
7258
|
+
onClick: {
|
7259
|
+
$$field: string;
|
7260
|
+
};
|
7261
|
+
buttonLabel: {
|
6881
7262
|
id: string;
|
6882
7263
|
description: string;
|
6883
7264
|
defaultMessage: string;
|
6884
7265
|
};
|
6885
|
-
|
7266
|
+
icon?: string | undefined;
|
7267
|
+
shouldHandleLoadingState?: boolean | undefined;
|
7268
|
+
loadingLabel?: {
|
6886
7269
|
id: string;
|
6887
7270
|
description: string;
|
6888
7271
|
defaultMessage: string;
|
6889
|
-
};
|
6890
|
-
}>;
|
6891
|
-
}, "strip", z.ZodTypeAny, {
|
6892
|
-
label: TranslationConfig;
|
6893
|
-
confirmation: {
|
6894
|
-
title: TranslationConfig;
|
6895
|
-
body: TranslationConfig;
|
6896
|
-
};
|
6897
|
-
}, {
|
6898
|
-
label: {
|
6899
|
-
id: string;
|
6900
|
-
description: string;
|
6901
|
-
defaultMessage: string;
|
7272
|
+
} | undefined;
|
6902
7273
|
};
|
6903
|
-
|
6904
|
-
|
7274
|
+
parent?: {
|
7275
|
+
$$field: string;
|
7276
|
+
} | undefined;
|
7277
|
+
validation?: {
|
7278
|
+
message: {
|
6905
7279
|
id: string;
|
6906
7280
|
description: string;
|
6907
7281
|
defaultMessage: string;
|
6908
7282
|
};
|
6909
|
-
|
7283
|
+
validator: import(".").JSONSchema;
|
7284
|
+
}[] | undefined;
|
7285
|
+
required?: boolean | undefined;
|
7286
|
+
conditionals?: ({
|
7287
|
+
type: "SHOW";
|
7288
|
+
conditional: import(".").JSONSchema;
|
7289
|
+
} | {
|
7290
|
+
type: "ENABLE";
|
7291
|
+
conditional: import(".").JSONSchema;
|
7292
|
+
} | {
|
7293
|
+
type: "DISPLAY_ON_REVIEW";
|
7294
|
+
conditional: import(".").JSONSchema;
|
7295
|
+
})[] | undefined;
|
7296
|
+
secured?: boolean | undefined;
|
7297
|
+
placeholder?: {
|
7298
|
+
id: string;
|
7299
|
+
description: string;
|
7300
|
+
defaultMessage: string;
|
7301
|
+
} | undefined;
|
7302
|
+
helperText?: {
|
7303
|
+
id: string;
|
7304
|
+
description: string;
|
7305
|
+
defaultMessage: string;
|
7306
|
+
} | undefined;
|
7307
|
+
hideLabel?: boolean | undefined;
|
7308
|
+
uncorrectable?: boolean | undefined;
|
7309
|
+
} | {
|
7310
|
+
type: "HTTP";
|
7311
|
+
id: string;
|
7312
|
+
label: {
|
7313
|
+
id: string;
|
7314
|
+
description: string;
|
7315
|
+
defaultMessage: string;
|
7316
|
+
};
|
7317
|
+
configuration: {
|
7318
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
7319
|
+
url: string;
|
7320
|
+
params?: Record<string, string> | undefined;
|
7321
|
+
headers?: Record<string, string> | undefined;
|
7322
|
+
body?: Record<string, string> | undefined;
|
7323
|
+
};
|
7324
|
+
parent?: {
|
7325
|
+
$$field: string;
|
7326
|
+
} | undefined;
|
7327
|
+
validation?: {
|
7328
|
+
message: {
|
7329
|
+
id: string;
|
7330
|
+
description: string;
|
7331
|
+
defaultMessage: string;
|
7332
|
+
};
|
7333
|
+
validator: import(".").JSONSchema;
|
7334
|
+
}[] | undefined;
|
7335
|
+
required?: boolean | undefined;
|
7336
|
+
conditionals?: ({
|
7337
|
+
type: "SHOW";
|
7338
|
+
conditional: import(".").JSONSchema;
|
7339
|
+
} | {
|
7340
|
+
type: "ENABLE";
|
7341
|
+
conditional: import(".").JSONSchema;
|
7342
|
+
} | {
|
7343
|
+
type: "DISPLAY_ON_REVIEW";
|
7344
|
+
conditional: import(".").JSONSchema;
|
7345
|
+
})[] | undefined;
|
7346
|
+
secured?: boolean | undefined;
|
7347
|
+
placeholder?: {
|
7348
|
+
id: string;
|
7349
|
+
description: string;
|
7350
|
+
defaultMessage: string;
|
7351
|
+
} | undefined;
|
7352
|
+
helperText?: {
|
7353
|
+
id: string;
|
7354
|
+
description: string;
|
7355
|
+
defaultMessage: string;
|
7356
|
+
} | undefined;
|
7357
|
+
hideLabel?: boolean | undefined;
|
7358
|
+
uncorrectable?: boolean | undefined;
|
7359
|
+
})[];
|
7360
|
+
type?: "FORM" | undefined;
|
7361
|
+
conditional?: import(".").JSONSchema | undefined;
|
7362
|
+
}>;
|
7363
|
+
export type FormPageConfig = z.infer<typeof FormPageConfig>;
|
7364
|
+
export type FormPageConfigInput = z.input<typeof FormPageConfig>;
|
7365
|
+
export declare const VerificationActionConfig: z.ZodObject<{
|
7366
|
+
verify: z.ZodObject<{
|
7367
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7368
|
+
id: string;
|
7369
|
+
description: string;
|
7370
|
+
defaultMessage: string;
|
7371
|
+
}>;
|
7372
|
+
}, "strip", z.ZodTypeAny, {
|
7373
|
+
label: TranslationConfig;
|
7374
|
+
}, {
|
7375
|
+
label: {
|
7376
|
+
id: string;
|
7377
|
+
description: string;
|
7378
|
+
defaultMessage: string;
|
7379
|
+
};
|
7380
|
+
}>;
|
7381
|
+
cancel: z.ZodObject<{
|
7382
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7383
|
+
id: string;
|
7384
|
+
description: string;
|
7385
|
+
defaultMessage: string;
|
7386
|
+
}>;
|
7387
|
+
confirmation: z.ZodObject<{
|
7388
|
+
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7389
|
+
id: string;
|
7390
|
+
description: string;
|
7391
|
+
defaultMessage: string;
|
7392
|
+
}>;
|
7393
|
+
body: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7394
|
+
id: string;
|
7395
|
+
description: string;
|
7396
|
+
defaultMessage: string;
|
7397
|
+
}>;
|
7398
|
+
}, "strip", z.ZodTypeAny, {
|
7399
|
+
title: TranslationConfig;
|
7400
|
+
body: TranslationConfig;
|
7401
|
+
}, {
|
7402
|
+
title: {
|
7403
|
+
id: string;
|
7404
|
+
description: string;
|
7405
|
+
defaultMessage: string;
|
7406
|
+
};
|
7407
|
+
body: {
|
7408
|
+
id: string;
|
7409
|
+
description: string;
|
7410
|
+
defaultMessage: string;
|
7411
|
+
};
|
7412
|
+
}>;
|
7413
|
+
}, "strip", z.ZodTypeAny, {
|
7414
|
+
label: TranslationConfig;
|
7415
|
+
confirmation: {
|
7416
|
+
title: TranslationConfig;
|
7417
|
+
body: TranslationConfig;
|
7418
|
+
};
|
7419
|
+
}, {
|
7420
|
+
label: {
|
7421
|
+
id: string;
|
7422
|
+
description: string;
|
7423
|
+
defaultMessage: string;
|
7424
|
+
};
|
7425
|
+
confirmation: {
|
7426
|
+
title: {
|
7427
|
+
id: string;
|
7428
|
+
description: string;
|
7429
|
+
defaultMessage: string;
|
7430
|
+
};
|
7431
|
+
body: {
|
6910
7432
|
id: string;
|
6911
7433
|
description: string;
|
6912
7434
|
defaultMessage: string;
|
@@ -7007,103 +7529,493 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7007
7529
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7008
7530
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7009
7531
|
}, {
|
7010
|
-
type: z.ZodLiteral<"ADDRESS">;
|
7011
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
7012
|
-
country: z.ZodString;
|
7013
|
-
addressType: z.ZodLiteral<"DOMESTIC">;
|
7014
|
-
province: z.ZodString;
|
7015
|
-
district: z.ZodString;
|
7016
|
-
}, {
|
7017
|
-
urbanOrRural: z.ZodLiteral<"URBAN">;
|
7018
|
-
town: z.ZodOptional<z.ZodString>;
|
7019
|
-
residentialArea: z.ZodOptional<z.ZodString>;
|
7020
|
-
street: z.ZodOptional<z.ZodString>;
|
7021
|
-
number: z.ZodOptional<z.ZodString>;
|
7022
|
-
zipCode: z.ZodOptional<z.ZodString>;
|
7023
|
-
}>, "strip", z.ZodTypeAny, {
|
7024
|
-
country: string;
|
7025
|
-
district: string;
|
7026
|
-
addressType: "DOMESTIC";
|
7027
|
-
province: string;
|
7028
|
-
urbanOrRural: "URBAN";
|
7029
|
-
number?: string | undefined;
|
7030
|
-
town?: string | undefined;
|
7031
|
-
residentialArea?: string | undefined;
|
7032
|
-
street?: string | undefined;
|
7033
|
-
zipCode?: string | undefined;
|
7034
|
-
}, {
|
7035
|
-
country: string;
|
7036
|
-
district: string;
|
7037
|
-
addressType: "DOMESTIC";
|
7038
|
-
province: string;
|
7039
|
-
urbanOrRural: "URBAN";
|
7040
|
-
number?: string | undefined;
|
7041
|
-
town?: string | undefined;
|
7042
|
-
residentialArea?: string | undefined;
|
7043
|
-
street?: string | undefined;
|
7044
|
-
zipCode?: string | undefined;
|
7045
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7046
|
-
country: z.ZodString;
|
7047
|
-
addressType: z.ZodLiteral<"DOMESTIC">;
|
7048
|
-
province: z.ZodString;
|
7049
|
-
district: z.ZodString;
|
7050
|
-
}, {
|
7051
|
-
urbanOrRural: z.ZodLiteral<"RURAL">;
|
7052
|
-
village: z.ZodOptional<z.ZodString>;
|
7053
|
-
}>, "strip", z.ZodTypeAny, {
|
7054
|
-
country: string;
|
7055
|
-
district: string;
|
7056
|
-
addressType: "DOMESTIC";
|
7057
|
-
province: string;
|
7058
|
-
urbanOrRural: "RURAL";
|
7059
|
-
village?: string | undefined;
|
7060
|
-
}, {
|
7061
|
-
country: string;
|
7062
|
-
district: string;
|
7063
|
-
addressType: "DOMESTIC";
|
7064
|
-
province: string;
|
7065
|
-
urbanOrRural: "RURAL";
|
7066
|
-
village?: string | undefined;
|
7067
|
-
}>]>, z.ZodObject<{
|
7068
|
-
country: z.ZodString;
|
7069
|
-
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
7070
|
-
state: z.ZodString;
|
7071
|
-
district2: z.ZodString;
|
7072
|
-
cityOrTown: z.ZodOptional<z.ZodString>;
|
7073
|
-
addressLine1: z.ZodOptional<z.ZodString>;
|
7074
|
-
addressLine2: z.ZodOptional<z.ZodString>;
|
7075
|
-
addressLine3: z.ZodOptional<z.ZodString>;
|
7076
|
-
postcodeOrZip: z.ZodOptional<z.ZodString>;
|
7077
|
-
}, "strip", z.ZodTypeAny, {
|
7078
|
-
country: string;
|
7079
|
-
state: string;
|
7080
|
-
addressType: "INTERNATIONAL";
|
7081
|
-
district2: string;
|
7082
|
-
cityOrTown?: string | undefined;
|
7083
|
-
addressLine1?: string | undefined;
|
7084
|
-
addressLine2?: string | undefined;
|
7085
|
-
addressLine3?: string | undefined;
|
7086
|
-
postcodeOrZip?: string | undefined;
|
7087
|
-
}, {
|
7088
|
-
country: string;
|
7089
|
-
state: string;
|
7090
|
-
addressType: "INTERNATIONAL";
|
7091
|
-
district2: string;
|
7092
|
-
cityOrTown?: string | undefined;
|
7093
|
-
addressLine1?: string | undefined;
|
7094
|
-
addressLine2?: string | undefined;
|
7095
|
-
addressLine3?: string | undefined;
|
7096
|
-
postcodeOrZip?: string | undefined;
|
7097
|
-
}>]>>;
|
7532
|
+
type: z.ZodLiteral<"ADDRESS">;
|
7533
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
7534
|
+
country: z.ZodString;
|
7535
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
7536
|
+
province: z.ZodString;
|
7537
|
+
district: z.ZodString;
|
7538
|
+
}, {
|
7539
|
+
urbanOrRural: z.ZodLiteral<"URBAN">;
|
7540
|
+
town: z.ZodOptional<z.ZodString>;
|
7541
|
+
residentialArea: z.ZodOptional<z.ZodString>;
|
7542
|
+
street: z.ZodOptional<z.ZodString>;
|
7543
|
+
number: z.ZodOptional<z.ZodString>;
|
7544
|
+
zipCode: z.ZodOptional<z.ZodString>;
|
7545
|
+
}>, "strip", z.ZodTypeAny, {
|
7546
|
+
country: string;
|
7547
|
+
district: string;
|
7548
|
+
addressType: "DOMESTIC";
|
7549
|
+
province: string;
|
7550
|
+
urbanOrRural: "URBAN";
|
7551
|
+
number?: string | undefined;
|
7552
|
+
town?: string | undefined;
|
7553
|
+
residentialArea?: string | undefined;
|
7554
|
+
street?: string | undefined;
|
7555
|
+
zipCode?: string | undefined;
|
7556
|
+
}, {
|
7557
|
+
country: string;
|
7558
|
+
district: string;
|
7559
|
+
addressType: "DOMESTIC";
|
7560
|
+
province: string;
|
7561
|
+
urbanOrRural: "URBAN";
|
7562
|
+
number?: string | undefined;
|
7563
|
+
town?: string | undefined;
|
7564
|
+
residentialArea?: string | undefined;
|
7565
|
+
street?: string | undefined;
|
7566
|
+
zipCode?: string | undefined;
|
7567
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7568
|
+
country: z.ZodString;
|
7569
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
7570
|
+
province: z.ZodString;
|
7571
|
+
district: z.ZodString;
|
7572
|
+
}, {
|
7573
|
+
urbanOrRural: z.ZodLiteral<"RURAL">;
|
7574
|
+
village: z.ZodOptional<z.ZodString>;
|
7575
|
+
}>, "strip", z.ZodTypeAny, {
|
7576
|
+
country: string;
|
7577
|
+
district: string;
|
7578
|
+
addressType: "DOMESTIC";
|
7579
|
+
province: string;
|
7580
|
+
urbanOrRural: "RURAL";
|
7581
|
+
village?: string | undefined;
|
7582
|
+
}, {
|
7583
|
+
country: string;
|
7584
|
+
district: string;
|
7585
|
+
addressType: "DOMESTIC";
|
7586
|
+
province: string;
|
7587
|
+
urbanOrRural: "RURAL";
|
7588
|
+
village?: string | undefined;
|
7589
|
+
}>]>, z.ZodObject<{
|
7590
|
+
country: z.ZodString;
|
7591
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
7592
|
+
state: z.ZodString;
|
7593
|
+
district2: z.ZodString;
|
7594
|
+
cityOrTown: z.ZodOptional<z.ZodString>;
|
7595
|
+
addressLine1: z.ZodOptional<z.ZodString>;
|
7596
|
+
addressLine2: z.ZodOptional<z.ZodString>;
|
7597
|
+
addressLine3: z.ZodOptional<z.ZodString>;
|
7598
|
+
postcodeOrZip: z.ZodOptional<z.ZodString>;
|
7599
|
+
}, "strip", z.ZodTypeAny, {
|
7600
|
+
country: string;
|
7601
|
+
state: string;
|
7602
|
+
addressType: "INTERNATIONAL";
|
7603
|
+
district2: string;
|
7604
|
+
cityOrTown?: string | undefined;
|
7605
|
+
addressLine1?: string | undefined;
|
7606
|
+
addressLine2?: string | undefined;
|
7607
|
+
addressLine3?: string | undefined;
|
7608
|
+
postcodeOrZip?: string | undefined;
|
7609
|
+
}, {
|
7610
|
+
country: string;
|
7611
|
+
state: string;
|
7612
|
+
addressType: "INTERNATIONAL";
|
7613
|
+
district2: string;
|
7614
|
+
cityOrTown?: string | undefined;
|
7615
|
+
addressLine1?: string | undefined;
|
7616
|
+
addressLine2?: string | undefined;
|
7617
|
+
addressLine3?: string | undefined;
|
7618
|
+
postcodeOrZip?: string | undefined;
|
7619
|
+
}>]>>;
|
7620
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
7621
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
7622
|
+
}, "strip", z.ZodTypeAny, {
|
7623
|
+
searchMode?: boolean | undefined;
|
7624
|
+
}, {
|
7625
|
+
searchMode?: boolean | undefined;
|
7626
|
+
}>>;
|
7627
|
+
}>, "strip", z.ZodTypeAny, {
|
7628
|
+
type: "ADDRESS";
|
7629
|
+
id: string;
|
7630
|
+
label: TranslationConfig;
|
7631
|
+
parent?: {
|
7632
|
+
$$field: string;
|
7633
|
+
} | undefined;
|
7634
|
+
validation?: {
|
7635
|
+
message: TranslationConfig;
|
7636
|
+
validator: import(".").JSONSchema;
|
7637
|
+
}[] | undefined;
|
7638
|
+
required?: boolean | undefined;
|
7639
|
+
conditionals?: ({
|
7640
|
+
type: "SHOW";
|
7641
|
+
conditional: import(".").JSONSchema;
|
7642
|
+
} | {
|
7643
|
+
type: "ENABLE";
|
7644
|
+
conditional: import(".").JSONSchema;
|
7645
|
+
} | {
|
7646
|
+
type: "DISPLAY_ON_REVIEW";
|
7647
|
+
conditional: import(".").JSONSchema;
|
7648
|
+
})[] | undefined;
|
7649
|
+
secured?: boolean | undefined;
|
7650
|
+
placeholder?: TranslationConfig | undefined;
|
7651
|
+
helperText?: TranslationConfig | undefined;
|
7652
|
+
hideLabel?: boolean | undefined;
|
7653
|
+
uncorrectable?: boolean | undefined;
|
7654
|
+
defaultValue?: {
|
7655
|
+
country: string;
|
7656
|
+
district: string;
|
7657
|
+
addressType: "DOMESTIC";
|
7658
|
+
province: string;
|
7659
|
+
urbanOrRural: "URBAN";
|
7660
|
+
number?: string | undefined;
|
7661
|
+
town?: string | undefined;
|
7662
|
+
residentialArea?: string | undefined;
|
7663
|
+
street?: string | undefined;
|
7664
|
+
zipCode?: string | undefined;
|
7665
|
+
} | {
|
7666
|
+
country: string;
|
7667
|
+
district: string;
|
7668
|
+
addressType: "DOMESTIC";
|
7669
|
+
province: string;
|
7670
|
+
urbanOrRural: "RURAL";
|
7671
|
+
village?: string | undefined;
|
7672
|
+
} | {
|
7673
|
+
country: string;
|
7674
|
+
state: string;
|
7675
|
+
addressType: "INTERNATIONAL";
|
7676
|
+
district2: string;
|
7677
|
+
cityOrTown?: string | undefined;
|
7678
|
+
addressLine1?: string | undefined;
|
7679
|
+
addressLine2?: string | undefined;
|
7680
|
+
addressLine3?: string | undefined;
|
7681
|
+
postcodeOrZip?: string | undefined;
|
7682
|
+
} | undefined;
|
7683
|
+
configuration?: {
|
7684
|
+
searchMode?: boolean | undefined;
|
7685
|
+
} | undefined;
|
7686
|
+
}, {
|
7687
|
+
type: "ADDRESS";
|
7688
|
+
id: string;
|
7689
|
+
label: {
|
7690
|
+
id: string;
|
7691
|
+
description: string;
|
7692
|
+
defaultMessage: string;
|
7693
|
+
};
|
7694
|
+
parent?: {
|
7695
|
+
$$field: string;
|
7696
|
+
} | undefined;
|
7697
|
+
validation?: {
|
7698
|
+
message: {
|
7699
|
+
id: string;
|
7700
|
+
description: string;
|
7701
|
+
defaultMessage: string;
|
7702
|
+
};
|
7703
|
+
validator: import(".").JSONSchema;
|
7704
|
+
}[] | undefined;
|
7705
|
+
required?: boolean | undefined;
|
7706
|
+
conditionals?: ({
|
7707
|
+
type: "SHOW";
|
7708
|
+
conditional: import(".").JSONSchema;
|
7709
|
+
} | {
|
7710
|
+
type: "ENABLE";
|
7711
|
+
conditional: import(".").JSONSchema;
|
7712
|
+
} | {
|
7713
|
+
type: "DISPLAY_ON_REVIEW";
|
7714
|
+
conditional: import(".").JSONSchema;
|
7715
|
+
})[] | undefined;
|
7716
|
+
secured?: boolean | undefined;
|
7717
|
+
placeholder?: {
|
7718
|
+
id: string;
|
7719
|
+
description: string;
|
7720
|
+
defaultMessage: string;
|
7721
|
+
} | undefined;
|
7722
|
+
helperText?: {
|
7723
|
+
id: string;
|
7724
|
+
description: string;
|
7725
|
+
defaultMessage: string;
|
7726
|
+
} | undefined;
|
7727
|
+
hideLabel?: boolean | undefined;
|
7728
|
+
uncorrectable?: boolean | undefined;
|
7729
|
+
defaultValue?: {
|
7730
|
+
country: string;
|
7731
|
+
district: string;
|
7732
|
+
addressType: "DOMESTIC";
|
7733
|
+
province: string;
|
7734
|
+
urbanOrRural: "URBAN";
|
7735
|
+
number?: string | undefined;
|
7736
|
+
town?: string | undefined;
|
7737
|
+
residentialArea?: string | undefined;
|
7738
|
+
street?: string | undefined;
|
7739
|
+
zipCode?: string | undefined;
|
7740
|
+
} | {
|
7741
|
+
country: string;
|
7742
|
+
district: string;
|
7743
|
+
addressType: "DOMESTIC";
|
7744
|
+
province: string;
|
7745
|
+
urbanOrRural: "RURAL";
|
7746
|
+
village?: string | undefined;
|
7747
|
+
} | {
|
7748
|
+
country: string;
|
7749
|
+
state: string;
|
7750
|
+
addressType: "INTERNATIONAL";
|
7751
|
+
district2: string;
|
7752
|
+
cityOrTown?: string | undefined;
|
7753
|
+
addressLine1?: string | undefined;
|
7754
|
+
addressLine2?: string | undefined;
|
7755
|
+
addressLine3?: string | undefined;
|
7756
|
+
postcodeOrZip?: string | undefined;
|
7757
|
+
} | undefined;
|
7758
|
+
configuration?: {
|
7759
|
+
searchMode?: boolean | undefined;
|
7760
|
+
} | undefined;
|
7761
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7762
|
+
id: z.ZodString;
|
7763
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7764
|
+
id: string;
|
7765
|
+
description: string;
|
7766
|
+
defaultMessage: string;
|
7767
|
+
}>;
|
7768
|
+
parent: z.ZodOptional<z.ZodObject<{
|
7769
|
+
$$field: z.ZodString;
|
7770
|
+
}, "strip", z.ZodTypeAny, {
|
7771
|
+
$$field: string;
|
7772
|
+
}, {
|
7773
|
+
$$field: string;
|
7774
|
+
}>>;
|
7775
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7776
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7777
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7778
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7779
|
+
id: string;
|
7780
|
+
description: string;
|
7781
|
+
defaultMessage: string;
|
7782
|
+
}>>;
|
7783
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
7784
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
7785
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7786
|
+
id: string;
|
7787
|
+
description: string;
|
7788
|
+
defaultMessage: string;
|
7789
|
+
}>;
|
7790
|
+
}, "strip", z.ZodTypeAny, {
|
7791
|
+
message: TranslationConfig;
|
7792
|
+
validator: import(".").JSONSchema;
|
7793
|
+
}, {
|
7794
|
+
message: {
|
7795
|
+
id: string;
|
7796
|
+
description: string;
|
7797
|
+
defaultMessage: string;
|
7798
|
+
};
|
7799
|
+
validator: import(".").JSONSchema;
|
7800
|
+
}>, "many">>>;
|
7801
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7802
|
+
id: string;
|
7803
|
+
description: string;
|
7804
|
+
defaultMessage: string;
|
7805
|
+
}>>;
|
7806
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7807
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7808
|
+
}, {
|
7809
|
+
type: z.ZodLiteral<"TEXT">;
|
7810
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
7811
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7812
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
7813
|
+
type: z.ZodOptional<z.ZodEnum<["text", "password"]>>;
|
7814
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7815
|
+
id: string;
|
7816
|
+
description: string;
|
7817
|
+
defaultMessage: string;
|
7818
|
+
}>>;
|
7819
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7820
|
+
id: string;
|
7821
|
+
description: string;
|
7822
|
+
defaultMessage: string;
|
7823
|
+
}>>;
|
7824
|
+
}, "strip", z.ZodTypeAny, {
|
7825
|
+
type?: "text" | "password" | undefined;
|
7826
|
+
maxLength?: number | undefined;
|
7827
|
+
prefix?: TranslationConfig | undefined;
|
7828
|
+
postfix?: TranslationConfig | undefined;
|
7829
|
+
}, {
|
7830
|
+
type?: "text" | "password" | undefined;
|
7831
|
+
maxLength?: number | undefined;
|
7832
|
+
prefix?: {
|
7833
|
+
id: string;
|
7834
|
+
description: string;
|
7835
|
+
defaultMessage: string;
|
7836
|
+
} | undefined;
|
7837
|
+
postfix?: {
|
7838
|
+
id: string;
|
7839
|
+
description: string;
|
7840
|
+
defaultMessage: string;
|
7841
|
+
} | undefined;
|
7842
|
+
}>>>;
|
7843
|
+
}>, "strip", z.ZodTypeAny, {
|
7844
|
+
type: "TEXT";
|
7845
|
+
id: string;
|
7846
|
+
label: TranslationConfig;
|
7847
|
+
parent?: {
|
7848
|
+
$$field: string;
|
7849
|
+
} | undefined;
|
7850
|
+
validation?: {
|
7851
|
+
message: TranslationConfig;
|
7852
|
+
validator: import(".").JSONSchema;
|
7853
|
+
}[] | undefined;
|
7854
|
+
required?: boolean | undefined;
|
7855
|
+
conditionals?: ({
|
7856
|
+
type: "SHOW";
|
7857
|
+
conditional: import(".").JSONSchema;
|
7858
|
+
} | {
|
7859
|
+
type: "ENABLE";
|
7860
|
+
conditional: import(".").JSONSchema;
|
7861
|
+
} | {
|
7862
|
+
type: "DISPLAY_ON_REVIEW";
|
7863
|
+
conditional: import(".").JSONSchema;
|
7864
|
+
})[] | undefined;
|
7865
|
+
secured?: boolean | undefined;
|
7866
|
+
placeholder?: TranslationConfig | undefined;
|
7867
|
+
helperText?: TranslationConfig | undefined;
|
7868
|
+
hideLabel?: boolean | undefined;
|
7869
|
+
uncorrectable?: boolean | undefined;
|
7870
|
+
defaultValue?: string | undefined;
|
7871
|
+
configuration?: {
|
7872
|
+
type?: "text" | "password" | undefined;
|
7873
|
+
maxLength?: number | undefined;
|
7874
|
+
prefix?: TranslationConfig | undefined;
|
7875
|
+
postfix?: TranslationConfig | undefined;
|
7876
|
+
} | undefined;
|
7877
|
+
}, {
|
7878
|
+
type: "TEXT";
|
7879
|
+
id: string;
|
7880
|
+
label: {
|
7881
|
+
id: string;
|
7882
|
+
description: string;
|
7883
|
+
defaultMessage: string;
|
7884
|
+
};
|
7885
|
+
parent?: {
|
7886
|
+
$$field: string;
|
7887
|
+
} | undefined;
|
7888
|
+
validation?: {
|
7889
|
+
message: {
|
7890
|
+
id: string;
|
7891
|
+
description: string;
|
7892
|
+
defaultMessage: string;
|
7893
|
+
};
|
7894
|
+
validator: import(".").JSONSchema;
|
7895
|
+
}[] | undefined;
|
7896
|
+
required?: boolean | undefined;
|
7897
|
+
conditionals?: ({
|
7898
|
+
type: "SHOW";
|
7899
|
+
conditional: import(".").JSONSchema;
|
7900
|
+
} | {
|
7901
|
+
type: "ENABLE";
|
7902
|
+
conditional: import(".").JSONSchema;
|
7903
|
+
} | {
|
7904
|
+
type: "DISPLAY_ON_REVIEW";
|
7905
|
+
conditional: import(".").JSONSchema;
|
7906
|
+
})[] | undefined;
|
7907
|
+
secured?: boolean | undefined;
|
7908
|
+
placeholder?: {
|
7909
|
+
id: string;
|
7910
|
+
description: string;
|
7911
|
+
defaultMessage: string;
|
7912
|
+
} | undefined;
|
7913
|
+
helperText?: {
|
7914
|
+
id: string;
|
7915
|
+
description: string;
|
7916
|
+
defaultMessage: string;
|
7917
|
+
} | undefined;
|
7918
|
+
hideLabel?: boolean | undefined;
|
7919
|
+
uncorrectable?: boolean | undefined;
|
7920
|
+
defaultValue?: string | undefined;
|
7921
|
+
configuration?: {
|
7922
|
+
type?: "text" | "password" | undefined;
|
7923
|
+
maxLength?: number | undefined;
|
7924
|
+
prefix?: {
|
7925
|
+
id: string;
|
7926
|
+
description: string;
|
7927
|
+
defaultMessage: string;
|
7928
|
+
} | undefined;
|
7929
|
+
postfix?: {
|
7930
|
+
id: string;
|
7931
|
+
description: string;
|
7932
|
+
defaultMessage: string;
|
7933
|
+
} | undefined;
|
7934
|
+
} | undefined;
|
7935
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7936
|
+
id: z.ZodString;
|
7937
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7938
|
+
id: string;
|
7939
|
+
description: string;
|
7940
|
+
defaultMessage: string;
|
7941
|
+
}>;
|
7942
|
+
parent: z.ZodOptional<z.ZodObject<{
|
7943
|
+
$$field: z.ZodString;
|
7944
|
+
}, "strip", z.ZodTypeAny, {
|
7945
|
+
$$field: string;
|
7946
|
+
}, {
|
7947
|
+
$$field: string;
|
7948
|
+
}>>;
|
7949
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7950
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7951
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7952
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7953
|
+
id: string;
|
7954
|
+
description: string;
|
7955
|
+
defaultMessage: string;
|
7956
|
+
}>>;
|
7957
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
7958
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
7959
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7960
|
+
id: string;
|
7961
|
+
description: string;
|
7962
|
+
defaultMessage: string;
|
7963
|
+
}>;
|
7964
|
+
}, "strip", z.ZodTypeAny, {
|
7965
|
+
message: TranslationConfig;
|
7966
|
+
validator: import(".").JSONSchema;
|
7967
|
+
}, {
|
7968
|
+
message: {
|
7969
|
+
id: string;
|
7970
|
+
description: string;
|
7971
|
+
defaultMessage: string;
|
7972
|
+
};
|
7973
|
+
validator: import(".").JSONSchema;
|
7974
|
+
}>, "many">>>;
|
7975
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7976
|
+
id: string;
|
7977
|
+
description: string;
|
7978
|
+
defaultMessage: string;
|
7979
|
+
}>>;
|
7980
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7981
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7982
|
+
}, {
|
7983
|
+
type: z.ZodLiteral<"NUMBER">;
|
7984
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
7098
7985
|
configuration: z.ZodOptional<z.ZodObject<{
|
7099
|
-
|
7986
|
+
min: z.ZodOptional<z.ZodNumber>;
|
7987
|
+
max: z.ZodOptional<z.ZodNumber>;
|
7988
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7989
|
+
id: string;
|
7990
|
+
description: string;
|
7991
|
+
defaultMessage: string;
|
7992
|
+
}>>;
|
7993
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7994
|
+
id: string;
|
7995
|
+
description: string;
|
7996
|
+
defaultMessage: string;
|
7997
|
+
}>>;
|
7100
7998
|
}, "strip", z.ZodTypeAny, {
|
7101
|
-
|
7999
|
+
prefix?: TranslationConfig | undefined;
|
8000
|
+
postfix?: TranslationConfig | undefined;
|
8001
|
+
min?: number | undefined;
|
8002
|
+
max?: number | undefined;
|
7102
8003
|
}, {
|
7103
|
-
|
8004
|
+
prefix?: {
|
8005
|
+
id: string;
|
8006
|
+
description: string;
|
8007
|
+
defaultMessage: string;
|
8008
|
+
} | undefined;
|
8009
|
+
postfix?: {
|
8010
|
+
id: string;
|
8011
|
+
description: string;
|
8012
|
+
defaultMessage: string;
|
8013
|
+
} | undefined;
|
8014
|
+
min?: number | undefined;
|
8015
|
+
max?: number | undefined;
|
7104
8016
|
}>>;
|
7105
8017
|
}>, "strip", z.ZodTypeAny, {
|
7106
|
-
type: "
|
8018
|
+
type: "NUMBER";
|
7107
8019
|
id: string;
|
7108
8020
|
label: TranslationConfig;
|
7109
8021
|
parent?: {
|
@@ -7129,40 +8041,15 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7129
8041
|
helperText?: TranslationConfig | undefined;
|
7130
8042
|
hideLabel?: boolean | undefined;
|
7131
8043
|
uncorrectable?: boolean | undefined;
|
7132
|
-
defaultValue?:
|
7133
|
-
country: string;
|
7134
|
-
district: string;
|
7135
|
-
addressType: "DOMESTIC";
|
7136
|
-
province: string;
|
7137
|
-
urbanOrRural: "URBAN";
|
7138
|
-
number?: string | undefined;
|
7139
|
-
town?: string | undefined;
|
7140
|
-
residentialArea?: string | undefined;
|
7141
|
-
street?: string | undefined;
|
7142
|
-
zipCode?: string | undefined;
|
7143
|
-
} | {
|
7144
|
-
country: string;
|
7145
|
-
district: string;
|
7146
|
-
addressType: "DOMESTIC";
|
7147
|
-
province: string;
|
7148
|
-
urbanOrRural: "RURAL";
|
7149
|
-
village?: string | undefined;
|
7150
|
-
} | {
|
7151
|
-
country: string;
|
7152
|
-
state: string;
|
7153
|
-
addressType: "INTERNATIONAL";
|
7154
|
-
district2: string;
|
7155
|
-
cityOrTown?: string | undefined;
|
7156
|
-
addressLine1?: string | undefined;
|
7157
|
-
addressLine2?: string | undefined;
|
7158
|
-
addressLine3?: string | undefined;
|
7159
|
-
postcodeOrZip?: string | undefined;
|
7160
|
-
} | undefined;
|
8044
|
+
defaultValue?: number | undefined;
|
7161
8045
|
configuration?: {
|
7162
|
-
|
8046
|
+
prefix?: TranslationConfig | undefined;
|
8047
|
+
postfix?: TranslationConfig | undefined;
|
8048
|
+
min?: number | undefined;
|
8049
|
+
max?: number | undefined;
|
7163
8050
|
} | undefined;
|
7164
8051
|
}, {
|
7165
|
-
type: "
|
8052
|
+
type: "NUMBER";
|
7166
8053
|
id: string;
|
7167
8054
|
label: {
|
7168
8055
|
id: string;
|
@@ -7204,37 +8091,20 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7204
8091
|
} | undefined;
|
7205
8092
|
hideLabel?: boolean | undefined;
|
7206
8093
|
uncorrectable?: boolean | undefined;
|
7207
|
-
defaultValue?:
|
7208
|
-
country: string;
|
7209
|
-
district: string;
|
7210
|
-
addressType: "DOMESTIC";
|
7211
|
-
province: string;
|
7212
|
-
urbanOrRural: "URBAN";
|
7213
|
-
number?: string | undefined;
|
7214
|
-
town?: string | undefined;
|
7215
|
-
residentialArea?: string | undefined;
|
7216
|
-
street?: string | undefined;
|
7217
|
-
zipCode?: string | undefined;
|
7218
|
-
} | {
|
7219
|
-
country: string;
|
7220
|
-
district: string;
|
7221
|
-
addressType: "DOMESTIC";
|
7222
|
-
province: string;
|
7223
|
-
urbanOrRural: "RURAL";
|
7224
|
-
village?: string | undefined;
|
7225
|
-
} | {
|
7226
|
-
country: string;
|
7227
|
-
state: string;
|
7228
|
-
addressType: "INTERNATIONAL";
|
7229
|
-
district2: string;
|
7230
|
-
cityOrTown?: string | undefined;
|
7231
|
-
addressLine1?: string | undefined;
|
7232
|
-
addressLine2?: string | undefined;
|
7233
|
-
addressLine3?: string | undefined;
|
7234
|
-
postcodeOrZip?: string | undefined;
|
7235
|
-
} | undefined;
|
8094
|
+
defaultValue?: number | undefined;
|
7236
8095
|
configuration?: {
|
7237
|
-
|
8096
|
+
prefix?: {
|
8097
|
+
id: string;
|
8098
|
+
description: string;
|
8099
|
+
defaultMessage: string;
|
8100
|
+
} | undefined;
|
8101
|
+
postfix?: {
|
8102
|
+
id: string;
|
8103
|
+
description: string;
|
8104
|
+
defaultMessage: string;
|
8105
|
+
} | undefined;
|
8106
|
+
min?: number | undefined;
|
8107
|
+
max?: number | undefined;
|
7238
8108
|
} | undefined;
|
7239
8109
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7240
8110
|
id: z.ZodString;
|
@@ -7284,11 +8154,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7284
8154
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7285
8155
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7286
8156
|
}, {
|
7287
|
-
type: z.ZodLiteral<"
|
8157
|
+
type: z.ZodLiteral<"TEXTAREA">;
|
7288
8158
|
defaultValue: z.ZodOptional<z.ZodString>;
|
7289
8159
|
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7290
8160
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
7291
|
-
|
8161
|
+
rows: z.ZodOptional<z.ZodNumber>;
|
8162
|
+
cols: z.ZodOptional<z.ZodNumber>;
|
7292
8163
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7293
8164
|
id: string;
|
7294
8165
|
description: string;
|
@@ -7300,12 +8171,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7300
8171
|
defaultMessage: string;
|
7301
8172
|
}>>;
|
7302
8173
|
}, "strip", z.ZodTypeAny, {
|
7303
|
-
type?: "text" | "password" | undefined;
|
7304
8174
|
maxLength?: number | undefined;
|
7305
8175
|
prefix?: TranslationConfig | undefined;
|
7306
8176
|
postfix?: TranslationConfig | undefined;
|
8177
|
+
rows?: number | undefined;
|
8178
|
+
cols?: number | undefined;
|
7307
8179
|
}, {
|
7308
|
-
type?: "text" | "password" | undefined;
|
7309
8180
|
maxLength?: number | undefined;
|
7310
8181
|
prefix?: {
|
7311
8182
|
id: string;
|
@@ -7317,9 +8188,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7317
8188
|
description: string;
|
7318
8189
|
defaultMessage: string;
|
7319
8190
|
} | undefined;
|
8191
|
+
rows?: number | undefined;
|
8192
|
+
cols?: number | undefined;
|
7320
8193
|
}>>>;
|
7321
8194
|
}>, "strip", z.ZodTypeAny, {
|
7322
|
-
type: "
|
8195
|
+
type: "TEXTAREA";
|
7323
8196
|
id: string;
|
7324
8197
|
label: TranslationConfig;
|
7325
8198
|
parent?: {
|
@@ -7347,13 +8220,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7347
8220
|
uncorrectable?: boolean | undefined;
|
7348
8221
|
defaultValue?: string | undefined;
|
7349
8222
|
configuration?: {
|
7350
|
-
type?: "text" | "password" | undefined;
|
7351
8223
|
maxLength?: number | undefined;
|
7352
8224
|
prefix?: TranslationConfig | undefined;
|
7353
8225
|
postfix?: TranslationConfig | undefined;
|
8226
|
+
rows?: number | undefined;
|
8227
|
+
cols?: number | undefined;
|
7354
8228
|
} | undefined;
|
7355
8229
|
}, {
|
7356
|
-
type: "
|
8230
|
+
type: "TEXTAREA";
|
7357
8231
|
id: string;
|
7358
8232
|
label: {
|
7359
8233
|
id: string;
|
@@ -7397,7 +8271,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7397
8271
|
uncorrectable?: boolean | undefined;
|
7398
8272
|
defaultValue?: string | undefined;
|
7399
8273
|
configuration?: {
|
7400
|
-
type?: "text" | "password" | undefined;
|
7401
8274
|
maxLength?: number | undefined;
|
7402
8275
|
prefix?: {
|
7403
8276
|
id: string;
|
@@ -7409,6 +8282,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7409
8282
|
description: string;
|
7410
8283
|
defaultMessage: string;
|
7411
8284
|
} | undefined;
|
8285
|
+
rows?: number | undefined;
|
8286
|
+
cols?: number | undefined;
|
7412
8287
|
} | undefined;
|
7413
8288
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7414
8289
|
id: z.ZodString;
|
@@ -7458,42 +8333,25 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7458
8333
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7459
8334
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7460
8335
|
}, {
|
7461
|
-
type: z.ZodLiteral<"
|
7462
|
-
defaultValue: z.ZodOptional<z.
|
8336
|
+
type: z.ZodLiteral<"DATE">;
|
8337
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
7463
8338
|
configuration: z.ZodOptional<z.ZodObject<{
|
7464
|
-
|
7465
|
-
max: z.ZodOptional<z.ZodNumber>;
|
7466
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7467
|
-
id: string;
|
7468
|
-
description: string;
|
7469
|
-
defaultMessage: string;
|
7470
|
-
}>>;
|
7471
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8339
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7472
8340
|
id: string;
|
7473
8341
|
description: string;
|
7474
8342
|
defaultMessage: string;
|
7475
8343
|
}>>;
|
7476
8344
|
}, "strip", z.ZodTypeAny, {
|
7477
|
-
|
7478
|
-
postfix?: TranslationConfig | undefined;
|
7479
|
-
min?: number | undefined;
|
7480
|
-
max?: number | undefined;
|
8345
|
+
notice?: TranslationConfig | undefined;
|
7481
8346
|
}, {
|
7482
|
-
|
7483
|
-
id: string;
|
7484
|
-
description: string;
|
7485
|
-
defaultMessage: string;
|
7486
|
-
} | undefined;
|
7487
|
-
postfix?: {
|
8347
|
+
notice?: {
|
7488
8348
|
id: string;
|
7489
8349
|
description: string;
|
7490
8350
|
defaultMessage: string;
|
7491
8351
|
} | undefined;
|
7492
|
-
min?: number | undefined;
|
7493
|
-
max?: number | undefined;
|
7494
8352
|
}>>;
|
7495
8353
|
}>, "strip", z.ZodTypeAny, {
|
7496
|
-
type: "
|
8354
|
+
type: "DATE";
|
7497
8355
|
id: string;
|
7498
8356
|
label: TranslationConfig;
|
7499
8357
|
parent?: {
|
@@ -7519,15 +8377,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7519
8377
|
helperText?: TranslationConfig | undefined;
|
7520
8378
|
hideLabel?: boolean | undefined;
|
7521
8379
|
uncorrectable?: boolean | undefined;
|
7522
|
-
defaultValue?:
|
8380
|
+
defaultValue?: string | undefined;
|
7523
8381
|
configuration?: {
|
7524
|
-
|
7525
|
-
postfix?: TranslationConfig | undefined;
|
7526
|
-
min?: number | undefined;
|
7527
|
-
max?: number | undefined;
|
8382
|
+
notice?: TranslationConfig | undefined;
|
7528
8383
|
} | undefined;
|
7529
8384
|
}, {
|
7530
|
-
type: "
|
8385
|
+
type: "DATE";
|
7531
8386
|
id: string;
|
7532
8387
|
label: {
|
7533
8388
|
id: string;
|
@@ -7569,20 +8424,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7569
8424
|
} | undefined;
|
7570
8425
|
hideLabel?: boolean | undefined;
|
7571
8426
|
uncorrectable?: boolean | undefined;
|
7572
|
-
defaultValue?:
|
8427
|
+
defaultValue?: string | undefined;
|
7573
8428
|
configuration?: {
|
7574
|
-
|
7575
|
-
id: string;
|
7576
|
-
description: string;
|
7577
|
-
defaultMessage: string;
|
7578
|
-
} | undefined;
|
7579
|
-
postfix?: {
|
8429
|
+
notice?: {
|
7580
8430
|
id: string;
|
7581
8431
|
description: string;
|
7582
8432
|
defaultMessage: string;
|
7583
8433
|
} | undefined;
|
7584
|
-
min?: number | undefined;
|
7585
|
-
max?: number | undefined;
|
7586
8434
|
} | undefined;
|
7587
8435
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7588
8436
|
id: z.ZodString;
|
@@ -7632,45 +8480,25 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7632
8480
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7633
8481
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7634
8482
|
}, {
|
7635
|
-
type: z.ZodLiteral<"
|
8483
|
+
type: z.ZodLiteral<"TIME">;
|
7636
8484
|
defaultValue: z.ZodOptional<z.ZodString>;
|
7637
|
-
configuration: z.ZodOptional<z.
|
7638
|
-
|
7639
|
-
rows: z.ZodOptional<z.ZodNumber>;
|
7640
|
-
cols: z.ZodOptional<z.ZodNumber>;
|
7641
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7642
|
-
id: string;
|
7643
|
-
description: string;
|
7644
|
-
defaultMessage: string;
|
7645
|
-
}>>;
|
7646
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8485
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
8486
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7647
8487
|
id: string;
|
7648
8488
|
description: string;
|
7649
8489
|
defaultMessage: string;
|
7650
8490
|
}>>;
|
7651
8491
|
}, "strip", z.ZodTypeAny, {
|
7652
|
-
|
7653
|
-
prefix?: TranslationConfig | undefined;
|
7654
|
-
postfix?: TranslationConfig | undefined;
|
7655
|
-
rows?: number | undefined;
|
7656
|
-
cols?: number | undefined;
|
8492
|
+
notice?: TranslationConfig | undefined;
|
7657
8493
|
}, {
|
7658
|
-
|
7659
|
-
prefix?: {
|
7660
|
-
id: string;
|
7661
|
-
description: string;
|
7662
|
-
defaultMessage: string;
|
7663
|
-
} | undefined;
|
7664
|
-
postfix?: {
|
8494
|
+
notice?: {
|
7665
8495
|
id: string;
|
7666
8496
|
description: string;
|
7667
8497
|
defaultMessage: string;
|
7668
8498
|
} | undefined;
|
7669
|
-
|
7670
|
-
cols?: number | undefined;
|
7671
|
-
}>>>;
|
8499
|
+
}>>;
|
7672
8500
|
}>, "strip", z.ZodTypeAny, {
|
7673
|
-
type: "
|
8501
|
+
type: "TIME";
|
7674
8502
|
id: string;
|
7675
8503
|
label: TranslationConfig;
|
7676
8504
|
parent?: {
|
@@ -7698,14 +8526,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7698
8526
|
uncorrectable?: boolean | undefined;
|
7699
8527
|
defaultValue?: string | undefined;
|
7700
8528
|
configuration?: {
|
7701
|
-
|
7702
|
-
prefix?: TranslationConfig | undefined;
|
7703
|
-
postfix?: TranslationConfig | undefined;
|
7704
|
-
rows?: number | undefined;
|
7705
|
-
cols?: number | undefined;
|
8529
|
+
notice?: TranslationConfig | undefined;
|
7706
8530
|
} | undefined;
|
7707
8531
|
}, {
|
7708
|
-
type: "
|
8532
|
+
type: "TIME";
|
7709
8533
|
id: string;
|
7710
8534
|
label: {
|
7711
8535
|
id: string;
|
@@ -7749,19 +8573,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7749
8573
|
uncorrectable?: boolean | undefined;
|
7750
8574
|
defaultValue?: string | undefined;
|
7751
8575
|
configuration?: {
|
7752
|
-
|
7753
|
-
prefix?: {
|
7754
|
-
id: string;
|
7755
|
-
description: string;
|
7756
|
-
defaultMessage: string;
|
7757
|
-
} | undefined;
|
7758
|
-
postfix?: {
|
8576
|
+
notice?: {
|
7759
8577
|
id: string;
|
7760
8578
|
description: string;
|
7761
8579
|
defaultMessage: string;
|
7762
8580
|
} | undefined;
|
7763
|
-
rows?: number | undefined;
|
7764
|
-
cols?: number | undefined;
|
7765
8581
|
} | undefined;
|
7766
8582
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7767
8583
|
id: z.ZodString;
|
@@ -7811,8 +8627,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7811
8627
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7812
8628
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7813
8629
|
}, {
|
7814
|
-
type: z.ZodLiteral<"
|
7815
|
-
defaultValue: z.ZodOptional<z.
|
8630
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
8631
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
8632
|
+
start: z.ZodString;
|
8633
|
+
end: z.ZodString;
|
8634
|
+
}, "strip", z.ZodTypeAny, {
|
8635
|
+
start: string;
|
8636
|
+
end: string;
|
8637
|
+
}, {
|
8638
|
+
start: string;
|
8639
|
+
end: string;
|
8640
|
+
}>, z.ZodString]>>;
|
7816
8641
|
configuration: z.ZodOptional<z.ZodObject<{
|
7817
8642
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7818
8643
|
id: string;
|
@@ -7829,7 +8654,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7829
8654
|
} | undefined;
|
7830
8655
|
}>>;
|
7831
8656
|
}>, "strip", z.ZodTypeAny, {
|
7832
|
-
type: "
|
8657
|
+
type: "DATE_RANGE";
|
7833
8658
|
id: string;
|
7834
8659
|
label: TranslationConfig;
|
7835
8660
|
parent?: {
|
@@ -7855,12 +8680,15 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7855
8680
|
helperText?: TranslationConfig | undefined;
|
7856
8681
|
hideLabel?: boolean | undefined;
|
7857
8682
|
uncorrectable?: boolean | undefined;
|
7858
|
-
defaultValue?: string |
|
8683
|
+
defaultValue?: string | {
|
8684
|
+
start: string;
|
8685
|
+
end: string;
|
8686
|
+
} | undefined;
|
7859
8687
|
configuration?: {
|
7860
8688
|
notice?: TranslationConfig | undefined;
|
7861
8689
|
} | undefined;
|
7862
8690
|
}, {
|
7863
|
-
type: "
|
8691
|
+
type: "DATE_RANGE";
|
7864
8692
|
id: string;
|
7865
8693
|
label: {
|
7866
8694
|
id: string;
|
@@ -7902,7 +8730,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7902
8730
|
} | undefined;
|
7903
8731
|
hideLabel?: boolean | undefined;
|
7904
8732
|
uncorrectable?: boolean | undefined;
|
7905
|
-
defaultValue?: string |
|
8733
|
+
defaultValue?: string | {
|
8734
|
+
start: string;
|
8735
|
+
end: string;
|
8736
|
+
} | undefined;
|
7906
8737
|
configuration?: {
|
7907
8738
|
notice?: {
|
7908
8739
|
id: string;
|
@@ -7958,26 +8789,33 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7958
8789
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7959
8790
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7960
8791
|
}, {
|
7961
|
-
type: z.ZodLiteral<"
|
7962
|
-
defaultValue: z.ZodOptional<z.
|
7963
|
-
|
7964
|
-
|
8792
|
+
type: z.ZodLiteral<"SELECT_DATE_RANGE">;
|
8793
|
+
defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
|
8794
|
+
options: z.ZodArray<z.ZodObject<{
|
8795
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
8796
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7965
8797
|
id: string;
|
7966
8798
|
description: string;
|
7967
8799
|
defaultMessage: string;
|
7968
|
-
}
|
8800
|
+
}>;
|
7969
8801
|
}, "strip", z.ZodTypeAny, {
|
7970
|
-
|
8802
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8803
|
+
label: TranslationConfig;
|
7971
8804
|
}, {
|
7972
|
-
|
8805
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8806
|
+
label: {
|
7973
8807
|
id: string;
|
7974
8808
|
description: string;
|
7975
8809
|
defaultMessage: string;
|
7976
|
-
}
|
7977
|
-
}
|
8810
|
+
};
|
8811
|
+
}>, "many">;
|
7978
8812
|
}>, "strip", z.ZodTypeAny, {
|
7979
|
-
type: "
|
8813
|
+
type: "SELECT_DATE_RANGE";
|
7980
8814
|
id: string;
|
8815
|
+
options: {
|
8816
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8817
|
+
label: TranslationConfig;
|
8818
|
+
}[];
|
7981
8819
|
label: TranslationConfig;
|
7982
8820
|
parent?: {
|
7983
8821
|
$$field: string;
|
@@ -8002,13 +8840,18 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8002
8840
|
helperText?: TranslationConfig | undefined;
|
8003
8841
|
hideLabel?: boolean | undefined;
|
8004
8842
|
uncorrectable?: boolean | undefined;
|
8005
|
-
defaultValue?:
|
8006
|
-
configuration?: {
|
8007
|
-
notice?: TranslationConfig | undefined;
|
8008
|
-
} | undefined;
|
8843
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
8009
8844
|
}, {
|
8010
|
-
type: "
|
8845
|
+
type: "SELECT_DATE_RANGE";
|
8011
8846
|
id: string;
|
8847
|
+
options: {
|
8848
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8849
|
+
label: {
|
8850
|
+
id: string;
|
8851
|
+
description: string;
|
8852
|
+
defaultMessage: string;
|
8853
|
+
};
|
8854
|
+
}[];
|
8012
8855
|
label: {
|
8013
8856
|
id: string;
|
8014
8857
|
description: string;
|
@@ -8049,14 +8892,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8049
8892
|
} | undefined;
|
8050
8893
|
hideLabel?: boolean | undefined;
|
8051
8894
|
uncorrectable?: boolean | undefined;
|
8052
|
-
defaultValue?:
|
8053
|
-
configuration?: {
|
8054
|
-
notice?: {
|
8055
|
-
id: string;
|
8056
|
-
description: string;
|
8057
|
-
defaultMessage: string;
|
8058
|
-
} | undefined;
|
8059
|
-
} | undefined;
|
8895
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
8060
8896
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8061
8897
|
id: z.ZodString;
|
8062
8898
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -8105,36 +8941,40 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8105
8941
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8106
8942
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8107
8943
|
}, {
|
8108
|
-
type: z.ZodLiteral<"
|
8109
|
-
defaultValue: z.ZodOptional<z.
|
8110
|
-
|
8111
|
-
|
8112
|
-
|
8113
|
-
|
8114
|
-
|
8115
|
-
|
8116
|
-
|
8117
|
-
|
8118
|
-
|
8119
|
-
|
8120
|
-
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8121
|
-
id: string;
|
8122
|
-
description: string;
|
8123
|
-
defaultMessage: string;
|
8944
|
+
type: z.ZodLiteral<"PARAGRAPH">;
|
8945
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
8946
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
8947
|
+
styles: z.ZodOptional<z.ZodObject<{
|
8948
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
8949
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
8950
|
+
}, "strip", z.ZodTypeAny, {
|
8951
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8952
|
+
hint?: boolean | undefined;
|
8953
|
+
}, {
|
8954
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8955
|
+
hint?: boolean | undefined;
|
8124
8956
|
}>>;
|
8125
8957
|
}, "strip", z.ZodTypeAny, {
|
8126
|
-
|
8958
|
+
styles?: {
|
8959
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8960
|
+
hint?: boolean | undefined;
|
8961
|
+
} | undefined;
|
8127
8962
|
}, {
|
8128
|
-
|
8129
|
-
|
8130
|
-
|
8131
|
-
defaultMessage: string;
|
8963
|
+
styles?: {
|
8964
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8965
|
+
hint?: boolean | undefined;
|
8132
8966
|
} | undefined;
|
8133
8967
|
}>>;
|
8134
8968
|
}>, "strip", z.ZodTypeAny, {
|
8135
|
-
type: "
|
8969
|
+
type: "PARAGRAPH";
|
8136
8970
|
id: string;
|
8137
8971
|
label: TranslationConfig;
|
8972
|
+
configuration: {
|
8973
|
+
styles?: {
|
8974
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8975
|
+
hint?: boolean | undefined;
|
8976
|
+
} | undefined;
|
8977
|
+
};
|
8138
8978
|
parent?: {
|
8139
8979
|
$$field: string;
|
8140
8980
|
} | undefined;
|
@@ -8158,15 +8998,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8158
8998
|
helperText?: TranslationConfig | undefined;
|
8159
8999
|
hideLabel?: boolean | undefined;
|
8160
9000
|
uncorrectable?: boolean | undefined;
|
8161
|
-
defaultValue?: string |
|
8162
|
-
start: string;
|
8163
|
-
end: string;
|
8164
|
-
} | undefined;
|
8165
|
-
configuration?: {
|
8166
|
-
notice?: TranslationConfig | undefined;
|
8167
|
-
} | undefined;
|
9001
|
+
defaultValue?: string | undefined;
|
8168
9002
|
}, {
|
8169
|
-
type: "
|
9003
|
+
type: "PARAGRAPH";
|
8170
9004
|
id: string;
|
8171
9005
|
label: {
|
8172
9006
|
id: string;
|
@@ -8208,15 +9042,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8208
9042
|
} | undefined;
|
8209
9043
|
hideLabel?: boolean | undefined;
|
8210
9044
|
uncorrectable?: boolean | undefined;
|
8211
|
-
defaultValue?: string |
|
8212
|
-
start: string;
|
8213
|
-
end: string;
|
8214
|
-
} | undefined;
|
9045
|
+
defaultValue?: string | undefined;
|
8215
9046
|
configuration?: {
|
8216
|
-
|
8217
|
-
|
8218
|
-
|
8219
|
-
defaultMessage: string;
|
9047
|
+
styles?: {
|
9048
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9049
|
+
hint?: boolean | undefined;
|
8220
9050
|
} | undefined;
|
8221
9051
|
} | undefined;
|
8222
9052
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -8267,31 +9097,48 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8267
9097
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8268
9098
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8269
9099
|
}, {
|
8270
|
-
type: z.ZodLiteral<"
|
8271
|
-
defaultValue: z.ZodOptional<z.
|
9100
|
+
type: z.ZodLiteral<"RADIO_GROUP">;
|
9101
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
8272
9102
|
options: z.ZodArray<z.ZodObject<{
|
8273
|
-
value: z.
|
9103
|
+
value: z.ZodString;
|
8274
9104
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8275
9105
|
id: string;
|
8276
9106
|
description: string;
|
8277
9107
|
defaultMessage: string;
|
8278
9108
|
}>;
|
8279
9109
|
}, "strip", z.ZodTypeAny, {
|
8280
|
-
value:
|
9110
|
+
value: string;
|
8281
9111
|
label: TranslationConfig;
|
8282
9112
|
}, {
|
8283
|
-
value:
|
9113
|
+
value: string;
|
8284
9114
|
label: {
|
8285
9115
|
id: string;
|
8286
9116
|
description: string;
|
8287
9117
|
defaultMessage: string;
|
8288
9118
|
};
|
8289
9119
|
}>, "many">;
|
9120
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
9121
|
+
styles: z.ZodOptional<z.ZodObject<{
|
9122
|
+
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
9123
|
+
}, "strip", z.ZodTypeAny, {
|
9124
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9125
|
+
}, {
|
9126
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9127
|
+
}>>;
|
9128
|
+
}, "strip", z.ZodTypeAny, {
|
9129
|
+
styles?: {
|
9130
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9131
|
+
} | undefined;
|
9132
|
+
}, {
|
9133
|
+
styles?: {
|
9134
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9135
|
+
} | undefined;
|
9136
|
+
}>>;
|
8290
9137
|
}>, "strip", z.ZodTypeAny, {
|
8291
|
-
type: "
|
9138
|
+
type: "RADIO_GROUP";
|
8292
9139
|
id: string;
|
8293
9140
|
options: {
|
8294
|
-
value:
|
9141
|
+
value: string;
|
8295
9142
|
label: TranslationConfig;
|
8296
9143
|
}[];
|
8297
9144
|
label: TranslationConfig;
|
@@ -8318,12 +9165,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8318
9165
|
helperText?: TranslationConfig | undefined;
|
8319
9166
|
hideLabel?: boolean | undefined;
|
8320
9167
|
uncorrectable?: boolean | undefined;
|
8321
|
-
defaultValue?:
|
9168
|
+
defaultValue?: string | undefined;
|
9169
|
+
configuration?: {
|
9170
|
+
styles?: {
|
9171
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9172
|
+
} | undefined;
|
9173
|
+
} | undefined;
|
8322
9174
|
}, {
|
8323
|
-
type: "
|
9175
|
+
type: "RADIO_GROUP";
|
8324
9176
|
id: string;
|
8325
9177
|
options: {
|
8326
|
-
value:
|
9178
|
+
value: string;
|
8327
9179
|
label: {
|
8328
9180
|
id: string;
|
8329
9181
|
description: string;
|
@@ -8370,7 +9222,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8370
9222
|
} | undefined;
|
8371
9223
|
hideLabel?: boolean | undefined;
|
8372
9224
|
uncorrectable?: boolean | undefined;
|
8373
|
-
defaultValue?:
|
9225
|
+
defaultValue?: string | undefined;
|
9226
|
+
configuration?: {
|
9227
|
+
styles?: {
|
9228
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
9229
|
+
} | undefined;
|
9230
|
+
} | undefined;
|
8374
9231
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8375
9232
|
id: z.ZodString;
|
8376
9233
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -8419,40 +9276,40 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8419
9276
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8420
9277
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8421
9278
|
}, {
|
8422
|
-
type: z.ZodLiteral<"
|
9279
|
+
type: z.ZodLiteral<"BULLET_LIST">;
|
8423
9280
|
defaultValue: z.ZodOptional<z.ZodString>;
|
9281
|
+
items: z.ZodArray<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9282
|
+
id: string;
|
9283
|
+
description: string;
|
9284
|
+
defaultMessage: string;
|
9285
|
+
}>, "many">;
|
8424
9286
|
configuration: z.ZodDefault<z.ZodObject<{
|
8425
9287
|
styles: z.ZodOptional<z.ZodObject<{
|
8426
9288
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
8427
|
-
hint: z.ZodOptional<z.ZodBoolean>;
|
8428
9289
|
}, "strip", z.ZodTypeAny, {
|
8429
9290
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8430
|
-
hint?: boolean | undefined;
|
8431
9291
|
}, {
|
8432
9292
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8433
|
-
hint?: boolean | undefined;
|
8434
9293
|
}>>;
|
8435
9294
|
}, "strip", z.ZodTypeAny, {
|
8436
9295
|
styles?: {
|
8437
9296
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8438
|
-
hint?: boolean | undefined;
|
8439
9297
|
} | undefined;
|
8440
9298
|
}, {
|
8441
9299
|
styles?: {
|
8442
9300
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8443
|
-
hint?: boolean | undefined;
|
8444
9301
|
} | undefined;
|
8445
9302
|
}>>;
|
8446
9303
|
}>, "strip", z.ZodTypeAny, {
|
8447
|
-
type: "
|
9304
|
+
type: "BULLET_LIST";
|
8448
9305
|
id: string;
|
8449
9306
|
label: TranslationConfig;
|
8450
9307
|
configuration: {
|
8451
9308
|
styles?: {
|
8452
9309
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8453
|
-
hint?: boolean | undefined;
|
8454
9310
|
} | undefined;
|
8455
9311
|
};
|
9312
|
+
items: TranslationConfig[];
|
8456
9313
|
parent?: {
|
8457
9314
|
$$field: string;
|
8458
9315
|
} | undefined;
|
@@ -8478,13 +9335,18 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8478
9335
|
uncorrectable?: boolean | undefined;
|
8479
9336
|
defaultValue?: string | undefined;
|
8480
9337
|
}, {
|
8481
|
-
type: "
|
9338
|
+
type: "BULLET_LIST";
|
8482
9339
|
id: string;
|
8483
9340
|
label: {
|
8484
9341
|
id: string;
|
8485
9342
|
description: string;
|
8486
9343
|
defaultMessage: string;
|
8487
9344
|
};
|
9345
|
+
items: {
|
9346
|
+
id: string;
|
9347
|
+
description: string;
|
9348
|
+
defaultMessage: string;
|
9349
|
+
}[];
|
8488
9350
|
parent?: {
|
8489
9351
|
$$field: string;
|
8490
9352
|
} | undefined;
|
@@ -8524,7 +9386,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8524
9386
|
configuration?: {
|
8525
9387
|
styles?: {
|
8526
9388
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8527
|
-
hint?: boolean | undefined;
|
8528
9389
|
} | undefined;
|
8529
9390
|
} | undefined;
|
8530
9391
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -8575,50 +9436,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8575
9436
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8576
9437
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8577
9438
|
}, {
|
8578
|
-
type: z.ZodLiteral<"
|
9439
|
+
type: z.ZodLiteral<"PAGE_HEADER">;
|
8579
9440
|
defaultValue: z.ZodOptional<z.ZodString>;
|
8580
|
-
options: z.ZodArray<z.ZodObject<{
|
8581
|
-
value: z.ZodString;
|
8582
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8583
|
-
id: string;
|
8584
|
-
description: string;
|
8585
|
-
defaultMessage: string;
|
8586
|
-
}>;
|
8587
|
-
}, "strip", z.ZodTypeAny, {
|
8588
|
-
value: string;
|
8589
|
-
label: TranslationConfig;
|
8590
|
-
}, {
|
8591
|
-
value: string;
|
8592
|
-
label: {
|
8593
|
-
id: string;
|
8594
|
-
description: string;
|
8595
|
-
defaultMessage: string;
|
8596
|
-
};
|
8597
|
-
}>, "many">;
|
8598
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
8599
|
-
styles: z.ZodOptional<z.ZodObject<{
|
8600
|
-
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
8601
|
-
}, "strip", z.ZodTypeAny, {
|
8602
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8603
|
-
}, {
|
8604
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8605
|
-
}>>;
|
8606
|
-
}, "strip", z.ZodTypeAny, {
|
8607
|
-
styles?: {
|
8608
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8609
|
-
} | undefined;
|
8610
|
-
}, {
|
8611
|
-
styles?: {
|
8612
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8613
|
-
} | undefined;
|
8614
|
-
}>>;
|
8615
9441
|
}>, "strip", z.ZodTypeAny, {
|
8616
|
-
type: "
|
9442
|
+
type: "PAGE_HEADER";
|
8617
9443
|
id: string;
|
8618
|
-
options: {
|
8619
|
-
value: string;
|
8620
|
-
label: TranslationConfig;
|
8621
|
-
}[];
|
8622
9444
|
label: TranslationConfig;
|
8623
9445
|
parent?: {
|
8624
9446
|
$$field: string;
|
@@ -8644,22 +9466,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8644
9466
|
hideLabel?: boolean | undefined;
|
8645
9467
|
uncorrectable?: boolean | undefined;
|
8646
9468
|
defaultValue?: string | undefined;
|
8647
|
-
configuration?: {
|
8648
|
-
styles?: {
|
8649
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8650
|
-
} | undefined;
|
8651
|
-
} | undefined;
|
8652
9469
|
}, {
|
8653
|
-
type: "
|
9470
|
+
type: "PAGE_HEADER";
|
8654
9471
|
id: string;
|
8655
|
-
options: {
|
8656
|
-
value: string;
|
8657
|
-
label: {
|
8658
|
-
id: string;
|
8659
|
-
description: string;
|
8660
|
-
defaultMessage: string;
|
8661
|
-
};
|
8662
|
-
}[];
|
8663
9472
|
label: {
|
8664
9473
|
id: string;
|
8665
9474
|
description: string;
|
@@ -8701,11 +9510,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8701
9510
|
hideLabel?: boolean | undefined;
|
8702
9511
|
uncorrectable?: boolean | undefined;
|
8703
9512
|
defaultValue?: string | undefined;
|
8704
|
-
configuration?: {
|
8705
|
-
styles?: {
|
8706
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
8707
|
-
} | undefined;
|
8708
|
-
} | undefined;
|
8709
9513
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8710
9514
|
id: z.ZodString;
|
8711
9515
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -8754,40 +9558,34 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8754
9558
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8755
9559
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8756
9560
|
}, {
|
8757
|
-
type: z.ZodLiteral<"
|
9561
|
+
type: z.ZodLiteral<"SELECT">;
|
8758
9562
|
defaultValue: z.ZodOptional<z.ZodString>;
|
8759
|
-
|
8760
|
-
|
8761
|
-
|
8762
|
-
|
8763
|
-
|
8764
|
-
|
8765
|
-
|
8766
|
-
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
8767
|
-
}, "strip", z.ZodTypeAny, {
|
8768
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8769
|
-
}, {
|
8770
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8771
|
-
}>>;
|
9563
|
+
options: z.ZodArray<z.ZodObject<{
|
9564
|
+
value: z.ZodString;
|
9565
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9566
|
+
id: string;
|
9567
|
+
description: string;
|
9568
|
+
defaultMessage: string;
|
9569
|
+
}>;
|
8772
9570
|
}, "strip", z.ZodTypeAny, {
|
8773
|
-
|
8774
|
-
|
8775
|
-
} | undefined;
|
9571
|
+
value: string;
|
9572
|
+
label: TranslationConfig;
|
8776
9573
|
}, {
|
8777
|
-
|
8778
|
-
|
8779
|
-
|
8780
|
-
|
9574
|
+
value: string;
|
9575
|
+
label: {
|
9576
|
+
id: string;
|
9577
|
+
description: string;
|
9578
|
+
defaultMessage: string;
|
9579
|
+
};
|
9580
|
+
}>, "many">;
|
8781
9581
|
}>, "strip", z.ZodTypeAny, {
|
8782
|
-
type: "
|
9582
|
+
type: "SELECT";
|
8783
9583
|
id: string;
|
9584
|
+
options: {
|
9585
|
+
value: string;
|
9586
|
+
label: TranslationConfig;
|
9587
|
+
}[];
|
8784
9588
|
label: TranslationConfig;
|
8785
|
-
configuration: {
|
8786
|
-
styles?: {
|
8787
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8788
|
-
} | undefined;
|
8789
|
-
};
|
8790
|
-
items: TranslationConfig[];
|
8791
9589
|
parent?: {
|
8792
9590
|
$$field: string;
|
8793
9591
|
} | undefined;
|
@@ -8813,18 +9611,21 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8813
9611
|
uncorrectable?: boolean | undefined;
|
8814
9612
|
defaultValue?: string | undefined;
|
8815
9613
|
}, {
|
8816
|
-
type: "
|
9614
|
+
type: "SELECT";
|
8817
9615
|
id: string;
|
9616
|
+
options: {
|
9617
|
+
value: string;
|
9618
|
+
label: {
|
9619
|
+
id: string;
|
9620
|
+
description: string;
|
9621
|
+
defaultMessage: string;
|
9622
|
+
};
|
9623
|
+
}[];
|
8818
9624
|
label: {
|
8819
9625
|
id: string;
|
8820
9626
|
description: string;
|
8821
9627
|
defaultMessage: string;
|
8822
9628
|
};
|
8823
|
-
items: {
|
8824
|
-
id: string;
|
8825
|
-
description: string;
|
8826
|
-
defaultMessage: string;
|
8827
|
-
}[];
|
8828
9629
|
parent?: {
|
8829
9630
|
$$field: string;
|
8830
9631
|
} | undefined;
|
@@ -8861,11 +9662,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8861
9662
|
hideLabel?: boolean | undefined;
|
8862
9663
|
uncorrectable?: boolean | undefined;
|
8863
9664
|
defaultValue?: string | undefined;
|
8864
|
-
configuration?: {
|
8865
|
-
styles?: {
|
8866
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8867
|
-
} | undefined;
|
8868
|
-
} | undefined;
|
8869
9665
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8870
9666
|
id: z.ZodString;
|
8871
9667
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -8914,10 +9710,54 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8914
9710
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8915
9711
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8916
9712
|
}, {
|
8917
|
-
type: z.ZodLiteral<"
|
8918
|
-
defaultValue: z.ZodOptional<z.
|
9713
|
+
type: z.ZodLiteral<"NAME">;
|
9714
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
9715
|
+
firstname: z.ZodString;
|
9716
|
+
surname: z.ZodString;
|
9717
|
+
}, "strip", z.ZodTypeAny, {
|
9718
|
+
firstname: string;
|
9719
|
+
surname: string;
|
9720
|
+
}, {
|
9721
|
+
firstname: string;
|
9722
|
+
surname: string;
|
9723
|
+
}>>;
|
9724
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
9725
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
9726
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9727
|
+
id: string;
|
9728
|
+
description: string;
|
9729
|
+
defaultMessage: string;
|
9730
|
+
}>>;
|
9731
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9732
|
+
id: string;
|
9733
|
+
description: string;
|
9734
|
+
defaultMessage: string;
|
9735
|
+
}>>;
|
9736
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9737
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
9738
|
+
}, "strip", z.ZodTypeAny, {
|
9739
|
+
maxLength?: number | undefined;
|
9740
|
+
prefix?: TranslationConfig | undefined;
|
9741
|
+
postfix?: TranslationConfig | undefined;
|
9742
|
+
includeMiddlename?: boolean | undefined;
|
9743
|
+
searchMode?: boolean | undefined;
|
9744
|
+
}, {
|
9745
|
+
maxLength?: number | undefined;
|
9746
|
+
prefix?: {
|
9747
|
+
id: string;
|
9748
|
+
description: string;
|
9749
|
+
defaultMessage: string;
|
9750
|
+
} | undefined;
|
9751
|
+
postfix?: {
|
9752
|
+
id: string;
|
9753
|
+
description: string;
|
9754
|
+
defaultMessage: string;
|
9755
|
+
} | undefined;
|
9756
|
+
includeMiddlename?: boolean | undefined;
|
9757
|
+
searchMode?: boolean | undefined;
|
9758
|
+
}>>;
|
8919
9759
|
}>, "strip", z.ZodTypeAny, {
|
8920
|
-
type: "
|
9760
|
+
type: "NAME";
|
8921
9761
|
id: string;
|
8922
9762
|
label: TranslationConfig;
|
8923
9763
|
parent?: {
|
@@ -8943,9 +9783,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8943
9783
|
helperText?: TranslationConfig | undefined;
|
8944
9784
|
hideLabel?: boolean | undefined;
|
8945
9785
|
uncorrectable?: boolean | undefined;
|
8946
|
-
defaultValue?:
|
9786
|
+
defaultValue?: {
|
9787
|
+
firstname: string;
|
9788
|
+
surname: string;
|
9789
|
+
} | undefined;
|
9790
|
+
configuration?: {
|
9791
|
+
maxLength?: number | undefined;
|
9792
|
+
prefix?: TranslationConfig | undefined;
|
9793
|
+
postfix?: TranslationConfig | undefined;
|
9794
|
+
includeMiddlename?: boolean | undefined;
|
9795
|
+
searchMode?: boolean | undefined;
|
9796
|
+
} | undefined;
|
8947
9797
|
}, {
|
8948
|
-
type: "
|
9798
|
+
type: "NAME";
|
8949
9799
|
id: string;
|
8950
9800
|
label: {
|
8951
9801
|
id: string;
|
@@ -8985,9 +9835,27 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8985
9835
|
description: string;
|
8986
9836
|
defaultMessage: string;
|
8987
9837
|
} | undefined;
|
8988
|
-
hideLabel?: boolean | undefined;
|
8989
|
-
uncorrectable?: boolean | undefined;
|
8990
|
-
defaultValue?:
|
9838
|
+
hideLabel?: boolean | undefined;
|
9839
|
+
uncorrectable?: boolean | undefined;
|
9840
|
+
defaultValue?: {
|
9841
|
+
firstname: string;
|
9842
|
+
surname: string;
|
9843
|
+
} | undefined;
|
9844
|
+
configuration?: {
|
9845
|
+
maxLength?: number | undefined;
|
9846
|
+
prefix?: {
|
9847
|
+
id: string;
|
9848
|
+
description: string;
|
9849
|
+
defaultMessage: string;
|
9850
|
+
} | undefined;
|
9851
|
+
postfix?: {
|
9852
|
+
id: string;
|
9853
|
+
description: string;
|
9854
|
+
defaultMessage: string;
|
9855
|
+
} | undefined;
|
9856
|
+
includeMiddlename?: boolean | undefined;
|
9857
|
+
searchMode?: boolean | undefined;
|
9858
|
+
} | undefined;
|
8991
9859
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8992
9860
|
id: z.ZodString;
|
8993
9861
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9036,33 +9904,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9036
9904
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9037
9905
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9038
9906
|
}, {
|
9039
|
-
type: z.ZodLiteral<"SELECT">;
|
9040
9907
|
defaultValue: z.ZodOptional<z.ZodString>;
|
9041
|
-
|
9042
|
-
value: z.ZodString;
|
9043
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9044
|
-
id: string;
|
9045
|
-
description: string;
|
9046
|
-
defaultMessage: string;
|
9047
|
-
}>;
|
9048
|
-
}, "strip", z.ZodTypeAny, {
|
9049
|
-
value: string;
|
9050
|
-
label: TranslationConfig;
|
9051
|
-
}, {
|
9052
|
-
value: string;
|
9053
|
-
label: {
|
9054
|
-
id: string;
|
9055
|
-
description: string;
|
9056
|
-
defaultMessage: string;
|
9057
|
-
};
|
9058
|
-
}>, "many">;
|
9908
|
+
type: z.ZodLiteral<"PHONE">;
|
9059
9909
|
}>, "strip", z.ZodTypeAny, {
|
9060
|
-
type: "
|
9910
|
+
type: "PHONE";
|
9061
9911
|
id: string;
|
9062
|
-
options: {
|
9063
|
-
value: string;
|
9064
|
-
label: TranslationConfig;
|
9065
|
-
}[];
|
9066
9912
|
label: TranslationConfig;
|
9067
9913
|
parent?: {
|
9068
9914
|
$$field: string;
|
@@ -9089,16 +9935,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9089
9935
|
uncorrectable?: boolean | undefined;
|
9090
9936
|
defaultValue?: string | undefined;
|
9091
9937
|
}, {
|
9092
|
-
type: "
|
9938
|
+
type: "PHONE";
|
9093
9939
|
id: string;
|
9094
|
-
options: {
|
9095
|
-
value: string;
|
9096
|
-
label: {
|
9097
|
-
id: string;
|
9098
|
-
description: string;
|
9099
|
-
defaultMessage: string;
|
9100
|
-
};
|
9101
|
-
}[];
|
9102
9940
|
label: {
|
9103
9941
|
id: string;
|
9104
9942
|
description: string;
|
@@ -9188,54 +10026,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9188
10026
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9189
10027
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9190
10028
|
}, {
|
9191
|
-
|
9192
|
-
|
9193
|
-
firstname: z.ZodString;
|
9194
|
-
surname: z.ZodString;
|
9195
|
-
}, "strip", z.ZodTypeAny, {
|
9196
|
-
firstname: string;
|
9197
|
-
surname: string;
|
9198
|
-
}, {
|
9199
|
-
firstname: string;
|
9200
|
-
surname: string;
|
9201
|
-
}>>;
|
9202
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
9203
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
9204
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9205
|
-
id: string;
|
9206
|
-
description: string;
|
9207
|
-
defaultMessage: string;
|
9208
|
-
}>>;
|
9209
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9210
|
-
id: string;
|
9211
|
-
description: string;
|
9212
|
-
defaultMessage: string;
|
9213
|
-
}>>;
|
9214
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9215
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
9216
|
-
}, "strip", z.ZodTypeAny, {
|
9217
|
-
maxLength?: number | undefined;
|
9218
|
-
prefix?: TranslationConfig | undefined;
|
9219
|
-
postfix?: TranslationConfig | undefined;
|
9220
|
-
includeMiddlename?: boolean | undefined;
|
9221
|
-
searchMode?: boolean | undefined;
|
9222
|
-
}, {
|
9223
|
-
maxLength?: number | undefined;
|
9224
|
-
prefix?: {
|
9225
|
-
id: string;
|
9226
|
-
description: string;
|
9227
|
-
defaultMessage: string;
|
9228
|
-
} | undefined;
|
9229
|
-
postfix?: {
|
9230
|
-
id: string;
|
9231
|
-
description: string;
|
9232
|
-
defaultMessage: string;
|
9233
|
-
} | undefined;
|
9234
|
-
includeMiddlename?: boolean | undefined;
|
9235
|
-
searchMode?: boolean | undefined;
|
9236
|
-
}>>;
|
10029
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
10030
|
+
type: z.ZodLiteral<"ID">;
|
9237
10031
|
}>, "strip", z.ZodTypeAny, {
|
9238
|
-
type: "
|
10032
|
+
type: "ID";
|
9239
10033
|
id: string;
|
9240
10034
|
label: TranslationConfig;
|
9241
10035
|
parent?: {
|
@@ -9261,19 +10055,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9261
10055
|
helperText?: TranslationConfig | undefined;
|
9262
10056
|
hideLabel?: boolean | undefined;
|
9263
10057
|
uncorrectable?: boolean | undefined;
|
9264
|
-
defaultValue?:
|
9265
|
-
firstname: string;
|
9266
|
-
surname: string;
|
9267
|
-
} | undefined;
|
9268
|
-
configuration?: {
|
9269
|
-
maxLength?: number | undefined;
|
9270
|
-
prefix?: TranslationConfig | undefined;
|
9271
|
-
postfix?: TranslationConfig | undefined;
|
9272
|
-
includeMiddlename?: boolean | undefined;
|
9273
|
-
searchMode?: boolean | undefined;
|
9274
|
-
} | undefined;
|
10058
|
+
defaultValue?: string | undefined;
|
9275
10059
|
}, {
|
9276
|
-
type: "
|
10060
|
+
type: "ID";
|
9277
10061
|
id: string;
|
9278
10062
|
label: {
|
9279
10063
|
id: string;
|
@@ -9315,25 +10099,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9315
10099
|
} | undefined;
|
9316
10100
|
hideLabel?: boolean | undefined;
|
9317
10101
|
uncorrectable?: boolean | undefined;
|
9318
|
-
defaultValue?:
|
9319
|
-
firstname: string;
|
9320
|
-
surname: string;
|
9321
|
-
} | undefined;
|
9322
|
-
configuration?: {
|
9323
|
-
maxLength?: number | undefined;
|
9324
|
-
prefix?: {
|
9325
|
-
id: string;
|
9326
|
-
description: string;
|
9327
|
-
defaultMessage: string;
|
9328
|
-
} | undefined;
|
9329
|
-
postfix?: {
|
9330
|
-
id: string;
|
9331
|
-
description: string;
|
9332
|
-
defaultMessage: string;
|
9333
|
-
} | undefined;
|
9334
|
-
includeMiddlename?: boolean | undefined;
|
9335
|
-
searchMode?: boolean | undefined;
|
9336
|
-
} | undefined;
|
10102
|
+
defaultValue?: string | undefined;
|
9337
10103
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9338
10104
|
id: z.ZodString;
|
9339
10105
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9382,10 +10148,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9382
10148
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9383
10149
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9384
10150
|
}, {
|
9385
|
-
|
9386
|
-
|
10151
|
+
type: z.ZodLiteral<"CHECKBOX">;
|
10152
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
9387
10153
|
}>, "strip", z.ZodTypeAny, {
|
9388
|
-
type: "
|
10154
|
+
type: "CHECKBOX";
|
9389
10155
|
id: string;
|
9390
10156
|
label: TranslationConfig;
|
9391
10157
|
parent?: {
|
@@ -9411,9 +10177,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9411
10177
|
helperText?: TranslationConfig | undefined;
|
9412
10178
|
hideLabel?: boolean | undefined;
|
9413
10179
|
uncorrectable?: boolean | undefined;
|
9414
|
-
defaultValue?:
|
10180
|
+
defaultValue?: boolean | undefined;
|
9415
10181
|
}, {
|
9416
|
-
type: "
|
10182
|
+
type: "CHECKBOX";
|
9417
10183
|
id: string;
|
9418
10184
|
label: {
|
9419
10185
|
id: string;
|
@@ -9455,7 +10221,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9455
10221
|
} | undefined;
|
9456
10222
|
hideLabel?: boolean | undefined;
|
9457
10223
|
uncorrectable?: boolean | undefined;
|
9458
|
-
defaultValue?:
|
10224
|
+
defaultValue?: boolean | undefined;
|
9459
10225
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9460
10226
|
id: z.ZodString;
|
9461
10227
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9504,12 +10270,66 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9504
10270
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9505
10271
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9506
10272
|
}, {
|
9507
|
-
|
9508
|
-
|
10273
|
+
type: z.ZodLiteral<"FILE">;
|
10274
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
10275
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
10276
|
+
originalFilename: z.ZodString;
|
10277
|
+
type: z.ZodString;
|
10278
|
+
}, "strip", z.ZodTypeAny, {
|
10279
|
+
type: string;
|
10280
|
+
path: string;
|
10281
|
+
originalFilename: string;
|
10282
|
+
}, {
|
10283
|
+
type: string;
|
10284
|
+
path: string;
|
10285
|
+
originalFilename: string;
|
10286
|
+
}>>;
|
10287
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
10288
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
10289
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
10290
|
+
style: z.ZodOptional<z.ZodObject<{
|
10291
|
+
width: z.ZodOptional<z.ZodEnum<["full", "auto"]>>;
|
10292
|
+
}, "strip", z.ZodTypeAny, {
|
10293
|
+
width?: "full" | "auto" | undefined;
|
10294
|
+
}, {
|
10295
|
+
width?: "full" | "auto" | undefined;
|
10296
|
+
}>>;
|
10297
|
+
fileName: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
10298
|
+
id: string;
|
10299
|
+
description: string;
|
10300
|
+
defaultMessage: string;
|
10301
|
+
}>>;
|
10302
|
+
}, "strip", z.ZodTypeAny, {
|
10303
|
+
maxFileSize: number;
|
10304
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10305
|
+
style?: {
|
10306
|
+
width?: "full" | "auto" | undefined;
|
10307
|
+
} | undefined;
|
10308
|
+
fileName?: TranslationConfig | undefined;
|
10309
|
+
}, {
|
10310
|
+
maxFileSize?: number | undefined;
|
10311
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10312
|
+
style?: {
|
10313
|
+
width?: "full" | "auto" | undefined;
|
10314
|
+
} | undefined;
|
10315
|
+
fileName?: {
|
10316
|
+
id: string;
|
10317
|
+
description: string;
|
10318
|
+
defaultMessage: string;
|
10319
|
+
} | undefined;
|
10320
|
+
}>>;
|
9509
10321
|
}>, "strip", z.ZodTypeAny, {
|
9510
|
-
type: "
|
10322
|
+
type: "FILE";
|
9511
10323
|
id: string;
|
9512
10324
|
label: TranslationConfig;
|
10325
|
+
configuration: {
|
10326
|
+
maxFileSize: number;
|
10327
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10328
|
+
style?: {
|
10329
|
+
width?: "full" | "auto" | undefined;
|
10330
|
+
} | undefined;
|
10331
|
+
fileName?: TranslationConfig | undefined;
|
10332
|
+
};
|
9513
10333
|
parent?: {
|
9514
10334
|
$$field: string;
|
9515
10335
|
} | undefined;
|
@@ -9533,9 +10353,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9533
10353
|
helperText?: TranslationConfig | undefined;
|
9534
10354
|
hideLabel?: boolean | undefined;
|
9535
10355
|
uncorrectable?: boolean | undefined;
|
9536
|
-
defaultValue?:
|
10356
|
+
defaultValue?: {
|
10357
|
+
type: string;
|
10358
|
+
path: string;
|
10359
|
+
originalFilename: string;
|
10360
|
+
} | undefined;
|
9537
10361
|
}, {
|
9538
|
-
type: "
|
10362
|
+
type: "FILE";
|
9539
10363
|
id: string;
|
9540
10364
|
label: {
|
9541
10365
|
id: string;
|
@@ -9577,7 +10401,23 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9577
10401
|
} | undefined;
|
9578
10402
|
hideLabel?: boolean | undefined;
|
9579
10403
|
uncorrectable?: boolean | undefined;
|
9580
|
-
defaultValue?:
|
10404
|
+
defaultValue?: {
|
10405
|
+
type: string;
|
10406
|
+
path: string;
|
10407
|
+
originalFilename: string;
|
10408
|
+
} | undefined;
|
10409
|
+
configuration?: {
|
10410
|
+
maxFileSize?: number | undefined;
|
10411
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10412
|
+
style?: {
|
10413
|
+
width?: "full" | "auto" | undefined;
|
10414
|
+
} | undefined;
|
10415
|
+
fileName?: {
|
10416
|
+
id: string;
|
10417
|
+
description: string;
|
10418
|
+
defaultMessage: string;
|
10419
|
+
} | undefined;
|
10420
|
+
} | undefined;
|
9581
10421
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9582
10422
|
id: z.ZodString;
|
9583
10423
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9626,10 +10466,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9626
10466
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9627
10467
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9628
10468
|
}, {
|
9629
|
-
type: z.ZodLiteral<"
|
9630
|
-
defaultValue: z.ZodOptional<z.
|
10469
|
+
type: z.ZodLiteral<"COUNTRY">;
|
10470
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
9631
10471
|
}>, "strip", z.ZodTypeAny, {
|
9632
|
-
type: "
|
10472
|
+
type: "COUNTRY";
|
9633
10473
|
id: string;
|
9634
10474
|
label: TranslationConfig;
|
9635
10475
|
parent?: {
|
@@ -9655,9 +10495,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9655
10495
|
helperText?: TranslationConfig | undefined;
|
9656
10496
|
hideLabel?: boolean | undefined;
|
9657
10497
|
uncorrectable?: boolean | undefined;
|
9658
|
-
defaultValue?:
|
10498
|
+
defaultValue?: string | undefined;
|
9659
10499
|
}, {
|
9660
|
-
type: "
|
10500
|
+
type: "COUNTRY";
|
9661
10501
|
id: string;
|
9662
10502
|
label: {
|
9663
10503
|
id: string;
|
@@ -9699,7 +10539,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9699
10539
|
} | undefined;
|
9700
10540
|
hideLabel?: boolean | undefined;
|
9701
10541
|
uncorrectable?: boolean | undefined;
|
9702
|
-
defaultValue?:
|
10542
|
+
defaultValue?: string | undefined;
|
9703
10543
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9704
10544
|
id: z.ZodString;
|
9705
10545
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9748,65 +10588,37 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9748
10588
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9749
10589
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9750
10590
|
}, {
|
9751
|
-
type: z.ZodLiteral<"
|
9752
|
-
defaultValue: z.ZodOptional<z.
|
9753
|
-
|
9754
|
-
|
9755
|
-
|
9756
|
-
}, "strip", z.ZodTypeAny, {
|
9757
|
-
type: string;
|
9758
|
-
path: string;
|
9759
|
-
originalFilename: string;
|
9760
|
-
}, {
|
9761
|
-
type: string;
|
9762
|
-
path: string;
|
9763
|
-
originalFilename: string;
|
9764
|
-
}>>;
|
9765
|
-
configuration: z.ZodDefault<z.ZodObject<{
|
9766
|
-
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
9767
|
-
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
9768
|
-
style: z.ZodOptional<z.ZodObject<{
|
9769
|
-
width: z.ZodOptional<z.ZodEnum<["full", "auto"]>>;
|
10591
|
+
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
10592
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
10593
|
+
configuration: z.ZodObject<{
|
10594
|
+
partOf: z.ZodOptional<z.ZodObject<{
|
10595
|
+
$declaration: z.ZodString;
|
9770
10596
|
}, "strip", z.ZodTypeAny, {
|
9771
|
-
|
10597
|
+
$declaration: string;
|
9772
10598
|
}, {
|
9773
|
-
|
9774
|
-
}>>;
|
9775
|
-
fileName: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9776
|
-
id: string;
|
9777
|
-
description: string;
|
9778
|
-
defaultMessage: string;
|
10599
|
+
$declaration: string;
|
9779
10600
|
}>>;
|
10601
|
+
type: z.ZodEnum<["ADMIN_STRUCTURE", "HEALTH_FACILITY", "CRVS_OFFICE"]>;
|
9780
10602
|
}, "strip", z.ZodTypeAny, {
|
9781
|
-
|
9782
|
-
|
9783
|
-
|
9784
|
-
width?: "full" | "auto" | undefined;
|
10603
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10604
|
+
partOf?: {
|
10605
|
+
$declaration: string;
|
9785
10606
|
} | undefined;
|
9786
|
-
fileName?: TranslationConfig | undefined;
|
9787
10607
|
}, {
|
9788
|
-
|
9789
|
-
|
9790
|
-
|
9791
|
-
width?: "full" | "auto" | undefined;
|
9792
|
-
} | undefined;
|
9793
|
-
fileName?: {
|
9794
|
-
id: string;
|
9795
|
-
description: string;
|
9796
|
-
defaultMessage: string;
|
10608
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10609
|
+
partOf?: {
|
10610
|
+
$declaration: string;
|
9797
10611
|
} | undefined;
|
9798
|
-
}
|
10612
|
+
}>;
|
9799
10613
|
}>, "strip", z.ZodTypeAny, {
|
9800
|
-
type: "
|
10614
|
+
type: "ADMINISTRATIVE_AREA";
|
9801
10615
|
id: string;
|
9802
10616
|
label: TranslationConfig;
|
9803
10617
|
configuration: {
|
9804
|
-
|
9805
|
-
|
9806
|
-
|
9807
|
-
width?: "full" | "auto" | undefined;
|
10618
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10619
|
+
partOf?: {
|
10620
|
+
$declaration: string;
|
9808
10621
|
} | undefined;
|
9809
|
-
fileName?: TranslationConfig | undefined;
|
9810
10622
|
};
|
9811
10623
|
parent?: {
|
9812
10624
|
$$field: string;
|
@@ -9831,19 +10643,21 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9831
10643
|
helperText?: TranslationConfig | undefined;
|
9832
10644
|
hideLabel?: boolean | undefined;
|
9833
10645
|
uncorrectable?: boolean | undefined;
|
9834
|
-
defaultValue?:
|
9835
|
-
type: string;
|
9836
|
-
path: string;
|
9837
|
-
originalFilename: string;
|
9838
|
-
} | undefined;
|
10646
|
+
defaultValue?: string | undefined;
|
9839
10647
|
}, {
|
9840
|
-
type: "
|
10648
|
+
type: "ADMINISTRATIVE_AREA";
|
9841
10649
|
id: string;
|
9842
10650
|
label: {
|
9843
10651
|
id: string;
|
9844
10652
|
description: string;
|
9845
10653
|
defaultMessage: string;
|
9846
10654
|
};
|
10655
|
+
configuration: {
|
10656
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10657
|
+
partOf?: {
|
10658
|
+
$declaration: string;
|
10659
|
+
} | undefined;
|
10660
|
+
};
|
9847
10661
|
parent?: {
|
9848
10662
|
$$field: string;
|
9849
10663
|
} | undefined;
|
@@ -9879,23 +10693,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9879
10693
|
} | undefined;
|
9880
10694
|
hideLabel?: boolean | undefined;
|
9881
10695
|
uncorrectable?: boolean | undefined;
|
9882
|
-
defaultValue?:
|
9883
|
-
type: string;
|
9884
|
-
path: string;
|
9885
|
-
originalFilename: string;
|
9886
|
-
} | undefined;
|
9887
|
-
configuration?: {
|
9888
|
-
maxFileSize?: number | undefined;
|
9889
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9890
|
-
style?: {
|
9891
|
-
width?: "full" | "auto" | undefined;
|
9892
|
-
} | undefined;
|
9893
|
-
fileName?: {
|
9894
|
-
id: string;
|
9895
|
-
description: string;
|
9896
|
-
defaultMessage: string;
|
9897
|
-
} | undefined;
|
9898
|
-
} | undefined;
|
10696
|
+
defaultValue?: string | undefined;
|
9899
10697
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9900
10698
|
id: z.ZodString;
|
9901
10699
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9944,10 +10742,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9944
10742
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9945
10743
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9946
10744
|
}, {
|
9947
|
-
type: z.ZodLiteral<"
|
9948
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
10745
|
+
type: z.ZodLiteral<"DIVIDER">;
|
9949
10746
|
}>, "strip", z.ZodTypeAny, {
|
9950
|
-
type: "
|
10747
|
+
type: "DIVIDER";
|
9951
10748
|
id: string;
|
9952
10749
|
label: TranslationConfig;
|
9953
10750
|
parent?: {
|
@@ -9973,9 +10770,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9973
10770
|
helperText?: TranslationConfig | undefined;
|
9974
10771
|
hideLabel?: boolean | undefined;
|
9975
10772
|
uncorrectable?: boolean | undefined;
|
9976
|
-
defaultValue?: string | undefined;
|
9977
10773
|
}, {
|
9978
|
-
type: "
|
10774
|
+
type: "DIVIDER";
|
9979
10775
|
id: string;
|
9980
10776
|
label: {
|
9981
10777
|
id: string;
|
@@ -10017,7 +10813,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10017
10813
|
} | undefined;
|
10018
10814
|
hideLabel?: boolean | undefined;
|
10019
10815
|
uncorrectable?: boolean | undefined;
|
10020
|
-
defaultValue?: string | undefined;
|
10021
10816
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10022
10817
|
id: z.ZodString;
|
10023
10818
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10066,38 +10861,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10066
10861
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10067
10862
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10068
10863
|
}, {
|
10069
|
-
type: z.ZodLiteral<"
|
10864
|
+
type: z.ZodLiteral<"LOCATION">;
|
10070
10865
|
defaultValue: z.ZodOptional<z.ZodString>;
|
10071
|
-
configuration: z.ZodObject<{
|
10072
|
-
|
10073
|
-
$declaration: z.ZodString;
|
10074
|
-
}, "strip", z.ZodTypeAny, {
|
10075
|
-
$declaration: string;
|
10076
|
-
}, {
|
10077
|
-
$declaration: string;
|
10078
|
-
}>>;
|
10079
|
-
type: z.ZodEnum<["ADMIN_STRUCTURE", "HEALTH_FACILITY", "CRVS_OFFICE"]>;
|
10866
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
10867
|
+
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
10080
10868
|
}, "strip", z.ZodTypeAny, {
|
10081
|
-
|
10082
|
-
partOf?: {
|
10083
|
-
$declaration: string;
|
10084
|
-
} | undefined;
|
10869
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10085
10870
|
}, {
|
10086
|
-
|
10087
|
-
|
10088
|
-
$declaration: string;
|
10089
|
-
} | undefined;
|
10090
|
-
}>;
|
10871
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10872
|
+
}>>;
|
10091
10873
|
}>, "strip", z.ZodTypeAny, {
|
10092
|
-
type: "
|
10874
|
+
type: "LOCATION";
|
10093
10875
|
id: string;
|
10094
10876
|
label: TranslationConfig;
|
10095
|
-
configuration: {
|
10096
|
-
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10097
|
-
partOf?: {
|
10098
|
-
$declaration: string;
|
10099
|
-
} | undefined;
|
10100
|
-
};
|
10101
10877
|
parent?: {
|
10102
10878
|
$$field: string;
|
10103
10879
|
} | undefined;
|
@@ -10122,20 +10898,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10122
10898
|
hideLabel?: boolean | undefined;
|
10123
10899
|
uncorrectable?: boolean | undefined;
|
10124
10900
|
defaultValue?: string | undefined;
|
10901
|
+
configuration?: {
|
10902
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10903
|
+
} | undefined;
|
10125
10904
|
}, {
|
10126
|
-
type: "
|
10905
|
+
type: "LOCATION";
|
10127
10906
|
id: string;
|
10128
10907
|
label: {
|
10129
10908
|
id: string;
|
10130
10909
|
description: string;
|
10131
10910
|
defaultMessage: string;
|
10132
10911
|
};
|
10133
|
-
configuration: {
|
10134
|
-
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10135
|
-
partOf?: {
|
10136
|
-
$declaration: string;
|
10137
|
-
} | undefined;
|
10138
|
-
};
|
10139
10912
|
parent?: {
|
10140
10913
|
$$field: string;
|
10141
10914
|
} | undefined;
|
@@ -10172,6 +10945,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10172
10945
|
hideLabel?: boolean | undefined;
|
10173
10946
|
uncorrectable?: boolean | undefined;
|
10174
10947
|
defaultValue?: string | undefined;
|
10948
|
+
configuration?: {
|
10949
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10950
|
+
} | undefined;
|
10175
10951
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10176
10952
|
id: z.ZodString;
|
10177
10953
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10220,9 +10996,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10220
10996
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10221
10997
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10222
10998
|
}, {
|
10223
|
-
type: z.ZodLiteral<"
|
10999
|
+
type: z.ZodLiteral<"FACILITY">;
|
11000
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
10224
11001
|
}>, "strip", z.ZodTypeAny, {
|
10225
|
-
type: "
|
11002
|
+
type: "FACILITY";
|
10226
11003
|
id: string;
|
10227
11004
|
label: TranslationConfig;
|
10228
11005
|
parent?: {
|
@@ -10248,8 +11025,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10248
11025
|
helperText?: TranslationConfig | undefined;
|
10249
11026
|
hideLabel?: boolean | undefined;
|
10250
11027
|
uncorrectable?: boolean | undefined;
|
11028
|
+
defaultValue?: string | undefined;
|
10251
11029
|
}, {
|
10252
|
-
type: "
|
11030
|
+
type: "FACILITY";
|
10253
11031
|
id: string;
|
10254
11032
|
label: {
|
10255
11033
|
id: string;
|
@@ -10291,6 +11069,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10291
11069
|
} | undefined;
|
10292
11070
|
hideLabel?: boolean | undefined;
|
10293
11071
|
uncorrectable?: boolean | undefined;
|
11072
|
+
defaultValue?: string | undefined;
|
10294
11073
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10295
11074
|
id: z.ZodString;
|
10296
11075
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10339,17 +11118,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10339
11118
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10340
11119
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10341
11120
|
}, {
|
10342
|
-
type: z.ZodLiteral<"
|
11121
|
+
type: z.ZodLiteral<"OFFICE">;
|
10343
11122
|
defaultValue: z.ZodOptional<z.ZodString>;
|
10344
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
10345
|
-
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
10346
|
-
}, "strip", z.ZodTypeAny, {
|
10347
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10348
|
-
}, {
|
10349
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10350
|
-
}>>;
|
10351
11123
|
}>, "strip", z.ZodTypeAny, {
|
10352
|
-
type: "
|
11124
|
+
type: "OFFICE";
|
10353
11125
|
id: string;
|
10354
11126
|
label: TranslationConfig;
|
10355
11127
|
parent?: {
|
@@ -10376,11 +11148,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10376
11148
|
hideLabel?: boolean | undefined;
|
10377
11149
|
uncorrectable?: boolean | undefined;
|
10378
11150
|
defaultValue?: string | undefined;
|
10379
|
-
configuration?: {
|
10380
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10381
|
-
} | undefined;
|
10382
11151
|
}, {
|
10383
|
-
type: "
|
11152
|
+
type: "OFFICE";
|
10384
11153
|
id: string;
|
10385
11154
|
label: {
|
10386
11155
|
id: string;
|
@@ -10423,9 +11192,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10423
11192
|
hideLabel?: boolean | undefined;
|
10424
11193
|
uncorrectable?: boolean | undefined;
|
10425
11194
|
defaultValue?: string | undefined;
|
10426
|
-
configuration?: {
|
10427
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10428
|
-
} | undefined;
|
10429
11195
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10430
11196
|
id: z.ZodString;
|
10431
11197
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10474,12 +11240,32 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10474
11240
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10475
11241
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10476
11242
|
}, {
|
10477
|
-
type: z.ZodLiteral<"
|
11243
|
+
type: z.ZodLiteral<"SIGNATURE">;
|
11244
|
+
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11245
|
+
id: string;
|
11246
|
+
description: string;
|
11247
|
+
defaultMessage: string;
|
11248
|
+
}>;
|
10478
11249
|
defaultValue: z.ZodOptional<z.ZodString>;
|
11250
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
11251
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
11252
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
11253
|
+
}, "strip", z.ZodTypeAny, {
|
11254
|
+
maxFileSize: number;
|
11255
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11256
|
+
}, {
|
11257
|
+
maxFileSize?: number | undefined;
|
11258
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11259
|
+
}>>;
|
10479
11260
|
}>, "strip", z.ZodTypeAny, {
|
10480
|
-
type: "
|
11261
|
+
type: "SIGNATURE";
|
10481
11262
|
id: string;
|
10482
11263
|
label: TranslationConfig;
|
11264
|
+
configuration: {
|
11265
|
+
maxFileSize: number;
|
11266
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11267
|
+
};
|
11268
|
+
signaturePromptLabel: TranslationConfig;
|
10483
11269
|
parent?: {
|
10484
11270
|
$$field: string;
|
10485
11271
|
} | undefined;
|
@@ -10505,13 +11291,18 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10505
11291
|
uncorrectable?: boolean | undefined;
|
10506
11292
|
defaultValue?: string | undefined;
|
10507
11293
|
}, {
|
10508
|
-
type: "
|
11294
|
+
type: "SIGNATURE";
|
10509
11295
|
id: string;
|
10510
11296
|
label: {
|
10511
11297
|
id: string;
|
10512
11298
|
description: string;
|
10513
11299
|
defaultMessage: string;
|
10514
11300
|
};
|
11301
|
+
signaturePromptLabel: {
|
11302
|
+
id: string;
|
11303
|
+
description: string;
|
11304
|
+
defaultMessage: string;
|
11305
|
+
};
|
10515
11306
|
parent?: {
|
10516
11307
|
$$field: string;
|
10517
11308
|
} | undefined;
|
@@ -10548,6 +11339,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10548
11339
|
hideLabel?: boolean | undefined;
|
10549
11340
|
uncorrectable?: boolean | undefined;
|
10550
11341
|
defaultValue?: string | undefined;
|
11342
|
+
configuration?: {
|
11343
|
+
maxFileSize?: number | undefined;
|
11344
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11345
|
+
} | undefined;
|
10551
11346
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10552
11347
|
id: z.ZodString;
|
10553
11348
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10596,10 +11391,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10596
11391
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10597
11392
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10598
11393
|
}, {
|
10599
|
-
type: z.ZodLiteral<"
|
11394
|
+
type: z.ZodLiteral<"EMAIL">;
|
11395
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
11396
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
11397
|
+
}, "strip", z.ZodTypeAny, {
|
11398
|
+
maxLength?: number | undefined;
|
11399
|
+
}, {
|
11400
|
+
maxLength?: number | undefined;
|
11401
|
+
}>>>;
|
10600
11402
|
defaultValue: z.ZodOptional<z.ZodString>;
|
10601
11403
|
}>, "strip", z.ZodTypeAny, {
|
10602
|
-
type: "
|
11404
|
+
type: "EMAIL";
|
10603
11405
|
id: string;
|
10604
11406
|
label: TranslationConfig;
|
10605
11407
|
parent?: {
|
@@ -10626,8 +11428,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10626
11428
|
hideLabel?: boolean | undefined;
|
10627
11429
|
uncorrectable?: boolean | undefined;
|
10628
11430
|
defaultValue?: string | undefined;
|
11431
|
+
configuration?: {
|
11432
|
+
maxLength?: number | undefined;
|
11433
|
+
} | undefined;
|
10629
11434
|
}, {
|
10630
|
-
type: "
|
11435
|
+
type: "EMAIL";
|
10631
11436
|
id: string;
|
10632
11437
|
label: {
|
10633
11438
|
id: string;
|
@@ -10670,6 +11475,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10670
11475
|
hideLabel?: boolean | undefined;
|
10671
11476
|
uncorrectable?: boolean | undefined;
|
10672
11477
|
defaultValue?: string | undefined;
|
11478
|
+
configuration?: {
|
11479
|
+
maxLength?: number | undefined;
|
11480
|
+
} | undefined;
|
10673
11481
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10674
11482
|
id: z.ZodString;
|
10675
11483
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10718,13 +11526,41 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10718
11526
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10719
11527
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10720
11528
|
}, {
|
10721
|
-
type: z.ZodLiteral<"
|
10722
|
-
|
10723
|
-
|
10724
|
-
|
10725
|
-
|
10726
|
-
|
10727
|
-
|
11529
|
+
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
11530
|
+
options: z.ZodArray<z.ZodObject<{
|
11531
|
+
value: z.ZodString;
|
11532
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11533
|
+
id: string;
|
11534
|
+
description: string;
|
11535
|
+
defaultMessage: string;
|
11536
|
+
}>;
|
11537
|
+
}, "strip", z.ZodTypeAny, {
|
11538
|
+
value: string;
|
11539
|
+
label: TranslationConfig;
|
11540
|
+
}, {
|
11541
|
+
value: string;
|
11542
|
+
label: {
|
11543
|
+
id: string;
|
11544
|
+
description: string;
|
11545
|
+
defaultMessage: string;
|
11546
|
+
};
|
11547
|
+
}>, "many">;
|
11548
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11549
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
11550
|
+
originalFilename: z.ZodString;
|
11551
|
+
type: z.ZodString;
|
11552
|
+
option: z.ZodString;
|
11553
|
+
}, "strip", z.ZodTypeAny, {
|
11554
|
+
type: string;
|
11555
|
+
option: string;
|
11556
|
+
path: string;
|
11557
|
+
originalFilename: string;
|
11558
|
+
}, {
|
11559
|
+
type: string;
|
11560
|
+
option: string;
|
11561
|
+
path: string;
|
11562
|
+
originalFilename: string;
|
11563
|
+
}>, "many">>;
|
10728
11564
|
configuration: z.ZodDefault<z.ZodObject<{
|
10729
11565
|
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
10730
11566
|
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
@@ -10736,14 +11572,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10736
11572
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10737
11573
|
}>>;
|
10738
11574
|
}>, "strip", z.ZodTypeAny, {
|
10739
|
-
type: "
|
11575
|
+
type: "FILE_WITH_OPTIONS";
|
10740
11576
|
id: string;
|
11577
|
+
options: {
|
11578
|
+
value: string;
|
11579
|
+
label: TranslationConfig;
|
11580
|
+
}[];
|
10741
11581
|
label: TranslationConfig;
|
10742
11582
|
configuration: {
|
10743
11583
|
maxFileSize: number;
|
10744
11584
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10745
11585
|
};
|
10746
|
-
signaturePromptLabel: TranslationConfig;
|
10747
11586
|
parent?: {
|
10748
11587
|
$$field: string;
|
10749
11588
|
} | undefined;
|
@@ -10767,20 +11606,28 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10767
11606
|
helperText?: TranslationConfig | undefined;
|
10768
11607
|
hideLabel?: boolean | undefined;
|
10769
11608
|
uncorrectable?: boolean | undefined;
|
10770
|
-
defaultValue?:
|
11609
|
+
defaultValue?: {
|
11610
|
+
type: string;
|
11611
|
+
option: string;
|
11612
|
+
path: string;
|
11613
|
+
originalFilename: string;
|
11614
|
+
}[] | undefined;
|
10771
11615
|
}, {
|
10772
|
-
type: "
|
11616
|
+
type: "FILE_WITH_OPTIONS";
|
10773
11617
|
id: string;
|
11618
|
+
options: {
|
11619
|
+
value: string;
|
11620
|
+
label: {
|
11621
|
+
id: string;
|
11622
|
+
description: string;
|
11623
|
+
defaultMessage: string;
|
11624
|
+
};
|
11625
|
+
}[];
|
10774
11626
|
label: {
|
10775
11627
|
id: string;
|
10776
11628
|
description: string;
|
10777
11629
|
defaultMessage: string;
|
10778
11630
|
};
|
10779
|
-
signaturePromptLabel: {
|
10780
|
-
id: string;
|
10781
|
-
description: string;
|
10782
|
-
defaultMessage: string;
|
10783
|
-
};
|
10784
11631
|
parent?: {
|
10785
11632
|
$$field: string;
|
10786
11633
|
} | undefined;
|
@@ -10816,7 +11663,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10816
11663
|
} | undefined;
|
10817
11664
|
hideLabel?: boolean | undefined;
|
10818
11665
|
uncorrectable?: boolean | undefined;
|
10819
|
-
defaultValue?:
|
11666
|
+
defaultValue?: {
|
11667
|
+
type: string;
|
11668
|
+
option: string;
|
11669
|
+
path: string;
|
11670
|
+
originalFilename: string;
|
11671
|
+
}[] | undefined;
|
10820
11672
|
configuration?: {
|
10821
11673
|
maxFileSize?: number | undefined;
|
10822
11674
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
@@ -10869,19 +11721,87 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10869
11721
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10870
11722
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10871
11723
|
}, {
|
10872
|
-
type: z.ZodLiteral<"
|
10873
|
-
configuration: z.
|
10874
|
-
|
11724
|
+
type: z.ZodLiteral<"DATA">;
|
11725
|
+
configuration: z.ZodObject<{
|
11726
|
+
subtitle: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11727
|
+
id: string;
|
11728
|
+
description: string;
|
11729
|
+
defaultMessage: string;
|
11730
|
+
}>>;
|
11731
|
+
data: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
11732
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11733
|
+
id: string;
|
11734
|
+
description: string;
|
11735
|
+
defaultMessage: string;
|
11736
|
+
}>;
|
11737
|
+
value: z.ZodUnion<[z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11738
|
+
id: string;
|
11739
|
+
description: string;
|
11740
|
+
defaultMessage: string;
|
11741
|
+
}>, z.ZodString]>;
|
11742
|
+
}, "strip", z.ZodTypeAny, {
|
11743
|
+
value: string | TranslationConfig;
|
11744
|
+
label: TranslationConfig;
|
11745
|
+
}, {
|
11746
|
+
value: string | {
|
11747
|
+
id: string;
|
11748
|
+
description: string;
|
11749
|
+
defaultMessage: string;
|
11750
|
+
};
|
11751
|
+
label: {
|
11752
|
+
id: string;
|
11753
|
+
description: string;
|
11754
|
+
defaultMessage: string;
|
11755
|
+
};
|
11756
|
+
}>, z.ZodObject<{
|
11757
|
+
fieldId: z.ZodString;
|
11758
|
+
}, "strip", z.ZodTypeAny, {
|
11759
|
+
fieldId: string;
|
11760
|
+
}, {
|
11761
|
+
fieldId: string;
|
11762
|
+
}>]>, "many">;
|
10875
11763
|
}, "strip", z.ZodTypeAny, {
|
10876
|
-
|
11764
|
+
data: ({
|
11765
|
+
value: string | TranslationConfig;
|
11766
|
+
label: TranslationConfig;
|
11767
|
+
} | {
|
11768
|
+
fieldId: string;
|
11769
|
+
})[];
|
11770
|
+
subtitle?: TranslationConfig | undefined;
|
10877
11771
|
}, {
|
10878
|
-
|
10879
|
-
|
10880
|
-
|
11772
|
+
data: ({
|
11773
|
+
value: string | {
|
11774
|
+
id: string;
|
11775
|
+
description: string;
|
11776
|
+
defaultMessage: string;
|
11777
|
+
};
|
11778
|
+
label: {
|
11779
|
+
id: string;
|
11780
|
+
description: string;
|
11781
|
+
defaultMessage: string;
|
11782
|
+
};
|
11783
|
+
} | {
|
11784
|
+
fieldId: string;
|
11785
|
+
})[];
|
11786
|
+
subtitle?: {
|
11787
|
+
id: string;
|
11788
|
+
description: string;
|
11789
|
+
defaultMessage: string;
|
11790
|
+
} | undefined;
|
11791
|
+
}>;
|
10881
11792
|
}>, "strip", z.ZodTypeAny, {
|
10882
|
-
type: "
|
11793
|
+
type: "DATA";
|
10883
11794
|
id: string;
|
10884
11795
|
label: TranslationConfig;
|
11796
|
+
configuration: {
|
11797
|
+
data: ({
|
11798
|
+
value: string | TranslationConfig;
|
11799
|
+
label: TranslationConfig;
|
11800
|
+
} | {
|
11801
|
+
fieldId: string;
|
11802
|
+
})[];
|
11803
|
+
subtitle?: TranslationConfig | undefined;
|
11804
|
+
};
|
10885
11805
|
parent?: {
|
10886
11806
|
$$field: string;
|
10887
11807
|
} | undefined;
|
@@ -10905,18 +11825,35 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10905
11825
|
helperText?: TranslationConfig | undefined;
|
10906
11826
|
hideLabel?: boolean | undefined;
|
10907
11827
|
uncorrectable?: boolean | undefined;
|
10908
|
-
defaultValue?: string | undefined;
|
10909
|
-
configuration?: {
|
10910
|
-
maxLength?: number | undefined;
|
10911
|
-
} | undefined;
|
10912
11828
|
}, {
|
10913
|
-
type: "
|
11829
|
+
type: "DATA";
|
10914
11830
|
id: string;
|
10915
11831
|
label: {
|
10916
11832
|
id: string;
|
10917
11833
|
description: string;
|
10918
11834
|
defaultMessage: string;
|
10919
11835
|
};
|
11836
|
+
configuration: {
|
11837
|
+
data: ({
|
11838
|
+
value: string | {
|
11839
|
+
id: string;
|
11840
|
+
description: string;
|
11841
|
+
defaultMessage: string;
|
11842
|
+
};
|
11843
|
+
label: {
|
11844
|
+
id: string;
|
11845
|
+
description: string;
|
11846
|
+
defaultMessage: string;
|
11847
|
+
};
|
11848
|
+
} | {
|
11849
|
+
fieldId: string;
|
11850
|
+
})[];
|
11851
|
+
subtitle?: {
|
11852
|
+
id: string;
|
11853
|
+
description: string;
|
11854
|
+
defaultMessage: string;
|
11855
|
+
} | undefined;
|
11856
|
+
};
|
10920
11857
|
parent?: {
|
10921
11858
|
$$field: string;
|
10922
11859
|
} | undefined;
|
@@ -10952,10 +11889,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10952
11889
|
} | undefined;
|
10953
11890
|
hideLabel?: boolean | undefined;
|
10954
11891
|
uncorrectable?: boolean | undefined;
|
10955
|
-
defaultValue?: string | undefined;
|
10956
|
-
configuration?: {
|
10957
|
-
maxLength?: number | undefined;
|
10958
|
-
} | undefined;
|
10959
11892
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10960
11893
|
id: z.ZodString;
|
10961
11894
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11004,62 +11937,64 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11004
11937
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11005
11938
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11006
11939
|
}, {
|
11007
|
-
type: z.ZodLiteral<"
|
11008
|
-
|
11009
|
-
|
11010
|
-
|
11940
|
+
type: z.ZodLiteral<"BUTTON">;
|
11941
|
+
configuration: z.ZodObject<{
|
11942
|
+
onClick: z.ZodObject<{
|
11943
|
+
$$field: z.ZodString;
|
11944
|
+
}, "strip", z.ZodTypeAny, {
|
11945
|
+
$$field: string;
|
11946
|
+
}, {
|
11947
|
+
$$field: string;
|
11948
|
+
}>;
|
11949
|
+
icon: z.ZodOptional<z.ZodString>;
|
11950
|
+
shouldHandleLoadingState: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11951
|
+
buttonLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11011
11952
|
id: string;
|
11012
11953
|
description: string;
|
11013
11954
|
defaultMessage: string;
|
11014
11955
|
}>;
|
11956
|
+
loadingLabel: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11957
|
+
id: string;
|
11958
|
+
description: string;
|
11959
|
+
defaultMessage: string;
|
11960
|
+
}>>;
|
11015
11961
|
}, "strip", z.ZodTypeAny, {
|
11016
|
-
|
11017
|
-
|
11962
|
+
onClick: {
|
11963
|
+
$$field: string;
|
11964
|
+
};
|
11965
|
+
buttonLabel: TranslationConfig;
|
11966
|
+
icon?: string | undefined;
|
11967
|
+
shouldHandleLoadingState?: boolean | undefined;
|
11968
|
+
loadingLabel?: TranslationConfig | undefined;
|
11018
11969
|
}, {
|
11019
|
-
|
11020
|
-
|
11970
|
+
onClick: {
|
11971
|
+
$$field: string;
|
11972
|
+
};
|
11973
|
+
buttonLabel: {
|
11021
11974
|
id: string;
|
11022
11975
|
description: string;
|
11023
11976
|
defaultMessage: string;
|
11024
11977
|
};
|
11025
|
-
|
11026
|
-
|
11027
|
-
|
11028
|
-
|
11029
|
-
|
11030
|
-
|
11031
|
-
|
11032
|
-
|
11033
|
-
option: string;
|
11034
|
-
path: string;
|
11035
|
-
originalFilename: string;
|
11036
|
-
}, {
|
11037
|
-
type: string;
|
11038
|
-
option: string;
|
11039
|
-
path: string;
|
11040
|
-
originalFilename: string;
|
11041
|
-
}>, "many">>;
|
11042
|
-
configuration: z.ZodDefault<z.ZodObject<{
|
11043
|
-
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
11044
|
-
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
11045
|
-
}, "strip", z.ZodTypeAny, {
|
11046
|
-
maxFileSize: number;
|
11047
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11048
|
-
}, {
|
11049
|
-
maxFileSize?: number | undefined;
|
11050
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11051
|
-
}>>;
|
11978
|
+
icon?: string | undefined;
|
11979
|
+
shouldHandleLoadingState?: boolean | undefined;
|
11980
|
+
loadingLabel?: {
|
11981
|
+
id: string;
|
11982
|
+
description: string;
|
11983
|
+
defaultMessage: string;
|
11984
|
+
} | undefined;
|
11985
|
+
}>;
|
11052
11986
|
}>, "strip", z.ZodTypeAny, {
|
11053
|
-
type: "
|
11987
|
+
type: "BUTTON";
|
11054
11988
|
id: string;
|
11055
|
-
options: {
|
11056
|
-
value: string;
|
11057
|
-
label: TranslationConfig;
|
11058
|
-
}[];
|
11059
11989
|
label: TranslationConfig;
|
11060
11990
|
configuration: {
|
11061
|
-
|
11062
|
-
|
11991
|
+
onClick: {
|
11992
|
+
$$field: string;
|
11993
|
+
};
|
11994
|
+
buttonLabel: TranslationConfig;
|
11995
|
+
icon?: string | undefined;
|
11996
|
+
shouldHandleLoadingState?: boolean | undefined;
|
11997
|
+
loadingLabel?: TranslationConfig | undefined;
|
11063
11998
|
};
|
11064
11999
|
parent?: {
|
11065
12000
|
$$field: string;
|
@@ -11084,28 +12019,31 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11084
12019
|
helperText?: TranslationConfig | undefined;
|
11085
12020
|
hideLabel?: boolean | undefined;
|
11086
12021
|
uncorrectable?: boolean | undefined;
|
11087
|
-
defaultValue?: {
|
11088
|
-
type: string;
|
11089
|
-
option: string;
|
11090
|
-
path: string;
|
11091
|
-
originalFilename: string;
|
11092
|
-
}[] | undefined;
|
11093
12022
|
}, {
|
11094
|
-
type: "
|
12023
|
+
type: "BUTTON";
|
11095
12024
|
id: string;
|
11096
|
-
options: {
|
11097
|
-
value: string;
|
11098
|
-
label: {
|
11099
|
-
id: string;
|
11100
|
-
description: string;
|
11101
|
-
defaultMessage: string;
|
11102
|
-
};
|
11103
|
-
}[];
|
11104
12025
|
label: {
|
11105
12026
|
id: string;
|
11106
12027
|
description: string;
|
11107
12028
|
defaultMessage: string;
|
11108
12029
|
};
|
12030
|
+
configuration: {
|
12031
|
+
onClick: {
|
12032
|
+
$$field: string;
|
12033
|
+
};
|
12034
|
+
buttonLabel: {
|
12035
|
+
id: string;
|
12036
|
+
description: string;
|
12037
|
+
defaultMessage: string;
|
12038
|
+
};
|
12039
|
+
icon?: string | undefined;
|
12040
|
+
shouldHandleLoadingState?: boolean | undefined;
|
12041
|
+
loadingLabel?: {
|
12042
|
+
id: string;
|
12043
|
+
description: string;
|
12044
|
+
defaultMessage: string;
|
12045
|
+
} | undefined;
|
12046
|
+
};
|
11109
12047
|
parent?: {
|
11110
12048
|
$$field: string;
|
11111
12049
|
} | undefined;
|
@@ -11132,25 +12070,15 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11132
12070
|
placeholder?: {
|
11133
12071
|
id: string;
|
11134
12072
|
description: string;
|
11135
|
-
defaultMessage: string;
|
11136
|
-
} | undefined;
|
11137
|
-
helperText?: {
|
11138
|
-
id: string;
|
11139
|
-
description: string;
|
11140
|
-
defaultMessage: string;
|
11141
|
-
} | undefined;
|
11142
|
-
hideLabel?: boolean | undefined;
|
11143
|
-
uncorrectable?: boolean | undefined;
|
11144
|
-
defaultValue?: {
|
11145
|
-
type: string;
|
11146
|
-
option: string;
|
11147
|
-
path: string;
|
11148
|
-
originalFilename: string;
|
11149
|
-
}[] | undefined;
|
11150
|
-
configuration?: {
|
11151
|
-
maxFileSize?: number | undefined;
|
11152
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
12073
|
+
defaultMessage: string;
|
12074
|
+
} | undefined;
|
12075
|
+
helperText?: {
|
12076
|
+
id: string;
|
12077
|
+
description: string;
|
12078
|
+
defaultMessage: string;
|
11153
12079
|
} | undefined;
|
12080
|
+
hideLabel?: boolean | undefined;
|
12081
|
+
uncorrectable?: boolean | undefined;
|
11154
12082
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11155
12083
|
id: z.ZodString;
|
11156
12084
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11199,86 +12127,36 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11199
12127
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11200
12128
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11201
12129
|
}, {
|
11202
|
-
type: z.ZodLiteral<"
|
12130
|
+
type: z.ZodLiteral<"HTTP">;
|
11203
12131
|
configuration: z.ZodObject<{
|
11204
|
-
|
11205
|
-
|
11206
|
-
|
11207
|
-
|
11208
|
-
|
11209
|
-
|
11210
|
-
|
11211
|
-
|
11212
|
-
|
11213
|
-
|
11214
|
-
|
11215
|
-
|
11216
|
-
|
11217
|
-
|
11218
|
-
|
11219
|
-
|
11220
|
-
|
11221
|
-
value: string | TranslationConfig;
|
11222
|
-
label: TranslationConfig;
|
11223
|
-
}, {
|
11224
|
-
value: string | {
|
11225
|
-
id: string;
|
11226
|
-
description: string;
|
11227
|
-
defaultMessage: string;
|
11228
|
-
};
|
11229
|
-
label: {
|
11230
|
-
id: string;
|
11231
|
-
description: string;
|
11232
|
-
defaultMessage: string;
|
11233
|
-
};
|
11234
|
-
}>, z.ZodObject<{
|
11235
|
-
fieldId: z.ZodString;
|
11236
|
-
}, "strip", z.ZodTypeAny, {
|
11237
|
-
fieldId: string;
|
11238
|
-
}, {
|
11239
|
-
fieldId: string;
|
11240
|
-
}>]>, "many">;
|
11241
|
-
}, "strip", z.ZodTypeAny, {
|
11242
|
-
data: ({
|
11243
|
-
value: string | TranslationConfig;
|
11244
|
-
label: TranslationConfig;
|
11245
|
-
} | {
|
11246
|
-
fieldId: string;
|
11247
|
-
})[];
|
11248
|
-
subtitle?: TranslationConfig | undefined;
|
11249
|
-
}, {
|
11250
|
-
data: ({
|
11251
|
-
value: string | {
|
11252
|
-
id: string;
|
11253
|
-
description: string;
|
11254
|
-
defaultMessage: string;
|
11255
|
-
};
|
11256
|
-
label: {
|
11257
|
-
id: string;
|
11258
|
-
description: string;
|
11259
|
-
defaultMessage: string;
|
11260
|
-
};
|
11261
|
-
} | {
|
11262
|
-
fieldId: string;
|
11263
|
-
})[];
|
11264
|
-
subtitle?: {
|
11265
|
-
id: string;
|
11266
|
-
description: string;
|
11267
|
-
defaultMessage: string;
|
11268
|
-
} | undefined;
|
12132
|
+
method: z.ZodEnum<["GET", "POST", "PUT", "DELETE"]>;
|
12133
|
+
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
12134
|
+
body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
12135
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
12136
|
+
url: z.ZodString;
|
12137
|
+
}, "strip", z.ZodTypeAny, {
|
12138
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
12139
|
+
url: string;
|
12140
|
+
params?: Record<string, string> | undefined;
|
12141
|
+
headers?: Record<string, string> | undefined;
|
12142
|
+
body?: Record<string, string> | undefined;
|
12143
|
+
}, {
|
12144
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
12145
|
+
url: string;
|
12146
|
+
params?: Record<string, string> | undefined;
|
12147
|
+
headers?: Record<string, string> | undefined;
|
12148
|
+
body?: Record<string, string> | undefined;
|
11269
12149
|
}>;
|
11270
12150
|
}>, "strip", z.ZodTypeAny, {
|
11271
|
-
type: "
|
12151
|
+
type: "HTTP";
|
11272
12152
|
id: string;
|
11273
12153
|
label: TranslationConfig;
|
11274
12154
|
configuration: {
|
11275
|
-
|
11276
|
-
|
11277
|
-
|
11278
|
-
|
11279
|
-
|
11280
|
-
})[];
|
11281
|
-
subtitle?: TranslationConfig | undefined;
|
12155
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
12156
|
+
url: string;
|
12157
|
+
params?: Record<string, string> | undefined;
|
12158
|
+
headers?: Record<string, string> | undefined;
|
12159
|
+
body?: Record<string, string> | undefined;
|
11282
12160
|
};
|
11283
12161
|
parent?: {
|
11284
12162
|
$$field: string;
|
@@ -11304,7 +12182,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11304
12182
|
hideLabel?: boolean | undefined;
|
11305
12183
|
uncorrectable?: boolean | undefined;
|
11306
12184
|
}, {
|
11307
|
-
type: "
|
12185
|
+
type: "HTTP";
|
11308
12186
|
id: string;
|
11309
12187
|
label: {
|
11310
12188
|
id: string;
|
@@ -11312,25 +12190,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11312
12190
|
defaultMessage: string;
|
11313
12191
|
};
|
11314
12192
|
configuration: {
|
11315
|
-
|
11316
|
-
|
11317
|
-
|
11318
|
-
|
11319
|
-
|
11320
|
-
};
|
11321
|
-
label: {
|
11322
|
-
id: string;
|
11323
|
-
description: string;
|
11324
|
-
defaultMessage: string;
|
11325
|
-
};
|
11326
|
-
} | {
|
11327
|
-
fieldId: string;
|
11328
|
-
})[];
|
11329
|
-
subtitle?: {
|
11330
|
-
id: string;
|
11331
|
-
description: string;
|
11332
|
-
defaultMessage: string;
|
11333
|
-
} | undefined;
|
12193
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
12194
|
+
url: string;
|
12195
|
+
params?: Record<string, string> | undefined;
|
12196
|
+
headers?: Record<string, string> | undefined;
|
12197
|
+
body?: Record<string, string> | undefined;
|
11334
12198
|
};
|
11335
12199
|
parent?: {
|
11336
12200
|
$$field: string;
|
@@ -12435,6 +13299,76 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12435
13299
|
helperText?: TranslationConfig | undefined;
|
12436
13300
|
hideLabel?: boolean | undefined;
|
12437
13301
|
uncorrectable?: boolean | undefined;
|
13302
|
+
} | {
|
13303
|
+
type: "BUTTON";
|
13304
|
+
id: string;
|
13305
|
+
label: TranslationConfig;
|
13306
|
+
configuration: {
|
13307
|
+
onClick: {
|
13308
|
+
$$field: string;
|
13309
|
+
};
|
13310
|
+
buttonLabel: TranslationConfig;
|
13311
|
+
icon?: string | undefined;
|
13312
|
+
shouldHandleLoadingState?: boolean | undefined;
|
13313
|
+
loadingLabel?: TranslationConfig | undefined;
|
13314
|
+
};
|
13315
|
+
parent?: {
|
13316
|
+
$$field: string;
|
13317
|
+
} | undefined;
|
13318
|
+
validation?: {
|
13319
|
+
message: TranslationConfig;
|
13320
|
+
validator: import(".").JSONSchema;
|
13321
|
+
}[] | undefined;
|
13322
|
+
required?: boolean | undefined;
|
13323
|
+
conditionals?: ({
|
13324
|
+
type: "SHOW";
|
13325
|
+
conditional: import(".").JSONSchema;
|
13326
|
+
} | {
|
13327
|
+
type: "ENABLE";
|
13328
|
+
conditional: import(".").JSONSchema;
|
13329
|
+
} | {
|
13330
|
+
type: "DISPLAY_ON_REVIEW";
|
13331
|
+
conditional: import(".").JSONSchema;
|
13332
|
+
})[] | undefined;
|
13333
|
+
secured?: boolean | undefined;
|
13334
|
+
placeholder?: TranslationConfig | undefined;
|
13335
|
+
helperText?: TranslationConfig | undefined;
|
13336
|
+
hideLabel?: boolean | undefined;
|
13337
|
+
uncorrectable?: boolean | undefined;
|
13338
|
+
} | {
|
13339
|
+
type: "HTTP";
|
13340
|
+
id: string;
|
13341
|
+
label: TranslationConfig;
|
13342
|
+
configuration: {
|
13343
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
13344
|
+
url: string;
|
13345
|
+
params?: Record<string, string> | undefined;
|
13346
|
+
headers?: Record<string, string> | undefined;
|
13347
|
+
body?: Record<string, string> | undefined;
|
13348
|
+
};
|
13349
|
+
parent?: {
|
13350
|
+
$$field: string;
|
13351
|
+
} | undefined;
|
13352
|
+
validation?: {
|
13353
|
+
message: TranslationConfig;
|
13354
|
+
validator: import(".").JSONSchema;
|
13355
|
+
}[] | undefined;
|
13356
|
+
required?: boolean | undefined;
|
13357
|
+
conditionals?: ({
|
13358
|
+
type: "SHOW";
|
13359
|
+
conditional: import(".").JSONSchema;
|
13360
|
+
} | {
|
13361
|
+
type: "ENABLE";
|
13362
|
+
conditional: import(".").JSONSchema;
|
13363
|
+
} | {
|
13364
|
+
type: "DISPLAY_ON_REVIEW";
|
13365
|
+
conditional: import(".").JSONSchema;
|
13366
|
+
})[] | undefined;
|
13367
|
+
secured?: boolean | undefined;
|
13368
|
+
placeholder?: TranslationConfig | undefined;
|
13369
|
+
helperText?: TranslationConfig | undefined;
|
13370
|
+
hideLabel?: boolean | undefined;
|
13371
|
+
uncorrectable?: boolean | undefined;
|
12438
13372
|
})[];
|
12439
13373
|
conditional?: import(".").JSONSchema | undefined;
|
12440
13374
|
}, {
|
@@ -13939,6 +14873,116 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
13939
14873
|
} | undefined;
|
13940
14874
|
hideLabel?: boolean | undefined;
|
13941
14875
|
uncorrectable?: boolean | undefined;
|
14876
|
+
} | {
|
14877
|
+
type: "BUTTON";
|
14878
|
+
id: string;
|
14879
|
+
label: {
|
14880
|
+
id: string;
|
14881
|
+
description: string;
|
14882
|
+
defaultMessage: string;
|
14883
|
+
};
|
14884
|
+
configuration: {
|
14885
|
+
onClick: {
|
14886
|
+
$$field: string;
|
14887
|
+
};
|
14888
|
+
buttonLabel: {
|
14889
|
+
id: string;
|
14890
|
+
description: string;
|
14891
|
+
defaultMessage: string;
|
14892
|
+
};
|
14893
|
+
icon?: string | undefined;
|
14894
|
+
shouldHandleLoadingState?: boolean | undefined;
|
14895
|
+
loadingLabel?: {
|
14896
|
+
id: string;
|
14897
|
+
description: string;
|
14898
|
+
defaultMessage: string;
|
14899
|
+
} | undefined;
|
14900
|
+
};
|
14901
|
+
parent?: {
|
14902
|
+
$$field: string;
|
14903
|
+
} | undefined;
|
14904
|
+
validation?: {
|
14905
|
+
message: {
|
14906
|
+
id: string;
|
14907
|
+
description: string;
|
14908
|
+
defaultMessage: string;
|
14909
|
+
};
|
14910
|
+
validator: import(".").JSONSchema;
|
14911
|
+
}[] | undefined;
|
14912
|
+
required?: boolean | undefined;
|
14913
|
+
conditionals?: ({
|
14914
|
+
type: "SHOW";
|
14915
|
+
conditional: import(".").JSONSchema;
|
14916
|
+
} | {
|
14917
|
+
type: "ENABLE";
|
14918
|
+
conditional: import(".").JSONSchema;
|
14919
|
+
} | {
|
14920
|
+
type: "DISPLAY_ON_REVIEW";
|
14921
|
+
conditional: import(".").JSONSchema;
|
14922
|
+
})[] | undefined;
|
14923
|
+
secured?: boolean | undefined;
|
14924
|
+
placeholder?: {
|
14925
|
+
id: string;
|
14926
|
+
description: string;
|
14927
|
+
defaultMessage: string;
|
14928
|
+
} | undefined;
|
14929
|
+
helperText?: {
|
14930
|
+
id: string;
|
14931
|
+
description: string;
|
14932
|
+
defaultMessage: string;
|
14933
|
+
} | undefined;
|
14934
|
+
hideLabel?: boolean | undefined;
|
14935
|
+
uncorrectable?: boolean | undefined;
|
14936
|
+
} | {
|
14937
|
+
type: "HTTP";
|
14938
|
+
id: string;
|
14939
|
+
label: {
|
14940
|
+
id: string;
|
14941
|
+
description: string;
|
14942
|
+
defaultMessage: string;
|
14943
|
+
};
|
14944
|
+
configuration: {
|
14945
|
+
method: "POST" | "DELETE" | "GET" | "PUT";
|
14946
|
+
url: string;
|
14947
|
+
params?: Record<string, string> | undefined;
|
14948
|
+
headers?: Record<string, string> | undefined;
|
14949
|
+
body?: Record<string, string> | undefined;
|
14950
|
+
};
|
14951
|
+
parent?: {
|
14952
|
+
$$field: string;
|
14953
|
+
} | undefined;
|
14954
|
+
validation?: {
|
14955
|
+
message: {
|
14956
|
+
id: string;
|
14957
|
+
description: string;
|
14958
|
+
defaultMessage: string;
|
14959
|
+
};
|
14960
|
+
validator: import(".").JSONSchema;
|
14961
|
+
}[] | undefined;
|
14962
|
+
required?: boolean | undefined;
|
14963
|
+
conditionals?: ({
|
14964
|
+
type: "SHOW";
|
14965
|
+
conditional: import(".").JSONSchema;
|
14966
|
+
} | {
|
14967
|
+
type: "ENABLE";
|
14968
|
+
conditional: import(".").JSONSchema;
|
14969
|
+
} | {
|
14970
|
+
type: "DISPLAY_ON_REVIEW";
|
14971
|
+
conditional: import(".").JSONSchema;
|
14972
|
+
})[] | undefined;
|
14973
|
+
secured?: boolean | undefined;
|
14974
|
+
placeholder?: {
|
14975
|
+
id: string;
|
14976
|
+
description: string;
|
14977
|
+
defaultMessage: string;
|
14978
|
+
} | undefined;
|
14979
|
+
helperText?: {
|
14980
|
+
id: string;
|
14981
|
+
description: string;
|
14982
|
+
defaultMessage: string;
|
14983
|
+
} | undefined;
|
14984
|
+
hideLabel?: boolean | undefined;
|
14985
|
+
uncorrectable?: boolean | undefined;
|
13942
14986
|
})[];
|
13943
14987
|
conditional?: import(".").JSONSchema | undefined;
|
13944
14988
|
}>;
|