@nira-opencrvs/toolkit 1.9.11-rc.39d8d68

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.
Files changed (77) hide show
  1. package/README.md +70 -0
  2. package/build.sh +56 -0
  3. package/dist/api/index.d.ts +11 -0
  4. package/dist/api/index.d.ts.map +1 -0
  5. package/dist/api/index.js +52 -0
  6. package/dist/commons/api/router.d.ts +4125 -0
  7. package/dist/commons/conditionals/conditionals.d.ts +824 -0
  8. package/dist/commons/conditionals/index.d.ts +2 -0
  9. package/dist/commons/conditionals/validate.d.ts +101 -0
  10. package/dist/commons/events/ActionConfig.d.ts +1609 -0
  11. package/dist/commons/events/ActionDocument.d.ts +2180 -0
  12. package/dist/commons/events/ActionInput.d.ts +1229 -0
  13. package/dist/commons/events/ActionType.d.ts +52 -0
  14. package/dist/commons/events/AdvancedSearchConfig.d.ts +1538 -0
  15. package/dist/commons/events/CompositeFieldValue.d.ts +280 -0
  16. package/dist/commons/events/Conditional.d.ts +55 -0
  17. package/dist/commons/events/Constants.d.ts +3 -0
  18. package/dist/commons/events/CountryConfigQueryInput.d.ts +4784 -0
  19. package/dist/commons/events/CreatedAtLocation.d.ts +2 -0
  20. package/dist/commons/events/DeduplicationConfig.d.ts +233 -0
  21. package/dist/commons/events/Draft.d.ts +118 -0
  22. package/dist/commons/events/DynamicFieldValue.d.ts +139 -0
  23. package/dist/commons/events/EventConfig.d.ts +2255 -0
  24. package/dist/commons/events/EventConfigInput.d.ts +10 -0
  25. package/dist/commons/events/EventDocument.d.ts +1457 -0
  26. package/dist/commons/events/EventIndex.d.ts +1134 -0
  27. package/dist/commons/events/EventInput.d.ts +13 -0
  28. package/dist/commons/events/EventMetadata.d.ts +413 -0
  29. package/dist/commons/events/FieldConfig.d.ts +12935 -0
  30. package/dist/commons/events/FieldType.d.ts +55 -0
  31. package/dist/commons/events/FieldTypeMapping.d.ts +1289 -0
  32. package/dist/commons/events/FieldValue.d.ts +512 -0
  33. package/dist/commons/events/FileUtils.d.ts +4 -0
  34. package/dist/commons/events/FormConfig.d.ts +755 -0
  35. package/dist/commons/events/PageConfig.d.ts +342 -0
  36. package/dist/commons/events/PlainDate.d.ts +19 -0
  37. package/dist/commons/events/SummaryConfig.d.ts +170 -0
  38. package/dist/commons/events/TemplateConfig.d.ts +66 -0
  39. package/dist/commons/events/TranslationConfig.d.ts +15 -0
  40. package/dist/commons/events/WorkqueueColumnConfig.d.ts +53 -0
  41. package/dist/commons/events/WorkqueueConfig.d.ts +7957 -0
  42. package/dist/commons/events/deduplication.d.ts +69 -0
  43. package/dist/commons/events/defineConfig.d.ts +234 -0
  44. package/dist/commons/events/event.d.ts +80 -0
  45. package/dist/commons/events/field.d.ts +514 -0
  46. package/dist/commons/events/index.d.ts +45 -0
  47. package/dist/commons/events/locations.d.ts +24 -0
  48. package/dist/commons/events/scopes.d.ts +55 -0
  49. package/dist/commons/events/serializer.d.ts +2 -0
  50. package/dist/commons/events/state/availableActions.d.ts +6 -0
  51. package/dist/commons/events/state/flags.d.ts +4 -0
  52. package/dist/commons/events/state/index.d.ts +119 -0
  53. package/dist/commons/events/state/utils.d.ts +311 -0
  54. package/dist/commons/events/test.utils.d.ts +248 -0
  55. package/dist/commons/events/transactions.d.ts +2 -0
  56. package/dist/commons/events/utils.d.ts +486 -0
  57. package/dist/commons/events/workqueueDefaultColumns.d.ts +3 -0
  58. package/dist/commons/notification/UserNotifications.d.ts +762 -0
  59. package/dist/commons/notification/index.d.ts +2 -0
  60. package/dist/conditionals/index.d.ts +2 -0
  61. package/dist/conditionals/index.d.ts.map +1 -0
  62. package/dist/conditionals/index.js +689 -0
  63. package/dist/events/deduplication.d.ts +69 -0
  64. package/dist/events/deduplication.d.ts.map +1 -0
  65. package/dist/events/deduplication.js +101 -0
  66. package/dist/events/index.d.ts +2 -0
  67. package/dist/events/index.d.ts.map +1 -0
  68. package/dist/events/index.js +9327 -0
  69. package/dist/notification/index.d.ts +2 -0
  70. package/dist/notification/index.d.ts.map +1 -0
  71. package/dist/notification/index.js +6674 -0
  72. package/dist/scopes/index.d.ts +385 -0
  73. package/dist/scopes/index.d.ts.map +1 -0
  74. package/dist/scopes/index.js +349 -0
  75. package/package.json +40 -0
  76. package/tsconfig.json +27 -0
  77. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,1134 @@
1
+ import { z, ZodType } from 'zod';
2
+ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
3
+ id: z.ZodBranded<z.ZodString, "UUID">;
4
+ type: z.ZodString;
5
+ status: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
6
+ legalStatuses: z.ZodObject<{
7
+ DECLARED: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8
+ createdAt: z.ZodString;
9
+ createdBy: z.ZodString;
10
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
11
+ createdByUserType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["user", "system"]>>>;
12
+ acceptedAt: z.ZodString;
13
+ createdByRole: z.ZodString;
14
+ createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ createdAt: string;
17
+ createdBy: string;
18
+ createdByRole: string;
19
+ acceptedAt: string;
20
+ createdByUserType?: "system" | "user" | null | undefined;
21
+ createdBySignature?: string | null | undefined;
22
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
23
+ }, {
24
+ createdAt: string;
25
+ createdBy: string;
26
+ createdByRole: string;
27
+ acceptedAt: string;
28
+ createdByUserType?: "system" | "user" | null | undefined;
29
+ createdBySignature?: string | null | undefined;
30
+ createdAtLocation?: string | null | undefined;
31
+ }>>>;
32
+ REGISTERED: z.ZodOptional<z.ZodNullable<z.ZodObject<z.objectUtil.extendShape<{
33
+ createdAt: z.ZodString;
34
+ createdBy: z.ZodString;
35
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
36
+ createdByUserType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["user", "system"]>>>;
37
+ acceptedAt: z.ZodString;
38
+ createdByRole: z.ZodString;
39
+ createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40
+ }, {
41
+ registrationNumber: z.ZodString;
42
+ }>, "strip", z.ZodTypeAny, {
43
+ createdAt: string;
44
+ createdBy: string;
45
+ createdByRole: string;
46
+ registrationNumber: string;
47
+ acceptedAt: string;
48
+ createdByUserType?: "system" | "user" | null | undefined;
49
+ createdBySignature?: string | null | undefined;
50
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
51
+ }, {
52
+ createdAt: string;
53
+ createdBy: string;
54
+ createdByRole: string;
55
+ registrationNumber: string;
56
+ acceptedAt: string;
57
+ createdByUserType?: "system" | "user" | null | undefined;
58
+ createdBySignature?: string | null | undefined;
59
+ createdAtLocation?: string | null | undefined;
60
+ }>>>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ DECLARED?: {
63
+ createdAt: string;
64
+ createdBy: string;
65
+ createdByRole: string;
66
+ acceptedAt: string;
67
+ createdByUserType?: "system" | "user" | null | undefined;
68
+ createdBySignature?: string | null | undefined;
69
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
70
+ } | null | undefined;
71
+ REGISTERED?: {
72
+ createdAt: string;
73
+ createdBy: string;
74
+ createdByRole: string;
75
+ registrationNumber: string;
76
+ acceptedAt: string;
77
+ createdByUserType?: "system" | "user" | null | undefined;
78
+ createdBySignature?: string | null | undefined;
79
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
80
+ } | null | undefined;
81
+ }, {
82
+ DECLARED?: {
83
+ createdAt: string;
84
+ createdBy: string;
85
+ createdByRole: string;
86
+ acceptedAt: string;
87
+ createdByUserType?: "system" | "user" | null | undefined;
88
+ createdBySignature?: string | null | undefined;
89
+ createdAtLocation?: string | null | undefined;
90
+ } | null | undefined;
91
+ REGISTERED?: {
92
+ createdAt: string;
93
+ createdBy: string;
94
+ createdByRole: string;
95
+ registrationNumber: string;
96
+ acceptedAt: string;
97
+ createdByUserType?: "system" | "user" | null | undefined;
98
+ createdBySignature?: string | null | undefined;
99
+ createdAtLocation?: string | null | undefined;
100
+ } | null | undefined;
101
+ }>;
102
+ createdAt: z.ZodString;
103
+ dateOfEvent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
104
+ createdBy: z.ZodString;
105
+ createdByUserType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["user", "system"]>>>;
106
+ updatedByUserRole: z.ZodString;
107
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
108
+ createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
109
+ updatedAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
110
+ updatedAt: z.ZodString;
111
+ assignedTo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
112
+ updatedBy: z.ZodOptional<z.ZodNullable<z.ZodString>>;
113
+ trackingId: z.ZodString;
114
+ potentialDuplicates: z.ZodArray<z.ZodObject<{
115
+ id: z.ZodBranded<z.ZodString, "UUID">;
116
+ trackingId: z.ZodString;
117
+ }, "strip", z.ZodTypeAny, {
118
+ id: string & z.BRAND<"UUID">;
119
+ trackingId: string;
120
+ }, {
121
+ id: string;
122
+ trackingId: string;
123
+ }>, "many">;
124
+ flags: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
125
+ readonly PENDING_CERTIFICATION: "pending-certification";
126
+ readonly INCOMPLETE: "incomplete";
127
+ readonly REJECTED: "rejected";
128
+ readonly CORRECTION_REQUESTED: "correction-requested";
129
+ readonly POTENTIAL_DUPLICATE: "potential-duplicate";
130
+ }>]>, "many">;
131
+ }, {
132
+ declaration: z.ZodRecord<z.ZodString, z.ZodType<import("./FieldValue").FieldValue, z.ZodTypeDef, unknown>>;
133
+ }>, "strip", z.ZodTypeAny, {
134
+ type: string;
135
+ id: string & z.BRAND<"UUID">;
136
+ status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
137
+ createdAt: string;
138
+ createdBy: string;
139
+ declaration: Record<string, import("./FieldValue").FieldValue>;
140
+ trackingId: string;
141
+ updatedAt: string;
142
+ legalStatuses: {
143
+ DECLARED?: {
144
+ createdAt: string;
145
+ createdBy: string;
146
+ createdByRole: string;
147
+ acceptedAt: string;
148
+ createdByUserType?: "system" | "user" | null | undefined;
149
+ createdBySignature?: string | null | undefined;
150
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
151
+ } | null | undefined;
152
+ REGISTERED?: {
153
+ createdAt: string;
154
+ createdBy: string;
155
+ createdByRole: string;
156
+ registrationNumber: string;
157
+ acceptedAt: string;
158
+ createdByUserType?: "system" | "user" | null | undefined;
159
+ createdBySignature?: string | null | undefined;
160
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
161
+ } | null | undefined;
162
+ };
163
+ updatedByUserRole: string;
164
+ potentialDuplicates: {
165
+ id: string & z.BRAND<"UUID">;
166
+ trackingId: string;
167
+ }[];
168
+ flags: string[];
169
+ createdByUserType?: "system" | "user" | null | undefined;
170
+ createdBySignature?: string | null | undefined;
171
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
172
+ assignedTo?: string | null | undefined;
173
+ dateOfEvent?: string | null | undefined;
174
+ updatedAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
175
+ updatedBy?: string | null | undefined;
176
+ }, {
177
+ type: string;
178
+ id: string;
179
+ status: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
180
+ createdAt: string;
181
+ createdBy: string;
182
+ declaration: Record<string, unknown>;
183
+ trackingId: string;
184
+ updatedAt: string;
185
+ legalStatuses: {
186
+ DECLARED?: {
187
+ createdAt: string;
188
+ createdBy: string;
189
+ createdByRole: string;
190
+ acceptedAt: string;
191
+ createdByUserType?: "system" | "user" | null | undefined;
192
+ createdBySignature?: string | null | undefined;
193
+ createdAtLocation?: string | null | undefined;
194
+ } | null | undefined;
195
+ REGISTERED?: {
196
+ createdAt: string;
197
+ createdBy: string;
198
+ createdByRole: string;
199
+ registrationNumber: string;
200
+ acceptedAt: string;
201
+ createdByUserType?: "system" | "user" | null | undefined;
202
+ createdBySignature?: string | null | undefined;
203
+ createdAtLocation?: string | null | undefined;
204
+ } | null | undefined;
205
+ };
206
+ updatedByUserRole: string;
207
+ potentialDuplicates: {
208
+ id: string;
209
+ trackingId: string;
210
+ }[];
211
+ flags: string[];
212
+ createdByUserType?: "system" | "user" | null | undefined;
213
+ createdBySignature?: string | null | undefined;
214
+ createdAtLocation?: string | null | undefined;
215
+ assignedTo?: string | null | undefined;
216
+ dateOfEvent?: string | null | undefined;
217
+ updatedAtLocation?: string | null | undefined;
218
+ updatedBy?: string | null | undefined;
219
+ }>;
220
+ export declare const EventSearchIndex: z.ZodIntersection<z.ZodRecord<z.ZodString, z.ZodAny>, z.ZodObject<{
221
+ type: z.ZodString;
222
+ }, "strip", z.ZodTypeAny, {
223
+ type: string;
224
+ }, {
225
+ type: string;
226
+ }>>;
227
+ export type EventSearchIndex = z.infer<typeof EventSearchIndex>;
228
+ export type EventIndex = z.infer<typeof EventIndex>;
229
+ export declare const Fuzzy: z.ZodObject<{
230
+ type: z.ZodLiteral<"fuzzy">;
231
+ term: z.ZodString;
232
+ }, "strip", z.ZodTypeAny, {
233
+ type: "fuzzy";
234
+ term: string;
235
+ }, {
236
+ type: "fuzzy";
237
+ term: string;
238
+ }>;
239
+ export declare const Exact: z.ZodObject<{
240
+ type: z.ZodLiteral<"exact">;
241
+ term: z.ZodString;
242
+ }, "strip", z.ZodTypeAny, {
243
+ type: "exact";
244
+ term: string;
245
+ }, {
246
+ type: "exact";
247
+ term: string;
248
+ }>;
249
+ export declare const ExactStatus: z.ZodObject<{
250
+ type: z.ZodLiteral<"exact">;
251
+ term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
252
+ }, "strip", z.ZodTypeAny, {
253
+ type: "exact";
254
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
255
+ }, {
256
+ type: "exact";
257
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
258
+ }>;
259
+ export declare const ExactUserType: z.ZodObject<{
260
+ type: z.ZodLiteral<"exact">;
261
+ term: z.ZodEnum<["user", "system"]>;
262
+ }, "strip", z.ZodTypeAny, {
263
+ type: "exact";
264
+ term: "system" | "user";
265
+ }, {
266
+ type: "exact";
267
+ term: "system" | "user";
268
+ }>;
269
+ export declare const AnyOf: z.ZodObject<{
270
+ type: z.ZodLiteral<"anyOf">;
271
+ terms: z.ZodArray<z.ZodString, "many">;
272
+ }, "strip", z.ZodTypeAny, {
273
+ type: "anyOf";
274
+ terms: string[];
275
+ }, {
276
+ type: "anyOf";
277
+ terms: string[];
278
+ }>;
279
+ export declare const AnyOfStatus: z.ZodObject<{
280
+ type: z.ZodLiteral<"anyOf">;
281
+ terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
282
+ }, "strip", z.ZodTypeAny, {
283
+ type: "anyOf";
284
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
285
+ }, {
286
+ type: "anyOf";
287
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
288
+ }>;
289
+ export declare const Range: z.ZodObject<{
290
+ type: z.ZodLiteral<"range">;
291
+ gte: z.ZodString;
292
+ lte: z.ZodString;
293
+ }, "strip", z.ZodTypeAny, {
294
+ type: "range";
295
+ gte: string;
296
+ lte: string;
297
+ }, {
298
+ type: "range";
299
+ gte: string;
300
+ lte: string;
301
+ }>;
302
+ export declare const ContainsFlags: z.ZodObject<{
303
+ anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
304
+ readonly PENDING_CERTIFICATION: "pending-certification";
305
+ readonly INCOMPLETE: "incomplete";
306
+ readonly REJECTED: "rejected";
307
+ readonly CORRECTION_REQUESTED: "correction-requested";
308
+ readonly POTENTIAL_DUPLICATE: "potential-duplicate";
309
+ }>]>, "many">>;
310
+ noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
311
+ readonly PENDING_CERTIFICATION: "pending-certification";
312
+ readonly INCOMPLETE: "incomplete";
313
+ readonly REJECTED: "rejected";
314
+ readonly CORRECTION_REQUESTED: "correction-requested";
315
+ readonly POTENTIAL_DUPLICATE: "potential-duplicate";
316
+ }>]>, "many">>;
317
+ }, "strip", z.ZodTypeAny, {
318
+ anyOf?: string[] | undefined;
319
+ noneOf?: string[] | undefined;
320
+ }, {
321
+ anyOf?: string[] | undefined;
322
+ noneOf?: string[] | undefined;
323
+ }>;
324
+ export declare const Within: z.ZodObject<{
325
+ type: z.ZodLiteral<"within">;
326
+ location: z.ZodString;
327
+ }, "strip", z.ZodTypeAny, {
328
+ type: "within";
329
+ location: string;
330
+ }, {
331
+ type: "within";
332
+ location: string;
333
+ }>;
334
+ export declare const ExactDate: z.ZodObject<z.objectUtil.extendShape<{
335
+ type: z.ZodLiteral<"exact">;
336
+ term: z.ZodString;
337
+ }, {
338
+ term: z.ZodUnion<[z.ZodString, z.ZodString]>;
339
+ }>, "strip", z.ZodTypeAny, {
340
+ type: "exact";
341
+ term: string;
342
+ }, {
343
+ type: "exact";
344
+ term: string;
345
+ }>;
346
+ export declare const DateCondition: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
347
+ type: z.ZodLiteral<"exact">;
348
+ term: z.ZodString;
349
+ }, {
350
+ term: z.ZodUnion<[z.ZodString, z.ZodString]>;
351
+ }>, "strip", z.ZodTypeAny, {
352
+ type: "exact";
353
+ term: string;
354
+ }, {
355
+ type: "exact";
356
+ term: string;
357
+ }>, z.ZodObject<{
358
+ type: z.ZodLiteral<"range">;
359
+ gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
360
+ lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
361
+ }, "strip", z.ZodTypeAny, {
362
+ type: "range";
363
+ gte: string;
364
+ lte: string;
365
+ }, {
366
+ type: "range";
367
+ gte: string;
368
+ lte: string;
369
+ }>, z.ZodObject<{
370
+ type: z.ZodLiteral<"timePeriod">;
371
+ term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
372
+ }, "strip", z.ZodTypeAny, {
373
+ type: "timePeriod";
374
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
375
+ }, {
376
+ type: "timePeriod";
377
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
378
+ }>]>;
379
+ export type DateCondition = z.infer<typeof DateCondition>;
380
+ export declare const QueryInput: ZodType;
381
+ export type BaseInput = z.infer<typeof Fuzzy> | z.infer<typeof Exact> | z.infer<typeof Range> | z.infer<typeof Within> | z.infer<typeof AnyOf>;
382
+ type QueryMap = {
383
+ [key: string]: BaseInput | QueryMap;
384
+ };
385
+ export type QueryInputType = BaseInput | QueryMap;
386
+ export declare const QueryExpression: z.ZodEffects<z.ZodObject<{
387
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
388
+ eventType: z.ZodOptional<z.ZodString>;
389
+ status: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
390
+ type: z.ZodLiteral<"anyOf">;
391
+ terms: z.ZodArray<z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>, "many">;
392
+ }, "strip", z.ZodTypeAny, {
393
+ type: "anyOf";
394
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
395
+ }, {
396
+ type: "anyOf";
397
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
398
+ }>, z.ZodObject<{
399
+ type: z.ZodLiteral<"exact">;
400
+ term: z.ZodEnum<["CREATED", "NOTIFIED", "DECLARED", "VALIDATED", "REGISTERED", "ARCHIVED"]>;
401
+ }, "strip", z.ZodTypeAny, {
402
+ type: "exact";
403
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
404
+ }, {
405
+ type: "exact";
406
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
407
+ }>]>>>;
408
+ createdAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
409
+ type: z.ZodLiteral<"exact">;
410
+ term: z.ZodString;
411
+ }, {
412
+ term: z.ZodUnion<[z.ZodString, z.ZodString]>;
413
+ }>, "strip", z.ZodTypeAny, {
414
+ type: "exact";
415
+ term: string;
416
+ }, {
417
+ type: "exact";
418
+ term: string;
419
+ }>, z.ZodObject<{
420
+ type: z.ZodLiteral<"range">;
421
+ gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
422
+ lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
423
+ }, "strip", z.ZodTypeAny, {
424
+ type: "range";
425
+ gte: string;
426
+ lte: string;
427
+ }, {
428
+ type: "range";
429
+ gte: string;
430
+ lte: string;
431
+ }>, z.ZodObject<{
432
+ type: z.ZodLiteral<"timePeriod">;
433
+ term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ type: "timePeriod";
436
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
437
+ }, {
438
+ type: "timePeriod";
439
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
440
+ }>]>>>;
441
+ updatedAt: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
442
+ type: z.ZodLiteral<"exact">;
443
+ term: z.ZodString;
444
+ }, {
445
+ term: z.ZodUnion<[z.ZodString, z.ZodString]>;
446
+ }>, "strip", z.ZodTypeAny, {
447
+ type: "exact";
448
+ term: string;
449
+ }, {
450
+ type: "exact";
451
+ term: string;
452
+ }>, z.ZodObject<{
453
+ type: z.ZodLiteral<"range">;
454
+ gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
455
+ lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
456
+ }, "strip", z.ZodTypeAny, {
457
+ type: "range";
458
+ gte: string;
459
+ lte: string;
460
+ }, {
461
+ type: "range";
462
+ gte: string;
463
+ lte: string;
464
+ }>, z.ZodObject<{
465
+ type: z.ZodLiteral<"timePeriod">;
466
+ term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
467
+ }, "strip", z.ZodTypeAny, {
468
+ type: "timePeriod";
469
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
470
+ }, {
471
+ type: "timePeriod";
472
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
473
+ }>]>>>;
474
+ 'legalStatuses.REGISTERED.acceptedAt': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
475
+ type: z.ZodLiteral<"exact">;
476
+ term: z.ZodString;
477
+ }, {
478
+ term: z.ZodUnion<[z.ZodString, z.ZodString]>;
479
+ }>, "strip", z.ZodTypeAny, {
480
+ type: "exact";
481
+ term: string;
482
+ }, {
483
+ type: "exact";
484
+ term: string;
485
+ }>, z.ZodObject<{
486
+ type: z.ZodLiteral<"range">;
487
+ gte: z.ZodUnion<[z.ZodString, z.ZodString]>;
488
+ lte: z.ZodUnion<[z.ZodString, z.ZodString]>;
489
+ }, "strip", z.ZodTypeAny, {
490
+ type: "range";
491
+ gte: string;
492
+ lte: string;
493
+ }, {
494
+ type: "range";
495
+ gte: string;
496
+ lte: string;
497
+ }>, z.ZodObject<{
498
+ type: z.ZodLiteral<"timePeriod">;
499
+ term: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
500
+ }, "strip", z.ZodTypeAny, {
501
+ type: "timePeriod";
502
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
503
+ }, {
504
+ type: "timePeriod";
505
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
506
+ }>]>>>;
507
+ 'legalStatuses.DECLARED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
508
+ type: z.ZodLiteral<"within">;
509
+ location: z.ZodString;
510
+ }, "strip", z.ZodTypeAny, {
511
+ type: "within";
512
+ location: string;
513
+ }, {
514
+ type: "within";
515
+ location: string;
516
+ }>, z.ZodObject<{
517
+ type: z.ZodLiteral<"exact">;
518
+ term: z.ZodString;
519
+ }, "strip", z.ZodTypeAny, {
520
+ type: "exact";
521
+ term: string;
522
+ }, {
523
+ type: "exact";
524
+ term: string;
525
+ }>]>>>;
526
+ 'legalStatuses.REGISTERED.createdAtLocation': z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
527
+ type: z.ZodLiteral<"within">;
528
+ location: z.ZodString;
529
+ }, "strip", z.ZodTypeAny, {
530
+ type: "within";
531
+ location: string;
532
+ }, {
533
+ type: "within";
534
+ location: string;
535
+ }>, z.ZodObject<{
536
+ type: z.ZodLiteral<"exact">;
537
+ term: z.ZodString;
538
+ }, "strip", z.ZodTypeAny, {
539
+ type: "exact";
540
+ term: string;
541
+ }, {
542
+ type: "exact";
543
+ term: string;
544
+ }>]>>>;
545
+ 'legalStatuses.REGISTERED.registrationNumber': z.ZodOptional<z.ZodOptional<z.ZodObject<{
546
+ type: z.ZodLiteral<"exact">;
547
+ term: z.ZodString;
548
+ }, "strip", z.ZodTypeAny, {
549
+ type: "exact";
550
+ term: string;
551
+ }, {
552
+ type: "exact";
553
+ term: string;
554
+ }>>>;
555
+ createdAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
556
+ type: z.ZodLiteral<"within">;
557
+ location: z.ZodString;
558
+ }, "strip", z.ZodTypeAny, {
559
+ type: "within";
560
+ location: string;
561
+ }, {
562
+ type: "within";
563
+ location: string;
564
+ }>, z.ZodObject<{
565
+ type: z.ZodLiteral<"exact">;
566
+ term: z.ZodString;
567
+ }, "strip", z.ZodTypeAny, {
568
+ type: "exact";
569
+ term: string;
570
+ }, {
571
+ type: "exact";
572
+ term: string;
573
+ }>]>>>;
574
+ updatedAtLocation: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodObject<{
575
+ type: z.ZodLiteral<"within">;
576
+ location: z.ZodString;
577
+ }, "strip", z.ZodTypeAny, {
578
+ type: "within";
579
+ location: string;
580
+ }, {
581
+ type: "within";
582
+ location: string;
583
+ }>, z.ZodObject<{
584
+ type: z.ZodLiteral<"exact">;
585
+ term: z.ZodString;
586
+ }, "strip", z.ZodTypeAny, {
587
+ type: "exact";
588
+ term: string;
589
+ }, {
590
+ type: "exact";
591
+ term: string;
592
+ }>]>>>;
593
+ assignedTo: z.ZodOptional<z.ZodOptional<z.ZodObject<{
594
+ type: z.ZodLiteral<"exact">;
595
+ term: z.ZodString;
596
+ }, "strip", z.ZodTypeAny, {
597
+ type: "exact";
598
+ term: string;
599
+ }, {
600
+ type: "exact";
601
+ term: string;
602
+ }>>>;
603
+ createdByUserType: z.ZodOptional<z.ZodOptional<z.ZodObject<{
604
+ type: z.ZodLiteral<"exact">;
605
+ term: z.ZodEnum<["user", "system"]>;
606
+ }, "strip", z.ZodTypeAny, {
607
+ type: "exact";
608
+ term: "system" | "user";
609
+ }, {
610
+ type: "exact";
611
+ term: "system" | "user";
612
+ }>>>;
613
+ updatedByUserRole: z.ZodOptional<z.ZodOptional<z.ZodObject<{
614
+ type: z.ZodLiteral<"exact">;
615
+ term: z.ZodString;
616
+ }, "strip", z.ZodTypeAny, {
617
+ type: "exact";
618
+ term: string;
619
+ }, {
620
+ type: "exact";
621
+ term: string;
622
+ }>>>;
623
+ createdBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
624
+ type: z.ZodLiteral<"exact">;
625
+ term: z.ZodString;
626
+ }, "strip", z.ZodTypeAny, {
627
+ type: "exact";
628
+ term: string;
629
+ }, {
630
+ type: "exact";
631
+ term: string;
632
+ }>>>;
633
+ updatedBy: z.ZodOptional<z.ZodOptional<z.ZodObject<{
634
+ type: z.ZodLiteral<"exact">;
635
+ term: z.ZodString;
636
+ }, "strip", z.ZodTypeAny, {
637
+ type: "exact";
638
+ term: string;
639
+ }, {
640
+ type: "exact";
641
+ term: string;
642
+ }>>>;
643
+ trackingId: z.ZodOptional<z.ZodOptional<z.ZodObject<{
644
+ type: z.ZodLiteral<"exact">;
645
+ term: z.ZodString;
646
+ }, "strip", z.ZodTypeAny, {
647
+ type: "exact";
648
+ term: string;
649
+ }, {
650
+ type: "exact";
651
+ term: string;
652
+ }>>>;
653
+ flags: z.ZodOptional<z.ZodOptional<z.ZodObject<{
654
+ anyOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
655
+ readonly PENDING_CERTIFICATION: "pending-certification";
656
+ readonly INCOMPLETE: "incomplete";
657
+ readonly REJECTED: "rejected";
658
+ readonly CORRECTION_REQUESTED: "correction-requested";
659
+ readonly POTENTIAL_DUPLICATE: "potential-duplicate";
660
+ }>]>, "many">>;
661
+ noneOf: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNativeEnum<{
662
+ readonly PENDING_CERTIFICATION: "pending-certification";
663
+ readonly INCOMPLETE: "incomplete";
664
+ readonly REJECTED: "rejected";
665
+ readonly CORRECTION_REQUESTED: "correction-requested";
666
+ readonly POTENTIAL_DUPLICATE: "potential-duplicate";
667
+ }>]>, "many">>;
668
+ }, "strip", z.ZodTypeAny, {
669
+ anyOf?: string[] | undefined;
670
+ noneOf?: string[] | undefined;
671
+ }, {
672
+ anyOf?: string[] | undefined;
673
+ noneOf?: string[] | undefined;
674
+ }>>>;
675
+ data: z.ZodOptional<z.ZodType<any, z.ZodTypeDef, any>>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ id?: string | undefined;
678
+ status?: {
679
+ type: "exact";
680
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
681
+ } | {
682
+ type: "anyOf";
683
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
684
+ } | undefined;
685
+ data?: any;
686
+ createdByUserType?: {
687
+ type: "exact";
688
+ term: "system" | "user";
689
+ } | undefined;
690
+ createdAt?: {
691
+ type: "range";
692
+ gte: string;
693
+ lte: string;
694
+ } | {
695
+ type: "exact";
696
+ term: string;
697
+ } | {
698
+ type: "timePeriod";
699
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
700
+ } | undefined;
701
+ createdBy?: {
702
+ type: "exact";
703
+ term: string;
704
+ } | undefined;
705
+ createdAtLocation?: {
706
+ type: "exact";
707
+ term: string;
708
+ } | {
709
+ type: "within";
710
+ location: string;
711
+ } | undefined;
712
+ assignedTo?: {
713
+ type: "exact";
714
+ term: string;
715
+ } | undefined;
716
+ trackingId?: {
717
+ type: "exact";
718
+ term: string;
719
+ } | undefined;
720
+ updatedAt?: {
721
+ type: "range";
722
+ gte: string;
723
+ lte: string;
724
+ } | {
725
+ type: "exact";
726
+ term: string;
727
+ } | {
728
+ type: "timePeriod";
729
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
730
+ } | undefined;
731
+ updatedByUserRole?: {
732
+ type: "exact";
733
+ term: string;
734
+ } | undefined;
735
+ updatedAtLocation?: {
736
+ type: "exact";
737
+ term: string;
738
+ } | {
739
+ type: "within";
740
+ location: string;
741
+ } | undefined;
742
+ updatedBy?: {
743
+ type: "exact";
744
+ term: string;
745
+ } | undefined;
746
+ flags?: {
747
+ anyOf?: string[] | undefined;
748
+ noneOf?: string[] | undefined;
749
+ } | undefined;
750
+ 'legalStatuses.REGISTERED.acceptedAt'?: {
751
+ type: "range";
752
+ gte: string;
753
+ lte: string;
754
+ } | {
755
+ type: "exact";
756
+ term: string;
757
+ } | {
758
+ type: "timePeriod";
759
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
760
+ } | undefined;
761
+ eventType?: string | undefined;
762
+ 'legalStatuses.DECLARED.createdAtLocation'?: {
763
+ type: "exact";
764
+ term: string;
765
+ } | {
766
+ type: "within";
767
+ location: string;
768
+ } | undefined;
769
+ 'legalStatuses.REGISTERED.createdAtLocation'?: {
770
+ type: "exact";
771
+ term: string;
772
+ } | {
773
+ type: "within";
774
+ location: string;
775
+ } | undefined;
776
+ 'legalStatuses.REGISTERED.registrationNumber'?: {
777
+ type: "exact";
778
+ term: string;
779
+ } | undefined;
780
+ }, {
781
+ id?: string | undefined;
782
+ status?: {
783
+ type: "exact";
784
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
785
+ } | {
786
+ type: "anyOf";
787
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
788
+ } | undefined;
789
+ data?: any;
790
+ createdByUserType?: {
791
+ type: "exact";
792
+ term: "system" | "user";
793
+ } | undefined;
794
+ createdAt?: {
795
+ type: "range";
796
+ gte: string;
797
+ lte: string;
798
+ } | {
799
+ type: "exact";
800
+ term: string;
801
+ } | {
802
+ type: "timePeriod";
803
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
804
+ } | undefined;
805
+ createdBy?: {
806
+ type: "exact";
807
+ term: string;
808
+ } | undefined;
809
+ createdAtLocation?: {
810
+ type: "exact";
811
+ term: string;
812
+ } | {
813
+ type: "within";
814
+ location: string;
815
+ } | undefined;
816
+ assignedTo?: {
817
+ type: "exact";
818
+ term: string;
819
+ } | undefined;
820
+ trackingId?: {
821
+ type: "exact";
822
+ term: string;
823
+ } | undefined;
824
+ updatedAt?: {
825
+ type: "range";
826
+ gte: string;
827
+ lte: string;
828
+ } | {
829
+ type: "exact";
830
+ term: string;
831
+ } | {
832
+ type: "timePeriod";
833
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
834
+ } | undefined;
835
+ updatedByUserRole?: {
836
+ type: "exact";
837
+ term: string;
838
+ } | undefined;
839
+ updatedAtLocation?: {
840
+ type: "exact";
841
+ term: string;
842
+ } | {
843
+ type: "within";
844
+ location: string;
845
+ } | undefined;
846
+ updatedBy?: {
847
+ type: "exact";
848
+ term: string;
849
+ } | undefined;
850
+ flags?: {
851
+ anyOf?: string[] | undefined;
852
+ noneOf?: string[] | undefined;
853
+ } | undefined;
854
+ 'legalStatuses.REGISTERED.acceptedAt'?: {
855
+ type: "range";
856
+ gte: string;
857
+ lte: string;
858
+ } | {
859
+ type: "exact";
860
+ term: string;
861
+ } | {
862
+ type: "timePeriod";
863
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
864
+ } | undefined;
865
+ eventType?: string | undefined;
866
+ 'legalStatuses.DECLARED.createdAtLocation'?: {
867
+ type: "exact";
868
+ term: string;
869
+ } | {
870
+ type: "within";
871
+ location: string;
872
+ } | undefined;
873
+ 'legalStatuses.REGISTERED.createdAtLocation'?: {
874
+ type: "exact";
875
+ term: string;
876
+ } | {
877
+ type: "within";
878
+ location: string;
879
+ } | undefined;
880
+ 'legalStatuses.REGISTERED.registrationNumber'?: {
881
+ type: "exact";
882
+ term: string;
883
+ } | undefined;
884
+ }>, {
885
+ id?: string | undefined;
886
+ status?: {
887
+ type: "exact";
888
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
889
+ } | {
890
+ type: "anyOf";
891
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
892
+ } | undefined;
893
+ data?: any;
894
+ createdByUserType?: {
895
+ type: "exact";
896
+ term: "system" | "user";
897
+ } | undefined;
898
+ createdAt?: {
899
+ type: "range";
900
+ gte: string;
901
+ lte: string;
902
+ } | {
903
+ type: "exact";
904
+ term: string;
905
+ } | {
906
+ type: "timePeriod";
907
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
908
+ } | undefined;
909
+ createdBy?: {
910
+ type: "exact";
911
+ term: string;
912
+ } | undefined;
913
+ createdAtLocation?: {
914
+ type: "exact";
915
+ term: string;
916
+ } | {
917
+ type: "within";
918
+ location: string;
919
+ } | undefined;
920
+ assignedTo?: {
921
+ type: "exact";
922
+ term: string;
923
+ } | undefined;
924
+ trackingId?: {
925
+ type: "exact";
926
+ term: string;
927
+ } | undefined;
928
+ updatedAt?: {
929
+ type: "range";
930
+ gte: string;
931
+ lte: string;
932
+ } | {
933
+ type: "exact";
934
+ term: string;
935
+ } | {
936
+ type: "timePeriod";
937
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
938
+ } | undefined;
939
+ updatedByUserRole?: {
940
+ type: "exact";
941
+ term: string;
942
+ } | undefined;
943
+ updatedAtLocation?: {
944
+ type: "exact";
945
+ term: string;
946
+ } | {
947
+ type: "within";
948
+ location: string;
949
+ } | undefined;
950
+ updatedBy?: {
951
+ type: "exact";
952
+ term: string;
953
+ } | undefined;
954
+ flags?: {
955
+ anyOf?: string[] | undefined;
956
+ noneOf?: string[] | undefined;
957
+ } | undefined;
958
+ 'legalStatuses.REGISTERED.acceptedAt'?: {
959
+ type: "range";
960
+ gte: string;
961
+ lte: string;
962
+ } | {
963
+ type: "exact";
964
+ term: string;
965
+ } | {
966
+ type: "timePeriod";
967
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
968
+ } | undefined;
969
+ eventType?: string | undefined;
970
+ 'legalStatuses.DECLARED.createdAtLocation'?: {
971
+ type: "exact";
972
+ term: string;
973
+ } | {
974
+ type: "within";
975
+ location: string;
976
+ } | undefined;
977
+ 'legalStatuses.REGISTERED.createdAtLocation'?: {
978
+ type: "exact";
979
+ term: string;
980
+ } | {
981
+ type: "within";
982
+ location: string;
983
+ } | undefined;
984
+ 'legalStatuses.REGISTERED.registrationNumber'?: {
985
+ type: "exact";
986
+ term: string;
987
+ } | undefined;
988
+ }, {
989
+ id?: string | undefined;
990
+ status?: {
991
+ type: "exact";
992
+ term: "ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED";
993
+ } | {
994
+ type: "anyOf";
995
+ terms: ("ARCHIVED" | "DECLARED" | "REGISTERED" | "VALIDATED" | "CREATED" | "NOTIFIED")[];
996
+ } | undefined;
997
+ data?: any;
998
+ createdByUserType?: {
999
+ type: "exact";
1000
+ term: "system" | "user";
1001
+ } | undefined;
1002
+ createdAt?: {
1003
+ type: "range";
1004
+ gte: string;
1005
+ lte: string;
1006
+ } | {
1007
+ type: "exact";
1008
+ term: string;
1009
+ } | {
1010
+ type: "timePeriod";
1011
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1012
+ } | undefined;
1013
+ createdBy?: {
1014
+ type: "exact";
1015
+ term: string;
1016
+ } | undefined;
1017
+ createdAtLocation?: {
1018
+ type: "exact";
1019
+ term: string;
1020
+ } | {
1021
+ type: "within";
1022
+ location: string;
1023
+ } | undefined;
1024
+ assignedTo?: {
1025
+ type: "exact";
1026
+ term: string;
1027
+ } | undefined;
1028
+ trackingId?: {
1029
+ type: "exact";
1030
+ term: string;
1031
+ } | undefined;
1032
+ updatedAt?: {
1033
+ type: "range";
1034
+ gte: string;
1035
+ lte: string;
1036
+ } | {
1037
+ type: "exact";
1038
+ term: string;
1039
+ } | {
1040
+ type: "timePeriod";
1041
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1042
+ } | undefined;
1043
+ updatedByUserRole?: {
1044
+ type: "exact";
1045
+ term: string;
1046
+ } | undefined;
1047
+ updatedAtLocation?: {
1048
+ type: "exact";
1049
+ term: string;
1050
+ } | {
1051
+ type: "within";
1052
+ location: string;
1053
+ } | undefined;
1054
+ updatedBy?: {
1055
+ type: "exact";
1056
+ term: string;
1057
+ } | undefined;
1058
+ flags?: {
1059
+ anyOf?: string[] | undefined;
1060
+ noneOf?: string[] | undefined;
1061
+ } | undefined;
1062
+ 'legalStatuses.REGISTERED.acceptedAt'?: {
1063
+ type: "range";
1064
+ gte: string;
1065
+ lte: string;
1066
+ } | {
1067
+ type: "exact";
1068
+ term: string;
1069
+ } | {
1070
+ type: "timePeriod";
1071
+ term: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1072
+ } | undefined;
1073
+ eventType?: string | undefined;
1074
+ 'legalStatuses.DECLARED.createdAtLocation'?: {
1075
+ type: "exact";
1076
+ term: string;
1077
+ } | {
1078
+ type: "within";
1079
+ location: string;
1080
+ } | undefined;
1081
+ 'legalStatuses.REGISTERED.createdAtLocation'?: {
1082
+ type: "exact";
1083
+ term: string;
1084
+ } | {
1085
+ type: "within";
1086
+ location: string;
1087
+ } | undefined;
1088
+ 'legalStatuses.REGISTERED.registrationNumber'?: {
1089
+ type: "exact";
1090
+ term: string;
1091
+ } | undefined;
1092
+ }>;
1093
+ export declare const QueryType: ZodType;
1094
+ export declare const SearchQuery: z.ZodObject<{
1095
+ query: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, any, unknown>;
1096
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1097
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
1098
+ sort: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
1099
+ field: z.ZodString;
1100
+ direction: z.ZodDefault<z.ZodEnum<["asc", "desc"]>>;
1101
+ }, "strip", z.ZodTypeAny, {
1102
+ field: string;
1103
+ direction: "asc" | "desc";
1104
+ }, {
1105
+ field: string;
1106
+ direction?: "asc" | "desc" | undefined;
1107
+ }>, "many">, {
1108
+ field: string;
1109
+ direction: "asc" | "desc";
1110
+ }[], unknown>>;
1111
+ }, "strip", z.ZodTypeAny, {
1112
+ limit: number;
1113
+ offset: number;
1114
+ sort?: {
1115
+ field: string;
1116
+ direction: "asc" | "desc";
1117
+ }[] | undefined;
1118
+ query?: any;
1119
+ }, {
1120
+ sort?: unknown;
1121
+ query?: unknown;
1122
+ limit?: number | undefined;
1123
+ offset?: number | undefined;
1124
+ }>;
1125
+ export type SearchQuery = z.infer<typeof SearchQuery>;
1126
+ export type QueryType = z.infer<typeof QueryType>;
1127
+ export type QueryExpression = z.infer<typeof QueryExpression>;
1128
+ export declare const SearchScopeAccessLevels: {
1129
+ readonly MY_JURISDICTION: "my-jurisdiction";
1130
+ readonly ALL: "all";
1131
+ };
1132
+ export type SearchScopeAccessLevels = (typeof SearchScopeAccessLevels)[keyof typeof SearchScopeAccessLevels];
1133
+ export {};
1134
+ //# sourceMappingURL=EventIndex.d.ts.map