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