@opencrvs/toolkit 1.8.0-rc.f7aaf07 → 1.8.0-rc.f7e4aad
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +726 -662
- package/dist/commons/events/ActionDocument.d.ts +381 -387
- package/dist/commons/events/ActionInput.d.ts +126 -126
- package/dist/commons/events/CountryConfigQueryInput.d.ts +884 -222
- package/dist/commons/events/CreatedAtLocation.d.ts +1 -2
- package/dist/commons/events/Draft.d.ts +23 -23
- package/dist/commons/events/EventDocument.d.ts +270 -275
- package/dist/commons/events/EventIndex.d.ts +120 -141
- package/dist/commons/events/EventMetadata.d.ts +38 -29
- package/dist/commons/events/WorkqueueConfig.d.ts +1504 -494
- package/dist/commons/events/test.utils.d.ts +16 -6
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +7 -6
- package/dist/conditionals/index.js +20 -17
- package/dist/events/index.js +176 -102
- package/package.json +3 -3
@@ -74,6 +74,62 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
74
74
|
gte: string;
|
75
75
|
lte: string;
|
76
76
|
}>]>>>;
|
77
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
78
|
+
type: z.ZodLiteral<"exact">;
|
79
|
+
term: z.ZodString;
|
80
|
+
}, {
|
81
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
82
|
+
}>, "strip", z.ZodTypeAny, {
|
83
|
+
type: "exact";
|
84
|
+
term: string;
|
85
|
+
}, {
|
86
|
+
type: "exact";
|
87
|
+
term: string;
|
88
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
89
|
+
type: z.ZodLiteral<"range">;
|
90
|
+
gte: z.ZodString;
|
91
|
+
lte: z.ZodString;
|
92
|
+
}, {
|
93
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
94
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
95
|
+
}>, "strip", z.ZodTypeAny, {
|
96
|
+
type: "range";
|
97
|
+
gte: string;
|
98
|
+
lte: string;
|
99
|
+
}, {
|
100
|
+
type: "range";
|
101
|
+
gte: string;
|
102
|
+
lte: string;
|
103
|
+
}>]>>>;
|
104
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
105
|
+
type: z.ZodLiteral<"within">;
|
106
|
+
location: z.ZodString;
|
107
|
+
}, "strip", z.ZodTypeAny, {
|
108
|
+
type: "within";
|
109
|
+
location: string;
|
110
|
+
}, {
|
111
|
+
type: "within";
|
112
|
+
location: string;
|
113
|
+
}>, z.ZodObject<{
|
114
|
+
type: z.ZodLiteral<"exact">;
|
115
|
+
term: z.ZodString;
|
116
|
+
}, "strip", z.ZodTypeAny, {
|
117
|
+
type: "exact";
|
118
|
+
term: string;
|
119
|
+
}, {
|
120
|
+
type: "exact";
|
121
|
+
term: string;
|
122
|
+
}>]>>>;
|
123
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
124
|
+
type: z.ZodLiteral<"exact">;
|
125
|
+
term: z.ZodString;
|
126
|
+
}, "strip", z.ZodTypeAny, {
|
127
|
+
type: "exact";
|
128
|
+
term: string;
|
129
|
+
}, {
|
130
|
+
type: "exact";
|
131
|
+
term: string;
|
132
|
+
}>>>;
|
77
133
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
78
134
|
type: z.ZodLiteral<"within">;
|
79
135
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -223,25 +279,26 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
223
279
|
type: "exact";
|
224
280
|
term: string;
|
225
281
|
}>>>;
|
226
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
227
|
-
|
228
|
-
|
282
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
283
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
284
|
+
readonly PRINTED: "printed";
|
285
|
+
readonly INCOMPLETE: "incomplete";
|
286
|
+
readonly REJECTED: "rejected";
|
287
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
288
|
+
}>]>, "many">>;
|
289
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
290
|
+
readonly PRINTED: "printed";
|
291
|
+
readonly INCOMPLETE: "incomplete";
|
292
|
+
readonly REJECTED: "rejected";
|
293
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
294
|
+
}>]>, "many">>;
|
229
295
|
}, "strip", z.ZodTypeAny, {
|
230
|
-
|
231
|
-
|
296
|
+
anyOf?: string[] | undefined;
|
297
|
+
noneOf?: string[] | undefined;
|
232
298
|
}, {
|
233
|
-
|
234
|
-
|
235
|
-
}
|
236
|
-
type: z.ZodLiteral<"not">;
|
237
|
-
term: z.ZodString;
|
238
|
-
}, "strip", z.ZodTypeAny, {
|
239
|
-
type: "not";
|
240
|
-
term: string;
|
241
|
-
}, {
|
242
|
-
type: "not";
|
243
|
-
term: string;
|
244
|
-
}>]>, "many">>>;
|
299
|
+
anyOf?: string[] | undefined;
|
300
|
+
noneOf?: string[] | undefined;
|
301
|
+
}>>>;
|
245
302
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
246
303
|
}, "strip", z.ZodTypeAny, {
|
247
304
|
status?: {
|
@@ -313,14 +370,30 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
313
370
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
314
371
|
};
|
315
372
|
} | undefined;
|
316
|
-
flags?:
|
317
|
-
|
318
|
-
|
373
|
+
flags?: {
|
374
|
+
anyOf?: string[] | undefined;
|
375
|
+
noneOf?: string[] | undefined;
|
376
|
+
} | undefined;
|
377
|
+
eventType?: string | undefined;
|
378
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
379
|
+
type: "range";
|
380
|
+
gte: string;
|
381
|
+
lte: string;
|
319
382
|
} | {
|
320
|
-
type: "
|
383
|
+
type: "exact";
|
321
384
|
term: string;
|
322
|
-
}
|
323
|
-
|
385
|
+
} | undefined;
|
386
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
387
|
+
type: "exact";
|
388
|
+
term: string;
|
389
|
+
} | {
|
390
|
+
type: "within";
|
391
|
+
location: string;
|
392
|
+
} | undefined;
|
393
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
394
|
+
type: "exact";
|
395
|
+
term: string;
|
396
|
+
} | undefined;
|
324
397
|
}, {
|
325
398
|
status?: {
|
326
399
|
type: "exact";
|
@@ -391,14 +464,30 @@ export declare const SerializedQueryExpression: z.ZodObject<{
|
|
391
464
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
392
465
|
};
|
393
466
|
} | undefined;
|
394
|
-
flags?:
|
395
|
-
|
396
|
-
|
467
|
+
flags?: {
|
468
|
+
anyOf?: string[] | undefined;
|
469
|
+
noneOf?: string[] | undefined;
|
470
|
+
} | undefined;
|
471
|
+
eventType?: string | undefined;
|
472
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
473
|
+
type: "range";
|
474
|
+
gte: string;
|
475
|
+
lte: string;
|
397
476
|
} | {
|
398
|
-
type: "
|
477
|
+
type: "exact";
|
399
478
|
term: string;
|
400
|
-
}
|
401
|
-
|
479
|
+
} | undefined;
|
480
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
481
|
+
type: "exact";
|
482
|
+
term: string;
|
483
|
+
} | {
|
484
|
+
type: "within";
|
485
|
+
location: string;
|
486
|
+
} | undefined;
|
487
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
488
|
+
type: "exact";
|
489
|
+
term: string;
|
490
|
+
} | undefined;
|
402
491
|
}>;
|
403
492
|
export type SerializedQueryExpression = z.infer<typeof SerializedQueryExpression>;
|
404
493
|
export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
@@ -478,6 +567,62 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
478
567
|
gte: string;
|
479
568
|
lte: string;
|
480
569
|
}>]>>>;
|
570
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
571
|
+
type: z.ZodLiteral<"exact">;
|
572
|
+
term: z.ZodString;
|
573
|
+
}, {
|
574
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
575
|
+
}>, "strip", z.ZodTypeAny, {
|
576
|
+
type: "exact";
|
577
|
+
term: string;
|
578
|
+
}, {
|
579
|
+
type: "exact";
|
580
|
+
term: string;
|
581
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
582
|
+
type: z.ZodLiteral<"range">;
|
583
|
+
gte: z.ZodString;
|
584
|
+
lte: z.ZodString;
|
585
|
+
}, {
|
586
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
587
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
588
|
+
}>, "strip", z.ZodTypeAny, {
|
589
|
+
type: "range";
|
590
|
+
gte: string;
|
591
|
+
lte: string;
|
592
|
+
}, {
|
593
|
+
type: "range";
|
594
|
+
gte: string;
|
595
|
+
lte: string;
|
596
|
+
}>]>>>;
|
597
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
598
|
+
type: z.ZodLiteral<"within">;
|
599
|
+
location: z.ZodString;
|
600
|
+
}, "strip", z.ZodTypeAny, {
|
601
|
+
type: "within";
|
602
|
+
location: string;
|
603
|
+
}, {
|
604
|
+
type: "within";
|
605
|
+
location: string;
|
606
|
+
}>, z.ZodObject<{
|
607
|
+
type: z.ZodLiteral<"exact">;
|
608
|
+
term: z.ZodString;
|
609
|
+
}, "strip", z.ZodTypeAny, {
|
610
|
+
type: "exact";
|
611
|
+
term: string;
|
612
|
+
}, {
|
613
|
+
type: "exact";
|
614
|
+
term: string;
|
615
|
+
}>]>>>;
|
616
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
617
|
+
type: z.ZodLiteral<"exact">;
|
618
|
+
term: z.ZodString;
|
619
|
+
}, "strip", z.ZodTypeAny, {
|
620
|
+
type: "exact";
|
621
|
+
term: string;
|
622
|
+
}, {
|
623
|
+
type: "exact";
|
624
|
+
term: string;
|
625
|
+
}>>>;
|
481
626
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
482
627
|
type: z.ZodLiteral<"within">;
|
483
628
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -627,25 +772,26 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
627
772
|
type: "exact";
|
628
773
|
term: string;
|
629
774
|
}>>>;
|
630
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
775
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
776
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
777
|
+
readonly PRINTED: "printed";
|
778
|
+
readonly INCOMPLETE: "incomplete";
|
779
|
+
readonly REJECTED: "rejected";
|
780
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
781
|
+
}>]>, "many">>;
|
782
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
783
|
+
readonly PRINTED: "printed";
|
784
|
+
readonly INCOMPLETE: "incomplete";
|
785
|
+
readonly REJECTED: "rejected";
|
786
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
787
|
+
}>]>, "many">>;
|
642
788
|
}, "strip", z.ZodTypeAny, {
|
643
|
-
|
644
|
-
|
789
|
+
anyOf?: string[] | undefined;
|
790
|
+
noneOf?: string[] | undefined;
|
645
791
|
}, {
|
646
|
-
|
647
|
-
|
648
|
-
}
|
792
|
+
anyOf?: string[] | undefined;
|
793
|
+
noneOf?: string[] | undefined;
|
794
|
+
}>>>;
|
649
795
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
650
796
|
}, "strip", z.ZodTypeAny, {
|
651
797
|
status?: {
|
@@ -717,14 +863,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
717
863
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
718
864
|
};
|
719
865
|
} | undefined;
|
720
|
-
flags?:
|
721
|
-
|
722
|
-
|
866
|
+
flags?: {
|
867
|
+
anyOf?: string[] | undefined;
|
868
|
+
noneOf?: string[] | undefined;
|
869
|
+
} | undefined;
|
870
|
+
eventType?: string | undefined;
|
871
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
872
|
+
type: "range";
|
873
|
+
gte: string;
|
874
|
+
lte: string;
|
723
875
|
} | {
|
724
|
-
type: "
|
876
|
+
type: "exact";
|
725
877
|
term: string;
|
726
|
-
}
|
727
|
-
|
878
|
+
} | undefined;
|
879
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
880
|
+
type: "exact";
|
881
|
+
term: string;
|
882
|
+
} | {
|
883
|
+
type: "within";
|
884
|
+
location: string;
|
885
|
+
} | undefined;
|
886
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
887
|
+
type: "exact";
|
888
|
+
term: string;
|
889
|
+
} | undefined;
|
728
890
|
}, {
|
729
891
|
status?: {
|
730
892
|
type: "exact";
|
@@ -795,14 +957,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
795
957
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
796
958
|
};
|
797
959
|
} | undefined;
|
798
|
-
flags?:
|
799
|
-
|
800
|
-
|
960
|
+
flags?: {
|
961
|
+
anyOf?: string[] | undefined;
|
962
|
+
noneOf?: string[] | undefined;
|
963
|
+
} | undefined;
|
964
|
+
eventType?: string | undefined;
|
965
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
966
|
+
type: "range";
|
967
|
+
gte: string;
|
968
|
+
lte: string;
|
801
969
|
} | {
|
802
|
-
type: "
|
970
|
+
type: "exact";
|
803
971
|
term: string;
|
804
|
-
}
|
805
|
-
|
972
|
+
} | undefined;
|
973
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
974
|
+
type: "exact";
|
975
|
+
term: string;
|
976
|
+
} | {
|
977
|
+
type: "within";
|
978
|
+
location: string;
|
979
|
+
} | undefined;
|
980
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
981
|
+
type: "exact";
|
982
|
+
term: string;
|
983
|
+
} | undefined;
|
806
984
|
}>, "many">;
|
807
985
|
}, "strip", z.ZodTypeAny, {
|
808
986
|
type: "and";
|
@@ -876,14 +1054,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
876
1054
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
877
1055
|
};
|
878
1056
|
} | undefined;
|
879
|
-
flags?:
|
880
|
-
|
881
|
-
|
1057
|
+
flags?: {
|
1058
|
+
anyOf?: string[] | undefined;
|
1059
|
+
noneOf?: string[] | undefined;
|
1060
|
+
} | undefined;
|
1061
|
+
eventType?: string | undefined;
|
1062
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1063
|
+
type: "range";
|
1064
|
+
gte: string;
|
1065
|
+
lte: string;
|
882
1066
|
} | {
|
883
|
-
type: "
|
1067
|
+
type: "exact";
|
884
1068
|
term: string;
|
885
|
-
}
|
886
|
-
|
1069
|
+
} | undefined;
|
1070
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1071
|
+
type: "exact";
|
1072
|
+
term: string;
|
1073
|
+
} | {
|
1074
|
+
type: "within";
|
1075
|
+
location: string;
|
1076
|
+
} | undefined;
|
1077
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1078
|
+
type: "exact";
|
1079
|
+
term: string;
|
1080
|
+
} | undefined;
|
887
1081
|
}[];
|
888
1082
|
}, {
|
889
1083
|
type: "and";
|
@@ -957,14 +1151,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
957
1151
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
958
1152
|
};
|
959
1153
|
} | undefined;
|
960
|
-
flags?:
|
961
|
-
|
962
|
-
|
1154
|
+
flags?: {
|
1155
|
+
anyOf?: string[] | undefined;
|
1156
|
+
noneOf?: string[] | undefined;
|
1157
|
+
} | undefined;
|
1158
|
+
eventType?: string | undefined;
|
1159
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1160
|
+
type: "range";
|
1161
|
+
gte: string;
|
1162
|
+
lte: string;
|
963
1163
|
} | {
|
964
|
-
type: "
|
1164
|
+
type: "exact";
|
965
1165
|
term: string;
|
966
|
-
}
|
967
|
-
|
1166
|
+
} | undefined;
|
1167
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1168
|
+
type: "exact";
|
1169
|
+
term: string;
|
1170
|
+
} | {
|
1171
|
+
type: "within";
|
1172
|
+
location: string;
|
1173
|
+
} | undefined;
|
1174
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1175
|
+
type: "exact";
|
1176
|
+
term: string;
|
1177
|
+
} | undefined;
|
968
1178
|
}[];
|
969
1179
|
}>, z.ZodObject<{
|
970
1180
|
type: z.ZodLiteral<"or">;
|
@@ -1043,6 +1253,62 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1043
1253
|
gte: string;
|
1044
1254
|
lte: string;
|
1045
1255
|
}>]>>>;
|
1256
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1257
|
+
type: z.ZodLiteral<"exact">;
|
1258
|
+
term: z.ZodString;
|
1259
|
+
}, {
|
1260
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1261
|
+
}>, "strip", z.ZodTypeAny, {
|
1262
|
+
type: "exact";
|
1263
|
+
term: string;
|
1264
|
+
}, {
|
1265
|
+
type: "exact";
|
1266
|
+
term: string;
|
1267
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1268
|
+
type: z.ZodLiteral<"range">;
|
1269
|
+
gte: z.ZodString;
|
1270
|
+
lte: z.ZodString;
|
1271
|
+
}, {
|
1272
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1273
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1274
|
+
}>, "strip", z.ZodTypeAny, {
|
1275
|
+
type: "range";
|
1276
|
+
gte: string;
|
1277
|
+
lte: string;
|
1278
|
+
}, {
|
1279
|
+
type: "range";
|
1280
|
+
gte: string;
|
1281
|
+
lte: string;
|
1282
|
+
}>]>>>;
|
1283
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1284
|
+
type: z.ZodLiteral<"within">;
|
1285
|
+
location: z.ZodString;
|
1286
|
+
}, "strip", z.ZodTypeAny, {
|
1287
|
+
type: "within";
|
1288
|
+
location: string;
|
1289
|
+
}, {
|
1290
|
+
type: "within";
|
1291
|
+
location: string;
|
1292
|
+
}>, z.ZodObject<{
|
1293
|
+
type: z.ZodLiteral<"exact">;
|
1294
|
+
term: z.ZodString;
|
1295
|
+
}, "strip", z.ZodTypeAny, {
|
1296
|
+
type: "exact";
|
1297
|
+
term: string;
|
1298
|
+
}, {
|
1299
|
+
type: "exact";
|
1300
|
+
term: string;
|
1301
|
+
}>]>>>;
|
1302
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1303
|
+
type: z.ZodLiteral<"exact">;
|
1304
|
+
term: z.ZodString;
|
1305
|
+
}, "strip", z.ZodTypeAny, {
|
1306
|
+
type: "exact";
|
1307
|
+
term: string;
|
1308
|
+
}, {
|
1309
|
+
type: "exact";
|
1310
|
+
term: string;
|
1311
|
+
}>>>;
|
1046
1312
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1047
1313
|
type: z.ZodLiteral<"within">;
|
1048
1314
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -1192,25 +1458,26 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1192
1458
|
type: "exact";
|
1193
1459
|
term: string;
|
1194
1460
|
}>>>;
|
1195
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
1196
|
-
|
1197
|
-
|
1461
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1462
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
1463
|
+
readonly PRINTED: "printed";
|
1464
|
+
readonly INCOMPLETE: "incomplete";
|
1465
|
+
readonly REJECTED: "rejected";
|
1466
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
1467
|
+
}>]>, "many">>;
|
1468
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
1469
|
+
readonly PRINTED: "printed";
|
1470
|
+
readonly INCOMPLETE: "incomplete";
|
1471
|
+
readonly REJECTED: "rejected";
|
1472
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
1473
|
+
}>]>, "many">>;
|
1198
1474
|
}, "strip", z.ZodTypeAny, {
|
1199
|
-
|
1200
|
-
|
1475
|
+
anyOf?: string[] | undefined;
|
1476
|
+
noneOf?: string[] | undefined;
|
1201
1477
|
}, {
|
1202
|
-
|
1203
|
-
|
1204
|
-
}
|
1205
|
-
type: z.ZodLiteral<"not">;
|
1206
|
-
term: z.ZodString;
|
1207
|
-
}, "strip", z.ZodTypeAny, {
|
1208
|
-
type: "not";
|
1209
|
-
term: string;
|
1210
|
-
}, {
|
1211
|
-
type: "not";
|
1212
|
-
term: string;
|
1213
|
-
}>]>, "many">>>;
|
1478
|
+
anyOf?: string[] | undefined;
|
1479
|
+
noneOf?: string[] | undefined;
|
1480
|
+
}>>>;
|
1214
1481
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
1215
1482
|
}, "strip", z.ZodTypeAny, {
|
1216
1483
|
status?: {
|
@@ -1282,14 +1549,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1282
1549
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1283
1550
|
};
|
1284
1551
|
} | undefined;
|
1285
|
-
flags?:
|
1286
|
-
|
1287
|
-
|
1552
|
+
flags?: {
|
1553
|
+
anyOf?: string[] | undefined;
|
1554
|
+
noneOf?: string[] | undefined;
|
1555
|
+
} | undefined;
|
1556
|
+
eventType?: string | undefined;
|
1557
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1558
|
+
type: "range";
|
1559
|
+
gte: string;
|
1560
|
+
lte: string;
|
1288
1561
|
} | {
|
1289
|
-
type: "
|
1562
|
+
type: "exact";
|
1290
1563
|
term: string;
|
1291
|
-
}
|
1292
|
-
|
1564
|
+
} | undefined;
|
1565
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1566
|
+
type: "exact";
|
1567
|
+
term: string;
|
1568
|
+
} | {
|
1569
|
+
type: "within";
|
1570
|
+
location: string;
|
1571
|
+
} | undefined;
|
1572
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1573
|
+
type: "exact";
|
1574
|
+
term: string;
|
1575
|
+
} | undefined;
|
1293
1576
|
}, {
|
1294
1577
|
status?: {
|
1295
1578
|
type: "exact";
|
@@ -1360,14 +1643,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1360
1643
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1361
1644
|
};
|
1362
1645
|
} | undefined;
|
1363
|
-
flags?:
|
1364
|
-
|
1365
|
-
|
1646
|
+
flags?: {
|
1647
|
+
anyOf?: string[] | undefined;
|
1648
|
+
noneOf?: string[] | undefined;
|
1649
|
+
} | undefined;
|
1650
|
+
eventType?: string | undefined;
|
1651
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1652
|
+
type: "range";
|
1653
|
+
gte: string;
|
1654
|
+
lte: string;
|
1366
1655
|
} | {
|
1367
|
-
type: "
|
1656
|
+
type: "exact";
|
1368
1657
|
term: string;
|
1369
|
-
}
|
1370
|
-
|
1658
|
+
} | undefined;
|
1659
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1660
|
+
type: "exact";
|
1661
|
+
term: string;
|
1662
|
+
} | {
|
1663
|
+
type: "within";
|
1664
|
+
location: string;
|
1665
|
+
} | undefined;
|
1666
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1667
|
+
type: "exact";
|
1668
|
+
term: string;
|
1669
|
+
} | undefined;
|
1371
1670
|
}>, "many">;
|
1372
1671
|
}, "strip", z.ZodTypeAny, {
|
1373
1672
|
type: "or";
|
@@ -1441,14 +1740,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1441
1740
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1442
1741
|
};
|
1443
1742
|
} | undefined;
|
1444
|
-
flags?:
|
1445
|
-
|
1446
|
-
|
1743
|
+
flags?: {
|
1744
|
+
anyOf?: string[] | undefined;
|
1745
|
+
noneOf?: string[] | undefined;
|
1746
|
+
} | undefined;
|
1747
|
+
eventType?: string | undefined;
|
1748
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1749
|
+
type: "range";
|
1750
|
+
gte: string;
|
1751
|
+
lte: string;
|
1447
1752
|
} | {
|
1448
|
-
type: "
|
1753
|
+
type: "exact";
|
1449
1754
|
term: string;
|
1450
|
-
}
|
1451
|
-
|
1755
|
+
} | undefined;
|
1756
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1757
|
+
type: "exact";
|
1758
|
+
term: string;
|
1759
|
+
} | {
|
1760
|
+
type: "within";
|
1761
|
+
location: string;
|
1762
|
+
} | undefined;
|
1763
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1764
|
+
type: "exact";
|
1765
|
+
term: string;
|
1766
|
+
} | undefined;
|
1452
1767
|
}[];
|
1453
1768
|
}, {
|
1454
1769
|
type: "or";
|
@@ -1522,14 +1837,30 @@ export declare const CountryConfigQueryType: z.ZodDiscriminatedUnion<"type", [z.
|
|
1522
1837
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1523
1838
|
};
|
1524
1839
|
} | undefined;
|
1525
|
-
flags?:
|
1526
|
-
|
1527
|
-
|
1840
|
+
flags?: {
|
1841
|
+
anyOf?: string[] | undefined;
|
1842
|
+
noneOf?: string[] | undefined;
|
1843
|
+
} | undefined;
|
1844
|
+
eventType?: string | undefined;
|
1845
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
1846
|
+
type: "range";
|
1847
|
+
gte: string;
|
1848
|
+
lte: string;
|
1528
1849
|
} | {
|
1529
|
-
type: "
|
1850
|
+
type: "exact";
|
1530
1851
|
term: string;
|
1531
|
-
}
|
1532
|
-
|
1852
|
+
} | undefined;
|
1853
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
1854
|
+
type: "exact";
|
1855
|
+
term: string;
|
1856
|
+
} | {
|
1857
|
+
type: "within";
|
1858
|
+
location: string;
|
1859
|
+
} | undefined;
|
1860
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
1861
|
+
type: "exact";
|
1862
|
+
term: string;
|
1863
|
+
} | undefined;
|
1533
1864
|
}[];
|
1534
1865
|
}>]>;
|
1535
1866
|
export type CountryConfigQueryType = z.infer<typeof CountryConfigQueryType>;
|
@@ -1608,6 +1939,62 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1608
1939
|
gte: string;
|
1609
1940
|
lte: string;
|
1610
1941
|
}>]>>>;
|
1942
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
1943
|
+
type: z.ZodLiteral<"exact">;
|
1944
|
+
term: z.ZodString;
|
1945
|
+
}, {
|
1946
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1947
|
+
}>, "strip", z.ZodTypeAny, {
|
1948
|
+
type: "exact";
|
1949
|
+
term: string;
|
1950
|
+
}, {
|
1951
|
+
type: "exact";
|
1952
|
+
term: string;
|
1953
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1954
|
+
type: z.ZodLiteral<"range">;
|
1955
|
+
gte: z.ZodString;
|
1956
|
+
lte: z.ZodString;
|
1957
|
+
}, {
|
1958
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1959
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
1960
|
+
}>, "strip", z.ZodTypeAny, {
|
1961
|
+
type: "range";
|
1962
|
+
gte: string;
|
1963
|
+
lte: string;
|
1964
|
+
}, {
|
1965
|
+
type: "range";
|
1966
|
+
gte: string;
|
1967
|
+
lte: string;
|
1968
|
+
}>]>>>;
|
1969
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1970
|
+
type: z.ZodLiteral<"within">;
|
1971
|
+
location: z.ZodString;
|
1972
|
+
}, "strip", z.ZodTypeAny, {
|
1973
|
+
type: "within";
|
1974
|
+
location: string;
|
1975
|
+
}, {
|
1976
|
+
type: "within";
|
1977
|
+
location: string;
|
1978
|
+
}>, z.ZodObject<{
|
1979
|
+
type: z.ZodLiteral<"exact">;
|
1980
|
+
term: z.ZodString;
|
1981
|
+
}, "strip", z.ZodTypeAny, {
|
1982
|
+
type: "exact";
|
1983
|
+
term: string;
|
1984
|
+
}, {
|
1985
|
+
type: "exact";
|
1986
|
+
term: string;
|
1987
|
+
}>]>>>;
|
1988
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
1989
|
+
type: z.ZodLiteral<"exact">;
|
1990
|
+
term: z.ZodString;
|
1991
|
+
}, "strip", z.ZodTypeAny, {
|
1992
|
+
type: "exact";
|
1993
|
+
term: string;
|
1994
|
+
}, {
|
1995
|
+
type: "exact";
|
1996
|
+
term: string;
|
1997
|
+
}>>>;
|
1611
1998
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1612
1999
|
type: z.ZodLiteral<"within">;
|
1613
2000
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -1757,25 +2144,26 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1757
2144
|
type: "exact";
|
1758
2145
|
term: string;
|
1759
2146
|
}>>>;
|
1760
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
|
1770
|
-
|
1771
|
-
|
2147
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2148
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2149
|
+
readonly PRINTED: "printed";
|
2150
|
+
readonly INCOMPLETE: "incomplete";
|
2151
|
+
readonly REJECTED: "rejected";
|
2152
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
2153
|
+
}>]>, "many">>;
|
2154
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2155
|
+
readonly PRINTED: "printed";
|
2156
|
+
readonly INCOMPLETE: "incomplete";
|
2157
|
+
readonly REJECTED: "rejected";
|
2158
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
2159
|
+
}>]>, "many">>;
|
1772
2160
|
}, "strip", z.ZodTypeAny, {
|
1773
|
-
|
1774
|
-
|
2161
|
+
anyOf?: string[] | undefined;
|
2162
|
+
noneOf?: string[] | undefined;
|
1775
2163
|
}, {
|
1776
|
-
|
1777
|
-
|
1778
|
-
}
|
2164
|
+
anyOf?: string[] | undefined;
|
2165
|
+
noneOf?: string[] | undefined;
|
2166
|
+
}>>>;
|
1779
2167
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
1780
2168
|
}, "strip", z.ZodTypeAny, {
|
1781
2169
|
status?: {
|
@@ -1847,14 +2235,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1847
2235
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1848
2236
|
};
|
1849
2237
|
} | undefined;
|
1850
|
-
flags?:
|
1851
|
-
|
1852
|
-
|
2238
|
+
flags?: {
|
2239
|
+
anyOf?: string[] | undefined;
|
2240
|
+
noneOf?: string[] | undefined;
|
2241
|
+
} | undefined;
|
2242
|
+
eventType?: string | undefined;
|
2243
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
2244
|
+
type: "range";
|
2245
|
+
gte: string;
|
2246
|
+
lte: string;
|
1853
2247
|
} | {
|
1854
|
-
type: "
|
2248
|
+
type: "exact";
|
1855
2249
|
term: string;
|
1856
|
-
}
|
1857
|
-
|
2250
|
+
} | undefined;
|
2251
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2252
|
+
type: "exact";
|
2253
|
+
term: string;
|
2254
|
+
} | {
|
2255
|
+
type: "within";
|
2256
|
+
location: string;
|
2257
|
+
} | undefined;
|
2258
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
2259
|
+
type: "exact";
|
2260
|
+
term: string;
|
2261
|
+
} | undefined;
|
1858
2262
|
}, {
|
1859
2263
|
status?: {
|
1860
2264
|
type: "exact";
|
@@ -1925,14 +2329,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
1925
2329
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
1926
2330
|
};
|
1927
2331
|
} | undefined;
|
1928
|
-
flags?:
|
1929
|
-
|
1930
|
-
|
2332
|
+
flags?: {
|
2333
|
+
anyOf?: string[] | undefined;
|
2334
|
+
noneOf?: string[] | undefined;
|
2335
|
+
} | undefined;
|
2336
|
+
eventType?: string | undefined;
|
2337
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
2338
|
+
type: "range";
|
2339
|
+
gte: string;
|
2340
|
+
lte: string;
|
1931
2341
|
} | {
|
1932
|
-
type: "
|
2342
|
+
type: "exact";
|
1933
2343
|
term: string;
|
1934
|
-
}
|
1935
|
-
|
2344
|
+
} | undefined;
|
2345
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2346
|
+
type: "exact";
|
2347
|
+
term: string;
|
2348
|
+
} | {
|
2349
|
+
type: "within";
|
2350
|
+
location: string;
|
2351
|
+
} | undefined;
|
2352
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
2353
|
+
type: "exact";
|
2354
|
+
term: string;
|
2355
|
+
} | undefined;
|
1936
2356
|
}>, z.ZodObject<{
|
1937
2357
|
type: z.ZodLiteral<"and">;
|
1938
2358
|
clauses: z.ZodArray<z.ZodObject<{
|
@@ -2010,6 +2430,62 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2010
2430
|
gte: string;
|
2011
2431
|
lte: string;
|
2012
2432
|
}>]>>>;
|
2433
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
2434
|
+
type: z.ZodLiteral<"exact">;
|
2435
|
+
term: z.ZodString;
|
2436
|
+
}, {
|
2437
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2438
|
+
}>, "strip", z.ZodTypeAny, {
|
2439
|
+
type: "exact";
|
2440
|
+
term: string;
|
2441
|
+
}, {
|
2442
|
+
type: "exact";
|
2443
|
+
term: string;
|
2444
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2445
|
+
type: z.ZodLiteral<"range">;
|
2446
|
+
gte: z.ZodString;
|
2447
|
+
lte: z.ZodString;
|
2448
|
+
}, {
|
2449
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2450
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
2451
|
+
}>, "strip", z.ZodTypeAny, {
|
2452
|
+
type: "range";
|
2453
|
+
gte: string;
|
2454
|
+
lte: string;
|
2455
|
+
}, {
|
2456
|
+
type: "range";
|
2457
|
+
gte: string;
|
2458
|
+
lte: string;
|
2459
|
+
}>]>>>;
|
2460
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2461
|
+
type: z.ZodLiteral<"within">;
|
2462
|
+
location: z.ZodString;
|
2463
|
+
}, "strip", z.ZodTypeAny, {
|
2464
|
+
type: "within";
|
2465
|
+
location: string;
|
2466
|
+
}, {
|
2467
|
+
type: "within";
|
2468
|
+
location: string;
|
2469
|
+
}>, z.ZodObject<{
|
2470
|
+
type: z.ZodLiteral<"exact">;
|
2471
|
+
term: z.ZodString;
|
2472
|
+
}, "strip", z.ZodTypeAny, {
|
2473
|
+
type: "exact";
|
2474
|
+
term: string;
|
2475
|
+
}, {
|
2476
|
+
type: "exact";
|
2477
|
+
term: string;
|
2478
|
+
}>]>>>;
|
2479
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2480
|
+
type: z.ZodLiteral<"exact">;
|
2481
|
+
term: z.ZodString;
|
2482
|
+
}, "strip", z.ZodTypeAny, {
|
2483
|
+
type: "exact";
|
2484
|
+
term: string;
|
2485
|
+
}, {
|
2486
|
+
type: "exact";
|
2487
|
+
term: string;
|
2488
|
+
}>>>;
|
2013
2489
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2014
2490
|
type: z.ZodLiteral<"within">;
|
2015
2491
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -2159,25 +2635,26 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2159
2635
|
type: "exact";
|
2160
2636
|
term: string;
|
2161
2637
|
}>>>;
|
2162
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
2163
|
-
|
2164
|
-
|
2165
|
-
|
2166
|
-
|
2167
|
-
|
2168
|
-
|
2169
|
-
|
2170
|
-
|
2171
|
-
|
2172
|
-
|
2173
|
-
|
2638
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
2639
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2640
|
+
readonly PRINTED: "printed";
|
2641
|
+
readonly INCOMPLETE: "incomplete";
|
2642
|
+
readonly REJECTED: "rejected";
|
2643
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
2644
|
+
}>]>, "many">>;
|
2645
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
2646
|
+
readonly PRINTED: "printed";
|
2647
|
+
readonly INCOMPLETE: "incomplete";
|
2648
|
+
readonly REJECTED: "rejected";
|
2649
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
2650
|
+
}>]>, "many">>;
|
2174
2651
|
}, "strip", z.ZodTypeAny, {
|
2175
|
-
|
2176
|
-
|
2652
|
+
anyOf?: string[] | undefined;
|
2653
|
+
noneOf?: string[] | undefined;
|
2177
2654
|
}, {
|
2178
|
-
|
2179
|
-
|
2180
|
-
}
|
2655
|
+
anyOf?: string[] | undefined;
|
2656
|
+
noneOf?: string[] | undefined;
|
2657
|
+
}>>>;
|
2181
2658
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
2182
2659
|
}, "strip", z.ZodTypeAny, {
|
2183
2660
|
status?: {
|
@@ -2249,14 +2726,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2249
2726
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2250
2727
|
};
|
2251
2728
|
} | undefined;
|
2252
|
-
flags?:
|
2253
|
-
|
2254
|
-
|
2729
|
+
flags?: {
|
2730
|
+
anyOf?: string[] | undefined;
|
2731
|
+
noneOf?: string[] | undefined;
|
2732
|
+
} | undefined;
|
2733
|
+
eventType?: string | undefined;
|
2734
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
2735
|
+
type: "range";
|
2736
|
+
gte: string;
|
2737
|
+
lte: string;
|
2255
2738
|
} | {
|
2256
|
-
type: "
|
2739
|
+
type: "exact";
|
2257
2740
|
term: string;
|
2258
|
-
}
|
2259
|
-
|
2741
|
+
} | undefined;
|
2742
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2743
|
+
type: "exact";
|
2744
|
+
term: string;
|
2745
|
+
} | {
|
2746
|
+
type: "within";
|
2747
|
+
location: string;
|
2748
|
+
} | undefined;
|
2749
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
2750
|
+
type: "exact";
|
2751
|
+
term: string;
|
2752
|
+
} | undefined;
|
2260
2753
|
}, {
|
2261
2754
|
status?: {
|
2262
2755
|
type: "exact";
|
@@ -2327,14 +2820,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2327
2820
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2328
2821
|
};
|
2329
2822
|
} | undefined;
|
2330
|
-
flags?:
|
2331
|
-
|
2332
|
-
|
2823
|
+
flags?: {
|
2824
|
+
anyOf?: string[] | undefined;
|
2825
|
+
noneOf?: string[] | undefined;
|
2826
|
+
} | undefined;
|
2827
|
+
eventType?: string | undefined;
|
2828
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
2829
|
+
type: "range";
|
2830
|
+
gte: string;
|
2831
|
+
lte: string;
|
2333
2832
|
} | {
|
2334
|
-
type: "
|
2833
|
+
type: "exact";
|
2335
2834
|
term: string;
|
2336
|
-
}
|
2337
|
-
|
2835
|
+
} | undefined;
|
2836
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2837
|
+
type: "exact";
|
2838
|
+
term: string;
|
2839
|
+
} | {
|
2840
|
+
type: "within";
|
2841
|
+
location: string;
|
2842
|
+
} | undefined;
|
2843
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
2844
|
+
type: "exact";
|
2845
|
+
term: string;
|
2846
|
+
} | undefined;
|
2338
2847
|
}>, "many">;
|
2339
2848
|
}, "strip", z.ZodTypeAny, {
|
2340
2849
|
type: "and";
|
@@ -2408,14 +2917,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2408
2917
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2409
2918
|
};
|
2410
2919
|
} | undefined;
|
2411
|
-
flags?:
|
2412
|
-
|
2413
|
-
|
2920
|
+
flags?: {
|
2921
|
+
anyOf?: string[] | undefined;
|
2922
|
+
noneOf?: string[] | undefined;
|
2923
|
+
} | undefined;
|
2924
|
+
eventType?: string | undefined;
|
2925
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
2926
|
+
type: "range";
|
2927
|
+
gte: string;
|
2928
|
+
lte: string;
|
2414
2929
|
} | {
|
2415
|
-
type: "
|
2930
|
+
type: "exact";
|
2416
2931
|
term: string;
|
2417
|
-
}
|
2418
|
-
|
2932
|
+
} | undefined;
|
2933
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
2934
|
+
type: "exact";
|
2935
|
+
term: string;
|
2936
|
+
} | {
|
2937
|
+
type: "within";
|
2938
|
+
location: string;
|
2939
|
+
} | undefined;
|
2940
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
2941
|
+
type: "exact";
|
2942
|
+
term: string;
|
2943
|
+
} | undefined;
|
2419
2944
|
}[];
|
2420
2945
|
}, {
|
2421
2946
|
type: "and";
|
@@ -2489,14 +3014,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2489
3014
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2490
3015
|
};
|
2491
3016
|
} | undefined;
|
2492
|
-
flags?:
|
2493
|
-
|
2494
|
-
|
3017
|
+
flags?: {
|
3018
|
+
anyOf?: string[] | undefined;
|
3019
|
+
noneOf?: string[] | undefined;
|
3020
|
+
} | undefined;
|
3021
|
+
eventType?: string | undefined;
|
3022
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
3023
|
+
type: "range";
|
3024
|
+
gte: string;
|
3025
|
+
lte: string;
|
2495
3026
|
} | {
|
2496
|
-
type: "
|
3027
|
+
type: "exact";
|
2497
3028
|
term: string;
|
2498
|
-
}
|
2499
|
-
|
3029
|
+
} | undefined;
|
3030
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3031
|
+
type: "exact";
|
3032
|
+
term: string;
|
3033
|
+
} | {
|
3034
|
+
type: "within";
|
3035
|
+
location: string;
|
3036
|
+
} | undefined;
|
3037
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
3038
|
+
type: "exact";
|
3039
|
+
term: string;
|
3040
|
+
} | undefined;
|
2500
3041
|
}[];
|
2501
3042
|
}>, z.ZodObject<{
|
2502
3043
|
type: z.ZodLiteral<"or">;
|
@@ -2575,6 +3116,62 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2575
3116
|
gte: string;
|
2576
3117
|
lte: string;
|
2577
3118
|
}>]>>>;
|
3119
|
+
'legalStatus.REGISTERED.createdAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
3120
|
+
type: z.ZodLiteral<"exact">;
|
3121
|
+
term: z.ZodString;
|
3122
|
+
}, {
|
3123
|
+
term: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3124
|
+
}>, "strip", z.ZodTypeAny, {
|
3125
|
+
type: "exact";
|
3126
|
+
term: string;
|
3127
|
+
}, {
|
3128
|
+
type: "exact";
|
3129
|
+
term: string;
|
3130
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3131
|
+
type: z.ZodLiteral<"range">;
|
3132
|
+
gte: z.ZodString;
|
3133
|
+
lte: z.ZodString;
|
3134
|
+
}, {
|
3135
|
+
gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3136
|
+
lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
3137
|
+
}>, "strip", z.ZodTypeAny, {
|
3138
|
+
type: "range";
|
3139
|
+
gte: string;
|
3140
|
+
lte: string;
|
3141
|
+
}, {
|
3142
|
+
type: "range";
|
3143
|
+
gte: string;
|
3144
|
+
lte: string;
|
3145
|
+
}>]>>>;
|
3146
|
+
'legalStatus.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
3147
|
+
type: z.ZodLiteral<"within">;
|
3148
|
+
location: z.ZodString;
|
3149
|
+
}, "strip", z.ZodTypeAny, {
|
3150
|
+
type: "within";
|
3151
|
+
location: string;
|
3152
|
+
}, {
|
3153
|
+
type: "within";
|
3154
|
+
location: string;
|
3155
|
+
}>, z.ZodObject<{
|
3156
|
+
type: z.ZodLiteral<"exact">;
|
3157
|
+
term: z.ZodString;
|
3158
|
+
}, "strip", z.ZodTypeAny, {
|
3159
|
+
type: "exact";
|
3160
|
+
term: string;
|
3161
|
+
}, {
|
3162
|
+
type: "exact";
|
3163
|
+
term: string;
|
3164
|
+
}>]>>>;
|
3165
|
+
'legalStatus.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3166
|
+
type: z.ZodLiteral<"exact">;
|
3167
|
+
term: z.ZodString;
|
3168
|
+
}, "strip", z.ZodTypeAny, {
|
3169
|
+
type: "exact";
|
3170
|
+
term: string;
|
3171
|
+
}, {
|
3172
|
+
type: "exact";
|
3173
|
+
term: string;
|
3174
|
+
}>>>;
|
2578
3175
|
createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
2579
3176
|
type: z.ZodLiteral<"within">;
|
2580
3177
|
location: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -2724,25 +3321,26 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2724
3321
|
type: "exact";
|
2725
3322
|
term: string;
|
2726
3323
|
}>>>;
|
2727
|
-
flags: z.ZodOptional<z.ZodOptional<z.
|
2728
|
-
|
2729
|
-
|
2730
|
-
|
2731
|
-
|
2732
|
-
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2737
|
-
|
2738
|
-
|
3324
|
+
flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
3325
|
+
anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3326
|
+
readonly PRINTED: "printed";
|
3327
|
+
readonly INCOMPLETE: "incomplete";
|
3328
|
+
readonly REJECTED: "rejected";
|
3329
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
3330
|
+
}>]>, "many">>;
|
3331
|
+
noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
|
3332
|
+
readonly PRINTED: "printed";
|
3333
|
+
readonly INCOMPLETE: "incomplete";
|
3334
|
+
readonly REJECTED: "rejected";
|
3335
|
+
readonly CORRECTION_REQUESTED: "correction-requested";
|
3336
|
+
}>]>, "many">>;
|
2739
3337
|
}, "strip", z.ZodTypeAny, {
|
2740
|
-
|
2741
|
-
|
3338
|
+
anyOf?: string[] | undefined;
|
3339
|
+
noneOf?: string[] | undefined;
|
2742
3340
|
}, {
|
2743
|
-
|
2744
|
-
|
2745
|
-
}
|
3341
|
+
anyOf?: string[] | undefined;
|
3342
|
+
noneOf?: string[] | undefined;
|
3343
|
+
}>>>;
|
2746
3344
|
data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
|
2747
3345
|
}, "strip", z.ZodTypeAny, {
|
2748
3346
|
status?: {
|
@@ -2814,14 +3412,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2814
3412
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2815
3413
|
};
|
2816
3414
|
} | undefined;
|
2817
|
-
flags?:
|
2818
|
-
|
2819
|
-
|
3415
|
+
flags?: {
|
3416
|
+
anyOf?: string[] | undefined;
|
3417
|
+
noneOf?: string[] | undefined;
|
3418
|
+
} | undefined;
|
3419
|
+
eventType?: string | undefined;
|
3420
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
3421
|
+
type: "range";
|
3422
|
+
gte: string;
|
3423
|
+
lte: string;
|
2820
3424
|
} | {
|
2821
|
-
type: "
|
3425
|
+
type: "exact";
|
2822
3426
|
term: string;
|
2823
|
-
}
|
2824
|
-
|
3427
|
+
} | undefined;
|
3428
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3429
|
+
type: "exact";
|
3430
|
+
term: string;
|
3431
|
+
} | {
|
3432
|
+
type: "within";
|
3433
|
+
location: string;
|
3434
|
+
} | undefined;
|
3435
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
3436
|
+
type: "exact";
|
3437
|
+
term: string;
|
3438
|
+
} | undefined;
|
2825
3439
|
}, {
|
2826
3440
|
status?: {
|
2827
3441
|
type: "exact";
|
@@ -2892,14 +3506,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2892
3506
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2893
3507
|
};
|
2894
3508
|
} | undefined;
|
2895
|
-
flags?:
|
2896
|
-
|
2897
|
-
|
3509
|
+
flags?: {
|
3510
|
+
anyOf?: string[] | undefined;
|
3511
|
+
noneOf?: string[] | undefined;
|
3512
|
+
} | undefined;
|
3513
|
+
eventType?: string | undefined;
|
3514
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
3515
|
+
type: "range";
|
3516
|
+
gte: string;
|
3517
|
+
lte: string;
|
2898
3518
|
} | {
|
2899
|
-
type: "
|
3519
|
+
type: "exact";
|
2900
3520
|
term: string;
|
2901
|
-
}
|
2902
|
-
|
3521
|
+
} | undefined;
|
3522
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3523
|
+
type: "exact";
|
3524
|
+
term: string;
|
3525
|
+
} | {
|
3526
|
+
type: "within";
|
3527
|
+
location: string;
|
3528
|
+
} | undefined;
|
3529
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
3530
|
+
type: "exact";
|
3531
|
+
term: string;
|
3532
|
+
} | undefined;
|
2903
3533
|
}>, "many">;
|
2904
3534
|
}, "strip", z.ZodTypeAny, {
|
2905
3535
|
type: "or";
|
@@ -2973,14 +3603,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
2973
3603
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
2974
3604
|
};
|
2975
3605
|
} | undefined;
|
2976
|
-
flags?:
|
2977
|
-
|
2978
|
-
|
3606
|
+
flags?: {
|
3607
|
+
anyOf?: string[] | undefined;
|
3608
|
+
noneOf?: string[] | undefined;
|
3609
|
+
} | undefined;
|
3610
|
+
eventType?: string | undefined;
|
3611
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
3612
|
+
type: "range";
|
3613
|
+
gte: string;
|
3614
|
+
lte: string;
|
2979
3615
|
} | {
|
2980
|
-
type: "
|
3616
|
+
type: "exact";
|
2981
3617
|
term: string;
|
2982
|
-
}
|
2983
|
-
|
3618
|
+
} | undefined;
|
3619
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3620
|
+
type: "exact";
|
3621
|
+
term: string;
|
3622
|
+
} | {
|
3623
|
+
type: "within";
|
3624
|
+
location: string;
|
3625
|
+
} | undefined;
|
3626
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
3627
|
+
type: "exact";
|
3628
|
+
term: string;
|
3629
|
+
} | undefined;
|
2984
3630
|
}[];
|
2985
3631
|
}, {
|
2986
3632
|
type: "or";
|
@@ -3054,14 +3700,30 @@ export declare const CountryConfigQueryInputType: z.ZodUnion<[z.ZodObject<{
|
|
3054
3700
|
$userField: "id" | "name" | "role" | "signatureFilename" | "primaryOfficeId";
|
3055
3701
|
};
|
3056
3702
|
} | undefined;
|
3057
|
-
flags?:
|
3058
|
-
|
3059
|
-
|
3703
|
+
flags?: {
|
3704
|
+
anyOf?: string[] | undefined;
|
3705
|
+
noneOf?: string[] | undefined;
|
3706
|
+
} | undefined;
|
3707
|
+
eventType?: string | undefined;
|
3708
|
+
'legalStatus.REGISTERED.createdAt'?: {
|
3709
|
+
type: "range";
|
3710
|
+
gte: string;
|
3711
|
+
lte: string;
|
3060
3712
|
} | {
|
3061
|
-
type: "
|
3713
|
+
type: "exact";
|
3062
3714
|
term: string;
|
3063
|
-
}
|
3064
|
-
|
3715
|
+
} | undefined;
|
3716
|
+
'legalStatus.REGISTERED.createdAtLocation'?: {
|
3717
|
+
type: "exact";
|
3718
|
+
term: string;
|
3719
|
+
} | {
|
3720
|
+
type: "within";
|
3721
|
+
location: string;
|
3722
|
+
} | undefined;
|
3723
|
+
'legalStatus.REGISTERED.registrationNumber'?: {
|
3724
|
+
type: "exact";
|
3725
|
+
term: string;
|
3726
|
+
} | undefined;
|
3065
3727
|
}[];
|
3066
3728
|
}>]>;
|
3067
3729
|
export type CountryConfigQueryInputType = z.infer<typeof CountryConfigQueryInputType>;
|