@opencrvs/toolkit 1.9.2-rc.ebb7011 → 1.9.2-rc.f0b9560
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +537 -605
- package/dist/commons/events/ActionConfig.d.ts +52 -336
- package/dist/commons/events/ActionDocument.d.ts +163 -130
- package/dist/commons/events/ActionInput.d.ts +93 -87
- package/dist/commons/events/ActionType.d.ts +7 -7
- package/dist/commons/events/AdvancedSearchConfig.d.ts +8 -7
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -2
- package/dist/commons/events/CountryConfigQueryInput.d.ts +12 -0
- package/dist/commons/events/Draft.d.ts +6 -6
- package/dist/commons/events/EventConfig.d.ts +44 -191
- package/dist/commons/events/EventDocument.d.ts +59 -56
- package/dist/commons/events/EventIndex.d.ts +7 -1
- package/dist/commons/events/EventMetadata.d.ts +4 -1
- package/dist/commons/events/FieldConfig.d.ts +14 -22
- package/dist/commons/events/FieldType.d.ts +3 -3
- package/dist/commons/events/FieldTypeMapping.d.ts +8 -8
- package/dist/commons/events/FieldValue.d.ts +6 -5
- package/dist/commons/events/Flag.d.ts +21 -0
- package/dist/commons/events/FormConfig.d.ts +18 -42
- package/dist/commons/events/PageConfig.d.ts +12 -28
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +5 -2
- package/dist/commons/events/WorkqueueConfig.d.ts +26 -11
- package/dist/commons/events/defineConfig.d.ts +101 -200
- package/dist/commons/events/scopes.d.ts +4 -4
- package/dist/commons/events/state/index.d.ts +7 -1
- package/dist/commons/events/state/utils.d.ts +49 -46
- package/dist/commons/events/test.utils.d.ts +14 -11
- package/dist/commons/events/utils.d.ts +441 -495
- package/dist/events/index.js +206 -152
- package/dist/notification/index.js +82 -112
- package/dist/scopes/index.d.ts +46 -7
- package/dist/scopes/index.js +11 -1
- package/package.json +1 -1
|
@@ -2479,8 +2479,14 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
|
2479
2479
|
defaultMessage: string;
|
|
2480
2480
|
description: string;
|
|
2481
2481
|
};
|
|
2482
|
-
type: "
|
|
2483
|
-
|
|
2482
|
+
type: "LOADER";
|
|
2483
|
+
configuration: {
|
|
2484
|
+
text: {
|
|
2485
|
+
id: string;
|
|
2486
|
+
defaultMessage: string;
|
|
2487
|
+
description: string;
|
|
2488
|
+
};
|
|
2489
|
+
};
|
|
2484
2490
|
parent?: {
|
|
2485
2491
|
$$field: string;
|
|
2486
2492
|
$$subfield?: string[] | undefined;
|
|
@@ -2534,8 +2540,6 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
|
2534
2540
|
$$subfield?: string[] | undefined;
|
|
2535
2541
|
}[] | undefined;
|
|
2536
2542
|
analytics?: boolean | undefined;
|
|
2537
|
-
defaultValue?: unknown;
|
|
2538
|
-
configuration?: unknown;
|
|
2539
2543
|
} | {
|
|
2540
2544
|
id: string;
|
|
2541
2545
|
label: {
|
|
@@ -2543,14 +2547,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
|
2543
2547
|
defaultMessage: string;
|
|
2544
2548
|
description: string;
|
|
2545
2549
|
};
|
|
2546
|
-
type: "
|
|
2547
|
-
configuration: {
|
|
2548
|
-
text: {
|
|
2549
|
-
id: string;
|
|
2550
|
-
defaultMessage: string;
|
|
2551
|
-
description: string;
|
|
2552
|
-
};
|
|
2553
|
-
};
|
|
2550
|
+
type: "ALPHA_HIDDEN";
|
|
2554
2551
|
parent?: {
|
|
2555
2552
|
$$field: string;
|
|
2556
2553
|
$$subfield?: string[] | undefined;
|
|
@@ -2558,13 +2555,6 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
|
2558
2555
|
$$field: string;
|
|
2559
2556
|
$$subfield?: string[] | undefined;
|
|
2560
2557
|
}[] | undefined;
|
|
2561
|
-
required?: boolean | {
|
|
2562
|
-
message: {
|
|
2563
|
-
id: string;
|
|
2564
|
-
defaultMessage: string;
|
|
2565
|
-
description: string;
|
|
2566
|
-
};
|
|
2567
|
-
} | undefined;
|
|
2568
2558
|
conditionals?: ({
|
|
2569
2559
|
type: "SHOW";
|
|
2570
2560
|
conditional: any;
|
|
@@ -2604,6 +2594,8 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
|
2604
2594
|
$$subfield?: string[] | undefined;
|
|
2605
2595
|
}[] | undefined;
|
|
2606
2596
|
analytics?: boolean | undefined;
|
|
2597
|
+
required?: boolean | undefined;
|
|
2598
|
+
defaultValue?: string | undefined;
|
|
2607
2599
|
} | {
|
|
2608
2600
|
id: string;
|
|
2609
2601
|
label: {
|
|
@@ -5585,8 +5577,14 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
|
5585
5577
|
defaultMessage: string;
|
|
5586
5578
|
description: string;
|
|
5587
5579
|
};
|
|
5588
|
-
type: "
|
|
5589
|
-
|
|
5580
|
+
type: "LOADER";
|
|
5581
|
+
configuration: {
|
|
5582
|
+
text: {
|
|
5583
|
+
id: string;
|
|
5584
|
+
defaultMessage: string;
|
|
5585
|
+
description: string;
|
|
5586
|
+
};
|
|
5587
|
+
};
|
|
5590
5588
|
parent?: {
|
|
5591
5589
|
$$field: string;
|
|
5592
5590
|
$$subfield?: string[] | undefined;
|
|
@@ -5640,8 +5638,6 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
|
5640
5638
|
$$subfield?: string[] | undefined;
|
|
5641
5639
|
}[] | undefined;
|
|
5642
5640
|
analytics?: boolean | undefined;
|
|
5643
|
-
defaultValue?: unknown;
|
|
5644
|
-
configuration?: unknown;
|
|
5645
5641
|
} | {
|
|
5646
5642
|
id: string;
|
|
5647
5643
|
label: {
|
|
@@ -5649,14 +5645,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
|
5649
5645
|
defaultMessage: string;
|
|
5650
5646
|
description: string;
|
|
5651
5647
|
};
|
|
5652
|
-
type: "
|
|
5653
|
-
configuration: {
|
|
5654
|
-
text: {
|
|
5655
|
-
id: string;
|
|
5656
|
-
defaultMessage: string;
|
|
5657
|
-
description: string;
|
|
5658
|
-
};
|
|
5659
|
-
};
|
|
5648
|
+
type: "ALPHA_HIDDEN";
|
|
5660
5649
|
parent?: {
|
|
5661
5650
|
$$field: string;
|
|
5662
5651
|
$$subfield?: string[] | undefined;
|
|
@@ -5664,13 +5653,6 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
|
5664
5653
|
$$field: string;
|
|
5665
5654
|
$$subfield?: string[] | undefined;
|
|
5666
5655
|
}[] | undefined;
|
|
5667
|
-
required?: boolean | {
|
|
5668
|
-
message: {
|
|
5669
|
-
id: string;
|
|
5670
|
-
defaultMessage: string;
|
|
5671
|
-
description: string;
|
|
5672
|
-
};
|
|
5673
|
-
} | undefined;
|
|
5674
5656
|
conditionals?: ({
|
|
5675
5657
|
type: "SHOW";
|
|
5676
5658
|
conditional: any;
|
|
@@ -5710,6 +5692,8 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
|
5710
5692
|
$$subfield?: string[] | undefined;
|
|
5711
5693
|
}[] | undefined;
|
|
5712
5694
|
analytics?: boolean | undefined;
|
|
5695
|
+
required?: boolean | undefined;
|
|
5696
|
+
defaultValue?: string | undefined;
|
|
5713
5697
|
} | {
|
|
5714
5698
|
id: string;
|
|
5715
5699
|
label: {
|
|
@@ -8693,8 +8677,14 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
8693
8677
|
defaultMessage: string;
|
|
8694
8678
|
description: string;
|
|
8695
8679
|
};
|
|
8696
|
-
type: "
|
|
8697
|
-
|
|
8680
|
+
type: "LOADER";
|
|
8681
|
+
configuration: {
|
|
8682
|
+
text: {
|
|
8683
|
+
id: string;
|
|
8684
|
+
defaultMessage: string;
|
|
8685
|
+
description: string;
|
|
8686
|
+
};
|
|
8687
|
+
};
|
|
8698
8688
|
parent?: {
|
|
8699
8689
|
$$field: string;
|
|
8700
8690
|
$$subfield?: string[] | undefined;
|
|
@@ -8748,8 +8738,6 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
8748
8738
|
$$subfield?: string[] | undefined;
|
|
8749
8739
|
}[] | undefined;
|
|
8750
8740
|
analytics?: boolean | undefined;
|
|
8751
|
-
defaultValue?: unknown;
|
|
8752
|
-
configuration?: unknown;
|
|
8753
8741
|
} | {
|
|
8754
8742
|
id: string;
|
|
8755
8743
|
label: {
|
|
@@ -8757,14 +8745,7 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
8757
8745
|
defaultMessage: string;
|
|
8758
8746
|
description: string;
|
|
8759
8747
|
};
|
|
8760
|
-
type: "
|
|
8761
|
-
configuration: {
|
|
8762
|
-
text: {
|
|
8763
|
-
id: string;
|
|
8764
|
-
defaultMessage: string;
|
|
8765
|
-
description: string;
|
|
8766
|
-
};
|
|
8767
|
-
};
|
|
8748
|
+
type: "ALPHA_HIDDEN";
|
|
8768
8749
|
parent?: {
|
|
8769
8750
|
$$field: string;
|
|
8770
8751
|
$$subfield?: string[] | undefined;
|
|
@@ -8772,13 +8753,6 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
8772
8753
|
$$field: string;
|
|
8773
8754
|
$$subfield?: string[] | undefined;
|
|
8774
8755
|
}[] | undefined;
|
|
8775
|
-
required?: boolean | {
|
|
8776
|
-
message: {
|
|
8777
|
-
id: string;
|
|
8778
|
-
defaultMessage: string;
|
|
8779
|
-
description: string;
|
|
8780
|
-
};
|
|
8781
|
-
} | undefined;
|
|
8782
8756
|
conditionals?: ({
|
|
8783
8757
|
type: "SHOW";
|
|
8784
8758
|
conditional: any;
|
|
@@ -8818,6 +8792,8 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
8818
8792
|
$$subfield?: string[] | undefined;
|
|
8819
8793
|
}[] | undefined;
|
|
8820
8794
|
analytics?: boolean | undefined;
|
|
8795
|
+
required?: boolean | undefined;
|
|
8796
|
+
defaultValue?: string | undefined;
|
|
8821
8797
|
} | {
|
|
8822
8798
|
id: string;
|
|
8823
8799
|
label: {
|
|
@@ -11792,8 +11768,14 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
11792
11768
|
defaultMessage: string;
|
|
11793
11769
|
description: string;
|
|
11794
11770
|
};
|
|
11795
|
-
type: "
|
|
11796
|
-
|
|
11771
|
+
type: "LOADER";
|
|
11772
|
+
configuration: {
|
|
11773
|
+
text: {
|
|
11774
|
+
id: string;
|
|
11775
|
+
defaultMessage: string;
|
|
11776
|
+
description: string;
|
|
11777
|
+
};
|
|
11778
|
+
};
|
|
11797
11779
|
parent?: {
|
|
11798
11780
|
$$field: string;
|
|
11799
11781
|
$$subfield?: string[] | undefined;
|
|
@@ -11847,8 +11829,6 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
11847
11829
|
$$subfield?: string[] | undefined;
|
|
11848
11830
|
}[] | undefined;
|
|
11849
11831
|
analytics?: boolean | undefined;
|
|
11850
|
-
defaultValue?: unknown;
|
|
11851
|
-
configuration?: unknown;
|
|
11852
11832
|
} | {
|
|
11853
11833
|
id: string;
|
|
11854
11834
|
label: {
|
|
@@ -11856,14 +11836,7 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
11856
11836
|
defaultMessage: string;
|
|
11857
11837
|
description: string;
|
|
11858
11838
|
};
|
|
11859
|
-
type: "
|
|
11860
|
-
configuration: {
|
|
11861
|
-
text: {
|
|
11862
|
-
id: string;
|
|
11863
|
-
defaultMessage: string;
|
|
11864
|
-
description: string;
|
|
11865
|
-
};
|
|
11866
|
-
};
|
|
11839
|
+
type: "ALPHA_HIDDEN";
|
|
11867
11840
|
parent?: {
|
|
11868
11841
|
$$field: string;
|
|
11869
11842
|
$$subfield?: string[] | undefined;
|
|
@@ -11871,13 +11844,6 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
11871
11844
|
$$field: string;
|
|
11872
11845
|
$$subfield?: string[] | undefined;
|
|
11873
11846
|
}[] | undefined;
|
|
11874
|
-
required?: boolean | {
|
|
11875
|
-
message: {
|
|
11876
|
-
id: string;
|
|
11877
|
-
defaultMessage: string;
|
|
11878
|
-
description: string;
|
|
11879
|
-
};
|
|
11880
|
-
} | undefined;
|
|
11881
11847
|
conditionals?: ({
|
|
11882
11848
|
type: "SHOW";
|
|
11883
11849
|
conditional: any;
|
|
@@ -11917,6 +11883,8 @@ export declare function getPrintCertificatePages(configuration: EventConfig): ({
|
|
|
11917
11883
|
$$subfield?: string[] | undefined;
|
|
11918
11884
|
}[] | undefined;
|
|
11919
11885
|
analytics?: boolean | undefined;
|
|
11886
|
+
required?: boolean | undefined;
|
|
11887
|
+
defaultValue?: string | undefined;
|
|
11920
11888
|
} | {
|
|
11921
11889
|
id: string;
|
|
11922
11890
|
label: {
|
|
@@ -14913,8 +14881,14 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
|
14913
14881
|
defaultMessage: string;
|
|
14914
14882
|
description: string;
|
|
14915
14883
|
};
|
|
14916
|
-
type: "
|
|
14917
|
-
|
|
14884
|
+
type: "LOADER";
|
|
14885
|
+
configuration: {
|
|
14886
|
+
text: {
|
|
14887
|
+
id: string;
|
|
14888
|
+
defaultMessage: string;
|
|
14889
|
+
description: string;
|
|
14890
|
+
};
|
|
14891
|
+
};
|
|
14918
14892
|
parent?: {
|
|
14919
14893
|
$$field: string;
|
|
14920
14894
|
$$subfield?: string[] | undefined;
|
|
@@ -14968,8 +14942,6 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
|
14968
14942
|
$$subfield?: string[] | undefined;
|
|
14969
14943
|
}[] | undefined;
|
|
14970
14944
|
analytics?: boolean | undefined;
|
|
14971
|
-
defaultValue?: unknown;
|
|
14972
|
-
configuration?: unknown;
|
|
14973
14945
|
} | {
|
|
14974
14946
|
id: string;
|
|
14975
14947
|
label: {
|
|
@@ -14977,14 +14949,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
|
14977
14949
|
defaultMessage: string;
|
|
14978
14950
|
description: string;
|
|
14979
14951
|
};
|
|
14980
|
-
type: "
|
|
14981
|
-
configuration: {
|
|
14982
|
-
text: {
|
|
14983
|
-
id: string;
|
|
14984
|
-
defaultMessage: string;
|
|
14985
|
-
description: string;
|
|
14986
|
-
};
|
|
14987
|
-
};
|
|
14952
|
+
type: "ALPHA_HIDDEN";
|
|
14988
14953
|
parent?: {
|
|
14989
14954
|
$$field: string;
|
|
14990
14955
|
$$subfield?: string[] | undefined;
|
|
@@ -14992,13 +14957,6 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
|
14992
14957
|
$$field: string;
|
|
14993
14958
|
$$subfield?: string[] | undefined;
|
|
14994
14959
|
}[] | undefined;
|
|
14995
|
-
required?: boolean | {
|
|
14996
|
-
message: {
|
|
14997
|
-
id: string;
|
|
14998
|
-
defaultMessage: string;
|
|
14999
|
-
description: string;
|
|
15000
|
-
};
|
|
15001
|
-
} | undefined;
|
|
15002
14960
|
conditionals?: ({
|
|
15003
14961
|
type: "SHOW";
|
|
15004
14962
|
conditional: any;
|
|
@@ -15038,6 +14996,8 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
|
15038
14996
|
$$subfield?: string[] | undefined;
|
|
15039
14997
|
}[] | undefined;
|
|
15040
14998
|
analytics?: boolean | undefined;
|
|
14999
|
+
required?: boolean | undefined;
|
|
15000
|
+
defaultValue?: string | undefined;
|
|
15041
15001
|
} | {
|
|
15042
15002
|
id: string;
|
|
15043
15003
|
label: {
|
|
@@ -18003,8 +17963,14 @@ export declare function getAllUniqueFields(eventConfig: EventConfig): ({
|
|
|
18003
17963
|
defaultMessage: string;
|
|
18004
17964
|
description: string;
|
|
18005
17965
|
};
|
|
18006
|
-
type: "
|
|
18007
|
-
|
|
17966
|
+
type: "LOADER";
|
|
17967
|
+
configuration: {
|
|
17968
|
+
text: {
|
|
17969
|
+
id: string;
|
|
17970
|
+
defaultMessage: string;
|
|
17971
|
+
description: string;
|
|
17972
|
+
};
|
|
17973
|
+
};
|
|
18008
17974
|
parent?: {
|
|
18009
17975
|
$$field: string;
|
|
18010
17976
|
$$subfield?: string[] | undefined;
|
|
@@ -18058,8 +18024,6 @@ export declare function getAllUniqueFields(eventConfig: EventConfig): ({
|
|
|
18058
18024
|
$$subfield?: string[] | undefined;
|
|
18059
18025
|
}[] | undefined;
|
|
18060
18026
|
analytics?: boolean | undefined;
|
|
18061
|
-
defaultValue?: unknown;
|
|
18062
|
-
configuration?: unknown;
|
|
18063
18027
|
} | {
|
|
18064
18028
|
id: string;
|
|
18065
18029
|
label: {
|
|
@@ -18067,14 +18031,7 @@ export declare function getAllUniqueFields(eventConfig: EventConfig): ({
|
|
|
18067
18031
|
defaultMessage: string;
|
|
18068
18032
|
description: string;
|
|
18069
18033
|
};
|
|
18070
|
-
type: "
|
|
18071
|
-
configuration: {
|
|
18072
|
-
text: {
|
|
18073
|
-
id: string;
|
|
18074
|
-
defaultMessage: string;
|
|
18075
|
-
description: string;
|
|
18076
|
-
};
|
|
18077
|
-
};
|
|
18034
|
+
type: "ALPHA_HIDDEN";
|
|
18078
18035
|
parent?: {
|
|
18079
18036
|
$$field: string;
|
|
18080
18037
|
$$subfield?: string[] | undefined;
|
|
@@ -18082,13 +18039,6 @@ export declare function getAllUniqueFields(eventConfig: EventConfig): ({
|
|
|
18082
18039
|
$$field: string;
|
|
18083
18040
|
$$subfield?: string[] | undefined;
|
|
18084
18041
|
}[] | undefined;
|
|
18085
|
-
required?: boolean | {
|
|
18086
|
-
message: {
|
|
18087
|
-
id: string;
|
|
18088
|
-
defaultMessage: string;
|
|
18089
|
-
description: string;
|
|
18090
|
-
};
|
|
18091
|
-
} | undefined;
|
|
18092
18042
|
conditionals?: ({
|
|
18093
18043
|
type: "SHOW";
|
|
18094
18044
|
conditional: any;
|
|
@@ -18128,6 +18078,8 @@ export declare function getAllUniqueFields(eventConfig: EventConfig): ({
|
|
|
18128
18078
|
$$subfield?: string[] | undefined;
|
|
18129
18079
|
}[] | undefined;
|
|
18130
18080
|
analytics?: boolean | undefined;
|
|
18081
|
+
required?: boolean | undefined;
|
|
18082
|
+
defaultValue?: string | undefined;
|
|
18131
18083
|
} | {
|
|
18132
18084
|
id: string;
|
|
18133
18085
|
label: {
|
|
@@ -21104,8 +21056,14 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
|
21104
21056
|
defaultMessage: string;
|
|
21105
21057
|
description: string;
|
|
21106
21058
|
};
|
|
21107
|
-
type: "
|
|
21108
|
-
|
|
21059
|
+
type: "LOADER";
|
|
21060
|
+
configuration: {
|
|
21061
|
+
text: {
|
|
21062
|
+
id: string;
|
|
21063
|
+
defaultMessage: string;
|
|
21064
|
+
description: string;
|
|
21065
|
+
};
|
|
21066
|
+
};
|
|
21109
21067
|
parent?: {
|
|
21110
21068
|
$$field: string;
|
|
21111
21069
|
$$subfield?: string[] | undefined;
|
|
@@ -21159,8 +21117,6 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
|
21159
21117
|
$$subfield?: string[] | undefined;
|
|
21160
21118
|
}[] | undefined;
|
|
21161
21119
|
analytics?: boolean | undefined;
|
|
21162
|
-
defaultValue?: unknown;
|
|
21163
|
-
configuration?: unknown;
|
|
21164
21120
|
} | {
|
|
21165
21121
|
id: string;
|
|
21166
21122
|
label: {
|
|
@@ -21168,14 +21124,63 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
|
21168
21124
|
defaultMessage: string;
|
|
21169
21125
|
description: string;
|
|
21170
21126
|
};
|
|
21171
|
-
type: "
|
|
21172
|
-
|
|
21173
|
-
|
|
21127
|
+
type: "ALPHA_HIDDEN";
|
|
21128
|
+
parent?: {
|
|
21129
|
+
$$field: string;
|
|
21130
|
+
$$subfield?: string[] | undefined;
|
|
21131
|
+
} | {
|
|
21132
|
+
$$field: string;
|
|
21133
|
+
$$subfield?: string[] | undefined;
|
|
21134
|
+
}[] | undefined;
|
|
21135
|
+
conditionals?: ({
|
|
21136
|
+
type: "SHOW";
|
|
21137
|
+
conditional: any;
|
|
21138
|
+
} | {
|
|
21139
|
+
type: "ENABLE";
|
|
21140
|
+
conditional: any;
|
|
21141
|
+
} | {
|
|
21142
|
+
type: "DISPLAY_ON_REVIEW";
|
|
21143
|
+
conditional: any;
|
|
21144
|
+
})[] | undefined;
|
|
21145
|
+
secured?: boolean | undefined;
|
|
21146
|
+
placeholder?: {
|
|
21147
|
+
id: string;
|
|
21148
|
+
defaultMessage: string;
|
|
21149
|
+
description: string;
|
|
21150
|
+
} | undefined;
|
|
21151
|
+
validation?: {
|
|
21152
|
+
validator: any;
|
|
21153
|
+
message: {
|
|
21174
21154
|
id: string;
|
|
21175
21155
|
defaultMessage: string;
|
|
21176
21156
|
description: string;
|
|
21177
21157
|
};
|
|
21158
|
+
}[] | undefined;
|
|
21159
|
+
helperText?: {
|
|
21160
|
+
id: string;
|
|
21161
|
+
defaultMessage: string;
|
|
21162
|
+
description: string;
|
|
21163
|
+
} | undefined;
|
|
21164
|
+
hideLabel?: boolean | undefined;
|
|
21165
|
+
uncorrectable?: boolean | undefined;
|
|
21166
|
+
value?: {
|
|
21167
|
+
$$field: string;
|
|
21168
|
+
$$subfield?: string[] | undefined;
|
|
21169
|
+
} | {
|
|
21170
|
+
$$field: string;
|
|
21171
|
+
$$subfield?: string[] | undefined;
|
|
21172
|
+
}[] | undefined;
|
|
21173
|
+
analytics?: boolean | undefined;
|
|
21174
|
+
required?: boolean | undefined;
|
|
21175
|
+
defaultValue?: string | undefined;
|
|
21176
|
+
} | {
|
|
21177
|
+
id: string;
|
|
21178
|
+
label: {
|
|
21179
|
+
id: string;
|
|
21180
|
+
defaultMessage: string;
|
|
21181
|
+
description: string;
|
|
21178
21182
|
};
|
|
21183
|
+
type: "ADDRESS";
|
|
21179
21184
|
parent?: {
|
|
21180
21185
|
$$field: string;
|
|
21181
21186
|
$$subfield?: string[] | undefined;
|
|
@@ -21229,6 +21234,50 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
|
21229
21234
|
$$subfield?: string[] | undefined;
|
|
21230
21235
|
}[] | undefined;
|
|
21231
21236
|
analytics?: boolean | undefined;
|
|
21237
|
+
configuration?: {
|
|
21238
|
+
lineSeparator?: string | undefined;
|
|
21239
|
+
fields?: ("country" | "administrativeArea")[] | undefined;
|
|
21240
|
+
administrativeLevels?: string[] | undefined;
|
|
21241
|
+
streetAddressForm?: {
|
|
21242
|
+
id: string;
|
|
21243
|
+
label: {
|
|
21244
|
+
id: string;
|
|
21245
|
+
defaultMessage: string;
|
|
21246
|
+
description: string;
|
|
21247
|
+
};
|
|
21248
|
+
type: "TEXT";
|
|
21249
|
+
required?: boolean | {
|
|
21250
|
+
message: {
|
|
21251
|
+
id: string;
|
|
21252
|
+
defaultMessage: string;
|
|
21253
|
+
description: string;
|
|
21254
|
+
};
|
|
21255
|
+
} | undefined;
|
|
21256
|
+
conditionals?: ({
|
|
21257
|
+
type: "SHOW";
|
|
21258
|
+
conditional: any;
|
|
21259
|
+
} | {
|
|
21260
|
+
type: "ENABLE";
|
|
21261
|
+
conditional: any;
|
|
21262
|
+
} | {
|
|
21263
|
+
type: "DISPLAY_ON_REVIEW";
|
|
21264
|
+
conditional: any;
|
|
21265
|
+
})[] | undefined;
|
|
21266
|
+
parent?: {
|
|
21267
|
+
$$field: string;
|
|
21268
|
+
$$subfield?: string[] | undefined;
|
|
21269
|
+
} | undefined;
|
|
21270
|
+
}[] | undefined;
|
|
21271
|
+
} | undefined;
|
|
21272
|
+
defaultValue?: {
|
|
21273
|
+
country: string;
|
|
21274
|
+
addressType: "DOMESTIC";
|
|
21275
|
+
streetLevelDetails?: Record<string, string> | undefined;
|
|
21276
|
+
administrativeArea?: (string & import("zod/v4").$brand<"UUID">) | {
|
|
21277
|
+
$userField: "signature" | "id" | "name" | "primaryOfficeId" | "role" | "avatar";
|
|
21278
|
+
$location?: string | undefined;
|
|
21279
|
+
} | undefined;
|
|
21280
|
+
} | undefined;
|
|
21232
21281
|
} | {
|
|
21233
21282
|
id: string;
|
|
21234
21283
|
label: {
|
|
@@ -21236,112 +21285,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
|
21236
21285
|
defaultMessage: string;
|
|
21237
21286
|
description: string;
|
|
21238
21287
|
};
|
|
21239
|
-
type: "
|
|
21240
|
-
parent?: {
|
|
21241
|
-
$$field: string;
|
|
21242
|
-
$$subfield?: string[] | undefined;
|
|
21243
|
-
} | {
|
|
21244
|
-
$$field: string;
|
|
21245
|
-
$$subfield?: string[] | undefined;
|
|
21246
|
-
}[] | undefined;
|
|
21247
|
-
required?: boolean | {
|
|
21248
|
-
message: {
|
|
21249
|
-
id: string;
|
|
21250
|
-
defaultMessage: string;
|
|
21251
|
-
description: string;
|
|
21252
|
-
};
|
|
21253
|
-
} | undefined;
|
|
21254
|
-
conditionals?: ({
|
|
21255
|
-
type: "SHOW";
|
|
21256
|
-
conditional: any;
|
|
21257
|
-
} | {
|
|
21258
|
-
type: "ENABLE";
|
|
21259
|
-
conditional: any;
|
|
21260
|
-
} | {
|
|
21261
|
-
type: "DISPLAY_ON_REVIEW";
|
|
21262
|
-
conditional: any;
|
|
21263
|
-
})[] | undefined;
|
|
21264
|
-
secured?: boolean | undefined;
|
|
21265
|
-
placeholder?: {
|
|
21266
|
-
id: string;
|
|
21267
|
-
defaultMessage: string;
|
|
21268
|
-
description: string;
|
|
21269
|
-
} | undefined;
|
|
21270
|
-
validation?: {
|
|
21271
|
-
validator: any;
|
|
21272
|
-
message: {
|
|
21273
|
-
id: string;
|
|
21274
|
-
defaultMessage: string;
|
|
21275
|
-
description: string;
|
|
21276
|
-
};
|
|
21277
|
-
}[] | undefined;
|
|
21278
|
-
helperText?: {
|
|
21279
|
-
id: string;
|
|
21280
|
-
defaultMessage: string;
|
|
21281
|
-
description: string;
|
|
21282
|
-
} | undefined;
|
|
21283
|
-
hideLabel?: boolean | undefined;
|
|
21284
|
-
uncorrectable?: boolean | undefined;
|
|
21285
|
-
value?: {
|
|
21286
|
-
$$field: string;
|
|
21287
|
-
$$subfield?: string[] | undefined;
|
|
21288
|
-
} | {
|
|
21289
|
-
$$field: string;
|
|
21290
|
-
$$subfield?: string[] | undefined;
|
|
21291
|
-
}[] | undefined;
|
|
21292
|
-
analytics?: boolean | undefined;
|
|
21293
|
-
configuration?: {
|
|
21294
|
-
lineSeparator?: string | undefined;
|
|
21295
|
-
fields?: ("country" | "administrativeArea")[] | undefined;
|
|
21296
|
-
administrativeLevels?: string[] | undefined;
|
|
21297
|
-
streetAddressForm?: {
|
|
21298
|
-
id: string;
|
|
21299
|
-
label: {
|
|
21300
|
-
id: string;
|
|
21301
|
-
defaultMessage: string;
|
|
21302
|
-
description: string;
|
|
21303
|
-
};
|
|
21304
|
-
type: "TEXT";
|
|
21305
|
-
required?: boolean | {
|
|
21306
|
-
message: {
|
|
21307
|
-
id: string;
|
|
21308
|
-
defaultMessage: string;
|
|
21309
|
-
description: string;
|
|
21310
|
-
};
|
|
21311
|
-
} | undefined;
|
|
21312
|
-
conditionals?: ({
|
|
21313
|
-
type: "SHOW";
|
|
21314
|
-
conditional: any;
|
|
21315
|
-
} | {
|
|
21316
|
-
type: "ENABLE";
|
|
21317
|
-
conditional: any;
|
|
21318
|
-
} | {
|
|
21319
|
-
type: "DISPLAY_ON_REVIEW";
|
|
21320
|
-
conditional: any;
|
|
21321
|
-
})[] | undefined;
|
|
21322
|
-
parent?: {
|
|
21323
|
-
$$field: string;
|
|
21324
|
-
$$subfield?: string[] | undefined;
|
|
21325
|
-
} | undefined;
|
|
21326
|
-
}[] | undefined;
|
|
21327
|
-
} | undefined;
|
|
21328
|
-
defaultValue?: {
|
|
21329
|
-
country: string;
|
|
21330
|
-
addressType: "DOMESTIC";
|
|
21331
|
-
streetLevelDetails?: Record<string, string> | undefined;
|
|
21332
|
-
administrativeArea?: (string & import("zod/v4").$brand<"UUID">) | {
|
|
21333
|
-
$userField: "signature" | "id" | "name" | "primaryOfficeId" | "role" | "avatar";
|
|
21334
|
-
$location?: string | undefined;
|
|
21335
|
-
} | undefined;
|
|
21336
|
-
} | undefined;
|
|
21337
|
-
} | {
|
|
21338
|
-
id: string;
|
|
21339
|
-
label: {
|
|
21340
|
-
id: string;
|
|
21341
|
-
defaultMessage: string;
|
|
21342
|
-
description: string;
|
|
21343
|
-
};
|
|
21344
|
-
type: "NUMBER";
|
|
21288
|
+
type: "NUMBER";
|
|
21345
21289
|
parent?: {
|
|
21346
21290
|
$$field: string;
|
|
21347
21291
|
$$subfield?: string[] | undefined;
|
|
@@ -24195,8 +24139,14 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
|
24195
24139
|
defaultMessage: string;
|
|
24196
24140
|
description: string;
|
|
24197
24141
|
};
|
|
24198
|
-
type: "
|
|
24199
|
-
|
|
24142
|
+
type: "LOADER";
|
|
24143
|
+
configuration: {
|
|
24144
|
+
text: {
|
|
24145
|
+
id: string;
|
|
24146
|
+
defaultMessage: string;
|
|
24147
|
+
description: string;
|
|
24148
|
+
};
|
|
24149
|
+
};
|
|
24200
24150
|
parent?: {
|
|
24201
24151
|
$$field: string;
|
|
24202
24152
|
$$subfield?: string[] | undefined;
|
|
@@ -24250,8 +24200,6 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
|
24250
24200
|
$$subfield?: string[] | undefined;
|
|
24251
24201
|
}[] | undefined;
|
|
24252
24202
|
analytics?: boolean | undefined;
|
|
24253
|
-
defaultValue?: unknown;
|
|
24254
|
-
configuration?: unknown;
|
|
24255
24203
|
} | {
|
|
24256
24204
|
id: string;
|
|
24257
24205
|
label: {
|
|
@@ -24259,14 +24207,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
|
24259
24207
|
defaultMessage: string;
|
|
24260
24208
|
description: string;
|
|
24261
24209
|
};
|
|
24262
|
-
type: "
|
|
24263
|
-
configuration: {
|
|
24264
|
-
text: {
|
|
24265
|
-
id: string;
|
|
24266
|
-
defaultMessage: string;
|
|
24267
|
-
description: string;
|
|
24268
|
-
};
|
|
24269
|
-
};
|
|
24210
|
+
type: "ALPHA_HIDDEN";
|
|
24270
24211
|
parent?: {
|
|
24271
24212
|
$$field: string;
|
|
24272
24213
|
$$subfield?: string[] | undefined;
|
|
@@ -24274,13 +24215,6 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
|
24274
24215
|
$$field: string;
|
|
24275
24216
|
$$subfield?: string[] | undefined;
|
|
24276
24217
|
}[] | undefined;
|
|
24277
|
-
required?: boolean | {
|
|
24278
|
-
message: {
|
|
24279
|
-
id: string;
|
|
24280
|
-
defaultMessage: string;
|
|
24281
|
-
description: string;
|
|
24282
|
-
};
|
|
24283
|
-
} | undefined;
|
|
24284
24218
|
conditionals?: ({
|
|
24285
24219
|
type: "SHOW";
|
|
24286
24220
|
conditional: any;
|
|
@@ -24320,6 +24254,8 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
|
24320
24254
|
$$subfield?: string[] | undefined;
|
|
24321
24255
|
}[] | undefined;
|
|
24322
24256
|
analytics?: boolean | undefined;
|
|
24257
|
+
required?: boolean | undefined;
|
|
24258
|
+
defaultValue?: string | undefined;
|
|
24323
24259
|
} | {
|
|
24324
24260
|
id: string;
|
|
24325
24261
|
label: {
|
|
@@ -24840,7 +24776,7 @@ export declare function isPageVisible(page: PageConfig, formValues: ActionUpdate
|
|
|
24840
24776
|
* @returns {Partial<T>} A new object containing only the values for visible fields
|
|
24841
24777
|
*/
|
|
24842
24778
|
export declare function omitHiddenFields<T extends EventState | ActionUpdate>(fields: FieldConfig[], formValues: T, validatorContext: ValidatorContext): Partial<T>;
|
|
24843
|
-
export declare function omitHiddenPaginatedFields<T extends EventState | ActionUpdate>(formConfig: FormConfig, values: T, validatorContext: ValidatorContext): Partial<
|
|
24779
|
+
export declare function omitHiddenPaginatedFields<T extends EventState | ActionUpdate>(formConfig: FormConfig, values: T, validatorContext: ValidatorContext): Partial<Partial<T>>;
|
|
24844
24780
|
/**
|
|
24845
24781
|
*
|
|
24846
24782
|
* @returns a draft for the event that has been created since the last non-read action.
|
|
@@ -24850,7 +24786,113 @@ export declare function createEmptyDraft(eventId: UUID, draftId: UUID, actionTyp
|
|
|
24850
24786
|
export declare function isVerificationPage(page: PageConfig): page is VerificationPageConfig;
|
|
24851
24787
|
export declare function getVisibleVerificationPageIds(pages: PageConfig[], annotation: ActionUpdate, context: ValidatorContext): string[];
|
|
24852
24788
|
export declare function omitHiddenAnnotationFields(actionConfig: ActionConfig, declaration: EventState, annotation: ActionUpdate, context: ValidatorContext): Partial<{
|
|
24853
|
-
[x: string]:
|
|
24789
|
+
[x: string]: string | number | boolean | {
|
|
24790
|
+
path: string;
|
|
24791
|
+
originalFilename: string;
|
|
24792
|
+
type: string;
|
|
24793
|
+
} | {
|
|
24794
|
+
firstname: string;
|
|
24795
|
+
surname: string;
|
|
24796
|
+
middlename?: string | undefined;
|
|
24797
|
+
} | {
|
|
24798
|
+
firstname?: string | null | undefined;
|
|
24799
|
+
surname?: string | null | undefined;
|
|
24800
|
+
middlename?: string | null | undefined;
|
|
24801
|
+
} | {
|
|
24802
|
+
country: string;
|
|
24803
|
+
addressType: "DOMESTIC";
|
|
24804
|
+
administrativeArea: string;
|
|
24805
|
+
streetLevelDetails?: Record<string, string> | undefined;
|
|
24806
|
+
} | {
|
|
24807
|
+
country: string;
|
|
24808
|
+
addressType: "INTERNATIONAL";
|
|
24809
|
+
streetLevelDetails?: Record<string, string> | undefined;
|
|
24810
|
+
} | {
|
|
24811
|
+
addressType: "DOMESTIC";
|
|
24812
|
+
country?: string | null | undefined;
|
|
24813
|
+
streetLevelDetails?: Record<string, string | null> | null | undefined;
|
|
24814
|
+
administrativeArea?: string | null | undefined;
|
|
24815
|
+
} | {
|
|
24816
|
+
addressType: "INTERNATIONAL";
|
|
24817
|
+
country?: string | null | undefined;
|
|
24818
|
+
streetLevelDetails?: Record<string, string | null> | null | undefined;
|
|
24819
|
+
} | {
|
|
24820
|
+
path: string;
|
|
24821
|
+
originalFilename: string;
|
|
24822
|
+
type: string;
|
|
24823
|
+
option: string;
|
|
24824
|
+
}[] | {
|
|
24825
|
+
loading: boolean;
|
|
24826
|
+
data: any;
|
|
24827
|
+
error?: {
|
|
24828
|
+
statusCode: number;
|
|
24829
|
+
message: string;
|
|
24830
|
+
} | null | undefined;
|
|
24831
|
+
} | {
|
|
24832
|
+
data: Record<string, string>;
|
|
24833
|
+
} | {
|
|
24834
|
+
data: any;
|
|
24835
|
+
} | {
|
|
24836
|
+
age: number;
|
|
24837
|
+
asOfDateRef: string;
|
|
24838
|
+
} | {
|
|
24839
|
+
start: string;
|
|
24840
|
+
end: string;
|
|
24841
|
+
} | {
|
|
24842
|
+
data: Record<string, string | number | boolean | {
|
|
24843
|
+
path: string;
|
|
24844
|
+
originalFilename: string;
|
|
24845
|
+
type: string;
|
|
24846
|
+
} | {
|
|
24847
|
+
firstname: string;
|
|
24848
|
+
surname: string;
|
|
24849
|
+
middlename?: string | undefined;
|
|
24850
|
+
} | {
|
|
24851
|
+
firstname?: string | null | undefined;
|
|
24852
|
+
surname?: string | null | undefined;
|
|
24853
|
+
middlename?: string | null | undefined;
|
|
24854
|
+
} | {
|
|
24855
|
+
country: string;
|
|
24856
|
+
addressType: "DOMESTIC";
|
|
24857
|
+
administrativeArea: string;
|
|
24858
|
+
streetLevelDetails?: Record<string, string> | undefined;
|
|
24859
|
+
} | {
|
|
24860
|
+
country: string;
|
|
24861
|
+
addressType: "INTERNATIONAL";
|
|
24862
|
+
streetLevelDetails?: Record<string, string> | undefined;
|
|
24863
|
+
} | {
|
|
24864
|
+
path: string;
|
|
24865
|
+
originalFilename: string;
|
|
24866
|
+
type: string;
|
|
24867
|
+
option: string;
|
|
24868
|
+
}[] | {
|
|
24869
|
+
loading: boolean;
|
|
24870
|
+
data: any;
|
|
24871
|
+
error?: {
|
|
24872
|
+
statusCode: number;
|
|
24873
|
+
message: string;
|
|
24874
|
+
} | null | undefined;
|
|
24875
|
+
} | {
|
|
24876
|
+
data: Record<string, string>;
|
|
24877
|
+
} | {
|
|
24878
|
+
data: any;
|
|
24879
|
+
} | {
|
|
24880
|
+
age: number;
|
|
24881
|
+
asOfDateRef: string;
|
|
24882
|
+
} | {
|
|
24883
|
+
start: string;
|
|
24884
|
+
end: string;
|
|
24885
|
+
} | null | undefined>;
|
|
24886
|
+
} | {
|
|
24887
|
+
loading?: boolean | null | undefined;
|
|
24888
|
+
error?: {
|
|
24889
|
+
statusCode: number;
|
|
24890
|
+
message: string;
|
|
24891
|
+
} | null | undefined;
|
|
24892
|
+
data?: any;
|
|
24893
|
+
} | {
|
|
24894
|
+
data: Record<string, string>;
|
|
24895
|
+
} | null | undefined;
|
|
24854
24896
|
}>;
|
|
24855
24897
|
/**
|
|
24856
24898
|
* Merges two documents together.
|
|
@@ -24868,12 +24910,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24868
24910
|
createdAt: string;
|
|
24869
24911
|
createdBy: string;
|
|
24870
24912
|
createdByRole: string;
|
|
24871
|
-
declaration: Record<string,
|
|
24913
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24872
24914
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24873
24915
|
type: "REGISTER";
|
|
24874
24916
|
createdBySignature?: string | null | undefined;
|
|
24875
24917
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24876
|
-
annotation?: Record<string,
|
|
24918
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24877
24919
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24878
24920
|
registrationNumber?: string | undefined;
|
|
24879
24921
|
} | {
|
|
@@ -24883,7 +24925,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24883
24925
|
createdAt: string;
|
|
24884
24926
|
createdBy: string;
|
|
24885
24927
|
createdByRole: string;
|
|
24886
|
-
declaration: Record<string,
|
|
24928
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24887
24929
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24888
24930
|
type: "DUPLICATE_DETECTED";
|
|
24889
24931
|
content: {
|
|
@@ -24894,7 +24936,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24894
24936
|
};
|
|
24895
24937
|
createdBySignature?: string | null | undefined;
|
|
24896
24938
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24897
|
-
annotation?: Record<string,
|
|
24939
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24898
24940
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24899
24941
|
} | {
|
|
24900
24942
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -24903,16 +24945,16 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24903
24945
|
createdAt: string;
|
|
24904
24946
|
createdBy: string;
|
|
24905
24947
|
createdByRole: string;
|
|
24906
|
-
declaration: Record<string,
|
|
24948
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24907
24949
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24908
|
-
type: "
|
|
24950
|
+
type: "EDIT";
|
|
24951
|
+
content: {
|
|
24952
|
+
comment?: string | undefined;
|
|
24953
|
+
};
|
|
24909
24954
|
createdBySignature?: string | null | undefined;
|
|
24910
24955
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24911
|
-
annotation?: Record<string,
|
|
24956
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24912
24957
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24913
|
-
content?: {
|
|
24914
|
-
templateId?: string | undefined;
|
|
24915
|
-
} | null | undefined;
|
|
24916
24958
|
} | {
|
|
24917
24959
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
24918
24960
|
transactionId: string;
|
|
@@ -24920,13 +24962,16 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24920
24962
|
createdAt: string;
|
|
24921
24963
|
createdBy: string;
|
|
24922
24964
|
createdByRole: string;
|
|
24923
|
-
declaration: Record<string,
|
|
24965
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24924
24966
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24925
|
-
type: "
|
|
24967
|
+
type: "PRINT_CERTIFICATE";
|
|
24926
24968
|
createdBySignature?: string | null | undefined;
|
|
24927
24969
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24928
|
-
annotation?: Record<string,
|
|
24970
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24929
24971
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24972
|
+
content?: {
|
|
24973
|
+
templateId?: string | undefined;
|
|
24974
|
+
} | null | undefined;
|
|
24930
24975
|
} | {
|
|
24931
24976
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
24932
24977
|
transactionId: string;
|
|
@@ -24934,13 +24979,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24934
24979
|
createdAt: string;
|
|
24935
24980
|
createdBy: string;
|
|
24936
24981
|
createdByRole: string;
|
|
24937
|
-
declaration: Record<string,
|
|
24982
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24938
24983
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24939
|
-
type: "
|
|
24940
|
-
customActionType: string;
|
|
24984
|
+
type: "REQUEST_CORRECTION";
|
|
24941
24985
|
createdBySignature?: string | null | undefined;
|
|
24942
24986
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24943
|
-
annotation?: Record<string,
|
|
24987
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24944
24988
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24945
24989
|
} | {
|
|
24946
24990
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -24949,12 +24993,13 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24949
24993
|
createdAt: string;
|
|
24950
24994
|
createdBy: string;
|
|
24951
24995
|
createdByRole: string;
|
|
24952
|
-
declaration: Record<string,
|
|
24996
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24953
24997
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24954
|
-
type: "
|
|
24998
|
+
type: "CUSTOM";
|
|
24999
|
+
customActionType: string;
|
|
24955
25000
|
createdBySignature?: string | null | undefined;
|
|
24956
25001
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24957
|
-
annotation?: Record<string,
|
|
25002
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24958
25003
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24959
25004
|
} | {
|
|
24960
25005
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -24963,12 +25008,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24963
25008
|
createdAt: string;
|
|
24964
25009
|
createdBy: string;
|
|
24965
25010
|
createdByRole: string;
|
|
24966
|
-
declaration: Record<string,
|
|
25011
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24967
25012
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24968
|
-
type: "
|
|
25013
|
+
type: "CREATE";
|
|
24969
25014
|
createdBySignature?: string | null | undefined;
|
|
24970
25015
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24971
|
-
annotation?: Record<string,
|
|
25016
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24972
25017
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24973
25018
|
} | {
|
|
24974
25019
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -24977,7 +25022,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24977
25022
|
createdAt: string;
|
|
24978
25023
|
createdBy: string;
|
|
24979
25024
|
createdByRole: string;
|
|
24980
|
-
declaration: Record<string,
|
|
25025
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24981
25026
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24982
25027
|
type: "REJECT";
|
|
24983
25028
|
content: {
|
|
@@ -24985,7 +25030,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24985
25030
|
};
|
|
24986
25031
|
createdBySignature?: string | null | undefined;
|
|
24987
25032
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24988
|
-
annotation?: Record<string,
|
|
25033
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
24989
25034
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
24990
25035
|
} | {
|
|
24991
25036
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -24994,12 +25039,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
24994
25039
|
createdAt: string;
|
|
24995
25040
|
createdBy: string;
|
|
24996
25041
|
createdByRole: string;
|
|
24997
|
-
declaration: Record<string,
|
|
25042
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
24998
25043
|
status: "Rejected" | "Requested" | "Accepted";
|
|
24999
25044
|
type: "MARK_AS_NOT_DUPLICATE";
|
|
25000
25045
|
createdBySignature?: string | null | undefined;
|
|
25001
25046
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25002
|
-
annotation?: Record<string,
|
|
25047
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25003
25048
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25004
25049
|
} | {
|
|
25005
25050
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25008,12 +25053,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25008
25053
|
createdAt: string;
|
|
25009
25054
|
createdBy: string;
|
|
25010
25055
|
createdByRole: string;
|
|
25011
|
-
declaration: Record<string,
|
|
25056
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25012
25057
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25013
25058
|
type: "MARK_AS_DUPLICATE";
|
|
25014
25059
|
createdBySignature?: string | null | undefined;
|
|
25015
25060
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25016
|
-
annotation?: Record<string,
|
|
25061
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25017
25062
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25018
25063
|
content?: {
|
|
25019
25064
|
duplicateOf: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25025,7 +25070,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25025
25070
|
createdAt: string;
|
|
25026
25071
|
createdBy: string;
|
|
25027
25072
|
createdByRole: string;
|
|
25028
|
-
declaration: Record<string,
|
|
25073
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25029
25074
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25030
25075
|
type: "ARCHIVE";
|
|
25031
25076
|
content: {
|
|
@@ -25033,7 +25078,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25033
25078
|
};
|
|
25034
25079
|
createdBySignature?: string | null | undefined;
|
|
25035
25080
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25036
|
-
annotation?: Record<string,
|
|
25081
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25037
25082
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25038
25083
|
} | {
|
|
25039
25084
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25042,12 +25087,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25042
25087
|
createdAt: string;
|
|
25043
25088
|
createdBy: string;
|
|
25044
25089
|
createdByRole: string;
|
|
25045
|
-
declaration: Record<string,
|
|
25090
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25046
25091
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25047
25092
|
type: "NOTIFY";
|
|
25048
25093
|
createdBySignature?: string | null | undefined;
|
|
25049
25094
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25050
|
-
annotation?: Record<string,
|
|
25095
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25051
25096
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25052
25097
|
} | {
|
|
25053
25098
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25056,12 +25101,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25056
25101
|
createdAt: string;
|
|
25057
25102
|
createdBy: string;
|
|
25058
25103
|
createdByRole: string;
|
|
25059
|
-
declaration: Record<string,
|
|
25104
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25060
25105
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25061
25106
|
type: "DECLARE";
|
|
25062
25107
|
createdBySignature?: string | null | undefined;
|
|
25063
25108
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25064
|
-
annotation?: Record<string,
|
|
25109
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25065
25110
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25066
25111
|
} | {
|
|
25067
25112
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25070,13 +25115,13 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25070
25115
|
createdAt: string;
|
|
25071
25116
|
createdBy: string;
|
|
25072
25117
|
createdByRole: string;
|
|
25073
|
-
declaration: Record<string,
|
|
25118
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25074
25119
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25075
25120
|
type: "ASSIGN";
|
|
25076
25121
|
assignedTo: string;
|
|
25077
25122
|
createdBySignature?: string | null | undefined;
|
|
25078
25123
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25079
|
-
annotation?: Record<string,
|
|
25124
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25080
25125
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25081
25126
|
} | {
|
|
25082
25127
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25085,13 +25130,13 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25085
25130
|
createdAt: string;
|
|
25086
25131
|
createdBy: string;
|
|
25087
25132
|
createdByRole: string;
|
|
25088
|
-
declaration: Record<string,
|
|
25133
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25089
25134
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25090
25135
|
type: "APPROVE_CORRECTION";
|
|
25091
25136
|
requestId: string;
|
|
25092
25137
|
createdBySignature?: string | null | undefined;
|
|
25093
25138
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25094
|
-
annotation?: Record<string,
|
|
25139
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25095
25140
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25096
25141
|
} | {
|
|
25097
25142
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25100,7 +25145,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25100
25145
|
createdAt: string;
|
|
25101
25146
|
createdBy: string;
|
|
25102
25147
|
createdByRole: string;
|
|
25103
|
-
declaration: Record<string,
|
|
25148
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25104
25149
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25105
25150
|
type: "REJECT_CORRECTION";
|
|
25106
25151
|
requestId: string;
|
|
@@ -25109,7 +25154,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25109
25154
|
};
|
|
25110
25155
|
createdBySignature?: string | null | undefined;
|
|
25111
25156
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25112
|
-
annotation?: Record<string,
|
|
25157
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25113
25158
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25114
25159
|
} | {
|
|
25115
25160
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25118,12 +25163,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25118
25163
|
createdAt: string;
|
|
25119
25164
|
createdBy: string;
|
|
25120
25165
|
createdByRole: string;
|
|
25121
|
-
declaration: Record<string,
|
|
25166
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25122
25167
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25123
25168
|
type: "UNASSIGN";
|
|
25124
25169
|
createdBySignature?: string | null | undefined;
|
|
25125
25170
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25126
|
-
annotation?: Record<string,
|
|
25171
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25127
25172
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25128
25173
|
} | {
|
|
25129
25174
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25132,12 +25177,12 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25132
25177
|
createdAt: string;
|
|
25133
25178
|
createdBy: string;
|
|
25134
25179
|
createdByRole: string;
|
|
25135
|
-
declaration: Record<string,
|
|
25180
|
+
declaration: Record<string, import("./FieldValue").FieldUpdateValue>;
|
|
25136
25181
|
status: "Rejected" | "Requested" | "Accepted";
|
|
25137
25182
|
type: "READ";
|
|
25138
25183
|
createdBySignature?: string | null | undefined;
|
|
25139
25184
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25140
|
-
annotation?: Record<string,
|
|
25185
|
+
annotation?: Record<string, import("./FieldValue").FieldUpdateValue> | null | undefined;
|
|
25141
25186
|
originalActionId?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
25142
25187
|
} | {
|
|
25143
25188
|
id: string & import("zod/v4").$brand<"UUID">;
|
|
@@ -25146,7 +25191,7 @@ export declare function findLastAssignmentAction(actions: Action[]): {
|
|
|
25146
25191
|
createdAt: string;
|
|
25147
25192
|
createdBy: string;
|
|
25148
25193
|
createdByRole: string;
|
|
25149
|
-
type: "NOTIFY" | "DECLARE" | "
|
|
25194
|
+
type: "NOTIFY" | "DECLARE" | "REGISTER" | "EDIT" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE" | "REQUEST_CORRECTION" | "REJECT_CORRECTION" | "APPROVE_CORRECTION" | "CUSTOM";
|
|
25150
25195
|
status: "Rejected";
|
|
25151
25196
|
createdBySignature?: string | null | undefined;
|
|
25152
25197
|
createdAtLocation?: (string & import("zod/v4").$brand<"UUID">) | null | undefined;
|
|
@@ -27697,8 +27742,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
27697
27742
|
defaultMessage: string;
|
|
27698
27743
|
description: string;
|
|
27699
27744
|
};
|
|
27700
|
-
type: "
|
|
27701
|
-
|
|
27745
|
+
type: "LOADER";
|
|
27746
|
+
configuration: {
|
|
27747
|
+
text: {
|
|
27748
|
+
id: string;
|
|
27749
|
+
defaultMessage: string;
|
|
27750
|
+
description: string;
|
|
27751
|
+
};
|
|
27752
|
+
};
|
|
27702
27753
|
parent?: {
|
|
27703
27754
|
$$field: string;
|
|
27704
27755
|
$$subfield?: string[] | undefined;
|
|
@@ -27752,8 +27803,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
27752
27803
|
$$subfield?: string[] | undefined;
|
|
27753
27804
|
}[] | undefined;
|
|
27754
27805
|
analytics?: boolean | undefined;
|
|
27755
|
-
defaultValue?: unknown;
|
|
27756
|
-
configuration?: unknown;
|
|
27757
27806
|
} | {
|
|
27758
27807
|
id: string;
|
|
27759
27808
|
label: {
|
|
@@ -27761,14 +27810,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
27761
27810
|
defaultMessage: string;
|
|
27762
27811
|
description: string;
|
|
27763
27812
|
};
|
|
27764
|
-
type: "
|
|
27765
|
-
configuration: {
|
|
27766
|
-
text: {
|
|
27767
|
-
id: string;
|
|
27768
|
-
defaultMessage: string;
|
|
27769
|
-
description: string;
|
|
27770
|
-
};
|
|
27771
|
-
};
|
|
27813
|
+
type: "ALPHA_HIDDEN";
|
|
27772
27814
|
parent?: {
|
|
27773
27815
|
$$field: string;
|
|
27774
27816
|
$$subfield?: string[] | undefined;
|
|
@@ -27776,13 +27818,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
27776
27818
|
$$field: string;
|
|
27777
27819
|
$$subfield?: string[] | undefined;
|
|
27778
27820
|
}[] | undefined;
|
|
27779
|
-
required?: boolean | {
|
|
27780
|
-
message: {
|
|
27781
|
-
id: string;
|
|
27782
|
-
defaultMessage: string;
|
|
27783
|
-
description: string;
|
|
27784
|
-
};
|
|
27785
|
-
} | undefined;
|
|
27786
27821
|
conditionals?: ({
|
|
27787
27822
|
type: "SHOW";
|
|
27788
27823
|
conditional: any;
|
|
@@ -27822,6 +27857,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
27822
27857
|
$$subfield?: string[] | undefined;
|
|
27823
27858
|
}[] | undefined;
|
|
27824
27859
|
analytics?: boolean | undefined;
|
|
27860
|
+
required?: boolean | undefined;
|
|
27861
|
+
defaultValue?: string | undefined;
|
|
27825
27862
|
} | {
|
|
27826
27863
|
id: string;
|
|
27827
27864
|
label: {
|
|
@@ -28337,7 +28374,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
28337
28374
|
defaultMessage: string;
|
|
28338
28375
|
description: string;
|
|
28339
28376
|
} | undefined;
|
|
28340
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
28377
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
28341
28378
|
conditionals?: ({
|
|
28342
28379
|
type: "SHOW";
|
|
28343
28380
|
conditional: any;
|
|
@@ -30823,8 +30860,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
30823
30860
|
defaultMessage: string;
|
|
30824
30861
|
description: string;
|
|
30825
30862
|
};
|
|
30826
|
-
type: "
|
|
30827
|
-
|
|
30863
|
+
type: "LOADER";
|
|
30864
|
+
configuration: {
|
|
30865
|
+
text: {
|
|
30866
|
+
id: string;
|
|
30867
|
+
defaultMessage: string;
|
|
30868
|
+
description: string;
|
|
30869
|
+
};
|
|
30870
|
+
};
|
|
30828
30871
|
parent?: {
|
|
30829
30872
|
$$field: string;
|
|
30830
30873
|
$$subfield?: string[] | undefined;
|
|
@@ -30878,8 +30921,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
30878
30921
|
$$subfield?: string[] | undefined;
|
|
30879
30922
|
}[] | undefined;
|
|
30880
30923
|
analytics?: boolean | undefined;
|
|
30881
|
-
defaultValue?: unknown;
|
|
30882
|
-
configuration?: unknown;
|
|
30883
30924
|
} | {
|
|
30884
30925
|
id: string;
|
|
30885
30926
|
label: {
|
|
@@ -30887,14 +30928,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
30887
30928
|
defaultMessage: string;
|
|
30888
30929
|
description: string;
|
|
30889
30930
|
};
|
|
30890
|
-
type: "
|
|
30891
|
-
configuration: {
|
|
30892
|
-
text: {
|
|
30893
|
-
id: string;
|
|
30894
|
-
defaultMessage: string;
|
|
30895
|
-
description: string;
|
|
30896
|
-
};
|
|
30897
|
-
};
|
|
30931
|
+
type: "ALPHA_HIDDEN";
|
|
30898
30932
|
parent?: {
|
|
30899
30933
|
$$field: string;
|
|
30900
30934
|
$$subfield?: string[] | undefined;
|
|
@@ -30902,13 +30936,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
30902
30936
|
$$field: string;
|
|
30903
30937
|
$$subfield?: string[] | undefined;
|
|
30904
30938
|
}[] | undefined;
|
|
30905
|
-
required?: boolean | {
|
|
30906
|
-
message: {
|
|
30907
|
-
id: string;
|
|
30908
|
-
defaultMessage: string;
|
|
30909
|
-
description: string;
|
|
30910
|
-
};
|
|
30911
|
-
} | undefined;
|
|
30912
30939
|
conditionals?: ({
|
|
30913
30940
|
type: "SHOW";
|
|
30914
30941
|
conditional: any;
|
|
@@ -30948,6 +30975,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
30948
30975
|
$$subfield?: string[] | undefined;
|
|
30949
30976
|
}[] | undefined;
|
|
30950
30977
|
analytics?: boolean | undefined;
|
|
30978
|
+
required?: boolean | undefined;
|
|
30979
|
+
defaultValue?: string | undefined;
|
|
30951
30980
|
} | {
|
|
30952
30981
|
id: string;
|
|
30953
30982
|
label: {
|
|
@@ -31464,7 +31493,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
31464
31493
|
defaultMessage: string;
|
|
31465
31494
|
description: string;
|
|
31466
31495
|
} | undefined;
|
|
31467
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
31496
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
31468
31497
|
conditionals?: undefined;
|
|
31469
31498
|
} | {
|
|
31470
31499
|
label: {
|
|
@@ -33944,8 +33973,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
33944
33973
|
defaultMessage: string;
|
|
33945
33974
|
description: string;
|
|
33946
33975
|
};
|
|
33947
|
-
type: "
|
|
33948
|
-
|
|
33976
|
+
type: "LOADER";
|
|
33977
|
+
configuration: {
|
|
33978
|
+
text: {
|
|
33979
|
+
id: string;
|
|
33980
|
+
defaultMessage: string;
|
|
33981
|
+
description: string;
|
|
33982
|
+
};
|
|
33983
|
+
};
|
|
33949
33984
|
parent?: {
|
|
33950
33985
|
$$field: string;
|
|
33951
33986
|
$$subfield?: string[] | undefined;
|
|
@@ -33999,8 +34034,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
33999
34034
|
$$subfield?: string[] | undefined;
|
|
34000
34035
|
}[] | undefined;
|
|
34001
34036
|
analytics?: boolean | undefined;
|
|
34002
|
-
defaultValue?: unknown;
|
|
34003
|
-
configuration?: unknown;
|
|
34004
34037
|
} | {
|
|
34005
34038
|
id: string;
|
|
34006
34039
|
label: {
|
|
@@ -34008,14 +34041,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34008
34041
|
defaultMessage: string;
|
|
34009
34042
|
description: string;
|
|
34010
34043
|
};
|
|
34011
|
-
type: "
|
|
34012
|
-
configuration: {
|
|
34013
|
-
text: {
|
|
34014
|
-
id: string;
|
|
34015
|
-
defaultMessage: string;
|
|
34016
|
-
description: string;
|
|
34017
|
-
};
|
|
34018
|
-
};
|
|
34044
|
+
type: "ALPHA_HIDDEN";
|
|
34019
34045
|
parent?: {
|
|
34020
34046
|
$$field: string;
|
|
34021
34047
|
$$subfield?: string[] | undefined;
|
|
@@ -34023,13 +34049,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34023
34049
|
$$field: string;
|
|
34024
34050
|
$$subfield?: string[] | undefined;
|
|
34025
34051
|
}[] | undefined;
|
|
34026
|
-
required?: boolean | {
|
|
34027
|
-
message: {
|
|
34028
|
-
id: string;
|
|
34029
|
-
defaultMessage: string;
|
|
34030
|
-
description: string;
|
|
34031
|
-
};
|
|
34032
|
-
} | undefined;
|
|
34033
34052
|
conditionals?: ({
|
|
34034
34053
|
type: "SHOW";
|
|
34035
34054
|
conditional: any;
|
|
@@ -34069,6 +34088,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34069
34088
|
$$subfield?: string[] | undefined;
|
|
34070
34089
|
}[] | undefined;
|
|
34071
34090
|
analytics?: boolean | undefined;
|
|
34091
|
+
required?: boolean | undefined;
|
|
34092
|
+
defaultValue?: string | undefined;
|
|
34072
34093
|
} | {
|
|
34073
34094
|
id: string;
|
|
34074
34095
|
label: {
|
|
@@ -34585,7 +34606,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34585
34606
|
defaultMessage: string;
|
|
34586
34607
|
description: string;
|
|
34587
34608
|
} | undefined;
|
|
34588
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34609
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34589
34610
|
conditionals?: ({
|
|
34590
34611
|
type: "SHOW";
|
|
34591
34612
|
conditional: any;
|
|
@@ -34624,37 +34645,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34624
34645
|
defaultMessage: string;
|
|
34625
34646
|
description: string;
|
|
34626
34647
|
} | undefined;
|
|
34627
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34628
|
-
conditionals?: ({
|
|
34629
|
-
type: "SHOW";
|
|
34630
|
-
conditional: any;
|
|
34631
|
-
} | {
|
|
34632
|
-
type: "ENABLE";
|
|
34633
|
-
conditional: any;
|
|
34634
|
-
})[] | undefined;
|
|
34635
|
-
} | {
|
|
34636
|
-
label: {
|
|
34637
|
-
id: string;
|
|
34638
|
-
defaultMessage: string;
|
|
34639
|
-
description: string;
|
|
34640
|
-
};
|
|
34641
|
-
flags: {
|
|
34642
|
-
id: string;
|
|
34643
|
-
operation: "add" | "remove";
|
|
34644
|
-
conditional?: any;
|
|
34645
|
-
}[];
|
|
34646
|
-
type: "VALIDATE";
|
|
34647
|
-
auditHistoryLabel?: {
|
|
34648
|
-
id: string;
|
|
34649
|
-
defaultMessage: string;
|
|
34650
|
-
description: string;
|
|
34651
|
-
} | undefined;
|
|
34652
|
-
supportingCopy?: {
|
|
34653
|
-
id: string;
|
|
34654
|
-
defaultMessage: string;
|
|
34655
|
-
description: string;
|
|
34656
|
-
} | undefined;
|
|
34657
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34648
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34658
34649
|
conditionals?: ({
|
|
34659
34650
|
type: "SHOW";
|
|
34660
34651
|
conditional: any;
|
|
@@ -34662,15 +34653,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34662
34653
|
type: "ENABLE";
|
|
34663
34654
|
conditional: any;
|
|
34664
34655
|
})[] | undefined;
|
|
34665
|
-
deduplication?: {
|
|
34666
|
-
id: string;
|
|
34667
|
-
label: {
|
|
34668
|
-
id: string;
|
|
34669
|
-
defaultMessage: string;
|
|
34670
|
-
description: string;
|
|
34671
|
-
};
|
|
34672
|
-
query: import("./DeduplicationConfig").ClauseOutput;
|
|
34673
|
-
} | undefined;
|
|
34674
34656
|
} | {
|
|
34675
34657
|
label: {
|
|
34676
34658
|
id: string;
|
|
@@ -34693,7 +34675,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
34693
34675
|
defaultMessage: string;
|
|
34694
34676
|
description: string;
|
|
34695
34677
|
} | undefined;
|
|
34696
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34678
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
34697
34679
|
conditionals?: ({
|
|
34698
34680
|
type: "SHOW";
|
|
34699
34681
|
conditional: any;
|
|
@@ -37195,8 +37177,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
37195
37177
|
defaultMessage: string;
|
|
37196
37178
|
description: string;
|
|
37197
37179
|
};
|
|
37198
|
-
type: "
|
|
37199
|
-
|
|
37180
|
+
type: "LOADER";
|
|
37181
|
+
configuration: {
|
|
37182
|
+
text: {
|
|
37183
|
+
id: string;
|
|
37184
|
+
defaultMessage: string;
|
|
37185
|
+
description: string;
|
|
37186
|
+
};
|
|
37187
|
+
};
|
|
37200
37188
|
parent?: {
|
|
37201
37189
|
$$field: string;
|
|
37202
37190
|
$$subfield?: string[] | undefined;
|
|
@@ -37250,8 +37238,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
37250
37238
|
$$subfield?: string[] | undefined;
|
|
37251
37239
|
}[] | undefined;
|
|
37252
37240
|
analytics?: boolean | undefined;
|
|
37253
|
-
defaultValue?: unknown;
|
|
37254
|
-
configuration?: unknown;
|
|
37255
37241
|
} | {
|
|
37256
37242
|
id: string;
|
|
37257
37243
|
label: {
|
|
@@ -37259,14 +37245,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
37259
37245
|
defaultMessage: string;
|
|
37260
37246
|
description: string;
|
|
37261
37247
|
};
|
|
37262
|
-
type: "
|
|
37263
|
-
configuration: {
|
|
37264
|
-
text: {
|
|
37265
|
-
id: string;
|
|
37266
|
-
defaultMessage: string;
|
|
37267
|
-
description: string;
|
|
37268
|
-
};
|
|
37269
|
-
};
|
|
37248
|
+
type: "ALPHA_HIDDEN";
|
|
37270
37249
|
parent?: {
|
|
37271
37250
|
$$field: string;
|
|
37272
37251
|
$$subfield?: string[] | undefined;
|
|
@@ -37274,13 +37253,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
37274
37253
|
$$field: string;
|
|
37275
37254
|
$$subfield?: string[] | undefined;
|
|
37276
37255
|
}[] | undefined;
|
|
37277
|
-
required?: boolean | {
|
|
37278
|
-
message: {
|
|
37279
|
-
id: string;
|
|
37280
|
-
defaultMessage: string;
|
|
37281
|
-
description: string;
|
|
37282
|
-
};
|
|
37283
|
-
} | undefined;
|
|
37284
37256
|
conditionals?: ({
|
|
37285
37257
|
type: "SHOW";
|
|
37286
37258
|
conditional: any;
|
|
@@ -37320,6 +37292,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
37320
37292
|
$$subfield?: string[] | undefined;
|
|
37321
37293
|
}[] | undefined;
|
|
37322
37294
|
analytics?: boolean | undefined;
|
|
37295
|
+
required?: boolean | undefined;
|
|
37296
|
+
defaultValue?: string | undefined;
|
|
37323
37297
|
} | {
|
|
37324
37298
|
id: string;
|
|
37325
37299
|
label: {
|
|
@@ -40294,8 +40268,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40294
40268
|
defaultMessage: string;
|
|
40295
40269
|
description: string;
|
|
40296
40270
|
};
|
|
40297
|
-
type: "
|
|
40298
|
-
|
|
40271
|
+
type: "LOADER";
|
|
40272
|
+
configuration: {
|
|
40273
|
+
text: {
|
|
40274
|
+
id: string;
|
|
40275
|
+
defaultMessage: string;
|
|
40276
|
+
description: string;
|
|
40277
|
+
};
|
|
40278
|
+
};
|
|
40299
40279
|
parent?: {
|
|
40300
40280
|
$$field: string;
|
|
40301
40281
|
$$subfield?: string[] | undefined;
|
|
@@ -40349,8 +40329,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40349
40329
|
$$subfield?: string[] | undefined;
|
|
40350
40330
|
}[] | undefined;
|
|
40351
40331
|
analytics?: boolean | undefined;
|
|
40352
|
-
defaultValue?: unknown;
|
|
40353
|
-
configuration?: unknown;
|
|
40354
40332
|
} | {
|
|
40355
40333
|
id: string;
|
|
40356
40334
|
label: {
|
|
@@ -40358,14 +40336,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40358
40336
|
defaultMessage: string;
|
|
40359
40337
|
description: string;
|
|
40360
40338
|
};
|
|
40361
|
-
type: "
|
|
40362
|
-
configuration: {
|
|
40363
|
-
text: {
|
|
40364
|
-
id: string;
|
|
40365
|
-
defaultMessage: string;
|
|
40366
|
-
description: string;
|
|
40367
|
-
};
|
|
40368
|
-
};
|
|
40339
|
+
type: "ALPHA_HIDDEN";
|
|
40369
40340
|
parent?: {
|
|
40370
40341
|
$$field: string;
|
|
40371
40342
|
$$subfield?: string[] | undefined;
|
|
@@ -40373,13 +40344,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40373
40344
|
$$field: string;
|
|
40374
40345
|
$$subfield?: string[] | undefined;
|
|
40375
40346
|
}[] | undefined;
|
|
40376
|
-
required?: boolean | {
|
|
40377
|
-
message: {
|
|
40378
|
-
id: string;
|
|
40379
|
-
defaultMessage: string;
|
|
40380
|
-
description: string;
|
|
40381
|
-
};
|
|
40382
|
-
} | undefined;
|
|
40383
40347
|
conditionals?: ({
|
|
40384
40348
|
type: "SHOW";
|
|
40385
40349
|
conditional: any;
|
|
@@ -40419,6 +40383,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40419
40383
|
$$subfield?: string[] | undefined;
|
|
40420
40384
|
}[] | undefined;
|
|
40421
40385
|
analytics?: boolean | undefined;
|
|
40386
|
+
required?: boolean | undefined;
|
|
40387
|
+
defaultValue?: string | undefined;
|
|
40422
40388
|
} | {
|
|
40423
40389
|
id: string;
|
|
40424
40390
|
label: {
|
|
@@ -40966,7 +40932,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
40966
40932
|
defaultMessage: string;
|
|
40967
40933
|
description: string;
|
|
40968
40934
|
} | undefined;
|
|
40969
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
40935
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
40970
40936
|
conditionals?: ({
|
|
40971
40937
|
type: "SHOW";
|
|
40972
40938
|
conditional: any;
|
|
@@ -43459,8 +43425,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
43459
43425
|
defaultMessage: string;
|
|
43460
43426
|
description: string;
|
|
43461
43427
|
};
|
|
43462
|
-
type: "
|
|
43463
|
-
|
|
43428
|
+
type: "LOADER";
|
|
43429
|
+
configuration: {
|
|
43430
|
+
text: {
|
|
43431
|
+
id: string;
|
|
43432
|
+
defaultMessage: string;
|
|
43433
|
+
description: string;
|
|
43434
|
+
};
|
|
43435
|
+
};
|
|
43464
43436
|
parent?: {
|
|
43465
43437
|
$$field: string;
|
|
43466
43438
|
$$subfield?: string[] | undefined;
|
|
@@ -43514,8 +43486,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
43514
43486
|
$$subfield?: string[] | undefined;
|
|
43515
43487
|
}[] | undefined;
|
|
43516
43488
|
analytics?: boolean | undefined;
|
|
43517
|
-
defaultValue?: unknown;
|
|
43518
|
-
configuration?: unknown;
|
|
43519
43489
|
} | {
|
|
43520
43490
|
id: string;
|
|
43521
43491
|
label: {
|
|
@@ -43523,14 +43493,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
43523
43493
|
defaultMessage: string;
|
|
43524
43494
|
description: string;
|
|
43525
43495
|
};
|
|
43526
|
-
type: "
|
|
43527
|
-
configuration: {
|
|
43528
|
-
text: {
|
|
43529
|
-
id: string;
|
|
43530
|
-
defaultMessage: string;
|
|
43531
|
-
description: string;
|
|
43532
|
-
};
|
|
43533
|
-
};
|
|
43496
|
+
type: "ALPHA_HIDDEN";
|
|
43534
43497
|
parent?: {
|
|
43535
43498
|
$$field: string;
|
|
43536
43499
|
$$subfield?: string[] | undefined;
|
|
@@ -43538,13 +43501,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
43538
43501
|
$$field: string;
|
|
43539
43502
|
$$subfield?: string[] | undefined;
|
|
43540
43503
|
}[] | undefined;
|
|
43541
|
-
required?: boolean | {
|
|
43542
|
-
message: {
|
|
43543
|
-
id: string;
|
|
43544
|
-
defaultMessage: string;
|
|
43545
|
-
description: string;
|
|
43546
|
-
};
|
|
43547
|
-
} | undefined;
|
|
43548
43504
|
conditionals?: ({
|
|
43549
43505
|
type: "SHOW";
|
|
43550
43506
|
conditional: any;
|
|
@@ -43584,6 +43540,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
43584
43540
|
$$subfield?: string[] | undefined;
|
|
43585
43541
|
}[] | undefined;
|
|
43586
43542
|
analytics?: boolean | undefined;
|
|
43543
|
+
required?: boolean | undefined;
|
|
43544
|
+
defaultValue?: string | undefined;
|
|
43587
43545
|
} | {
|
|
43588
43546
|
id: string;
|
|
43589
43547
|
label: {
|
|
@@ -46558,8 +46516,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
46558
46516
|
defaultMessage: string;
|
|
46559
46517
|
description: string;
|
|
46560
46518
|
};
|
|
46561
|
-
type: "
|
|
46562
|
-
|
|
46519
|
+
type: "LOADER";
|
|
46520
|
+
configuration: {
|
|
46521
|
+
text: {
|
|
46522
|
+
id: string;
|
|
46523
|
+
defaultMessage: string;
|
|
46524
|
+
description: string;
|
|
46525
|
+
};
|
|
46526
|
+
};
|
|
46563
46527
|
parent?: {
|
|
46564
46528
|
$$field: string;
|
|
46565
46529
|
$$subfield?: string[] | undefined;
|
|
@@ -46613,8 +46577,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
46613
46577
|
$$subfield?: string[] | undefined;
|
|
46614
46578
|
}[] | undefined;
|
|
46615
46579
|
analytics?: boolean | undefined;
|
|
46616
|
-
defaultValue?: unknown;
|
|
46617
|
-
configuration?: unknown;
|
|
46618
46580
|
} | {
|
|
46619
46581
|
id: string;
|
|
46620
46582
|
label: {
|
|
@@ -46622,14 +46584,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
46622
46584
|
defaultMessage: string;
|
|
46623
46585
|
description: string;
|
|
46624
46586
|
};
|
|
46625
|
-
type: "
|
|
46626
|
-
configuration: {
|
|
46627
|
-
text: {
|
|
46628
|
-
id: string;
|
|
46629
|
-
defaultMessage: string;
|
|
46630
|
-
description: string;
|
|
46631
|
-
};
|
|
46632
|
-
};
|
|
46587
|
+
type: "ALPHA_HIDDEN";
|
|
46633
46588
|
parent?: {
|
|
46634
46589
|
$$field: string;
|
|
46635
46590
|
$$subfield?: string[] | undefined;
|
|
@@ -46637,13 +46592,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
46637
46592
|
$$field: string;
|
|
46638
46593
|
$$subfield?: string[] | undefined;
|
|
46639
46594
|
}[] | undefined;
|
|
46640
|
-
required?: boolean | {
|
|
46641
|
-
message: {
|
|
46642
|
-
id: string;
|
|
46643
|
-
defaultMessage: string;
|
|
46644
|
-
description: string;
|
|
46645
|
-
};
|
|
46646
|
-
} | undefined;
|
|
46647
46595
|
conditionals?: ({
|
|
46648
46596
|
type: "SHOW";
|
|
46649
46597
|
conditional: any;
|
|
@@ -46683,6 +46631,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
46683
46631
|
$$subfield?: string[] | undefined;
|
|
46684
46632
|
}[] | undefined;
|
|
46685
46633
|
analytics?: boolean | undefined;
|
|
46634
|
+
required?: boolean | undefined;
|
|
46635
|
+
defaultValue?: string | undefined;
|
|
46686
46636
|
} | {
|
|
46687
46637
|
id: string;
|
|
46688
46638
|
label: {
|
|
@@ -47230,7 +47180,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
47230
47180
|
defaultMessage: string;
|
|
47231
47181
|
description: string;
|
|
47232
47182
|
} | undefined;
|
|
47233
|
-
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
47183
|
+
icon?: "Validated" | "Registered" | "Certified" | "Archived" | "List" | "Assigned" | "Close" | "Collapse" | "Draft" | "DuplicateYellow" | "Expand" | "ExternalValidate" | "FilledCheck" | "InReview" | "Offline" | "RequiresUpdates" | "Sent" | "WaitingApproval" | "ChartActivity" | "Activity" | "Archive" | "ArchiveTray" | "ArrowLeft" | "ArrowRight" | "Buildings" | "Circle" | "CaretDown" | "CaretLeft" | "CaretRight" | "ChartBar" | "ChartLine" | "ChatCircle" | "CheckSquare" | "Compass" | "Check" | "Copy" | "Database" | "DotsThreeVertical" | "ArrowCounterClockwise" | "MagnifyingGlassMinus" | "MagnifyingGlassPlus" | "Export" | "Eye" | "EyeSlash" | "Envelope" | "File" | "FileSearch" | "FileMinus" | "FilePlus" | "FileText" | "FileX" | "Handshake" | "Gear" | "GitBranch" | "IdentificationCard" | "ListBullets" | "Lock" | "MagnifyingGlass" | "MapPin" | "Medal" | "NotePencil" | "Paperclip" | "PaperPlaneTilt" | "Pen" | "Pencil" | "PencilSimpleLine" | "Phone" | "Plus" | "Printer" | "SignOut" | "Stamp" | "Star" | "Target" | "TextT" | "Trash" | "UploadSimple" | "User" | "UserPlus" | "Users" | "WarningCircle" | "X" | "ChatText" | "CircleWavyCheck" | "CircleWavyQuestion" | "ArchiveBox" | "ArrowCircleDown" | "FileArrowUp" | "FileDotted" | "Files" | "PencilLine" | "PencilCircle" | "UserCircle" | "Clock" | "QrCode" | "Webcam" | "Sun" | "DeviceTabletCamera" | "Globe" | "Fingerprint" | "PushPin" | "Timer" | undefined;
|
|
47234
47184
|
conditionals?: ({
|
|
47235
47185
|
type: "SHOW";
|
|
47236
47186
|
conditional: any;
|
|
@@ -49712,8 +49662,14 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
49712
49662
|
defaultMessage: string;
|
|
49713
49663
|
description: string;
|
|
49714
49664
|
};
|
|
49715
|
-
type: "
|
|
49716
|
-
|
|
49665
|
+
type: "LOADER";
|
|
49666
|
+
configuration: {
|
|
49667
|
+
text: {
|
|
49668
|
+
id: string;
|
|
49669
|
+
defaultMessage: string;
|
|
49670
|
+
description: string;
|
|
49671
|
+
};
|
|
49672
|
+
};
|
|
49717
49673
|
parent?: {
|
|
49718
49674
|
$$field: string;
|
|
49719
49675
|
$$subfield?: string[] | undefined;
|
|
@@ -49767,8 +49723,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
49767
49723
|
$$subfield?: string[] | undefined;
|
|
49768
49724
|
}[] | undefined;
|
|
49769
49725
|
analytics?: boolean | undefined;
|
|
49770
|
-
defaultValue?: unknown;
|
|
49771
|
-
configuration?: unknown;
|
|
49772
49726
|
} | {
|
|
49773
49727
|
id: string;
|
|
49774
49728
|
label: {
|
|
@@ -49776,14 +49730,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
49776
49730
|
defaultMessage: string;
|
|
49777
49731
|
description: string;
|
|
49778
49732
|
};
|
|
49779
|
-
type: "
|
|
49780
|
-
configuration: {
|
|
49781
|
-
text: {
|
|
49782
|
-
id: string;
|
|
49783
|
-
defaultMessage: string;
|
|
49784
|
-
description: string;
|
|
49785
|
-
};
|
|
49786
|
-
};
|
|
49733
|
+
type: "ALPHA_HIDDEN";
|
|
49787
49734
|
parent?: {
|
|
49788
49735
|
$$field: string;
|
|
49789
49736
|
$$subfield?: string[] | undefined;
|
|
@@ -49791,13 +49738,6 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
49791
49738
|
$$field: string;
|
|
49792
49739
|
$$subfield?: string[] | undefined;
|
|
49793
49740
|
}[] | undefined;
|
|
49794
|
-
required?: boolean | {
|
|
49795
|
-
message: {
|
|
49796
|
-
id: string;
|
|
49797
|
-
defaultMessage: string;
|
|
49798
|
-
description: string;
|
|
49799
|
-
};
|
|
49800
|
-
} | undefined;
|
|
49801
49741
|
conditionals?: ({
|
|
49802
49742
|
type: "SHOW";
|
|
49803
49743
|
conditional: any;
|
|
@@ -49837,6 +49777,8 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
49837
49777
|
$$subfield?: string[] | undefined;
|
|
49838
49778
|
}[] | undefined;
|
|
49839
49779
|
analytics?: boolean | undefined;
|
|
49780
|
+
required?: boolean | undefined;
|
|
49781
|
+
defaultValue?: string | undefined;
|
|
49840
49782
|
} | {
|
|
49841
49783
|
id: string;
|
|
49842
49784
|
label: {
|
|
@@ -50359,7 +50301,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
50359
50301
|
};
|
|
50360
50302
|
fieldId: string;
|
|
50361
50303
|
fieldType: "field";
|
|
50362
|
-
type?: "
|
|
50304
|
+
type?: "NAME" | "PHONE" | "ID" | "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "EMAIL" | "DATE" | "AGE" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "TIME" | "PARAGRAPH" | "PAGE_HEADER" | "RADIO_GROUP" | "FILE" | "FILE_WITH_OPTIONS" | "BULLET_LIST" | "CHECKBOX" | "SELECT" | "COUNTRY" | "LOCATION" | "DIVIDER" | "ADMINISTRATIVE_AREA" | "FACILITY" | "OFFICE" | "SIGNATURE" | "DATA" | "BUTTON" | "SEARCH" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QUERY_PARAM_READER" | "QR_READER" | "ID_READER" | "LOADER" | "ALPHA_HIDDEN" | undefined;
|
|
50363
50305
|
label?: {
|
|
50364
50306
|
id: string;
|
|
50365
50307
|
defaultMessage: string;
|
|
@@ -50403,7 +50345,7 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
50403
50345
|
};
|
|
50404
50346
|
fieldId: "event.status" | "event.trackingId" | "event.updatedAt" | "event.legalStatuses.REGISTERED.acceptedAt" | "event.legalStatuses.REGISTERED.createdAtLocation" | "event.legalStatuses.REGISTERED.registrationNumber";
|
|
50405
50347
|
fieldType: "event";
|
|
50406
|
-
type?: "
|
|
50348
|
+
type?: "NAME" | "PHONE" | "ID" | "ADDRESS" | "TEXT" | "NUMBER" | "TEXTAREA" | "EMAIL" | "DATE" | "AGE" | "DATE_RANGE" | "SELECT_DATE_RANGE" | "TIME" | "PARAGRAPH" | "PAGE_HEADER" | "RADIO_GROUP" | "FILE" | "FILE_WITH_OPTIONS" | "BULLET_LIST" | "CHECKBOX" | "SELECT" | "COUNTRY" | "LOCATION" | "DIVIDER" | "ADMINISTRATIVE_AREA" | "FACILITY" | "OFFICE" | "SIGNATURE" | "DATA" | "BUTTON" | "SEARCH" | "ALPHA_PRINT_BUTTON" | "HTTP" | "LINK_BUTTON" | "VERIFICATION_STATUS" | "QUERY_PARAM_READER" | "QR_READER" | "ID_READER" | "LOADER" | "ALPHA_HIDDEN" | undefined;
|
|
50407
50349
|
label?: {
|
|
50408
50350
|
id: string;
|
|
50409
50351
|
defaultMessage: string;
|
|
@@ -50455,6 +50397,10 @@ export declare function getEventConfigById(eventConfigs: EventConfig[], id: stri
|
|
|
50455
50397
|
$$field: string;
|
|
50456
50398
|
$$subfield?: string[] | undefined;
|
|
50457
50399
|
} | undefined;
|
|
50400
|
+
placeOfEvent?: {
|
|
50401
|
+
$$field: string;
|
|
50402
|
+
$$subfield?: string[] | undefined;
|
|
50403
|
+
} | undefined;
|
|
50458
50404
|
fallbackTitle?: {
|
|
50459
50405
|
id: string;
|
|
50460
50406
|
defaultMessage: string;
|
|
@@ -50471,5 +50417,5 @@ export declare function getCompleteActionAnnotation(annotation: ActionUpdate, ev
|
|
|
50471
50417
|
export declare function getCompleteActionDeclaration<T extends EventState | ActionUpdate>(declaration: T, event: EventDocument, action: ActionDocument): T;
|
|
50472
50418
|
export declare function getAcceptedActions(event: EventDocument): ActionDocument[];
|
|
50473
50419
|
export declare function aggregateActionDeclarations(event: EventDocument): EventState;
|
|
50474
|
-
export declare function aggregateActionAnnotations(
|
|
50420
|
+
export declare function aggregateActionAnnotations(event: EventDocument): EventState;
|
|
50475
50421
|
//# sourceMappingURL=utils.d.ts.map
|