@socotra/ec-react-schemas 2.5.1-next.5 → 2.5.1-next.7
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/index.d.ts +823 -12
- package/dist/index.es.js +281 -254
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -28,6 +28,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
28
28
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
29
29
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
30
30
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
31
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
32
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
31
33
|
}, "strip", z.ZodTypeAny, {
|
|
32
34
|
options?: string[] | undefined;
|
|
33
35
|
type?: string | undefined;
|
|
@@ -44,6 +46,8 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
44
46
|
inherited?: boolean | undefined;
|
|
45
47
|
precision?: number | undefined;
|
|
46
48
|
readOnly?: boolean | undefined;
|
|
49
|
+
searchable?: boolean | undefined;
|
|
50
|
+
tag?: string[] | undefined;
|
|
47
51
|
}, {
|
|
48
52
|
options?: string[] | undefined;
|
|
49
53
|
type?: string | undefined;
|
|
@@ -60,7 +64,10 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
60
64
|
inherited?: boolean | undefined;
|
|
61
65
|
precision?: number | undefined;
|
|
62
66
|
readOnly?: boolean | undefined;
|
|
67
|
+
searchable?: boolean | undefined;
|
|
68
|
+
tag?: string[] | undefined;
|
|
63
69
|
}>>>;
|
|
70
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
64
71
|
}, "strip", z.ZodTypeAny, {
|
|
65
72
|
displayName?: string | undefined;
|
|
66
73
|
abstract?: boolean | undefined;
|
|
@@ -81,7 +88,10 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
81
88
|
inherited?: boolean | undefined;
|
|
82
89
|
precision?: number | undefined;
|
|
83
90
|
readOnly?: boolean | undefined;
|
|
91
|
+
searchable?: boolean | undefined;
|
|
92
|
+
tag?: string[] | undefined;
|
|
84
93
|
}> | undefined;
|
|
94
|
+
defaultSearchable?: boolean | undefined;
|
|
85
95
|
}, {
|
|
86
96
|
displayName?: string | undefined;
|
|
87
97
|
abstract?: boolean | undefined;
|
|
@@ -102,7 +112,10 @@ export declare const accountConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
102
112
|
inherited?: boolean | undefined;
|
|
103
113
|
precision?: number | undefined;
|
|
104
114
|
readOnly?: boolean | undefined;
|
|
115
|
+
searchable?: boolean | undefined;
|
|
116
|
+
tag?: string[] | undefined;
|
|
105
117
|
}> | undefined;
|
|
118
|
+
defaultSearchable?: boolean | undefined;
|
|
106
119
|
}>>;
|
|
107
120
|
|
|
108
121
|
export declare const accountConfigSchema: z.ZodObject<{
|
|
@@ -125,6 +138,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
125
138
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
126
139
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
127
140
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
141
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
142
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
128
143
|
}, "strip", z.ZodTypeAny, {
|
|
129
144
|
options?: string[] | undefined;
|
|
130
145
|
type?: string | undefined;
|
|
@@ -141,6 +156,8 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
141
156
|
inherited?: boolean | undefined;
|
|
142
157
|
precision?: number | undefined;
|
|
143
158
|
readOnly?: boolean | undefined;
|
|
159
|
+
searchable?: boolean | undefined;
|
|
160
|
+
tag?: string[] | undefined;
|
|
144
161
|
}, {
|
|
145
162
|
options?: string[] | undefined;
|
|
146
163
|
type?: string | undefined;
|
|
@@ -157,7 +174,10 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
157
174
|
inherited?: boolean | undefined;
|
|
158
175
|
precision?: number | undefined;
|
|
159
176
|
readOnly?: boolean | undefined;
|
|
177
|
+
searchable?: boolean | undefined;
|
|
178
|
+
tag?: string[] | undefined;
|
|
160
179
|
}>>>;
|
|
180
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
161
181
|
}, "strip", z.ZodTypeAny, {
|
|
162
182
|
displayName?: string | undefined;
|
|
163
183
|
abstract?: boolean | undefined;
|
|
@@ -178,7 +198,10 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
178
198
|
inherited?: boolean | undefined;
|
|
179
199
|
precision?: number | undefined;
|
|
180
200
|
readOnly?: boolean | undefined;
|
|
201
|
+
searchable?: boolean | undefined;
|
|
202
|
+
tag?: string[] | undefined;
|
|
181
203
|
}> | undefined;
|
|
204
|
+
defaultSearchable?: boolean | undefined;
|
|
182
205
|
}, {
|
|
183
206
|
displayName?: string | undefined;
|
|
184
207
|
abstract?: boolean | undefined;
|
|
@@ -199,7 +222,10 @@ export declare const accountConfigSchema: z.ZodObject<{
|
|
|
199
222
|
inherited?: boolean | undefined;
|
|
200
223
|
precision?: number | undefined;
|
|
201
224
|
readOnly?: boolean | undefined;
|
|
225
|
+
searchable?: boolean | undefined;
|
|
226
|
+
tag?: string[] | undefined;
|
|
202
227
|
}> | undefined;
|
|
228
|
+
defaultSearchable?: boolean | undefined;
|
|
203
229
|
}>;
|
|
204
230
|
|
|
205
231
|
export declare type AccountRequest = z.infer<typeof accountRequestSchema>;
|
|
@@ -474,6 +500,127 @@ export declare type BillingLevel = z.infer<typeof billingLevelEnumSchema>;
|
|
|
474
500
|
|
|
475
501
|
export declare const billingLevelEnumSchema: z.ZodEnum<["account", "inherit", "policy"]>;
|
|
476
502
|
|
|
503
|
+
export declare type Bootstrap = z.infer<typeof bootstrapSchema>;
|
|
504
|
+
|
|
505
|
+
export declare type BootstrapResourceGroup = z.infer<typeof bootstrapResourceGroupSchema>;
|
|
506
|
+
|
|
507
|
+
export declare const bootstrapResourceGroupSchema: z.ZodObject<{
|
|
508
|
+
selectionStartTime: z.ZodOptional<z.ZodString>;
|
|
509
|
+
resourceNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
510
|
+
}, "strip", z.ZodTypeAny, {
|
|
511
|
+
selectionStartTime?: string | undefined;
|
|
512
|
+
resourceNames?: string[] | undefined;
|
|
513
|
+
}, {
|
|
514
|
+
selectionStartTime?: string | undefined;
|
|
515
|
+
resourceNames?: string[] | undefined;
|
|
516
|
+
}>;
|
|
517
|
+
|
|
518
|
+
export declare type BootstrapResourceInstance = z.infer<typeof bootstrapResourceInstance>;
|
|
519
|
+
|
|
520
|
+
export declare const bootstrapResourceInstance: z.ZodObject<{
|
|
521
|
+
staticName: z.ZodOptional<z.ZodString>;
|
|
522
|
+
}, "strip", z.ZodTypeAny, {
|
|
523
|
+
staticName?: string | undefined;
|
|
524
|
+
}, {
|
|
525
|
+
staticName?: string | undefined;
|
|
526
|
+
}>;
|
|
527
|
+
|
|
528
|
+
export declare type BootstrapResources = z.infer<typeof bootstrapResourcesSchema>;
|
|
529
|
+
|
|
530
|
+
export declare const bootstrapResourcesSchema: z.ZodObject<{
|
|
531
|
+
resourceGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
532
|
+
selectionStartTime: z.ZodOptional<z.ZodString>;
|
|
533
|
+
resourceNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
534
|
+
}, "strip", z.ZodTypeAny, {
|
|
535
|
+
selectionStartTime?: string | undefined;
|
|
536
|
+
resourceNames?: string[] | undefined;
|
|
537
|
+
}, {
|
|
538
|
+
selectionStartTime?: string | undefined;
|
|
539
|
+
resourceNames?: string[] | undefined;
|
|
540
|
+
}>>>;
|
|
541
|
+
resourceInstances: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
542
|
+
staticName: z.ZodOptional<z.ZodString>;
|
|
543
|
+
}, "strip", z.ZodTypeAny, {
|
|
544
|
+
staticName?: string | undefined;
|
|
545
|
+
}, {
|
|
546
|
+
staticName?: string | undefined;
|
|
547
|
+
}>>>;
|
|
548
|
+
}, "strip", z.ZodTypeAny, {
|
|
549
|
+
resourceGroups?: Record<string, {
|
|
550
|
+
selectionStartTime?: string | undefined;
|
|
551
|
+
resourceNames?: string[] | undefined;
|
|
552
|
+
}> | undefined;
|
|
553
|
+
resourceInstances?: Record<string, {
|
|
554
|
+
staticName?: string | undefined;
|
|
555
|
+
}> | undefined;
|
|
556
|
+
}, {
|
|
557
|
+
resourceGroups?: Record<string, {
|
|
558
|
+
selectionStartTime?: string | undefined;
|
|
559
|
+
resourceNames?: string[] | undefined;
|
|
560
|
+
}> | undefined;
|
|
561
|
+
resourceInstances?: Record<string, {
|
|
562
|
+
staticName?: string | undefined;
|
|
563
|
+
}> | undefined;
|
|
564
|
+
}>;
|
|
565
|
+
|
|
566
|
+
export declare const bootstrapSchema: z.ZodObject<{
|
|
567
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
568
|
+
resourceGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
569
|
+
selectionStartTime: z.ZodOptional<z.ZodString>;
|
|
570
|
+
resourceNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
571
|
+
}, "strip", z.ZodTypeAny, {
|
|
572
|
+
selectionStartTime?: string | undefined;
|
|
573
|
+
resourceNames?: string[] | undefined;
|
|
574
|
+
}, {
|
|
575
|
+
selectionStartTime?: string | undefined;
|
|
576
|
+
resourceNames?: string[] | undefined;
|
|
577
|
+
}>>>;
|
|
578
|
+
resourceInstances: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
579
|
+
staticName: z.ZodOptional<z.ZodString>;
|
|
580
|
+
}, "strip", z.ZodTypeAny, {
|
|
581
|
+
staticName?: string | undefined;
|
|
582
|
+
}, {
|
|
583
|
+
staticName?: string | undefined;
|
|
584
|
+
}>>>;
|
|
585
|
+
}, "strip", z.ZodTypeAny, {
|
|
586
|
+
resourceGroups?: Record<string, {
|
|
587
|
+
selectionStartTime?: string | undefined;
|
|
588
|
+
resourceNames?: string[] | undefined;
|
|
589
|
+
}> | undefined;
|
|
590
|
+
resourceInstances?: Record<string, {
|
|
591
|
+
staticName?: string | undefined;
|
|
592
|
+
}> | undefined;
|
|
593
|
+
}, {
|
|
594
|
+
resourceGroups?: Record<string, {
|
|
595
|
+
selectionStartTime?: string | undefined;
|
|
596
|
+
resourceNames?: string[] | undefined;
|
|
597
|
+
}> | undefined;
|
|
598
|
+
resourceInstances?: Record<string, {
|
|
599
|
+
staticName?: string | undefined;
|
|
600
|
+
}> | undefined;
|
|
601
|
+
}>>;
|
|
602
|
+
}, "strip", z.ZodTypeAny, {
|
|
603
|
+
resources?: {
|
|
604
|
+
resourceGroups?: Record<string, {
|
|
605
|
+
selectionStartTime?: string | undefined;
|
|
606
|
+
resourceNames?: string[] | undefined;
|
|
607
|
+
}> | undefined;
|
|
608
|
+
resourceInstances?: Record<string, {
|
|
609
|
+
staticName?: string | undefined;
|
|
610
|
+
}> | undefined;
|
|
611
|
+
} | undefined;
|
|
612
|
+
}, {
|
|
613
|
+
resources?: {
|
|
614
|
+
resourceGroups?: Record<string, {
|
|
615
|
+
selectionStartTime?: string | undefined;
|
|
616
|
+
resourceNames?: string[] | undefined;
|
|
617
|
+
}> | undefined;
|
|
618
|
+
resourceInstances?: Record<string, {
|
|
619
|
+
staticName?: string | undefined;
|
|
620
|
+
}> | undefined;
|
|
621
|
+
} | undefined;
|
|
622
|
+
}>;
|
|
623
|
+
|
|
477
624
|
export declare type Cadence = z.infer<typeof cadenceEnumSchema>;
|
|
478
625
|
|
|
479
626
|
export declare const cadenceEnumSchema: z.ZodEnum<["none", "fullPay", "weekly", "everyOtherWeek", "monthly", "quarterly", "semiannually", "annually", "thirtyDays", "everyNDays"]>;
|
|
@@ -636,6 +783,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
636
783
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
637
784
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
638
785
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
786
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
787
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
639
788
|
}, "strip", z.ZodTypeAny, {
|
|
640
789
|
options?: string[] | undefined;
|
|
641
790
|
type?: string | undefined;
|
|
@@ -652,6 +801,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
652
801
|
inherited?: boolean | undefined;
|
|
653
802
|
precision?: number | undefined;
|
|
654
803
|
readOnly?: boolean | undefined;
|
|
804
|
+
searchable?: boolean | undefined;
|
|
805
|
+
tag?: string[] | undefined;
|
|
655
806
|
}, {
|
|
656
807
|
options?: string[] | undefined;
|
|
657
808
|
type?: string | undefined;
|
|
@@ -668,8 +819,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
668
819
|
inherited?: boolean | undefined;
|
|
669
820
|
precision?: number | undefined;
|
|
670
821
|
readOnly?: boolean | undefined;
|
|
822
|
+
searchable?: boolean | undefined;
|
|
823
|
+
tag?: string[] | undefined;
|
|
671
824
|
}>>>;
|
|
672
825
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
826
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
673
827
|
}, "strip", z.ZodTypeAny, {
|
|
674
828
|
displayName?: string | undefined;
|
|
675
829
|
abstract?: boolean | undefined;
|
|
@@ -690,7 +844,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
690
844
|
inherited?: boolean | undefined;
|
|
691
845
|
precision?: number | undefined;
|
|
692
846
|
readOnly?: boolean | undefined;
|
|
847
|
+
searchable?: boolean | undefined;
|
|
848
|
+
tag?: string[] | undefined;
|
|
693
849
|
}> | undefined;
|
|
850
|
+
defaultSearchable?: boolean | undefined;
|
|
694
851
|
contents?: string[] | undefined;
|
|
695
852
|
coverageTerms?: string[] | undefined;
|
|
696
853
|
charges?: string[] | undefined;
|
|
@@ -714,7 +871,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
714
871
|
inherited?: boolean | undefined;
|
|
715
872
|
precision?: number | undefined;
|
|
716
873
|
readOnly?: boolean | undefined;
|
|
874
|
+
searchable?: boolean | undefined;
|
|
875
|
+
tag?: string[] | undefined;
|
|
717
876
|
}> | undefined;
|
|
877
|
+
defaultSearchable?: boolean | undefined;
|
|
718
878
|
contents?: string[] | undefined;
|
|
719
879
|
coverageTerms?: string[] | undefined;
|
|
720
880
|
charges?: string[] | undefined;
|
|
@@ -739,6 +899,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
739
899
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
740
900
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
741
901
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
902
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
903
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
742
904
|
}, "strip", z.ZodTypeAny, {
|
|
743
905
|
options?: string[] | undefined;
|
|
744
906
|
type?: string | undefined;
|
|
@@ -755,6 +917,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
755
917
|
inherited?: boolean | undefined;
|
|
756
918
|
precision?: number | undefined;
|
|
757
919
|
readOnly?: boolean | undefined;
|
|
920
|
+
searchable?: boolean | undefined;
|
|
921
|
+
tag?: string[] | undefined;
|
|
758
922
|
}, {
|
|
759
923
|
options?: string[] | undefined;
|
|
760
924
|
type?: string | undefined;
|
|
@@ -771,7 +935,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
771
935
|
inherited?: boolean | undefined;
|
|
772
936
|
precision?: number | undefined;
|
|
773
937
|
readOnly?: boolean | undefined;
|
|
938
|
+
searchable?: boolean | undefined;
|
|
939
|
+
tag?: string[] | undefined;
|
|
774
940
|
}>>>;
|
|
941
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
775
942
|
}, "strip", z.ZodTypeAny, {
|
|
776
943
|
displayName?: string | undefined;
|
|
777
944
|
abstract?: boolean | undefined;
|
|
@@ -792,7 +959,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
792
959
|
inherited?: boolean | undefined;
|
|
793
960
|
precision?: number | undefined;
|
|
794
961
|
readOnly?: boolean | undefined;
|
|
962
|
+
searchable?: boolean | undefined;
|
|
963
|
+
tag?: string[] | undefined;
|
|
795
964
|
}> | undefined;
|
|
965
|
+
defaultSearchable?: boolean | undefined;
|
|
796
966
|
}, {
|
|
797
967
|
displayName?: string | undefined;
|
|
798
968
|
abstract?: boolean | undefined;
|
|
@@ -813,7 +983,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
813
983
|
inherited?: boolean | undefined;
|
|
814
984
|
precision?: number | undefined;
|
|
815
985
|
readOnly?: boolean | undefined;
|
|
986
|
+
searchable?: boolean | undefined;
|
|
987
|
+
tag?: string[] | undefined;
|
|
816
988
|
}> | undefined;
|
|
989
|
+
defaultSearchable?: boolean | undefined;
|
|
817
990
|
}>>;
|
|
818
991
|
products: z.ZodRecord<z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
|
|
819
992
|
abstract: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -842,6 +1015,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
842
1015
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
843
1016
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
844
1017
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1018
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1019
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
845
1020
|
}, "strip", z.ZodTypeAny, {
|
|
846
1021
|
options?: string[] | undefined;
|
|
847
1022
|
type?: string | undefined;
|
|
@@ -858,6 +1033,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
858
1033
|
inherited?: boolean | undefined;
|
|
859
1034
|
precision?: number | undefined;
|
|
860
1035
|
readOnly?: boolean | undefined;
|
|
1036
|
+
searchable?: boolean | undefined;
|
|
1037
|
+
tag?: string[] | undefined;
|
|
861
1038
|
}, {
|
|
862
1039
|
options?: string[] | undefined;
|
|
863
1040
|
type?: string | undefined;
|
|
@@ -874,7 +1051,65 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
874
1051
|
inherited?: boolean | undefined;
|
|
875
1052
|
precision?: number | undefined;
|
|
876
1053
|
readOnly?: boolean | undefined;
|
|
1054
|
+
searchable?: boolean | undefined;
|
|
1055
|
+
tag?: string[] | undefined;
|
|
877
1056
|
}>>>;
|
|
1057
|
+
staticData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1058
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1060
|
+
type: z.ZodOptional<z.ZodString>;
|
|
1061
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
1062
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
1063
|
+
regex: z.ZodOptional<z.ZodString>;
|
|
1064
|
+
min: z.ZodOptional<z.ZodString>;
|
|
1065
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1066
|
+
max: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1068
|
+
overrides: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
1071
|
+
precision: z.ZodOptional<z.ZodNumber>;
|
|
1072
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1073
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1074
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1075
|
+
}, "strip", z.ZodTypeAny, {
|
|
1076
|
+
options?: string[] | undefined;
|
|
1077
|
+
type?: string | undefined;
|
|
1078
|
+
displayName?: string | undefined;
|
|
1079
|
+
defaultValue?: string | undefined;
|
|
1080
|
+
minLength?: number | undefined;
|
|
1081
|
+
maxLength?: number | undefined;
|
|
1082
|
+
regex?: string | undefined;
|
|
1083
|
+
min?: string | undefined;
|
|
1084
|
+
multiline?: boolean | undefined;
|
|
1085
|
+
max?: string | undefined;
|
|
1086
|
+
overrides?: string | undefined;
|
|
1087
|
+
scope?: string | undefined;
|
|
1088
|
+
inherited?: boolean | undefined;
|
|
1089
|
+
precision?: number | undefined;
|
|
1090
|
+
readOnly?: boolean | undefined;
|
|
1091
|
+
searchable?: boolean | undefined;
|
|
1092
|
+
tag?: string[] | undefined;
|
|
1093
|
+
}, {
|
|
1094
|
+
options?: string[] | undefined;
|
|
1095
|
+
type?: string | undefined;
|
|
1096
|
+
displayName?: string | undefined;
|
|
1097
|
+
defaultValue?: string | undefined;
|
|
1098
|
+
minLength?: number | undefined;
|
|
1099
|
+
maxLength?: number | undefined;
|
|
1100
|
+
regex?: string | undefined;
|
|
1101
|
+
min?: string | undefined;
|
|
1102
|
+
multiline?: boolean | undefined;
|
|
1103
|
+
max?: string | undefined;
|
|
1104
|
+
overrides?: string | undefined;
|
|
1105
|
+
scope?: string | undefined;
|
|
1106
|
+
inherited?: boolean | undefined;
|
|
1107
|
+
precision?: number | undefined;
|
|
1108
|
+
readOnly?: boolean | undefined;
|
|
1109
|
+
searchable?: boolean | undefined;
|
|
1110
|
+
tag?: string[] | undefined;
|
|
1111
|
+
}>>>;
|
|
1112
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
878
1113
|
}, {
|
|
879
1114
|
defaultTimeZone: z.ZodOptional<z.ZodString>;
|
|
880
1115
|
defaultCurrency: z.ZodOptional<z.ZodString>;
|
|
@@ -907,7 +1142,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
907
1142
|
inherited?: boolean | undefined;
|
|
908
1143
|
precision?: number | undefined;
|
|
909
1144
|
readOnly?: boolean | undefined;
|
|
1145
|
+
searchable?: boolean | undefined;
|
|
1146
|
+
tag?: string[] | undefined;
|
|
910
1147
|
}> | undefined;
|
|
1148
|
+
defaultSearchable?: boolean | undefined;
|
|
911
1149
|
contents?: string[] | undefined;
|
|
912
1150
|
coverageTerms?: string[] | undefined;
|
|
913
1151
|
charges?: string[] | undefined;
|
|
@@ -926,6 +1164,25 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
926
1164
|
documents?: string[] | undefined;
|
|
927
1165
|
plugins?: any;
|
|
928
1166
|
tables?: any;
|
|
1167
|
+
staticData?: Record<string, {
|
|
1168
|
+
options?: string[] | undefined;
|
|
1169
|
+
type?: string | undefined;
|
|
1170
|
+
displayName?: string | undefined;
|
|
1171
|
+
defaultValue?: string | undefined;
|
|
1172
|
+
minLength?: number | undefined;
|
|
1173
|
+
maxLength?: number | undefined;
|
|
1174
|
+
regex?: string | undefined;
|
|
1175
|
+
min?: string | undefined;
|
|
1176
|
+
multiline?: boolean | undefined;
|
|
1177
|
+
max?: string | undefined;
|
|
1178
|
+
overrides?: string | undefined;
|
|
1179
|
+
scope?: string | undefined;
|
|
1180
|
+
inherited?: boolean | undefined;
|
|
1181
|
+
precision?: number | undefined;
|
|
1182
|
+
readOnly?: boolean | undefined;
|
|
1183
|
+
searchable?: boolean | undefined;
|
|
1184
|
+
tag?: string[] | undefined;
|
|
1185
|
+
}> | undefined;
|
|
929
1186
|
}, {
|
|
930
1187
|
displayName?: string | undefined;
|
|
931
1188
|
abstract?: boolean | undefined;
|
|
@@ -946,7 +1203,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
946
1203
|
inherited?: boolean | undefined;
|
|
947
1204
|
precision?: number | undefined;
|
|
948
1205
|
readOnly?: boolean | undefined;
|
|
1206
|
+
searchable?: boolean | undefined;
|
|
1207
|
+
tag?: string[] | undefined;
|
|
949
1208
|
}> | undefined;
|
|
1209
|
+
defaultSearchable?: boolean | undefined;
|
|
950
1210
|
contents?: string[] | undefined;
|
|
951
1211
|
coverageTerms?: string[] | undefined;
|
|
952
1212
|
charges?: string[] | undefined;
|
|
@@ -965,6 +1225,25 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
965
1225
|
documents?: string[] | undefined;
|
|
966
1226
|
plugins?: any;
|
|
967
1227
|
tables?: any;
|
|
1228
|
+
staticData?: Record<string, {
|
|
1229
|
+
options?: string[] | undefined;
|
|
1230
|
+
type?: string | undefined;
|
|
1231
|
+
displayName?: string | undefined;
|
|
1232
|
+
defaultValue?: string | undefined;
|
|
1233
|
+
minLength?: number | undefined;
|
|
1234
|
+
maxLength?: number | undefined;
|
|
1235
|
+
regex?: string | undefined;
|
|
1236
|
+
min?: string | undefined;
|
|
1237
|
+
multiline?: boolean | undefined;
|
|
1238
|
+
max?: string | undefined;
|
|
1239
|
+
overrides?: string | undefined;
|
|
1240
|
+
scope?: string | undefined;
|
|
1241
|
+
inherited?: boolean | undefined;
|
|
1242
|
+
precision?: number | undefined;
|
|
1243
|
+
readOnly?: boolean | undefined;
|
|
1244
|
+
searchable?: boolean | undefined;
|
|
1245
|
+
tag?: string[] | undefined;
|
|
1246
|
+
}> | undefined;
|
|
968
1247
|
}>>;
|
|
969
1248
|
coverageTerms: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
970
1249
|
type: z.ZodString;
|
|
@@ -1005,18 +1284,21 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1005
1284
|
advanceLapseTo: z.ZodOptional<z.ZodEnum<["draft", "validated", "priced", "underwritten", "accepted", "issued"]>>;
|
|
1006
1285
|
delinquencyLevel: z.ZodOptional<z.ZodEnum<["policy", "invoice"]>>;
|
|
1007
1286
|
lapseTransactionType: z.ZodOptional<z.ZodString>;
|
|
1287
|
+
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1008
1288
|
}, "strip", z.ZodTypeAny, {
|
|
1009
1289
|
gracePeriodDays: number;
|
|
1010
1290
|
displayName?: string | undefined;
|
|
1011
1291
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
1012
1292
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
1013
1293
|
lapseTransactionType?: string | undefined;
|
|
1294
|
+
events?: Record<string, any> | undefined;
|
|
1014
1295
|
}, {
|
|
1015
1296
|
gracePeriodDays: number;
|
|
1016
1297
|
displayName?: string | undefined;
|
|
1017
1298
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
1018
1299
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
1019
1300
|
lapseTransactionType?: string | undefined;
|
|
1301
|
+
events?: Record<string, any> | undefined;
|
|
1020
1302
|
}>>;
|
|
1021
1303
|
autoRenewalPlans: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1022
1304
|
generateAutoRenewals: z.ZodBoolean;
|
|
@@ -1050,6 +1332,71 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1050
1332
|
category: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
|
|
1051
1333
|
costBearing: boolean;
|
|
1052
1334
|
}>>;
|
|
1335
|
+
reversalTypes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1336
|
+
creditType: z.ZodOptional<z.ZodEnum<["any", "creditDistribution", "payment"]>>;
|
|
1337
|
+
}, "strip", z.ZodTypeAny, {
|
|
1338
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
1339
|
+
}, {
|
|
1340
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
1341
|
+
}>>>;
|
|
1342
|
+
dataAccessControl: z.ZodOptional<z.ZodAny>;
|
|
1343
|
+
bootstrap: z.ZodOptional<z.ZodObject<{
|
|
1344
|
+
resources: z.ZodOptional<z.ZodObject<{
|
|
1345
|
+
resourceGroups: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1346
|
+
selectionStartTime: z.ZodOptional<z.ZodString>;
|
|
1347
|
+
resourceNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1348
|
+
}, "strip", z.ZodTypeAny, {
|
|
1349
|
+
selectionStartTime?: string | undefined;
|
|
1350
|
+
resourceNames?: string[] | undefined;
|
|
1351
|
+
}, {
|
|
1352
|
+
selectionStartTime?: string | undefined;
|
|
1353
|
+
resourceNames?: string[] | undefined;
|
|
1354
|
+
}>>>;
|
|
1355
|
+
resourceInstances: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1356
|
+
staticName: z.ZodOptional<z.ZodString>;
|
|
1357
|
+
}, "strip", z.ZodTypeAny, {
|
|
1358
|
+
staticName?: string | undefined;
|
|
1359
|
+
}, {
|
|
1360
|
+
staticName?: string | undefined;
|
|
1361
|
+
}>>>;
|
|
1362
|
+
}, "strip", z.ZodTypeAny, {
|
|
1363
|
+
resourceGroups?: Record<string, {
|
|
1364
|
+
selectionStartTime?: string | undefined;
|
|
1365
|
+
resourceNames?: string[] | undefined;
|
|
1366
|
+
}> | undefined;
|
|
1367
|
+
resourceInstances?: Record<string, {
|
|
1368
|
+
staticName?: string | undefined;
|
|
1369
|
+
}> | undefined;
|
|
1370
|
+
}, {
|
|
1371
|
+
resourceGroups?: Record<string, {
|
|
1372
|
+
selectionStartTime?: string | undefined;
|
|
1373
|
+
resourceNames?: string[] | undefined;
|
|
1374
|
+
}> | undefined;
|
|
1375
|
+
resourceInstances?: Record<string, {
|
|
1376
|
+
staticName?: string | undefined;
|
|
1377
|
+
}> | undefined;
|
|
1378
|
+
}>>;
|
|
1379
|
+
}, "strip", z.ZodTypeAny, {
|
|
1380
|
+
resources?: {
|
|
1381
|
+
resourceGroups?: Record<string, {
|
|
1382
|
+
selectionStartTime?: string | undefined;
|
|
1383
|
+
resourceNames?: string[] | undefined;
|
|
1384
|
+
}> | undefined;
|
|
1385
|
+
resourceInstances?: Record<string, {
|
|
1386
|
+
staticName?: string | undefined;
|
|
1387
|
+
}> | undefined;
|
|
1388
|
+
} | undefined;
|
|
1389
|
+
}, {
|
|
1390
|
+
resources?: {
|
|
1391
|
+
resourceGroups?: Record<string, {
|
|
1392
|
+
selectionStartTime?: string | undefined;
|
|
1393
|
+
resourceNames?: string[] | undefined;
|
|
1394
|
+
}> | undefined;
|
|
1395
|
+
resourceInstances?: Record<string, {
|
|
1396
|
+
staticName?: string | undefined;
|
|
1397
|
+
}> | undefined;
|
|
1398
|
+
} | undefined;
|
|
1399
|
+
}>>;
|
|
1053
1400
|
policyLines: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1054
1401
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1055
1402
|
contents: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1072,6 +1419,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1072
1419
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
1073
1420
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
1074
1421
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1422
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1423
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1075
1424
|
}, "strip", z.ZodTypeAny, {
|
|
1076
1425
|
options?: string[] | undefined;
|
|
1077
1426
|
type?: string | undefined;
|
|
@@ -1088,6 +1437,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1088
1437
|
inherited?: boolean | undefined;
|
|
1089
1438
|
precision?: number | undefined;
|
|
1090
1439
|
readOnly?: boolean | undefined;
|
|
1440
|
+
searchable?: boolean | undefined;
|
|
1441
|
+
tag?: string[] | undefined;
|
|
1091
1442
|
}, {
|
|
1092
1443
|
options?: string[] | undefined;
|
|
1093
1444
|
type?: string | undefined;
|
|
@@ -1104,8 +1455,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1104
1455
|
inherited?: boolean | undefined;
|
|
1105
1456
|
precision?: number | undefined;
|
|
1106
1457
|
readOnly?: boolean | undefined;
|
|
1458
|
+
searchable?: boolean | undefined;
|
|
1459
|
+
tag?: string[] | undefined;
|
|
1107
1460
|
}>>>;
|
|
1108
1461
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1462
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
1109
1463
|
}, "strip", z.ZodTypeAny, {
|
|
1110
1464
|
displayName?: string | undefined;
|
|
1111
1465
|
abstract?: boolean | undefined;
|
|
@@ -1126,7 +1480,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1126
1480
|
inherited?: boolean | undefined;
|
|
1127
1481
|
precision?: number | undefined;
|
|
1128
1482
|
readOnly?: boolean | undefined;
|
|
1483
|
+
searchable?: boolean | undefined;
|
|
1484
|
+
tag?: string[] | undefined;
|
|
1129
1485
|
}> | undefined;
|
|
1486
|
+
defaultSearchable?: boolean | undefined;
|
|
1130
1487
|
contents?: string[] | undefined;
|
|
1131
1488
|
coverageTerms?: string[] | undefined;
|
|
1132
1489
|
charges?: string[] | undefined;
|
|
@@ -1150,7 +1507,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1150
1507
|
inherited?: boolean | undefined;
|
|
1151
1508
|
precision?: number | undefined;
|
|
1152
1509
|
readOnly?: boolean | undefined;
|
|
1510
|
+
searchable?: boolean | undefined;
|
|
1511
|
+
tag?: string[] | undefined;
|
|
1153
1512
|
}> | undefined;
|
|
1513
|
+
defaultSearchable?: boolean | undefined;
|
|
1154
1514
|
contents?: string[] | undefined;
|
|
1155
1515
|
coverageTerms?: string[] | undefined;
|
|
1156
1516
|
charges?: string[] | undefined;
|
|
@@ -1177,6 +1537,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1177
1537
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
1178
1538
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
1179
1539
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1540
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1541
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1180
1542
|
}, "strip", z.ZodTypeAny, {
|
|
1181
1543
|
options?: string[] | undefined;
|
|
1182
1544
|
type?: string | undefined;
|
|
@@ -1193,6 +1555,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1193
1555
|
inherited?: boolean | undefined;
|
|
1194
1556
|
precision?: number | undefined;
|
|
1195
1557
|
readOnly?: boolean | undefined;
|
|
1558
|
+
searchable?: boolean | undefined;
|
|
1559
|
+
tag?: string[] | undefined;
|
|
1196
1560
|
}, {
|
|
1197
1561
|
options?: string[] | undefined;
|
|
1198
1562
|
type?: string | undefined;
|
|
@@ -1209,8 +1573,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1209
1573
|
inherited?: boolean | undefined;
|
|
1210
1574
|
precision?: number | undefined;
|
|
1211
1575
|
readOnly?: boolean | undefined;
|
|
1576
|
+
searchable?: boolean | undefined;
|
|
1577
|
+
tag?: string[] | undefined;
|
|
1212
1578
|
}>>>;
|
|
1213
1579
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1580
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
1214
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1215
1582
|
displayName?: string | undefined;
|
|
1216
1583
|
abstract?: boolean | undefined;
|
|
@@ -1231,7 +1598,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1231
1598
|
inherited?: boolean | undefined;
|
|
1232
1599
|
precision?: number | undefined;
|
|
1233
1600
|
readOnly?: boolean | undefined;
|
|
1601
|
+
searchable?: boolean | undefined;
|
|
1602
|
+
tag?: string[] | undefined;
|
|
1234
1603
|
}> | undefined;
|
|
1604
|
+
defaultSearchable?: boolean | undefined;
|
|
1235
1605
|
contents?: string[] | undefined;
|
|
1236
1606
|
coverageTerms?: string[] | undefined;
|
|
1237
1607
|
charges?: string[] | undefined;
|
|
@@ -1255,7 +1625,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1255
1625
|
inherited?: boolean | undefined;
|
|
1256
1626
|
precision?: number | undefined;
|
|
1257
1627
|
readOnly?: boolean | undefined;
|
|
1628
|
+
searchable?: boolean | undefined;
|
|
1629
|
+
tag?: string[] | undefined;
|
|
1258
1630
|
}> | undefined;
|
|
1631
|
+
defaultSearchable?: boolean | undefined;
|
|
1259
1632
|
contents?: string[] | undefined;
|
|
1260
1633
|
coverageTerms?: string[] | undefined;
|
|
1261
1634
|
charges?: string[] | undefined;
|
|
@@ -1282,6 +1655,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1282
1655
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
1283
1656
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
1284
1657
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1658
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1659
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1285
1660
|
}, "strip", z.ZodTypeAny, {
|
|
1286
1661
|
options?: string[] | undefined;
|
|
1287
1662
|
type?: string | undefined;
|
|
@@ -1298,6 +1673,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1298
1673
|
inherited?: boolean | undefined;
|
|
1299
1674
|
precision?: number | undefined;
|
|
1300
1675
|
readOnly?: boolean | undefined;
|
|
1676
|
+
searchable?: boolean | undefined;
|
|
1677
|
+
tag?: string[] | undefined;
|
|
1301
1678
|
}, {
|
|
1302
1679
|
options?: string[] | undefined;
|
|
1303
1680
|
type?: string | undefined;
|
|
@@ -1314,8 +1691,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1314
1691
|
inherited?: boolean | undefined;
|
|
1315
1692
|
precision?: number | undefined;
|
|
1316
1693
|
readOnly?: boolean | undefined;
|
|
1694
|
+
searchable?: boolean | undefined;
|
|
1695
|
+
tag?: string[] | undefined;
|
|
1317
1696
|
}>>>;
|
|
1318
1697
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1698
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
1319
1699
|
}, "strip", z.ZodTypeAny, {
|
|
1320
1700
|
displayName?: string | undefined;
|
|
1321
1701
|
abstract?: boolean | undefined;
|
|
@@ -1336,7 +1716,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1336
1716
|
inherited?: boolean | undefined;
|
|
1337
1717
|
precision?: number | undefined;
|
|
1338
1718
|
readOnly?: boolean | undefined;
|
|
1719
|
+
searchable?: boolean | undefined;
|
|
1720
|
+
tag?: string[] | undefined;
|
|
1339
1721
|
}> | undefined;
|
|
1722
|
+
defaultSearchable?: boolean | undefined;
|
|
1340
1723
|
contents?: string[] | undefined;
|
|
1341
1724
|
coverageTerms?: string[] | undefined;
|
|
1342
1725
|
charges?: string[] | undefined;
|
|
@@ -1360,7 +1743,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1360
1743
|
inherited?: boolean | undefined;
|
|
1361
1744
|
precision?: number | undefined;
|
|
1362
1745
|
readOnly?: boolean | undefined;
|
|
1746
|
+
searchable?: boolean | undefined;
|
|
1747
|
+
tag?: string[] | undefined;
|
|
1363
1748
|
}> | undefined;
|
|
1749
|
+
defaultSearchable?: boolean | undefined;
|
|
1364
1750
|
contents?: string[] | undefined;
|
|
1365
1751
|
coverageTerms?: string[] | undefined;
|
|
1366
1752
|
charges?: string[] | undefined;
|
|
@@ -1387,6 +1773,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1387
1773
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
1388
1774
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
1389
1775
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1776
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
1777
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1390
1778
|
}, "strip", z.ZodTypeAny, {
|
|
1391
1779
|
options?: string[] | undefined;
|
|
1392
1780
|
type?: string | undefined;
|
|
@@ -1403,6 +1791,8 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1403
1791
|
inherited?: boolean | undefined;
|
|
1404
1792
|
precision?: number | undefined;
|
|
1405
1793
|
readOnly?: boolean | undefined;
|
|
1794
|
+
searchable?: boolean | undefined;
|
|
1795
|
+
tag?: string[] | undefined;
|
|
1406
1796
|
}, {
|
|
1407
1797
|
options?: string[] | undefined;
|
|
1408
1798
|
type?: string | undefined;
|
|
@@ -1419,8 +1809,11 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1419
1809
|
inherited?: boolean | undefined;
|
|
1420
1810
|
precision?: number | undefined;
|
|
1421
1811
|
readOnly?: boolean | undefined;
|
|
1812
|
+
searchable?: boolean | undefined;
|
|
1813
|
+
tag?: string[] | undefined;
|
|
1422
1814
|
}>>>;
|
|
1423
1815
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1816
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
1424
1817
|
}, "strip", z.ZodTypeAny, {
|
|
1425
1818
|
displayName?: string | undefined;
|
|
1426
1819
|
abstract?: boolean | undefined;
|
|
@@ -1441,7 +1834,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1441
1834
|
inherited?: boolean | undefined;
|
|
1442
1835
|
precision?: number | undefined;
|
|
1443
1836
|
readOnly?: boolean | undefined;
|
|
1837
|
+
searchable?: boolean | undefined;
|
|
1838
|
+
tag?: string[] | undefined;
|
|
1444
1839
|
}> | undefined;
|
|
1840
|
+
defaultSearchable?: boolean | undefined;
|
|
1445
1841
|
contents?: string[] | undefined;
|
|
1446
1842
|
coverageTerms?: string[] | undefined;
|
|
1447
1843
|
charges?: string[] | undefined;
|
|
@@ -1465,7 +1861,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1465
1861
|
inherited?: boolean | undefined;
|
|
1466
1862
|
precision?: number | undefined;
|
|
1467
1863
|
readOnly?: boolean | undefined;
|
|
1864
|
+
searchable?: boolean | undefined;
|
|
1865
|
+
tag?: string[] | undefined;
|
|
1468
1866
|
}> | undefined;
|
|
1867
|
+
defaultSearchable?: boolean | undefined;
|
|
1469
1868
|
contents?: string[] | undefined;
|
|
1470
1869
|
coverageTerms?: string[] | undefined;
|
|
1471
1870
|
charges?: string[] | undefined;
|
|
@@ -1479,11 +1878,12 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1479
1878
|
defaultBackdatedInstallmentsBilling: z.ZodOptional<z.ZodString>;
|
|
1480
1879
|
defaultExcessCreditPlan: z.ZodOptional<z.ZodString>;
|
|
1481
1880
|
defaultBillingPlan: z.ZodOptional<z.ZodString>;
|
|
1482
|
-
defaultDurationBasis: z.ZodOptional<z.
|
|
1881
|
+
defaultDurationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
|
|
1483
1882
|
defaultDelinquencyPlan: z.ZodOptional<z.ZodString>;
|
|
1484
1883
|
defaultAuxDataSettings: z.ZodOptional<z.ZodString>;
|
|
1485
1884
|
defaultBillingLevel: z.ZodOptional<z.ZodString>;
|
|
1486
1885
|
defaultShortfallTolerancePlan: z.ZodOptional<z.ZodString>;
|
|
1886
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
1487
1887
|
charges: z.ZodAny;
|
|
1488
1888
|
installmentPlans: z.ZodAny;
|
|
1489
1889
|
billingPlans: z.ZodAny;
|
|
@@ -1527,7 +1927,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1527
1927
|
inherited?: boolean | undefined;
|
|
1528
1928
|
precision?: number | undefined;
|
|
1529
1929
|
readOnly?: boolean | undefined;
|
|
1930
|
+
searchable?: boolean | undefined;
|
|
1931
|
+
tag?: string[] | undefined;
|
|
1530
1932
|
}> | undefined;
|
|
1933
|
+
defaultSearchable?: boolean | undefined;
|
|
1531
1934
|
contents?: string[] | undefined;
|
|
1532
1935
|
coverageTerms?: string[] | undefined;
|
|
1533
1936
|
charges?: string[] | undefined;
|
|
@@ -1552,7 +1955,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1552
1955
|
inherited?: boolean | undefined;
|
|
1553
1956
|
precision?: number | undefined;
|
|
1554
1957
|
readOnly?: boolean | undefined;
|
|
1958
|
+
searchable?: boolean | undefined;
|
|
1959
|
+
tag?: string[] | undefined;
|
|
1555
1960
|
}> | undefined;
|
|
1961
|
+
defaultSearchable?: boolean | undefined;
|
|
1556
1962
|
}>;
|
|
1557
1963
|
products: Record<string, {
|
|
1558
1964
|
displayName?: string | undefined;
|
|
@@ -1574,7 +1980,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1574
1980
|
inherited?: boolean | undefined;
|
|
1575
1981
|
precision?: number | undefined;
|
|
1576
1982
|
readOnly?: boolean | undefined;
|
|
1983
|
+
searchable?: boolean | undefined;
|
|
1984
|
+
tag?: string[] | undefined;
|
|
1577
1985
|
}> | undefined;
|
|
1986
|
+
defaultSearchable?: boolean | undefined;
|
|
1578
1987
|
contents?: string[] | undefined;
|
|
1579
1988
|
coverageTerms?: string[] | undefined;
|
|
1580
1989
|
charges?: string[] | undefined;
|
|
@@ -1593,6 +2002,25 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1593
2002
|
documents?: string[] | undefined;
|
|
1594
2003
|
plugins?: any;
|
|
1595
2004
|
tables?: any;
|
|
2005
|
+
staticData?: Record<string, {
|
|
2006
|
+
options?: string[] | undefined;
|
|
2007
|
+
type?: string | undefined;
|
|
2008
|
+
displayName?: string | undefined;
|
|
2009
|
+
defaultValue?: string | undefined;
|
|
2010
|
+
minLength?: number | undefined;
|
|
2011
|
+
maxLength?: number | undefined;
|
|
2012
|
+
regex?: string | undefined;
|
|
2013
|
+
min?: string | undefined;
|
|
2014
|
+
multiline?: boolean | undefined;
|
|
2015
|
+
max?: string | undefined;
|
|
2016
|
+
overrides?: string | undefined;
|
|
2017
|
+
scope?: string | undefined;
|
|
2018
|
+
inherited?: boolean | undefined;
|
|
2019
|
+
precision?: number | undefined;
|
|
2020
|
+
readOnly?: boolean | undefined;
|
|
2021
|
+
searchable?: boolean | undefined;
|
|
2022
|
+
tag?: string[] | undefined;
|
|
2023
|
+
}> | undefined;
|
|
1596
2024
|
}>;
|
|
1597
2025
|
delinquencyPlans: Record<string, {
|
|
1598
2026
|
gracePeriodDays: number;
|
|
@@ -1600,6 +2028,7 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1600
2028
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
1601
2029
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
1602
2030
|
lapseTransactionType?: string | undefined;
|
|
2031
|
+
events?: Record<string, any> | undefined;
|
|
1603
2032
|
}>;
|
|
1604
2033
|
autoRenewalPlans: Record<string, {
|
|
1605
2034
|
generateAutoRenewals: boolean;
|
|
@@ -1613,11 +2042,12 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1613
2042
|
category: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
|
|
1614
2043
|
costBearing: boolean;
|
|
1615
2044
|
}>;
|
|
2045
|
+
defaultSearchable?: boolean | undefined;
|
|
1616
2046
|
charges?: any;
|
|
1617
2047
|
defaultTimeZone?: string | undefined;
|
|
1618
2048
|
defaultCurrency?: string | undefined;
|
|
1619
2049
|
defaultTermDuration?: number | undefined;
|
|
1620
|
-
defaultDurationBasis?:
|
|
2050
|
+
defaultDurationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
1621
2051
|
defaultInstallmentPlan?: string | undefined;
|
|
1622
2052
|
defaultDelinquencyPlan?: string | undefined;
|
|
1623
2053
|
defaultAuxDataSettings?: string | undefined;
|
|
@@ -1627,6 +2057,21 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1627
2057
|
defaultBillingLevel?: string | undefined;
|
|
1628
2058
|
documents?: any;
|
|
1629
2059
|
tables?: any;
|
|
2060
|
+
reversalTypes?: Record<string, {
|
|
2061
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
2062
|
+
}> | undefined;
|
|
2063
|
+
dataAccessControl?: any;
|
|
2064
|
+
bootstrap?: {
|
|
2065
|
+
resources?: {
|
|
2066
|
+
resourceGroups?: Record<string, {
|
|
2067
|
+
selectionStartTime?: string | undefined;
|
|
2068
|
+
resourceNames?: string[] | undefined;
|
|
2069
|
+
}> | undefined;
|
|
2070
|
+
resourceInstances?: Record<string, {
|
|
2071
|
+
staticName?: string | undefined;
|
|
2072
|
+
}> | undefined;
|
|
2073
|
+
} | undefined;
|
|
2074
|
+
} | undefined;
|
|
1630
2075
|
policyLines?: Record<string, {
|
|
1631
2076
|
displayName?: string | undefined;
|
|
1632
2077
|
abstract?: boolean | undefined;
|
|
@@ -1647,7 +2092,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1647
2092
|
inherited?: boolean | undefined;
|
|
1648
2093
|
precision?: number | undefined;
|
|
1649
2094
|
readOnly?: boolean | undefined;
|
|
2095
|
+
searchable?: boolean | undefined;
|
|
2096
|
+
tag?: string[] | undefined;
|
|
1650
2097
|
}> | undefined;
|
|
2098
|
+
defaultSearchable?: boolean | undefined;
|
|
1651
2099
|
contents?: string[] | undefined;
|
|
1652
2100
|
coverageTerms?: string[] | undefined;
|
|
1653
2101
|
charges?: string[] | undefined;
|
|
@@ -1672,7 +2120,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1672
2120
|
inherited?: boolean | undefined;
|
|
1673
2121
|
precision?: number | undefined;
|
|
1674
2122
|
readOnly?: boolean | undefined;
|
|
2123
|
+
searchable?: boolean | undefined;
|
|
2124
|
+
tag?: string[] | undefined;
|
|
1675
2125
|
}> | undefined;
|
|
2126
|
+
defaultSearchable?: boolean | undefined;
|
|
1676
2127
|
contents?: string[] | undefined;
|
|
1677
2128
|
coverageTerms?: string[] | undefined;
|
|
1678
2129
|
charges?: string[] | undefined;
|
|
@@ -1697,7 +2148,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1697
2148
|
inherited?: boolean | undefined;
|
|
1698
2149
|
precision?: number | undefined;
|
|
1699
2150
|
readOnly?: boolean | undefined;
|
|
2151
|
+
searchable?: boolean | undefined;
|
|
2152
|
+
tag?: string[] | undefined;
|
|
1700
2153
|
}> | undefined;
|
|
2154
|
+
defaultSearchable?: boolean | undefined;
|
|
1701
2155
|
contents?: string[] | undefined;
|
|
1702
2156
|
coverageTerms?: string[] | undefined;
|
|
1703
2157
|
charges?: string[] | undefined;
|
|
@@ -1722,7 +2176,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1722
2176
|
inherited?: boolean | undefined;
|
|
1723
2177
|
precision?: number | undefined;
|
|
1724
2178
|
readOnly?: boolean | undefined;
|
|
2179
|
+
searchable?: boolean | undefined;
|
|
2180
|
+
tag?: string[] | undefined;
|
|
1725
2181
|
}> | undefined;
|
|
2182
|
+
defaultSearchable?: boolean | undefined;
|
|
1726
2183
|
contents?: string[] | undefined;
|
|
1727
2184
|
coverageTerms?: string[] | undefined;
|
|
1728
2185
|
charges?: string[] | undefined;
|
|
@@ -1770,7 +2227,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1770
2227
|
inherited?: boolean | undefined;
|
|
1771
2228
|
precision?: number | undefined;
|
|
1772
2229
|
readOnly?: boolean | undefined;
|
|
2230
|
+
searchable?: boolean | undefined;
|
|
2231
|
+
tag?: string[] | undefined;
|
|
1773
2232
|
}> | undefined;
|
|
2233
|
+
defaultSearchable?: boolean | undefined;
|
|
1774
2234
|
contents?: string[] | undefined;
|
|
1775
2235
|
coverageTerms?: string[] | undefined;
|
|
1776
2236
|
charges?: string[] | undefined;
|
|
@@ -1795,7 +2255,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1795
2255
|
inherited?: boolean | undefined;
|
|
1796
2256
|
precision?: number | undefined;
|
|
1797
2257
|
readOnly?: boolean | undefined;
|
|
2258
|
+
searchable?: boolean | undefined;
|
|
2259
|
+
tag?: string[] | undefined;
|
|
1798
2260
|
}> | undefined;
|
|
2261
|
+
defaultSearchable?: boolean | undefined;
|
|
1799
2262
|
}>;
|
|
1800
2263
|
products: Record<string, {
|
|
1801
2264
|
displayName?: string | undefined;
|
|
@@ -1817,7 +2280,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1817
2280
|
inherited?: boolean | undefined;
|
|
1818
2281
|
precision?: number | undefined;
|
|
1819
2282
|
readOnly?: boolean | undefined;
|
|
2283
|
+
searchable?: boolean | undefined;
|
|
2284
|
+
tag?: string[] | undefined;
|
|
1820
2285
|
}> | undefined;
|
|
2286
|
+
defaultSearchable?: boolean | undefined;
|
|
1821
2287
|
contents?: string[] | undefined;
|
|
1822
2288
|
coverageTerms?: string[] | undefined;
|
|
1823
2289
|
charges?: string[] | undefined;
|
|
@@ -1836,6 +2302,25 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1836
2302
|
documents?: string[] | undefined;
|
|
1837
2303
|
plugins?: any;
|
|
1838
2304
|
tables?: any;
|
|
2305
|
+
staticData?: Record<string, {
|
|
2306
|
+
options?: string[] | undefined;
|
|
2307
|
+
type?: string | undefined;
|
|
2308
|
+
displayName?: string | undefined;
|
|
2309
|
+
defaultValue?: string | undefined;
|
|
2310
|
+
minLength?: number | undefined;
|
|
2311
|
+
maxLength?: number | undefined;
|
|
2312
|
+
regex?: string | undefined;
|
|
2313
|
+
min?: string | undefined;
|
|
2314
|
+
multiline?: boolean | undefined;
|
|
2315
|
+
max?: string | undefined;
|
|
2316
|
+
overrides?: string | undefined;
|
|
2317
|
+
scope?: string | undefined;
|
|
2318
|
+
inherited?: boolean | undefined;
|
|
2319
|
+
precision?: number | undefined;
|
|
2320
|
+
readOnly?: boolean | undefined;
|
|
2321
|
+
searchable?: boolean | undefined;
|
|
2322
|
+
tag?: string[] | undefined;
|
|
2323
|
+
}> | undefined;
|
|
1839
2324
|
}>;
|
|
1840
2325
|
delinquencyPlans: Record<string, {
|
|
1841
2326
|
gracePeriodDays: number;
|
|
@@ -1843,6 +2328,7 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1843
2328
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
1844
2329
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
1845
2330
|
lapseTransactionType?: string | undefined;
|
|
2331
|
+
events?: Record<string, any> | undefined;
|
|
1846
2332
|
}>;
|
|
1847
2333
|
autoRenewalPlans: Record<string, {
|
|
1848
2334
|
generateAutoRenewals: boolean;
|
|
@@ -1856,11 +2342,12 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1856
2342
|
category: "issuance" | "change" | "renewal" | "cancellation" | "reinstatement" | "reversal" | "aggregate";
|
|
1857
2343
|
costBearing: boolean;
|
|
1858
2344
|
}>;
|
|
2345
|
+
defaultSearchable?: boolean | undefined;
|
|
1859
2346
|
charges?: any;
|
|
1860
2347
|
defaultTimeZone?: string | undefined;
|
|
1861
2348
|
defaultCurrency?: string | undefined;
|
|
1862
2349
|
defaultTermDuration?: number | undefined;
|
|
1863
|
-
defaultDurationBasis?:
|
|
2350
|
+
defaultDurationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
1864
2351
|
defaultInstallmentPlan?: string | undefined;
|
|
1865
2352
|
defaultDelinquencyPlan?: string | undefined;
|
|
1866
2353
|
defaultAuxDataSettings?: string | undefined;
|
|
@@ -1870,6 +2357,21 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1870
2357
|
defaultBillingLevel?: string | undefined;
|
|
1871
2358
|
documents?: any;
|
|
1872
2359
|
tables?: any;
|
|
2360
|
+
reversalTypes?: Record<string, {
|
|
2361
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
2362
|
+
}> | undefined;
|
|
2363
|
+
dataAccessControl?: any;
|
|
2364
|
+
bootstrap?: {
|
|
2365
|
+
resources?: {
|
|
2366
|
+
resourceGroups?: Record<string, {
|
|
2367
|
+
selectionStartTime?: string | undefined;
|
|
2368
|
+
resourceNames?: string[] | undefined;
|
|
2369
|
+
}> | undefined;
|
|
2370
|
+
resourceInstances?: Record<string, {
|
|
2371
|
+
staticName?: string | undefined;
|
|
2372
|
+
}> | undefined;
|
|
2373
|
+
} | undefined;
|
|
2374
|
+
} | undefined;
|
|
1873
2375
|
policyLines?: Record<string, {
|
|
1874
2376
|
displayName?: string | undefined;
|
|
1875
2377
|
abstract?: boolean | undefined;
|
|
@@ -1890,7 +2392,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1890
2392
|
inherited?: boolean | undefined;
|
|
1891
2393
|
precision?: number | undefined;
|
|
1892
2394
|
readOnly?: boolean | undefined;
|
|
2395
|
+
searchable?: boolean | undefined;
|
|
2396
|
+
tag?: string[] | undefined;
|
|
1893
2397
|
}> | undefined;
|
|
2398
|
+
defaultSearchable?: boolean | undefined;
|
|
1894
2399
|
contents?: string[] | undefined;
|
|
1895
2400
|
coverageTerms?: string[] | undefined;
|
|
1896
2401
|
charges?: string[] | undefined;
|
|
@@ -1915,7 +2420,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1915
2420
|
inherited?: boolean | undefined;
|
|
1916
2421
|
precision?: number | undefined;
|
|
1917
2422
|
readOnly?: boolean | undefined;
|
|
2423
|
+
searchable?: boolean | undefined;
|
|
2424
|
+
tag?: string[] | undefined;
|
|
1918
2425
|
}> | undefined;
|
|
2426
|
+
defaultSearchable?: boolean | undefined;
|
|
1919
2427
|
contents?: string[] | undefined;
|
|
1920
2428
|
coverageTerms?: string[] | undefined;
|
|
1921
2429
|
charges?: string[] | undefined;
|
|
@@ -1940,7 +2448,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1940
2448
|
inherited?: boolean | undefined;
|
|
1941
2449
|
precision?: number | undefined;
|
|
1942
2450
|
readOnly?: boolean | undefined;
|
|
2451
|
+
searchable?: boolean | undefined;
|
|
2452
|
+
tag?: string[] | undefined;
|
|
1943
2453
|
}> | undefined;
|
|
2454
|
+
defaultSearchable?: boolean | undefined;
|
|
1944
2455
|
contents?: string[] | undefined;
|
|
1945
2456
|
coverageTerms?: string[] | undefined;
|
|
1946
2457
|
charges?: string[] | undefined;
|
|
@@ -1965,7 +2476,10 @@ export declare const dataModelSchema: z.ZodObject<{
|
|
|
1965
2476
|
inherited?: boolean | undefined;
|
|
1966
2477
|
precision?: number | undefined;
|
|
1967
2478
|
readOnly?: boolean | undefined;
|
|
2479
|
+
searchable?: boolean | undefined;
|
|
2480
|
+
tag?: string[] | undefined;
|
|
1968
2481
|
}> | undefined;
|
|
2482
|
+
defaultSearchable?: boolean | undefined;
|
|
1969
2483
|
contents?: string[] | undefined;
|
|
1970
2484
|
coverageTerms?: string[] | undefined;
|
|
1971
2485
|
charges?: string[] | undefined;
|
|
@@ -2009,6 +2523,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
2009
2523
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2010
2524
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2011
2525
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2526
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
2527
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2012
2528
|
}, "strip", z.ZodTypeAny, {
|
|
2013
2529
|
options?: string[] | undefined;
|
|
2014
2530
|
type?: string | undefined;
|
|
@@ -2025,6 +2541,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
2025
2541
|
inherited?: boolean | undefined;
|
|
2026
2542
|
precision?: number | undefined;
|
|
2027
2543
|
readOnly?: boolean | undefined;
|
|
2544
|
+
searchable?: boolean | undefined;
|
|
2545
|
+
tag?: string[] | undefined;
|
|
2028
2546
|
}, {
|
|
2029
2547
|
options?: string[] | undefined;
|
|
2030
2548
|
type?: string | undefined;
|
|
@@ -2041,6 +2559,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
2041
2559
|
inherited?: boolean | undefined;
|
|
2042
2560
|
precision?: number | undefined;
|
|
2043
2561
|
readOnly?: boolean | undefined;
|
|
2562
|
+
searchable?: boolean | undefined;
|
|
2563
|
+
tag?: string[] | undefined;
|
|
2044
2564
|
}>>>;
|
|
2045
2565
|
}, "strip", z.ZodTypeAny, {
|
|
2046
2566
|
displayName?: string | undefined;
|
|
@@ -2062,6 +2582,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
2062
2582
|
inherited?: boolean | undefined;
|
|
2063
2583
|
precision?: number | undefined;
|
|
2064
2584
|
readOnly?: boolean | undefined;
|
|
2585
|
+
searchable?: boolean | undefined;
|
|
2586
|
+
tag?: string[] | undefined;
|
|
2065
2587
|
}> | undefined;
|
|
2066
2588
|
}, {
|
|
2067
2589
|
displayName?: string | undefined;
|
|
@@ -2083,6 +2605,8 @@ export declare const dataTypeConfigSchema: z.ZodObject<{
|
|
|
2083
2605
|
inherited?: boolean | undefined;
|
|
2084
2606
|
precision?: number | undefined;
|
|
2085
2607
|
readOnly?: boolean | undefined;
|
|
2608
|
+
searchable?: boolean | undefined;
|
|
2609
|
+
tag?: string[] | undefined;
|
|
2086
2610
|
}> | undefined;
|
|
2087
2611
|
}>;
|
|
2088
2612
|
|
|
@@ -2106,6 +2630,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
2106
2630
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2107
2631
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2108
2632
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2633
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
2634
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2109
2635
|
}, "strip", z.ZodTypeAny, {
|
|
2110
2636
|
options?: string[] | undefined;
|
|
2111
2637
|
type?: string | undefined;
|
|
@@ -2122,6 +2648,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
2122
2648
|
inherited?: boolean | undefined;
|
|
2123
2649
|
precision?: number | undefined;
|
|
2124
2650
|
readOnly?: boolean | undefined;
|
|
2651
|
+
searchable?: boolean | undefined;
|
|
2652
|
+
tag?: string[] | undefined;
|
|
2125
2653
|
}, {
|
|
2126
2654
|
options?: string[] | undefined;
|
|
2127
2655
|
type?: string | undefined;
|
|
@@ -2138,6 +2666,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
2138
2666
|
inherited?: boolean | undefined;
|
|
2139
2667
|
precision?: number | undefined;
|
|
2140
2668
|
readOnly?: boolean | undefined;
|
|
2669
|
+
searchable?: boolean | undefined;
|
|
2670
|
+
tag?: string[] | undefined;
|
|
2141
2671
|
}>>>;
|
|
2142
2672
|
}, "strip", z.ZodTypeAny, {
|
|
2143
2673
|
displayName?: string | undefined;
|
|
@@ -2159,6 +2689,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
2159
2689
|
inherited?: boolean | undefined;
|
|
2160
2690
|
precision?: number | undefined;
|
|
2161
2691
|
readOnly?: boolean | undefined;
|
|
2692
|
+
searchable?: boolean | undefined;
|
|
2693
|
+
tag?: string[] | undefined;
|
|
2162
2694
|
}> | undefined;
|
|
2163
2695
|
}, {
|
|
2164
2696
|
displayName?: string | undefined;
|
|
@@ -2180,6 +2712,8 @@ export declare const dataTypesRecordSchema: z.ZodRecord<z.ZodString, z.ZodObject
|
|
|
2180
2712
|
inherited?: boolean | undefined;
|
|
2181
2713
|
precision?: number | undefined;
|
|
2182
2714
|
readOnly?: boolean | undefined;
|
|
2715
|
+
searchable?: boolean | undefined;
|
|
2716
|
+
tag?: string[] | undefined;
|
|
2183
2717
|
}> | undefined;
|
|
2184
2718
|
}>>;
|
|
2185
2719
|
|
|
@@ -2230,18 +2764,21 @@ export declare const delinquencyPlanRecordsSchema: z.ZodRecord<z.ZodString, z.Zo
|
|
|
2230
2764
|
advanceLapseTo: z.ZodOptional<z.ZodEnum<["draft", "validated", "priced", "underwritten", "accepted", "issued"]>>;
|
|
2231
2765
|
delinquencyLevel: z.ZodOptional<z.ZodEnum<["policy", "invoice"]>>;
|
|
2232
2766
|
lapseTransactionType: z.ZodOptional<z.ZodString>;
|
|
2767
|
+
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2233
2768
|
}, "strip", z.ZodTypeAny, {
|
|
2234
2769
|
gracePeriodDays: number;
|
|
2235
2770
|
displayName?: string | undefined;
|
|
2236
2771
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
2237
2772
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
2238
2773
|
lapseTransactionType?: string | undefined;
|
|
2774
|
+
events?: Record<string, any> | undefined;
|
|
2239
2775
|
}, {
|
|
2240
2776
|
gracePeriodDays: number;
|
|
2241
2777
|
displayName?: string | undefined;
|
|
2242
2778
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
2243
2779
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
2244
2780
|
lapseTransactionType?: string | undefined;
|
|
2781
|
+
events?: Record<string, any> | undefined;
|
|
2245
2782
|
}>>;
|
|
2246
2783
|
|
|
2247
2784
|
export declare const delinquencyPlanSchema: z.ZodObject<{
|
|
@@ -2250,18 +2787,21 @@ export declare const delinquencyPlanSchema: z.ZodObject<{
|
|
|
2250
2787
|
advanceLapseTo: z.ZodOptional<z.ZodEnum<["draft", "validated", "priced", "underwritten", "accepted", "issued"]>>;
|
|
2251
2788
|
delinquencyLevel: z.ZodOptional<z.ZodEnum<["policy", "invoice"]>>;
|
|
2252
2789
|
lapseTransactionType: z.ZodOptional<z.ZodString>;
|
|
2790
|
+
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2253
2791
|
}, "strip", z.ZodTypeAny, {
|
|
2254
2792
|
gracePeriodDays: number;
|
|
2255
2793
|
displayName?: string | undefined;
|
|
2256
2794
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
2257
2795
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
2258
2796
|
lapseTransactionType?: string | undefined;
|
|
2797
|
+
events?: Record<string, any> | undefined;
|
|
2259
2798
|
}, {
|
|
2260
2799
|
gracePeriodDays: number;
|
|
2261
2800
|
displayName?: string | undefined;
|
|
2262
2801
|
advanceLapseTo?: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | undefined;
|
|
2263
2802
|
delinquencyLevel?: "policy" | "invoice" | undefined;
|
|
2264
2803
|
lapseTransactionType?: string | undefined;
|
|
2804
|
+
events?: Record<string, any> | undefined;
|
|
2265
2805
|
}>;
|
|
2266
2806
|
|
|
2267
2807
|
export declare type DelinquencyReference = z.infer<typeof delinquencyReferenceSchema>;
|
|
@@ -2408,8 +2948,8 @@ export declare const documentInstanceResponseSchema: z.ZodObject<{
|
|
|
2408
2948
|
documentInstanceState: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
|
|
2409
2949
|
referenceLocator: string;
|
|
2410
2950
|
createdBy?: string | undefined;
|
|
2411
|
-
policyLocator?: string | undefined;
|
|
2412
2951
|
staticName?: string | undefined;
|
|
2952
|
+
policyLocator?: string | undefined;
|
|
2413
2953
|
name?: string | undefined;
|
|
2414
2954
|
referenceType?: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term" | undefined;
|
|
2415
2955
|
metadata?: Record<string, any> | undefined;
|
|
@@ -2427,8 +2967,8 @@ export declare const documentInstanceResponseSchema: z.ZodObject<{
|
|
|
2427
2967
|
documentInstanceState: "draft" | "dataReady" | "ready" | "dataError" | "renderError" | "conversionError";
|
|
2428
2968
|
referenceLocator: string;
|
|
2429
2969
|
createdBy?: string | undefined;
|
|
2430
|
-
policyLocator?: string | undefined;
|
|
2431
2970
|
staticName?: string | undefined;
|
|
2971
|
+
policyLocator?: string | undefined;
|
|
2432
2972
|
name?: string | undefined;
|
|
2433
2973
|
referenceType?: "policy" | "quote" | "invoice" | "transaction" | "segment" | "term" | undefined;
|
|
2434
2974
|
metadata?: Record<string, any> | undefined;
|
|
@@ -2472,6 +3012,10 @@ export declare const documentSummarySchema: z.ZodObject<{
|
|
|
2472
3012
|
name?: string | undefined;
|
|
2473
3013
|
}>;
|
|
2474
3014
|
|
|
3015
|
+
export declare type DurationBasis = z.infer<typeof durationBasisSchema>;
|
|
3016
|
+
|
|
3017
|
+
export declare const durationBasisSchema: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
|
|
3018
|
+
|
|
2475
3019
|
declare type Element_2 = z.infer<typeof baseElementResponseSchema> & {
|
|
2476
3020
|
elements?: Element_2[];
|
|
2477
3021
|
};
|
|
@@ -2502,6 +3046,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
2502
3046
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2503
3047
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2504
3048
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3049
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
3050
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2505
3051
|
}, "strip", z.ZodTypeAny, {
|
|
2506
3052
|
options?: string[] | undefined;
|
|
2507
3053
|
type?: string | undefined;
|
|
@@ -2518,6 +3064,8 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
2518
3064
|
inherited?: boolean | undefined;
|
|
2519
3065
|
precision?: number | undefined;
|
|
2520
3066
|
readOnly?: boolean | undefined;
|
|
3067
|
+
searchable?: boolean | undefined;
|
|
3068
|
+
tag?: string[] | undefined;
|
|
2521
3069
|
}, {
|
|
2522
3070
|
options?: string[] | undefined;
|
|
2523
3071
|
type?: string | undefined;
|
|
@@ -2534,8 +3082,11 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
2534
3082
|
inherited?: boolean | undefined;
|
|
2535
3083
|
precision?: number | undefined;
|
|
2536
3084
|
readOnly?: boolean | undefined;
|
|
3085
|
+
searchable?: boolean | undefined;
|
|
3086
|
+
tag?: string[] | undefined;
|
|
2537
3087
|
}>>>;
|
|
2538
3088
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3089
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
2539
3090
|
}, "strip", z.ZodTypeAny, {
|
|
2540
3091
|
displayName?: string | undefined;
|
|
2541
3092
|
abstract?: boolean | undefined;
|
|
@@ -2556,7 +3107,10 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
2556
3107
|
inherited?: boolean | undefined;
|
|
2557
3108
|
precision?: number | undefined;
|
|
2558
3109
|
readOnly?: boolean | undefined;
|
|
3110
|
+
searchable?: boolean | undefined;
|
|
3111
|
+
tag?: string[] | undefined;
|
|
2559
3112
|
}> | undefined;
|
|
3113
|
+
defaultSearchable?: boolean | undefined;
|
|
2560
3114
|
contents?: string[] | undefined;
|
|
2561
3115
|
coverageTerms?: string[] | undefined;
|
|
2562
3116
|
charges?: string[] | undefined;
|
|
@@ -2580,7 +3134,10 @@ export declare const elementConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
2580
3134
|
inherited?: boolean | undefined;
|
|
2581
3135
|
precision?: number | undefined;
|
|
2582
3136
|
readOnly?: boolean | undefined;
|
|
3137
|
+
searchable?: boolean | undefined;
|
|
3138
|
+
tag?: string[] | undefined;
|
|
2583
3139
|
}> | undefined;
|
|
3140
|
+
defaultSearchable?: boolean | undefined;
|
|
2584
3141
|
contents?: string[] | undefined;
|
|
2585
3142
|
coverageTerms?: string[] | undefined;
|
|
2586
3143
|
charges?: string[] | undefined;
|
|
@@ -2608,6 +3165,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
2608
3165
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2609
3166
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2610
3167
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3168
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
3169
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2611
3170
|
}, "strip", z.ZodTypeAny, {
|
|
2612
3171
|
options?: string[] | undefined;
|
|
2613
3172
|
type?: string | undefined;
|
|
@@ -2624,6 +3183,8 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
2624
3183
|
inherited?: boolean | undefined;
|
|
2625
3184
|
precision?: number | undefined;
|
|
2626
3185
|
readOnly?: boolean | undefined;
|
|
3186
|
+
searchable?: boolean | undefined;
|
|
3187
|
+
tag?: string[] | undefined;
|
|
2627
3188
|
}, {
|
|
2628
3189
|
options?: string[] | undefined;
|
|
2629
3190
|
type?: string | undefined;
|
|
@@ -2640,8 +3201,11 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
2640
3201
|
inherited?: boolean | undefined;
|
|
2641
3202
|
precision?: number | undefined;
|
|
2642
3203
|
readOnly?: boolean | undefined;
|
|
3204
|
+
searchable?: boolean | undefined;
|
|
3205
|
+
tag?: string[] | undefined;
|
|
2643
3206
|
}>>>;
|
|
2644
3207
|
charges: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3208
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
2645
3209
|
}, "strip", z.ZodTypeAny, {
|
|
2646
3210
|
displayName?: string | undefined;
|
|
2647
3211
|
abstract?: boolean | undefined;
|
|
@@ -2662,7 +3226,10 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
2662
3226
|
inherited?: boolean | undefined;
|
|
2663
3227
|
precision?: number | undefined;
|
|
2664
3228
|
readOnly?: boolean | undefined;
|
|
3229
|
+
searchable?: boolean | undefined;
|
|
3230
|
+
tag?: string[] | undefined;
|
|
2665
3231
|
}> | undefined;
|
|
3232
|
+
defaultSearchable?: boolean | undefined;
|
|
2666
3233
|
contents?: string[] | undefined;
|
|
2667
3234
|
coverageTerms?: string[] | undefined;
|
|
2668
3235
|
charges?: string[] | undefined;
|
|
@@ -2686,7 +3253,10 @@ export declare const elementConfigSchema: z.ZodObject<{
|
|
|
2686
3253
|
inherited?: boolean | undefined;
|
|
2687
3254
|
precision?: number | undefined;
|
|
2688
3255
|
readOnly?: boolean | undefined;
|
|
3256
|
+
searchable?: boolean | undefined;
|
|
3257
|
+
tag?: string[] | undefined;
|
|
2689
3258
|
}> | undefined;
|
|
3259
|
+
defaultSearchable?: boolean | undefined;
|
|
2690
3260
|
contents?: string[] | undefined;
|
|
2691
3261
|
coverageTerms?: string[] | undefined;
|
|
2692
3262
|
charges?: string[] | undefined;
|
|
@@ -2766,6 +3336,8 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
2766
3336
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2767
3337
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2768
3338
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3339
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
3340
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2769
3341
|
}, "strip", z.ZodTypeAny, {
|
|
2770
3342
|
options?: string[] | undefined;
|
|
2771
3343
|
type?: string | undefined;
|
|
@@ -2782,6 +3354,8 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
2782
3354
|
inherited?: boolean | undefined;
|
|
2783
3355
|
precision?: number | undefined;
|
|
2784
3356
|
readOnly?: boolean | undefined;
|
|
3357
|
+
searchable?: boolean | undefined;
|
|
3358
|
+
tag?: string[] | undefined;
|
|
2785
3359
|
}, {
|
|
2786
3360
|
options?: string[] | undefined;
|
|
2787
3361
|
type?: string | undefined;
|
|
@@ -2798,6 +3372,8 @@ export declare const fieldConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
2798
3372
|
inherited?: boolean | undefined;
|
|
2799
3373
|
precision?: number | undefined;
|
|
2800
3374
|
readOnly?: boolean | undefined;
|
|
3375
|
+
searchable?: boolean | undefined;
|
|
3376
|
+
tag?: string[] | undefined;
|
|
2801
3377
|
}>>;
|
|
2802
3378
|
|
|
2803
3379
|
export declare const fieldConfigSchema: z.ZodObject<{
|
|
@@ -2816,6 +3392,8 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
2816
3392
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
2817
3393
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
2818
3394
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3395
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
3396
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2819
3397
|
}, "strip", z.ZodTypeAny, {
|
|
2820
3398
|
options?: string[] | undefined;
|
|
2821
3399
|
type?: string | undefined;
|
|
@@ -2832,6 +3410,8 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
2832
3410
|
inherited?: boolean | undefined;
|
|
2833
3411
|
precision?: number | undefined;
|
|
2834
3412
|
readOnly?: boolean | undefined;
|
|
3413
|
+
searchable?: boolean | undefined;
|
|
3414
|
+
tag?: string[] | undefined;
|
|
2835
3415
|
}, {
|
|
2836
3416
|
options?: string[] | undefined;
|
|
2837
3417
|
type?: string | undefined;
|
|
@@ -2848,6 +3428,8 @@ export declare const fieldConfigSchema: z.ZodObject<{
|
|
|
2848
3428
|
inherited?: boolean | undefined;
|
|
2849
3429
|
precision?: number | undefined;
|
|
2850
3430
|
readOnly?: boolean | undefined;
|
|
3431
|
+
searchable?: boolean | undefined;
|
|
3432
|
+
tag?: string[] | undefined;
|
|
2851
3433
|
}>;
|
|
2852
3434
|
|
|
2853
3435
|
export declare type InvoiceItemResponse = z.infer<typeof invoiceItemResponseSchema>;
|
|
@@ -5332,6 +5914,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5332
5914
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
5333
5915
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
5334
5916
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5917
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
5918
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5335
5919
|
}, "strip", z.ZodTypeAny, {
|
|
5336
5920
|
options?: string[] | undefined;
|
|
5337
5921
|
type?: string | undefined;
|
|
@@ -5348,6 +5932,8 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5348
5932
|
inherited?: boolean | undefined;
|
|
5349
5933
|
precision?: number | undefined;
|
|
5350
5934
|
readOnly?: boolean | undefined;
|
|
5935
|
+
searchable?: boolean | undefined;
|
|
5936
|
+
tag?: string[] | undefined;
|
|
5351
5937
|
}, {
|
|
5352
5938
|
options?: string[] | undefined;
|
|
5353
5939
|
type?: string | undefined;
|
|
@@ -5364,7 +5950,65 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5364
5950
|
inherited?: boolean | undefined;
|
|
5365
5951
|
precision?: number | undefined;
|
|
5366
5952
|
readOnly?: boolean | undefined;
|
|
5953
|
+
searchable?: boolean | undefined;
|
|
5954
|
+
tag?: string[] | undefined;
|
|
5367
5955
|
}>>>;
|
|
5956
|
+
staticData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5957
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
5958
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5959
|
+
type: z.ZodOptional<z.ZodString>;
|
|
5960
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
5961
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
5962
|
+
regex: z.ZodOptional<z.ZodString>;
|
|
5963
|
+
min: z.ZodOptional<z.ZodString>;
|
|
5964
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
5965
|
+
max: z.ZodOptional<z.ZodString>;
|
|
5966
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5967
|
+
overrides: z.ZodOptional<z.ZodString>;
|
|
5968
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
5969
|
+
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
5970
|
+
precision: z.ZodOptional<z.ZodNumber>;
|
|
5971
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5972
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
5973
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5974
|
+
}, "strip", z.ZodTypeAny, {
|
|
5975
|
+
options?: string[] | undefined;
|
|
5976
|
+
type?: string | undefined;
|
|
5977
|
+
displayName?: string | undefined;
|
|
5978
|
+
defaultValue?: string | undefined;
|
|
5979
|
+
minLength?: number | undefined;
|
|
5980
|
+
maxLength?: number | undefined;
|
|
5981
|
+
regex?: string | undefined;
|
|
5982
|
+
min?: string | undefined;
|
|
5983
|
+
multiline?: boolean | undefined;
|
|
5984
|
+
max?: string | undefined;
|
|
5985
|
+
overrides?: string | undefined;
|
|
5986
|
+
scope?: string | undefined;
|
|
5987
|
+
inherited?: boolean | undefined;
|
|
5988
|
+
precision?: number | undefined;
|
|
5989
|
+
readOnly?: boolean | undefined;
|
|
5990
|
+
searchable?: boolean | undefined;
|
|
5991
|
+
tag?: string[] | undefined;
|
|
5992
|
+
}, {
|
|
5993
|
+
options?: string[] | undefined;
|
|
5994
|
+
type?: string | undefined;
|
|
5995
|
+
displayName?: string | undefined;
|
|
5996
|
+
defaultValue?: string | undefined;
|
|
5997
|
+
minLength?: number | undefined;
|
|
5998
|
+
maxLength?: number | undefined;
|
|
5999
|
+
regex?: string | undefined;
|
|
6000
|
+
min?: string | undefined;
|
|
6001
|
+
multiline?: boolean | undefined;
|
|
6002
|
+
max?: string | undefined;
|
|
6003
|
+
overrides?: string | undefined;
|
|
6004
|
+
scope?: string | undefined;
|
|
6005
|
+
inherited?: boolean | undefined;
|
|
6006
|
+
precision?: number | undefined;
|
|
6007
|
+
readOnly?: boolean | undefined;
|
|
6008
|
+
searchable?: boolean | undefined;
|
|
6009
|
+
tag?: string[] | undefined;
|
|
6010
|
+
}>>>;
|
|
6011
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
5368
6012
|
}, {
|
|
5369
6013
|
defaultTimeZone: z.ZodOptional<z.ZodString>;
|
|
5370
6014
|
defaultCurrency: z.ZodOptional<z.ZodString>;
|
|
@@ -5397,7 +6041,10 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5397
6041
|
inherited?: boolean | undefined;
|
|
5398
6042
|
precision?: number | undefined;
|
|
5399
6043
|
readOnly?: boolean | undefined;
|
|
6044
|
+
searchable?: boolean | undefined;
|
|
6045
|
+
tag?: string[] | undefined;
|
|
5400
6046
|
}> | undefined;
|
|
6047
|
+
defaultSearchable?: boolean | undefined;
|
|
5401
6048
|
contents?: string[] | undefined;
|
|
5402
6049
|
coverageTerms?: string[] | undefined;
|
|
5403
6050
|
charges?: string[] | undefined;
|
|
@@ -5416,6 +6063,25 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5416
6063
|
documents?: string[] | undefined;
|
|
5417
6064
|
plugins?: any;
|
|
5418
6065
|
tables?: any;
|
|
6066
|
+
staticData?: Record<string, {
|
|
6067
|
+
options?: string[] | undefined;
|
|
6068
|
+
type?: string | undefined;
|
|
6069
|
+
displayName?: string | undefined;
|
|
6070
|
+
defaultValue?: string | undefined;
|
|
6071
|
+
minLength?: number | undefined;
|
|
6072
|
+
maxLength?: number | undefined;
|
|
6073
|
+
regex?: string | undefined;
|
|
6074
|
+
min?: string | undefined;
|
|
6075
|
+
multiline?: boolean | undefined;
|
|
6076
|
+
max?: string | undefined;
|
|
6077
|
+
overrides?: string | undefined;
|
|
6078
|
+
scope?: string | undefined;
|
|
6079
|
+
inherited?: boolean | undefined;
|
|
6080
|
+
precision?: number | undefined;
|
|
6081
|
+
readOnly?: boolean | undefined;
|
|
6082
|
+
searchable?: boolean | undefined;
|
|
6083
|
+
tag?: string[] | undefined;
|
|
6084
|
+
}> | undefined;
|
|
5419
6085
|
}, {
|
|
5420
6086
|
displayName?: string | undefined;
|
|
5421
6087
|
abstract?: boolean | undefined;
|
|
@@ -5436,7 +6102,10 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5436
6102
|
inherited?: boolean | undefined;
|
|
5437
6103
|
precision?: number | undefined;
|
|
5438
6104
|
readOnly?: boolean | undefined;
|
|
6105
|
+
searchable?: boolean | undefined;
|
|
6106
|
+
tag?: string[] | undefined;
|
|
5439
6107
|
}> | undefined;
|
|
6108
|
+
defaultSearchable?: boolean | undefined;
|
|
5440
6109
|
contents?: string[] | undefined;
|
|
5441
6110
|
coverageTerms?: string[] | undefined;
|
|
5442
6111
|
charges?: string[] | undefined;
|
|
@@ -5455,6 +6124,25 @@ export declare const productConfigRecordSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
5455
6124
|
documents?: string[] | undefined;
|
|
5456
6125
|
plugins?: any;
|
|
5457
6126
|
tables?: any;
|
|
6127
|
+
staticData?: Record<string, {
|
|
6128
|
+
options?: string[] | undefined;
|
|
6129
|
+
type?: string | undefined;
|
|
6130
|
+
displayName?: string | undefined;
|
|
6131
|
+
defaultValue?: string | undefined;
|
|
6132
|
+
minLength?: number | undefined;
|
|
6133
|
+
maxLength?: number | undefined;
|
|
6134
|
+
regex?: string | undefined;
|
|
6135
|
+
min?: string | undefined;
|
|
6136
|
+
multiline?: boolean | undefined;
|
|
6137
|
+
max?: string | undefined;
|
|
6138
|
+
overrides?: string | undefined;
|
|
6139
|
+
scope?: string | undefined;
|
|
6140
|
+
inherited?: boolean | undefined;
|
|
6141
|
+
precision?: number | undefined;
|
|
6142
|
+
readOnly?: boolean | undefined;
|
|
6143
|
+
searchable?: boolean | undefined;
|
|
6144
|
+
tag?: string[] | undefined;
|
|
6145
|
+
}> | undefined;
|
|
5458
6146
|
}>>;
|
|
5459
6147
|
|
|
5460
6148
|
export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -5484,6 +6172,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5484
6172
|
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
5485
6173
|
precision: z.ZodOptional<z.ZodNumber>;
|
|
5486
6174
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
6175
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
6176
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5487
6177
|
}, "strip", z.ZodTypeAny, {
|
|
5488
6178
|
options?: string[] | undefined;
|
|
5489
6179
|
type?: string | undefined;
|
|
@@ -5500,6 +6190,8 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5500
6190
|
inherited?: boolean | undefined;
|
|
5501
6191
|
precision?: number | undefined;
|
|
5502
6192
|
readOnly?: boolean | undefined;
|
|
6193
|
+
searchable?: boolean | undefined;
|
|
6194
|
+
tag?: string[] | undefined;
|
|
5503
6195
|
}, {
|
|
5504
6196
|
options?: string[] | undefined;
|
|
5505
6197
|
type?: string | undefined;
|
|
@@ -5516,7 +6208,65 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5516
6208
|
inherited?: boolean | undefined;
|
|
5517
6209
|
precision?: number | undefined;
|
|
5518
6210
|
readOnly?: boolean | undefined;
|
|
6211
|
+
searchable?: boolean | undefined;
|
|
6212
|
+
tag?: string[] | undefined;
|
|
5519
6213
|
}>>>;
|
|
6214
|
+
staticData: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6215
|
+
displayName: z.ZodOptional<z.ZodString>;
|
|
6216
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
6217
|
+
type: z.ZodOptional<z.ZodString>;
|
|
6218
|
+
minLength: z.ZodOptional<z.ZodNumber>;
|
|
6219
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
6220
|
+
regex: z.ZodOptional<z.ZodString>;
|
|
6221
|
+
min: z.ZodOptional<z.ZodString>;
|
|
6222
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
6223
|
+
max: z.ZodOptional<z.ZodString>;
|
|
6224
|
+
options: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6225
|
+
overrides: z.ZodOptional<z.ZodString>;
|
|
6226
|
+
scope: z.ZodOptional<z.ZodString>;
|
|
6227
|
+
inherited: z.ZodOptional<z.ZodBoolean>;
|
|
6228
|
+
precision: z.ZodOptional<z.ZodNumber>;
|
|
6229
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
6230
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
6231
|
+
tag: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6232
|
+
}, "strip", z.ZodTypeAny, {
|
|
6233
|
+
options?: string[] | undefined;
|
|
6234
|
+
type?: string | undefined;
|
|
6235
|
+
displayName?: string | undefined;
|
|
6236
|
+
defaultValue?: string | undefined;
|
|
6237
|
+
minLength?: number | undefined;
|
|
6238
|
+
maxLength?: number | undefined;
|
|
6239
|
+
regex?: string | undefined;
|
|
6240
|
+
min?: string | undefined;
|
|
6241
|
+
multiline?: boolean | undefined;
|
|
6242
|
+
max?: string | undefined;
|
|
6243
|
+
overrides?: string | undefined;
|
|
6244
|
+
scope?: string | undefined;
|
|
6245
|
+
inherited?: boolean | undefined;
|
|
6246
|
+
precision?: number | undefined;
|
|
6247
|
+
readOnly?: boolean | undefined;
|
|
6248
|
+
searchable?: boolean | undefined;
|
|
6249
|
+
tag?: string[] | undefined;
|
|
6250
|
+
}, {
|
|
6251
|
+
options?: string[] | undefined;
|
|
6252
|
+
type?: string | undefined;
|
|
6253
|
+
displayName?: string | undefined;
|
|
6254
|
+
defaultValue?: string | undefined;
|
|
6255
|
+
minLength?: number | undefined;
|
|
6256
|
+
maxLength?: number | undefined;
|
|
6257
|
+
regex?: string | undefined;
|
|
6258
|
+
min?: string | undefined;
|
|
6259
|
+
multiline?: boolean | undefined;
|
|
6260
|
+
max?: string | undefined;
|
|
6261
|
+
overrides?: string | undefined;
|
|
6262
|
+
scope?: string | undefined;
|
|
6263
|
+
inherited?: boolean | undefined;
|
|
6264
|
+
precision?: number | undefined;
|
|
6265
|
+
readOnly?: boolean | undefined;
|
|
6266
|
+
searchable?: boolean | undefined;
|
|
6267
|
+
tag?: string[] | undefined;
|
|
6268
|
+
}>>>;
|
|
6269
|
+
defaultSearchable: z.ZodOptional<z.ZodBoolean>;
|
|
5520
6270
|
}, {
|
|
5521
6271
|
defaultTimeZone: z.ZodOptional<z.ZodString>;
|
|
5522
6272
|
defaultCurrency: z.ZodOptional<z.ZodString>;
|
|
@@ -5549,7 +6299,10 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5549
6299
|
inherited?: boolean | undefined;
|
|
5550
6300
|
precision?: number | undefined;
|
|
5551
6301
|
readOnly?: boolean | undefined;
|
|
6302
|
+
searchable?: boolean | undefined;
|
|
6303
|
+
tag?: string[] | undefined;
|
|
5552
6304
|
}> | undefined;
|
|
6305
|
+
defaultSearchable?: boolean | undefined;
|
|
5553
6306
|
contents?: string[] | undefined;
|
|
5554
6307
|
coverageTerms?: string[] | undefined;
|
|
5555
6308
|
charges?: string[] | undefined;
|
|
@@ -5568,6 +6321,25 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5568
6321
|
documents?: string[] | undefined;
|
|
5569
6322
|
plugins?: any;
|
|
5570
6323
|
tables?: any;
|
|
6324
|
+
staticData?: Record<string, {
|
|
6325
|
+
options?: string[] | undefined;
|
|
6326
|
+
type?: string | undefined;
|
|
6327
|
+
displayName?: string | undefined;
|
|
6328
|
+
defaultValue?: string | undefined;
|
|
6329
|
+
minLength?: number | undefined;
|
|
6330
|
+
maxLength?: number | undefined;
|
|
6331
|
+
regex?: string | undefined;
|
|
6332
|
+
min?: string | undefined;
|
|
6333
|
+
multiline?: boolean | undefined;
|
|
6334
|
+
max?: string | undefined;
|
|
6335
|
+
overrides?: string | undefined;
|
|
6336
|
+
scope?: string | undefined;
|
|
6337
|
+
inherited?: boolean | undefined;
|
|
6338
|
+
precision?: number | undefined;
|
|
6339
|
+
readOnly?: boolean | undefined;
|
|
6340
|
+
searchable?: boolean | undefined;
|
|
6341
|
+
tag?: string[] | undefined;
|
|
6342
|
+
}> | undefined;
|
|
5571
6343
|
}, {
|
|
5572
6344
|
displayName?: string | undefined;
|
|
5573
6345
|
abstract?: boolean | undefined;
|
|
@@ -5588,7 +6360,10 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5588
6360
|
inherited?: boolean | undefined;
|
|
5589
6361
|
precision?: number | undefined;
|
|
5590
6362
|
readOnly?: boolean | undefined;
|
|
6363
|
+
searchable?: boolean | undefined;
|
|
6364
|
+
tag?: string[] | undefined;
|
|
5591
6365
|
}> | undefined;
|
|
6366
|
+
defaultSearchable?: boolean | undefined;
|
|
5592
6367
|
contents?: string[] | undefined;
|
|
5593
6368
|
coverageTerms?: string[] | undefined;
|
|
5594
6369
|
charges?: string[] | undefined;
|
|
@@ -5607,6 +6382,25 @@ export declare const productConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5607
6382
|
documents?: string[] | undefined;
|
|
5608
6383
|
plugins?: any;
|
|
5609
6384
|
tables?: any;
|
|
6385
|
+
staticData?: Record<string, {
|
|
6386
|
+
options?: string[] | undefined;
|
|
6387
|
+
type?: string | undefined;
|
|
6388
|
+
displayName?: string | undefined;
|
|
6389
|
+
defaultValue?: string | undefined;
|
|
6390
|
+
minLength?: number | undefined;
|
|
6391
|
+
maxLength?: number | undefined;
|
|
6392
|
+
regex?: string | undefined;
|
|
6393
|
+
min?: string | undefined;
|
|
6394
|
+
multiline?: boolean | undefined;
|
|
6395
|
+
max?: string | undefined;
|
|
6396
|
+
overrides?: string | undefined;
|
|
6397
|
+
scope?: string | undefined;
|
|
6398
|
+
inherited?: boolean | undefined;
|
|
6399
|
+
precision?: number | undefined;
|
|
6400
|
+
readOnly?: boolean | undefined;
|
|
6401
|
+
searchable?: boolean | undefined;
|
|
6402
|
+
tag?: string[] | undefined;
|
|
6403
|
+
}> | undefined;
|
|
5610
6404
|
}>;
|
|
5611
6405
|
|
|
5612
6406
|
export declare type Quantifiers = z.infer<typeof quantifiersSchema>;
|
|
@@ -5623,7 +6417,7 @@ export declare const quoteBillingTriggerEnumSchema: z.ZodEnum<["accept", "issue"
|
|
|
5623
6417
|
|
|
5624
6418
|
export declare type QuoteDurationBasis = z.infer<typeof quoteDurationBasisEnumSchema>;
|
|
5625
6419
|
|
|
5626
|
-
export declare const quoteDurationBasisEnumSchema: z.ZodEnum<["
|
|
6420
|
+
export declare const quoteDurationBasisEnumSchema: z.ZodEnum<["years", "months", "weeks", "days", "hours"]>;
|
|
5627
6421
|
|
|
5628
6422
|
export declare type QuotePriceChargeCategory = z.infer<typeof quotePriceChargeCategoryEnum>;
|
|
5629
6423
|
|
|
@@ -5679,7 +6473,7 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
5679
6473
|
startTime: z.ZodString;
|
|
5680
6474
|
endTime: z.ZodString;
|
|
5681
6475
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
5682
|
-
durationBasis: z.ZodOptional<z.ZodEnum<["
|
|
6476
|
+
durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
|
|
5683
6477
|
items: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5684
6478
|
locator: z.ZodString;
|
|
5685
6479
|
elementLocator: z.ZodString;
|
|
@@ -5724,7 +6518,7 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
5724
6518
|
quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
|
|
5725
6519
|
accountLocator: string;
|
|
5726
6520
|
quoteLocator: string;
|
|
5727
|
-
durationBasis?: "
|
|
6521
|
+
durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
5728
6522
|
duration?: number | undefined;
|
|
5729
6523
|
items?: {
|
|
5730
6524
|
locator: string;
|
|
@@ -5746,7 +6540,7 @@ export declare const quotePriceResponseSchema: z.ZodObject<{
|
|
|
5746
6540
|
quoteState: "draft" | "validated" | "priced" | "underwritten" | "accepted" | "issued" | "earlyUnderwritten" | "underwrittenBlocked" | "declined" | "rejected" | "refused" | "discarded";
|
|
5747
6541
|
accountLocator: string;
|
|
5748
6542
|
quoteLocator: string;
|
|
5749
|
-
durationBasis?: "
|
|
6543
|
+
durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
5750
6544
|
duration?: number | undefined;
|
|
5751
6545
|
items?: {
|
|
5752
6546
|
locator: string;
|
|
@@ -6032,7 +6826,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6032
6826
|
}>>;
|
|
6033
6827
|
type: z.ZodOptional<z.ZodString>;
|
|
6034
6828
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6035
|
-
durationBasis: z.ZodOptional<z.ZodEnum<["
|
|
6829
|
+
durationBasis: z.ZodOptional<z.ZodEnum<["years", "months", "weeks", "days", "hours"]>>;
|
|
6036
6830
|
boundTime: z.ZodOptional<z.ZodString>;
|
|
6037
6831
|
issuedTime: z.ZodOptional<z.ZodString>;
|
|
6038
6832
|
policyLocator: z.ZodOptional<z.ZodString>;
|
|
@@ -6072,6 +6866,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6072
6866
|
billingLevel: z.ZodOptional<z.ZodEnum<["account", "inherit", "policy"]>>;
|
|
6073
6867
|
billingTrigger: z.ZodOptional<z.ZodEnum<["accept", "issue"]>>;
|
|
6074
6868
|
coverageTerms: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6869
|
+
groupLocator: z.ZodOptional<z.ZodString>;
|
|
6075
6870
|
}, "strip", z.ZodTypeAny, {
|
|
6076
6871
|
locator: string;
|
|
6077
6872
|
productName: string;
|
|
@@ -6086,7 +6881,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6086
6881
|
currency?: string | undefined;
|
|
6087
6882
|
expirationTime?: string | undefined;
|
|
6088
6883
|
timezone?: string | undefined;
|
|
6089
|
-
durationBasis?: "
|
|
6884
|
+
durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
6090
6885
|
preferences?: any;
|
|
6091
6886
|
underwritingStatus?: string | undefined;
|
|
6092
6887
|
element?: ({
|
|
@@ -6126,6 +6921,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6126
6921
|
} | undefined;
|
|
6127
6922
|
autoRenewalPlanName?: string | undefined;
|
|
6128
6923
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
6924
|
+
groupLocator?: string | undefined;
|
|
6129
6925
|
}, {
|
|
6130
6926
|
locator: string;
|
|
6131
6927
|
productName: string;
|
|
@@ -6140,7 +6936,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6140
6936
|
currency?: string | undefined;
|
|
6141
6937
|
expirationTime?: string | undefined;
|
|
6142
6938
|
timezone?: string | undefined;
|
|
6143
|
-
durationBasis?: "
|
|
6939
|
+
durationBasis?: "years" | "months" | "weeks" | "days" | "hours" | undefined;
|
|
6144
6940
|
preferences?: any;
|
|
6145
6941
|
underwritingStatus?: string | undefined;
|
|
6146
6942
|
element?: ({
|
|
@@ -6180,6 +6976,7 @@ export declare const quoteResponseSchema: z.ZodObject<{
|
|
|
6180
6976
|
} | undefined;
|
|
6181
6977
|
autoRenewalPlanName?: string | undefined;
|
|
6182
6978
|
billingTrigger?: "accept" | "issue" | undefined;
|
|
6979
|
+
groupLocator?: string | undefined;
|
|
6183
6980
|
}>;
|
|
6184
6981
|
|
|
6185
6982
|
export declare type QuoteState = z.infer<typeof quoteStateEnumSchema>;
|
|
@@ -6340,6 +7137,20 @@ export declare const resetTransactionOptionsRequestSchema: z.ZodObject<{
|
|
|
6340
7137
|
resetFlags?: string[] | undefined;
|
|
6341
7138
|
}>;
|
|
6342
7139
|
|
|
7140
|
+
export declare type reversalCreditTypeEnum = z.infer<typeof reversalCreditTypeEnumSchema>;
|
|
7141
|
+
|
|
7142
|
+
export declare const reversalCreditTypeEnumSchema: z.ZodEnum<["any", "creditDistribution", "payment"]>;
|
|
7143
|
+
|
|
7144
|
+
export declare type ReversalType = z.infer<typeof reversalTypeSchema>;
|
|
7145
|
+
|
|
7146
|
+
export declare const reversalTypeSchema: z.ZodObject<{
|
|
7147
|
+
creditType: z.ZodOptional<z.ZodEnum<["any", "creditDistribution", "payment"]>>;
|
|
7148
|
+
}, "strip", z.ZodTypeAny, {
|
|
7149
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
7150
|
+
}, {
|
|
7151
|
+
creditType?: "any" | "creditDistribution" | "payment" | undefined;
|
|
7152
|
+
}>;
|
|
7153
|
+
|
|
6343
7154
|
export declare type SegmentResponse = z.infer<typeof segmentResponseSchema>;
|
|
6344
7155
|
|
|
6345
7156
|
export declare const segmentResponseSchema: z.ZodObject<{
|