@opencrvs/toolkit 1.8.1-rc.06c1a33 → 1.8.1-rc.0c6d168
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/build.sh +5 -0
- package/dist/commons/api/router.d.ts +1 -1347
- package/dist/commons/events/ActionConfig.d.ts +3777 -13563
- package/dist/commons/events/ActionDocument.d.ts +1 -3036
- package/dist/commons/events/ActionInput.d.ts +0 -2460
- package/dist/commons/events/AdvancedSearchConfig.d.ts +3 -93
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -60
- package/dist/commons/events/Draft.d.ts +0 -192
- package/dist/commons/events/EventConfig.d.ts +3864 -8123
- package/dist/commons/events/EventDocument.d.ts +0 -1704
- package/dist/commons/events/EventIndex.d.ts +1 -47
- package/dist/commons/events/FieldConfig.d.ts +990 -1752
- package/dist/commons/events/FieldType.d.ts +1 -3
- package/dist/commons/events/FieldTypeMapping.d.ts +3 -85
- package/dist/commons/events/FieldValue.d.ts +3 -62
- package/dist/commons/events/FormConfig.d.ts +1148 -5750
- package/dist/commons/events/PageConfig.d.ts +1206 -2352
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +16 -727
- package/dist/commons/events/test.utils.d.ts +0 -42
- package/dist/commons/events/utils.d.ts +18 -1319
- package/dist/commons/notification/UserNotifications.d.ts +547 -0
- package/dist/commons/notification/index.d.ts +2 -0
- package/dist/events/index.js +19 -74
- package/dist/notification/index.d.ts +2 -0
- package/dist/notification/index.d.ts.map +1 -0
- package/dist/notification/index.js +5333 -0
- package/package.json +3 -2
- package/tsconfig.json +2 -1
- package/tsconfig.tsbuildinfo +1 -1
@@ -4504,85 +4504,18 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4504
4504
|
} | undefined;
|
4505
4505
|
hideLabel?: boolean | undefined;
|
4506
4506
|
uncorrectable?: boolean | undefined;
|
4507
|
-
}>,
|
4508
|
-
|
4509
|
-
|
4510
|
-
|
4511
|
-
|
4512
|
-
|
4513
|
-
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
4517
|
-
$$field: string;
|
4518
|
-
}, {
|
4519
|
-
$$field: string;
|
4520
|
-
}>>;
|
4521
|
-
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4522
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4523
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4524
|
-
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4525
|
-
id: string;
|
4526
|
-
description: string;
|
4527
|
-
defaultMessage: string;
|
4528
|
-
}>>;
|
4529
|
-
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
4530
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
4531
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4532
|
-
id: string;
|
4533
|
-
description: string;
|
4534
|
-
defaultMessage: string;
|
4535
|
-
}>;
|
4536
|
-
}, "strip", z.ZodTypeAny, {
|
4537
|
-
message: TranslationConfig;
|
4538
|
-
validator: import(".").JSONSchema;
|
4539
|
-
}, {
|
4540
|
-
message: {
|
4541
|
-
id: string;
|
4542
|
-
description: string;
|
4543
|
-
defaultMessage: string;
|
4544
|
-
};
|
4545
|
-
validator: import(".").JSONSchema;
|
4546
|
-
}>, "many">>>;
|
4547
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4548
|
-
id: string;
|
4549
|
-
description: string;
|
4550
|
-
defaultMessage: string;
|
4551
|
-
}>>;
|
4552
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4553
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4554
|
-
}, {
|
4555
|
-
type: z.ZodLiteral<"BUTTON">;
|
4556
|
-
configuration: z.ZodObject<{
|
4557
|
-
icon: z.ZodOptional<z.ZodString>;
|
4558
|
-
loading: z.ZodOptional<z.ZodBoolean>;
|
4559
|
-
text: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4560
|
-
id: string;
|
4561
|
-
description: string;
|
4562
|
-
defaultMessage: string;
|
4563
|
-
}>;
|
4564
|
-
}, "strip", z.ZodTypeAny, {
|
4565
|
-
text: TranslationConfig;
|
4566
|
-
loading?: boolean | undefined;
|
4567
|
-
icon?: string | undefined;
|
4568
|
-
}, {
|
4569
|
-
text: {
|
4570
|
-
id: string;
|
4571
|
-
description: string;
|
4572
|
-
defaultMessage: string;
|
4573
|
-
};
|
4574
|
-
loading?: boolean | undefined;
|
4575
|
-
icon?: string | undefined;
|
4576
|
-
}>;
|
4577
|
-
}>, "strip", z.ZodTypeAny, {
|
4578
|
-
type: "BUTTON";
|
4507
|
+
}>]>, "many">;
|
4508
|
+
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
4509
|
+
}, {
|
4510
|
+
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
4511
|
+
}>, "strip", z.ZodTypeAny, {
|
4512
|
+
type: "FORM";
|
4513
|
+
id: string;
|
4514
|
+
title: TranslationConfig;
|
4515
|
+
fields: ({
|
4516
|
+
type: "DIVIDER";
|
4579
4517
|
id: string;
|
4580
4518
|
label: TranslationConfig;
|
4581
|
-
configuration: {
|
4582
|
-
text: TranslationConfig;
|
4583
|
-
loading?: boolean | undefined;
|
4584
|
-
icon?: string | undefined;
|
4585
|
-
};
|
4586
4519
|
parent?: {
|
4587
4520
|
$$field: string;
|
4588
4521
|
} | undefined;
|
@@ -4606,32 +4539,15 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4606
4539
|
helperText?: TranslationConfig | undefined;
|
4607
4540
|
hideLabel?: boolean | undefined;
|
4608
4541
|
uncorrectable?: boolean | undefined;
|
4609
|
-
}
|
4610
|
-
type: "
|
4542
|
+
} | {
|
4543
|
+
type: "TEXT";
|
4611
4544
|
id: string;
|
4612
|
-
label:
|
4613
|
-
id: string;
|
4614
|
-
description: string;
|
4615
|
-
defaultMessage: string;
|
4616
|
-
};
|
4617
|
-
configuration: {
|
4618
|
-
text: {
|
4619
|
-
id: string;
|
4620
|
-
description: string;
|
4621
|
-
defaultMessage: string;
|
4622
|
-
};
|
4623
|
-
loading?: boolean | undefined;
|
4624
|
-
icon?: string | undefined;
|
4625
|
-
};
|
4545
|
+
label: TranslationConfig;
|
4626
4546
|
parent?: {
|
4627
4547
|
$$field: string;
|
4628
4548
|
} | undefined;
|
4629
4549
|
validation?: {
|
4630
|
-
message:
|
4631
|
-
id: string;
|
4632
|
-
description: string;
|
4633
|
-
defaultMessage: string;
|
4634
|
-
};
|
4550
|
+
message: TranslationConfig;
|
4635
4551
|
validator: import(".").JSONSchema;
|
4636
4552
|
}[] | undefined;
|
4637
4553
|
required?: boolean | undefined;
|
@@ -4646,148 +4562,21 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4646
4562
|
conditional: import(".").JSONSchema;
|
4647
4563
|
})[] | undefined;
|
4648
4564
|
secured?: boolean | undefined;
|
4649
|
-
placeholder?:
|
4650
|
-
|
4651
|
-
description: string;
|
4652
|
-
defaultMessage: string;
|
4653
|
-
} | undefined;
|
4654
|
-
helperText?: {
|
4655
|
-
id: string;
|
4656
|
-
description: string;
|
4657
|
-
defaultMessage: string;
|
4658
|
-
} | undefined;
|
4565
|
+
placeholder?: TranslationConfig | undefined;
|
4566
|
+
helperText?: TranslationConfig | undefined;
|
4659
4567
|
hideLabel?: boolean | undefined;
|
4660
4568
|
uncorrectable?: boolean | undefined;
|
4661
|
-
|
4662
|
-
|
4663
|
-
|
4664
|
-
|
4665
|
-
|
4666
|
-
|
4667
|
-
}
|
4668
|
-
|
4669
|
-
|
4670
|
-
}, "strip", z.ZodTypeAny, {
|
4671
|
-
$$field: string;
|
4672
|
-
}, {
|
4673
|
-
$$field: string;
|
4674
|
-
}>>;
|
4675
|
-
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4676
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4677
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4678
|
-
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4679
|
-
id: string;
|
4680
|
-
description: string;
|
4681
|
-
defaultMessage: string;
|
4682
|
-
}>>;
|
4683
|
-
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
4684
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
4685
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4686
|
-
id: string;
|
4687
|
-
description: string;
|
4688
|
-
defaultMessage: string;
|
4689
|
-
}>;
|
4690
|
-
}, "strip", z.ZodTypeAny, {
|
4691
|
-
message: TranslationConfig;
|
4692
|
-
validator: import(".").JSONSchema;
|
4693
|
-
}, {
|
4694
|
-
message: {
|
4695
|
-
id: string;
|
4696
|
-
description: string;
|
4697
|
-
defaultMessage: string;
|
4698
|
-
};
|
4699
|
-
validator: import(".").JSONSchema;
|
4700
|
-
}>, "many">>>;
|
4701
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4702
|
-
id: string;
|
4703
|
-
description: string;
|
4704
|
-
defaultMessage: string;
|
4705
|
-
}>>;
|
4706
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4707
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4708
|
-
}, {
|
4709
|
-
type: z.ZodLiteral<"HTTP">;
|
4710
|
-
defaultValue: z.ZodOptional<z.ZodObject<{
|
4711
|
-
loading: z.ZodBoolean;
|
4712
|
-
error: z.ZodNullable<z.ZodObject<{
|
4713
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
4714
|
-
message: z.ZodString;
|
4715
|
-
}, "strip", z.ZodTypeAny, {
|
4716
|
-
message: string;
|
4717
|
-
statusCode: number | null;
|
4718
|
-
}, {
|
4719
|
-
message: string;
|
4720
|
-
statusCode: number | null;
|
4721
|
-
}>>;
|
4722
|
-
data: z.ZodAny;
|
4723
|
-
trackingValue: z.ZodOptional<z.ZodString>;
|
4724
|
-
}, "strip", z.ZodTypeAny, {
|
4725
|
-
error: {
|
4726
|
-
message: string;
|
4727
|
-
statusCode: number | null;
|
4728
|
-
} | null;
|
4729
|
-
loading: boolean;
|
4730
|
-
data?: any;
|
4731
|
-
trackingValue?: string | undefined;
|
4732
|
-
}, {
|
4733
|
-
error: {
|
4734
|
-
message: string;
|
4735
|
-
statusCode: number | null;
|
4736
|
-
} | null;
|
4737
|
-
loading: boolean;
|
4738
|
-
data?: any;
|
4739
|
-
trackingValue?: string | undefined;
|
4740
|
-
}>>;
|
4741
|
-
configuration: z.ZodObject<{
|
4742
|
-
trigger: z.ZodObject<{
|
4743
|
-
$$field: z.ZodString;
|
4744
|
-
}, "strip", z.ZodTypeAny, {
|
4745
|
-
$$field: string;
|
4746
|
-
}, {
|
4747
|
-
$$field: string;
|
4748
|
-
}>;
|
4749
|
-
url: z.ZodString;
|
4750
|
-
method: z.ZodEnum<["GET", "POST", "PUT", "DELETE"]>;
|
4751
|
-
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4752
|
-
body: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4753
|
-
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
4754
|
-
timeout: z.ZodDefault<z.ZodNumber>;
|
4755
|
-
}, "strip", z.ZodTypeAny, {
|
4756
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
4757
|
-
trigger: {
|
4758
|
-
$$field: string;
|
4759
|
-
};
|
4760
|
-
url: string;
|
4761
|
-
timeout: number;
|
4762
|
-
params?: Record<string, string> | undefined;
|
4763
|
-
headers?: Record<string, string> | undefined;
|
4764
|
-
body?: Record<string, string> | undefined;
|
4765
|
-
}, {
|
4766
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
4767
|
-
trigger: {
|
4768
|
-
$$field: string;
|
4769
|
-
};
|
4770
|
-
url: string;
|
4771
|
-
params?: Record<string, string> | undefined;
|
4772
|
-
headers?: Record<string, string> | undefined;
|
4773
|
-
body?: Record<string, string> | undefined;
|
4774
|
-
timeout?: number | undefined;
|
4775
|
-
}>;
|
4776
|
-
}>, "strip", z.ZodTypeAny, {
|
4777
|
-
type: "HTTP";
|
4569
|
+
defaultValue?: string | undefined;
|
4570
|
+
configuration?: {
|
4571
|
+
type?: "text" | "password" | undefined;
|
4572
|
+
maxLength?: number | undefined;
|
4573
|
+
prefix?: TranslationConfig | undefined;
|
4574
|
+
postfix?: TranslationConfig | undefined;
|
4575
|
+
} | undefined;
|
4576
|
+
} | {
|
4577
|
+
type: "NUMBER";
|
4778
4578
|
id: string;
|
4779
4579
|
label: TranslationConfig;
|
4780
|
-
configuration: {
|
4781
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
4782
|
-
trigger: {
|
4783
|
-
$$field: string;
|
4784
|
-
};
|
4785
|
-
url: string;
|
4786
|
-
timeout: number;
|
4787
|
-
params?: Record<string, string> | undefined;
|
4788
|
-
headers?: Record<string, string> | undefined;
|
4789
|
-
body?: Record<string, string> | undefined;
|
4790
|
-
};
|
4791
4580
|
parent?: {
|
4792
4581
|
$$field: string;
|
4793
4582
|
} | undefined;
|
@@ -4811,43 +4600,22 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4811
4600
|
helperText?: TranslationConfig | undefined;
|
4812
4601
|
hideLabel?: boolean | undefined;
|
4813
4602
|
uncorrectable?: boolean | undefined;
|
4814
|
-
defaultValue?:
|
4815
|
-
|
4816
|
-
|
4817
|
-
|
4818
|
-
|
4819
|
-
|
4820
|
-
data?: any;
|
4821
|
-
trackingValue?: string | undefined;
|
4603
|
+
defaultValue?: number | undefined;
|
4604
|
+
configuration?: {
|
4605
|
+
prefix?: TranslationConfig | undefined;
|
4606
|
+
postfix?: TranslationConfig | undefined;
|
4607
|
+
min?: number | undefined;
|
4608
|
+
max?: number | undefined;
|
4822
4609
|
} | undefined;
|
4823
|
-
}
|
4824
|
-
type: "
|
4610
|
+
} | {
|
4611
|
+
type: "TEXTAREA";
|
4825
4612
|
id: string;
|
4826
|
-
label:
|
4827
|
-
id: string;
|
4828
|
-
description: string;
|
4829
|
-
defaultMessage: string;
|
4830
|
-
};
|
4831
|
-
configuration: {
|
4832
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
4833
|
-
trigger: {
|
4834
|
-
$$field: string;
|
4835
|
-
};
|
4836
|
-
url: string;
|
4837
|
-
params?: Record<string, string> | undefined;
|
4838
|
-
headers?: Record<string, string> | undefined;
|
4839
|
-
body?: Record<string, string> | undefined;
|
4840
|
-
timeout?: number | undefined;
|
4841
|
-
};
|
4613
|
+
label: TranslationConfig;
|
4842
4614
|
parent?: {
|
4843
4615
|
$$field: string;
|
4844
4616
|
} | undefined;
|
4845
4617
|
validation?: {
|
4846
|
-
message:
|
4847
|
-
id: string;
|
4848
|
-
description: string;
|
4849
|
-
defaultMessage: string;
|
4850
|
-
};
|
4618
|
+
message: TranslationConfig;
|
4851
4619
|
validator: import(".").JSONSchema;
|
4852
4620
|
}[] | undefined;
|
4853
4621
|
required?: boolean | undefined;
|
@@ -4862,39 +4630,27 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4862
4630
|
conditional: import(".").JSONSchema;
|
4863
4631
|
})[] | undefined;
|
4864
4632
|
secured?: boolean | undefined;
|
4865
|
-
placeholder?:
|
4866
|
-
|
4867
|
-
description: string;
|
4868
|
-
defaultMessage: string;
|
4869
|
-
} | undefined;
|
4870
|
-
helperText?: {
|
4871
|
-
id: string;
|
4872
|
-
description: string;
|
4873
|
-
defaultMessage: string;
|
4874
|
-
} | undefined;
|
4633
|
+
placeholder?: TranslationConfig | undefined;
|
4634
|
+
helperText?: TranslationConfig | undefined;
|
4875
4635
|
hideLabel?: boolean | undefined;
|
4876
4636
|
uncorrectable?: boolean | undefined;
|
4877
|
-
defaultValue?:
|
4878
|
-
|
4879
|
-
|
4880
|
-
|
4881
|
-
|
4882
|
-
|
4883
|
-
|
4884
|
-
trackingValue?: string | undefined;
|
4637
|
+
defaultValue?: string | undefined;
|
4638
|
+
configuration?: {
|
4639
|
+
maxLength?: number | undefined;
|
4640
|
+
prefix?: TranslationConfig | undefined;
|
4641
|
+
postfix?: TranslationConfig | undefined;
|
4642
|
+
rows?: number | undefined;
|
4643
|
+
cols?: number | undefined;
|
4885
4644
|
} | undefined;
|
4886
|
-
}
|
4887
|
-
|
4888
|
-
}, {
|
4889
|
-
type: z.ZodDefault<z.ZodLiteral<"FORM">>;
|
4890
|
-
}>, "strip", z.ZodTypeAny, {
|
4891
|
-
type: "FORM";
|
4892
|
-
id: string;
|
4893
|
-
title: TranslationConfig;
|
4894
|
-
fields: ({
|
4895
|
-
type: "DIVIDER";
|
4645
|
+
} | {
|
4646
|
+
type: "SIGNATURE";
|
4896
4647
|
id: string;
|
4897
4648
|
label: TranslationConfig;
|
4649
|
+
configuration: {
|
4650
|
+
maxFileSize: number;
|
4651
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4652
|
+
};
|
4653
|
+
signaturePromptLabel: TranslationConfig;
|
4898
4654
|
parent?: {
|
4899
4655
|
$$field: string;
|
4900
4656
|
} | undefined;
|
@@ -4918,8 +4674,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4918
4674
|
helperText?: TranslationConfig | undefined;
|
4919
4675
|
hideLabel?: boolean | undefined;
|
4920
4676
|
uncorrectable?: boolean | undefined;
|
4677
|
+
defaultValue?: string | undefined;
|
4921
4678
|
} | {
|
4922
|
-
type: "
|
4679
|
+
type: "EMAIL";
|
4923
4680
|
id: string;
|
4924
4681
|
label: TranslationConfig;
|
4925
4682
|
parent?: {
|
@@ -4947,13 +4704,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4947
4704
|
uncorrectable?: boolean | undefined;
|
4948
4705
|
defaultValue?: string | undefined;
|
4949
4706
|
configuration?: {
|
4950
|
-
type?: "text" | "password" | undefined;
|
4951
4707
|
maxLength?: number | undefined;
|
4952
|
-
prefix?: TranslationConfig | undefined;
|
4953
|
-
postfix?: TranslationConfig | undefined;
|
4954
4708
|
} | undefined;
|
4955
4709
|
} | {
|
4956
|
-
type: "
|
4710
|
+
type: "DATE";
|
4957
4711
|
id: string;
|
4958
4712
|
label: TranslationConfig;
|
4959
4713
|
parent?: {
|
@@ -4979,145 +4733,12 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4979
4733
|
helperText?: TranslationConfig | undefined;
|
4980
4734
|
hideLabel?: boolean | undefined;
|
4981
4735
|
uncorrectable?: boolean | undefined;
|
4982
|
-
defaultValue?:
|
4736
|
+
defaultValue?: string | undefined;
|
4983
4737
|
configuration?: {
|
4984
|
-
|
4985
|
-
postfix?: TranslationConfig | undefined;
|
4986
|
-
min?: number | undefined;
|
4987
|
-
max?: number | undefined;
|
4738
|
+
notice?: TranslationConfig | undefined;
|
4988
4739
|
} | undefined;
|
4989
4740
|
} | {
|
4990
|
-
type: "
|
4991
|
-
id: string;
|
4992
|
-
label: TranslationConfig;
|
4993
|
-
parent?: {
|
4994
|
-
$$field: string;
|
4995
|
-
} | undefined;
|
4996
|
-
validation?: {
|
4997
|
-
message: TranslationConfig;
|
4998
|
-
validator: import(".").JSONSchema;
|
4999
|
-
}[] | undefined;
|
5000
|
-
required?: boolean | undefined;
|
5001
|
-
conditionals?: ({
|
5002
|
-
type: "SHOW";
|
5003
|
-
conditional: import(".").JSONSchema;
|
5004
|
-
} | {
|
5005
|
-
type: "ENABLE";
|
5006
|
-
conditional: import(".").JSONSchema;
|
5007
|
-
} | {
|
5008
|
-
type: "DISPLAY_ON_REVIEW";
|
5009
|
-
conditional: import(".").JSONSchema;
|
5010
|
-
})[] | undefined;
|
5011
|
-
secured?: boolean | undefined;
|
5012
|
-
placeholder?: TranslationConfig | undefined;
|
5013
|
-
helperText?: TranslationConfig | undefined;
|
5014
|
-
hideLabel?: boolean | undefined;
|
5015
|
-
uncorrectable?: boolean | undefined;
|
5016
|
-
defaultValue?: string | undefined;
|
5017
|
-
configuration?: {
|
5018
|
-
maxLength?: number | undefined;
|
5019
|
-
prefix?: TranslationConfig | undefined;
|
5020
|
-
postfix?: TranslationConfig | undefined;
|
5021
|
-
rows?: number | undefined;
|
5022
|
-
cols?: number | undefined;
|
5023
|
-
} | undefined;
|
5024
|
-
} | {
|
5025
|
-
type: "SIGNATURE";
|
5026
|
-
id: string;
|
5027
|
-
label: TranslationConfig;
|
5028
|
-
configuration: {
|
5029
|
-
maxFileSize: number;
|
5030
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
5031
|
-
};
|
5032
|
-
signaturePromptLabel: TranslationConfig;
|
5033
|
-
parent?: {
|
5034
|
-
$$field: string;
|
5035
|
-
} | undefined;
|
5036
|
-
validation?: {
|
5037
|
-
message: TranslationConfig;
|
5038
|
-
validator: import(".").JSONSchema;
|
5039
|
-
}[] | undefined;
|
5040
|
-
required?: boolean | undefined;
|
5041
|
-
conditionals?: ({
|
5042
|
-
type: "SHOW";
|
5043
|
-
conditional: import(".").JSONSchema;
|
5044
|
-
} | {
|
5045
|
-
type: "ENABLE";
|
5046
|
-
conditional: import(".").JSONSchema;
|
5047
|
-
} | {
|
5048
|
-
type: "DISPLAY_ON_REVIEW";
|
5049
|
-
conditional: import(".").JSONSchema;
|
5050
|
-
})[] | undefined;
|
5051
|
-
secured?: boolean | undefined;
|
5052
|
-
placeholder?: TranslationConfig | undefined;
|
5053
|
-
helperText?: TranslationConfig | undefined;
|
5054
|
-
hideLabel?: boolean | undefined;
|
5055
|
-
uncorrectable?: boolean | undefined;
|
5056
|
-
defaultValue?: string | undefined;
|
5057
|
-
} | {
|
5058
|
-
type: "EMAIL";
|
5059
|
-
id: string;
|
5060
|
-
label: TranslationConfig;
|
5061
|
-
parent?: {
|
5062
|
-
$$field: string;
|
5063
|
-
} | undefined;
|
5064
|
-
validation?: {
|
5065
|
-
message: TranslationConfig;
|
5066
|
-
validator: import(".").JSONSchema;
|
5067
|
-
}[] | undefined;
|
5068
|
-
required?: boolean | undefined;
|
5069
|
-
conditionals?: ({
|
5070
|
-
type: "SHOW";
|
5071
|
-
conditional: import(".").JSONSchema;
|
5072
|
-
} | {
|
5073
|
-
type: "ENABLE";
|
5074
|
-
conditional: import(".").JSONSchema;
|
5075
|
-
} | {
|
5076
|
-
type: "DISPLAY_ON_REVIEW";
|
5077
|
-
conditional: import(".").JSONSchema;
|
5078
|
-
})[] | undefined;
|
5079
|
-
secured?: boolean | undefined;
|
5080
|
-
placeholder?: TranslationConfig | undefined;
|
5081
|
-
helperText?: TranslationConfig | undefined;
|
5082
|
-
hideLabel?: boolean | undefined;
|
5083
|
-
uncorrectable?: boolean | undefined;
|
5084
|
-
defaultValue?: string | undefined;
|
5085
|
-
configuration?: {
|
5086
|
-
maxLength?: number | undefined;
|
5087
|
-
} | undefined;
|
5088
|
-
} | {
|
5089
|
-
type: "DATE";
|
5090
|
-
id: string;
|
5091
|
-
label: TranslationConfig;
|
5092
|
-
parent?: {
|
5093
|
-
$$field: string;
|
5094
|
-
} | undefined;
|
5095
|
-
validation?: {
|
5096
|
-
message: TranslationConfig;
|
5097
|
-
validator: import(".").JSONSchema;
|
5098
|
-
}[] | undefined;
|
5099
|
-
required?: boolean | undefined;
|
5100
|
-
conditionals?: ({
|
5101
|
-
type: "SHOW";
|
5102
|
-
conditional: import(".").JSONSchema;
|
5103
|
-
} | {
|
5104
|
-
type: "ENABLE";
|
5105
|
-
conditional: import(".").JSONSchema;
|
5106
|
-
} | {
|
5107
|
-
type: "DISPLAY_ON_REVIEW";
|
5108
|
-
conditional: import(".").JSONSchema;
|
5109
|
-
})[] | undefined;
|
5110
|
-
secured?: boolean | undefined;
|
5111
|
-
placeholder?: TranslationConfig | undefined;
|
5112
|
-
helperText?: TranslationConfig | undefined;
|
5113
|
-
hideLabel?: boolean | undefined;
|
5114
|
-
uncorrectable?: boolean | undefined;
|
5115
|
-
defaultValue?: string | undefined;
|
5116
|
-
configuration?: {
|
5117
|
-
notice?: TranslationConfig | undefined;
|
5118
|
-
} | undefined;
|
5119
|
-
} | {
|
5120
|
-
type: "TIME";
|
4741
|
+
type: "TIME";
|
5121
4742
|
id: string;
|
5122
4743
|
label: TranslationConfig;
|
5123
4744
|
parent?: {
|
@@ -5836,85 +5457,6 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
5836
5457
|
helperText?: TranslationConfig | undefined;
|
5837
5458
|
hideLabel?: boolean | undefined;
|
5838
5459
|
uncorrectable?: boolean | undefined;
|
5839
|
-
} | {
|
5840
|
-
type: "BUTTON";
|
5841
|
-
id: string;
|
5842
|
-
label: TranslationConfig;
|
5843
|
-
configuration: {
|
5844
|
-
text: TranslationConfig;
|
5845
|
-
loading?: boolean | undefined;
|
5846
|
-
icon?: string | undefined;
|
5847
|
-
};
|
5848
|
-
parent?: {
|
5849
|
-
$$field: string;
|
5850
|
-
} | undefined;
|
5851
|
-
validation?: {
|
5852
|
-
message: TranslationConfig;
|
5853
|
-
validator: import(".").JSONSchema;
|
5854
|
-
}[] | undefined;
|
5855
|
-
required?: boolean | undefined;
|
5856
|
-
conditionals?: ({
|
5857
|
-
type: "SHOW";
|
5858
|
-
conditional: import(".").JSONSchema;
|
5859
|
-
} | {
|
5860
|
-
type: "ENABLE";
|
5861
|
-
conditional: import(".").JSONSchema;
|
5862
|
-
} | {
|
5863
|
-
type: "DISPLAY_ON_REVIEW";
|
5864
|
-
conditional: import(".").JSONSchema;
|
5865
|
-
})[] | undefined;
|
5866
|
-
secured?: boolean | undefined;
|
5867
|
-
placeholder?: TranslationConfig | undefined;
|
5868
|
-
helperText?: TranslationConfig | undefined;
|
5869
|
-
hideLabel?: boolean | undefined;
|
5870
|
-
uncorrectable?: boolean | undefined;
|
5871
|
-
} | {
|
5872
|
-
type: "HTTP";
|
5873
|
-
id: string;
|
5874
|
-
label: TranslationConfig;
|
5875
|
-
configuration: {
|
5876
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
5877
|
-
trigger: {
|
5878
|
-
$$field: string;
|
5879
|
-
};
|
5880
|
-
url: string;
|
5881
|
-
timeout: number;
|
5882
|
-
params?: Record<string, string> | undefined;
|
5883
|
-
headers?: Record<string, string> | undefined;
|
5884
|
-
body?: Record<string, string> | undefined;
|
5885
|
-
};
|
5886
|
-
parent?: {
|
5887
|
-
$$field: string;
|
5888
|
-
} | undefined;
|
5889
|
-
validation?: {
|
5890
|
-
message: TranslationConfig;
|
5891
|
-
validator: import(".").JSONSchema;
|
5892
|
-
}[] | undefined;
|
5893
|
-
required?: boolean | undefined;
|
5894
|
-
conditionals?: ({
|
5895
|
-
type: "SHOW";
|
5896
|
-
conditional: import(".").JSONSchema;
|
5897
|
-
} | {
|
5898
|
-
type: "ENABLE";
|
5899
|
-
conditional: import(".").JSONSchema;
|
5900
|
-
} | {
|
5901
|
-
type: "DISPLAY_ON_REVIEW";
|
5902
|
-
conditional: import(".").JSONSchema;
|
5903
|
-
})[] | undefined;
|
5904
|
-
secured?: boolean | undefined;
|
5905
|
-
placeholder?: TranslationConfig | undefined;
|
5906
|
-
helperText?: TranslationConfig | undefined;
|
5907
|
-
hideLabel?: boolean | undefined;
|
5908
|
-
uncorrectable?: boolean | undefined;
|
5909
|
-
defaultValue?: {
|
5910
|
-
error: {
|
5911
|
-
message: string;
|
5912
|
-
statusCode: number | null;
|
5913
|
-
} | null;
|
5914
|
-
loading: boolean;
|
5915
|
-
data?: any;
|
5916
|
-
trackingValue?: string | undefined;
|
5917
|
-
} | undefined;
|
5918
5460
|
})[];
|
5919
5461
|
conditional?: import(".").JSONSchema | undefined;
|
5920
5462
|
}, {
|
@@ -7401,189 +6943,74 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
7401
6943
|
} | undefined;
|
7402
6944
|
hideLabel?: boolean | undefined;
|
7403
6945
|
uncorrectable?: boolean | undefined;
|
7404
|
-
}
|
7405
|
-
|
7406
|
-
|
6946
|
+
})[];
|
6947
|
+
type?: "FORM" | undefined;
|
6948
|
+
conditional?: import(".").JSONSchema | undefined;
|
6949
|
+
}>;
|
6950
|
+
export type FormPageConfig = z.infer<typeof FormPageConfig>;
|
6951
|
+
export type FormPageConfigInput = z.input<typeof FormPageConfig>;
|
6952
|
+
export declare const VerificationActionConfig: z.ZodObject<{
|
6953
|
+
verify: z.ZodObject<{
|
6954
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6955
|
+
id: string;
|
6956
|
+
description: string;
|
6957
|
+
defaultMessage: string;
|
6958
|
+
}>;
|
6959
|
+
}, "strip", z.ZodTypeAny, {
|
6960
|
+
label: TranslationConfig;
|
6961
|
+
}, {
|
7407
6962
|
label: {
|
7408
6963
|
id: string;
|
7409
6964
|
description: string;
|
7410
6965
|
defaultMessage: string;
|
7411
6966
|
};
|
7412
|
-
|
7413
|
-
|
6967
|
+
}>;
|
6968
|
+
cancel: z.ZodObject<{
|
6969
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6970
|
+
id: string;
|
6971
|
+
description: string;
|
6972
|
+
defaultMessage: string;
|
6973
|
+
}>;
|
6974
|
+
confirmation: z.ZodObject<{
|
6975
|
+
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6976
|
+
id: string;
|
6977
|
+
description: string;
|
6978
|
+
defaultMessage: string;
|
6979
|
+
}>;
|
6980
|
+
body: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6981
|
+
id: string;
|
6982
|
+
description: string;
|
6983
|
+
defaultMessage: string;
|
6984
|
+
}>;
|
6985
|
+
}, "strip", z.ZodTypeAny, {
|
6986
|
+
title: TranslationConfig;
|
6987
|
+
body: TranslationConfig;
|
6988
|
+
}, {
|
6989
|
+
title: {
|
6990
|
+
id: string;
|
6991
|
+
description: string;
|
6992
|
+
defaultMessage: string;
|
6993
|
+
};
|
6994
|
+
body: {
|
7414
6995
|
id: string;
|
7415
6996
|
description: string;
|
7416
6997
|
defaultMessage: string;
|
7417
6998
|
};
|
7418
|
-
|
7419
|
-
|
6999
|
+
}>;
|
7000
|
+
}, "strip", z.ZodTypeAny, {
|
7001
|
+
label: TranslationConfig;
|
7002
|
+
confirmation: {
|
7003
|
+
title: TranslationConfig;
|
7004
|
+
body: TranslationConfig;
|
7420
7005
|
};
|
7421
|
-
|
7422
|
-
|
7423
|
-
|
7424
|
-
|
7425
|
-
|
7426
|
-
|
7427
|
-
|
7428
|
-
|
7429
|
-
};
|
7430
|
-
validator: import(".").JSONSchema;
|
7431
|
-
}[] | undefined;
|
7432
|
-
required?: boolean | undefined;
|
7433
|
-
conditionals?: ({
|
7434
|
-
type: "SHOW";
|
7435
|
-
conditional: import(".").JSONSchema;
|
7436
|
-
} | {
|
7437
|
-
type: "ENABLE";
|
7438
|
-
conditional: import(".").JSONSchema;
|
7439
|
-
} | {
|
7440
|
-
type: "DISPLAY_ON_REVIEW";
|
7441
|
-
conditional: import(".").JSONSchema;
|
7442
|
-
})[] | undefined;
|
7443
|
-
secured?: boolean | undefined;
|
7444
|
-
placeholder?: {
|
7445
|
-
id: string;
|
7446
|
-
description: string;
|
7447
|
-
defaultMessage: string;
|
7448
|
-
} | undefined;
|
7449
|
-
helperText?: {
|
7450
|
-
id: string;
|
7451
|
-
description: string;
|
7452
|
-
defaultMessage: string;
|
7453
|
-
} | undefined;
|
7454
|
-
hideLabel?: boolean | undefined;
|
7455
|
-
uncorrectable?: boolean | undefined;
|
7456
|
-
} | {
|
7457
|
-
type: "HTTP";
|
7458
|
-
id: string;
|
7459
|
-
label: {
|
7460
|
-
id: string;
|
7461
|
-
description: string;
|
7462
|
-
defaultMessage: string;
|
7463
|
-
};
|
7464
|
-
configuration: {
|
7465
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
7466
|
-
trigger: {
|
7467
|
-
$$field: string;
|
7468
|
-
};
|
7469
|
-
url: string;
|
7470
|
-
params?: Record<string, string> | undefined;
|
7471
|
-
headers?: Record<string, string> | undefined;
|
7472
|
-
body?: Record<string, string> | undefined;
|
7473
|
-
timeout?: number | undefined;
|
7474
|
-
};
|
7475
|
-
parent?: {
|
7476
|
-
$$field: string;
|
7477
|
-
} | undefined;
|
7478
|
-
validation?: {
|
7479
|
-
message: {
|
7480
|
-
id: string;
|
7481
|
-
description: string;
|
7482
|
-
defaultMessage: string;
|
7483
|
-
};
|
7484
|
-
validator: import(".").JSONSchema;
|
7485
|
-
}[] | undefined;
|
7486
|
-
required?: boolean | undefined;
|
7487
|
-
conditionals?: ({
|
7488
|
-
type: "SHOW";
|
7489
|
-
conditional: import(".").JSONSchema;
|
7490
|
-
} | {
|
7491
|
-
type: "ENABLE";
|
7492
|
-
conditional: import(".").JSONSchema;
|
7493
|
-
} | {
|
7494
|
-
type: "DISPLAY_ON_REVIEW";
|
7495
|
-
conditional: import(".").JSONSchema;
|
7496
|
-
})[] | undefined;
|
7497
|
-
secured?: boolean | undefined;
|
7498
|
-
placeholder?: {
|
7499
|
-
id: string;
|
7500
|
-
description: string;
|
7501
|
-
defaultMessage: string;
|
7502
|
-
} | undefined;
|
7503
|
-
helperText?: {
|
7504
|
-
id: string;
|
7505
|
-
description: string;
|
7506
|
-
defaultMessage: string;
|
7507
|
-
} | undefined;
|
7508
|
-
hideLabel?: boolean | undefined;
|
7509
|
-
uncorrectable?: boolean | undefined;
|
7510
|
-
defaultValue?: {
|
7511
|
-
error: {
|
7512
|
-
message: string;
|
7513
|
-
statusCode: number | null;
|
7514
|
-
} | null;
|
7515
|
-
loading: boolean;
|
7516
|
-
data?: any;
|
7517
|
-
trackingValue?: string | undefined;
|
7518
|
-
} | undefined;
|
7519
|
-
})[];
|
7520
|
-
type?: "FORM" | undefined;
|
7521
|
-
conditional?: import(".").JSONSchema | undefined;
|
7522
|
-
}>;
|
7523
|
-
export type FormPageConfig = z.infer<typeof FormPageConfig>;
|
7524
|
-
export type FormPageConfigInput = z.input<typeof FormPageConfig>;
|
7525
|
-
export declare const VerificationActionConfig: z.ZodObject<{
|
7526
|
-
verify: z.ZodObject<{
|
7527
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7528
|
-
id: string;
|
7529
|
-
description: string;
|
7530
|
-
defaultMessage: string;
|
7531
|
-
}>;
|
7532
|
-
}, "strip", z.ZodTypeAny, {
|
7533
|
-
label: TranslationConfig;
|
7534
|
-
}, {
|
7535
|
-
label: {
|
7536
|
-
id: string;
|
7537
|
-
description: string;
|
7538
|
-
defaultMessage: string;
|
7539
|
-
};
|
7540
|
-
}>;
|
7541
|
-
cancel: z.ZodObject<{
|
7542
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7543
|
-
id: string;
|
7544
|
-
description: string;
|
7545
|
-
defaultMessage: string;
|
7546
|
-
}>;
|
7547
|
-
confirmation: z.ZodObject<{
|
7548
|
-
title: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7549
|
-
id: string;
|
7550
|
-
description: string;
|
7551
|
-
defaultMessage: string;
|
7552
|
-
}>;
|
7553
|
-
body: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7554
|
-
id: string;
|
7555
|
-
description: string;
|
7556
|
-
defaultMessage: string;
|
7557
|
-
}>;
|
7558
|
-
}, "strip", z.ZodTypeAny, {
|
7559
|
-
title: TranslationConfig;
|
7560
|
-
body: TranslationConfig;
|
7561
|
-
}, {
|
7562
|
-
title: {
|
7563
|
-
id: string;
|
7564
|
-
description: string;
|
7565
|
-
defaultMessage: string;
|
7566
|
-
};
|
7567
|
-
body: {
|
7568
|
-
id: string;
|
7569
|
-
description: string;
|
7570
|
-
defaultMessage: string;
|
7571
|
-
};
|
7572
|
-
}>;
|
7573
|
-
}, "strip", z.ZodTypeAny, {
|
7574
|
-
label: TranslationConfig;
|
7575
|
-
confirmation: {
|
7576
|
-
title: TranslationConfig;
|
7577
|
-
body: TranslationConfig;
|
7578
|
-
};
|
7579
|
-
}, {
|
7580
|
-
label: {
|
7581
|
-
id: string;
|
7582
|
-
description: string;
|
7583
|
-
defaultMessage: string;
|
7584
|
-
};
|
7585
|
-
confirmation: {
|
7586
|
-
title: {
|
7006
|
+
}, {
|
7007
|
+
label: {
|
7008
|
+
id: string;
|
7009
|
+
description: string;
|
7010
|
+
defaultMessage: string;
|
7011
|
+
};
|
7012
|
+
confirmation: {
|
7013
|
+
title: {
|
7587
7014
|
id: string;
|
7588
7015
|
description: string;
|
7589
7016
|
defaultMessage: string;
|
@@ -7776,583 +7203,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7776
7203
|
addressLine2?: string | undefined;
|
7777
7204
|
addressLine3?: string | undefined;
|
7778
7205
|
postcodeOrZip?: string | undefined;
|
7779
|
-
}>]>>;
|
7780
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
7781
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
7782
|
-
}, "strip", z.ZodTypeAny, {
|
7783
|
-
searchMode?: boolean | undefined;
|
7784
|
-
}, {
|
7785
|
-
searchMode?: boolean | undefined;
|
7786
|
-
}>>;
|
7787
|
-
}>, "strip", z.ZodTypeAny, {
|
7788
|
-
type: "ADDRESS";
|
7789
|
-
id: string;
|
7790
|
-
label: TranslationConfig;
|
7791
|
-
parent?: {
|
7792
|
-
$$field: string;
|
7793
|
-
} | undefined;
|
7794
|
-
validation?: {
|
7795
|
-
message: TranslationConfig;
|
7796
|
-
validator: import(".").JSONSchema;
|
7797
|
-
}[] | undefined;
|
7798
|
-
required?: boolean | undefined;
|
7799
|
-
conditionals?: ({
|
7800
|
-
type: "SHOW";
|
7801
|
-
conditional: import(".").JSONSchema;
|
7802
|
-
} | {
|
7803
|
-
type: "ENABLE";
|
7804
|
-
conditional: import(".").JSONSchema;
|
7805
|
-
} | {
|
7806
|
-
type: "DISPLAY_ON_REVIEW";
|
7807
|
-
conditional: import(".").JSONSchema;
|
7808
|
-
})[] | undefined;
|
7809
|
-
secured?: boolean | undefined;
|
7810
|
-
placeholder?: TranslationConfig | undefined;
|
7811
|
-
helperText?: TranslationConfig | undefined;
|
7812
|
-
hideLabel?: boolean | undefined;
|
7813
|
-
uncorrectable?: boolean | undefined;
|
7814
|
-
defaultValue?: {
|
7815
|
-
country: string;
|
7816
|
-
district: string;
|
7817
|
-
addressType: "DOMESTIC";
|
7818
|
-
province: string;
|
7819
|
-
urbanOrRural: "URBAN";
|
7820
|
-
number?: string | undefined;
|
7821
|
-
town?: string | undefined;
|
7822
|
-
residentialArea?: string | undefined;
|
7823
|
-
street?: string | undefined;
|
7824
|
-
zipCode?: string | undefined;
|
7825
|
-
} | {
|
7826
|
-
country: string;
|
7827
|
-
district: string;
|
7828
|
-
addressType: "DOMESTIC";
|
7829
|
-
province: string;
|
7830
|
-
urbanOrRural: "RURAL";
|
7831
|
-
village?: string | undefined;
|
7832
|
-
} | {
|
7833
|
-
country: string;
|
7834
|
-
state: string;
|
7835
|
-
addressType: "INTERNATIONAL";
|
7836
|
-
district2: string;
|
7837
|
-
cityOrTown?: string | undefined;
|
7838
|
-
addressLine1?: string | undefined;
|
7839
|
-
addressLine2?: string | undefined;
|
7840
|
-
addressLine3?: string | undefined;
|
7841
|
-
postcodeOrZip?: string | undefined;
|
7842
|
-
} | undefined;
|
7843
|
-
configuration?: {
|
7844
|
-
searchMode?: boolean | undefined;
|
7845
|
-
} | undefined;
|
7846
|
-
}, {
|
7847
|
-
type: "ADDRESS";
|
7848
|
-
id: string;
|
7849
|
-
label: {
|
7850
|
-
id: string;
|
7851
|
-
description: string;
|
7852
|
-
defaultMessage: string;
|
7853
|
-
};
|
7854
|
-
parent?: {
|
7855
|
-
$$field: string;
|
7856
|
-
} | undefined;
|
7857
|
-
validation?: {
|
7858
|
-
message: {
|
7859
|
-
id: string;
|
7860
|
-
description: string;
|
7861
|
-
defaultMessage: string;
|
7862
|
-
};
|
7863
|
-
validator: import(".").JSONSchema;
|
7864
|
-
}[] | undefined;
|
7865
|
-
required?: boolean | undefined;
|
7866
|
-
conditionals?: ({
|
7867
|
-
type: "SHOW";
|
7868
|
-
conditional: import(".").JSONSchema;
|
7869
|
-
} | {
|
7870
|
-
type: "ENABLE";
|
7871
|
-
conditional: import(".").JSONSchema;
|
7872
|
-
} | {
|
7873
|
-
type: "DISPLAY_ON_REVIEW";
|
7874
|
-
conditional: import(".").JSONSchema;
|
7875
|
-
})[] | undefined;
|
7876
|
-
secured?: boolean | undefined;
|
7877
|
-
placeholder?: {
|
7878
|
-
id: string;
|
7879
|
-
description: string;
|
7880
|
-
defaultMessage: string;
|
7881
|
-
} | undefined;
|
7882
|
-
helperText?: {
|
7883
|
-
id: string;
|
7884
|
-
description: string;
|
7885
|
-
defaultMessage: string;
|
7886
|
-
} | undefined;
|
7887
|
-
hideLabel?: boolean | undefined;
|
7888
|
-
uncorrectable?: boolean | undefined;
|
7889
|
-
defaultValue?: {
|
7890
|
-
country: string;
|
7891
|
-
district: string;
|
7892
|
-
addressType: "DOMESTIC";
|
7893
|
-
province: string;
|
7894
|
-
urbanOrRural: "URBAN";
|
7895
|
-
number?: string | undefined;
|
7896
|
-
town?: string | undefined;
|
7897
|
-
residentialArea?: string | undefined;
|
7898
|
-
street?: string | undefined;
|
7899
|
-
zipCode?: string | undefined;
|
7900
|
-
} | {
|
7901
|
-
country: string;
|
7902
|
-
district: string;
|
7903
|
-
addressType: "DOMESTIC";
|
7904
|
-
province: string;
|
7905
|
-
urbanOrRural: "RURAL";
|
7906
|
-
village?: string | undefined;
|
7907
|
-
} | {
|
7908
|
-
country: string;
|
7909
|
-
state: string;
|
7910
|
-
addressType: "INTERNATIONAL";
|
7911
|
-
district2: string;
|
7912
|
-
cityOrTown?: string | undefined;
|
7913
|
-
addressLine1?: string | undefined;
|
7914
|
-
addressLine2?: string | undefined;
|
7915
|
-
addressLine3?: string | undefined;
|
7916
|
-
postcodeOrZip?: string | undefined;
|
7917
|
-
} | undefined;
|
7918
|
-
configuration?: {
|
7919
|
-
searchMode?: boolean | undefined;
|
7920
|
-
} | undefined;
|
7921
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7922
|
-
id: z.ZodString;
|
7923
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7924
|
-
id: string;
|
7925
|
-
description: string;
|
7926
|
-
defaultMessage: string;
|
7927
|
-
}>;
|
7928
|
-
parent: z.ZodOptional<z.ZodObject<{
|
7929
|
-
$$field: z.ZodString;
|
7930
|
-
}, "strip", z.ZodTypeAny, {
|
7931
|
-
$$field: string;
|
7932
|
-
}, {
|
7933
|
-
$$field: string;
|
7934
|
-
}>>;
|
7935
|
-
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7936
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7937
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7938
|
-
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7939
|
-
id: string;
|
7940
|
-
description: string;
|
7941
|
-
defaultMessage: string;
|
7942
|
-
}>>;
|
7943
|
-
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
7944
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
7945
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7946
|
-
id: string;
|
7947
|
-
description: string;
|
7948
|
-
defaultMessage: string;
|
7949
|
-
}>;
|
7950
|
-
}, "strip", z.ZodTypeAny, {
|
7951
|
-
message: TranslationConfig;
|
7952
|
-
validator: import(".").JSONSchema;
|
7953
|
-
}, {
|
7954
|
-
message: {
|
7955
|
-
id: string;
|
7956
|
-
description: string;
|
7957
|
-
defaultMessage: string;
|
7958
|
-
};
|
7959
|
-
validator: import(".").JSONSchema;
|
7960
|
-
}>, "many">>>;
|
7961
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7962
|
-
id: string;
|
7963
|
-
description: string;
|
7964
|
-
defaultMessage: string;
|
7965
|
-
}>>;
|
7966
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7967
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7968
|
-
}, {
|
7969
|
-
type: z.ZodLiteral<"TEXT">;
|
7970
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
7971
|
-
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7972
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
7973
|
-
type: z.ZodOptional<z.ZodEnum<["text", "password"]>>;
|
7974
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7975
|
-
id: string;
|
7976
|
-
description: string;
|
7977
|
-
defaultMessage: string;
|
7978
|
-
}>>;
|
7979
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7980
|
-
id: string;
|
7981
|
-
description: string;
|
7982
|
-
defaultMessage: string;
|
7983
|
-
}>>;
|
7984
|
-
}, "strip", z.ZodTypeAny, {
|
7985
|
-
type?: "text" | "password" | undefined;
|
7986
|
-
maxLength?: number | undefined;
|
7987
|
-
prefix?: TranslationConfig | undefined;
|
7988
|
-
postfix?: TranslationConfig | undefined;
|
7989
|
-
}, {
|
7990
|
-
type?: "text" | "password" | undefined;
|
7991
|
-
maxLength?: number | undefined;
|
7992
|
-
prefix?: {
|
7993
|
-
id: string;
|
7994
|
-
description: string;
|
7995
|
-
defaultMessage: string;
|
7996
|
-
} | undefined;
|
7997
|
-
postfix?: {
|
7998
|
-
id: string;
|
7999
|
-
description: string;
|
8000
|
-
defaultMessage: string;
|
8001
|
-
} | undefined;
|
8002
|
-
}>>>;
|
8003
|
-
}>, "strip", z.ZodTypeAny, {
|
8004
|
-
type: "TEXT";
|
8005
|
-
id: string;
|
8006
|
-
label: TranslationConfig;
|
8007
|
-
parent?: {
|
8008
|
-
$$field: string;
|
8009
|
-
} | undefined;
|
8010
|
-
validation?: {
|
8011
|
-
message: TranslationConfig;
|
8012
|
-
validator: import(".").JSONSchema;
|
8013
|
-
}[] | undefined;
|
8014
|
-
required?: boolean | undefined;
|
8015
|
-
conditionals?: ({
|
8016
|
-
type: "SHOW";
|
8017
|
-
conditional: import(".").JSONSchema;
|
8018
|
-
} | {
|
8019
|
-
type: "ENABLE";
|
8020
|
-
conditional: import(".").JSONSchema;
|
8021
|
-
} | {
|
8022
|
-
type: "DISPLAY_ON_REVIEW";
|
8023
|
-
conditional: import(".").JSONSchema;
|
8024
|
-
})[] | undefined;
|
8025
|
-
secured?: boolean | undefined;
|
8026
|
-
placeholder?: TranslationConfig | undefined;
|
8027
|
-
helperText?: TranslationConfig | undefined;
|
8028
|
-
hideLabel?: boolean | undefined;
|
8029
|
-
uncorrectable?: boolean | undefined;
|
8030
|
-
defaultValue?: string | undefined;
|
8031
|
-
configuration?: {
|
8032
|
-
type?: "text" | "password" | undefined;
|
8033
|
-
maxLength?: number | undefined;
|
8034
|
-
prefix?: TranslationConfig | undefined;
|
8035
|
-
postfix?: TranslationConfig | undefined;
|
8036
|
-
} | undefined;
|
8037
|
-
}, {
|
8038
|
-
type: "TEXT";
|
8039
|
-
id: string;
|
8040
|
-
label: {
|
8041
|
-
id: string;
|
8042
|
-
description: string;
|
8043
|
-
defaultMessage: string;
|
8044
|
-
};
|
8045
|
-
parent?: {
|
8046
|
-
$$field: string;
|
8047
|
-
} | undefined;
|
8048
|
-
validation?: {
|
8049
|
-
message: {
|
8050
|
-
id: string;
|
8051
|
-
description: string;
|
8052
|
-
defaultMessage: string;
|
8053
|
-
};
|
8054
|
-
validator: import(".").JSONSchema;
|
8055
|
-
}[] | undefined;
|
8056
|
-
required?: boolean | undefined;
|
8057
|
-
conditionals?: ({
|
8058
|
-
type: "SHOW";
|
8059
|
-
conditional: import(".").JSONSchema;
|
8060
|
-
} | {
|
8061
|
-
type: "ENABLE";
|
8062
|
-
conditional: import(".").JSONSchema;
|
8063
|
-
} | {
|
8064
|
-
type: "DISPLAY_ON_REVIEW";
|
8065
|
-
conditional: import(".").JSONSchema;
|
8066
|
-
})[] | undefined;
|
8067
|
-
secured?: boolean | undefined;
|
8068
|
-
placeholder?: {
|
8069
|
-
id: string;
|
8070
|
-
description: string;
|
8071
|
-
defaultMessage: string;
|
8072
|
-
} | undefined;
|
8073
|
-
helperText?: {
|
8074
|
-
id: string;
|
8075
|
-
description: string;
|
8076
|
-
defaultMessage: string;
|
8077
|
-
} | undefined;
|
8078
|
-
hideLabel?: boolean | undefined;
|
8079
|
-
uncorrectable?: boolean | undefined;
|
8080
|
-
defaultValue?: string | undefined;
|
8081
|
-
configuration?: {
|
8082
|
-
type?: "text" | "password" | undefined;
|
8083
|
-
maxLength?: number | undefined;
|
8084
|
-
prefix?: {
|
8085
|
-
id: string;
|
8086
|
-
description: string;
|
8087
|
-
defaultMessage: string;
|
8088
|
-
} | undefined;
|
8089
|
-
postfix?: {
|
8090
|
-
id: string;
|
8091
|
-
description: string;
|
8092
|
-
defaultMessage: string;
|
8093
|
-
} | undefined;
|
8094
|
-
} | undefined;
|
8095
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8096
|
-
id: z.ZodString;
|
8097
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8098
|
-
id: string;
|
8099
|
-
description: string;
|
8100
|
-
defaultMessage: string;
|
8101
|
-
}>;
|
8102
|
-
parent: z.ZodOptional<z.ZodObject<{
|
8103
|
-
$$field: z.ZodString;
|
8104
|
-
}, "strip", z.ZodTypeAny, {
|
8105
|
-
$$field: string;
|
8106
|
-
}, {
|
8107
|
-
$$field: string;
|
8108
|
-
}>>;
|
8109
|
-
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8110
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8111
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8112
|
-
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8113
|
-
id: string;
|
8114
|
-
description: string;
|
8115
|
-
defaultMessage: string;
|
8116
|
-
}>>;
|
8117
|
-
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
8118
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
8119
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8120
|
-
id: string;
|
8121
|
-
description: string;
|
8122
|
-
defaultMessage: string;
|
8123
|
-
}>;
|
8124
|
-
}, "strip", z.ZodTypeAny, {
|
8125
|
-
message: TranslationConfig;
|
8126
|
-
validator: import(".").JSONSchema;
|
8127
|
-
}, {
|
8128
|
-
message: {
|
8129
|
-
id: string;
|
8130
|
-
description: string;
|
8131
|
-
defaultMessage: string;
|
8132
|
-
};
|
8133
|
-
validator: import(".").JSONSchema;
|
8134
|
-
}>, "many">>>;
|
8135
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8136
|
-
id: string;
|
8137
|
-
description: string;
|
8138
|
-
defaultMessage: string;
|
8139
|
-
}>>;
|
8140
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8141
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8142
|
-
}, {
|
8143
|
-
type: z.ZodLiteral<"NUMBER">;
|
8144
|
-
defaultValue: z.ZodOptional<z.ZodNumber>;
|
8145
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
8146
|
-
min: z.ZodOptional<z.ZodNumber>;
|
8147
|
-
max: z.ZodOptional<z.ZodNumber>;
|
8148
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8149
|
-
id: string;
|
8150
|
-
description: string;
|
8151
|
-
defaultMessage: string;
|
8152
|
-
}>>;
|
8153
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8154
|
-
id: string;
|
8155
|
-
description: string;
|
8156
|
-
defaultMessage: string;
|
8157
|
-
}>>;
|
8158
|
-
}, "strip", z.ZodTypeAny, {
|
8159
|
-
prefix?: TranslationConfig | undefined;
|
8160
|
-
postfix?: TranslationConfig | undefined;
|
8161
|
-
min?: number | undefined;
|
8162
|
-
max?: number | undefined;
|
8163
|
-
}, {
|
8164
|
-
prefix?: {
|
8165
|
-
id: string;
|
8166
|
-
description: string;
|
8167
|
-
defaultMessage: string;
|
8168
|
-
} | undefined;
|
8169
|
-
postfix?: {
|
8170
|
-
id: string;
|
8171
|
-
description: string;
|
8172
|
-
defaultMessage: string;
|
8173
|
-
} | undefined;
|
8174
|
-
min?: number | undefined;
|
8175
|
-
max?: number | undefined;
|
8176
|
-
}>>;
|
8177
|
-
}>, "strip", z.ZodTypeAny, {
|
8178
|
-
type: "NUMBER";
|
8179
|
-
id: string;
|
8180
|
-
label: TranslationConfig;
|
8181
|
-
parent?: {
|
8182
|
-
$$field: string;
|
8183
|
-
} | undefined;
|
8184
|
-
validation?: {
|
8185
|
-
message: TranslationConfig;
|
8186
|
-
validator: import(".").JSONSchema;
|
8187
|
-
}[] | undefined;
|
8188
|
-
required?: boolean | undefined;
|
8189
|
-
conditionals?: ({
|
8190
|
-
type: "SHOW";
|
8191
|
-
conditional: import(".").JSONSchema;
|
8192
|
-
} | {
|
8193
|
-
type: "ENABLE";
|
8194
|
-
conditional: import(".").JSONSchema;
|
8195
|
-
} | {
|
8196
|
-
type: "DISPLAY_ON_REVIEW";
|
8197
|
-
conditional: import(".").JSONSchema;
|
8198
|
-
})[] | undefined;
|
8199
|
-
secured?: boolean | undefined;
|
8200
|
-
placeholder?: TranslationConfig | undefined;
|
8201
|
-
helperText?: TranslationConfig | undefined;
|
8202
|
-
hideLabel?: boolean | undefined;
|
8203
|
-
uncorrectable?: boolean | undefined;
|
8204
|
-
defaultValue?: number | undefined;
|
8205
|
-
configuration?: {
|
8206
|
-
prefix?: TranslationConfig | undefined;
|
8207
|
-
postfix?: TranslationConfig | undefined;
|
8208
|
-
min?: number | undefined;
|
8209
|
-
max?: number | undefined;
|
8210
|
-
} | undefined;
|
8211
|
-
}, {
|
8212
|
-
type: "NUMBER";
|
8213
|
-
id: string;
|
8214
|
-
label: {
|
8215
|
-
id: string;
|
8216
|
-
description: string;
|
8217
|
-
defaultMessage: string;
|
8218
|
-
};
|
8219
|
-
parent?: {
|
8220
|
-
$$field: string;
|
8221
|
-
} | undefined;
|
8222
|
-
validation?: {
|
8223
|
-
message: {
|
8224
|
-
id: string;
|
8225
|
-
description: string;
|
8226
|
-
defaultMessage: string;
|
8227
|
-
};
|
8228
|
-
validator: import(".").JSONSchema;
|
8229
|
-
}[] | undefined;
|
8230
|
-
required?: boolean | undefined;
|
8231
|
-
conditionals?: ({
|
8232
|
-
type: "SHOW";
|
8233
|
-
conditional: import(".").JSONSchema;
|
8234
|
-
} | {
|
8235
|
-
type: "ENABLE";
|
8236
|
-
conditional: import(".").JSONSchema;
|
8237
|
-
} | {
|
8238
|
-
type: "DISPLAY_ON_REVIEW";
|
8239
|
-
conditional: import(".").JSONSchema;
|
8240
|
-
})[] | undefined;
|
8241
|
-
secured?: boolean | undefined;
|
8242
|
-
placeholder?: {
|
8243
|
-
id: string;
|
8244
|
-
description: string;
|
8245
|
-
defaultMessage: string;
|
8246
|
-
} | undefined;
|
8247
|
-
helperText?: {
|
8248
|
-
id: string;
|
8249
|
-
description: string;
|
8250
|
-
defaultMessage: string;
|
8251
|
-
} | undefined;
|
8252
|
-
hideLabel?: boolean | undefined;
|
8253
|
-
uncorrectable?: boolean | undefined;
|
8254
|
-
defaultValue?: number | undefined;
|
8255
|
-
configuration?: {
|
8256
|
-
prefix?: {
|
8257
|
-
id: string;
|
8258
|
-
description: string;
|
8259
|
-
defaultMessage: string;
|
8260
|
-
} | undefined;
|
8261
|
-
postfix?: {
|
8262
|
-
id: string;
|
8263
|
-
description: string;
|
8264
|
-
defaultMessage: string;
|
8265
|
-
} | undefined;
|
8266
|
-
min?: number | undefined;
|
8267
|
-
max?: number | undefined;
|
8268
|
-
} | undefined;
|
8269
|
-
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8270
|
-
id: z.ZodString;
|
8271
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8272
|
-
id: string;
|
8273
|
-
description: string;
|
8274
|
-
defaultMessage: string;
|
8275
|
-
}>;
|
8276
|
-
parent: z.ZodOptional<z.ZodObject<{
|
8277
|
-
$$field: z.ZodString;
|
8278
|
-
}, "strip", z.ZodTypeAny, {
|
8279
|
-
$$field: string;
|
8280
|
-
}, {
|
8281
|
-
$$field: string;
|
8282
|
-
}>>;
|
8283
|
-
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8284
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8285
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8286
|
-
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8287
|
-
id: string;
|
8288
|
-
description: string;
|
8289
|
-
defaultMessage: string;
|
8290
|
-
}>>;
|
8291
|
-
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
8292
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
8293
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8294
|
-
id: string;
|
8295
|
-
description: string;
|
8296
|
-
defaultMessage: string;
|
8297
|
-
}>;
|
8298
|
-
}, "strip", z.ZodTypeAny, {
|
8299
|
-
message: TranslationConfig;
|
8300
|
-
validator: import(".").JSONSchema;
|
8301
|
-
}, {
|
8302
|
-
message: {
|
8303
|
-
id: string;
|
8304
|
-
description: string;
|
8305
|
-
defaultMessage: string;
|
8306
|
-
};
|
8307
|
-
validator: import(".").JSONSchema;
|
8308
|
-
}>, "many">>>;
|
8309
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8310
|
-
id: string;
|
8311
|
-
description: string;
|
8312
|
-
defaultMessage: string;
|
8313
|
-
}>>;
|
8314
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8315
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8316
|
-
}, {
|
8317
|
-
type: z.ZodLiteral<"TEXTAREA">;
|
8318
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
8319
|
-
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
8320
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
8321
|
-
rows: z.ZodOptional<z.ZodNumber>;
|
8322
|
-
cols: z.ZodOptional<z.ZodNumber>;
|
8323
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8324
|
-
id: string;
|
8325
|
-
description: string;
|
8326
|
-
defaultMessage: string;
|
8327
|
-
}>>;
|
8328
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8329
|
-
id: string;
|
8330
|
-
description: string;
|
8331
|
-
defaultMessage: string;
|
8332
|
-
}>>;
|
8333
|
-
}, "strip", z.ZodTypeAny, {
|
8334
|
-
maxLength?: number | undefined;
|
8335
|
-
prefix?: TranslationConfig | undefined;
|
8336
|
-
postfix?: TranslationConfig | undefined;
|
8337
|
-
rows?: number | undefined;
|
8338
|
-
cols?: number | undefined;
|
7206
|
+
}>]>>;
|
7207
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
7208
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
7209
|
+
}, "strip", z.ZodTypeAny, {
|
7210
|
+
searchMode?: boolean | undefined;
|
8339
7211
|
}, {
|
8340
|
-
|
8341
|
-
|
8342
|
-
id: string;
|
8343
|
-
description: string;
|
8344
|
-
defaultMessage: string;
|
8345
|
-
} | undefined;
|
8346
|
-
postfix?: {
|
8347
|
-
id: string;
|
8348
|
-
description: string;
|
8349
|
-
defaultMessage: string;
|
8350
|
-
} | undefined;
|
8351
|
-
rows?: number | undefined;
|
8352
|
-
cols?: number | undefined;
|
8353
|
-
}>>>;
|
7212
|
+
searchMode?: boolean | undefined;
|
7213
|
+
}>>;
|
8354
7214
|
}>, "strip", z.ZodTypeAny, {
|
8355
|
-
type: "
|
7215
|
+
type: "ADDRESS";
|
8356
7216
|
id: string;
|
8357
7217
|
label: TranslationConfig;
|
8358
7218
|
parent?: {
|
@@ -8378,16 +7238,40 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8378
7238
|
helperText?: TranslationConfig | undefined;
|
8379
7239
|
hideLabel?: boolean | undefined;
|
8380
7240
|
uncorrectable?: boolean | undefined;
|
8381
|
-
defaultValue?:
|
7241
|
+
defaultValue?: {
|
7242
|
+
country: string;
|
7243
|
+
district: string;
|
7244
|
+
addressType: "DOMESTIC";
|
7245
|
+
province: string;
|
7246
|
+
urbanOrRural: "URBAN";
|
7247
|
+
number?: string | undefined;
|
7248
|
+
town?: string | undefined;
|
7249
|
+
residentialArea?: string | undefined;
|
7250
|
+
street?: string | undefined;
|
7251
|
+
zipCode?: string | undefined;
|
7252
|
+
} | {
|
7253
|
+
country: string;
|
7254
|
+
district: string;
|
7255
|
+
addressType: "DOMESTIC";
|
7256
|
+
province: string;
|
7257
|
+
urbanOrRural: "RURAL";
|
7258
|
+
village?: string | undefined;
|
7259
|
+
} | {
|
7260
|
+
country: string;
|
7261
|
+
state: string;
|
7262
|
+
addressType: "INTERNATIONAL";
|
7263
|
+
district2: string;
|
7264
|
+
cityOrTown?: string | undefined;
|
7265
|
+
addressLine1?: string | undefined;
|
7266
|
+
addressLine2?: string | undefined;
|
7267
|
+
addressLine3?: string | undefined;
|
7268
|
+
postcodeOrZip?: string | undefined;
|
7269
|
+
} | undefined;
|
8382
7270
|
configuration?: {
|
8383
|
-
|
8384
|
-
prefix?: TranslationConfig | undefined;
|
8385
|
-
postfix?: TranslationConfig | undefined;
|
8386
|
-
rows?: number | undefined;
|
8387
|
-
cols?: number | undefined;
|
7271
|
+
searchMode?: boolean | undefined;
|
8388
7272
|
} | undefined;
|
8389
7273
|
}, {
|
8390
|
-
type: "
|
7274
|
+
type: "ADDRESS";
|
8391
7275
|
id: string;
|
8392
7276
|
label: {
|
8393
7277
|
id: string;
|
@@ -8429,21 +7313,37 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8429
7313
|
} | undefined;
|
8430
7314
|
hideLabel?: boolean | undefined;
|
8431
7315
|
uncorrectable?: boolean | undefined;
|
8432
|
-
defaultValue?:
|
7316
|
+
defaultValue?: {
|
7317
|
+
country: string;
|
7318
|
+
district: string;
|
7319
|
+
addressType: "DOMESTIC";
|
7320
|
+
province: string;
|
7321
|
+
urbanOrRural: "URBAN";
|
7322
|
+
number?: string | undefined;
|
7323
|
+
town?: string | undefined;
|
7324
|
+
residentialArea?: string | undefined;
|
7325
|
+
street?: string | undefined;
|
7326
|
+
zipCode?: string | undefined;
|
7327
|
+
} | {
|
7328
|
+
country: string;
|
7329
|
+
district: string;
|
7330
|
+
addressType: "DOMESTIC";
|
7331
|
+
province: string;
|
7332
|
+
urbanOrRural: "RURAL";
|
7333
|
+
village?: string | undefined;
|
7334
|
+
} | {
|
7335
|
+
country: string;
|
7336
|
+
state: string;
|
7337
|
+
addressType: "INTERNATIONAL";
|
7338
|
+
district2: string;
|
7339
|
+
cityOrTown?: string | undefined;
|
7340
|
+
addressLine1?: string | undefined;
|
7341
|
+
addressLine2?: string | undefined;
|
7342
|
+
addressLine3?: string | undefined;
|
7343
|
+
postcodeOrZip?: string | undefined;
|
7344
|
+
} | undefined;
|
8433
7345
|
configuration?: {
|
8434
|
-
|
8435
|
-
prefix?: {
|
8436
|
-
id: string;
|
8437
|
-
description: string;
|
8438
|
-
defaultMessage: string;
|
8439
|
-
} | undefined;
|
8440
|
-
postfix?: {
|
8441
|
-
id: string;
|
8442
|
-
description: string;
|
8443
|
-
defaultMessage: string;
|
8444
|
-
} | undefined;
|
8445
|
-
rows?: number | undefined;
|
8446
|
-
cols?: number | undefined;
|
7346
|
+
searchMode?: boolean | undefined;
|
8447
7347
|
} | undefined;
|
8448
7348
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8449
7349
|
id: z.ZodString;
|
@@ -8493,25 +7393,42 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8493
7393
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8494
7394
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8495
7395
|
}, {
|
8496
|
-
type: z.ZodLiteral<"
|
7396
|
+
type: z.ZodLiteral<"TEXT">;
|
8497
7397
|
defaultValue: z.ZodOptional<z.ZodString>;
|
8498
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
8499
|
-
|
7398
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7399
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
7400
|
+
type: z.ZodOptional<z.ZodEnum<["text", "password"]>>;
|
7401
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7402
|
+
id: string;
|
7403
|
+
description: string;
|
7404
|
+
defaultMessage: string;
|
7405
|
+
}>>;
|
7406
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8500
7407
|
id: string;
|
8501
7408
|
description: string;
|
8502
7409
|
defaultMessage: string;
|
8503
7410
|
}>>;
|
8504
7411
|
}, "strip", z.ZodTypeAny, {
|
8505
|
-
|
7412
|
+
type?: "text" | "password" | undefined;
|
7413
|
+
maxLength?: number | undefined;
|
7414
|
+
prefix?: TranslationConfig | undefined;
|
7415
|
+
postfix?: TranslationConfig | undefined;
|
8506
7416
|
}, {
|
8507
|
-
|
7417
|
+
type?: "text" | "password" | undefined;
|
7418
|
+
maxLength?: number | undefined;
|
7419
|
+
prefix?: {
|
8508
7420
|
id: string;
|
8509
7421
|
description: string;
|
8510
7422
|
defaultMessage: string;
|
8511
7423
|
} | undefined;
|
8512
|
-
|
7424
|
+
postfix?: {
|
7425
|
+
id: string;
|
7426
|
+
description: string;
|
7427
|
+
defaultMessage: string;
|
7428
|
+
} | undefined;
|
7429
|
+
}>>>;
|
8513
7430
|
}>, "strip", z.ZodTypeAny, {
|
8514
|
-
type: "
|
7431
|
+
type: "TEXT";
|
8515
7432
|
id: string;
|
8516
7433
|
label: TranslationConfig;
|
8517
7434
|
parent?: {
|
@@ -8539,10 +7456,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8539
7456
|
uncorrectable?: boolean | undefined;
|
8540
7457
|
defaultValue?: string | undefined;
|
8541
7458
|
configuration?: {
|
8542
|
-
|
7459
|
+
type?: "text" | "password" | undefined;
|
7460
|
+
maxLength?: number | undefined;
|
7461
|
+
prefix?: TranslationConfig | undefined;
|
7462
|
+
postfix?: TranslationConfig | undefined;
|
8543
7463
|
} | undefined;
|
8544
7464
|
}, {
|
8545
|
-
type: "
|
7465
|
+
type: "TEXT";
|
8546
7466
|
id: string;
|
8547
7467
|
label: {
|
8548
7468
|
id: string;
|
@@ -8586,7 +7506,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8586
7506
|
uncorrectable?: boolean | undefined;
|
8587
7507
|
defaultValue?: string | undefined;
|
8588
7508
|
configuration?: {
|
8589
|
-
|
7509
|
+
type?: "text" | "password" | undefined;
|
7510
|
+
maxLength?: number | undefined;
|
7511
|
+
prefix?: {
|
7512
|
+
id: string;
|
7513
|
+
description: string;
|
7514
|
+
defaultMessage: string;
|
7515
|
+
} | undefined;
|
7516
|
+
postfix?: {
|
8590
7517
|
id: string;
|
8591
7518
|
description: string;
|
8592
7519
|
defaultMessage: string;
|
@@ -8640,25 +7567,42 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8640
7567
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8641
7568
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8642
7569
|
}, {
|
8643
|
-
type: z.ZodLiteral<"
|
8644
|
-
defaultValue: z.ZodOptional<z.
|
7570
|
+
type: z.ZodLiteral<"NUMBER">;
|
7571
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
8645
7572
|
configuration: z.ZodOptional<z.ZodObject<{
|
8646
|
-
|
7573
|
+
min: z.ZodOptional<z.ZodNumber>;
|
7574
|
+
max: z.ZodOptional<z.ZodNumber>;
|
7575
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7576
|
+
id: string;
|
7577
|
+
description: string;
|
7578
|
+
defaultMessage: string;
|
7579
|
+
}>>;
|
7580
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8647
7581
|
id: string;
|
8648
7582
|
description: string;
|
8649
7583
|
defaultMessage: string;
|
8650
7584
|
}>>;
|
8651
7585
|
}, "strip", z.ZodTypeAny, {
|
8652
|
-
|
7586
|
+
prefix?: TranslationConfig | undefined;
|
7587
|
+
postfix?: TranslationConfig | undefined;
|
7588
|
+
min?: number | undefined;
|
7589
|
+
max?: number | undefined;
|
8653
7590
|
}, {
|
8654
|
-
|
7591
|
+
prefix?: {
|
7592
|
+
id: string;
|
7593
|
+
description: string;
|
7594
|
+
defaultMessage: string;
|
7595
|
+
} | undefined;
|
7596
|
+
postfix?: {
|
8655
7597
|
id: string;
|
8656
7598
|
description: string;
|
8657
7599
|
defaultMessage: string;
|
8658
7600
|
} | undefined;
|
7601
|
+
min?: number | undefined;
|
7602
|
+
max?: number | undefined;
|
8659
7603
|
}>>;
|
8660
7604
|
}>, "strip", z.ZodTypeAny, {
|
8661
|
-
type: "
|
7605
|
+
type: "NUMBER";
|
8662
7606
|
id: string;
|
8663
7607
|
label: TranslationConfig;
|
8664
7608
|
parent?: {
|
@@ -8684,12 +7628,15 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8684
7628
|
helperText?: TranslationConfig | undefined;
|
8685
7629
|
hideLabel?: boolean | undefined;
|
8686
7630
|
uncorrectable?: boolean | undefined;
|
8687
|
-
defaultValue?:
|
7631
|
+
defaultValue?: number | undefined;
|
8688
7632
|
configuration?: {
|
8689
|
-
|
7633
|
+
prefix?: TranslationConfig | undefined;
|
7634
|
+
postfix?: TranslationConfig | undefined;
|
7635
|
+
min?: number | undefined;
|
7636
|
+
max?: number | undefined;
|
8690
7637
|
} | undefined;
|
8691
7638
|
}, {
|
8692
|
-
type: "
|
7639
|
+
type: "NUMBER";
|
8693
7640
|
id: string;
|
8694
7641
|
label: {
|
8695
7642
|
id: string;
|
@@ -8731,13 +7678,20 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8731
7678
|
} | undefined;
|
8732
7679
|
hideLabel?: boolean | undefined;
|
8733
7680
|
uncorrectable?: boolean | undefined;
|
8734
|
-
defaultValue?:
|
7681
|
+
defaultValue?: number | undefined;
|
8735
7682
|
configuration?: {
|
8736
|
-
|
7683
|
+
prefix?: {
|
7684
|
+
id: string;
|
7685
|
+
description: string;
|
7686
|
+
defaultMessage: string;
|
7687
|
+
} | undefined;
|
7688
|
+
postfix?: {
|
8737
7689
|
id: string;
|
8738
7690
|
description: string;
|
8739
7691
|
defaultMessage: string;
|
8740
7692
|
} | undefined;
|
7693
|
+
min?: number | undefined;
|
7694
|
+
max?: number | undefined;
|
8741
7695
|
} | undefined;
|
8742
7696
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8743
7697
|
id: z.ZodString;
|
@@ -8787,34 +7741,45 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8787
7741
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8788
7742
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8789
7743
|
}, {
|
8790
|
-
type: z.ZodLiteral<"
|
8791
|
-
defaultValue: z.ZodOptional<z.
|
8792
|
-
|
8793
|
-
|
8794
|
-
|
8795
|
-
|
8796
|
-
|
8797
|
-
|
8798
|
-
|
8799
|
-
|
8800
|
-
|
8801
|
-
|
8802
|
-
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7744
|
+
type: z.ZodLiteral<"TEXTAREA">;
|
7745
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
7746
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
7747
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
7748
|
+
rows: z.ZodOptional<z.ZodNumber>;
|
7749
|
+
cols: z.ZodOptional<z.ZodNumber>;
|
7750
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7751
|
+
id: string;
|
7752
|
+
description: string;
|
7753
|
+
defaultMessage: string;
|
7754
|
+
}>>;
|
7755
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8803
7756
|
id: string;
|
8804
7757
|
description: string;
|
8805
7758
|
defaultMessage: string;
|
8806
7759
|
}>>;
|
8807
7760
|
}, "strip", z.ZodTypeAny, {
|
8808
|
-
|
7761
|
+
maxLength?: number | undefined;
|
7762
|
+
prefix?: TranslationConfig | undefined;
|
7763
|
+
postfix?: TranslationConfig | undefined;
|
7764
|
+
rows?: number | undefined;
|
7765
|
+
cols?: number | undefined;
|
8809
7766
|
}, {
|
8810
|
-
|
7767
|
+
maxLength?: number | undefined;
|
7768
|
+
prefix?: {
|
8811
7769
|
id: string;
|
8812
7770
|
description: string;
|
8813
7771
|
defaultMessage: string;
|
8814
7772
|
} | undefined;
|
8815
|
-
|
7773
|
+
postfix?: {
|
7774
|
+
id: string;
|
7775
|
+
description: string;
|
7776
|
+
defaultMessage: string;
|
7777
|
+
} | undefined;
|
7778
|
+
rows?: number | undefined;
|
7779
|
+
cols?: number | undefined;
|
7780
|
+
}>>>;
|
8816
7781
|
}>, "strip", z.ZodTypeAny, {
|
8817
|
-
type: "
|
7782
|
+
type: "TEXTAREA";
|
8818
7783
|
id: string;
|
8819
7784
|
label: TranslationConfig;
|
8820
7785
|
parent?: {
|
@@ -8840,15 +7805,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8840
7805
|
helperText?: TranslationConfig | undefined;
|
8841
7806
|
hideLabel?: boolean | undefined;
|
8842
7807
|
uncorrectable?: boolean | undefined;
|
8843
|
-
defaultValue?: string |
|
8844
|
-
start: string;
|
8845
|
-
end: string;
|
8846
|
-
} | undefined;
|
7808
|
+
defaultValue?: string | undefined;
|
8847
7809
|
configuration?: {
|
8848
|
-
|
7810
|
+
maxLength?: number | undefined;
|
7811
|
+
prefix?: TranslationConfig | undefined;
|
7812
|
+
postfix?: TranslationConfig | undefined;
|
7813
|
+
rows?: number | undefined;
|
7814
|
+
cols?: number | undefined;
|
8849
7815
|
} | undefined;
|
8850
7816
|
}, {
|
8851
|
-
type: "
|
7817
|
+
type: "TEXTAREA";
|
8852
7818
|
id: string;
|
8853
7819
|
label: {
|
8854
7820
|
id: string;
|
@@ -8890,16 +7856,21 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8890
7856
|
} | undefined;
|
8891
7857
|
hideLabel?: boolean | undefined;
|
8892
7858
|
uncorrectable?: boolean | undefined;
|
8893
|
-
defaultValue?: string |
|
8894
|
-
start: string;
|
8895
|
-
end: string;
|
8896
|
-
} | undefined;
|
7859
|
+
defaultValue?: string | undefined;
|
8897
7860
|
configuration?: {
|
8898
|
-
|
7861
|
+
maxLength?: number | undefined;
|
7862
|
+
prefix?: {
|
7863
|
+
id: string;
|
7864
|
+
description: string;
|
7865
|
+
defaultMessage: string;
|
7866
|
+
} | undefined;
|
7867
|
+
postfix?: {
|
8899
7868
|
id: string;
|
8900
7869
|
description: string;
|
8901
7870
|
defaultMessage: string;
|
8902
7871
|
} | undefined;
|
7872
|
+
rows?: number | undefined;
|
7873
|
+
cols?: number | undefined;
|
8903
7874
|
} | undefined;
|
8904
7875
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8905
7876
|
id: z.ZodString;
|
@@ -8949,33 +7920,26 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8949
7920
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8950
7921
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8951
7922
|
}, {
|
8952
|
-
type: z.ZodLiteral<"
|
8953
|
-
defaultValue: z.ZodOptional<z.
|
8954
|
-
|
8955
|
-
|
8956
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7923
|
+
type: z.ZodLiteral<"DATE">;
|
7924
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
7925
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
7926
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8957
7927
|
id: string;
|
8958
7928
|
description: string;
|
8959
7929
|
defaultMessage: string;
|
8960
|
-
}
|
7930
|
+
}>>;
|
8961
7931
|
}, "strip", z.ZodTypeAny, {
|
8962
|
-
|
8963
|
-
label: TranslationConfig;
|
7932
|
+
notice?: TranslationConfig | undefined;
|
8964
7933
|
}, {
|
8965
|
-
|
8966
|
-
label: {
|
7934
|
+
notice?: {
|
8967
7935
|
id: string;
|
8968
7936
|
description: string;
|
8969
7937
|
defaultMessage: string;
|
8970
|
-
};
|
8971
|
-
}
|
7938
|
+
} | undefined;
|
7939
|
+
}>>;
|
8972
7940
|
}>, "strip", z.ZodTypeAny, {
|
8973
|
-
type: "
|
7941
|
+
type: "DATE";
|
8974
7942
|
id: string;
|
8975
|
-
options: {
|
8976
|
-
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8977
|
-
label: TranslationConfig;
|
8978
|
-
}[];
|
8979
7943
|
label: TranslationConfig;
|
8980
7944
|
parent?: {
|
8981
7945
|
$$field: string;
|
@@ -9000,18 +7964,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9000
7964
|
helperText?: TranslationConfig | undefined;
|
9001
7965
|
hideLabel?: boolean | undefined;
|
9002
7966
|
uncorrectable?: boolean | undefined;
|
9003
|
-
defaultValue?:
|
7967
|
+
defaultValue?: string | undefined;
|
7968
|
+
configuration?: {
|
7969
|
+
notice?: TranslationConfig | undefined;
|
7970
|
+
} | undefined;
|
9004
7971
|
}, {
|
9005
|
-
type: "
|
7972
|
+
type: "DATE";
|
9006
7973
|
id: string;
|
9007
|
-
options: {
|
9008
|
-
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
9009
|
-
label: {
|
9010
|
-
id: string;
|
9011
|
-
description: string;
|
9012
|
-
defaultMessage: string;
|
9013
|
-
};
|
9014
|
-
}[];
|
9015
7974
|
label: {
|
9016
7975
|
id: string;
|
9017
7976
|
description: string;
|
@@ -9052,7 +8011,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9052
8011
|
} | undefined;
|
9053
8012
|
hideLabel?: boolean | undefined;
|
9054
8013
|
uncorrectable?: boolean | undefined;
|
9055
|
-
defaultValue?:
|
8014
|
+
defaultValue?: string | undefined;
|
8015
|
+
configuration?: {
|
8016
|
+
notice?: {
|
8017
|
+
id: string;
|
8018
|
+
description: string;
|
8019
|
+
defaultMessage: string;
|
8020
|
+
} | undefined;
|
8021
|
+
} | undefined;
|
9056
8022
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9057
8023
|
id: z.ZodString;
|
9058
8024
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9101,40 +8067,27 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9101
8067
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9102
8068
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9103
8069
|
}, {
|
9104
|
-
type: z.ZodLiteral<"
|
8070
|
+
type: z.ZodLiteral<"TIME">;
|
9105
8071
|
defaultValue: z.ZodOptional<z.ZodString>;
|
9106
|
-
configuration: z.
|
9107
|
-
|
9108
|
-
|
9109
|
-
|
9110
|
-
|
9111
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9112
|
-
hint?: boolean | undefined;
|
9113
|
-
}, {
|
9114
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9115
|
-
hint?: boolean | undefined;
|
8072
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
8073
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8074
|
+
id: string;
|
8075
|
+
description: string;
|
8076
|
+
defaultMessage: string;
|
9116
8077
|
}>>;
|
9117
8078
|
}, "strip", z.ZodTypeAny, {
|
9118
|
-
|
9119
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9120
|
-
hint?: boolean | undefined;
|
9121
|
-
} | undefined;
|
8079
|
+
notice?: TranslationConfig | undefined;
|
9122
8080
|
}, {
|
9123
|
-
|
9124
|
-
|
9125
|
-
|
8081
|
+
notice?: {
|
8082
|
+
id: string;
|
8083
|
+
description: string;
|
8084
|
+
defaultMessage: string;
|
9126
8085
|
} | undefined;
|
9127
8086
|
}>>;
|
9128
8087
|
}>, "strip", z.ZodTypeAny, {
|
9129
|
-
type: "
|
8088
|
+
type: "TIME";
|
9130
8089
|
id: string;
|
9131
8090
|
label: TranslationConfig;
|
9132
|
-
configuration: {
|
9133
|
-
styles?: {
|
9134
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9135
|
-
hint?: boolean | undefined;
|
9136
|
-
} | undefined;
|
9137
|
-
};
|
9138
8091
|
parent?: {
|
9139
8092
|
$$field: string;
|
9140
8093
|
} | undefined;
|
@@ -9159,8 +8112,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9159
8112
|
hideLabel?: boolean | undefined;
|
9160
8113
|
uncorrectable?: boolean | undefined;
|
9161
8114
|
defaultValue?: string | undefined;
|
8115
|
+
configuration?: {
|
8116
|
+
notice?: TranslationConfig | undefined;
|
8117
|
+
} | undefined;
|
9162
8118
|
}, {
|
9163
|
-
type: "
|
8119
|
+
type: "TIME";
|
9164
8120
|
id: string;
|
9165
8121
|
label: {
|
9166
8122
|
id: string;
|
@@ -9204,9 +8160,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9204
8160
|
uncorrectable?: boolean | undefined;
|
9205
8161
|
defaultValue?: string | undefined;
|
9206
8162
|
configuration?: {
|
9207
|
-
|
9208
|
-
|
9209
|
-
|
8163
|
+
notice?: {
|
8164
|
+
id: string;
|
8165
|
+
description: string;
|
8166
|
+
defaultMessage: string;
|
9210
8167
|
} | undefined;
|
9211
8168
|
} | undefined;
|
9212
8169
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9257,50 +8214,35 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9257
8214
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9258
8215
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9259
8216
|
}, {
|
9260
|
-
type: z.ZodLiteral<"
|
9261
|
-
defaultValue: z.ZodOptional<z.
|
9262
|
-
|
9263
|
-
|
9264
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9265
|
-
id: string;
|
9266
|
-
description: string;
|
9267
|
-
defaultMessage: string;
|
9268
|
-
}>;
|
8217
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
8218
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
8219
|
+
start: z.ZodString;
|
8220
|
+
end: z.ZodString;
|
9269
8221
|
}, "strip", z.ZodTypeAny, {
|
9270
|
-
|
9271
|
-
|
8222
|
+
start: string;
|
8223
|
+
end: string;
|
9272
8224
|
}, {
|
9273
|
-
|
9274
|
-
|
8225
|
+
start: string;
|
8226
|
+
end: string;
|
8227
|
+
}>, z.ZodString]>>;
|
8228
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
8229
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9275
8230
|
id: string;
|
9276
8231
|
description: string;
|
9277
8232
|
defaultMessage: string;
|
9278
|
-
};
|
9279
|
-
}>, "many">;
|
9280
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
9281
|
-
styles: z.ZodOptional<z.ZodObject<{
|
9282
|
-
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
9283
|
-
}, "strip", z.ZodTypeAny, {
|
9284
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
9285
|
-
}, {
|
9286
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
9287
8233
|
}>>;
|
9288
8234
|
}, "strip", z.ZodTypeAny, {
|
9289
|
-
|
9290
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
9291
|
-
} | undefined;
|
8235
|
+
notice?: TranslationConfig | undefined;
|
9292
8236
|
}, {
|
9293
|
-
|
9294
|
-
|
8237
|
+
notice?: {
|
8238
|
+
id: string;
|
8239
|
+
description: string;
|
8240
|
+
defaultMessage: string;
|
9295
8241
|
} | undefined;
|
9296
8242
|
}>>;
|
9297
8243
|
}>, "strip", z.ZodTypeAny, {
|
9298
|
-
type: "
|
8244
|
+
type: "DATE_RANGE";
|
9299
8245
|
id: string;
|
9300
|
-
options: {
|
9301
|
-
value: string;
|
9302
|
-
label: TranslationConfig;
|
9303
|
-
}[];
|
9304
8246
|
label: TranslationConfig;
|
9305
8247
|
parent?: {
|
9306
8248
|
$$field: string;
|
@@ -9325,23 +8267,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9325
8267
|
helperText?: TranslationConfig | undefined;
|
9326
8268
|
hideLabel?: boolean | undefined;
|
9327
8269
|
uncorrectable?: boolean | undefined;
|
9328
|
-
defaultValue?: string |
|
8270
|
+
defaultValue?: string | {
|
8271
|
+
start: string;
|
8272
|
+
end: string;
|
8273
|
+
} | undefined;
|
9329
8274
|
configuration?: {
|
9330
|
-
|
9331
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
9332
|
-
} | undefined;
|
8275
|
+
notice?: TranslationConfig | undefined;
|
9333
8276
|
} | undefined;
|
9334
8277
|
}, {
|
9335
|
-
type: "
|
8278
|
+
type: "DATE_RANGE";
|
9336
8279
|
id: string;
|
9337
|
-
options: {
|
9338
|
-
value: string;
|
9339
|
-
label: {
|
9340
|
-
id: string;
|
9341
|
-
description: string;
|
9342
|
-
defaultMessage: string;
|
9343
|
-
};
|
9344
|
-
}[];
|
9345
8280
|
label: {
|
9346
8281
|
id: string;
|
9347
8282
|
description: string;
|
@@ -9382,10 +8317,15 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9382
8317
|
} | undefined;
|
9383
8318
|
hideLabel?: boolean | undefined;
|
9384
8319
|
uncorrectable?: boolean | undefined;
|
9385
|
-
defaultValue?: string |
|
8320
|
+
defaultValue?: string | {
|
8321
|
+
start: string;
|
8322
|
+
end: string;
|
8323
|
+
} | undefined;
|
9386
8324
|
configuration?: {
|
9387
|
-
|
9388
|
-
|
8325
|
+
notice?: {
|
8326
|
+
id: string;
|
8327
|
+
description: string;
|
8328
|
+
defaultMessage: string;
|
9389
8329
|
} | undefined;
|
9390
8330
|
} | undefined;
|
9391
8331
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -9436,40 +8376,34 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9436
8376
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9437
8377
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9438
8378
|
}, {
|
9439
|
-
type: z.ZodLiteral<"
|
9440
|
-
defaultValue: z.ZodOptional<z.
|
9441
|
-
|
9442
|
-
|
9443
|
-
|
9444
|
-
|
9445
|
-
|
9446
|
-
|
9447
|
-
|
9448
|
-
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
9449
|
-
}, "strip", z.ZodTypeAny, {
|
9450
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9451
|
-
}, {
|
9452
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9453
|
-
}>>;
|
8379
|
+
type: z.ZodLiteral<"SELECT_DATE_RANGE">;
|
8380
|
+
defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
|
8381
|
+
options: z.ZodArray<z.ZodObject<{
|
8382
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
8383
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8384
|
+
id: string;
|
8385
|
+
description: string;
|
8386
|
+
defaultMessage: string;
|
8387
|
+
}>;
|
9454
8388
|
}, "strip", z.ZodTypeAny, {
|
9455
|
-
|
9456
|
-
|
9457
|
-
} | undefined;
|
8389
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8390
|
+
label: TranslationConfig;
|
9458
8391
|
}, {
|
9459
|
-
|
9460
|
-
|
9461
|
-
|
9462
|
-
|
8392
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8393
|
+
label: {
|
8394
|
+
id: string;
|
8395
|
+
description: string;
|
8396
|
+
defaultMessage: string;
|
8397
|
+
};
|
8398
|
+
}>, "many">;
|
9463
8399
|
}>, "strip", z.ZodTypeAny, {
|
9464
|
-
type: "
|
8400
|
+
type: "SELECT_DATE_RANGE";
|
9465
8401
|
id: string;
|
8402
|
+
options: {
|
8403
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8404
|
+
label: TranslationConfig;
|
8405
|
+
}[];
|
9466
8406
|
label: TranslationConfig;
|
9467
|
-
configuration: {
|
9468
|
-
styles?: {
|
9469
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9470
|
-
} | undefined;
|
9471
|
-
};
|
9472
|
-
items: TranslationConfig[];
|
9473
8407
|
parent?: {
|
9474
8408
|
$$field: string;
|
9475
8409
|
} | undefined;
|
@@ -9493,20 +8427,23 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9493
8427
|
helperText?: TranslationConfig | undefined;
|
9494
8428
|
hideLabel?: boolean | undefined;
|
9495
8429
|
uncorrectable?: boolean | undefined;
|
9496
|
-
defaultValue?:
|
8430
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
9497
8431
|
}, {
|
9498
|
-
type: "
|
8432
|
+
type: "SELECT_DATE_RANGE";
|
9499
8433
|
id: string;
|
8434
|
+
options: {
|
8435
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
8436
|
+
label: {
|
8437
|
+
id: string;
|
8438
|
+
description: string;
|
8439
|
+
defaultMessage: string;
|
8440
|
+
};
|
8441
|
+
}[];
|
9500
8442
|
label: {
|
9501
8443
|
id: string;
|
9502
8444
|
description: string;
|
9503
8445
|
defaultMessage: string;
|
9504
8446
|
};
|
9505
|
-
items: {
|
9506
|
-
id: string;
|
9507
|
-
description: string;
|
9508
|
-
defaultMessage: string;
|
9509
|
-
}[];
|
9510
8447
|
parent?: {
|
9511
8448
|
$$field: string;
|
9512
8449
|
} | undefined;
|
@@ -9542,12 +8479,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9542
8479
|
} | undefined;
|
9543
8480
|
hideLabel?: boolean | undefined;
|
9544
8481
|
uncorrectable?: boolean | undefined;
|
9545
|
-
defaultValue?:
|
9546
|
-
configuration?: {
|
9547
|
-
styles?: {
|
9548
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9549
|
-
} | undefined;
|
9550
|
-
} | undefined;
|
8482
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
9551
8483
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9552
8484
|
id: z.ZodString;
|
9553
8485
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9596,12 +8528,40 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9596
8528
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9597
8529
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9598
8530
|
}, {
|
9599
|
-
type: z.ZodLiteral<"
|
8531
|
+
type: z.ZodLiteral<"PARAGRAPH">;
|
9600
8532
|
defaultValue: z.ZodOptional<z.ZodString>;
|
8533
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
8534
|
+
styles: z.ZodOptional<z.ZodObject<{
|
8535
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
8536
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
8537
|
+
}, "strip", z.ZodTypeAny, {
|
8538
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8539
|
+
hint?: boolean | undefined;
|
8540
|
+
}, {
|
8541
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8542
|
+
hint?: boolean | undefined;
|
8543
|
+
}>>;
|
8544
|
+
}, "strip", z.ZodTypeAny, {
|
8545
|
+
styles?: {
|
8546
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8547
|
+
hint?: boolean | undefined;
|
8548
|
+
} | undefined;
|
8549
|
+
}, {
|
8550
|
+
styles?: {
|
8551
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8552
|
+
hint?: boolean | undefined;
|
8553
|
+
} | undefined;
|
8554
|
+
}>>;
|
9601
8555
|
}>, "strip", z.ZodTypeAny, {
|
9602
|
-
type: "
|
8556
|
+
type: "PARAGRAPH";
|
9603
8557
|
id: string;
|
9604
8558
|
label: TranslationConfig;
|
8559
|
+
configuration: {
|
8560
|
+
styles?: {
|
8561
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8562
|
+
hint?: boolean | undefined;
|
8563
|
+
} | undefined;
|
8564
|
+
};
|
9605
8565
|
parent?: {
|
9606
8566
|
$$field: string;
|
9607
8567
|
} | undefined;
|
@@ -9627,7 +8587,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9627
8587
|
uncorrectable?: boolean | undefined;
|
9628
8588
|
defaultValue?: string | undefined;
|
9629
8589
|
}, {
|
9630
|
-
type: "
|
8590
|
+
type: "PARAGRAPH";
|
9631
8591
|
id: string;
|
9632
8592
|
label: {
|
9633
8593
|
id: string;
|
@@ -9670,6 +8630,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9670
8630
|
hideLabel?: boolean | undefined;
|
9671
8631
|
uncorrectable?: boolean | undefined;
|
9672
8632
|
defaultValue?: string | undefined;
|
8633
|
+
configuration?: {
|
8634
|
+
styles?: {
|
8635
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8636
|
+
hint?: boolean | undefined;
|
8637
|
+
} | undefined;
|
8638
|
+
} | undefined;
|
9673
8639
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9674
8640
|
id: z.ZodString;
|
9675
8641
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9718,7 +8684,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9718
8684
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9719
8685
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9720
8686
|
}, {
|
9721
|
-
type: z.ZodLiteral<"
|
8687
|
+
type: z.ZodLiteral<"RADIO_GROUP">;
|
9722
8688
|
defaultValue: z.ZodOptional<z.ZodString>;
|
9723
8689
|
options: z.ZodArray<z.ZodObject<{
|
9724
8690
|
value: z.ZodString;
|
@@ -9738,8 +8704,25 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9738
8704
|
defaultMessage: string;
|
9739
8705
|
};
|
9740
8706
|
}>, "many">;
|
8707
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
8708
|
+
styles: z.ZodOptional<z.ZodObject<{
|
8709
|
+
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
8710
|
+
}, "strip", z.ZodTypeAny, {
|
8711
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8712
|
+
}, {
|
8713
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8714
|
+
}>>;
|
8715
|
+
}, "strip", z.ZodTypeAny, {
|
8716
|
+
styles?: {
|
8717
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8718
|
+
} | undefined;
|
8719
|
+
}, {
|
8720
|
+
styles?: {
|
8721
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8722
|
+
} | undefined;
|
8723
|
+
}>>;
|
9741
8724
|
}>, "strip", z.ZodTypeAny, {
|
9742
|
-
type: "
|
8725
|
+
type: "RADIO_GROUP";
|
9743
8726
|
id: string;
|
9744
8727
|
options: {
|
9745
8728
|
value: string;
|
@@ -9770,8 +8753,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9770
8753
|
hideLabel?: boolean | undefined;
|
9771
8754
|
uncorrectable?: boolean | undefined;
|
9772
8755
|
defaultValue?: string | undefined;
|
8756
|
+
configuration?: {
|
8757
|
+
styles?: {
|
8758
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8759
|
+
} | undefined;
|
8760
|
+
} | undefined;
|
9773
8761
|
}, {
|
9774
|
-
type: "
|
8762
|
+
type: "RADIO_GROUP";
|
9775
8763
|
id: string;
|
9776
8764
|
options: {
|
9777
8765
|
value: string;
|
@@ -9822,6 +8810,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9822
8810
|
hideLabel?: boolean | undefined;
|
9823
8811
|
uncorrectable?: boolean | undefined;
|
9824
8812
|
defaultValue?: string | undefined;
|
8813
|
+
configuration?: {
|
8814
|
+
styles?: {
|
8815
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
8816
|
+
} | undefined;
|
8817
|
+
} | undefined;
|
9825
8818
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9826
8819
|
id: z.ZodString;
|
9827
8820
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -9870,119 +8863,170 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9870
8863
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9871
8864
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9872
8865
|
}, {
|
9873
|
-
type: z.ZodLiteral<"
|
9874
|
-
defaultValue: z.ZodOptional<z.
|
9875
|
-
|
9876
|
-
|
9877
|
-
|
9878
|
-
|
9879
|
-
|
9880
|
-
|
9881
|
-
|
9882
|
-
|
9883
|
-
firstname?: string | undefined;
|
9884
|
-
surname?: string | undefined;
|
9885
|
-
middlename?: string | undefined;
|
9886
|
-
}>>;
|
9887
|
-
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
9888
|
-
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
9889
|
-
firstname: z.ZodOptional<z.ZodObject<{
|
9890
|
-
required: z.ZodBoolean;
|
9891
|
-
}, "strip", z.ZodTypeAny, {
|
9892
|
-
required: boolean;
|
9893
|
-
}, {
|
9894
|
-
required: boolean;
|
9895
|
-
}>>;
|
9896
|
-
middlename: z.ZodOptional<z.ZodObject<{
|
9897
|
-
required: z.ZodBoolean;
|
9898
|
-
}, "strip", z.ZodTypeAny, {
|
9899
|
-
required: boolean;
|
9900
|
-
}, {
|
9901
|
-
required: boolean;
|
9902
|
-
}>>;
|
9903
|
-
surname: z.ZodOptional<z.ZodObject<{
|
9904
|
-
required: z.ZodBoolean;
|
9905
|
-
}, "strip", z.ZodTypeAny, {
|
9906
|
-
required: boolean;
|
9907
|
-
}, {
|
9908
|
-
required: boolean;
|
9909
|
-
}>>;
|
8866
|
+
type: z.ZodLiteral<"BULLET_LIST">;
|
8867
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
8868
|
+
items: z.ZodArray<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8869
|
+
id: string;
|
8870
|
+
description: string;
|
8871
|
+
defaultMessage: string;
|
8872
|
+
}>, "many">;
|
8873
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
8874
|
+
styles: z.ZodOptional<z.ZodObject<{
|
8875
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
9910
8876
|
}, "strip", z.ZodTypeAny, {
|
9911
|
-
|
9912
|
-
required: boolean;
|
9913
|
-
} | undefined;
|
9914
|
-
surname?: {
|
9915
|
-
required: boolean;
|
9916
|
-
} | undefined;
|
9917
|
-
middlename?: {
|
9918
|
-
required: boolean;
|
9919
|
-
} | undefined;
|
8877
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9920
8878
|
}, {
|
9921
|
-
|
9922
|
-
required: boolean;
|
9923
|
-
} | undefined;
|
9924
|
-
surname?: {
|
9925
|
-
required: boolean;
|
9926
|
-
} | undefined;
|
9927
|
-
middlename?: {
|
9928
|
-
required: boolean;
|
9929
|
-
} | undefined;
|
9930
|
-
}>>>;
|
9931
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
9932
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9933
|
-
id: string;
|
9934
|
-
description: string;
|
9935
|
-
defaultMessage: string;
|
8879
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9936
8880
|
}>>;
|
9937
|
-
|
8881
|
+
}, "strip", z.ZodTypeAny, {
|
8882
|
+
styles?: {
|
8883
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8884
|
+
} | undefined;
|
8885
|
+
}, {
|
8886
|
+
styles?: {
|
8887
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8888
|
+
} | undefined;
|
8889
|
+
}>>;
|
8890
|
+
}>, "strip", z.ZodTypeAny, {
|
8891
|
+
type: "BULLET_LIST";
|
8892
|
+
id: string;
|
8893
|
+
label: TranslationConfig;
|
8894
|
+
configuration: {
|
8895
|
+
styles?: {
|
8896
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
8897
|
+
} | undefined;
|
8898
|
+
};
|
8899
|
+
items: TranslationConfig[];
|
8900
|
+
parent?: {
|
8901
|
+
$$field: string;
|
8902
|
+
} | undefined;
|
8903
|
+
validation?: {
|
8904
|
+
message: TranslationConfig;
|
8905
|
+
validator: import(".").JSONSchema;
|
8906
|
+
}[] | undefined;
|
8907
|
+
required?: boolean | undefined;
|
8908
|
+
conditionals?: ({
|
8909
|
+
type: "SHOW";
|
8910
|
+
conditional: import(".").JSONSchema;
|
8911
|
+
} | {
|
8912
|
+
type: "ENABLE";
|
8913
|
+
conditional: import(".").JSONSchema;
|
8914
|
+
} | {
|
8915
|
+
type: "DISPLAY_ON_REVIEW";
|
8916
|
+
conditional: import(".").JSONSchema;
|
8917
|
+
})[] | undefined;
|
8918
|
+
secured?: boolean | undefined;
|
8919
|
+
placeholder?: TranslationConfig | undefined;
|
8920
|
+
helperText?: TranslationConfig | undefined;
|
8921
|
+
hideLabel?: boolean | undefined;
|
8922
|
+
uncorrectable?: boolean | undefined;
|
8923
|
+
defaultValue?: string | undefined;
|
8924
|
+
}, {
|
8925
|
+
type: "BULLET_LIST";
|
8926
|
+
id: string;
|
8927
|
+
label: {
|
8928
|
+
id: string;
|
8929
|
+
description: string;
|
8930
|
+
defaultMessage: string;
|
8931
|
+
};
|
8932
|
+
items: {
|
8933
|
+
id: string;
|
8934
|
+
description: string;
|
8935
|
+
defaultMessage: string;
|
8936
|
+
}[];
|
8937
|
+
parent?: {
|
8938
|
+
$$field: string;
|
8939
|
+
} | undefined;
|
8940
|
+
validation?: {
|
8941
|
+
message: {
|
9938
8942
|
id: string;
|
9939
8943
|
description: string;
|
9940
8944
|
defaultMessage: string;
|
9941
|
-
}
|
9942
|
-
|
9943
|
-
}
|
9944
|
-
|
9945
|
-
|
9946
|
-
|
9947
|
-
|
9948
|
-
|
9949
|
-
|
9950
|
-
|
9951
|
-
|
9952
|
-
|
9953
|
-
|
8945
|
+
};
|
8946
|
+
validator: import(".").JSONSchema;
|
8947
|
+
}[] | undefined;
|
8948
|
+
required?: boolean | undefined;
|
8949
|
+
conditionals?: ({
|
8950
|
+
type: "SHOW";
|
8951
|
+
conditional: import(".").JSONSchema;
|
8952
|
+
} | {
|
8953
|
+
type: "ENABLE";
|
8954
|
+
conditional: import(".").JSONSchema;
|
8955
|
+
} | {
|
8956
|
+
type: "DISPLAY_ON_REVIEW";
|
8957
|
+
conditional: import(".").JSONSchema;
|
8958
|
+
})[] | undefined;
|
8959
|
+
secured?: boolean | undefined;
|
8960
|
+
placeholder?: {
|
8961
|
+
id: string;
|
8962
|
+
description: string;
|
8963
|
+
defaultMessage: string;
|
8964
|
+
} | undefined;
|
8965
|
+
helperText?: {
|
8966
|
+
id: string;
|
8967
|
+
description: string;
|
8968
|
+
defaultMessage: string;
|
8969
|
+
} | undefined;
|
8970
|
+
hideLabel?: boolean | undefined;
|
8971
|
+
uncorrectable?: boolean | undefined;
|
8972
|
+
defaultValue?: string | undefined;
|
8973
|
+
configuration?: {
|
8974
|
+
styles?: {
|
8975
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
9954
8976
|
} | undefined;
|
9955
|
-
|
9956
|
-
|
9957
|
-
|
9958
|
-
|
8977
|
+
} | undefined;
|
8978
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8979
|
+
id: z.ZodString;
|
8980
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8981
|
+
id: string;
|
8982
|
+
description: string;
|
8983
|
+
defaultMessage: string;
|
8984
|
+
}>;
|
8985
|
+
parent: z.ZodOptional<z.ZodObject<{
|
8986
|
+
$$field: z.ZodString;
|
8987
|
+
}, "strip", z.ZodTypeAny, {
|
8988
|
+
$$field: string;
|
9959
8989
|
}, {
|
9960
|
-
|
9961
|
-
|
9962
|
-
|
9963
|
-
|
9964
|
-
|
9965
|
-
|
9966
|
-
|
9967
|
-
|
9968
|
-
|
9969
|
-
|
9970
|
-
|
9971
|
-
|
9972
|
-
|
8990
|
+
$$field: string;
|
8991
|
+
}>>;
|
8992
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8993
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8994
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8995
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8996
|
+
id: string;
|
8997
|
+
description: string;
|
8998
|
+
defaultMessage: string;
|
8999
|
+
}>>;
|
9000
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
9001
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
9002
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9973
9003
|
id: string;
|
9974
9004
|
description: string;
|
9975
9005
|
defaultMessage: string;
|
9976
|
-
}
|
9977
|
-
|
9006
|
+
}>;
|
9007
|
+
}, "strip", z.ZodTypeAny, {
|
9008
|
+
message: TranslationConfig;
|
9009
|
+
validator: import(".").JSONSchema;
|
9010
|
+
}, {
|
9011
|
+
message: {
|
9978
9012
|
id: string;
|
9979
9013
|
description: string;
|
9980
9014
|
defaultMessage: string;
|
9981
|
-
}
|
9982
|
-
|
9983
|
-
}>>>;
|
9015
|
+
};
|
9016
|
+
validator: import(".").JSONSchema;
|
9017
|
+
}>, "many">>>;
|
9018
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9019
|
+
id: string;
|
9020
|
+
description: string;
|
9021
|
+
defaultMessage: string;
|
9022
|
+
}>>;
|
9023
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9024
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9025
|
+
}, {
|
9026
|
+
type: z.ZodLiteral<"PAGE_HEADER">;
|
9027
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
9984
9028
|
}>, "strip", z.ZodTypeAny, {
|
9985
|
-
type: "
|
9029
|
+
type: "PAGE_HEADER";
|
9986
9030
|
id: string;
|
9987
9031
|
label: TranslationConfig;
|
9988
9032
|
parent?: {
|
@@ -10008,30 +9052,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10008
9052
|
helperText?: TranslationConfig | undefined;
|
10009
9053
|
hideLabel?: boolean | undefined;
|
10010
9054
|
uncorrectable?: boolean | undefined;
|
10011
|
-
defaultValue?:
|
10012
|
-
firstname?: string | undefined;
|
10013
|
-
surname?: string | undefined;
|
10014
|
-
middlename?: string | undefined;
|
10015
|
-
} | undefined;
|
10016
|
-
configuration?: {
|
10017
|
-
name?: {
|
10018
|
-
firstname?: {
|
10019
|
-
required: boolean;
|
10020
|
-
} | undefined;
|
10021
|
-
surname?: {
|
10022
|
-
required: boolean;
|
10023
|
-
} | undefined;
|
10024
|
-
middlename?: {
|
10025
|
-
required: boolean;
|
10026
|
-
} | undefined;
|
10027
|
-
} | undefined;
|
10028
|
-
maxLength?: number | undefined;
|
10029
|
-
prefix?: TranslationConfig | undefined;
|
10030
|
-
postfix?: TranslationConfig | undefined;
|
10031
|
-
searchMode?: boolean | undefined;
|
10032
|
-
} | undefined;
|
9055
|
+
defaultValue?: string | undefined;
|
10033
9056
|
}, {
|
10034
|
-
type: "
|
9057
|
+
type: "PAGE_HEADER";
|
10035
9058
|
id: string;
|
10036
9059
|
label: {
|
10037
9060
|
id: string;
|
@@ -10073,36 +9096,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10073
9096
|
} | undefined;
|
10074
9097
|
hideLabel?: boolean | undefined;
|
10075
9098
|
uncorrectable?: boolean | undefined;
|
10076
|
-
defaultValue?:
|
10077
|
-
firstname?: string | undefined;
|
10078
|
-
surname?: string | undefined;
|
10079
|
-
middlename?: string | undefined;
|
10080
|
-
} | undefined;
|
10081
|
-
configuration?: {
|
10082
|
-
name?: {
|
10083
|
-
firstname?: {
|
10084
|
-
required: boolean;
|
10085
|
-
} | undefined;
|
10086
|
-
surname?: {
|
10087
|
-
required: boolean;
|
10088
|
-
} | undefined;
|
10089
|
-
middlename?: {
|
10090
|
-
required: boolean;
|
10091
|
-
} | undefined;
|
10092
|
-
} | undefined;
|
10093
|
-
maxLength?: number | undefined;
|
10094
|
-
prefix?: {
|
10095
|
-
id: string;
|
10096
|
-
description: string;
|
10097
|
-
defaultMessage: string;
|
10098
|
-
} | undefined;
|
10099
|
-
postfix?: {
|
10100
|
-
id: string;
|
10101
|
-
description: string;
|
10102
|
-
defaultMessage: string;
|
10103
|
-
} | undefined;
|
10104
|
-
searchMode?: boolean | undefined;
|
10105
|
-
} | undefined;
|
9099
|
+
defaultValue?: string | undefined;
|
10106
9100
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10107
9101
|
id: z.ZodString;
|
10108
9102
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10151,11 +9145,33 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10151
9145
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10152
9146
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10153
9147
|
}, {
|
9148
|
+
type: z.ZodLiteral<"SELECT">;
|
10154
9149
|
defaultValue: z.ZodOptional<z.ZodString>;
|
10155
|
-
|
9150
|
+
options: z.ZodArray<z.ZodObject<{
|
9151
|
+
value: z.ZodString;
|
9152
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9153
|
+
id: string;
|
9154
|
+
description: string;
|
9155
|
+
defaultMessage: string;
|
9156
|
+
}>;
|
9157
|
+
}, "strip", z.ZodTypeAny, {
|
9158
|
+
value: string;
|
9159
|
+
label: TranslationConfig;
|
9160
|
+
}, {
|
9161
|
+
value: string;
|
9162
|
+
label: {
|
9163
|
+
id: string;
|
9164
|
+
description: string;
|
9165
|
+
defaultMessage: string;
|
9166
|
+
};
|
9167
|
+
}>, "many">;
|
10156
9168
|
}>, "strip", z.ZodTypeAny, {
|
10157
|
-
type: "
|
9169
|
+
type: "SELECT";
|
10158
9170
|
id: string;
|
9171
|
+
options: {
|
9172
|
+
value: string;
|
9173
|
+
label: TranslationConfig;
|
9174
|
+
}[];
|
10159
9175
|
label: TranslationConfig;
|
10160
9176
|
parent?: {
|
10161
9177
|
$$field: string;
|
@@ -10182,8 +9198,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10182
9198
|
uncorrectable?: boolean | undefined;
|
10183
9199
|
defaultValue?: string | undefined;
|
10184
9200
|
}, {
|
10185
|
-
type: "
|
9201
|
+
type: "SELECT";
|
10186
9202
|
id: string;
|
9203
|
+
options: {
|
9204
|
+
value: string;
|
9205
|
+
label: {
|
9206
|
+
id: string;
|
9207
|
+
description: string;
|
9208
|
+
defaultMessage: string;
|
9209
|
+
};
|
9210
|
+
}[];
|
10187
9211
|
label: {
|
10188
9212
|
id: string;
|
10189
9213
|
description: string;
|
@@ -10253,30 +9277,139 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10253
9277
|
id: string;
|
10254
9278
|
description: string;
|
10255
9279
|
defaultMessage: string;
|
10256
|
-
}>;
|
9280
|
+
}>;
|
9281
|
+
}, "strip", z.ZodTypeAny, {
|
9282
|
+
message: TranslationConfig;
|
9283
|
+
validator: import(".").JSONSchema;
|
9284
|
+
}, {
|
9285
|
+
message: {
|
9286
|
+
id: string;
|
9287
|
+
description: string;
|
9288
|
+
defaultMessage: string;
|
9289
|
+
};
|
9290
|
+
validator: import(".").JSONSchema;
|
9291
|
+
}>, "many">>>;
|
9292
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9293
|
+
id: string;
|
9294
|
+
description: string;
|
9295
|
+
defaultMessage: string;
|
9296
|
+
}>>;
|
9297
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9298
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
9299
|
+
}, {
|
9300
|
+
type: z.ZodLiteral<"NAME">;
|
9301
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
9302
|
+
firstname: z.ZodOptional<z.ZodString>;
|
9303
|
+
middlename: z.ZodOptional<z.ZodString>;
|
9304
|
+
surname: z.ZodOptional<z.ZodString>;
|
9305
|
+
}, "strip", z.ZodTypeAny, {
|
9306
|
+
firstname?: string | undefined;
|
9307
|
+
surname?: string | undefined;
|
9308
|
+
middlename?: string | undefined;
|
9309
|
+
}, {
|
9310
|
+
firstname?: string | undefined;
|
9311
|
+
surname?: string | undefined;
|
9312
|
+
middlename?: string | undefined;
|
9313
|
+
}>>;
|
9314
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
9315
|
+
name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
9316
|
+
firstname: z.ZodOptional<z.ZodObject<{
|
9317
|
+
required: z.ZodBoolean;
|
9318
|
+
}, "strip", z.ZodTypeAny, {
|
9319
|
+
required: boolean;
|
9320
|
+
}, {
|
9321
|
+
required: boolean;
|
9322
|
+
}>>;
|
9323
|
+
middlename: z.ZodOptional<z.ZodObject<{
|
9324
|
+
required: z.ZodBoolean;
|
9325
|
+
}, "strip", z.ZodTypeAny, {
|
9326
|
+
required: boolean;
|
9327
|
+
}, {
|
9328
|
+
required: boolean;
|
9329
|
+
}>>;
|
9330
|
+
surname: z.ZodOptional<z.ZodObject<{
|
9331
|
+
required: z.ZodBoolean;
|
9332
|
+
}, "strip", z.ZodTypeAny, {
|
9333
|
+
required: boolean;
|
9334
|
+
}, {
|
9335
|
+
required: boolean;
|
9336
|
+
}>>;
|
9337
|
+
}, "strip", z.ZodTypeAny, {
|
9338
|
+
firstname?: {
|
9339
|
+
required: boolean;
|
9340
|
+
} | undefined;
|
9341
|
+
surname?: {
|
9342
|
+
required: boolean;
|
9343
|
+
} | undefined;
|
9344
|
+
middlename?: {
|
9345
|
+
required: boolean;
|
9346
|
+
} | undefined;
|
9347
|
+
}, {
|
9348
|
+
firstname?: {
|
9349
|
+
required: boolean;
|
9350
|
+
} | undefined;
|
9351
|
+
surname?: {
|
9352
|
+
required: boolean;
|
9353
|
+
} | undefined;
|
9354
|
+
middlename?: {
|
9355
|
+
required: boolean;
|
9356
|
+
} | undefined;
|
9357
|
+
}>>>;
|
9358
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
9359
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9360
|
+
id: string;
|
9361
|
+
description: string;
|
9362
|
+
defaultMessage: string;
|
9363
|
+
}>>;
|
9364
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9365
|
+
id: string;
|
9366
|
+
description: string;
|
9367
|
+
defaultMessage: string;
|
9368
|
+
}>>;
|
9369
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
10257
9370
|
}, "strip", z.ZodTypeAny, {
|
10258
|
-
|
10259
|
-
|
9371
|
+
name?: {
|
9372
|
+
firstname?: {
|
9373
|
+
required: boolean;
|
9374
|
+
} | undefined;
|
9375
|
+
surname?: {
|
9376
|
+
required: boolean;
|
9377
|
+
} | undefined;
|
9378
|
+
middlename?: {
|
9379
|
+
required: boolean;
|
9380
|
+
} | undefined;
|
9381
|
+
} | undefined;
|
9382
|
+
maxLength?: number | undefined;
|
9383
|
+
prefix?: TranslationConfig | undefined;
|
9384
|
+
postfix?: TranslationConfig | undefined;
|
9385
|
+
searchMode?: boolean | undefined;
|
10260
9386
|
}, {
|
10261
|
-
|
9387
|
+
name?: {
|
9388
|
+
firstname?: {
|
9389
|
+
required: boolean;
|
9390
|
+
} | undefined;
|
9391
|
+
surname?: {
|
9392
|
+
required: boolean;
|
9393
|
+
} | undefined;
|
9394
|
+
middlename?: {
|
9395
|
+
required: boolean;
|
9396
|
+
} | undefined;
|
9397
|
+
} | undefined;
|
9398
|
+
maxLength?: number | undefined;
|
9399
|
+
prefix?: {
|
10262
9400
|
id: string;
|
10263
9401
|
description: string;
|
10264
9402
|
defaultMessage: string;
|
10265
|
-
};
|
10266
|
-
|
10267
|
-
|
10268
|
-
|
10269
|
-
|
10270
|
-
|
10271
|
-
|
10272
|
-
}
|
10273
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10274
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10275
|
-
}, {
|
10276
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
10277
|
-
type: z.ZodLiteral<"ID">;
|
9403
|
+
} | undefined;
|
9404
|
+
postfix?: {
|
9405
|
+
id: string;
|
9406
|
+
description: string;
|
9407
|
+
defaultMessage: string;
|
9408
|
+
} | undefined;
|
9409
|
+
searchMode?: boolean | undefined;
|
9410
|
+
}>>>;
|
10278
9411
|
}>, "strip", z.ZodTypeAny, {
|
10279
|
-
type: "
|
9412
|
+
type: "NAME";
|
10280
9413
|
id: string;
|
10281
9414
|
label: TranslationConfig;
|
10282
9415
|
parent?: {
|
@@ -10302,9 +9435,30 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10302
9435
|
helperText?: TranslationConfig | undefined;
|
10303
9436
|
hideLabel?: boolean | undefined;
|
10304
9437
|
uncorrectable?: boolean | undefined;
|
10305
|
-
defaultValue?:
|
9438
|
+
defaultValue?: {
|
9439
|
+
firstname?: string | undefined;
|
9440
|
+
surname?: string | undefined;
|
9441
|
+
middlename?: string | undefined;
|
9442
|
+
} | undefined;
|
9443
|
+
configuration?: {
|
9444
|
+
name?: {
|
9445
|
+
firstname?: {
|
9446
|
+
required: boolean;
|
9447
|
+
} | undefined;
|
9448
|
+
surname?: {
|
9449
|
+
required: boolean;
|
9450
|
+
} | undefined;
|
9451
|
+
middlename?: {
|
9452
|
+
required: boolean;
|
9453
|
+
} | undefined;
|
9454
|
+
} | undefined;
|
9455
|
+
maxLength?: number | undefined;
|
9456
|
+
prefix?: TranslationConfig | undefined;
|
9457
|
+
postfix?: TranslationConfig | undefined;
|
9458
|
+
searchMode?: boolean | undefined;
|
9459
|
+
} | undefined;
|
10306
9460
|
}, {
|
10307
|
-
type: "
|
9461
|
+
type: "NAME";
|
10308
9462
|
id: string;
|
10309
9463
|
label: {
|
10310
9464
|
id: string;
|
@@ -10346,7 +9500,36 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10346
9500
|
} | undefined;
|
10347
9501
|
hideLabel?: boolean | undefined;
|
10348
9502
|
uncorrectable?: boolean | undefined;
|
10349
|
-
defaultValue?:
|
9503
|
+
defaultValue?: {
|
9504
|
+
firstname?: string | undefined;
|
9505
|
+
surname?: string | undefined;
|
9506
|
+
middlename?: string | undefined;
|
9507
|
+
} | undefined;
|
9508
|
+
configuration?: {
|
9509
|
+
name?: {
|
9510
|
+
firstname?: {
|
9511
|
+
required: boolean;
|
9512
|
+
} | undefined;
|
9513
|
+
surname?: {
|
9514
|
+
required: boolean;
|
9515
|
+
} | undefined;
|
9516
|
+
middlename?: {
|
9517
|
+
required: boolean;
|
9518
|
+
} | undefined;
|
9519
|
+
} | undefined;
|
9520
|
+
maxLength?: number | undefined;
|
9521
|
+
prefix?: {
|
9522
|
+
id: string;
|
9523
|
+
description: string;
|
9524
|
+
defaultMessage: string;
|
9525
|
+
} | undefined;
|
9526
|
+
postfix?: {
|
9527
|
+
id: string;
|
9528
|
+
description: string;
|
9529
|
+
defaultMessage: string;
|
9530
|
+
} | undefined;
|
9531
|
+
searchMode?: boolean | undefined;
|
9532
|
+
} | undefined;
|
10350
9533
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10351
9534
|
id: z.ZodString;
|
10352
9535
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10395,10 +9578,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10395
9578
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10396
9579
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10397
9580
|
}, {
|
10398
|
-
|
10399
|
-
|
9581
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
9582
|
+
type: z.ZodLiteral<"PHONE">;
|
10400
9583
|
}>, "strip", z.ZodTypeAny, {
|
10401
|
-
type: "
|
9584
|
+
type: "PHONE";
|
10402
9585
|
id: string;
|
10403
9586
|
label: TranslationConfig;
|
10404
9587
|
parent?: {
|
@@ -10424,9 +9607,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10424
9607
|
helperText?: TranslationConfig | undefined;
|
10425
9608
|
hideLabel?: boolean | undefined;
|
10426
9609
|
uncorrectable?: boolean | undefined;
|
10427
|
-
defaultValue?:
|
9610
|
+
defaultValue?: string | undefined;
|
10428
9611
|
}, {
|
10429
|
-
type: "
|
9612
|
+
type: "PHONE";
|
10430
9613
|
id: string;
|
10431
9614
|
label: {
|
10432
9615
|
id: string;
|
@@ -10468,7 +9651,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10468
9651
|
} | undefined;
|
10469
9652
|
hideLabel?: boolean | undefined;
|
10470
9653
|
uncorrectable?: boolean | undefined;
|
10471
|
-
defaultValue?:
|
9654
|
+
defaultValue?: string | undefined;
|
10472
9655
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10473
9656
|
id: z.ZodString;
|
10474
9657
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10517,66 +9700,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10517
9700
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10518
9701
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10519
9702
|
}, {
|
10520
|
-
|
10521
|
-
|
10522
|
-
path: z.ZodEffects<z.ZodString, string, string>;
|
10523
|
-
originalFilename: z.ZodString;
|
10524
|
-
type: z.ZodString;
|
10525
|
-
}, "strip", z.ZodTypeAny, {
|
10526
|
-
type: string;
|
10527
|
-
path: string;
|
10528
|
-
originalFilename: string;
|
10529
|
-
}, {
|
10530
|
-
type: string;
|
10531
|
-
path: string;
|
10532
|
-
originalFilename: string;
|
10533
|
-
}>>;
|
10534
|
-
configuration: z.ZodDefault<z.ZodObject<{
|
10535
|
-
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
10536
|
-
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
10537
|
-
style: z.ZodOptional<z.ZodObject<{
|
10538
|
-
width: z.ZodOptional<z.ZodEnum<["full", "auto"]>>;
|
10539
|
-
}, "strip", z.ZodTypeAny, {
|
10540
|
-
width?: "full" | "auto" | undefined;
|
10541
|
-
}, {
|
10542
|
-
width?: "full" | "auto" | undefined;
|
10543
|
-
}>>;
|
10544
|
-
fileName: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
10545
|
-
id: string;
|
10546
|
-
description: string;
|
10547
|
-
defaultMessage: string;
|
10548
|
-
}>>;
|
10549
|
-
}, "strip", z.ZodTypeAny, {
|
10550
|
-
maxFileSize: number;
|
10551
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10552
|
-
style?: {
|
10553
|
-
width?: "full" | "auto" | undefined;
|
10554
|
-
} | undefined;
|
10555
|
-
fileName?: TranslationConfig | undefined;
|
10556
|
-
}, {
|
10557
|
-
maxFileSize?: number | undefined;
|
10558
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10559
|
-
style?: {
|
10560
|
-
width?: "full" | "auto" | undefined;
|
10561
|
-
} | undefined;
|
10562
|
-
fileName?: {
|
10563
|
-
id: string;
|
10564
|
-
description: string;
|
10565
|
-
defaultMessage: string;
|
10566
|
-
} | undefined;
|
10567
|
-
}>>;
|
9703
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
9704
|
+
type: z.ZodLiteral<"ID">;
|
10568
9705
|
}>, "strip", z.ZodTypeAny, {
|
10569
|
-
type: "
|
9706
|
+
type: "ID";
|
10570
9707
|
id: string;
|
10571
9708
|
label: TranslationConfig;
|
10572
|
-
configuration: {
|
10573
|
-
maxFileSize: number;
|
10574
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10575
|
-
style?: {
|
10576
|
-
width?: "full" | "auto" | undefined;
|
10577
|
-
} | undefined;
|
10578
|
-
fileName?: TranslationConfig | undefined;
|
10579
|
-
};
|
10580
9709
|
parent?: {
|
10581
9710
|
$$field: string;
|
10582
9711
|
} | undefined;
|
@@ -10600,13 +9729,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10600
9729
|
helperText?: TranslationConfig | undefined;
|
10601
9730
|
hideLabel?: boolean | undefined;
|
10602
9731
|
uncorrectable?: boolean | undefined;
|
10603
|
-
defaultValue?:
|
10604
|
-
type: string;
|
10605
|
-
path: string;
|
10606
|
-
originalFilename: string;
|
10607
|
-
} | undefined;
|
9732
|
+
defaultValue?: string | undefined;
|
10608
9733
|
}, {
|
10609
|
-
type: "
|
9734
|
+
type: "ID";
|
10610
9735
|
id: string;
|
10611
9736
|
label: {
|
10612
9737
|
id: string;
|
@@ -10648,23 +9773,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10648
9773
|
} | undefined;
|
10649
9774
|
hideLabel?: boolean | undefined;
|
10650
9775
|
uncorrectable?: boolean | undefined;
|
10651
|
-
defaultValue?:
|
10652
|
-
type: string;
|
10653
|
-
path: string;
|
10654
|
-
originalFilename: string;
|
10655
|
-
} | undefined;
|
10656
|
-
configuration?: {
|
10657
|
-
maxFileSize?: number | undefined;
|
10658
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10659
|
-
style?: {
|
10660
|
-
width?: "full" | "auto" | undefined;
|
10661
|
-
} | undefined;
|
10662
|
-
fileName?: {
|
10663
|
-
id: string;
|
10664
|
-
description: string;
|
10665
|
-
defaultMessage: string;
|
10666
|
-
} | undefined;
|
10667
|
-
} | undefined;
|
9776
|
+
defaultValue?: string | undefined;
|
10668
9777
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10669
9778
|
id: z.ZodString;
|
10670
9779
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10713,10 +9822,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10713
9822
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10714
9823
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10715
9824
|
}, {
|
10716
|
-
type: z.ZodLiteral<"
|
10717
|
-
defaultValue: z.ZodOptional<z.
|
9825
|
+
type: z.ZodLiteral<"CHECKBOX">;
|
9826
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
10718
9827
|
}>, "strip", z.ZodTypeAny, {
|
10719
|
-
type: "
|
9828
|
+
type: "CHECKBOX";
|
10720
9829
|
id: string;
|
10721
9830
|
label: TranslationConfig;
|
10722
9831
|
parent?: {
|
@@ -10742,9 +9851,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10742
9851
|
helperText?: TranslationConfig | undefined;
|
10743
9852
|
hideLabel?: boolean | undefined;
|
10744
9853
|
uncorrectable?: boolean | undefined;
|
10745
|
-
defaultValue?:
|
9854
|
+
defaultValue?: boolean | undefined;
|
10746
9855
|
}, {
|
10747
|
-
type: "
|
9856
|
+
type: "CHECKBOX";
|
10748
9857
|
id: string;
|
10749
9858
|
label: {
|
10750
9859
|
id: string;
|
@@ -10786,7 +9895,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10786
9895
|
} | undefined;
|
10787
9896
|
hideLabel?: boolean | undefined;
|
10788
9897
|
uncorrectable?: boolean | undefined;
|
10789
|
-
defaultValue?:
|
9898
|
+
defaultValue?: boolean | undefined;
|
10790
9899
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10791
9900
|
id: z.ZodString;
|
10792
9901
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10835,37 +9944,65 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10835
9944
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10836
9945
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10837
9946
|
}, {
|
10838
|
-
type: z.ZodLiteral<"
|
10839
|
-
defaultValue: z.ZodOptional<z.
|
10840
|
-
|
10841
|
-
|
10842
|
-
|
9947
|
+
type: z.ZodLiteral<"FILE">;
|
9948
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
9949
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
9950
|
+
originalFilename: z.ZodString;
|
9951
|
+
type: z.ZodString;
|
9952
|
+
}, "strip", z.ZodTypeAny, {
|
9953
|
+
type: string;
|
9954
|
+
path: string;
|
9955
|
+
originalFilename: string;
|
9956
|
+
}, {
|
9957
|
+
type: string;
|
9958
|
+
path: string;
|
9959
|
+
originalFilename: string;
|
9960
|
+
}>>;
|
9961
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
9962
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
9963
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
9964
|
+
style: z.ZodOptional<z.ZodObject<{
|
9965
|
+
width: z.ZodOptional<z.ZodEnum<["full", "auto"]>>;
|
10843
9966
|
}, "strip", z.ZodTypeAny, {
|
10844
|
-
|
9967
|
+
width?: "full" | "auto" | undefined;
|
10845
9968
|
}, {
|
10846
|
-
|
9969
|
+
width?: "full" | "auto" | undefined;
|
9970
|
+
}>>;
|
9971
|
+
fileName: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
9972
|
+
id: string;
|
9973
|
+
description: string;
|
9974
|
+
defaultMessage: string;
|
10847
9975
|
}>>;
|
10848
|
-
type: z.ZodEnum<["ADMIN_STRUCTURE", "HEALTH_FACILITY", "CRVS_OFFICE"]>;
|
10849
9976
|
}, "strip", z.ZodTypeAny, {
|
10850
|
-
|
10851
|
-
|
10852
|
-
|
9977
|
+
maxFileSize: number;
|
9978
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9979
|
+
style?: {
|
9980
|
+
width?: "full" | "auto" | undefined;
|
10853
9981
|
} | undefined;
|
9982
|
+
fileName?: TranslationConfig | undefined;
|
10854
9983
|
}, {
|
10855
|
-
|
10856
|
-
|
10857
|
-
|
9984
|
+
maxFileSize?: number | undefined;
|
9985
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
9986
|
+
style?: {
|
9987
|
+
width?: "full" | "auto" | undefined;
|
10858
9988
|
} | undefined;
|
10859
|
-
|
9989
|
+
fileName?: {
|
9990
|
+
id: string;
|
9991
|
+
description: string;
|
9992
|
+
defaultMessage: string;
|
9993
|
+
} | undefined;
|
9994
|
+
}>>;
|
10860
9995
|
}>, "strip", z.ZodTypeAny, {
|
10861
|
-
type: "
|
9996
|
+
type: "FILE";
|
10862
9997
|
id: string;
|
10863
9998
|
label: TranslationConfig;
|
10864
9999
|
configuration: {
|
10865
|
-
|
10866
|
-
|
10867
|
-
|
10000
|
+
maxFileSize: number;
|
10001
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10002
|
+
style?: {
|
10003
|
+
width?: "full" | "auto" | undefined;
|
10868
10004
|
} | undefined;
|
10005
|
+
fileName?: TranslationConfig | undefined;
|
10869
10006
|
};
|
10870
10007
|
parent?: {
|
10871
10008
|
$$field: string;
|
@@ -10890,21 +10027,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10890
10027
|
helperText?: TranslationConfig | undefined;
|
10891
10028
|
hideLabel?: boolean | undefined;
|
10892
10029
|
uncorrectable?: boolean | undefined;
|
10893
|
-
defaultValue?:
|
10030
|
+
defaultValue?: {
|
10031
|
+
type: string;
|
10032
|
+
path: string;
|
10033
|
+
originalFilename: string;
|
10034
|
+
} | undefined;
|
10894
10035
|
}, {
|
10895
|
-
type: "
|
10036
|
+
type: "FILE";
|
10896
10037
|
id: string;
|
10897
10038
|
label: {
|
10898
10039
|
id: string;
|
10899
10040
|
description: string;
|
10900
10041
|
defaultMessage: string;
|
10901
10042
|
};
|
10902
|
-
configuration: {
|
10903
|
-
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10904
|
-
partOf?: {
|
10905
|
-
$declaration: string;
|
10906
|
-
} | undefined;
|
10907
|
-
};
|
10908
10043
|
parent?: {
|
10909
10044
|
$$field: string;
|
10910
10045
|
} | undefined;
|
@@ -10940,7 +10075,23 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10940
10075
|
} | undefined;
|
10941
10076
|
hideLabel?: boolean | undefined;
|
10942
10077
|
uncorrectable?: boolean | undefined;
|
10943
|
-
defaultValue?:
|
10078
|
+
defaultValue?: {
|
10079
|
+
type: string;
|
10080
|
+
path: string;
|
10081
|
+
originalFilename: string;
|
10082
|
+
} | undefined;
|
10083
|
+
configuration?: {
|
10084
|
+
maxFileSize?: number | undefined;
|
10085
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
10086
|
+
style?: {
|
10087
|
+
width?: "full" | "auto" | undefined;
|
10088
|
+
} | undefined;
|
10089
|
+
fileName?: {
|
10090
|
+
id: string;
|
10091
|
+
description: string;
|
10092
|
+
defaultMessage: string;
|
10093
|
+
} | undefined;
|
10094
|
+
} | undefined;
|
10944
10095
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10945
10096
|
id: z.ZodString;
|
10946
10097
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -10989,9 +10140,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10989
10140
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10990
10141
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10991
10142
|
}, {
|
10992
|
-
type: z.ZodLiteral<"
|
10143
|
+
type: z.ZodLiteral<"COUNTRY">;
|
10144
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
10993
10145
|
}>, "strip", z.ZodTypeAny, {
|
10994
|
-
type: "
|
10146
|
+
type: "COUNTRY";
|
10995
10147
|
id: string;
|
10996
10148
|
label: TranslationConfig;
|
10997
10149
|
parent?: {
|
@@ -11017,8 +10169,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11017
10169
|
helperText?: TranslationConfig | undefined;
|
11018
10170
|
hideLabel?: boolean | undefined;
|
11019
10171
|
uncorrectable?: boolean | undefined;
|
10172
|
+
defaultValue?: string | undefined;
|
11020
10173
|
}, {
|
11021
|
-
type: "
|
10174
|
+
type: "COUNTRY";
|
11022
10175
|
id: string;
|
11023
10176
|
label: {
|
11024
10177
|
id: string;
|
@@ -11060,6 +10213,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11060
10213
|
} | undefined;
|
11061
10214
|
hideLabel?: boolean | undefined;
|
11062
10215
|
uncorrectable?: boolean | undefined;
|
10216
|
+
defaultValue?: string | undefined;
|
11063
10217
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11064
10218
|
id: z.ZodString;
|
11065
10219
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11108,19 +10262,38 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11108
10262
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11109
10263
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11110
10264
|
}, {
|
11111
|
-
type: z.ZodLiteral<"
|
10265
|
+
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
11112
10266
|
defaultValue: z.ZodOptional<z.ZodString>;
|
11113
|
-
configuration: z.
|
11114
|
-
|
10267
|
+
configuration: z.ZodObject<{
|
10268
|
+
partOf: z.ZodOptional<z.ZodObject<{
|
10269
|
+
$declaration: z.ZodString;
|
10270
|
+
}, "strip", z.ZodTypeAny, {
|
10271
|
+
$declaration: string;
|
10272
|
+
}, {
|
10273
|
+
$declaration: string;
|
10274
|
+
}>>;
|
10275
|
+
type: z.ZodEnum<["ADMIN_STRUCTURE", "HEALTH_FACILITY", "CRVS_OFFICE"]>;
|
11115
10276
|
}, "strip", z.ZodTypeAny, {
|
11116
|
-
|
10277
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10278
|
+
partOf?: {
|
10279
|
+
$declaration: string;
|
10280
|
+
} | undefined;
|
11117
10281
|
}, {
|
11118
|
-
|
11119
|
-
|
10282
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10283
|
+
partOf?: {
|
10284
|
+
$declaration: string;
|
10285
|
+
} | undefined;
|
10286
|
+
}>;
|
11120
10287
|
}>, "strip", z.ZodTypeAny, {
|
11121
|
-
type: "
|
10288
|
+
type: "ADMINISTRATIVE_AREA";
|
11122
10289
|
id: string;
|
11123
10290
|
label: TranslationConfig;
|
10291
|
+
configuration: {
|
10292
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10293
|
+
partOf?: {
|
10294
|
+
$declaration: string;
|
10295
|
+
} | undefined;
|
10296
|
+
};
|
11124
10297
|
parent?: {
|
11125
10298
|
$$field: string;
|
11126
10299
|
} | undefined;
|
@@ -11145,17 +10318,20 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11145
10318
|
hideLabel?: boolean | undefined;
|
11146
10319
|
uncorrectable?: boolean | undefined;
|
11147
10320
|
defaultValue?: string | undefined;
|
11148
|
-
configuration?: {
|
11149
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
11150
|
-
} | undefined;
|
11151
10321
|
}, {
|
11152
|
-
type: "
|
10322
|
+
type: "ADMINISTRATIVE_AREA";
|
11153
10323
|
id: string;
|
11154
10324
|
label: {
|
11155
10325
|
id: string;
|
11156
10326
|
description: string;
|
11157
10327
|
defaultMessage: string;
|
11158
10328
|
};
|
10329
|
+
configuration: {
|
10330
|
+
type: "ADMIN_STRUCTURE" | "HEALTH_FACILITY" | "CRVS_OFFICE";
|
10331
|
+
partOf?: {
|
10332
|
+
$declaration: string;
|
10333
|
+
} | undefined;
|
10334
|
+
};
|
11159
10335
|
parent?: {
|
11160
10336
|
$$field: string;
|
11161
10337
|
} | undefined;
|
@@ -11192,9 +10368,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11192
10368
|
hideLabel?: boolean | undefined;
|
11193
10369
|
uncorrectable?: boolean | undefined;
|
11194
10370
|
defaultValue?: string | undefined;
|
11195
|
-
configuration?: {
|
11196
|
-
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
11197
|
-
} | undefined;
|
11198
10371
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11199
10372
|
id: z.ZodString;
|
11200
10373
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11243,10 +10416,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11243
10416
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11244
10417
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11245
10418
|
}, {
|
11246
|
-
type: z.ZodLiteral<"
|
11247
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
10419
|
+
type: z.ZodLiteral<"DIVIDER">;
|
11248
10420
|
}>, "strip", z.ZodTypeAny, {
|
11249
|
-
type: "
|
10421
|
+
type: "DIVIDER";
|
11250
10422
|
id: string;
|
11251
10423
|
label: TranslationConfig;
|
11252
10424
|
parent?: {
|
@@ -11272,9 +10444,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11272
10444
|
helperText?: TranslationConfig | undefined;
|
11273
10445
|
hideLabel?: boolean | undefined;
|
11274
10446
|
uncorrectable?: boolean | undefined;
|
11275
|
-
defaultValue?: string | undefined;
|
11276
10447
|
}, {
|
11277
|
-
type: "
|
10448
|
+
type: "DIVIDER";
|
11278
10449
|
id: string;
|
11279
10450
|
label: {
|
11280
10451
|
id: string;
|
@@ -11316,7 +10487,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11316
10487
|
} | undefined;
|
11317
10488
|
hideLabel?: boolean | undefined;
|
11318
10489
|
uncorrectable?: boolean | undefined;
|
11319
|
-
defaultValue?: string | undefined;
|
11320
10490
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11321
10491
|
id: z.ZodString;
|
11322
10492
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11365,10 +10535,17 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11365
10535
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11366
10536
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11367
10537
|
}, {
|
11368
|
-
type: z.ZodLiteral<"
|
10538
|
+
type: z.ZodLiteral<"LOCATION">;
|
11369
10539
|
defaultValue: z.ZodOptional<z.ZodString>;
|
10540
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
10541
|
+
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
10542
|
+
}, "strip", z.ZodTypeAny, {
|
10543
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10544
|
+
}, {
|
10545
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10546
|
+
}>>;
|
11370
10547
|
}>, "strip", z.ZodTypeAny, {
|
11371
|
-
type: "
|
10548
|
+
type: "LOCATION";
|
11372
10549
|
id: string;
|
11373
10550
|
label: TranslationConfig;
|
11374
10551
|
parent?: {
|
@@ -11395,8 +10572,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11395
10572
|
hideLabel?: boolean | undefined;
|
11396
10573
|
uncorrectable?: boolean | undefined;
|
11397
10574
|
defaultValue?: string | undefined;
|
10575
|
+
configuration?: {
|
10576
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10577
|
+
} | undefined;
|
11398
10578
|
}, {
|
11399
|
-
type: "
|
10579
|
+
type: "LOCATION";
|
11400
10580
|
id: string;
|
11401
10581
|
label: {
|
11402
10582
|
id: string;
|
@@ -11439,6 +10619,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11439
10619
|
hideLabel?: boolean | undefined;
|
11440
10620
|
uncorrectable?: boolean | undefined;
|
11441
10621
|
defaultValue?: string | undefined;
|
10622
|
+
configuration?: {
|
10623
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
10624
|
+
} | undefined;
|
11442
10625
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11443
10626
|
id: z.ZodString;
|
11444
10627
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11487,32 +10670,12 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11487
10670
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11488
10671
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11489
10672
|
}, {
|
11490
|
-
type: z.ZodLiteral<"
|
11491
|
-
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11492
|
-
id: string;
|
11493
|
-
description: string;
|
11494
|
-
defaultMessage: string;
|
11495
|
-
}>;
|
10673
|
+
type: z.ZodLiteral<"FACILITY">;
|
11496
10674
|
defaultValue: z.ZodOptional<z.ZodString>;
|
11497
|
-
configuration: z.ZodDefault<z.ZodObject<{
|
11498
|
-
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
11499
|
-
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
11500
|
-
}, "strip", z.ZodTypeAny, {
|
11501
|
-
maxFileSize: number;
|
11502
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11503
|
-
}, {
|
11504
|
-
maxFileSize?: number | undefined;
|
11505
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11506
|
-
}>>;
|
11507
10675
|
}>, "strip", z.ZodTypeAny, {
|
11508
|
-
type: "
|
10676
|
+
type: "FACILITY";
|
11509
10677
|
id: string;
|
11510
10678
|
label: TranslationConfig;
|
11511
|
-
configuration: {
|
11512
|
-
maxFileSize: number;
|
11513
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11514
|
-
};
|
11515
|
-
signaturePromptLabel: TranslationConfig;
|
11516
10679
|
parent?: {
|
11517
10680
|
$$field: string;
|
11518
10681
|
} | undefined;
|
@@ -11538,18 +10701,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11538
10701
|
uncorrectable?: boolean | undefined;
|
11539
10702
|
defaultValue?: string | undefined;
|
11540
10703
|
}, {
|
11541
|
-
type: "
|
10704
|
+
type: "FACILITY";
|
11542
10705
|
id: string;
|
11543
10706
|
label: {
|
11544
10707
|
id: string;
|
11545
10708
|
description: string;
|
11546
10709
|
defaultMessage: string;
|
11547
10710
|
};
|
11548
|
-
signaturePromptLabel: {
|
11549
|
-
id: string;
|
11550
|
-
description: string;
|
11551
|
-
defaultMessage: string;
|
11552
|
-
};
|
11553
10711
|
parent?: {
|
11554
10712
|
$$field: string;
|
11555
10713
|
} | undefined;
|
@@ -11586,10 +10744,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11586
10744
|
hideLabel?: boolean | undefined;
|
11587
10745
|
uncorrectable?: boolean | undefined;
|
11588
10746
|
defaultValue?: string | undefined;
|
11589
|
-
configuration?: {
|
11590
|
-
maxFileSize?: number | undefined;
|
11591
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11592
|
-
} | undefined;
|
11593
10747
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11594
10748
|
id: z.ZodString;
|
11595
10749
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11638,17 +10792,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11638
10792
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11639
10793
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11640
10794
|
}, {
|
11641
|
-
type: z.ZodLiteral<"
|
11642
|
-
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
11643
|
-
maxLength: z.ZodOptional<z.ZodNumber>;
|
11644
|
-
}, "strip", z.ZodTypeAny, {
|
11645
|
-
maxLength?: number | undefined;
|
11646
|
-
}, {
|
11647
|
-
maxLength?: number | undefined;
|
11648
|
-
}>>>;
|
10795
|
+
type: z.ZodLiteral<"OFFICE">;
|
11649
10796
|
defaultValue: z.ZodOptional<z.ZodString>;
|
11650
10797
|
}>, "strip", z.ZodTypeAny, {
|
11651
|
-
type: "
|
10798
|
+
type: "OFFICE";
|
11652
10799
|
id: string;
|
11653
10800
|
label: TranslationConfig;
|
11654
10801
|
parent?: {
|
@@ -11675,11 +10822,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11675
10822
|
hideLabel?: boolean | undefined;
|
11676
10823
|
uncorrectable?: boolean | undefined;
|
11677
10824
|
defaultValue?: string | undefined;
|
11678
|
-
configuration?: {
|
11679
|
-
maxLength?: number | undefined;
|
11680
|
-
} | undefined;
|
11681
10825
|
}, {
|
11682
|
-
type: "
|
10826
|
+
type: "OFFICE";
|
11683
10827
|
id: string;
|
11684
10828
|
label: {
|
11685
10829
|
id: string;
|
@@ -11722,9 +10866,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11722
10866
|
hideLabel?: boolean | undefined;
|
11723
10867
|
uncorrectable?: boolean | undefined;
|
11724
10868
|
defaultValue?: string | undefined;
|
11725
|
-
configuration?: {
|
11726
|
-
maxLength?: number | undefined;
|
11727
|
-
} | undefined;
|
11728
10869
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11729
10870
|
id: z.ZodString;
|
11730
10871
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -11754,60 +10895,32 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11754
10895
|
description: string;
|
11755
10896
|
defaultMessage: string;
|
11756
10897
|
}>;
|
11757
|
-
}, "strip", z.ZodTypeAny, {
|
11758
|
-
message: TranslationConfig;
|
11759
|
-
validator: import(".").JSONSchema;
|
11760
|
-
}, {
|
11761
|
-
message: {
|
11762
|
-
id: string;
|
11763
|
-
description: string;
|
11764
|
-
defaultMessage: string;
|
11765
|
-
};
|
11766
|
-
validator: import(".").JSONSchema;
|
11767
|
-
}>, "many">>>;
|
11768
|
-
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11769
|
-
id: string;
|
11770
|
-
description: string;
|
11771
|
-
defaultMessage: string;
|
11772
|
-
}>>;
|
11773
|
-
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11774
|
-
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11775
|
-
}, {
|
11776
|
-
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
11777
|
-
options: z.ZodArray<z.ZodObject<{
|
11778
|
-
value: z.ZodString;
|
11779
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11780
|
-
id: string;
|
11781
|
-
description: string;
|
11782
|
-
defaultMessage: string;
|
11783
|
-
}>;
|
11784
|
-
}, "strip", z.ZodTypeAny, {
|
11785
|
-
value: string;
|
11786
|
-
label: TranslationConfig;
|
11787
|
-
}, {
|
11788
|
-
value: string;
|
11789
|
-
label: {
|
11790
|
-
id: string;
|
11791
|
-
description: string;
|
11792
|
-
defaultMessage: string;
|
11793
|
-
};
|
11794
|
-
}>, "many">;
|
11795
|
-
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11796
|
-
path: z.ZodEffects<z.ZodString, string, string>;
|
11797
|
-
originalFilename: z.ZodString;
|
11798
|
-
type: z.ZodString;
|
11799
|
-
option: z.ZodString;
|
11800
|
-
}, "strip", z.ZodTypeAny, {
|
11801
|
-
type: string;
|
11802
|
-
option: string;
|
11803
|
-
path: string;
|
11804
|
-
originalFilename: string;
|
10898
|
+
}, "strip", z.ZodTypeAny, {
|
10899
|
+
message: TranslationConfig;
|
10900
|
+
validator: import(".").JSONSchema;
|
11805
10901
|
}, {
|
11806
|
-
|
11807
|
-
|
11808
|
-
|
11809
|
-
|
11810
|
-
|
10902
|
+
message: {
|
10903
|
+
id: string;
|
10904
|
+
description: string;
|
10905
|
+
defaultMessage: string;
|
10906
|
+
};
|
10907
|
+
validator: import(".").JSONSchema;
|
10908
|
+
}>, "many">>>;
|
10909
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
10910
|
+
id: string;
|
10911
|
+
description: string;
|
10912
|
+
defaultMessage: string;
|
10913
|
+
}>>;
|
10914
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10915
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
10916
|
+
}, {
|
10917
|
+
type: z.ZodLiteral<"SIGNATURE">;
|
10918
|
+
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
10919
|
+
id: string;
|
10920
|
+
description: string;
|
10921
|
+
defaultMessage: string;
|
10922
|
+
}>;
|
10923
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
11811
10924
|
configuration: z.ZodDefault<z.ZodObject<{
|
11812
10925
|
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
11813
10926
|
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
@@ -11819,17 +10932,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11819
10932
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11820
10933
|
}>>;
|
11821
10934
|
}>, "strip", z.ZodTypeAny, {
|
11822
|
-
type: "
|
10935
|
+
type: "SIGNATURE";
|
11823
10936
|
id: string;
|
11824
|
-
options: {
|
11825
|
-
value: string;
|
11826
|
-
label: TranslationConfig;
|
11827
|
-
}[];
|
11828
10937
|
label: TranslationConfig;
|
11829
10938
|
configuration: {
|
11830
10939
|
maxFileSize: number;
|
11831
10940
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11832
10941
|
};
|
10942
|
+
signaturePromptLabel: TranslationConfig;
|
11833
10943
|
parent?: {
|
11834
10944
|
$$field: string;
|
11835
10945
|
} | undefined;
|
@@ -11853,28 +10963,20 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11853
10963
|
helperText?: TranslationConfig | undefined;
|
11854
10964
|
hideLabel?: boolean | undefined;
|
11855
10965
|
uncorrectable?: boolean | undefined;
|
11856
|
-
defaultValue?:
|
11857
|
-
type: string;
|
11858
|
-
option: string;
|
11859
|
-
path: string;
|
11860
|
-
originalFilename: string;
|
11861
|
-
}[] | undefined;
|
10966
|
+
defaultValue?: string | undefined;
|
11862
10967
|
}, {
|
11863
|
-
type: "
|
10968
|
+
type: "SIGNATURE";
|
11864
10969
|
id: string;
|
11865
|
-
options: {
|
11866
|
-
value: string;
|
11867
|
-
label: {
|
11868
|
-
id: string;
|
11869
|
-
description: string;
|
11870
|
-
defaultMessage: string;
|
11871
|
-
};
|
11872
|
-
}[];
|
11873
10970
|
label: {
|
11874
10971
|
id: string;
|
11875
10972
|
description: string;
|
11876
10973
|
defaultMessage: string;
|
11877
10974
|
};
|
10975
|
+
signaturePromptLabel: {
|
10976
|
+
id: string;
|
10977
|
+
description: string;
|
10978
|
+
defaultMessage: string;
|
10979
|
+
};
|
11878
10980
|
parent?: {
|
11879
10981
|
$$field: string;
|
11880
10982
|
} | undefined;
|
@@ -11910,12 +11012,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11910
11012
|
} | undefined;
|
11911
11013
|
hideLabel?: boolean | undefined;
|
11912
11014
|
uncorrectable?: boolean | undefined;
|
11913
|
-
defaultValue?:
|
11914
|
-
type: string;
|
11915
|
-
option: string;
|
11916
|
-
path: string;
|
11917
|
-
originalFilename: string;
|
11918
|
-
}[] | undefined;
|
11015
|
+
defaultValue?: string | undefined;
|
11919
11016
|
configuration?: {
|
11920
11017
|
maxFileSize?: number | undefined;
|
11921
11018
|
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
@@ -11968,87 +11065,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
11968
11065
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11969
11066
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
11970
11067
|
}, {
|
11971
|
-
type: z.ZodLiteral<"
|
11972
|
-
configuration: z.ZodObject<{
|
11973
|
-
|
11974
|
-
id: string;
|
11975
|
-
description: string;
|
11976
|
-
defaultMessage: string;
|
11977
|
-
}>>;
|
11978
|
-
data: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
11979
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11980
|
-
id: string;
|
11981
|
-
description: string;
|
11982
|
-
defaultMessage: string;
|
11983
|
-
}>;
|
11984
|
-
value: z.ZodUnion<[z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11985
|
-
id: string;
|
11986
|
-
description: string;
|
11987
|
-
defaultMessage: string;
|
11988
|
-
}>, z.ZodString]>;
|
11989
|
-
}, "strip", z.ZodTypeAny, {
|
11990
|
-
value: string | TranslationConfig;
|
11991
|
-
label: TranslationConfig;
|
11992
|
-
}, {
|
11993
|
-
value: string | {
|
11994
|
-
id: string;
|
11995
|
-
description: string;
|
11996
|
-
defaultMessage: string;
|
11997
|
-
};
|
11998
|
-
label: {
|
11999
|
-
id: string;
|
12000
|
-
description: string;
|
12001
|
-
defaultMessage: string;
|
12002
|
-
};
|
12003
|
-
}>, z.ZodObject<{
|
12004
|
-
fieldId: z.ZodString;
|
12005
|
-
}, "strip", z.ZodTypeAny, {
|
12006
|
-
fieldId: string;
|
12007
|
-
}, {
|
12008
|
-
fieldId: string;
|
12009
|
-
}>]>, "many">;
|
11068
|
+
type: z.ZodLiteral<"EMAIL">;
|
11069
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
11070
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
12010
11071
|
}, "strip", z.ZodTypeAny, {
|
12011
|
-
|
12012
|
-
value: string | TranslationConfig;
|
12013
|
-
label: TranslationConfig;
|
12014
|
-
} | {
|
12015
|
-
fieldId: string;
|
12016
|
-
})[];
|
12017
|
-
subtitle?: TranslationConfig | undefined;
|
11072
|
+
maxLength?: number | undefined;
|
12018
11073
|
}, {
|
12019
|
-
|
12020
|
-
|
12021
|
-
|
12022
|
-
description: string;
|
12023
|
-
defaultMessage: string;
|
12024
|
-
};
|
12025
|
-
label: {
|
12026
|
-
id: string;
|
12027
|
-
description: string;
|
12028
|
-
defaultMessage: string;
|
12029
|
-
};
|
12030
|
-
} | {
|
12031
|
-
fieldId: string;
|
12032
|
-
})[];
|
12033
|
-
subtitle?: {
|
12034
|
-
id: string;
|
12035
|
-
description: string;
|
12036
|
-
defaultMessage: string;
|
12037
|
-
} | undefined;
|
12038
|
-
}>;
|
11074
|
+
maxLength?: number | undefined;
|
11075
|
+
}>>>;
|
11076
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
12039
11077
|
}>, "strip", z.ZodTypeAny, {
|
12040
|
-
type: "
|
11078
|
+
type: "EMAIL";
|
12041
11079
|
id: string;
|
12042
11080
|
label: TranslationConfig;
|
12043
|
-
configuration: {
|
12044
|
-
data: ({
|
12045
|
-
value: string | TranslationConfig;
|
12046
|
-
label: TranslationConfig;
|
12047
|
-
} | {
|
12048
|
-
fieldId: string;
|
12049
|
-
})[];
|
12050
|
-
subtitle?: TranslationConfig | undefined;
|
12051
|
-
};
|
12052
11081
|
parent?: {
|
12053
11082
|
$$field: string;
|
12054
11083
|
} | undefined;
|
@@ -12072,35 +11101,18 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12072
11101
|
helperText?: TranslationConfig | undefined;
|
12073
11102
|
hideLabel?: boolean | undefined;
|
12074
11103
|
uncorrectable?: boolean | undefined;
|
11104
|
+
defaultValue?: string | undefined;
|
11105
|
+
configuration?: {
|
11106
|
+
maxLength?: number | undefined;
|
11107
|
+
} | undefined;
|
12075
11108
|
}, {
|
12076
|
-
type: "
|
11109
|
+
type: "EMAIL";
|
12077
11110
|
id: string;
|
12078
11111
|
label: {
|
12079
11112
|
id: string;
|
12080
11113
|
description: string;
|
12081
11114
|
defaultMessage: string;
|
12082
11115
|
};
|
12083
|
-
configuration: {
|
12084
|
-
data: ({
|
12085
|
-
value: string | {
|
12086
|
-
id: string;
|
12087
|
-
description: string;
|
12088
|
-
defaultMessage: string;
|
12089
|
-
};
|
12090
|
-
label: {
|
12091
|
-
id: string;
|
12092
|
-
description: string;
|
12093
|
-
defaultMessage: string;
|
12094
|
-
};
|
12095
|
-
} | {
|
12096
|
-
fieldId: string;
|
12097
|
-
})[];
|
12098
|
-
subtitle?: {
|
12099
|
-
id: string;
|
12100
|
-
description: string;
|
12101
|
-
defaultMessage: string;
|
12102
|
-
} | undefined;
|
12103
|
-
};
|
12104
11116
|
parent?: {
|
12105
11117
|
$$field: string;
|
12106
11118
|
} | undefined;
|
@@ -12136,6 +11148,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12136
11148
|
} | undefined;
|
12137
11149
|
hideLabel?: boolean | undefined;
|
12138
11150
|
uncorrectable?: boolean | undefined;
|
11151
|
+
defaultValue?: string | undefined;
|
11152
|
+
configuration?: {
|
11153
|
+
maxLength?: number | undefined;
|
11154
|
+
} | undefined;
|
12139
11155
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
12140
11156
|
id: z.ZodString;
|
12141
11157
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -12184,36 +11200,62 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12184
11200
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12185
11201
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12186
11202
|
}, {
|
12187
|
-
type: z.ZodLiteral<"
|
12188
|
-
|
12189
|
-
|
12190
|
-
|
12191
|
-
text: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11203
|
+
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
11204
|
+
options: z.ZodArray<z.ZodObject<{
|
11205
|
+
value: z.ZodString;
|
11206
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
12192
11207
|
id: string;
|
12193
11208
|
description: string;
|
12194
11209
|
defaultMessage: string;
|
12195
11210
|
}>;
|
12196
11211
|
}, "strip", z.ZodTypeAny, {
|
12197
|
-
|
12198
|
-
|
12199
|
-
icon?: string | undefined;
|
11212
|
+
value: string;
|
11213
|
+
label: TranslationConfig;
|
12200
11214
|
}, {
|
12201
|
-
|
11215
|
+
value: string;
|
11216
|
+
label: {
|
12202
11217
|
id: string;
|
12203
11218
|
description: string;
|
12204
11219
|
defaultMessage: string;
|
12205
11220
|
};
|
12206
|
-
|
12207
|
-
|
12208
|
-
|
11221
|
+
}>, "many">;
|
11222
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11223
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
11224
|
+
originalFilename: z.ZodString;
|
11225
|
+
type: z.ZodString;
|
11226
|
+
option: z.ZodString;
|
11227
|
+
}, "strip", z.ZodTypeAny, {
|
11228
|
+
type: string;
|
11229
|
+
option: string;
|
11230
|
+
path: string;
|
11231
|
+
originalFilename: string;
|
11232
|
+
}, {
|
11233
|
+
type: string;
|
11234
|
+
option: string;
|
11235
|
+
path: string;
|
11236
|
+
originalFilename: string;
|
11237
|
+
}>, "many">>;
|
11238
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
11239
|
+
maxFileSize: z.ZodDefault<z.ZodNumber>;
|
11240
|
+
acceptedFileTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<["image/png", "image/jpg", "image/jpeg", "image/svg+xml"]>, "many">>;
|
11241
|
+
}, "strip", z.ZodTypeAny, {
|
11242
|
+
maxFileSize: number;
|
11243
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11244
|
+
}, {
|
11245
|
+
maxFileSize?: number | undefined;
|
11246
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11247
|
+
}>>;
|
12209
11248
|
}>, "strip", z.ZodTypeAny, {
|
12210
|
-
type: "
|
11249
|
+
type: "FILE_WITH_OPTIONS";
|
12211
11250
|
id: string;
|
11251
|
+
options: {
|
11252
|
+
value: string;
|
11253
|
+
label: TranslationConfig;
|
11254
|
+
}[];
|
12212
11255
|
label: TranslationConfig;
|
12213
11256
|
configuration: {
|
12214
|
-
|
12215
|
-
|
12216
|
-
icon?: string | undefined;
|
11257
|
+
maxFileSize: number;
|
11258
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
12217
11259
|
};
|
12218
11260
|
parent?: {
|
12219
11261
|
$$field: string;
|
@@ -12238,22 +11280,27 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12238
11280
|
helperText?: TranslationConfig | undefined;
|
12239
11281
|
hideLabel?: boolean | undefined;
|
12240
11282
|
uncorrectable?: boolean | undefined;
|
11283
|
+
defaultValue?: {
|
11284
|
+
type: string;
|
11285
|
+
option: string;
|
11286
|
+
path: string;
|
11287
|
+
originalFilename: string;
|
11288
|
+
}[] | undefined;
|
12241
11289
|
}, {
|
12242
|
-
type: "
|
11290
|
+
type: "FILE_WITH_OPTIONS";
|
12243
11291
|
id: string;
|
12244
|
-
|
12245
|
-
|
12246
|
-
|
12247
|
-
defaultMessage: string;
|
12248
|
-
};
|
12249
|
-
configuration: {
|
12250
|
-
text: {
|
11292
|
+
options: {
|
11293
|
+
value: string;
|
11294
|
+
label: {
|
12251
11295
|
id: string;
|
12252
11296
|
description: string;
|
12253
11297
|
defaultMessage: string;
|
12254
11298
|
};
|
12255
|
-
|
12256
|
-
|
11299
|
+
}[];
|
11300
|
+
label: {
|
11301
|
+
id: string;
|
11302
|
+
description: string;
|
11303
|
+
defaultMessage: string;
|
12257
11304
|
};
|
12258
11305
|
parent?: {
|
12259
11306
|
$$field: string;
|
@@ -12290,6 +11337,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12290
11337
|
} | undefined;
|
12291
11338
|
hideLabel?: boolean | undefined;
|
12292
11339
|
uncorrectable?: boolean | undefined;
|
11340
|
+
defaultValue?: {
|
11341
|
+
type: string;
|
11342
|
+
option: string;
|
11343
|
+
path: string;
|
11344
|
+
originalFilename: string;
|
11345
|
+
}[] | undefined;
|
11346
|
+
configuration?: {
|
11347
|
+
maxFileSize?: number | undefined;
|
11348
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
11349
|
+
} | undefined;
|
12293
11350
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
12294
11351
|
id: z.ZodString;
|
12295
11352
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -12338,87 +11395,86 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12338
11395
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12339
11396
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12340
11397
|
}, {
|
12341
|
-
type: z.ZodLiteral<"
|
12342
|
-
|
12343
|
-
|
12344
|
-
|
12345
|
-
|
12346
|
-
|
11398
|
+
type: z.ZodLiteral<"DATA">;
|
11399
|
+
configuration: z.ZodObject<{
|
11400
|
+
subtitle: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11401
|
+
id: string;
|
11402
|
+
description: string;
|
11403
|
+
defaultMessage: string;
|
11404
|
+
}>>;
|
11405
|
+
data: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
11406
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11407
|
+
id: string;
|
11408
|
+
description: string;
|
11409
|
+
defaultMessage: string;
|
11410
|
+
}>;
|
11411
|
+
value: z.ZodUnion<[z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
11412
|
+
id: string;
|
11413
|
+
description: string;
|
11414
|
+
defaultMessage: string;
|
11415
|
+
}>, z.ZodString]>;
|
12347
11416
|
}, "strip", z.ZodTypeAny, {
|
12348
|
-
|
12349
|
-
|
11417
|
+
value: string | TranslationConfig;
|
11418
|
+
label: TranslationConfig;
|
12350
11419
|
}, {
|
12351
|
-
|
12352
|
-
|
12353
|
-
|
12354
|
-
|
12355
|
-
|
12356
|
-
|
12357
|
-
|
12358
|
-
|
12359
|
-
|
12360
|
-
|
12361
|
-
|
12362
|
-
|
12363
|
-
trackingValue?: string | undefined;
|
12364
|
-
}, {
|
12365
|
-
error: {
|
12366
|
-
message: string;
|
12367
|
-
statusCode: number | null;
|
12368
|
-
} | null;
|
12369
|
-
loading: boolean;
|
12370
|
-
data?: any;
|
12371
|
-
trackingValue?: string | undefined;
|
12372
|
-
}>>;
|
12373
|
-
configuration: z.ZodObject<{
|
12374
|
-
trigger: z.ZodObject<{
|
12375
|
-
$$field: z.ZodString;
|
11420
|
+
value: string | {
|
11421
|
+
id: string;
|
11422
|
+
description: string;
|
11423
|
+
defaultMessage: string;
|
11424
|
+
};
|
11425
|
+
label: {
|
11426
|
+
id: string;
|
11427
|
+
description: string;
|
11428
|
+
defaultMessage: string;
|
11429
|
+
};
|
11430
|
+
}>, z.ZodObject<{
|
11431
|
+
fieldId: z.ZodString;
|
12376
11432
|
}, "strip", z.ZodTypeAny, {
|
12377
|
-
|
11433
|
+
fieldId: string;
|
12378
11434
|
}, {
|
12379
|
-
|
12380
|
-
}>;
|
12381
|
-
|
12382
|
-
|
12383
|
-
|
12384
|
-
|
12385
|
-
|
12386
|
-
|
12387
|
-
|
12388
|
-
|
12389
|
-
|
12390
|
-
|
12391
|
-
|
12392
|
-
|
12393
|
-
|
12394
|
-
|
12395
|
-
|
12396
|
-
|
12397
|
-
|
12398
|
-
|
12399
|
-
|
12400
|
-
|
12401
|
-
}
|
12402
|
-
|
12403
|
-
|
12404
|
-
|
12405
|
-
|
12406
|
-
|
11435
|
+
fieldId: string;
|
11436
|
+
}>]>, "many">;
|
11437
|
+
}, "strip", z.ZodTypeAny, {
|
11438
|
+
data: ({
|
11439
|
+
value: string | TranslationConfig;
|
11440
|
+
label: TranslationConfig;
|
11441
|
+
} | {
|
11442
|
+
fieldId: string;
|
11443
|
+
})[];
|
11444
|
+
subtitle?: TranslationConfig | undefined;
|
11445
|
+
}, {
|
11446
|
+
data: ({
|
11447
|
+
value: string | {
|
11448
|
+
id: string;
|
11449
|
+
description: string;
|
11450
|
+
defaultMessage: string;
|
11451
|
+
};
|
11452
|
+
label: {
|
11453
|
+
id: string;
|
11454
|
+
description: string;
|
11455
|
+
defaultMessage: string;
|
11456
|
+
};
|
11457
|
+
} | {
|
11458
|
+
fieldId: string;
|
11459
|
+
})[];
|
11460
|
+
subtitle?: {
|
11461
|
+
id: string;
|
11462
|
+
description: string;
|
11463
|
+
defaultMessage: string;
|
11464
|
+
} | undefined;
|
12407
11465
|
}>;
|
12408
11466
|
}>, "strip", z.ZodTypeAny, {
|
12409
|
-
type: "
|
11467
|
+
type: "DATA";
|
12410
11468
|
id: string;
|
12411
11469
|
label: TranslationConfig;
|
12412
11470
|
configuration: {
|
12413
|
-
|
12414
|
-
|
12415
|
-
|
12416
|
-
}
|
12417
|
-
|
12418
|
-
|
12419
|
-
|
12420
|
-
headers?: Record<string, string> | undefined;
|
12421
|
-
body?: Record<string, string> | undefined;
|
11471
|
+
data: ({
|
11472
|
+
value: string | TranslationConfig;
|
11473
|
+
label: TranslationConfig;
|
11474
|
+
} | {
|
11475
|
+
fieldId: string;
|
11476
|
+
})[];
|
11477
|
+
subtitle?: TranslationConfig | undefined;
|
12422
11478
|
};
|
12423
11479
|
parent?: {
|
12424
11480
|
$$field: string;
|
@@ -12443,17 +11499,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12443
11499
|
helperText?: TranslationConfig | undefined;
|
12444
11500
|
hideLabel?: boolean | undefined;
|
12445
11501
|
uncorrectable?: boolean | undefined;
|
12446
|
-
defaultValue?: {
|
12447
|
-
error: {
|
12448
|
-
message: string;
|
12449
|
-
statusCode: number | null;
|
12450
|
-
} | null;
|
12451
|
-
loading: boolean;
|
12452
|
-
data?: any;
|
12453
|
-
trackingValue?: string | undefined;
|
12454
|
-
} | undefined;
|
12455
11502
|
}, {
|
12456
|
-
type: "
|
11503
|
+
type: "DATA";
|
12457
11504
|
id: string;
|
12458
11505
|
label: {
|
12459
11506
|
id: string;
|
@@ -12461,15 +11508,25 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12461
11508
|
defaultMessage: string;
|
12462
11509
|
};
|
12463
11510
|
configuration: {
|
12464
|
-
|
12465
|
-
|
12466
|
-
|
12467
|
-
|
12468
|
-
|
12469
|
-
|
12470
|
-
|
12471
|
-
|
12472
|
-
|
11511
|
+
data: ({
|
11512
|
+
value: string | {
|
11513
|
+
id: string;
|
11514
|
+
description: string;
|
11515
|
+
defaultMessage: string;
|
11516
|
+
};
|
11517
|
+
label: {
|
11518
|
+
id: string;
|
11519
|
+
description: string;
|
11520
|
+
defaultMessage: string;
|
11521
|
+
};
|
11522
|
+
} | {
|
11523
|
+
fieldId: string;
|
11524
|
+
})[];
|
11525
|
+
subtitle?: {
|
11526
|
+
id: string;
|
11527
|
+
description: string;
|
11528
|
+
defaultMessage: string;
|
11529
|
+
} | undefined;
|
12473
11530
|
};
|
12474
11531
|
parent?: {
|
12475
11532
|
$$field: string;
|
@@ -12506,15 +11563,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
12506
11563
|
} | undefined;
|
12507
11564
|
hideLabel?: boolean | undefined;
|
12508
11565
|
uncorrectable?: boolean | undefined;
|
12509
|
-
defaultValue?: {
|
12510
|
-
error: {
|
12511
|
-
message: string;
|
12512
|
-
statusCode: number | null;
|
12513
|
-
} | null;
|
12514
|
-
loading: boolean;
|
12515
|
-
data?: any;
|
12516
|
-
trackingValue?: string | undefined;
|
12517
|
-
} | undefined;
|
12518
11566
|
}>]>, "many">;
|
12519
11567
|
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
12520
11568
|
}, {
|
@@ -13594,85 +12642,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
13594
12642
|
helperText?: TranslationConfig | undefined;
|
13595
12643
|
hideLabel?: boolean | undefined;
|
13596
12644
|
uncorrectable?: boolean | undefined;
|
13597
|
-
} | {
|
13598
|
-
type: "BUTTON";
|
13599
|
-
id: string;
|
13600
|
-
label: TranslationConfig;
|
13601
|
-
configuration: {
|
13602
|
-
text: TranslationConfig;
|
13603
|
-
loading?: boolean | undefined;
|
13604
|
-
icon?: string | undefined;
|
13605
|
-
};
|
13606
|
-
parent?: {
|
13607
|
-
$$field: string;
|
13608
|
-
} | undefined;
|
13609
|
-
validation?: {
|
13610
|
-
message: TranslationConfig;
|
13611
|
-
validator: import(".").JSONSchema;
|
13612
|
-
}[] | undefined;
|
13613
|
-
required?: boolean | undefined;
|
13614
|
-
conditionals?: ({
|
13615
|
-
type: "SHOW";
|
13616
|
-
conditional: import(".").JSONSchema;
|
13617
|
-
} | {
|
13618
|
-
type: "ENABLE";
|
13619
|
-
conditional: import(".").JSONSchema;
|
13620
|
-
} | {
|
13621
|
-
type: "DISPLAY_ON_REVIEW";
|
13622
|
-
conditional: import(".").JSONSchema;
|
13623
|
-
})[] | undefined;
|
13624
|
-
secured?: boolean | undefined;
|
13625
|
-
placeholder?: TranslationConfig | undefined;
|
13626
|
-
helperText?: TranslationConfig | undefined;
|
13627
|
-
hideLabel?: boolean | undefined;
|
13628
|
-
uncorrectable?: boolean | undefined;
|
13629
|
-
} | {
|
13630
|
-
type: "HTTP";
|
13631
|
-
id: string;
|
13632
|
-
label: TranslationConfig;
|
13633
|
-
configuration: {
|
13634
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
13635
|
-
trigger: {
|
13636
|
-
$$field: string;
|
13637
|
-
};
|
13638
|
-
url: string;
|
13639
|
-
timeout: number;
|
13640
|
-
params?: Record<string, string> | undefined;
|
13641
|
-
headers?: Record<string, string> | undefined;
|
13642
|
-
body?: Record<string, string> | undefined;
|
13643
|
-
};
|
13644
|
-
parent?: {
|
13645
|
-
$$field: string;
|
13646
|
-
} | undefined;
|
13647
|
-
validation?: {
|
13648
|
-
message: TranslationConfig;
|
13649
|
-
validator: import(".").JSONSchema;
|
13650
|
-
}[] | undefined;
|
13651
|
-
required?: boolean | undefined;
|
13652
|
-
conditionals?: ({
|
13653
|
-
type: "SHOW";
|
13654
|
-
conditional: import(".").JSONSchema;
|
13655
|
-
} | {
|
13656
|
-
type: "ENABLE";
|
13657
|
-
conditional: import(".").JSONSchema;
|
13658
|
-
} | {
|
13659
|
-
type: "DISPLAY_ON_REVIEW";
|
13660
|
-
conditional: import(".").JSONSchema;
|
13661
|
-
})[] | undefined;
|
13662
|
-
secured?: boolean | undefined;
|
13663
|
-
placeholder?: TranslationConfig | undefined;
|
13664
|
-
helperText?: TranslationConfig | undefined;
|
13665
|
-
hideLabel?: boolean | undefined;
|
13666
|
-
uncorrectable?: boolean | undefined;
|
13667
|
-
defaultValue?: {
|
13668
|
-
error: {
|
13669
|
-
message: string;
|
13670
|
-
statusCode: number | null;
|
13671
|
-
} | null;
|
13672
|
-
loading: boolean;
|
13673
|
-
data?: any;
|
13674
|
-
trackingValue?: string | undefined;
|
13675
|
-
} | undefined;
|
13676
12645
|
})[];
|
13677
12646
|
conditional?: import(".").JSONSchema | undefined;
|
13678
12647
|
}, {
|
@@ -15188,121 +14157,6 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
15188
14157
|
} | undefined;
|
15189
14158
|
hideLabel?: boolean | undefined;
|
15190
14159
|
uncorrectable?: boolean | undefined;
|
15191
|
-
} | {
|
15192
|
-
type: "BUTTON";
|
15193
|
-
id: string;
|
15194
|
-
label: {
|
15195
|
-
id: string;
|
15196
|
-
description: string;
|
15197
|
-
defaultMessage: string;
|
15198
|
-
};
|
15199
|
-
configuration: {
|
15200
|
-
text: {
|
15201
|
-
id: string;
|
15202
|
-
description: string;
|
15203
|
-
defaultMessage: string;
|
15204
|
-
};
|
15205
|
-
loading?: boolean | undefined;
|
15206
|
-
icon?: string | undefined;
|
15207
|
-
};
|
15208
|
-
parent?: {
|
15209
|
-
$$field: string;
|
15210
|
-
} | undefined;
|
15211
|
-
validation?: {
|
15212
|
-
message: {
|
15213
|
-
id: string;
|
15214
|
-
description: string;
|
15215
|
-
defaultMessage: string;
|
15216
|
-
};
|
15217
|
-
validator: import(".").JSONSchema;
|
15218
|
-
}[] | undefined;
|
15219
|
-
required?: boolean | undefined;
|
15220
|
-
conditionals?: ({
|
15221
|
-
type: "SHOW";
|
15222
|
-
conditional: import(".").JSONSchema;
|
15223
|
-
} | {
|
15224
|
-
type: "ENABLE";
|
15225
|
-
conditional: import(".").JSONSchema;
|
15226
|
-
} | {
|
15227
|
-
type: "DISPLAY_ON_REVIEW";
|
15228
|
-
conditional: import(".").JSONSchema;
|
15229
|
-
})[] | undefined;
|
15230
|
-
secured?: boolean | undefined;
|
15231
|
-
placeholder?: {
|
15232
|
-
id: string;
|
15233
|
-
description: string;
|
15234
|
-
defaultMessage: string;
|
15235
|
-
} | undefined;
|
15236
|
-
helperText?: {
|
15237
|
-
id: string;
|
15238
|
-
description: string;
|
15239
|
-
defaultMessage: string;
|
15240
|
-
} | undefined;
|
15241
|
-
hideLabel?: boolean | undefined;
|
15242
|
-
uncorrectable?: boolean | undefined;
|
15243
|
-
} | {
|
15244
|
-
type: "HTTP";
|
15245
|
-
id: string;
|
15246
|
-
label: {
|
15247
|
-
id: string;
|
15248
|
-
description: string;
|
15249
|
-
defaultMessage: string;
|
15250
|
-
};
|
15251
|
-
configuration: {
|
15252
|
-
method: "POST" | "DELETE" | "GET" | "PUT";
|
15253
|
-
trigger: {
|
15254
|
-
$$field: string;
|
15255
|
-
};
|
15256
|
-
url: string;
|
15257
|
-
params?: Record<string, string> | undefined;
|
15258
|
-
headers?: Record<string, string> | undefined;
|
15259
|
-
body?: Record<string, string> | undefined;
|
15260
|
-
timeout?: number | undefined;
|
15261
|
-
};
|
15262
|
-
parent?: {
|
15263
|
-
$$field: string;
|
15264
|
-
} | undefined;
|
15265
|
-
validation?: {
|
15266
|
-
message: {
|
15267
|
-
id: string;
|
15268
|
-
description: string;
|
15269
|
-
defaultMessage: string;
|
15270
|
-
};
|
15271
|
-
validator: import(".").JSONSchema;
|
15272
|
-
}[] | undefined;
|
15273
|
-
required?: boolean | undefined;
|
15274
|
-
conditionals?: ({
|
15275
|
-
type: "SHOW";
|
15276
|
-
conditional: import(".").JSONSchema;
|
15277
|
-
} | {
|
15278
|
-
type: "ENABLE";
|
15279
|
-
conditional: import(".").JSONSchema;
|
15280
|
-
} | {
|
15281
|
-
type: "DISPLAY_ON_REVIEW";
|
15282
|
-
conditional: import(".").JSONSchema;
|
15283
|
-
})[] | undefined;
|
15284
|
-
secured?: boolean | undefined;
|
15285
|
-
placeholder?: {
|
15286
|
-
id: string;
|
15287
|
-
description: string;
|
15288
|
-
defaultMessage: string;
|
15289
|
-
} | undefined;
|
15290
|
-
helperText?: {
|
15291
|
-
id: string;
|
15292
|
-
description: string;
|
15293
|
-
defaultMessage: string;
|
15294
|
-
} | undefined;
|
15295
|
-
hideLabel?: boolean | undefined;
|
15296
|
-
uncorrectable?: boolean | undefined;
|
15297
|
-
defaultValue?: {
|
15298
|
-
error: {
|
15299
|
-
message: string;
|
15300
|
-
statusCode: number | null;
|
15301
|
-
} | null;
|
15302
|
-
loading: boolean;
|
15303
|
-
data?: any;
|
15304
|
-
trackingValue?: string | undefined;
|
15305
|
-
} | undefined;
|
15306
14160
|
})[];
|
15307
14161
|
conditional?: import(".").JSONSchema | undefined;
|
15308
14162
|
}>;
|