@opencrvs/toolkit 1.8.0-rc.f466707 → 1.8.0-rc.fc43738

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.
@@ -1,9 +1,5 @@
1
1
  import { z } from 'zod';
2
- import { FieldValue } from './FieldValue';
3
- /**
4
- * ActionUpdate is a record of a specific action that updated data fields.
5
- */
6
- export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2
+ export declare const ActionMetadata: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
7
3
  filename: z.ZodString;
8
4
  originalFilename: z.ZodString;
9
5
  type: z.ZodString;
@@ -30,67 +26,63 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
30
26
  option: string;
31
27
  filename: string;
32
28
  originalFilename: string;
33
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
29
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
34
30
  country: z.ZodString;
35
31
  province: z.ZodString;
36
32
  district: z.ZodString;
37
33
  }, {
38
34
  urbanOrRural: z.ZodLiteral<"URBAN">;
39
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
40
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
42
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
43
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35
+ town: z.ZodOptional<z.ZodString>;
36
+ residentialArea: z.ZodOptional<z.ZodString>;
37
+ street: z.ZodOptional<z.ZodString>;
38
+ number: z.ZodOptional<z.ZodString>;
39
+ zipCode: z.ZodOptional<z.ZodString>;
44
40
  }>, "strip", z.ZodTypeAny, {
45
41
  country: string;
46
42
  district: string;
47
43
  province: string;
48
44
  urbanOrRural: "URBAN";
49
- number?: string | null | undefined;
50
- town?: string | null | undefined;
51
- residentialArea?: string | null | undefined;
52
- street?: string | null | undefined;
53
- zipCode?: string | null | undefined;
45
+ number?: string | undefined;
46
+ town?: string | undefined;
47
+ residentialArea?: string | undefined;
48
+ street?: string | undefined;
49
+ zipCode?: string | undefined;
54
50
  }, {
55
51
  country: string;
56
52
  district: string;
57
53
  province: string;
58
54
  urbanOrRural: "URBAN";
59
- number?: string | null | undefined;
60
- town?: string | null | undefined;
61
- residentialArea?: string | null | undefined;
62
- street?: string | null | undefined;
63
- zipCode?: string | null | undefined;
55
+ number?: string | undefined;
56
+ town?: string | undefined;
57
+ residentialArea?: string | undefined;
58
+ street?: string | undefined;
59
+ zipCode?: string | undefined;
64
60
  }>, z.ZodObject<z.objectUtil.extendShape<{
65
61
  country: z.ZodString;
66
62
  province: z.ZodString;
67
63
  district: z.ZodString;
68
64
  }, {
69
65
  urbanOrRural: z.ZodLiteral<"RURAL">;
70
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
66
+ village: z.ZodOptional<z.ZodString>;
71
67
  }>, "strip", z.ZodTypeAny, {
72
68
  country: string;
73
69
  district: string;
74
70
  province: string;
75
71
  urbanOrRural: "RURAL";
76
- village?: string | null | undefined;
72
+ village?: string | undefined;
77
73
  }, {
78
74
  country: string;
79
75
  district: string;
80
76
  province: string;
81
77
  urbanOrRural: "RURAL";
82
- village?: string | null | undefined;
78
+ village?: string | undefined;
83
79
  }>]>>;
84
- export type ActionUpdate = z.infer<typeof ActionUpdate>;
85
- /**
86
- * EventState is an aggregate of all the actions that have been applied to event data.
87
- */
88
- export type EventState = Record<string, FieldValue>;
80
+ export type ActionMetadata = z.infer<typeof ActionMetadata>;
89
81
  export declare const ActionBase: z.ZodObject<{
90
82
  id: z.ZodString;
91
83
  createdAt: z.ZodString;
92
84
  createdBy: z.ZodString;
93
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
85
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
94
86
  filename: z.ZodString;
95
87
  originalFilename: z.ZodString;
96
88
  type: z.ZodString;
@@ -117,58 +109,58 @@ export declare const ActionBase: z.ZodObject<{
117
109
  option: string;
118
110
  filename: string;
119
111
  originalFilename: string;
120
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
112
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
121
113
  country: z.ZodString;
122
114
  province: z.ZodString;
123
115
  district: z.ZodString;
124
116
  }, {
125
117
  urbanOrRural: z.ZodLiteral<"URBAN">;
126
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
127
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
130
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
118
+ town: z.ZodOptional<z.ZodString>;
119
+ residentialArea: z.ZodOptional<z.ZodString>;
120
+ street: z.ZodOptional<z.ZodString>;
121
+ number: z.ZodOptional<z.ZodString>;
122
+ zipCode: z.ZodOptional<z.ZodString>;
131
123
  }>, "strip", z.ZodTypeAny, {
132
124
  country: string;
133
125
  district: string;
134
126
  province: string;
135
127
  urbanOrRural: "URBAN";
136
- number?: string | null | undefined;
137
- town?: string | null | undefined;
138
- residentialArea?: string | null | undefined;
139
- street?: string | null | undefined;
140
- zipCode?: string | null | undefined;
128
+ number?: string | undefined;
129
+ town?: string | undefined;
130
+ residentialArea?: string | undefined;
131
+ street?: string | undefined;
132
+ zipCode?: string | undefined;
141
133
  }, {
142
134
  country: string;
143
135
  district: string;
144
136
  province: string;
145
137
  urbanOrRural: "URBAN";
146
- number?: string | null | undefined;
147
- town?: string | null | undefined;
148
- residentialArea?: string | null | undefined;
149
- street?: string | null | undefined;
150
- zipCode?: string | null | undefined;
138
+ number?: string | undefined;
139
+ town?: string | undefined;
140
+ residentialArea?: string | undefined;
141
+ street?: string | undefined;
142
+ zipCode?: string | undefined;
151
143
  }>, z.ZodObject<z.objectUtil.extendShape<{
152
144
  country: z.ZodString;
153
145
  province: z.ZodString;
154
146
  district: z.ZodString;
155
147
  }, {
156
148
  urbanOrRural: z.ZodLiteral<"RURAL">;
157
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
149
+ village: z.ZodOptional<z.ZodString>;
158
150
  }>, "strip", z.ZodTypeAny, {
159
151
  country: string;
160
152
  district: string;
161
153
  province: string;
162
154
  urbanOrRural: "RURAL";
163
- village?: string | null | undefined;
155
+ village?: string | undefined;
164
156
  }, {
165
157
  country: string;
166
158
  district: string;
167
159
  province: string;
168
160
  urbanOrRural: "RURAL";
169
- village?: string | null | undefined;
161
+ village?: string | undefined;
170
162
  }>]>>;
171
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
163
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
172
164
  filename: z.ZodString;
173
165
  originalFilename: z.ZodString;
174
166
  type: z.ZodString;
@@ -195,56 +187,56 @@ export declare const ActionBase: z.ZodObject<{
195
187
  option: string;
196
188
  filename: string;
197
189
  originalFilename: string;
198
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
190
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
199
191
  country: z.ZodString;
200
192
  province: z.ZodString;
201
193
  district: z.ZodString;
202
194
  }, {
203
195
  urbanOrRural: z.ZodLiteral<"URBAN">;
204
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
205
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
206
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
207
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
208
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
196
+ town: z.ZodOptional<z.ZodString>;
197
+ residentialArea: z.ZodOptional<z.ZodString>;
198
+ street: z.ZodOptional<z.ZodString>;
199
+ number: z.ZodOptional<z.ZodString>;
200
+ zipCode: z.ZodOptional<z.ZodString>;
209
201
  }>, "strip", z.ZodTypeAny, {
210
202
  country: string;
211
203
  district: string;
212
204
  province: string;
213
205
  urbanOrRural: "URBAN";
214
- number?: string | null | undefined;
215
- town?: string | null | undefined;
216
- residentialArea?: string | null | undefined;
217
- street?: string | null | undefined;
218
- zipCode?: string | null | undefined;
206
+ number?: string | undefined;
207
+ town?: string | undefined;
208
+ residentialArea?: string | undefined;
209
+ street?: string | undefined;
210
+ zipCode?: string | undefined;
219
211
  }, {
220
212
  country: string;
221
213
  district: string;
222
214
  province: string;
223
215
  urbanOrRural: "URBAN";
224
- number?: string | null | undefined;
225
- town?: string | null | undefined;
226
- residentialArea?: string | null | undefined;
227
- street?: string | null | undefined;
228
- zipCode?: string | null | undefined;
216
+ number?: string | undefined;
217
+ town?: string | undefined;
218
+ residentialArea?: string | undefined;
219
+ street?: string | undefined;
220
+ zipCode?: string | undefined;
229
221
  }>, z.ZodObject<z.objectUtil.extendShape<{
230
222
  country: z.ZodString;
231
223
  province: z.ZodString;
232
224
  district: z.ZodString;
233
225
  }, {
234
226
  urbanOrRural: z.ZodLiteral<"RURAL">;
235
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
227
+ village: z.ZodOptional<z.ZodString>;
236
228
  }>, "strip", z.ZodTypeAny, {
237
229
  country: string;
238
230
  district: string;
239
231
  province: string;
240
232
  urbanOrRural: "RURAL";
241
- village?: string | null | undefined;
233
+ village?: string | undefined;
242
234
  }, {
243
235
  country: string;
244
236
  district: string;
245
237
  province: string;
246
238
  urbanOrRural: "RURAL";
247
- village?: string | null | undefined;
239
+ village?: string | undefined;
248
240
  }>]>>>;
249
241
  createdAtLocation: z.ZodString;
250
242
  }, "strip", z.ZodTypeAny, {
@@ -258,17 +250,17 @@ export declare const ActionBase: z.ZodObject<{
258
250
  district: string;
259
251
  province: string;
260
252
  urbanOrRural: "URBAN";
261
- number?: string | null | undefined;
262
- town?: string | null | undefined;
263
- residentialArea?: string | null | undefined;
264
- street?: string | null | undefined;
265
- zipCode?: string | null | undefined;
253
+ number?: string | undefined;
254
+ town?: string | undefined;
255
+ residentialArea?: string | undefined;
256
+ street?: string | undefined;
257
+ zipCode?: string | undefined;
266
258
  } | {
267
259
  country: string;
268
260
  district: string;
269
261
  province: string;
270
262
  urbanOrRural: "RURAL";
271
- village?: string | null | undefined;
263
+ village?: string | undefined;
272
264
  } | {
273
265
  type: string;
274
266
  option: string;
@@ -287,17 +279,17 @@ export declare const ActionBase: z.ZodObject<{
287
279
  district: string;
288
280
  province: string;
289
281
  urbanOrRural: "URBAN";
290
- number?: string | null | undefined;
291
- town?: string | null | undefined;
292
- residentialArea?: string | null | undefined;
293
- street?: string | null | undefined;
294
- zipCode?: string | null | undefined;
282
+ number?: string | undefined;
283
+ town?: string | undefined;
284
+ residentialArea?: string | undefined;
285
+ street?: string | undefined;
286
+ zipCode?: string | undefined;
295
287
  } | {
296
288
  country: string;
297
289
  district: string;
298
290
  province: string;
299
291
  urbanOrRural: "RURAL";
300
- village?: string | null | undefined;
292
+ village?: string | undefined;
301
293
  } | {
302
294
  type: string;
303
295
  option: string;
@@ -315,17 +307,17 @@ export declare const ActionBase: z.ZodObject<{
315
307
  district: string;
316
308
  province: string;
317
309
  urbanOrRural: "URBAN";
318
- number?: string | null | undefined;
319
- town?: string | null | undefined;
320
- residentialArea?: string | null | undefined;
321
- street?: string | null | undefined;
322
- zipCode?: string | null | undefined;
310
+ number?: string | undefined;
311
+ town?: string | undefined;
312
+ residentialArea?: string | undefined;
313
+ street?: string | undefined;
314
+ zipCode?: string | undefined;
323
315
  } | {
324
316
  country: string;
325
317
  district: string;
326
318
  province: string;
327
319
  urbanOrRural: "RURAL";
328
- village?: string | null | undefined;
320
+ village?: string | undefined;
329
321
  } | {
330
322
  type: string;
331
323
  option: string;
@@ -344,17 +336,17 @@ export declare const ActionBase: z.ZodObject<{
344
336
  district: string;
345
337
  province: string;
346
338
  urbanOrRural: "URBAN";
347
- number?: string | null | undefined;
348
- town?: string | null | undefined;
349
- residentialArea?: string | null | undefined;
350
- street?: string | null | undefined;
351
- zipCode?: string | null | undefined;
339
+ number?: string | undefined;
340
+ town?: string | undefined;
341
+ residentialArea?: string | undefined;
342
+ street?: string | undefined;
343
+ zipCode?: string | undefined;
352
344
  } | {
353
345
  country: string;
354
346
  district: string;
355
347
  province: string;
356
348
  urbanOrRural: "RURAL";
357
- village?: string | null | undefined;
349
+ village?: string | undefined;
358
350
  } | {
359
351
  type: string;
360
352
  option: string;
@@ -367,7 +359,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
367
359
  id: z.ZodString;
368
360
  createdAt: z.ZodString;
369
361
  createdBy: z.ZodString;
370
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
362
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
371
363
  filename: z.ZodString;
372
364
  originalFilename: z.ZodString;
373
365
  type: z.ZodString;
@@ -394,58 +386,58 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
394
386
  option: string;
395
387
  filename: string;
396
388
  originalFilename: string;
397
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
389
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
398
390
  country: z.ZodString;
399
391
  province: z.ZodString;
400
392
  district: z.ZodString;
401
393
  }, {
402
394
  urbanOrRural: z.ZodLiteral<"URBAN">;
403
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
404
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
405
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
406
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
407
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
395
+ town: z.ZodOptional<z.ZodString>;
396
+ residentialArea: z.ZodOptional<z.ZodString>;
397
+ street: z.ZodOptional<z.ZodString>;
398
+ number: z.ZodOptional<z.ZodString>;
399
+ zipCode: z.ZodOptional<z.ZodString>;
408
400
  }>, "strip", z.ZodTypeAny, {
409
401
  country: string;
410
402
  district: string;
411
403
  province: string;
412
404
  urbanOrRural: "URBAN";
413
- number?: string | null | undefined;
414
- town?: string | null | undefined;
415
- residentialArea?: string | null | undefined;
416
- street?: string | null | undefined;
417
- zipCode?: string | null | undefined;
405
+ number?: string | undefined;
406
+ town?: string | undefined;
407
+ residentialArea?: string | undefined;
408
+ street?: string | undefined;
409
+ zipCode?: string | undefined;
418
410
  }, {
419
411
  country: string;
420
412
  district: string;
421
413
  province: string;
422
414
  urbanOrRural: "URBAN";
423
- number?: string | null | undefined;
424
- town?: string | null | undefined;
425
- residentialArea?: string | null | undefined;
426
- street?: string | null | undefined;
427
- zipCode?: string | null | undefined;
415
+ number?: string | undefined;
416
+ town?: string | undefined;
417
+ residentialArea?: string | undefined;
418
+ street?: string | undefined;
419
+ zipCode?: string | undefined;
428
420
  }>, z.ZodObject<z.objectUtil.extendShape<{
429
421
  country: z.ZodString;
430
422
  province: z.ZodString;
431
423
  district: z.ZodString;
432
424
  }, {
433
425
  urbanOrRural: z.ZodLiteral<"RURAL">;
434
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
426
+ village: z.ZodOptional<z.ZodString>;
435
427
  }>, "strip", z.ZodTypeAny, {
436
428
  country: string;
437
429
  district: string;
438
430
  province: string;
439
431
  urbanOrRural: "RURAL";
440
- village?: string | null | undefined;
432
+ village?: string | undefined;
441
433
  }, {
442
434
  country: string;
443
435
  district: string;
444
436
  province: string;
445
437
  urbanOrRural: "RURAL";
446
- village?: string | null | undefined;
438
+ village?: string | undefined;
447
439
  }>]>>;
448
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
440
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
449
441
  filename: z.ZodString;
450
442
  originalFilename: z.ZodString;
451
443
  type: z.ZodString;
@@ -472,56 +464,56 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
472
464
  option: string;
473
465
  filename: string;
474
466
  originalFilename: string;
475
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
467
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
476
468
  country: z.ZodString;
477
469
  province: z.ZodString;
478
470
  district: z.ZodString;
479
471
  }, {
480
472
  urbanOrRural: z.ZodLiteral<"URBAN">;
481
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
482
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
483
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
484
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
485
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
473
+ town: z.ZodOptional<z.ZodString>;
474
+ residentialArea: z.ZodOptional<z.ZodString>;
475
+ street: z.ZodOptional<z.ZodString>;
476
+ number: z.ZodOptional<z.ZodString>;
477
+ zipCode: z.ZodOptional<z.ZodString>;
486
478
  }>, "strip", z.ZodTypeAny, {
487
479
  country: string;
488
480
  district: string;
489
481
  province: string;
490
482
  urbanOrRural: "URBAN";
491
- number?: string | null | undefined;
492
- town?: string | null | undefined;
493
- residentialArea?: string | null | undefined;
494
- street?: string | null | undefined;
495
- zipCode?: string | null | undefined;
483
+ number?: string | undefined;
484
+ town?: string | undefined;
485
+ residentialArea?: string | undefined;
486
+ street?: string | undefined;
487
+ zipCode?: string | undefined;
496
488
  }, {
497
489
  country: string;
498
490
  district: string;
499
491
  province: string;
500
492
  urbanOrRural: "URBAN";
501
- number?: string | null | undefined;
502
- town?: string | null | undefined;
503
- residentialArea?: string | null | undefined;
504
- street?: string | null | undefined;
505
- zipCode?: string | null | undefined;
493
+ number?: string | undefined;
494
+ town?: string | undefined;
495
+ residentialArea?: string | undefined;
496
+ street?: string | undefined;
497
+ zipCode?: string | undefined;
506
498
  }>, z.ZodObject<z.objectUtil.extendShape<{
507
499
  country: z.ZodString;
508
500
  province: z.ZodString;
509
501
  district: z.ZodString;
510
502
  }, {
511
503
  urbanOrRural: z.ZodLiteral<"RURAL">;
512
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
504
+ village: z.ZodOptional<z.ZodString>;
513
505
  }>, "strip", z.ZodTypeAny, {
514
506
  country: string;
515
507
  district: string;
516
508
  province: string;
517
509
  urbanOrRural: "RURAL";
518
- village?: string | null | undefined;
510
+ village?: string | undefined;
519
511
  }, {
520
512
  country: string;
521
513
  district: string;
522
514
  province: string;
523
515
  urbanOrRural: "RURAL";
524
- village?: string | null | undefined;
516
+ village?: string | undefined;
525
517
  }>]>>>;
526
518
  createdAtLocation: z.ZodString;
527
519
  }, {
@@ -538,17 +530,17 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
538
530
  district: string;
539
531
  province: string;
540
532
  urbanOrRural: "URBAN";
541
- number?: string | null | undefined;
542
- town?: string | null | undefined;
543
- residentialArea?: string | null | undefined;
544
- street?: string | null | undefined;
545
- zipCode?: string | null | undefined;
533
+ number?: string | undefined;
534
+ town?: string | undefined;
535
+ residentialArea?: string | undefined;
536
+ street?: string | undefined;
537
+ zipCode?: string | undefined;
546
538
  } | {
547
539
  country: string;
548
540
  district: string;
549
541
  province: string;
550
542
  urbanOrRural: "RURAL";
551
- village?: string | null | undefined;
543
+ village?: string | undefined;
552
544
  } | {
553
545
  type: string;
554
546
  option: string;
@@ -567,17 +559,17 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
567
559
  district: string;
568
560
  province: string;
569
561
  urbanOrRural: "URBAN";
570
- number?: string | null | undefined;
571
- town?: string | null | undefined;
572
- residentialArea?: string | null | undefined;
573
- street?: string | null | undefined;
574
- zipCode?: string | null | undefined;
562
+ number?: string | undefined;
563
+ town?: string | undefined;
564
+ residentialArea?: string | undefined;
565
+ street?: string | undefined;
566
+ zipCode?: string | undefined;
575
567
  } | {
576
568
  country: string;
577
569
  district: string;
578
570
  province: string;
579
571
  urbanOrRural: "RURAL";
580
- village?: string | null | undefined;
572
+ village?: string | undefined;
581
573
  } | {
582
574
  type: string;
583
575
  option: string;
@@ -596,17 +588,17 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
596
588
  district: string;
597
589
  province: string;
598
590
  urbanOrRural: "URBAN";
599
- number?: string | null | undefined;
600
- town?: string | null | undefined;
601
- residentialArea?: string | null | undefined;
602
- street?: string | null | undefined;
603
- zipCode?: string | null | undefined;
591
+ number?: string | undefined;
592
+ town?: string | undefined;
593
+ residentialArea?: string | undefined;
594
+ street?: string | undefined;
595
+ zipCode?: string | undefined;
604
596
  } | {
605
597
  country: string;
606
598
  district: string;
607
599
  province: string;
608
600
  urbanOrRural: "RURAL";
609
- village?: string | null | undefined;
601
+ village?: string | undefined;
610
602
  } | {
611
603
  type: string;
612
604
  option: string;
@@ -625,17 +617,17 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
625
617
  district: string;
626
618
  province: string;
627
619
  urbanOrRural: "URBAN";
628
- number?: string | null | undefined;
629
- town?: string | null | undefined;
630
- residentialArea?: string | null | undefined;
631
- street?: string | null | undefined;
632
- zipCode?: string | null | undefined;
620
+ number?: string | undefined;
621
+ town?: string | undefined;
622
+ residentialArea?: string | undefined;
623
+ street?: string | undefined;
624
+ zipCode?: string | undefined;
633
625
  } | {
634
626
  country: string;
635
627
  district: string;
636
628
  province: string;
637
629
  urbanOrRural: "RURAL";
638
- village?: string | null | undefined;
630
+ village?: string | undefined;
639
631
  } | {
640
632
  type: string;
641
633
  option: string;
@@ -647,7 +639,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
647
639
  id: z.ZodString;
648
640
  createdAt: z.ZodString;
649
641
  createdBy: z.ZodString;
650
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
642
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
651
643
  filename: z.ZodString;
652
644
  originalFilename: z.ZodString;
653
645
  type: z.ZodString;
@@ -674,58 +666,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
674
666
  option: string;
675
667
  filename: string;
676
668
  originalFilename: string;
677
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
669
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
678
670
  country: z.ZodString;
679
671
  province: z.ZodString;
680
672
  district: z.ZodString;
681
673
  }, {
682
674
  urbanOrRural: z.ZodLiteral<"URBAN">;
683
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
684
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
685
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
686
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
687
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
675
+ town: z.ZodOptional<z.ZodString>;
676
+ residentialArea: z.ZodOptional<z.ZodString>;
677
+ street: z.ZodOptional<z.ZodString>;
678
+ number: z.ZodOptional<z.ZodString>;
679
+ zipCode: z.ZodOptional<z.ZodString>;
688
680
  }>, "strip", z.ZodTypeAny, {
689
681
  country: string;
690
682
  district: string;
691
683
  province: string;
692
684
  urbanOrRural: "URBAN";
693
- number?: string | null | undefined;
694
- town?: string | null | undefined;
695
- residentialArea?: string | null | undefined;
696
- street?: string | null | undefined;
697
- zipCode?: string | null | undefined;
685
+ number?: string | undefined;
686
+ town?: string | undefined;
687
+ residentialArea?: string | undefined;
688
+ street?: string | undefined;
689
+ zipCode?: string | undefined;
698
690
  }, {
699
691
  country: string;
700
692
  district: string;
701
693
  province: string;
702
694
  urbanOrRural: "URBAN";
703
- number?: string | null | undefined;
704
- town?: string | null | undefined;
705
- residentialArea?: string | null | undefined;
706
- street?: string | null | undefined;
707
- zipCode?: string | null | undefined;
695
+ number?: string | undefined;
696
+ town?: string | undefined;
697
+ residentialArea?: string | undefined;
698
+ street?: string | undefined;
699
+ zipCode?: string | undefined;
708
700
  }>, z.ZodObject<z.objectUtil.extendShape<{
709
701
  country: z.ZodString;
710
702
  province: z.ZodString;
711
703
  district: z.ZodString;
712
704
  }, {
713
705
  urbanOrRural: z.ZodLiteral<"RURAL">;
714
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
706
+ village: z.ZodOptional<z.ZodString>;
715
707
  }>, "strip", z.ZodTypeAny, {
716
708
  country: string;
717
709
  district: string;
718
710
  province: string;
719
711
  urbanOrRural: "RURAL";
720
- village?: string | null | undefined;
712
+ village?: string | undefined;
721
713
  }, {
722
714
  country: string;
723
715
  district: string;
724
716
  province: string;
725
717
  urbanOrRural: "RURAL";
726
- village?: string | null | undefined;
718
+ village?: string | undefined;
727
719
  }>]>>;
728
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
720
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
729
721
  filename: z.ZodString;
730
722
  originalFilename: z.ZodString;
731
723
  type: z.ZodString;
@@ -752,56 +744,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
752
744
  option: string;
753
745
  filename: string;
754
746
  originalFilename: string;
755
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
747
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
756
748
  country: z.ZodString;
757
749
  province: z.ZodString;
758
750
  district: z.ZodString;
759
751
  }, {
760
752
  urbanOrRural: z.ZodLiteral<"URBAN">;
761
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
762
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
763
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
764
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
765
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
753
+ town: z.ZodOptional<z.ZodString>;
754
+ residentialArea: z.ZodOptional<z.ZodString>;
755
+ street: z.ZodOptional<z.ZodString>;
756
+ number: z.ZodOptional<z.ZodString>;
757
+ zipCode: z.ZodOptional<z.ZodString>;
766
758
  }>, "strip", z.ZodTypeAny, {
767
759
  country: string;
768
760
  district: string;
769
761
  province: string;
770
762
  urbanOrRural: "URBAN";
771
- number?: string | null | undefined;
772
- town?: string | null | undefined;
773
- residentialArea?: string | null | undefined;
774
- street?: string | null | undefined;
775
- zipCode?: string | null | undefined;
763
+ number?: string | undefined;
764
+ town?: string | undefined;
765
+ residentialArea?: string | undefined;
766
+ street?: string | undefined;
767
+ zipCode?: string | undefined;
776
768
  }, {
777
769
  country: string;
778
770
  district: string;
779
771
  province: string;
780
772
  urbanOrRural: "URBAN";
781
- number?: string | null | undefined;
782
- town?: string | null | undefined;
783
- residentialArea?: string | null | undefined;
784
- street?: string | null | undefined;
785
- zipCode?: string | null | undefined;
773
+ number?: string | undefined;
774
+ town?: string | undefined;
775
+ residentialArea?: string | undefined;
776
+ street?: string | undefined;
777
+ zipCode?: string | undefined;
786
778
  }>, z.ZodObject<z.objectUtil.extendShape<{
787
779
  country: z.ZodString;
788
780
  province: z.ZodString;
789
781
  district: z.ZodString;
790
782
  }, {
791
783
  urbanOrRural: z.ZodLiteral<"RURAL">;
792
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
784
+ village: z.ZodOptional<z.ZodString>;
793
785
  }>, "strip", z.ZodTypeAny, {
794
786
  country: string;
795
787
  district: string;
796
788
  province: string;
797
789
  urbanOrRural: "RURAL";
798
- village?: string | null | undefined;
790
+ village?: string | undefined;
799
791
  }, {
800
792
  country: string;
801
793
  district: string;
802
794
  province: string;
803
795
  urbanOrRural: "RURAL";
804
- village?: string | null | undefined;
796
+ village?: string | undefined;
805
797
  }>]>>>;
806
798
  createdAtLocation: z.ZodString;
807
799
  }, {
@@ -818,17 +810,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
818
810
  district: string;
819
811
  province: string;
820
812
  urbanOrRural: "URBAN";
821
- number?: string | null | undefined;
822
- town?: string | null | undefined;
823
- residentialArea?: string | null | undefined;
824
- street?: string | null | undefined;
825
- zipCode?: string | null | undefined;
813
+ number?: string | undefined;
814
+ town?: string | undefined;
815
+ residentialArea?: string | undefined;
816
+ street?: string | undefined;
817
+ zipCode?: string | undefined;
826
818
  } | {
827
819
  country: string;
828
820
  district: string;
829
821
  province: string;
830
822
  urbanOrRural: "RURAL";
831
- village?: string | null | undefined;
823
+ village?: string | undefined;
832
824
  } | {
833
825
  type: string;
834
826
  option: string;
@@ -847,17 +839,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
847
839
  district: string;
848
840
  province: string;
849
841
  urbanOrRural: "URBAN";
850
- number?: string | null | undefined;
851
- town?: string | null | undefined;
852
- residentialArea?: string | null | undefined;
853
- street?: string | null | undefined;
854
- zipCode?: string | null | undefined;
842
+ number?: string | undefined;
843
+ town?: string | undefined;
844
+ residentialArea?: string | undefined;
845
+ street?: string | undefined;
846
+ zipCode?: string | undefined;
855
847
  } | {
856
848
  country: string;
857
849
  district: string;
858
850
  province: string;
859
851
  urbanOrRural: "RURAL";
860
- village?: string | null | undefined;
852
+ village?: string | undefined;
861
853
  } | {
862
854
  type: string;
863
855
  option: string;
@@ -876,17 +868,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
876
868
  district: string;
877
869
  province: string;
878
870
  urbanOrRural: "URBAN";
879
- number?: string | null | undefined;
880
- town?: string | null | undefined;
881
- residentialArea?: string | null | undefined;
882
- street?: string | null | undefined;
883
- zipCode?: string | null | undefined;
871
+ number?: string | undefined;
872
+ town?: string | undefined;
873
+ residentialArea?: string | undefined;
874
+ street?: string | undefined;
875
+ zipCode?: string | undefined;
884
876
  } | {
885
877
  country: string;
886
878
  district: string;
887
879
  province: string;
888
880
  urbanOrRural: "RURAL";
889
- village?: string | null | undefined;
881
+ village?: string | undefined;
890
882
  } | {
891
883
  type: string;
892
884
  option: string;
@@ -905,17 +897,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
905
897
  district: string;
906
898
  province: string;
907
899
  urbanOrRural: "URBAN";
908
- number?: string | null | undefined;
909
- town?: string | null | undefined;
910
- residentialArea?: string | null | undefined;
911
- street?: string | null | undefined;
912
- zipCode?: string | null | undefined;
900
+ number?: string | undefined;
901
+ town?: string | undefined;
902
+ residentialArea?: string | undefined;
903
+ street?: string | undefined;
904
+ zipCode?: string | undefined;
913
905
  } | {
914
906
  country: string;
915
907
  district: string;
916
908
  province: string;
917
909
  urbanOrRural: "RURAL";
918
- village?: string | null | undefined;
910
+ village?: string | undefined;
919
911
  } | {
920
912
  type: string;
921
913
  option: string;
@@ -926,7 +918,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
926
918
  id: z.ZodString;
927
919
  createdAt: z.ZodString;
928
920
  createdBy: z.ZodString;
929
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
921
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
930
922
  filename: z.ZodString;
931
923
  originalFilename: z.ZodString;
932
924
  type: z.ZodString;
@@ -953,58 +945,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
953
945
  option: string;
954
946
  filename: string;
955
947
  originalFilename: string;
956
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
948
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
957
949
  country: z.ZodString;
958
950
  province: z.ZodString;
959
951
  district: z.ZodString;
960
952
  }, {
961
953
  urbanOrRural: z.ZodLiteral<"URBAN">;
962
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
963
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
964
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
965
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
966
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
954
+ town: z.ZodOptional<z.ZodString>;
955
+ residentialArea: z.ZodOptional<z.ZodString>;
956
+ street: z.ZodOptional<z.ZodString>;
957
+ number: z.ZodOptional<z.ZodString>;
958
+ zipCode: z.ZodOptional<z.ZodString>;
967
959
  }>, "strip", z.ZodTypeAny, {
968
960
  country: string;
969
961
  district: string;
970
962
  province: string;
971
963
  urbanOrRural: "URBAN";
972
- number?: string | null | undefined;
973
- town?: string | null | undefined;
974
- residentialArea?: string | null | undefined;
975
- street?: string | null | undefined;
976
- zipCode?: string | null | undefined;
964
+ number?: string | undefined;
965
+ town?: string | undefined;
966
+ residentialArea?: string | undefined;
967
+ street?: string | undefined;
968
+ zipCode?: string | undefined;
977
969
  }, {
978
970
  country: string;
979
971
  district: string;
980
972
  province: string;
981
973
  urbanOrRural: "URBAN";
982
- number?: string | null | undefined;
983
- town?: string | null | undefined;
984
- residentialArea?: string | null | undefined;
985
- street?: string | null | undefined;
986
- zipCode?: string | null | undefined;
974
+ number?: string | undefined;
975
+ town?: string | undefined;
976
+ residentialArea?: string | undefined;
977
+ street?: string | undefined;
978
+ zipCode?: string | undefined;
987
979
  }>, z.ZodObject<z.objectUtil.extendShape<{
988
980
  country: z.ZodString;
989
981
  province: z.ZodString;
990
982
  district: z.ZodString;
991
983
  }, {
992
984
  urbanOrRural: z.ZodLiteral<"RURAL">;
993
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
985
+ village: z.ZodOptional<z.ZodString>;
994
986
  }>, "strip", z.ZodTypeAny, {
995
987
  country: string;
996
988
  district: string;
997
989
  province: string;
998
990
  urbanOrRural: "RURAL";
999
- village?: string | null | undefined;
991
+ village?: string | undefined;
1000
992
  }, {
1001
993
  country: string;
1002
994
  district: string;
1003
995
  province: string;
1004
996
  urbanOrRural: "RURAL";
1005
- village?: string | null | undefined;
997
+ village?: string | undefined;
1006
998
  }>]>>;
1007
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
999
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1008
1000
  filename: z.ZodString;
1009
1001
  originalFilename: z.ZodString;
1010
1002
  type: z.ZodString;
@@ -1031,56 +1023,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1031
1023
  option: string;
1032
1024
  filename: string;
1033
1025
  originalFilename: string;
1034
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1026
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1035
1027
  country: z.ZodString;
1036
1028
  province: z.ZodString;
1037
1029
  district: z.ZodString;
1038
1030
  }, {
1039
1031
  urbanOrRural: z.ZodLiteral<"URBAN">;
1040
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1041
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1042
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1043
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1044
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1032
+ town: z.ZodOptional<z.ZodString>;
1033
+ residentialArea: z.ZodOptional<z.ZodString>;
1034
+ street: z.ZodOptional<z.ZodString>;
1035
+ number: z.ZodOptional<z.ZodString>;
1036
+ zipCode: z.ZodOptional<z.ZodString>;
1045
1037
  }>, "strip", z.ZodTypeAny, {
1046
1038
  country: string;
1047
1039
  district: string;
1048
1040
  province: string;
1049
1041
  urbanOrRural: "URBAN";
1050
- number?: string | null | undefined;
1051
- town?: string | null | undefined;
1052
- residentialArea?: string | null | undefined;
1053
- street?: string | null | undefined;
1054
- zipCode?: string | null | undefined;
1042
+ number?: string | undefined;
1043
+ town?: string | undefined;
1044
+ residentialArea?: string | undefined;
1045
+ street?: string | undefined;
1046
+ zipCode?: string | undefined;
1055
1047
  }, {
1056
1048
  country: string;
1057
1049
  district: string;
1058
1050
  province: string;
1059
1051
  urbanOrRural: "URBAN";
1060
- number?: string | null | undefined;
1061
- town?: string | null | undefined;
1062
- residentialArea?: string | null | undefined;
1063
- street?: string | null | undefined;
1064
- zipCode?: string | null | undefined;
1052
+ number?: string | undefined;
1053
+ town?: string | undefined;
1054
+ residentialArea?: string | undefined;
1055
+ street?: string | undefined;
1056
+ zipCode?: string | undefined;
1065
1057
  }>, z.ZodObject<z.objectUtil.extendShape<{
1066
1058
  country: z.ZodString;
1067
1059
  province: z.ZodString;
1068
1060
  district: z.ZodString;
1069
1061
  }, {
1070
1062
  urbanOrRural: z.ZodLiteral<"RURAL">;
1071
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1063
+ village: z.ZodOptional<z.ZodString>;
1072
1064
  }>, "strip", z.ZodTypeAny, {
1073
1065
  country: string;
1074
1066
  district: string;
1075
1067
  province: string;
1076
1068
  urbanOrRural: "RURAL";
1077
- village?: string | null | undefined;
1069
+ village?: string | undefined;
1078
1070
  }, {
1079
1071
  country: string;
1080
1072
  district: string;
1081
1073
  province: string;
1082
1074
  urbanOrRural: "RURAL";
1083
- village?: string | null | undefined;
1075
+ village?: string | undefined;
1084
1076
  }>]>>>;
1085
1077
  createdAtLocation: z.ZodString;
1086
1078
  }, {
@@ -1097,17 +1089,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1097
1089
  district: string;
1098
1090
  province: string;
1099
1091
  urbanOrRural: "URBAN";
1100
- number?: string | null | undefined;
1101
- town?: string | null | undefined;
1102
- residentialArea?: string | null | undefined;
1103
- street?: string | null | undefined;
1104
- zipCode?: string | null | undefined;
1092
+ number?: string | undefined;
1093
+ town?: string | undefined;
1094
+ residentialArea?: string | undefined;
1095
+ street?: string | undefined;
1096
+ zipCode?: string | undefined;
1105
1097
  } | {
1106
1098
  country: string;
1107
1099
  district: string;
1108
1100
  province: string;
1109
1101
  urbanOrRural: "RURAL";
1110
- village?: string | null | undefined;
1102
+ village?: string | undefined;
1111
1103
  } | {
1112
1104
  type: string;
1113
1105
  option: string;
@@ -1126,17 +1118,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1126
1118
  district: string;
1127
1119
  province: string;
1128
1120
  urbanOrRural: "URBAN";
1129
- number?: string | null | undefined;
1130
- town?: string | null | undefined;
1131
- residentialArea?: string | null | undefined;
1132
- street?: string | null | undefined;
1133
- zipCode?: string | null | undefined;
1121
+ number?: string | undefined;
1122
+ town?: string | undefined;
1123
+ residentialArea?: string | undefined;
1124
+ street?: string | undefined;
1125
+ zipCode?: string | undefined;
1134
1126
  } | {
1135
1127
  country: string;
1136
1128
  district: string;
1137
1129
  province: string;
1138
1130
  urbanOrRural: "RURAL";
1139
- village?: string | null | undefined;
1131
+ village?: string | undefined;
1140
1132
  } | {
1141
1133
  type: string;
1142
1134
  option: string;
@@ -1155,17 +1147,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1155
1147
  district: string;
1156
1148
  province: string;
1157
1149
  urbanOrRural: "URBAN";
1158
- number?: string | null | undefined;
1159
- town?: string | null | undefined;
1160
- residentialArea?: string | null | undefined;
1161
- street?: string | null | undefined;
1162
- zipCode?: string | null | undefined;
1150
+ number?: string | undefined;
1151
+ town?: string | undefined;
1152
+ residentialArea?: string | undefined;
1153
+ street?: string | undefined;
1154
+ zipCode?: string | undefined;
1163
1155
  } | {
1164
1156
  country: string;
1165
1157
  district: string;
1166
1158
  province: string;
1167
1159
  urbanOrRural: "RURAL";
1168
- village?: string | null | undefined;
1160
+ village?: string | undefined;
1169
1161
  } | {
1170
1162
  type: string;
1171
1163
  option: string;
@@ -1184,17 +1176,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1184
1176
  district: string;
1185
1177
  province: string;
1186
1178
  urbanOrRural: "URBAN";
1187
- number?: string | null | undefined;
1188
- town?: string | null | undefined;
1189
- residentialArea?: string | null | undefined;
1190
- street?: string | null | undefined;
1191
- zipCode?: string | null | undefined;
1179
+ number?: string | undefined;
1180
+ town?: string | undefined;
1181
+ residentialArea?: string | undefined;
1182
+ street?: string | undefined;
1183
+ zipCode?: string | undefined;
1192
1184
  } | {
1193
1185
  country: string;
1194
1186
  district: string;
1195
1187
  province: string;
1196
1188
  urbanOrRural: "RURAL";
1197
- village?: string | null | undefined;
1189
+ village?: string | undefined;
1198
1190
  } | {
1199
1191
  type: string;
1200
1192
  option: string;
@@ -1205,7 +1197,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1205
1197
  id: z.ZodString;
1206
1198
  createdAt: z.ZodString;
1207
1199
  createdBy: z.ZodString;
1208
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1200
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1209
1201
  filename: z.ZodString;
1210
1202
  originalFilename: z.ZodString;
1211
1203
  type: z.ZodString;
@@ -1232,58 +1224,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1232
1224
  option: string;
1233
1225
  filename: string;
1234
1226
  originalFilename: string;
1235
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1227
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1236
1228
  country: z.ZodString;
1237
1229
  province: z.ZodString;
1238
1230
  district: z.ZodString;
1239
1231
  }, {
1240
1232
  urbanOrRural: z.ZodLiteral<"URBAN">;
1241
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1242
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1243
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1244
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1245
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1233
+ town: z.ZodOptional<z.ZodString>;
1234
+ residentialArea: z.ZodOptional<z.ZodString>;
1235
+ street: z.ZodOptional<z.ZodString>;
1236
+ number: z.ZodOptional<z.ZodString>;
1237
+ zipCode: z.ZodOptional<z.ZodString>;
1246
1238
  }>, "strip", z.ZodTypeAny, {
1247
1239
  country: string;
1248
1240
  district: string;
1249
1241
  province: string;
1250
1242
  urbanOrRural: "URBAN";
1251
- number?: string | null | undefined;
1252
- town?: string | null | undefined;
1253
- residentialArea?: string | null | undefined;
1254
- street?: string | null | undefined;
1255
- zipCode?: string | null | undefined;
1243
+ number?: string | undefined;
1244
+ town?: string | undefined;
1245
+ residentialArea?: string | undefined;
1246
+ street?: string | undefined;
1247
+ zipCode?: string | undefined;
1256
1248
  }, {
1257
1249
  country: string;
1258
1250
  district: string;
1259
1251
  province: string;
1260
1252
  urbanOrRural: "URBAN";
1261
- number?: string | null | undefined;
1262
- town?: string | null | undefined;
1263
- residentialArea?: string | null | undefined;
1264
- street?: string | null | undefined;
1265
- zipCode?: string | null | undefined;
1253
+ number?: string | undefined;
1254
+ town?: string | undefined;
1255
+ residentialArea?: string | undefined;
1256
+ street?: string | undefined;
1257
+ zipCode?: string | undefined;
1266
1258
  }>, z.ZodObject<z.objectUtil.extendShape<{
1267
1259
  country: z.ZodString;
1268
1260
  province: z.ZodString;
1269
1261
  district: z.ZodString;
1270
1262
  }, {
1271
1263
  urbanOrRural: z.ZodLiteral<"RURAL">;
1272
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1264
+ village: z.ZodOptional<z.ZodString>;
1273
1265
  }>, "strip", z.ZodTypeAny, {
1274
1266
  country: string;
1275
1267
  district: string;
1276
1268
  province: string;
1277
1269
  urbanOrRural: "RURAL";
1278
- village?: string | null | undefined;
1270
+ village?: string | undefined;
1279
1271
  }, {
1280
1272
  country: string;
1281
1273
  district: string;
1282
1274
  province: string;
1283
1275
  urbanOrRural: "RURAL";
1284
- village?: string | null | undefined;
1276
+ village?: string | undefined;
1285
1277
  }>]>>;
1286
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1278
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1287
1279
  filename: z.ZodString;
1288
1280
  originalFilename: z.ZodString;
1289
1281
  type: z.ZodString;
@@ -1310,56 +1302,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1310
1302
  option: string;
1311
1303
  filename: string;
1312
1304
  originalFilename: string;
1313
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1305
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1314
1306
  country: z.ZodString;
1315
1307
  province: z.ZodString;
1316
1308
  district: z.ZodString;
1317
1309
  }, {
1318
1310
  urbanOrRural: z.ZodLiteral<"URBAN">;
1319
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1320
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1321
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1322
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1323
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1311
+ town: z.ZodOptional<z.ZodString>;
1312
+ residentialArea: z.ZodOptional<z.ZodString>;
1313
+ street: z.ZodOptional<z.ZodString>;
1314
+ number: z.ZodOptional<z.ZodString>;
1315
+ zipCode: z.ZodOptional<z.ZodString>;
1324
1316
  }>, "strip", z.ZodTypeAny, {
1325
1317
  country: string;
1326
1318
  district: string;
1327
1319
  province: string;
1328
1320
  urbanOrRural: "URBAN";
1329
- number?: string | null | undefined;
1330
- town?: string | null | undefined;
1331
- residentialArea?: string | null | undefined;
1332
- street?: string | null | undefined;
1333
- zipCode?: string | null | undefined;
1321
+ number?: string | undefined;
1322
+ town?: string | undefined;
1323
+ residentialArea?: string | undefined;
1324
+ street?: string | undefined;
1325
+ zipCode?: string | undefined;
1334
1326
  }, {
1335
1327
  country: string;
1336
1328
  district: string;
1337
1329
  province: string;
1338
1330
  urbanOrRural: "URBAN";
1339
- number?: string | null | undefined;
1340
- town?: string | null | undefined;
1341
- residentialArea?: string | null | undefined;
1342
- street?: string | null | undefined;
1343
- zipCode?: string | null | undefined;
1331
+ number?: string | undefined;
1332
+ town?: string | undefined;
1333
+ residentialArea?: string | undefined;
1334
+ street?: string | undefined;
1335
+ zipCode?: string | undefined;
1344
1336
  }>, z.ZodObject<z.objectUtil.extendShape<{
1345
1337
  country: z.ZodString;
1346
1338
  province: z.ZodString;
1347
1339
  district: z.ZodString;
1348
1340
  }, {
1349
1341
  urbanOrRural: z.ZodLiteral<"RURAL">;
1350
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1342
+ village: z.ZodOptional<z.ZodString>;
1351
1343
  }>, "strip", z.ZodTypeAny, {
1352
1344
  country: string;
1353
1345
  district: string;
1354
1346
  province: string;
1355
1347
  urbanOrRural: "RURAL";
1356
- village?: string | null | undefined;
1348
+ village?: string | undefined;
1357
1349
  }, {
1358
1350
  country: string;
1359
1351
  district: string;
1360
1352
  province: string;
1361
1353
  urbanOrRural: "RURAL";
1362
- village?: string | null | undefined;
1354
+ village?: string | undefined;
1363
1355
  }>]>>>;
1364
1356
  createdAtLocation: z.ZodString;
1365
1357
  }, {
@@ -1376,17 +1368,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1376
1368
  district: string;
1377
1369
  province: string;
1378
1370
  urbanOrRural: "URBAN";
1379
- number?: string | null | undefined;
1380
- town?: string | null | undefined;
1381
- residentialArea?: string | null | undefined;
1382
- street?: string | null | undefined;
1383
- zipCode?: string | null | undefined;
1371
+ number?: string | undefined;
1372
+ town?: string | undefined;
1373
+ residentialArea?: string | undefined;
1374
+ street?: string | undefined;
1375
+ zipCode?: string | undefined;
1384
1376
  } | {
1385
1377
  country: string;
1386
1378
  district: string;
1387
1379
  province: string;
1388
1380
  urbanOrRural: "RURAL";
1389
- village?: string | null | undefined;
1381
+ village?: string | undefined;
1390
1382
  } | {
1391
1383
  type: string;
1392
1384
  option: string;
@@ -1405,17 +1397,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1405
1397
  district: string;
1406
1398
  province: string;
1407
1399
  urbanOrRural: "URBAN";
1408
- number?: string | null | undefined;
1409
- town?: string | null | undefined;
1410
- residentialArea?: string | null | undefined;
1411
- street?: string | null | undefined;
1412
- zipCode?: string | null | undefined;
1400
+ number?: string | undefined;
1401
+ town?: string | undefined;
1402
+ residentialArea?: string | undefined;
1403
+ street?: string | undefined;
1404
+ zipCode?: string | undefined;
1413
1405
  } | {
1414
1406
  country: string;
1415
1407
  district: string;
1416
1408
  province: string;
1417
1409
  urbanOrRural: "RURAL";
1418
- village?: string | null | undefined;
1410
+ village?: string | undefined;
1419
1411
  } | {
1420
1412
  type: string;
1421
1413
  option: string;
@@ -1434,17 +1426,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1434
1426
  district: string;
1435
1427
  province: string;
1436
1428
  urbanOrRural: "URBAN";
1437
- number?: string | null | undefined;
1438
- town?: string | null | undefined;
1439
- residentialArea?: string | null | undefined;
1440
- street?: string | null | undefined;
1441
- zipCode?: string | null | undefined;
1429
+ number?: string | undefined;
1430
+ town?: string | undefined;
1431
+ residentialArea?: string | undefined;
1432
+ street?: string | undefined;
1433
+ zipCode?: string | undefined;
1442
1434
  } | {
1443
1435
  country: string;
1444
1436
  district: string;
1445
1437
  province: string;
1446
1438
  urbanOrRural: "RURAL";
1447
- village?: string | null | undefined;
1439
+ village?: string | undefined;
1448
1440
  } | {
1449
1441
  type: string;
1450
1442
  option: string;
@@ -1463,17 +1455,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1463
1455
  district: string;
1464
1456
  province: string;
1465
1457
  urbanOrRural: "URBAN";
1466
- number?: string | null | undefined;
1467
- town?: string | null | undefined;
1468
- residentialArea?: string | null | undefined;
1469
- street?: string | null | undefined;
1470
- zipCode?: string | null | undefined;
1458
+ number?: string | undefined;
1459
+ town?: string | undefined;
1460
+ residentialArea?: string | undefined;
1461
+ street?: string | undefined;
1462
+ zipCode?: string | undefined;
1471
1463
  } | {
1472
1464
  country: string;
1473
1465
  district: string;
1474
1466
  province: string;
1475
1467
  urbanOrRural: "RURAL";
1476
- village?: string | null | undefined;
1468
+ village?: string | undefined;
1477
1469
  } | {
1478
1470
  type: string;
1479
1471
  option: string;
@@ -1484,7 +1476,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1484
1476
  id: z.ZodString;
1485
1477
  createdAt: z.ZodString;
1486
1478
  createdBy: z.ZodString;
1487
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1479
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1488
1480
  filename: z.ZodString;
1489
1481
  originalFilename: z.ZodString;
1490
1482
  type: z.ZodString;
@@ -1511,58 +1503,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1511
1503
  option: string;
1512
1504
  filename: string;
1513
1505
  originalFilename: string;
1514
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1506
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1515
1507
  country: z.ZodString;
1516
1508
  province: z.ZodString;
1517
1509
  district: z.ZodString;
1518
1510
  }, {
1519
1511
  urbanOrRural: z.ZodLiteral<"URBAN">;
1520
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1521
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1522
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1523
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1524
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1512
+ town: z.ZodOptional<z.ZodString>;
1513
+ residentialArea: z.ZodOptional<z.ZodString>;
1514
+ street: z.ZodOptional<z.ZodString>;
1515
+ number: z.ZodOptional<z.ZodString>;
1516
+ zipCode: z.ZodOptional<z.ZodString>;
1525
1517
  }>, "strip", z.ZodTypeAny, {
1526
1518
  country: string;
1527
1519
  district: string;
1528
1520
  province: string;
1529
1521
  urbanOrRural: "URBAN";
1530
- number?: string | null | undefined;
1531
- town?: string | null | undefined;
1532
- residentialArea?: string | null | undefined;
1533
- street?: string | null | undefined;
1534
- zipCode?: string | null | undefined;
1522
+ number?: string | undefined;
1523
+ town?: string | undefined;
1524
+ residentialArea?: string | undefined;
1525
+ street?: string | undefined;
1526
+ zipCode?: string | undefined;
1535
1527
  }, {
1536
1528
  country: string;
1537
1529
  district: string;
1538
1530
  province: string;
1539
1531
  urbanOrRural: "URBAN";
1540
- number?: string | null | undefined;
1541
- town?: string | null | undefined;
1542
- residentialArea?: string | null | undefined;
1543
- street?: string | null | undefined;
1544
- zipCode?: string | null | undefined;
1532
+ number?: string | undefined;
1533
+ town?: string | undefined;
1534
+ residentialArea?: string | undefined;
1535
+ street?: string | undefined;
1536
+ zipCode?: string | undefined;
1545
1537
  }>, z.ZodObject<z.objectUtil.extendShape<{
1546
1538
  country: z.ZodString;
1547
1539
  province: z.ZodString;
1548
1540
  district: z.ZodString;
1549
1541
  }, {
1550
1542
  urbanOrRural: z.ZodLiteral<"RURAL">;
1551
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1543
+ village: z.ZodOptional<z.ZodString>;
1552
1544
  }>, "strip", z.ZodTypeAny, {
1553
1545
  country: string;
1554
1546
  district: string;
1555
1547
  province: string;
1556
1548
  urbanOrRural: "RURAL";
1557
- village?: string | null | undefined;
1549
+ village?: string | undefined;
1558
1550
  }, {
1559
1551
  country: string;
1560
1552
  district: string;
1561
1553
  province: string;
1562
1554
  urbanOrRural: "RURAL";
1563
- village?: string | null | undefined;
1555
+ village?: string | undefined;
1564
1556
  }>]>>;
1565
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1557
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1566
1558
  filename: z.ZodString;
1567
1559
  originalFilename: z.ZodString;
1568
1560
  type: z.ZodString;
@@ -1589,56 +1581,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1589
1581
  option: string;
1590
1582
  filename: string;
1591
1583
  originalFilename: string;
1592
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1584
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1593
1585
  country: z.ZodString;
1594
1586
  province: z.ZodString;
1595
1587
  district: z.ZodString;
1596
1588
  }, {
1597
1589
  urbanOrRural: z.ZodLiteral<"URBAN">;
1598
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1599
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1600
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1601
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1602
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1590
+ town: z.ZodOptional<z.ZodString>;
1591
+ residentialArea: z.ZodOptional<z.ZodString>;
1592
+ street: z.ZodOptional<z.ZodString>;
1593
+ number: z.ZodOptional<z.ZodString>;
1594
+ zipCode: z.ZodOptional<z.ZodString>;
1603
1595
  }>, "strip", z.ZodTypeAny, {
1604
1596
  country: string;
1605
1597
  district: string;
1606
1598
  province: string;
1607
1599
  urbanOrRural: "URBAN";
1608
- number?: string | null | undefined;
1609
- town?: string | null | undefined;
1610
- residentialArea?: string | null | undefined;
1611
- street?: string | null | undefined;
1612
- zipCode?: string | null | undefined;
1600
+ number?: string | undefined;
1601
+ town?: string | undefined;
1602
+ residentialArea?: string | undefined;
1603
+ street?: string | undefined;
1604
+ zipCode?: string | undefined;
1613
1605
  }, {
1614
1606
  country: string;
1615
1607
  district: string;
1616
1608
  province: string;
1617
1609
  urbanOrRural: "URBAN";
1618
- number?: string | null | undefined;
1619
- town?: string | null | undefined;
1620
- residentialArea?: string | null | undefined;
1621
- street?: string | null | undefined;
1622
- zipCode?: string | null | undefined;
1610
+ number?: string | undefined;
1611
+ town?: string | undefined;
1612
+ residentialArea?: string | undefined;
1613
+ street?: string | undefined;
1614
+ zipCode?: string | undefined;
1623
1615
  }>, z.ZodObject<z.objectUtil.extendShape<{
1624
1616
  country: z.ZodString;
1625
1617
  province: z.ZodString;
1626
1618
  district: z.ZodString;
1627
1619
  }, {
1628
1620
  urbanOrRural: z.ZodLiteral<"RURAL">;
1629
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1621
+ village: z.ZodOptional<z.ZodString>;
1630
1622
  }>, "strip", z.ZodTypeAny, {
1631
1623
  country: string;
1632
1624
  district: string;
1633
1625
  province: string;
1634
1626
  urbanOrRural: "RURAL";
1635
- village?: string | null | undefined;
1627
+ village?: string | undefined;
1636
1628
  }, {
1637
1629
  country: string;
1638
1630
  district: string;
1639
1631
  province: string;
1640
1632
  urbanOrRural: "RURAL";
1641
- village?: string | null | undefined;
1633
+ village?: string | undefined;
1642
1634
  }>]>>>;
1643
1635
  createdAtLocation: z.ZodString;
1644
1636
  }, {
@@ -1655,17 +1647,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1655
1647
  district: string;
1656
1648
  province: string;
1657
1649
  urbanOrRural: "URBAN";
1658
- number?: string | null | undefined;
1659
- town?: string | null | undefined;
1660
- residentialArea?: string | null | undefined;
1661
- street?: string | null | undefined;
1662
- zipCode?: string | null | undefined;
1650
+ number?: string | undefined;
1651
+ town?: string | undefined;
1652
+ residentialArea?: string | undefined;
1653
+ street?: string | undefined;
1654
+ zipCode?: string | undefined;
1663
1655
  } | {
1664
1656
  country: string;
1665
1657
  district: string;
1666
1658
  province: string;
1667
1659
  urbanOrRural: "RURAL";
1668
- village?: string | null | undefined;
1660
+ village?: string | undefined;
1669
1661
  } | {
1670
1662
  type: string;
1671
1663
  option: string;
@@ -1684,17 +1676,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1684
1676
  district: string;
1685
1677
  province: string;
1686
1678
  urbanOrRural: "URBAN";
1687
- number?: string | null | undefined;
1688
- town?: string | null | undefined;
1689
- residentialArea?: string | null | undefined;
1690
- street?: string | null | undefined;
1691
- zipCode?: string | null | undefined;
1679
+ number?: string | undefined;
1680
+ town?: string | undefined;
1681
+ residentialArea?: string | undefined;
1682
+ street?: string | undefined;
1683
+ zipCode?: string | undefined;
1692
1684
  } | {
1693
1685
  country: string;
1694
1686
  district: string;
1695
1687
  province: string;
1696
1688
  urbanOrRural: "RURAL";
1697
- village?: string | null | undefined;
1689
+ village?: string | undefined;
1698
1690
  } | {
1699
1691
  type: string;
1700
1692
  option: string;
@@ -1713,17 +1705,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1713
1705
  district: string;
1714
1706
  province: string;
1715
1707
  urbanOrRural: "URBAN";
1716
- number?: string | null | undefined;
1717
- town?: string | null | undefined;
1718
- residentialArea?: string | null | undefined;
1719
- street?: string | null | undefined;
1720
- zipCode?: string | null | undefined;
1708
+ number?: string | undefined;
1709
+ town?: string | undefined;
1710
+ residentialArea?: string | undefined;
1711
+ street?: string | undefined;
1712
+ zipCode?: string | undefined;
1721
1713
  } | {
1722
1714
  country: string;
1723
1715
  district: string;
1724
1716
  province: string;
1725
1717
  urbanOrRural: "RURAL";
1726
- village?: string | null | undefined;
1718
+ village?: string | undefined;
1727
1719
  } | {
1728
1720
  type: string;
1729
1721
  option: string;
@@ -1742,17 +1734,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1742
1734
  district: string;
1743
1735
  province: string;
1744
1736
  urbanOrRural: "URBAN";
1745
- number?: string | null | undefined;
1746
- town?: string | null | undefined;
1747
- residentialArea?: string | null | undefined;
1748
- street?: string | null | undefined;
1749
- zipCode?: string | null | undefined;
1737
+ number?: string | undefined;
1738
+ town?: string | undefined;
1739
+ residentialArea?: string | undefined;
1740
+ street?: string | undefined;
1741
+ zipCode?: string | undefined;
1750
1742
  } | {
1751
1743
  country: string;
1752
1744
  district: string;
1753
1745
  province: string;
1754
1746
  urbanOrRural: "RURAL";
1755
- village?: string | null | undefined;
1747
+ village?: string | undefined;
1756
1748
  } | {
1757
1749
  type: string;
1758
1750
  option: string;
@@ -1763,7 +1755,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1763
1755
  id: z.ZodString;
1764
1756
  createdAt: z.ZodString;
1765
1757
  createdBy: z.ZodString;
1766
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1758
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1767
1759
  filename: z.ZodString;
1768
1760
  originalFilename: z.ZodString;
1769
1761
  type: z.ZodString;
@@ -1790,58 +1782,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1790
1782
  option: string;
1791
1783
  filename: string;
1792
1784
  originalFilename: string;
1793
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1785
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1794
1786
  country: z.ZodString;
1795
1787
  province: z.ZodString;
1796
1788
  district: z.ZodString;
1797
1789
  }, {
1798
1790
  urbanOrRural: z.ZodLiteral<"URBAN">;
1799
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1800
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1801
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1802
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1803
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1791
+ town: z.ZodOptional<z.ZodString>;
1792
+ residentialArea: z.ZodOptional<z.ZodString>;
1793
+ street: z.ZodOptional<z.ZodString>;
1794
+ number: z.ZodOptional<z.ZodString>;
1795
+ zipCode: z.ZodOptional<z.ZodString>;
1804
1796
  }>, "strip", z.ZodTypeAny, {
1805
1797
  country: string;
1806
1798
  district: string;
1807
1799
  province: string;
1808
1800
  urbanOrRural: "URBAN";
1809
- number?: string | null | undefined;
1810
- town?: string | null | undefined;
1811
- residentialArea?: string | null | undefined;
1812
- street?: string | null | undefined;
1813
- zipCode?: string | null | undefined;
1801
+ number?: string | undefined;
1802
+ town?: string | undefined;
1803
+ residentialArea?: string | undefined;
1804
+ street?: string | undefined;
1805
+ zipCode?: string | undefined;
1814
1806
  }, {
1815
1807
  country: string;
1816
1808
  district: string;
1817
1809
  province: string;
1818
1810
  urbanOrRural: "URBAN";
1819
- number?: string | null | undefined;
1820
- town?: string | null | undefined;
1821
- residentialArea?: string | null | undefined;
1822
- street?: string | null | undefined;
1823
- zipCode?: string | null | undefined;
1811
+ number?: string | undefined;
1812
+ town?: string | undefined;
1813
+ residentialArea?: string | undefined;
1814
+ street?: string | undefined;
1815
+ zipCode?: string | undefined;
1824
1816
  }>, z.ZodObject<z.objectUtil.extendShape<{
1825
1817
  country: z.ZodString;
1826
1818
  province: z.ZodString;
1827
1819
  district: z.ZodString;
1828
1820
  }, {
1829
1821
  urbanOrRural: z.ZodLiteral<"RURAL">;
1830
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1822
+ village: z.ZodOptional<z.ZodString>;
1831
1823
  }>, "strip", z.ZodTypeAny, {
1832
1824
  country: string;
1833
1825
  district: string;
1834
1826
  province: string;
1835
1827
  urbanOrRural: "RURAL";
1836
- village?: string | null | undefined;
1828
+ village?: string | undefined;
1837
1829
  }, {
1838
1830
  country: string;
1839
1831
  district: string;
1840
1832
  province: string;
1841
1833
  urbanOrRural: "RURAL";
1842
- village?: string | null | undefined;
1834
+ village?: string | undefined;
1843
1835
  }>]>>;
1844
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1836
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
1845
1837
  filename: z.ZodString;
1846
1838
  originalFilename: z.ZodString;
1847
1839
  type: z.ZodString;
@@ -1868,56 +1860,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1868
1860
  option: string;
1869
1861
  filename: string;
1870
1862
  originalFilename: string;
1871
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1863
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
1872
1864
  country: z.ZodString;
1873
1865
  province: z.ZodString;
1874
1866
  district: z.ZodString;
1875
1867
  }, {
1876
1868
  urbanOrRural: z.ZodLiteral<"URBAN">;
1877
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1878
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1879
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1880
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1881
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1869
+ town: z.ZodOptional<z.ZodString>;
1870
+ residentialArea: z.ZodOptional<z.ZodString>;
1871
+ street: z.ZodOptional<z.ZodString>;
1872
+ number: z.ZodOptional<z.ZodString>;
1873
+ zipCode: z.ZodOptional<z.ZodString>;
1882
1874
  }>, "strip", z.ZodTypeAny, {
1883
1875
  country: string;
1884
1876
  district: string;
1885
1877
  province: string;
1886
1878
  urbanOrRural: "URBAN";
1887
- number?: string | null | undefined;
1888
- town?: string | null | undefined;
1889
- residentialArea?: string | null | undefined;
1890
- street?: string | null | undefined;
1891
- zipCode?: string | null | undefined;
1879
+ number?: string | undefined;
1880
+ town?: string | undefined;
1881
+ residentialArea?: string | undefined;
1882
+ street?: string | undefined;
1883
+ zipCode?: string | undefined;
1892
1884
  }, {
1893
1885
  country: string;
1894
1886
  district: string;
1895
1887
  province: string;
1896
1888
  urbanOrRural: "URBAN";
1897
- number?: string | null | undefined;
1898
- town?: string | null | undefined;
1899
- residentialArea?: string | null | undefined;
1900
- street?: string | null | undefined;
1901
- zipCode?: string | null | undefined;
1889
+ number?: string | undefined;
1890
+ town?: string | undefined;
1891
+ residentialArea?: string | undefined;
1892
+ street?: string | undefined;
1893
+ zipCode?: string | undefined;
1902
1894
  }>, z.ZodObject<z.objectUtil.extendShape<{
1903
1895
  country: z.ZodString;
1904
1896
  province: z.ZodString;
1905
1897
  district: z.ZodString;
1906
1898
  }, {
1907
1899
  urbanOrRural: z.ZodLiteral<"RURAL">;
1908
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1900
+ village: z.ZodOptional<z.ZodString>;
1909
1901
  }>, "strip", z.ZodTypeAny, {
1910
1902
  country: string;
1911
1903
  district: string;
1912
1904
  province: string;
1913
1905
  urbanOrRural: "RURAL";
1914
- village?: string | null | undefined;
1906
+ village?: string | undefined;
1915
1907
  }, {
1916
1908
  country: string;
1917
1909
  district: string;
1918
1910
  province: string;
1919
1911
  urbanOrRural: "RURAL";
1920
- village?: string | null | undefined;
1912
+ village?: string | undefined;
1921
1913
  }>]>>>;
1922
1914
  createdAtLocation: z.ZodString;
1923
1915
  }, {
@@ -1934,17 +1926,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1934
1926
  district: string;
1935
1927
  province: string;
1936
1928
  urbanOrRural: "URBAN";
1937
- number?: string | null | undefined;
1938
- town?: string | null | undefined;
1939
- residentialArea?: string | null | undefined;
1940
- street?: string | null | undefined;
1941
- zipCode?: string | null | undefined;
1929
+ number?: string | undefined;
1930
+ town?: string | undefined;
1931
+ residentialArea?: string | undefined;
1932
+ street?: string | undefined;
1933
+ zipCode?: string | undefined;
1942
1934
  } | {
1943
1935
  country: string;
1944
1936
  district: string;
1945
1937
  province: string;
1946
1938
  urbanOrRural: "RURAL";
1947
- village?: string | null | undefined;
1939
+ village?: string | undefined;
1948
1940
  } | {
1949
1941
  type: string;
1950
1942
  option: string;
@@ -1963,17 +1955,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1963
1955
  district: string;
1964
1956
  province: string;
1965
1957
  urbanOrRural: "URBAN";
1966
- number?: string | null | undefined;
1967
- town?: string | null | undefined;
1968
- residentialArea?: string | null | undefined;
1969
- street?: string | null | undefined;
1970
- zipCode?: string | null | undefined;
1958
+ number?: string | undefined;
1959
+ town?: string | undefined;
1960
+ residentialArea?: string | undefined;
1961
+ street?: string | undefined;
1962
+ zipCode?: string | undefined;
1971
1963
  } | {
1972
1964
  country: string;
1973
1965
  district: string;
1974
1966
  province: string;
1975
1967
  urbanOrRural: "RURAL";
1976
- village?: string | null | undefined;
1968
+ village?: string | undefined;
1977
1969
  } | {
1978
1970
  type: string;
1979
1971
  option: string;
@@ -1992,17 +1984,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
1992
1984
  district: string;
1993
1985
  province: string;
1994
1986
  urbanOrRural: "URBAN";
1995
- number?: string | null | undefined;
1996
- town?: string | null | undefined;
1997
- residentialArea?: string | null | undefined;
1998
- street?: string | null | undefined;
1999
- zipCode?: string | null | undefined;
1987
+ number?: string | undefined;
1988
+ town?: string | undefined;
1989
+ residentialArea?: string | undefined;
1990
+ street?: string | undefined;
1991
+ zipCode?: string | undefined;
2000
1992
  } | {
2001
1993
  country: string;
2002
1994
  district: string;
2003
1995
  province: string;
2004
1996
  urbanOrRural: "RURAL";
2005
- village?: string | null | undefined;
1997
+ village?: string | undefined;
2006
1998
  } | {
2007
1999
  type: string;
2008
2000
  option: string;
@@ -2021,17 +2013,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2021
2013
  district: string;
2022
2014
  province: string;
2023
2015
  urbanOrRural: "URBAN";
2024
- number?: string | null | undefined;
2025
- town?: string | null | undefined;
2026
- residentialArea?: string | null | undefined;
2027
- street?: string | null | undefined;
2028
- zipCode?: string | null | undefined;
2016
+ number?: string | undefined;
2017
+ town?: string | undefined;
2018
+ residentialArea?: string | undefined;
2019
+ street?: string | undefined;
2020
+ zipCode?: string | undefined;
2029
2021
  } | {
2030
2022
  country: string;
2031
2023
  district: string;
2032
2024
  province: string;
2033
2025
  urbanOrRural: "RURAL";
2034
- village?: string | null | undefined;
2026
+ village?: string | undefined;
2035
2027
  } | {
2036
2028
  type: string;
2037
2029
  option: string;
@@ -2042,7 +2034,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2042
2034
  id: z.ZodString;
2043
2035
  createdAt: z.ZodString;
2044
2036
  createdBy: z.ZodString;
2045
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2037
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2046
2038
  filename: z.ZodString;
2047
2039
  originalFilename: z.ZodString;
2048
2040
  type: z.ZodString;
@@ -2069,58 +2061,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2069
2061
  option: string;
2070
2062
  filename: string;
2071
2063
  originalFilename: string;
2072
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2064
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2073
2065
  country: z.ZodString;
2074
2066
  province: z.ZodString;
2075
2067
  district: z.ZodString;
2076
2068
  }, {
2077
2069
  urbanOrRural: z.ZodLiteral<"URBAN">;
2078
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2079
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2080
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2081
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2082
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2070
+ town: z.ZodOptional<z.ZodString>;
2071
+ residentialArea: z.ZodOptional<z.ZodString>;
2072
+ street: z.ZodOptional<z.ZodString>;
2073
+ number: z.ZodOptional<z.ZodString>;
2074
+ zipCode: z.ZodOptional<z.ZodString>;
2083
2075
  }>, "strip", z.ZodTypeAny, {
2084
2076
  country: string;
2085
2077
  district: string;
2086
2078
  province: string;
2087
2079
  urbanOrRural: "URBAN";
2088
- number?: string | null | undefined;
2089
- town?: string | null | undefined;
2090
- residentialArea?: string | null | undefined;
2091
- street?: string | null | undefined;
2092
- zipCode?: string | null | undefined;
2080
+ number?: string | undefined;
2081
+ town?: string | undefined;
2082
+ residentialArea?: string | undefined;
2083
+ street?: string | undefined;
2084
+ zipCode?: string | undefined;
2093
2085
  }, {
2094
2086
  country: string;
2095
2087
  district: string;
2096
2088
  province: string;
2097
2089
  urbanOrRural: "URBAN";
2098
- number?: string | null | undefined;
2099
- town?: string | null | undefined;
2100
- residentialArea?: string | null | undefined;
2101
- street?: string | null | undefined;
2102
- zipCode?: string | null | undefined;
2090
+ number?: string | undefined;
2091
+ town?: string | undefined;
2092
+ residentialArea?: string | undefined;
2093
+ street?: string | undefined;
2094
+ zipCode?: string | undefined;
2103
2095
  }>, z.ZodObject<z.objectUtil.extendShape<{
2104
2096
  country: z.ZodString;
2105
2097
  province: z.ZodString;
2106
2098
  district: z.ZodString;
2107
2099
  }, {
2108
2100
  urbanOrRural: z.ZodLiteral<"RURAL">;
2109
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2101
+ village: z.ZodOptional<z.ZodString>;
2110
2102
  }>, "strip", z.ZodTypeAny, {
2111
2103
  country: string;
2112
2104
  district: string;
2113
2105
  province: string;
2114
2106
  urbanOrRural: "RURAL";
2115
- village?: string | null | undefined;
2107
+ village?: string | undefined;
2116
2108
  }, {
2117
2109
  country: string;
2118
2110
  district: string;
2119
2111
  province: string;
2120
2112
  urbanOrRural: "RURAL";
2121
- village?: string | null | undefined;
2113
+ village?: string | undefined;
2122
2114
  }>]>>;
2123
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2115
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2124
2116
  filename: z.ZodString;
2125
2117
  originalFilename: z.ZodString;
2126
2118
  type: z.ZodString;
@@ -2147,56 +2139,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2147
2139
  option: string;
2148
2140
  filename: string;
2149
2141
  originalFilename: string;
2150
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2142
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2151
2143
  country: z.ZodString;
2152
2144
  province: z.ZodString;
2153
2145
  district: z.ZodString;
2154
2146
  }, {
2155
2147
  urbanOrRural: z.ZodLiteral<"URBAN">;
2156
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2157
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2158
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2159
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2160
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2148
+ town: z.ZodOptional<z.ZodString>;
2149
+ residentialArea: z.ZodOptional<z.ZodString>;
2150
+ street: z.ZodOptional<z.ZodString>;
2151
+ number: z.ZodOptional<z.ZodString>;
2152
+ zipCode: z.ZodOptional<z.ZodString>;
2161
2153
  }>, "strip", z.ZodTypeAny, {
2162
2154
  country: string;
2163
2155
  district: string;
2164
2156
  province: string;
2165
2157
  urbanOrRural: "URBAN";
2166
- number?: string | null | undefined;
2167
- town?: string | null | undefined;
2168
- residentialArea?: string | null | undefined;
2169
- street?: string | null | undefined;
2170
- zipCode?: string | null | undefined;
2158
+ number?: string | undefined;
2159
+ town?: string | undefined;
2160
+ residentialArea?: string | undefined;
2161
+ street?: string | undefined;
2162
+ zipCode?: string | undefined;
2171
2163
  }, {
2172
2164
  country: string;
2173
2165
  district: string;
2174
2166
  province: string;
2175
2167
  urbanOrRural: "URBAN";
2176
- number?: string | null | undefined;
2177
- town?: string | null | undefined;
2178
- residentialArea?: string | null | undefined;
2179
- street?: string | null | undefined;
2180
- zipCode?: string | null | undefined;
2168
+ number?: string | undefined;
2169
+ town?: string | undefined;
2170
+ residentialArea?: string | undefined;
2171
+ street?: string | undefined;
2172
+ zipCode?: string | undefined;
2181
2173
  }>, z.ZodObject<z.objectUtil.extendShape<{
2182
2174
  country: z.ZodString;
2183
2175
  province: z.ZodString;
2184
2176
  district: z.ZodString;
2185
2177
  }, {
2186
2178
  urbanOrRural: z.ZodLiteral<"RURAL">;
2187
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2179
+ village: z.ZodOptional<z.ZodString>;
2188
2180
  }>, "strip", z.ZodTypeAny, {
2189
2181
  country: string;
2190
2182
  district: string;
2191
2183
  province: string;
2192
2184
  urbanOrRural: "RURAL";
2193
- village?: string | null | undefined;
2185
+ village?: string | undefined;
2194
2186
  }, {
2195
2187
  country: string;
2196
2188
  district: string;
2197
2189
  province: string;
2198
2190
  urbanOrRural: "RURAL";
2199
- village?: string | null | undefined;
2191
+ village?: string | undefined;
2200
2192
  }>]>>>;
2201
2193
  createdAtLocation: z.ZodString;
2202
2194
  }, {
@@ -2213,17 +2205,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2213
2205
  district: string;
2214
2206
  province: string;
2215
2207
  urbanOrRural: "URBAN";
2216
- number?: string | null | undefined;
2217
- town?: string | null | undefined;
2218
- residentialArea?: string | null | undefined;
2219
- street?: string | null | undefined;
2220
- zipCode?: string | null | undefined;
2208
+ number?: string | undefined;
2209
+ town?: string | undefined;
2210
+ residentialArea?: string | undefined;
2211
+ street?: string | undefined;
2212
+ zipCode?: string | undefined;
2221
2213
  } | {
2222
2214
  country: string;
2223
2215
  district: string;
2224
2216
  province: string;
2225
2217
  urbanOrRural: "RURAL";
2226
- village?: string | null | undefined;
2218
+ village?: string | undefined;
2227
2219
  } | {
2228
2220
  type: string;
2229
2221
  option: string;
@@ -2242,17 +2234,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2242
2234
  district: string;
2243
2235
  province: string;
2244
2236
  urbanOrRural: "URBAN";
2245
- number?: string | null | undefined;
2246
- town?: string | null | undefined;
2247
- residentialArea?: string | null | undefined;
2248
- street?: string | null | undefined;
2249
- zipCode?: string | null | undefined;
2237
+ number?: string | undefined;
2238
+ town?: string | undefined;
2239
+ residentialArea?: string | undefined;
2240
+ street?: string | undefined;
2241
+ zipCode?: string | undefined;
2250
2242
  } | {
2251
2243
  country: string;
2252
2244
  district: string;
2253
2245
  province: string;
2254
2246
  urbanOrRural: "RURAL";
2255
- village?: string | null | undefined;
2247
+ village?: string | undefined;
2256
2248
  } | {
2257
2249
  type: string;
2258
2250
  option: string;
@@ -2271,17 +2263,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2271
2263
  district: string;
2272
2264
  province: string;
2273
2265
  urbanOrRural: "URBAN";
2274
- number?: string | null | undefined;
2275
- town?: string | null | undefined;
2276
- residentialArea?: string | null | undefined;
2277
- street?: string | null | undefined;
2278
- zipCode?: string | null | undefined;
2266
+ number?: string | undefined;
2267
+ town?: string | undefined;
2268
+ residentialArea?: string | undefined;
2269
+ street?: string | undefined;
2270
+ zipCode?: string | undefined;
2279
2271
  } | {
2280
2272
  country: string;
2281
2273
  district: string;
2282
2274
  province: string;
2283
2275
  urbanOrRural: "RURAL";
2284
- village?: string | null | undefined;
2276
+ village?: string | undefined;
2285
2277
  } | {
2286
2278
  type: string;
2287
2279
  option: string;
@@ -2300,17 +2292,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2300
2292
  district: string;
2301
2293
  province: string;
2302
2294
  urbanOrRural: "URBAN";
2303
- number?: string | null | undefined;
2304
- town?: string | null | undefined;
2305
- residentialArea?: string | null | undefined;
2306
- street?: string | null | undefined;
2307
- zipCode?: string | null | undefined;
2295
+ number?: string | undefined;
2296
+ town?: string | undefined;
2297
+ residentialArea?: string | undefined;
2298
+ street?: string | undefined;
2299
+ zipCode?: string | undefined;
2308
2300
  } | {
2309
2301
  country: string;
2310
2302
  district: string;
2311
2303
  province: string;
2312
2304
  urbanOrRural: "RURAL";
2313
- village?: string | null | undefined;
2305
+ village?: string | undefined;
2314
2306
  } | {
2315
2307
  type: string;
2316
2308
  option: string;
@@ -2321,7 +2313,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2321
2313
  id: z.ZodString;
2322
2314
  createdAt: z.ZodString;
2323
2315
  createdBy: z.ZodString;
2324
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2316
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2325
2317
  filename: z.ZodString;
2326
2318
  originalFilename: z.ZodString;
2327
2319
  type: z.ZodString;
@@ -2348,58 +2340,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2348
2340
  option: string;
2349
2341
  filename: string;
2350
2342
  originalFilename: string;
2351
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2343
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2352
2344
  country: z.ZodString;
2353
2345
  province: z.ZodString;
2354
2346
  district: z.ZodString;
2355
2347
  }, {
2356
2348
  urbanOrRural: z.ZodLiteral<"URBAN">;
2357
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2358
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2359
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2360
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2361
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2349
+ town: z.ZodOptional<z.ZodString>;
2350
+ residentialArea: z.ZodOptional<z.ZodString>;
2351
+ street: z.ZodOptional<z.ZodString>;
2352
+ number: z.ZodOptional<z.ZodString>;
2353
+ zipCode: z.ZodOptional<z.ZodString>;
2362
2354
  }>, "strip", z.ZodTypeAny, {
2363
2355
  country: string;
2364
2356
  district: string;
2365
2357
  province: string;
2366
2358
  urbanOrRural: "URBAN";
2367
- number?: string | null | undefined;
2368
- town?: string | null | undefined;
2369
- residentialArea?: string | null | undefined;
2370
- street?: string | null | undefined;
2371
- zipCode?: string | null | undefined;
2359
+ number?: string | undefined;
2360
+ town?: string | undefined;
2361
+ residentialArea?: string | undefined;
2362
+ street?: string | undefined;
2363
+ zipCode?: string | undefined;
2372
2364
  }, {
2373
2365
  country: string;
2374
2366
  district: string;
2375
2367
  province: string;
2376
2368
  urbanOrRural: "URBAN";
2377
- number?: string | null | undefined;
2378
- town?: string | null | undefined;
2379
- residentialArea?: string | null | undefined;
2380
- street?: string | null | undefined;
2381
- zipCode?: string | null | undefined;
2369
+ number?: string | undefined;
2370
+ town?: string | undefined;
2371
+ residentialArea?: string | undefined;
2372
+ street?: string | undefined;
2373
+ zipCode?: string | undefined;
2382
2374
  }>, z.ZodObject<z.objectUtil.extendShape<{
2383
2375
  country: z.ZodString;
2384
2376
  province: z.ZodString;
2385
2377
  district: z.ZodString;
2386
2378
  }, {
2387
2379
  urbanOrRural: z.ZodLiteral<"RURAL">;
2388
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2380
+ village: z.ZodOptional<z.ZodString>;
2389
2381
  }>, "strip", z.ZodTypeAny, {
2390
2382
  country: string;
2391
2383
  district: string;
2392
2384
  province: string;
2393
2385
  urbanOrRural: "RURAL";
2394
- village?: string | null | undefined;
2386
+ village?: string | undefined;
2395
2387
  }, {
2396
2388
  country: string;
2397
2389
  district: string;
2398
2390
  province: string;
2399
2391
  urbanOrRural: "RURAL";
2400
- village?: string | null | undefined;
2392
+ village?: string | undefined;
2401
2393
  }>]>>;
2402
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2394
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2403
2395
  filename: z.ZodString;
2404
2396
  originalFilename: z.ZodString;
2405
2397
  type: z.ZodString;
@@ -2426,56 +2418,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2426
2418
  option: string;
2427
2419
  filename: string;
2428
2420
  originalFilename: string;
2429
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2421
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2430
2422
  country: z.ZodString;
2431
2423
  province: z.ZodString;
2432
2424
  district: z.ZodString;
2433
2425
  }, {
2434
2426
  urbanOrRural: z.ZodLiteral<"URBAN">;
2435
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2436
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2437
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2438
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2439
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2427
+ town: z.ZodOptional<z.ZodString>;
2428
+ residentialArea: z.ZodOptional<z.ZodString>;
2429
+ street: z.ZodOptional<z.ZodString>;
2430
+ number: z.ZodOptional<z.ZodString>;
2431
+ zipCode: z.ZodOptional<z.ZodString>;
2440
2432
  }>, "strip", z.ZodTypeAny, {
2441
2433
  country: string;
2442
2434
  district: string;
2443
2435
  province: string;
2444
2436
  urbanOrRural: "URBAN";
2445
- number?: string | null | undefined;
2446
- town?: string | null | undefined;
2447
- residentialArea?: string | null | undefined;
2448
- street?: string | null | undefined;
2449
- zipCode?: string | null | undefined;
2437
+ number?: string | undefined;
2438
+ town?: string | undefined;
2439
+ residentialArea?: string | undefined;
2440
+ street?: string | undefined;
2441
+ zipCode?: string | undefined;
2450
2442
  }, {
2451
2443
  country: string;
2452
2444
  district: string;
2453
2445
  province: string;
2454
2446
  urbanOrRural: "URBAN";
2455
- number?: string | null | undefined;
2456
- town?: string | null | undefined;
2457
- residentialArea?: string | null | undefined;
2458
- street?: string | null | undefined;
2459
- zipCode?: string | null | undefined;
2447
+ number?: string | undefined;
2448
+ town?: string | undefined;
2449
+ residentialArea?: string | undefined;
2450
+ street?: string | undefined;
2451
+ zipCode?: string | undefined;
2460
2452
  }>, z.ZodObject<z.objectUtil.extendShape<{
2461
2453
  country: z.ZodString;
2462
2454
  province: z.ZodString;
2463
2455
  district: z.ZodString;
2464
2456
  }, {
2465
2457
  urbanOrRural: z.ZodLiteral<"RURAL">;
2466
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2458
+ village: z.ZodOptional<z.ZodString>;
2467
2459
  }>, "strip", z.ZodTypeAny, {
2468
2460
  country: string;
2469
2461
  district: string;
2470
2462
  province: string;
2471
2463
  urbanOrRural: "RURAL";
2472
- village?: string | null | undefined;
2464
+ village?: string | undefined;
2473
2465
  }, {
2474
2466
  country: string;
2475
2467
  district: string;
2476
2468
  province: string;
2477
2469
  urbanOrRural: "RURAL";
2478
- village?: string | null | undefined;
2470
+ village?: string | undefined;
2479
2471
  }>]>>>;
2480
2472
  createdAtLocation: z.ZodString;
2481
2473
  }, {
@@ -2502,17 +2494,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2502
2494
  district: string;
2503
2495
  province: string;
2504
2496
  urbanOrRural: "URBAN";
2505
- number?: string | null | undefined;
2506
- town?: string | null | undefined;
2507
- residentialArea?: string | null | undefined;
2508
- street?: string | null | undefined;
2509
- zipCode?: string | null | undefined;
2497
+ number?: string | undefined;
2498
+ town?: string | undefined;
2499
+ residentialArea?: string | undefined;
2500
+ street?: string | undefined;
2501
+ zipCode?: string | undefined;
2510
2502
  } | {
2511
2503
  country: string;
2512
2504
  district: string;
2513
2505
  province: string;
2514
2506
  urbanOrRural: "RURAL";
2515
- village?: string | null | undefined;
2507
+ village?: string | undefined;
2516
2508
  } | {
2517
2509
  type: string;
2518
2510
  option: string;
@@ -2535,17 +2527,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2535
2527
  district: string;
2536
2528
  province: string;
2537
2529
  urbanOrRural: "URBAN";
2538
- number?: string | null | undefined;
2539
- town?: string | null | undefined;
2540
- residentialArea?: string | null | undefined;
2541
- street?: string | null | undefined;
2542
- zipCode?: string | null | undefined;
2530
+ number?: string | undefined;
2531
+ town?: string | undefined;
2532
+ residentialArea?: string | undefined;
2533
+ street?: string | undefined;
2534
+ zipCode?: string | undefined;
2543
2535
  } | {
2544
2536
  country: string;
2545
2537
  district: string;
2546
2538
  province: string;
2547
2539
  urbanOrRural: "RURAL";
2548
- village?: string | null | undefined;
2540
+ village?: string | undefined;
2549
2541
  } | {
2550
2542
  type: string;
2551
2543
  option: string;
@@ -2564,17 +2556,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2564
2556
  district: string;
2565
2557
  province: string;
2566
2558
  urbanOrRural: "URBAN";
2567
- number?: string | null | undefined;
2568
- town?: string | null | undefined;
2569
- residentialArea?: string | null | undefined;
2570
- street?: string | null | undefined;
2571
- zipCode?: string | null | undefined;
2559
+ number?: string | undefined;
2560
+ town?: string | undefined;
2561
+ residentialArea?: string | undefined;
2562
+ street?: string | undefined;
2563
+ zipCode?: string | undefined;
2572
2564
  } | {
2573
2565
  country: string;
2574
2566
  district: string;
2575
2567
  province: string;
2576
2568
  urbanOrRural: "RURAL";
2577
- village?: string | null | undefined;
2569
+ village?: string | undefined;
2578
2570
  } | {
2579
2571
  type: string;
2580
2572
  option: string;
@@ -2597,17 +2589,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2597
2589
  district: string;
2598
2590
  province: string;
2599
2591
  urbanOrRural: "URBAN";
2600
- number?: string | null | undefined;
2601
- town?: string | null | undefined;
2602
- residentialArea?: string | null | undefined;
2603
- street?: string | null | undefined;
2604
- zipCode?: string | null | undefined;
2592
+ number?: string | undefined;
2593
+ town?: string | undefined;
2594
+ residentialArea?: string | undefined;
2595
+ street?: string | undefined;
2596
+ zipCode?: string | undefined;
2605
2597
  } | {
2606
2598
  country: string;
2607
2599
  district: string;
2608
2600
  province: string;
2609
2601
  urbanOrRural: "RURAL";
2610
- village?: string | null | undefined;
2602
+ village?: string | undefined;
2611
2603
  } | {
2612
2604
  type: string;
2613
2605
  option: string;
@@ -2618,7 +2610,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2618
2610
  id: z.ZodString;
2619
2611
  createdAt: z.ZodString;
2620
2612
  createdBy: z.ZodString;
2621
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2613
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2622
2614
  filename: z.ZodString;
2623
2615
  originalFilename: z.ZodString;
2624
2616
  type: z.ZodString;
@@ -2645,58 +2637,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2645
2637
  option: string;
2646
2638
  filename: string;
2647
2639
  originalFilename: string;
2648
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2640
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2649
2641
  country: z.ZodString;
2650
2642
  province: z.ZodString;
2651
2643
  district: z.ZodString;
2652
2644
  }, {
2653
2645
  urbanOrRural: z.ZodLiteral<"URBAN">;
2654
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2655
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2656
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2657
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2658
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2646
+ town: z.ZodOptional<z.ZodString>;
2647
+ residentialArea: z.ZodOptional<z.ZodString>;
2648
+ street: z.ZodOptional<z.ZodString>;
2649
+ number: z.ZodOptional<z.ZodString>;
2650
+ zipCode: z.ZodOptional<z.ZodString>;
2659
2651
  }>, "strip", z.ZodTypeAny, {
2660
2652
  country: string;
2661
2653
  district: string;
2662
2654
  province: string;
2663
2655
  urbanOrRural: "URBAN";
2664
- number?: string | null | undefined;
2665
- town?: string | null | undefined;
2666
- residentialArea?: string | null | undefined;
2667
- street?: string | null | undefined;
2668
- zipCode?: string | null | undefined;
2656
+ number?: string | undefined;
2657
+ town?: string | undefined;
2658
+ residentialArea?: string | undefined;
2659
+ street?: string | undefined;
2660
+ zipCode?: string | undefined;
2669
2661
  }, {
2670
2662
  country: string;
2671
2663
  district: string;
2672
2664
  province: string;
2673
2665
  urbanOrRural: "URBAN";
2674
- number?: string | null | undefined;
2675
- town?: string | null | undefined;
2676
- residentialArea?: string | null | undefined;
2677
- street?: string | null | undefined;
2678
- zipCode?: string | null | undefined;
2666
+ number?: string | undefined;
2667
+ town?: string | undefined;
2668
+ residentialArea?: string | undefined;
2669
+ street?: string | undefined;
2670
+ zipCode?: string | undefined;
2679
2671
  }>, z.ZodObject<z.objectUtil.extendShape<{
2680
2672
  country: z.ZodString;
2681
2673
  province: z.ZodString;
2682
2674
  district: z.ZodString;
2683
2675
  }, {
2684
2676
  urbanOrRural: z.ZodLiteral<"RURAL">;
2685
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2677
+ village: z.ZodOptional<z.ZodString>;
2686
2678
  }>, "strip", z.ZodTypeAny, {
2687
2679
  country: string;
2688
2680
  district: string;
2689
2681
  province: string;
2690
2682
  urbanOrRural: "RURAL";
2691
- village?: string | null | undefined;
2683
+ village?: string | undefined;
2692
2684
  }, {
2693
2685
  country: string;
2694
2686
  district: string;
2695
2687
  province: string;
2696
2688
  urbanOrRural: "RURAL";
2697
- village?: string | null | undefined;
2689
+ village?: string | undefined;
2698
2690
  }>]>>;
2699
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2691
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2700
2692
  filename: z.ZodString;
2701
2693
  originalFilename: z.ZodString;
2702
2694
  type: z.ZodString;
@@ -2723,56 +2715,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2723
2715
  option: string;
2724
2716
  filename: string;
2725
2717
  originalFilename: string;
2726
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2718
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2727
2719
  country: z.ZodString;
2728
2720
  province: z.ZodString;
2729
2721
  district: z.ZodString;
2730
2722
  }, {
2731
2723
  urbanOrRural: z.ZodLiteral<"URBAN">;
2732
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2733
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2734
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2735
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2736
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2724
+ town: z.ZodOptional<z.ZodString>;
2725
+ residentialArea: z.ZodOptional<z.ZodString>;
2726
+ street: z.ZodOptional<z.ZodString>;
2727
+ number: z.ZodOptional<z.ZodString>;
2728
+ zipCode: z.ZodOptional<z.ZodString>;
2737
2729
  }>, "strip", z.ZodTypeAny, {
2738
2730
  country: string;
2739
2731
  district: string;
2740
2732
  province: string;
2741
2733
  urbanOrRural: "URBAN";
2742
- number?: string | null | undefined;
2743
- town?: string | null | undefined;
2744
- residentialArea?: string | null | undefined;
2745
- street?: string | null | undefined;
2746
- zipCode?: string | null | undefined;
2734
+ number?: string | undefined;
2735
+ town?: string | undefined;
2736
+ residentialArea?: string | undefined;
2737
+ street?: string | undefined;
2738
+ zipCode?: string | undefined;
2747
2739
  }, {
2748
2740
  country: string;
2749
2741
  district: string;
2750
2742
  province: string;
2751
2743
  urbanOrRural: "URBAN";
2752
- number?: string | null | undefined;
2753
- town?: string | null | undefined;
2754
- residentialArea?: string | null | undefined;
2755
- street?: string | null | undefined;
2756
- zipCode?: string | null | undefined;
2744
+ number?: string | undefined;
2745
+ town?: string | undefined;
2746
+ residentialArea?: string | undefined;
2747
+ street?: string | undefined;
2748
+ zipCode?: string | undefined;
2757
2749
  }>, z.ZodObject<z.objectUtil.extendShape<{
2758
2750
  country: z.ZodString;
2759
2751
  province: z.ZodString;
2760
2752
  district: z.ZodString;
2761
2753
  }, {
2762
2754
  urbanOrRural: z.ZodLiteral<"RURAL">;
2763
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2755
+ village: z.ZodOptional<z.ZodString>;
2764
2756
  }>, "strip", z.ZodTypeAny, {
2765
2757
  country: string;
2766
2758
  district: string;
2767
2759
  province: string;
2768
2760
  urbanOrRural: "RURAL";
2769
- village?: string | null | undefined;
2761
+ village?: string | undefined;
2770
2762
  }, {
2771
2763
  country: string;
2772
2764
  district: string;
2773
2765
  province: string;
2774
2766
  urbanOrRural: "RURAL";
2775
- village?: string | null | undefined;
2767
+ village?: string | undefined;
2776
2768
  }>]>>>;
2777
2769
  createdAtLocation: z.ZodString;
2778
2770
  }, {
@@ -2789,17 +2781,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2789
2781
  district: string;
2790
2782
  province: string;
2791
2783
  urbanOrRural: "URBAN";
2792
- number?: string | null | undefined;
2793
- town?: string | null | undefined;
2794
- residentialArea?: string | null | undefined;
2795
- street?: string | null | undefined;
2796
- zipCode?: string | null | undefined;
2784
+ number?: string | undefined;
2785
+ town?: string | undefined;
2786
+ residentialArea?: string | undefined;
2787
+ street?: string | undefined;
2788
+ zipCode?: string | undefined;
2797
2789
  } | {
2798
2790
  country: string;
2799
2791
  district: string;
2800
2792
  province: string;
2801
2793
  urbanOrRural: "RURAL";
2802
- village?: string | null | undefined;
2794
+ village?: string | undefined;
2803
2795
  } | {
2804
2796
  type: string;
2805
2797
  option: string;
@@ -2818,17 +2810,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2818
2810
  district: string;
2819
2811
  province: string;
2820
2812
  urbanOrRural: "URBAN";
2821
- number?: string | null | undefined;
2822
- town?: string | null | undefined;
2823
- residentialArea?: string | null | undefined;
2824
- street?: string | null | undefined;
2825
- zipCode?: string | null | undefined;
2813
+ number?: string | undefined;
2814
+ town?: string | undefined;
2815
+ residentialArea?: string | undefined;
2816
+ street?: string | undefined;
2817
+ zipCode?: string | undefined;
2826
2818
  } | {
2827
2819
  country: string;
2828
2820
  district: string;
2829
2821
  province: string;
2830
2822
  urbanOrRural: "RURAL";
2831
- village?: string | null | undefined;
2823
+ village?: string | undefined;
2832
2824
  } | {
2833
2825
  type: string;
2834
2826
  option: string;
@@ -2847,17 +2839,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2847
2839
  district: string;
2848
2840
  province: string;
2849
2841
  urbanOrRural: "URBAN";
2850
- number?: string | null | undefined;
2851
- town?: string | null | undefined;
2852
- residentialArea?: string | null | undefined;
2853
- street?: string | null | undefined;
2854
- zipCode?: string | null | undefined;
2842
+ number?: string | undefined;
2843
+ town?: string | undefined;
2844
+ residentialArea?: string | undefined;
2845
+ street?: string | undefined;
2846
+ zipCode?: string | undefined;
2855
2847
  } | {
2856
2848
  country: string;
2857
2849
  district: string;
2858
2850
  province: string;
2859
2851
  urbanOrRural: "RURAL";
2860
- village?: string | null | undefined;
2852
+ village?: string | undefined;
2861
2853
  } | {
2862
2854
  type: string;
2863
2855
  option: string;
@@ -2876,17 +2868,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2876
2868
  district: string;
2877
2869
  province: string;
2878
2870
  urbanOrRural: "URBAN";
2879
- number?: string | null | undefined;
2880
- town?: string | null | undefined;
2881
- residentialArea?: string | null | undefined;
2882
- street?: string | null | undefined;
2883
- zipCode?: string | null | undefined;
2871
+ number?: string | undefined;
2872
+ town?: string | undefined;
2873
+ residentialArea?: string | undefined;
2874
+ street?: string | undefined;
2875
+ zipCode?: string | undefined;
2884
2876
  } | {
2885
2877
  country: string;
2886
2878
  district: string;
2887
2879
  province: string;
2888
2880
  urbanOrRural: "RURAL";
2889
- village?: string | null | undefined;
2881
+ village?: string | undefined;
2890
2882
  } | {
2891
2883
  type: string;
2892
2884
  option: string;
@@ -2897,7 +2889,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2897
2889
  id: z.ZodString;
2898
2890
  createdAt: z.ZodString;
2899
2891
  createdBy: z.ZodString;
2900
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2892
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2901
2893
  filename: z.ZodString;
2902
2894
  originalFilename: z.ZodString;
2903
2895
  type: z.ZodString;
@@ -2924,58 +2916,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2924
2916
  option: string;
2925
2917
  filename: string;
2926
2918
  originalFilename: string;
2927
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2919
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
2928
2920
  country: z.ZodString;
2929
2921
  province: z.ZodString;
2930
2922
  district: z.ZodString;
2931
2923
  }, {
2932
2924
  urbanOrRural: z.ZodLiteral<"URBAN">;
2933
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2934
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2935
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2936
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2937
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2925
+ town: z.ZodOptional<z.ZodString>;
2926
+ residentialArea: z.ZodOptional<z.ZodString>;
2927
+ street: z.ZodOptional<z.ZodString>;
2928
+ number: z.ZodOptional<z.ZodString>;
2929
+ zipCode: z.ZodOptional<z.ZodString>;
2938
2930
  }>, "strip", z.ZodTypeAny, {
2939
2931
  country: string;
2940
2932
  district: string;
2941
2933
  province: string;
2942
2934
  urbanOrRural: "URBAN";
2943
- number?: string | null | undefined;
2944
- town?: string | null | undefined;
2945
- residentialArea?: string | null | undefined;
2946
- street?: string | null | undefined;
2947
- zipCode?: string | null | undefined;
2935
+ number?: string | undefined;
2936
+ town?: string | undefined;
2937
+ residentialArea?: string | undefined;
2938
+ street?: string | undefined;
2939
+ zipCode?: string | undefined;
2948
2940
  }, {
2949
2941
  country: string;
2950
2942
  district: string;
2951
2943
  province: string;
2952
2944
  urbanOrRural: "URBAN";
2953
- number?: string | null | undefined;
2954
- town?: string | null | undefined;
2955
- residentialArea?: string | null | undefined;
2956
- street?: string | null | undefined;
2957
- zipCode?: string | null | undefined;
2945
+ number?: string | undefined;
2946
+ town?: string | undefined;
2947
+ residentialArea?: string | undefined;
2948
+ street?: string | undefined;
2949
+ zipCode?: string | undefined;
2958
2950
  }>, z.ZodObject<z.objectUtil.extendShape<{
2959
2951
  country: z.ZodString;
2960
2952
  province: z.ZodString;
2961
2953
  district: z.ZodString;
2962
2954
  }, {
2963
2955
  urbanOrRural: z.ZodLiteral<"RURAL">;
2964
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2956
+ village: z.ZodOptional<z.ZodString>;
2965
2957
  }>, "strip", z.ZodTypeAny, {
2966
2958
  country: string;
2967
2959
  district: string;
2968
2960
  province: string;
2969
2961
  urbanOrRural: "RURAL";
2970
- village?: string | null | undefined;
2962
+ village?: string | undefined;
2971
2963
  }, {
2972
2964
  country: string;
2973
2965
  district: string;
2974
2966
  province: string;
2975
2967
  urbanOrRural: "RURAL";
2976
- village?: string | null | undefined;
2968
+ village?: string | undefined;
2977
2969
  }>]>>;
2978
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
2970
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
2979
2971
  filename: z.ZodString;
2980
2972
  originalFilename: z.ZodString;
2981
2973
  type: z.ZodString;
@@ -3002,56 +2994,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3002
2994
  option: string;
3003
2995
  filename: string;
3004
2996
  originalFilename: string;
3005
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
2997
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3006
2998
  country: z.ZodString;
3007
2999
  province: z.ZodString;
3008
3000
  district: z.ZodString;
3009
3001
  }, {
3010
3002
  urbanOrRural: z.ZodLiteral<"URBAN">;
3011
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3012
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3013
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3014
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3015
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3003
+ town: z.ZodOptional<z.ZodString>;
3004
+ residentialArea: z.ZodOptional<z.ZodString>;
3005
+ street: z.ZodOptional<z.ZodString>;
3006
+ number: z.ZodOptional<z.ZodString>;
3007
+ zipCode: z.ZodOptional<z.ZodString>;
3016
3008
  }>, "strip", z.ZodTypeAny, {
3017
3009
  country: string;
3018
3010
  district: string;
3019
3011
  province: string;
3020
3012
  urbanOrRural: "URBAN";
3021
- number?: string | null | undefined;
3022
- town?: string | null | undefined;
3023
- residentialArea?: string | null | undefined;
3024
- street?: string | null | undefined;
3025
- zipCode?: string | null | undefined;
3013
+ number?: string | undefined;
3014
+ town?: string | undefined;
3015
+ residentialArea?: string | undefined;
3016
+ street?: string | undefined;
3017
+ zipCode?: string | undefined;
3026
3018
  }, {
3027
3019
  country: string;
3028
3020
  district: string;
3029
3021
  province: string;
3030
3022
  urbanOrRural: "URBAN";
3031
- number?: string | null | undefined;
3032
- town?: string | null | undefined;
3033
- residentialArea?: string | null | undefined;
3034
- street?: string | null | undefined;
3035
- zipCode?: string | null | undefined;
3023
+ number?: string | undefined;
3024
+ town?: string | undefined;
3025
+ residentialArea?: string | undefined;
3026
+ street?: string | undefined;
3027
+ zipCode?: string | undefined;
3036
3028
  }>, z.ZodObject<z.objectUtil.extendShape<{
3037
3029
  country: z.ZodString;
3038
3030
  province: z.ZodString;
3039
3031
  district: z.ZodString;
3040
3032
  }, {
3041
3033
  urbanOrRural: z.ZodLiteral<"RURAL">;
3042
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3034
+ village: z.ZodOptional<z.ZodString>;
3043
3035
  }>, "strip", z.ZodTypeAny, {
3044
3036
  country: string;
3045
3037
  district: string;
3046
3038
  province: string;
3047
3039
  urbanOrRural: "RURAL";
3048
- village?: string | null | undefined;
3040
+ village?: string | undefined;
3049
3041
  }, {
3050
3042
  country: string;
3051
3043
  district: string;
3052
3044
  province: string;
3053
3045
  urbanOrRural: "RURAL";
3054
- village?: string | null | undefined;
3046
+ village?: string | undefined;
3055
3047
  }>]>>>;
3056
3048
  createdAtLocation: z.ZodString;
3057
3049
  }, {
@@ -3069,17 +3061,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3069
3061
  district: string;
3070
3062
  province: string;
3071
3063
  urbanOrRural: "URBAN";
3072
- number?: string | null | undefined;
3073
- town?: string | null | undefined;
3074
- residentialArea?: string | null | undefined;
3075
- street?: string | null | undefined;
3076
- zipCode?: string | null | undefined;
3064
+ number?: string | undefined;
3065
+ town?: string | undefined;
3066
+ residentialArea?: string | undefined;
3067
+ street?: string | undefined;
3068
+ zipCode?: string | undefined;
3077
3069
  } | {
3078
3070
  country: string;
3079
3071
  district: string;
3080
3072
  province: string;
3081
3073
  urbanOrRural: "RURAL";
3082
- village?: string | null | undefined;
3074
+ village?: string | undefined;
3083
3075
  } | {
3084
3076
  type: string;
3085
3077
  option: string;
@@ -3099,17 +3091,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3099
3091
  district: string;
3100
3092
  province: string;
3101
3093
  urbanOrRural: "URBAN";
3102
- number?: string | null | undefined;
3103
- town?: string | null | undefined;
3104
- residentialArea?: string | null | undefined;
3105
- street?: string | null | undefined;
3106
- zipCode?: string | null | undefined;
3094
+ number?: string | undefined;
3095
+ town?: string | undefined;
3096
+ residentialArea?: string | undefined;
3097
+ street?: string | undefined;
3098
+ zipCode?: string | undefined;
3107
3099
  } | {
3108
3100
  country: string;
3109
3101
  district: string;
3110
3102
  province: string;
3111
3103
  urbanOrRural: "RURAL";
3112
- village?: string | null | undefined;
3104
+ village?: string | undefined;
3113
3105
  } | {
3114
3106
  type: string;
3115
3107
  option: string;
@@ -3128,17 +3120,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3128
3120
  district: string;
3129
3121
  province: string;
3130
3122
  urbanOrRural: "URBAN";
3131
- number?: string | null | undefined;
3132
- town?: string | null | undefined;
3133
- residentialArea?: string | null | undefined;
3134
- street?: string | null | undefined;
3135
- zipCode?: string | null | undefined;
3123
+ number?: string | undefined;
3124
+ town?: string | undefined;
3125
+ residentialArea?: string | undefined;
3126
+ street?: string | undefined;
3127
+ zipCode?: string | undefined;
3136
3128
  } | {
3137
3129
  country: string;
3138
3130
  district: string;
3139
3131
  province: string;
3140
3132
  urbanOrRural: "RURAL";
3141
- village?: string | null | undefined;
3133
+ village?: string | undefined;
3142
3134
  } | {
3143
3135
  type: string;
3144
3136
  option: string;
@@ -3158,17 +3150,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3158
3150
  district: string;
3159
3151
  province: string;
3160
3152
  urbanOrRural: "URBAN";
3161
- number?: string | null | undefined;
3162
- town?: string | null | undefined;
3163
- residentialArea?: string | null | undefined;
3164
- street?: string | null | undefined;
3165
- zipCode?: string | null | undefined;
3153
+ number?: string | undefined;
3154
+ town?: string | undefined;
3155
+ residentialArea?: string | undefined;
3156
+ street?: string | undefined;
3157
+ zipCode?: string | undefined;
3166
3158
  } | {
3167
3159
  country: string;
3168
3160
  district: string;
3169
3161
  province: string;
3170
3162
  urbanOrRural: "RURAL";
3171
- village?: string | null | undefined;
3163
+ village?: string | undefined;
3172
3164
  } | {
3173
3165
  type: string;
3174
3166
  option: string;
@@ -3179,7 +3171,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3179
3171
  id: z.ZodString;
3180
3172
  createdAt: z.ZodString;
3181
3173
  createdBy: z.ZodString;
3182
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3174
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3183
3175
  filename: z.ZodString;
3184
3176
  originalFilename: z.ZodString;
3185
3177
  type: z.ZodString;
@@ -3206,58 +3198,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3206
3198
  option: string;
3207
3199
  filename: string;
3208
3200
  originalFilename: string;
3209
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3201
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3210
3202
  country: z.ZodString;
3211
3203
  province: z.ZodString;
3212
3204
  district: z.ZodString;
3213
3205
  }, {
3214
3206
  urbanOrRural: z.ZodLiteral<"URBAN">;
3215
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3216
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3217
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3218
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3219
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3207
+ town: z.ZodOptional<z.ZodString>;
3208
+ residentialArea: z.ZodOptional<z.ZodString>;
3209
+ street: z.ZodOptional<z.ZodString>;
3210
+ number: z.ZodOptional<z.ZodString>;
3211
+ zipCode: z.ZodOptional<z.ZodString>;
3220
3212
  }>, "strip", z.ZodTypeAny, {
3221
3213
  country: string;
3222
3214
  district: string;
3223
3215
  province: string;
3224
3216
  urbanOrRural: "URBAN";
3225
- number?: string | null | undefined;
3226
- town?: string | null | undefined;
3227
- residentialArea?: string | null | undefined;
3228
- street?: string | null | undefined;
3229
- zipCode?: string | null | undefined;
3217
+ number?: string | undefined;
3218
+ town?: string | undefined;
3219
+ residentialArea?: string | undefined;
3220
+ street?: string | undefined;
3221
+ zipCode?: string | undefined;
3230
3222
  }, {
3231
3223
  country: string;
3232
3224
  district: string;
3233
3225
  province: string;
3234
3226
  urbanOrRural: "URBAN";
3235
- number?: string | null | undefined;
3236
- town?: string | null | undefined;
3237
- residentialArea?: string | null | undefined;
3238
- street?: string | null | undefined;
3239
- zipCode?: string | null | undefined;
3227
+ number?: string | undefined;
3228
+ town?: string | undefined;
3229
+ residentialArea?: string | undefined;
3230
+ street?: string | undefined;
3231
+ zipCode?: string | undefined;
3240
3232
  }>, z.ZodObject<z.objectUtil.extendShape<{
3241
3233
  country: z.ZodString;
3242
3234
  province: z.ZodString;
3243
3235
  district: z.ZodString;
3244
3236
  }, {
3245
3237
  urbanOrRural: z.ZodLiteral<"RURAL">;
3246
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3238
+ village: z.ZodOptional<z.ZodString>;
3247
3239
  }>, "strip", z.ZodTypeAny, {
3248
3240
  country: string;
3249
3241
  district: string;
3250
3242
  province: string;
3251
3243
  urbanOrRural: "RURAL";
3252
- village?: string | null | undefined;
3244
+ village?: string | undefined;
3253
3245
  }, {
3254
3246
  country: string;
3255
3247
  district: string;
3256
3248
  province: string;
3257
3249
  urbanOrRural: "RURAL";
3258
- village?: string | null | undefined;
3250
+ village?: string | undefined;
3259
3251
  }>]>>;
3260
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3252
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3261
3253
  filename: z.ZodString;
3262
3254
  originalFilename: z.ZodString;
3263
3255
  type: z.ZodString;
@@ -3284,56 +3276,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3284
3276
  option: string;
3285
3277
  filename: string;
3286
3278
  originalFilename: string;
3287
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3279
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3288
3280
  country: z.ZodString;
3289
3281
  province: z.ZodString;
3290
3282
  district: z.ZodString;
3291
3283
  }, {
3292
3284
  urbanOrRural: z.ZodLiteral<"URBAN">;
3293
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3294
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3295
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3296
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3297
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3285
+ town: z.ZodOptional<z.ZodString>;
3286
+ residentialArea: z.ZodOptional<z.ZodString>;
3287
+ street: z.ZodOptional<z.ZodString>;
3288
+ number: z.ZodOptional<z.ZodString>;
3289
+ zipCode: z.ZodOptional<z.ZodString>;
3298
3290
  }>, "strip", z.ZodTypeAny, {
3299
3291
  country: string;
3300
3292
  district: string;
3301
3293
  province: string;
3302
3294
  urbanOrRural: "URBAN";
3303
- number?: string | null | undefined;
3304
- town?: string | null | undefined;
3305
- residentialArea?: string | null | undefined;
3306
- street?: string | null | undefined;
3307
- zipCode?: string | null | undefined;
3295
+ number?: string | undefined;
3296
+ town?: string | undefined;
3297
+ residentialArea?: string | undefined;
3298
+ street?: string | undefined;
3299
+ zipCode?: string | undefined;
3308
3300
  }, {
3309
3301
  country: string;
3310
3302
  district: string;
3311
3303
  province: string;
3312
3304
  urbanOrRural: "URBAN";
3313
- number?: string | null | undefined;
3314
- town?: string | null | undefined;
3315
- residentialArea?: string | null | undefined;
3316
- street?: string | null | undefined;
3317
- zipCode?: string | null | undefined;
3305
+ number?: string | undefined;
3306
+ town?: string | undefined;
3307
+ residentialArea?: string | undefined;
3308
+ street?: string | undefined;
3309
+ zipCode?: string | undefined;
3318
3310
  }>, z.ZodObject<z.objectUtil.extendShape<{
3319
3311
  country: z.ZodString;
3320
3312
  province: z.ZodString;
3321
3313
  district: z.ZodString;
3322
3314
  }, {
3323
3315
  urbanOrRural: z.ZodLiteral<"RURAL">;
3324
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3316
+ village: z.ZodOptional<z.ZodString>;
3325
3317
  }>, "strip", z.ZodTypeAny, {
3326
3318
  country: string;
3327
3319
  district: string;
3328
3320
  province: string;
3329
3321
  urbanOrRural: "RURAL";
3330
- village?: string | null | undefined;
3322
+ village?: string | undefined;
3331
3323
  }, {
3332
3324
  country: string;
3333
3325
  district: string;
3334
3326
  province: string;
3335
3327
  urbanOrRural: "RURAL";
3336
- village?: string | null | undefined;
3328
+ village?: string | undefined;
3337
3329
  }>]>>>;
3338
3330
  createdAtLocation: z.ZodString;
3339
3331
  }, {
@@ -3350,17 +3342,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3350
3342
  district: string;
3351
3343
  province: string;
3352
3344
  urbanOrRural: "URBAN";
3353
- number?: string | null | undefined;
3354
- town?: string | null | undefined;
3355
- residentialArea?: string | null | undefined;
3356
- street?: string | null | undefined;
3357
- zipCode?: string | null | undefined;
3345
+ number?: string | undefined;
3346
+ town?: string | undefined;
3347
+ residentialArea?: string | undefined;
3348
+ street?: string | undefined;
3349
+ zipCode?: string | undefined;
3358
3350
  } | {
3359
3351
  country: string;
3360
3352
  district: string;
3361
3353
  province: string;
3362
3354
  urbanOrRural: "RURAL";
3363
- village?: string | null | undefined;
3355
+ village?: string | undefined;
3364
3356
  } | {
3365
3357
  type: string;
3366
3358
  option: string;
@@ -3379,17 +3371,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3379
3371
  district: string;
3380
3372
  province: string;
3381
3373
  urbanOrRural: "URBAN";
3382
- number?: string | null | undefined;
3383
- town?: string | null | undefined;
3384
- residentialArea?: string | null | undefined;
3385
- street?: string | null | undefined;
3386
- zipCode?: string | null | undefined;
3374
+ number?: string | undefined;
3375
+ town?: string | undefined;
3376
+ residentialArea?: string | undefined;
3377
+ street?: string | undefined;
3378
+ zipCode?: string | undefined;
3387
3379
  } | {
3388
3380
  country: string;
3389
3381
  district: string;
3390
3382
  province: string;
3391
3383
  urbanOrRural: "RURAL";
3392
- village?: string | null | undefined;
3384
+ village?: string | undefined;
3393
3385
  } | {
3394
3386
  type: string;
3395
3387
  option: string;
@@ -3408,17 +3400,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3408
3400
  district: string;
3409
3401
  province: string;
3410
3402
  urbanOrRural: "URBAN";
3411
- number?: string | null | undefined;
3412
- town?: string | null | undefined;
3413
- residentialArea?: string | null | undefined;
3414
- street?: string | null | undefined;
3415
- zipCode?: string | null | undefined;
3403
+ number?: string | undefined;
3404
+ town?: string | undefined;
3405
+ residentialArea?: string | undefined;
3406
+ street?: string | undefined;
3407
+ zipCode?: string | undefined;
3416
3408
  } | {
3417
3409
  country: string;
3418
3410
  district: string;
3419
3411
  province: string;
3420
3412
  urbanOrRural: "RURAL";
3421
- village?: string | null | undefined;
3413
+ village?: string | undefined;
3422
3414
  } | {
3423
3415
  type: string;
3424
3416
  option: string;
@@ -3437,17 +3429,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3437
3429
  district: string;
3438
3430
  province: string;
3439
3431
  urbanOrRural: "URBAN";
3440
- number?: string | null | undefined;
3441
- town?: string | null | undefined;
3442
- residentialArea?: string | null | undefined;
3443
- street?: string | null | undefined;
3444
- zipCode?: string | null | undefined;
3432
+ number?: string | undefined;
3433
+ town?: string | undefined;
3434
+ residentialArea?: string | undefined;
3435
+ street?: string | undefined;
3436
+ zipCode?: string | undefined;
3445
3437
  } | {
3446
3438
  country: string;
3447
3439
  district: string;
3448
3440
  province: string;
3449
3441
  urbanOrRural: "RURAL";
3450
- village?: string | null | undefined;
3442
+ village?: string | undefined;
3451
3443
  } | {
3452
3444
  type: string;
3453
3445
  option: string;
@@ -3458,7 +3450,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3458
3450
  id: z.ZodString;
3459
3451
  createdAt: z.ZodString;
3460
3452
  createdBy: z.ZodString;
3461
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3453
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3462
3454
  filename: z.ZodString;
3463
3455
  originalFilename: z.ZodString;
3464
3456
  type: z.ZodString;
@@ -3485,58 +3477,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3485
3477
  option: string;
3486
3478
  filename: string;
3487
3479
  originalFilename: string;
3488
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3480
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3489
3481
  country: z.ZodString;
3490
3482
  province: z.ZodString;
3491
3483
  district: z.ZodString;
3492
3484
  }, {
3493
3485
  urbanOrRural: z.ZodLiteral<"URBAN">;
3494
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3495
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3496
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3497
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3498
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3486
+ town: z.ZodOptional<z.ZodString>;
3487
+ residentialArea: z.ZodOptional<z.ZodString>;
3488
+ street: z.ZodOptional<z.ZodString>;
3489
+ number: z.ZodOptional<z.ZodString>;
3490
+ zipCode: z.ZodOptional<z.ZodString>;
3499
3491
  }>, "strip", z.ZodTypeAny, {
3500
3492
  country: string;
3501
3493
  district: string;
3502
3494
  province: string;
3503
3495
  urbanOrRural: "URBAN";
3504
- number?: string | null | undefined;
3505
- town?: string | null | undefined;
3506
- residentialArea?: string | null | undefined;
3507
- street?: string | null | undefined;
3508
- zipCode?: string | null | undefined;
3496
+ number?: string | undefined;
3497
+ town?: string | undefined;
3498
+ residentialArea?: string | undefined;
3499
+ street?: string | undefined;
3500
+ zipCode?: string | undefined;
3509
3501
  }, {
3510
3502
  country: string;
3511
3503
  district: string;
3512
3504
  province: string;
3513
3505
  urbanOrRural: "URBAN";
3514
- number?: string | null | undefined;
3515
- town?: string | null | undefined;
3516
- residentialArea?: string | null | undefined;
3517
- street?: string | null | undefined;
3518
- zipCode?: string | null | undefined;
3506
+ number?: string | undefined;
3507
+ town?: string | undefined;
3508
+ residentialArea?: string | undefined;
3509
+ street?: string | undefined;
3510
+ zipCode?: string | undefined;
3519
3511
  }>, z.ZodObject<z.objectUtil.extendShape<{
3520
3512
  country: z.ZodString;
3521
3513
  province: z.ZodString;
3522
3514
  district: z.ZodString;
3523
3515
  }, {
3524
3516
  urbanOrRural: z.ZodLiteral<"RURAL">;
3525
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3517
+ village: z.ZodOptional<z.ZodString>;
3526
3518
  }>, "strip", z.ZodTypeAny, {
3527
3519
  country: string;
3528
3520
  district: string;
3529
3521
  province: string;
3530
3522
  urbanOrRural: "RURAL";
3531
- village?: string | null | undefined;
3523
+ village?: string | undefined;
3532
3524
  }, {
3533
3525
  country: string;
3534
3526
  district: string;
3535
3527
  province: string;
3536
3528
  urbanOrRural: "RURAL";
3537
- village?: string | null | undefined;
3529
+ village?: string | undefined;
3538
3530
  }>]>>;
3539
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3531
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3540
3532
  filename: z.ZodString;
3541
3533
  originalFilename: z.ZodString;
3542
3534
  type: z.ZodString;
@@ -3563,56 +3555,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3563
3555
  option: string;
3564
3556
  filename: string;
3565
3557
  originalFilename: string;
3566
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3558
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3567
3559
  country: z.ZodString;
3568
3560
  province: z.ZodString;
3569
3561
  district: z.ZodString;
3570
3562
  }, {
3571
3563
  urbanOrRural: z.ZodLiteral<"URBAN">;
3572
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3573
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3574
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3575
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3576
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3564
+ town: z.ZodOptional<z.ZodString>;
3565
+ residentialArea: z.ZodOptional<z.ZodString>;
3566
+ street: z.ZodOptional<z.ZodString>;
3567
+ number: z.ZodOptional<z.ZodString>;
3568
+ zipCode: z.ZodOptional<z.ZodString>;
3577
3569
  }>, "strip", z.ZodTypeAny, {
3578
3570
  country: string;
3579
3571
  district: string;
3580
3572
  province: string;
3581
3573
  urbanOrRural: "URBAN";
3582
- number?: string | null | undefined;
3583
- town?: string | null | undefined;
3584
- residentialArea?: string | null | undefined;
3585
- street?: string | null | undefined;
3586
- zipCode?: string | null | undefined;
3574
+ number?: string | undefined;
3575
+ town?: string | undefined;
3576
+ residentialArea?: string | undefined;
3577
+ street?: string | undefined;
3578
+ zipCode?: string | undefined;
3587
3579
  }, {
3588
3580
  country: string;
3589
3581
  district: string;
3590
3582
  province: string;
3591
3583
  urbanOrRural: "URBAN";
3592
- number?: string | null | undefined;
3593
- town?: string | null | undefined;
3594
- residentialArea?: string | null | undefined;
3595
- street?: string | null | undefined;
3596
- zipCode?: string | null | undefined;
3584
+ number?: string | undefined;
3585
+ town?: string | undefined;
3586
+ residentialArea?: string | undefined;
3587
+ street?: string | undefined;
3588
+ zipCode?: string | undefined;
3597
3589
  }>, z.ZodObject<z.objectUtil.extendShape<{
3598
3590
  country: z.ZodString;
3599
3591
  province: z.ZodString;
3600
3592
  district: z.ZodString;
3601
3593
  }, {
3602
3594
  urbanOrRural: z.ZodLiteral<"RURAL">;
3603
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3595
+ village: z.ZodOptional<z.ZodString>;
3604
3596
  }>, "strip", z.ZodTypeAny, {
3605
3597
  country: string;
3606
3598
  district: string;
3607
3599
  province: string;
3608
3600
  urbanOrRural: "RURAL";
3609
- village?: string | null | undefined;
3601
+ village?: string | undefined;
3610
3602
  }, {
3611
3603
  country: string;
3612
3604
  district: string;
3613
3605
  province: string;
3614
3606
  urbanOrRural: "RURAL";
3615
- village?: string | null | undefined;
3607
+ village?: string | undefined;
3616
3608
  }>]>>>;
3617
3609
  createdAtLocation: z.ZodString;
3618
3610
  }, {
@@ -3630,17 +3622,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3630
3622
  district: string;
3631
3623
  province: string;
3632
3624
  urbanOrRural: "URBAN";
3633
- number?: string | null | undefined;
3634
- town?: string | null | undefined;
3635
- residentialArea?: string | null | undefined;
3636
- street?: string | null | undefined;
3637
- zipCode?: string | null | undefined;
3625
+ number?: string | undefined;
3626
+ town?: string | undefined;
3627
+ residentialArea?: string | undefined;
3628
+ street?: string | undefined;
3629
+ zipCode?: string | undefined;
3638
3630
  } | {
3639
3631
  country: string;
3640
3632
  district: string;
3641
3633
  province: string;
3642
3634
  urbanOrRural: "RURAL";
3643
- village?: string | null | undefined;
3635
+ village?: string | undefined;
3644
3636
  } | {
3645
3637
  type: string;
3646
3638
  option: string;
@@ -3660,17 +3652,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3660
3652
  district: string;
3661
3653
  province: string;
3662
3654
  urbanOrRural: "URBAN";
3663
- number?: string | null | undefined;
3664
- town?: string | null | undefined;
3665
- residentialArea?: string | null | undefined;
3666
- street?: string | null | undefined;
3667
- zipCode?: string | null | undefined;
3655
+ number?: string | undefined;
3656
+ town?: string | undefined;
3657
+ residentialArea?: string | undefined;
3658
+ street?: string | undefined;
3659
+ zipCode?: string | undefined;
3668
3660
  } | {
3669
3661
  country: string;
3670
3662
  district: string;
3671
3663
  province: string;
3672
3664
  urbanOrRural: "RURAL";
3673
- village?: string | null | undefined;
3665
+ village?: string | undefined;
3674
3666
  } | {
3675
3667
  type: string;
3676
3668
  option: string;
@@ -3689,17 +3681,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3689
3681
  district: string;
3690
3682
  province: string;
3691
3683
  urbanOrRural: "URBAN";
3692
- number?: string | null | undefined;
3693
- town?: string | null | undefined;
3694
- residentialArea?: string | null | undefined;
3695
- street?: string | null | undefined;
3696
- zipCode?: string | null | undefined;
3684
+ number?: string | undefined;
3685
+ town?: string | undefined;
3686
+ residentialArea?: string | undefined;
3687
+ street?: string | undefined;
3688
+ zipCode?: string | undefined;
3697
3689
  } | {
3698
3690
  country: string;
3699
3691
  district: string;
3700
3692
  province: string;
3701
3693
  urbanOrRural: "RURAL";
3702
- village?: string | null | undefined;
3694
+ village?: string | undefined;
3703
3695
  } | {
3704
3696
  type: string;
3705
3697
  option: string;
@@ -3719,17 +3711,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3719
3711
  district: string;
3720
3712
  province: string;
3721
3713
  urbanOrRural: "URBAN";
3722
- number?: string | null | undefined;
3723
- town?: string | null | undefined;
3724
- residentialArea?: string | null | undefined;
3725
- street?: string | null | undefined;
3726
- zipCode?: string | null | undefined;
3714
+ number?: string | undefined;
3715
+ town?: string | undefined;
3716
+ residentialArea?: string | undefined;
3717
+ street?: string | undefined;
3718
+ zipCode?: string | undefined;
3727
3719
  } | {
3728
3720
  country: string;
3729
3721
  district: string;
3730
3722
  province: string;
3731
3723
  urbanOrRural: "RURAL";
3732
- village?: string | null | undefined;
3724
+ village?: string | undefined;
3733
3725
  } | {
3734
3726
  type: string;
3735
3727
  option: string;
@@ -3740,7 +3732,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3740
3732
  id: z.ZodString;
3741
3733
  createdAt: z.ZodString;
3742
3734
  createdBy: z.ZodString;
3743
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3735
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3744
3736
  filename: z.ZodString;
3745
3737
  originalFilename: z.ZodString;
3746
3738
  type: z.ZodString;
@@ -3767,58 +3759,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3767
3759
  option: string;
3768
3760
  filename: string;
3769
3761
  originalFilename: string;
3770
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3762
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3771
3763
  country: z.ZodString;
3772
3764
  province: z.ZodString;
3773
3765
  district: z.ZodString;
3774
3766
  }, {
3775
3767
  urbanOrRural: z.ZodLiteral<"URBAN">;
3776
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3777
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3778
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3779
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3780
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3768
+ town: z.ZodOptional<z.ZodString>;
3769
+ residentialArea: z.ZodOptional<z.ZodString>;
3770
+ street: z.ZodOptional<z.ZodString>;
3771
+ number: z.ZodOptional<z.ZodString>;
3772
+ zipCode: z.ZodOptional<z.ZodString>;
3781
3773
  }>, "strip", z.ZodTypeAny, {
3782
3774
  country: string;
3783
3775
  district: string;
3784
3776
  province: string;
3785
3777
  urbanOrRural: "URBAN";
3786
- number?: string | null | undefined;
3787
- town?: string | null | undefined;
3788
- residentialArea?: string | null | undefined;
3789
- street?: string | null | undefined;
3790
- zipCode?: string | null | undefined;
3778
+ number?: string | undefined;
3779
+ town?: string | undefined;
3780
+ residentialArea?: string | undefined;
3781
+ street?: string | undefined;
3782
+ zipCode?: string | undefined;
3791
3783
  }, {
3792
3784
  country: string;
3793
3785
  district: string;
3794
3786
  province: string;
3795
3787
  urbanOrRural: "URBAN";
3796
- number?: string | null | undefined;
3797
- town?: string | null | undefined;
3798
- residentialArea?: string | null | undefined;
3799
- street?: string | null | undefined;
3800
- zipCode?: string | null | undefined;
3788
+ number?: string | undefined;
3789
+ town?: string | undefined;
3790
+ residentialArea?: string | undefined;
3791
+ street?: string | undefined;
3792
+ zipCode?: string | undefined;
3801
3793
  }>, z.ZodObject<z.objectUtil.extendShape<{
3802
3794
  country: z.ZodString;
3803
3795
  province: z.ZodString;
3804
3796
  district: z.ZodString;
3805
3797
  }, {
3806
3798
  urbanOrRural: z.ZodLiteral<"RURAL">;
3807
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3799
+ village: z.ZodOptional<z.ZodString>;
3808
3800
  }>, "strip", z.ZodTypeAny, {
3809
3801
  country: string;
3810
3802
  district: string;
3811
3803
  province: string;
3812
3804
  urbanOrRural: "RURAL";
3813
- village?: string | null | undefined;
3805
+ village?: string | undefined;
3814
3806
  }, {
3815
3807
  country: string;
3816
3808
  district: string;
3817
3809
  province: string;
3818
3810
  urbanOrRural: "RURAL";
3819
- village?: string | null | undefined;
3811
+ village?: string | undefined;
3820
3812
  }>]>>;
3821
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
3813
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
3822
3814
  filename: z.ZodString;
3823
3815
  originalFilename: z.ZodString;
3824
3816
  type: z.ZodString;
@@ -3845,56 +3837,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3845
3837
  option: string;
3846
3838
  filename: string;
3847
3839
  originalFilename: string;
3848
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
3840
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
3849
3841
  country: z.ZodString;
3850
3842
  province: z.ZodString;
3851
3843
  district: z.ZodString;
3852
3844
  }, {
3853
3845
  urbanOrRural: z.ZodLiteral<"URBAN">;
3854
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3855
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3856
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3857
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3858
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3846
+ town: z.ZodOptional<z.ZodString>;
3847
+ residentialArea: z.ZodOptional<z.ZodString>;
3848
+ street: z.ZodOptional<z.ZodString>;
3849
+ number: z.ZodOptional<z.ZodString>;
3850
+ zipCode: z.ZodOptional<z.ZodString>;
3859
3851
  }>, "strip", z.ZodTypeAny, {
3860
3852
  country: string;
3861
3853
  district: string;
3862
3854
  province: string;
3863
3855
  urbanOrRural: "URBAN";
3864
- number?: string | null | undefined;
3865
- town?: string | null | undefined;
3866
- residentialArea?: string | null | undefined;
3867
- street?: string | null | undefined;
3868
- zipCode?: string | null | undefined;
3856
+ number?: string | undefined;
3857
+ town?: string | undefined;
3858
+ residentialArea?: string | undefined;
3859
+ street?: string | undefined;
3860
+ zipCode?: string | undefined;
3869
3861
  }, {
3870
3862
  country: string;
3871
3863
  district: string;
3872
3864
  province: string;
3873
3865
  urbanOrRural: "URBAN";
3874
- number?: string | null | undefined;
3875
- town?: string | null | undefined;
3876
- residentialArea?: string | null | undefined;
3877
- street?: string | null | undefined;
3878
- zipCode?: string | null | undefined;
3866
+ number?: string | undefined;
3867
+ town?: string | undefined;
3868
+ residentialArea?: string | undefined;
3869
+ street?: string | undefined;
3870
+ zipCode?: string | undefined;
3879
3871
  }>, z.ZodObject<z.objectUtil.extendShape<{
3880
3872
  country: z.ZodString;
3881
3873
  province: z.ZodString;
3882
3874
  district: z.ZodString;
3883
3875
  }, {
3884
3876
  urbanOrRural: z.ZodLiteral<"RURAL">;
3885
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3877
+ village: z.ZodOptional<z.ZodString>;
3886
3878
  }>, "strip", z.ZodTypeAny, {
3887
3879
  country: string;
3888
3880
  district: string;
3889
3881
  province: string;
3890
3882
  urbanOrRural: "RURAL";
3891
- village?: string | null | undefined;
3883
+ village?: string | undefined;
3892
3884
  }, {
3893
3885
  country: string;
3894
3886
  district: string;
3895
3887
  province: string;
3896
3888
  urbanOrRural: "RURAL";
3897
- village?: string | null | undefined;
3889
+ village?: string | undefined;
3898
3890
  }>]>>>;
3899
3891
  createdAtLocation: z.ZodString;
3900
3892
  }, {
@@ -3912,17 +3904,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3912
3904
  district: string;
3913
3905
  province: string;
3914
3906
  urbanOrRural: "URBAN";
3915
- number?: string | null | undefined;
3916
- town?: string | null | undefined;
3917
- residentialArea?: string | null | undefined;
3918
- street?: string | null | undefined;
3919
- zipCode?: string | null | undefined;
3907
+ number?: string | undefined;
3908
+ town?: string | undefined;
3909
+ residentialArea?: string | undefined;
3910
+ street?: string | undefined;
3911
+ zipCode?: string | undefined;
3920
3912
  } | {
3921
3913
  country: string;
3922
3914
  district: string;
3923
3915
  province: string;
3924
3916
  urbanOrRural: "RURAL";
3925
- village?: string | null | undefined;
3917
+ village?: string | undefined;
3926
3918
  } | {
3927
3919
  type: string;
3928
3920
  option: string;
@@ -3942,17 +3934,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3942
3934
  district: string;
3943
3935
  province: string;
3944
3936
  urbanOrRural: "URBAN";
3945
- number?: string | null | undefined;
3946
- town?: string | null | undefined;
3947
- residentialArea?: string | null | undefined;
3948
- street?: string | null | undefined;
3949
- zipCode?: string | null | undefined;
3937
+ number?: string | undefined;
3938
+ town?: string | undefined;
3939
+ residentialArea?: string | undefined;
3940
+ street?: string | undefined;
3941
+ zipCode?: string | undefined;
3950
3942
  } | {
3951
3943
  country: string;
3952
3944
  district: string;
3953
3945
  province: string;
3954
3946
  urbanOrRural: "RURAL";
3955
- village?: string | null | undefined;
3947
+ village?: string | undefined;
3956
3948
  } | {
3957
3949
  type: string;
3958
3950
  option: string;
@@ -3971,17 +3963,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3971
3963
  district: string;
3972
3964
  province: string;
3973
3965
  urbanOrRural: "URBAN";
3974
- number?: string | null | undefined;
3975
- town?: string | null | undefined;
3976
- residentialArea?: string | null | undefined;
3977
- street?: string | null | undefined;
3978
- zipCode?: string | null | undefined;
3966
+ number?: string | undefined;
3967
+ town?: string | undefined;
3968
+ residentialArea?: string | undefined;
3969
+ street?: string | undefined;
3970
+ zipCode?: string | undefined;
3979
3971
  } | {
3980
3972
  country: string;
3981
3973
  district: string;
3982
3974
  province: string;
3983
3975
  urbanOrRural: "RURAL";
3984
- village?: string | null | undefined;
3976
+ village?: string | undefined;
3985
3977
  } | {
3986
3978
  type: string;
3987
3979
  option: string;
@@ -4001,17 +3993,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4001
3993
  district: string;
4002
3994
  province: string;
4003
3995
  urbanOrRural: "URBAN";
4004
- number?: string | null | undefined;
4005
- town?: string | null | undefined;
4006
- residentialArea?: string | null | undefined;
4007
- street?: string | null | undefined;
4008
- zipCode?: string | null | undefined;
3996
+ number?: string | undefined;
3997
+ town?: string | undefined;
3998
+ residentialArea?: string | undefined;
3999
+ street?: string | undefined;
4000
+ zipCode?: string | undefined;
4009
4001
  } | {
4010
4002
  country: string;
4011
4003
  district: string;
4012
4004
  province: string;
4013
4005
  urbanOrRural: "RURAL";
4014
- village?: string | null | undefined;
4006
+ village?: string | undefined;
4015
4007
  } | {
4016
4008
  type: string;
4017
4009
  option: string;
@@ -4022,7 +4014,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4022
4014
  id: z.ZodString;
4023
4015
  createdAt: z.ZodString;
4024
4016
  createdBy: z.ZodString;
4025
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4017
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4026
4018
  filename: z.ZodString;
4027
4019
  originalFilename: z.ZodString;
4028
4020
  type: z.ZodString;
@@ -4049,58 +4041,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4049
4041
  option: string;
4050
4042
  filename: string;
4051
4043
  originalFilename: string;
4052
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4044
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4053
4045
  country: z.ZodString;
4054
4046
  province: z.ZodString;
4055
4047
  district: z.ZodString;
4056
4048
  }, {
4057
4049
  urbanOrRural: z.ZodLiteral<"URBAN">;
4058
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4059
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4060
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4061
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4062
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4050
+ town: z.ZodOptional<z.ZodString>;
4051
+ residentialArea: z.ZodOptional<z.ZodString>;
4052
+ street: z.ZodOptional<z.ZodString>;
4053
+ number: z.ZodOptional<z.ZodString>;
4054
+ zipCode: z.ZodOptional<z.ZodString>;
4063
4055
  }>, "strip", z.ZodTypeAny, {
4064
4056
  country: string;
4065
4057
  district: string;
4066
4058
  province: string;
4067
4059
  urbanOrRural: "URBAN";
4068
- number?: string | null | undefined;
4069
- town?: string | null | undefined;
4070
- residentialArea?: string | null | undefined;
4071
- street?: string | null | undefined;
4072
- zipCode?: string | null | undefined;
4060
+ number?: string | undefined;
4061
+ town?: string | undefined;
4062
+ residentialArea?: string | undefined;
4063
+ street?: string | undefined;
4064
+ zipCode?: string | undefined;
4073
4065
  }, {
4074
4066
  country: string;
4075
4067
  district: string;
4076
4068
  province: string;
4077
4069
  urbanOrRural: "URBAN";
4078
- number?: string | null | undefined;
4079
- town?: string | null | undefined;
4080
- residentialArea?: string | null | undefined;
4081
- street?: string | null | undefined;
4082
- zipCode?: string | null | undefined;
4070
+ number?: string | undefined;
4071
+ town?: string | undefined;
4072
+ residentialArea?: string | undefined;
4073
+ street?: string | undefined;
4074
+ zipCode?: string | undefined;
4083
4075
  }>, z.ZodObject<z.objectUtil.extendShape<{
4084
4076
  country: z.ZodString;
4085
4077
  province: z.ZodString;
4086
4078
  district: z.ZodString;
4087
4079
  }, {
4088
4080
  urbanOrRural: z.ZodLiteral<"RURAL">;
4089
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4081
+ village: z.ZodOptional<z.ZodString>;
4090
4082
  }>, "strip", z.ZodTypeAny, {
4091
4083
  country: string;
4092
4084
  district: string;
4093
4085
  province: string;
4094
4086
  urbanOrRural: "RURAL";
4095
- village?: string | null | undefined;
4087
+ village?: string | undefined;
4096
4088
  }, {
4097
4089
  country: string;
4098
4090
  district: string;
4099
4091
  province: string;
4100
4092
  urbanOrRural: "RURAL";
4101
- village?: string | null | undefined;
4093
+ village?: string | undefined;
4102
4094
  }>]>>;
4103
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4095
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4104
4096
  filename: z.ZodString;
4105
4097
  originalFilename: z.ZodString;
4106
4098
  type: z.ZodString;
@@ -4127,56 +4119,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4127
4119
  option: string;
4128
4120
  filename: string;
4129
4121
  originalFilename: string;
4130
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4122
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4131
4123
  country: z.ZodString;
4132
4124
  province: z.ZodString;
4133
4125
  district: z.ZodString;
4134
4126
  }, {
4135
4127
  urbanOrRural: z.ZodLiteral<"URBAN">;
4136
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4137
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4138
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4139
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4140
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4128
+ town: z.ZodOptional<z.ZodString>;
4129
+ residentialArea: z.ZodOptional<z.ZodString>;
4130
+ street: z.ZodOptional<z.ZodString>;
4131
+ number: z.ZodOptional<z.ZodString>;
4132
+ zipCode: z.ZodOptional<z.ZodString>;
4141
4133
  }>, "strip", z.ZodTypeAny, {
4142
4134
  country: string;
4143
4135
  district: string;
4144
4136
  province: string;
4145
4137
  urbanOrRural: "URBAN";
4146
- number?: string | null | undefined;
4147
- town?: string | null | undefined;
4148
- residentialArea?: string | null | undefined;
4149
- street?: string | null | undefined;
4150
- zipCode?: string | null | undefined;
4138
+ number?: string | undefined;
4139
+ town?: string | undefined;
4140
+ residentialArea?: string | undefined;
4141
+ street?: string | undefined;
4142
+ zipCode?: string | undefined;
4151
4143
  }, {
4152
4144
  country: string;
4153
4145
  district: string;
4154
4146
  province: string;
4155
4147
  urbanOrRural: "URBAN";
4156
- number?: string | null | undefined;
4157
- town?: string | null | undefined;
4158
- residentialArea?: string | null | undefined;
4159
- street?: string | null | undefined;
4160
- zipCode?: string | null | undefined;
4148
+ number?: string | undefined;
4149
+ town?: string | undefined;
4150
+ residentialArea?: string | undefined;
4151
+ street?: string | undefined;
4152
+ zipCode?: string | undefined;
4161
4153
  }>, z.ZodObject<z.objectUtil.extendShape<{
4162
4154
  country: z.ZodString;
4163
4155
  province: z.ZodString;
4164
4156
  district: z.ZodString;
4165
4157
  }, {
4166
4158
  urbanOrRural: z.ZodLiteral<"RURAL">;
4167
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4159
+ village: z.ZodOptional<z.ZodString>;
4168
4160
  }>, "strip", z.ZodTypeAny, {
4169
4161
  country: string;
4170
4162
  district: string;
4171
4163
  province: string;
4172
4164
  urbanOrRural: "RURAL";
4173
- village?: string | null | undefined;
4165
+ village?: string | undefined;
4174
4166
  }, {
4175
4167
  country: string;
4176
4168
  district: string;
4177
4169
  province: string;
4178
4170
  urbanOrRural: "RURAL";
4179
- village?: string | null | undefined;
4171
+ village?: string | undefined;
4180
4172
  }>]>>>;
4181
4173
  createdAtLocation: z.ZodString;
4182
4174
  }, {
@@ -4193,17 +4185,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4193
4185
  district: string;
4194
4186
  province: string;
4195
4187
  urbanOrRural: "URBAN";
4196
- number?: string | null | undefined;
4197
- town?: string | null | undefined;
4198
- residentialArea?: string | null | undefined;
4199
- street?: string | null | undefined;
4200
- zipCode?: string | null | undefined;
4188
+ number?: string | undefined;
4189
+ town?: string | undefined;
4190
+ residentialArea?: string | undefined;
4191
+ street?: string | undefined;
4192
+ zipCode?: string | undefined;
4201
4193
  } | {
4202
4194
  country: string;
4203
4195
  district: string;
4204
4196
  province: string;
4205
4197
  urbanOrRural: "RURAL";
4206
- village?: string | null | undefined;
4198
+ village?: string | undefined;
4207
4199
  } | {
4208
4200
  type: string;
4209
4201
  option: string;
@@ -4222,17 +4214,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4222
4214
  district: string;
4223
4215
  province: string;
4224
4216
  urbanOrRural: "URBAN";
4225
- number?: string | null | undefined;
4226
- town?: string | null | undefined;
4227
- residentialArea?: string | null | undefined;
4228
- street?: string | null | undefined;
4229
- zipCode?: string | null | undefined;
4217
+ number?: string | undefined;
4218
+ town?: string | undefined;
4219
+ residentialArea?: string | undefined;
4220
+ street?: string | undefined;
4221
+ zipCode?: string | undefined;
4230
4222
  } | {
4231
4223
  country: string;
4232
4224
  district: string;
4233
4225
  province: string;
4234
4226
  urbanOrRural: "RURAL";
4235
- village?: string | null | undefined;
4227
+ village?: string | undefined;
4236
4228
  } | {
4237
4229
  type: string;
4238
4230
  option: string;
@@ -4251,17 +4243,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4251
4243
  district: string;
4252
4244
  province: string;
4253
4245
  urbanOrRural: "URBAN";
4254
- number?: string | null | undefined;
4255
- town?: string | null | undefined;
4256
- residentialArea?: string | null | undefined;
4257
- street?: string | null | undefined;
4258
- zipCode?: string | null | undefined;
4246
+ number?: string | undefined;
4247
+ town?: string | undefined;
4248
+ residentialArea?: string | undefined;
4249
+ street?: string | undefined;
4250
+ zipCode?: string | undefined;
4259
4251
  } | {
4260
4252
  country: string;
4261
4253
  district: string;
4262
4254
  province: string;
4263
4255
  urbanOrRural: "RURAL";
4264
- village?: string | null | undefined;
4256
+ village?: string | undefined;
4265
4257
  } | {
4266
4258
  type: string;
4267
4259
  option: string;
@@ -4280,17 +4272,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4280
4272
  district: string;
4281
4273
  province: string;
4282
4274
  urbanOrRural: "URBAN";
4283
- number?: string | null | undefined;
4284
- town?: string | null | undefined;
4285
- residentialArea?: string | null | undefined;
4286
- street?: string | null | undefined;
4287
- zipCode?: string | null | undefined;
4275
+ number?: string | undefined;
4276
+ town?: string | undefined;
4277
+ residentialArea?: string | undefined;
4278
+ street?: string | undefined;
4279
+ zipCode?: string | undefined;
4288
4280
  } | {
4289
4281
  country: string;
4290
4282
  district: string;
4291
4283
  province: string;
4292
4284
  urbanOrRural: "RURAL";
4293
- village?: string | null | undefined;
4285
+ village?: string | undefined;
4294
4286
  } | {
4295
4287
  type: string;
4296
4288
  option: string;
@@ -4301,7 +4293,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4301
4293
  id: z.ZodString;
4302
4294
  createdAt: z.ZodString;
4303
4295
  createdBy: z.ZodString;
4304
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4296
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4305
4297
  filename: z.ZodString;
4306
4298
  originalFilename: z.ZodString;
4307
4299
  type: z.ZodString;
@@ -4328,58 +4320,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4328
4320
  option: string;
4329
4321
  filename: string;
4330
4322
  originalFilename: string;
4331
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4323
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4332
4324
  country: z.ZodString;
4333
4325
  province: z.ZodString;
4334
4326
  district: z.ZodString;
4335
4327
  }, {
4336
4328
  urbanOrRural: z.ZodLiteral<"URBAN">;
4337
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4338
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4339
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4340
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4341
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4329
+ town: z.ZodOptional<z.ZodString>;
4330
+ residentialArea: z.ZodOptional<z.ZodString>;
4331
+ street: z.ZodOptional<z.ZodString>;
4332
+ number: z.ZodOptional<z.ZodString>;
4333
+ zipCode: z.ZodOptional<z.ZodString>;
4342
4334
  }>, "strip", z.ZodTypeAny, {
4343
4335
  country: string;
4344
4336
  district: string;
4345
4337
  province: string;
4346
4338
  urbanOrRural: "URBAN";
4347
- number?: string | null | undefined;
4348
- town?: string | null | undefined;
4349
- residentialArea?: string | null | undefined;
4350
- street?: string | null | undefined;
4351
- zipCode?: string | null | undefined;
4339
+ number?: string | undefined;
4340
+ town?: string | undefined;
4341
+ residentialArea?: string | undefined;
4342
+ street?: string | undefined;
4343
+ zipCode?: string | undefined;
4352
4344
  }, {
4353
4345
  country: string;
4354
4346
  district: string;
4355
4347
  province: string;
4356
4348
  urbanOrRural: "URBAN";
4357
- number?: string | null | undefined;
4358
- town?: string | null | undefined;
4359
- residentialArea?: string | null | undefined;
4360
- street?: string | null | undefined;
4361
- zipCode?: string | null | undefined;
4349
+ number?: string | undefined;
4350
+ town?: string | undefined;
4351
+ residentialArea?: string | undefined;
4352
+ street?: string | undefined;
4353
+ zipCode?: string | undefined;
4362
4354
  }>, z.ZodObject<z.objectUtil.extendShape<{
4363
4355
  country: z.ZodString;
4364
4356
  province: z.ZodString;
4365
4357
  district: z.ZodString;
4366
4358
  }, {
4367
4359
  urbanOrRural: z.ZodLiteral<"RURAL">;
4368
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4360
+ village: z.ZodOptional<z.ZodString>;
4369
4361
  }>, "strip", z.ZodTypeAny, {
4370
4362
  country: string;
4371
4363
  district: string;
4372
4364
  province: string;
4373
4365
  urbanOrRural: "RURAL";
4374
- village?: string | null | undefined;
4366
+ village?: string | undefined;
4375
4367
  }, {
4376
4368
  country: string;
4377
4369
  district: string;
4378
4370
  province: string;
4379
4371
  urbanOrRural: "RURAL";
4380
- village?: string | null | undefined;
4372
+ village?: string | undefined;
4381
4373
  }>]>>;
4382
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4374
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4383
4375
  filename: z.ZodString;
4384
4376
  originalFilename: z.ZodString;
4385
4377
  type: z.ZodString;
@@ -4406,56 +4398,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4406
4398
  option: string;
4407
4399
  filename: string;
4408
4400
  originalFilename: string;
4409
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4401
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4410
4402
  country: z.ZodString;
4411
4403
  province: z.ZodString;
4412
4404
  district: z.ZodString;
4413
4405
  }, {
4414
4406
  urbanOrRural: z.ZodLiteral<"URBAN">;
4415
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4416
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4417
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4418
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4419
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4407
+ town: z.ZodOptional<z.ZodString>;
4408
+ residentialArea: z.ZodOptional<z.ZodString>;
4409
+ street: z.ZodOptional<z.ZodString>;
4410
+ number: z.ZodOptional<z.ZodString>;
4411
+ zipCode: z.ZodOptional<z.ZodString>;
4420
4412
  }>, "strip", z.ZodTypeAny, {
4421
4413
  country: string;
4422
4414
  district: string;
4423
4415
  province: string;
4424
4416
  urbanOrRural: "URBAN";
4425
- number?: string | null | undefined;
4426
- town?: string | null | undefined;
4427
- residentialArea?: string | null | undefined;
4428
- street?: string | null | undefined;
4429
- zipCode?: string | null | undefined;
4417
+ number?: string | undefined;
4418
+ town?: string | undefined;
4419
+ residentialArea?: string | undefined;
4420
+ street?: string | undefined;
4421
+ zipCode?: string | undefined;
4430
4422
  }, {
4431
4423
  country: string;
4432
4424
  district: string;
4433
4425
  province: string;
4434
4426
  urbanOrRural: "URBAN";
4435
- number?: string | null | undefined;
4436
- town?: string | null | undefined;
4437
- residentialArea?: string | null | undefined;
4438
- street?: string | null | undefined;
4439
- zipCode?: string | null | undefined;
4427
+ number?: string | undefined;
4428
+ town?: string | undefined;
4429
+ residentialArea?: string | undefined;
4430
+ street?: string | undefined;
4431
+ zipCode?: string | undefined;
4440
4432
  }>, z.ZodObject<z.objectUtil.extendShape<{
4441
4433
  country: z.ZodString;
4442
4434
  province: z.ZodString;
4443
4435
  district: z.ZodString;
4444
4436
  }, {
4445
4437
  urbanOrRural: z.ZodLiteral<"RURAL">;
4446
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4438
+ village: z.ZodOptional<z.ZodString>;
4447
4439
  }>, "strip", z.ZodTypeAny, {
4448
4440
  country: string;
4449
4441
  district: string;
4450
4442
  province: string;
4451
4443
  urbanOrRural: "RURAL";
4452
- village?: string | null | undefined;
4444
+ village?: string | undefined;
4453
4445
  }, {
4454
4446
  country: string;
4455
4447
  district: string;
4456
4448
  province: string;
4457
4449
  urbanOrRural: "RURAL";
4458
- village?: string | null | undefined;
4450
+ village?: string | undefined;
4459
4451
  }>]>>>;
4460
4452
  createdAtLocation: z.ZodString;
4461
4453
  }, {
@@ -4472,17 +4464,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4472
4464
  district: string;
4473
4465
  province: string;
4474
4466
  urbanOrRural: "URBAN";
4475
- number?: string | null | undefined;
4476
- town?: string | null | undefined;
4477
- residentialArea?: string | null | undefined;
4478
- street?: string | null | undefined;
4479
- zipCode?: string | null | undefined;
4467
+ number?: string | undefined;
4468
+ town?: string | undefined;
4469
+ residentialArea?: string | undefined;
4470
+ street?: string | undefined;
4471
+ zipCode?: string | undefined;
4480
4472
  } | {
4481
4473
  country: string;
4482
4474
  district: string;
4483
4475
  province: string;
4484
4476
  urbanOrRural: "RURAL";
4485
- village?: string | null | undefined;
4477
+ village?: string | undefined;
4486
4478
  } | {
4487
4479
  type: string;
4488
4480
  option: string;
@@ -4501,17 +4493,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4501
4493
  district: string;
4502
4494
  province: string;
4503
4495
  urbanOrRural: "URBAN";
4504
- number?: string | null | undefined;
4505
- town?: string | null | undefined;
4506
- residentialArea?: string | null | undefined;
4507
- street?: string | null | undefined;
4508
- zipCode?: string | null | undefined;
4496
+ number?: string | undefined;
4497
+ town?: string | undefined;
4498
+ residentialArea?: string | undefined;
4499
+ street?: string | undefined;
4500
+ zipCode?: string | undefined;
4509
4501
  } | {
4510
4502
  country: string;
4511
4503
  district: string;
4512
4504
  province: string;
4513
4505
  urbanOrRural: "RURAL";
4514
- village?: string | null | undefined;
4506
+ village?: string | undefined;
4515
4507
  } | {
4516
4508
  type: string;
4517
4509
  option: string;
@@ -4530,17 +4522,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4530
4522
  district: string;
4531
4523
  province: string;
4532
4524
  urbanOrRural: "URBAN";
4533
- number?: string | null | undefined;
4534
- town?: string | null | undefined;
4535
- residentialArea?: string | null | undefined;
4536
- street?: string | null | undefined;
4537
- zipCode?: string | null | undefined;
4525
+ number?: string | undefined;
4526
+ town?: string | undefined;
4527
+ residentialArea?: string | undefined;
4528
+ street?: string | undefined;
4529
+ zipCode?: string | undefined;
4538
4530
  } | {
4539
4531
  country: string;
4540
4532
  district: string;
4541
4533
  province: string;
4542
4534
  urbanOrRural: "RURAL";
4543
- village?: string | null | undefined;
4535
+ village?: string | undefined;
4544
4536
  } | {
4545
4537
  type: string;
4546
4538
  option: string;
@@ -4559,17 +4551,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4559
4551
  district: string;
4560
4552
  province: string;
4561
4553
  urbanOrRural: "URBAN";
4562
- number?: string | null | undefined;
4563
- town?: string | null | undefined;
4564
- residentialArea?: string | null | undefined;
4565
- street?: string | null | undefined;
4566
- zipCode?: string | null | undefined;
4554
+ number?: string | undefined;
4555
+ town?: string | undefined;
4556
+ residentialArea?: string | undefined;
4557
+ street?: string | undefined;
4558
+ zipCode?: string | undefined;
4567
4559
  } | {
4568
4560
  country: string;
4569
4561
  district: string;
4570
4562
  province: string;
4571
4563
  urbanOrRural: "RURAL";
4572
- village?: string | null | undefined;
4564
+ village?: string | undefined;
4573
4565
  } | {
4574
4566
  type: string;
4575
4567
  option: string;
@@ -4580,7 +4572,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4580
4572
  id: z.ZodString;
4581
4573
  createdAt: z.ZodString;
4582
4574
  createdBy: z.ZodString;
4583
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4575
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4584
4576
  filename: z.ZodString;
4585
4577
  originalFilename: z.ZodString;
4586
4578
  type: z.ZodString;
@@ -4607,58 +4599,58 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4607
4599
  option: string;
4608
4600
  filename: string;
4609
4601
  originalFilename: string;
4610
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4602
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4611
4603
  country: z.ZodString;
4612
4604
  province: z.ZodString;
4613
4605
  district: z.ZodString;
4614
4606
  }, {
4615
4607
  urbanOrRural: z.ZodLiteral<"URBAN">;
4616
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4617
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4618
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4619
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4620
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4608
+ town: z.ZodOptional<z.ZodString>;
4609
+ residentialArea: z.ZodOptional<z.ZodString>;
4610
+ street: z.ZodOptional<z.ZodString>;
4611
+ number: z.ZodOptional<z.ZodString>;
4612
+ zipCode: z.ZodOptional<z.ZodString>;
4621
4613
  }>, "strip", z.ZodTypeAny, {
4622
4614
  country: string;
4623
4615
  district: string;
4624
4616
  province: string;
4625
4617
  urbanOrRural: "URBAN";
4626
- number?: string | null | undefined;
4627
- town?: string | null | undefined;
4628
- residentialArea?: string | null | undefined;
4629
- street?: string | null | undefined;
4630
- zipCode?: string | null | undefined;
4618
+ number?: string | undefined;
4619
+ town?: string | undefined;
4620
+ residentialArea?: string | undefined;
4621
+ street?: string | undefined;
4622
+ zipCode?: string | undefined;
4631
4623
  }, {
4632
4624
  country: string;
4633
4625
  district: string;
4634
4626
  province: string;
4635
4627
  urbanOrRural: "URBAN";
4636
- number?: string | null | undefined;
4637
- town?: string | null | undefined;
4638
- residentialArea?: string | null | undefined;
4639
- street?: string | null | undefined;
4640
- zipCode?: string | null | undefined;
4628
+ number?: string | undefined;
4629
+ town?: string | undefined;
4630
+ residentialArea?: string | undefined;
4631
+ street?: string | undefined;
4632
+ zipCode?: string | undefined;
4641
4633
  }>, z.ZodObject<z.objectUtil.extendShape<{
4642
4634
  country: z.ZodString;
4643
4635
  province: z.ZodString;
4644
4636
  district: z.ZodString;
4645
4637
  }, {
4646
4638
  urbanOrRural: z.ZodLiteral<"RURAL">;
4647
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4639
+ village: z.ZodOptional<z.ZodString>;
4648
4640
  }>, "strip", z.ZodTypeAny, {
4649
4641
  country: string;
4650
4642
  district: string;
4651
4643
  province: string;
4652
4644
  urbanOrRural: "RURAL";
4653
- village?: string | null | undefined;
4645
+ village?: string | undefined;
4654
4646
  }, {
4655
4647
  country: string;
4656
4648
  district: string;
4657
4649
  province: string;
4658
4650
  urbanOrRural: "RURAL";
4659
- village?: string | null | undefined;
4651
+ village?: string | undefined;
4660
4652
  }>]>>;
4661
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
4653
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
4662
4654
  filename: z.ZodString;
4663
4655
  originalFilename: z.ZodString;
4664
4656
  type: z.ZodString;
@@ -4685,56 +4677,56 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4685
4677
  option: string;
4686
4678
  filename: string;
4687
4679
  originalFilename: string;
4688
- }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
4680
+ }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
4689
4681
  country: z.ZodString;
4690
4682
  province: z.ZodString;
4691
4683
  district: z.ZodString;
4692
4684
  }, {
4693
4685
  urbanOrRural: z.ZodLiteral<"URBAN">;
4694
- town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4695
- residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4696
- street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4697
- number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4698
- zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4686
+ town: z.ZodOptional<z.ZodString>;
4687
+ residentialArea: z.ZodOptional<z.ZodString>;
4688
+ street: z.ZodOptional<z.ZodString>;
4689
+ number: z.ZodOptional<z.ZodString>;
4690
+ zipCode: z.ZodOptional<z.ZodString>;
4699
4691
  }>, "strip", z.ZodTypeAny, {
4700
4692
  country: string;
4701
4693
  district: string;
4702
4694
  province: string;
4703
4695
  urbanOrRural: "URBAN";
4704
- number?: string | null | undefined;
4705
- town?: string | null | undefined;
4706
- residentialArea?: string | null | undefined;
4707
- street?: string | null | undefined;
4708
- zipCode?: string | null | undefined;
4696
+ number?: string | undefined;
4697
+ town?: string | undefined;
4698
+ residentialArea?: string | undefined;
4699
+ street?: string | undefined;
4700
+ zipCode?: string | undefined;
4709
4701
  }, {
4710
4702
  country: string;
4711
4703
  district: string;
4712
4704
  province: string;
4713
4705
  urbanOrRural: "URBAN";
4714
- number?: string | null | undefined;
4715
- town?: string | null | undefined;
4716
- residentialArea?: string | null | undefined;
4717
- street?: string | null | undefined;
4718
- zipCode?: string | null | undefined;
4706
+ number?: string | undefined;
4707
+ town?: string | undefined;
4708
+ residentialArea?: string | undefined;
4709
+ street?: string | undefined;
4710
+ zipCode?: string | undefined;
4719
4711
  }>, z.ZodObject<z.objectUtil.extendShape<{
4720
4712
  country: z.ZodString;
4721
4713
  province: z.ZodString;
4722
4714
  district: z.ZodString;
4723
4715
  }, {
4724
4716
  urbanOrRural: z.ZodLiteral<"RURAL">;
4725
- village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4717
+ village: z.ZodOptional<z.ZodString>;
4726
4718
  }>, "strip", z.ZodTypeAny, {
4727
4719
  country: string;
4728
4720
  district: string;
4729
4721
  province: string;
4730
4722
  urbanOrRural: "RURAL";
4731
- village?: string | null | undefined;
4723
+ village?: string | undefined;
4732
4724
  }, {
4733
4725
  country: string;
4734
4726
  district: string;
4735
4727
  province: string;
4736
4728
  urbanOrRural: "RURAL";
4737
- village?: string | null | undefined;
4729
+ village?: string | undefined;
4738
4730
  }>]>>>;
4739
4731
  createdAtLocation: z.ZodString;
4740
4732
  }, {
@@ -4751,17 +4743,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4751
4743
  district: string;
4752
4744
  province: string;
4753
4745
  urbanOrRural: "URBAN";
4754
- number?: string | null | undefined;
4755
- town?: string | null | undefined;
4756
- residentialArea?: string | null | undefined;
4757
- street?: string | null | undefined;
4758
- zipCode?: string | null | undefined;
4746
+ number?: string | undefined;
4747
+ town?: string | undefined;
4748
+ residentialArea?: string | undefined;
4749
+ street?: string | undefined;
4750
+ zipCode?: string | undefined;
4759
4751
  } | {
4760
4752
  country: string;
4761
4753
  district: string;
4762
4754
  province: string;
4763
4755
  urbanOrRural: "RURAL";
4764
- village?: string | null | undefined;
4756
+ village?: string | undefined;
4765
4757
  } | {
4766
4758
  type: string;
4767
4759
  option: string;
@@ -4780,17 +4772,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4780
4772
  district: string;
4781
4773
  province: string;
4782
4774
  urbanOrRural: "URBAN";
4783
- number?: string | null | undefined;
4784
- town?: string | null | undefined;
4785
- residentialArea?: string | null | undefined;
4786
- street?: string | null | undefined;
4787
- zipCode?: string | null | undefined;
4775
+ number?: string | undefined;
4776
+ town?: string | undefined;
4777
+ residentialArea?: string | undefined;
4778
+ street?: string | undefined;
4779
+ zipCode?: string | undefined;
4788
4780
  } | {
4789
4781
  country: string;
4790
4782
  district: string;
4791
4783
  province: string;
4792
4784
  urbanOrRural: "RURAL";
4793
- village?: string | null | undefined;
4785
+ village?: string | undefined;
4794
4786
  } | {
4795
4787
  type: string;
4796
4788
  option: string;
@@ -4809,17 +4801,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4809
4801
  district: string;
4810
4802
  province: string;
4811
4803
  urbanOrRural: "URBAN";
4812
- number?: string | null | undefined;
4813
- town?: string | null | undefined;
4814
- residentialArea?: string | null | undefined;
4815
- street?: string | null | undefined;
4816
- zipCode?: string | null | undefined;
4804
+ number?: string | undefined;
4805
+ town?: string | undefined;
4806
+ residentialArea?: string | undefined;
4807
+ street?: string | undefined;
4808
+ zipCode?: string | undefined;
4817
4809
  } | {
4818
4810
  country: string;
4819
4811
  district: string;
4820
4812
  province: string;
4821
4813
  urbanOrRural: "RURAL";
4822
- village?: string | null | undefined;
4814
+ village?: string | undefined;
4823
4815
  } | {
4824
4816
  type: string;
4825
4817
  option: string;
@@ -4838,17 +4830,17 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4838
4830
  district: string;
4839
4831
  province: string;
4840
4832
  urbanOrRural: "URBAN";
4841
- number?: string | null | undefined;
4842
- town?: string | null | undefined;
4843
- residentialArea?: string | null | undefined;
4844
- street?: string | null | undefined;
4845
- zipCode?: string | null | undefined;
4833
+ number?: string | undefined;
4834
+ town?: string | undefined;
4835
+ residentialArea?: string | undefined;
4836
+ street?: string | undefined;
4837
+ zipCode?: string | undefined;
4846
4838
  } | {
4847
4839
  country: string;
4848
4840
  district: string;
4849
4841
  province: string;
4850
4842
  urbanOrRural: "RURAL";
4851
- village?: string | null | undefined;
4843
+ village?: string | undefined;
4852
4844
  } | {
4853
4845
  type: string;
4854
4846
  option: string;
@@ -4892,5 +4884,6 @@ export declare const ResolvedUser: z.ZodObject<{
4892
4884
  }>;
4893
4885
  export type ResolvedUser = z.infer<typeof ResolvedUser>;
4894
4886
  export type CreatedAction = z.infer<typeof CreatedAction>;
4887
+ export type ActionFormData = ActionDocument['data'];
4895
4888
  export {};
4896
4889
  //# sourceMappingURL=ActionDocument.d.ts.map