@homespot-sdk/validators 0.0.5 → 0.0.601
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +71 -197
- package/dist/index.js +108 -127
- package/package.json +1 -1
- package/src/index.ts +321 -340
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { type ZodiosOptions } from
|
|
2
|
-
import { z } from
|
|
1
|
+
import { type ZodiosOptions } from "@zodios/core";
|
|
2
|
+
import { z } from "zod";
|
|
3
3
|
export declare const schemas: {
|
|
4
4
|
SocialMediaRequest: z.ZodObject<{
|
|
5
5
|
type: z.ZodEnum<["FACEBOOK", "YOUTUBE", "INSTAGRAM", "TIKTOK", "LINKEDIN"]>;
|
|
@@ -75,147 +75,99 @@ export declare const schemas: {
|
|
|
75
75
|
height: z.ZodOptional<z.ZodNumber>;
|
|
76
76
|
}, z.ZodTypeAny, "passthrough">>;
|
|
77
77
|
AddressRequest: z.ZodObject<{
|
|
78
|
-
placeId: z.ZodString;
|
|
79
|
-
cadastralCode: z.ZodString;
|
|
80
|
-
fullName: z.ZodString;
|
|
81
|
-
lat: z.ZodNumber;
|
|
82
|
-
lng: z.ZodNumber;
|
|
83
78
|
country: z.ZodString;
|
|
84
79
|
city: z.ZodString;
|
|
80
|
+
district: z.ZodString;
|
|
81
|
+
subdistrict: z.ZodString;
|
|
85
82
|
street: z.ZodString;
|
|
86
83
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
87
|
-
placeId: z.ZodString;
|
|
88
|
-
cadastralCode: z.ZodString;
|
|
89
|
-
fullName: z.ZodString;
|
|
90
|
-
lat: z.ZodNumber;
|
|
91
|
-
lng: z.ZodNumber;
|
|
92
84
|
country: z.ZodString;
|
|
93
85
|
city: z.ZodString;
|
|
86
|
+
district: z.ZodString;
|
|
87
|
+
subdistrict: z.ZodString;
|
|
94
88
|
street: z.ZodString;
|
|
95
89
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
96
|
-
placeId: z.ZodString;
|
|
97
|
-
cadastralCode: z.ZodString;
|
|
98
|
-
fullName: z.ZodString;
|
|
99
|
-
lat: z.ZodNumber;
|
|
100
|
-
lng: z.ZodNumber;
|
|
101
90
|
country: z.ZodString;
|
|
102
91
|
city: z.ZodString;
|
|
92
|
+
district: z.ZodString;
|
|
93
|
+
subdistrict: z.ZodString;
|
|
103
94
|
street: z.ZodString;
|
|
104
95
|
}, z.ZodTypeAny, "passthrough">>;
|
|
105
96
|
CreateAgencyRequest: z.ZodObject<{
|
|
106
97
|
name: z.ZodString;
|
|
107
|
-
slogan: z.ZodString;
|
|
108
|
-
logoUrl: z.ZodString;
|
|
109
|
-
coverImage: z.ZodString;
|
|
110
98
|
email: z.ZodString;
|
|
111
99
|
seats: z.ZodNumber;
|
|
112
|
-
|
|
100
|
+
subDomain: z.ZodString;
|
|
113
101
|
phone: z.ZodString;
|
|
114
|
-
website: z.ZodString;
|
|
115
102
|
address: z.ZodObject<{
|
|
116
|
-
placeId: z.ZodString;
|
|
117
|
-
cadastralCode: z.ZodString;
|
|
118
|
-
fullName: z.ZodString;
|
|
119
|
-
lat: z.ZodNumber;
|
|
120
|
-
lng: z.ZodNumber;
|
|
121
103
|
country: z.ZodString;
|
|
122
104
|
city: z.ZodString;
|
|
105
|
+
district: z.ZodString;
|
|
106
|
+
subdistrict: z.ZodString;
|
|
123
107
|
street: z.ZodString;
|
|
124
108
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
125
|
-
placeId: z.ZodString;
|
|
126
|
-
cadastralCode: z.ZodString;
|
|
127
|
-
fullName: z.ZodString;
|
|
128
|
-
lat: z.ZodNumber;
|
|
129
|
-
lng: z.ZodNumber;
|
|
130
109
|
country: z.ZodString;
|
|
131
110
|
city: z.ZodString;
|
|
111
|
+
district: z.ZodString;
|
|
112
|
+
subdistrict: z.ZodString;
|
|
132
113
|
street: z.ZodString;
|
|
133
114
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
134
|
-
placeId: z.ZodString;
|
|
135
|
-
cadastralCode: z.ZodString;
|
|
136
|
-
fullName: z.ZodString;
|
|
137
|
-
lat: z.ZodNumber;
|
|
138
|
-
lng: z.ZodNumber;
|
|
139
115
|
country: z.ZodString;
|
|
140
116
|
city: z.ZodString;
|
|
117
|
+
district: z.ZodString;
|
|
118
|
+
subdistrict: z.ZodString;
|
|
141
119
|
street: z.ZodString;
|
|
142
120
|
}, z.ZodTypeAny, "passthrough">>;
|
|
143
121
|
yearSince: z.ZodNumber;
|
|
144
122
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
145
123
|
name: z.ZodString;
|
|
146
|
-
slogan: z.ZodString;
|
|
147
|
-
logoUrl: z.ZodString;
|
|
148
|
-
coverImage: z.ZodString;
|
|
149
124
|
email: z.ZodString;
|
|
150
125
|
seats: z.ZodNumber;
|
|
151
|
-
|
|
126
|
+
subDomain: z.ZodString;
|
|
152
127
|
phone: z.ZodString;
|
|
153
|
-
website: z.ZodString;
|
|
154
128
|
address: z.ZodObject<{
|
|
155
|
-
placeId: z.ZodString;
|
|
156
|
-
cadastralCode: z.ZodString;
|
|
157
|
-
fullName: z.ZodString;
|
|
158
|
-
lat: z.ZodNumber;
|
|
159
|
-
lng: z.ZodNumber;
|
|
160
129
|
country: z.ZodString;
|
|
161
130
|
city: z.ZodString;
|
|
131
|
+
district: z.ZodString;
|
|
132
|
+
subdistrict: z.ZodString;
|
|
162
133
|
street: z.ZodString;
|
|
163
134
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
164
|
-
placeId: z.ZodString;
|
|
165
|
-
cadastralCode: z.ZodString;
|
|
166
|
-
fullName: z.ZodString;
|
|
167
|
-
lat: z.ZodNumber;
|
|
168
|
-
lng: z.ZodNumber;
|
|
169
135
|
country: z.ZodString;
|
|
170
136
|
city: z.ZodString;
|
|
137
|
+
district: z.ZodString;
|
|
138
|
+
subdistrict: z.ZodString;
|
|
171
139
|
street: z.ZodString;
|
|
172
140
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
173
|
-
placeId: z.ZodString;
|
|
174
|
-
cadastralCode: z.ZodString;
|
|
175
|
-
fullName: z.ZodString;
|
|
176
|
-
lat: z.ZodNumber;
|
|
177
|
-
lng: z.ZodNumber;
|
|
178
141
|
country: z.ZodString;
|
|
179
142
|
city: z.ZodString;
|
|
143
|
+
district: z.ZodString;
|
|
144
|
+
subdistrict: z.ZodString;
|
|
180
145
|
street: z.ZodString;
|
|
181
146
|
}, z.ZodTypeAny, "passthrough">>;
|
|
182
147
|
yearSince: z.ZodNumber;
|
|
183
148
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
184
149
|
name: z.ZodString;
|
|
185
|
-
slogan: z.ZodString;
|
|
186
|
-
logoUrl: z.ZodString;
|
|
187
|
-
coverImage: z.ZodString;
|
|
188
150
|
email: z.ZodString;
|
|
189
151
|
seats: z.ZodNumber;
|
|
190
|
-
|
|
152
|
+
subDomain: z.ZodString;
|
|
191
153
|
phone: z.ZodString;
|
|
192
|
-
website: z.ZodString;
|
|
193
154
|
address: z.ZodObject<{
|
|
194
|
-
placeId: z.ZodString;
|
|
195
|
-
cadastralCode: z.ZodString;
|
|
196
|
-
fullName: z.ZodString;
|
|
197
|
-
lat: z.ZodNumber;
|
|
198
|
-
lng: z.ZodNumber;
|
|
199
155
|
country: z.ZodString;
|
|
200
156
|
city: z.ZodString;
|
|
157
|
+
district: z.ZodString;
|
|
158
|
+
subdistrict: z.ZodString;
|
|
201
159
|
street: z.ZodString;
|
|
202
160
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
203
|
-
placeId: z.ZodString;
|
|
204
|
-
cadastralCode: z.ZodString;
|
|
205
|
-
fullName: z.ZodString;
|
|
206
|
-
lat: z.ZodNumber;
|
|
207
|
-
lng: z.ZodNumber;
|
|
208
161
|
country: z.ZodString;
|
|
209
162
|
city: z.ZodString;
|
|
163
|
+
district: z.ZodString;
|
|
164
|
+
subdistrict: z.ZodString;
|
|
210
165
|
street: z.ZodString;
|
|
211
166
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
212
|
-
placeId: z.ZodString;
|
|
213
|
-
cadastralCode: z.ZodString;
|
|
214
|
-
fullName: z.ZodString;
|
|
215
|
-
lat: z.ZodNumber;
|
|
216
|
-
lng: z.ZodNumber;
|
|
217
167
|
country: z.ZodString;
|
|
218
168
|
city: z.ZodString;
|
|
169
|
+
district: z.ZodString;
|
|
170
|
+
subdistrict: z.ZodString;
|
|
219
171
|
street: z.ZodString;
|
|
220
172
|
}, z.ZodTypeAny, "passthrough">>;
|
|
221
173
|
yearSince: z.ZodNumber;
|
|
@@ -336,118 +288,79 @@ export declare const api: import("@zodios/core").ZodiosInstance<[{
|
|
|
336
288
|
type: "Body";
|
|
337
289
|
schema: z.ZodObject<{
|
|
338
290
|
name: z.ZodString;
|
|
339
|
-
slogan: z.ZodString;
|
|
340
|
-
logoUrl: z.ZodString;
|
|
341
|
-
coverImage: z.ZodString;
|
|
342
291
|
email: z.ZodString;
|
|
343
292
|
seats: z.ZodNumber;
|
|
344
|
-
|
|
293
|
+
subDomain: z.ZodString;
|
|
345
294
|
phone: z.ZodString;
|
|
346
|
-
website: z.ZodString;
|
|
347
295
|
address: z.ZodObject<{
|
|
348
|
-
placeId: z.ZodString;
|
|
349
|
-
cadastralCode: z.ZodString;
|
|
350
|
-
fullName: z.ZodString;
|
|
351
|
-
lat: z.ZodNumber;
|
|
352
|
-
lng: z.ZodNumber;
|
|
353
296
|
country: z.ZodString;
|
|
354
297
|
city: z.ZodString;
|
|
298
|
+
district: z.ZodString;
|
|
299
|
+
subdistrict: z.ZodString;
|
|
355
300
|
street: z.ZodString;
|
|
356
301
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
357
|
-
placeId: z.ZodString;
|
|
358
|
-
cadastralCode: z.ZodString;
|
|
359
|
-
fullName: z.ZodString;
|
|
360
|
-
lat: z.ZodNumber;
|
|
361
|
-
lng: z.ZodNumber;
|
|
362
302
|
country: z.ZodString;
|
|
363
303
|
city: z.ZodString;
|
|
304
|
+
district: z.ZodString;
|
|
305
|
+
subdistrict: z.ZodString;
|
|
364
306
|
street: z.ZodString;
|
|
365
307
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
366
|
-
placeId: z.ZodString;
|
|
367
|
-
cadastralCode: z.ZodString;
|
|
368
|
-
fullName: z.ZodString;
|
|
369
|
-
lat: z.ZodNumber;
|
|
370
|
-
lng: z.ZodNumber;
|
|
371
308
|
country: z.ZodString;
|
|
372
309
|
city: z.ZodString;
|
|
310
|
+
district: z.ZodString;
|
|
311
|
+
subdistrict: z.ZodString;
|
|
373
312
|
street: z.ZodString;
|
|
374
313
|
}, z.ZodTypeAny, "passthrough">>;
|
|
375
314
|
yearSince: z.ZodNumber;
|
|
376
315
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
377
316
|
name: z.ZodString;
|
|
378
|
-
slogan: z.ZodString;
|
|
379
|
-
logoUrl: z.ZodString;
|
|
380
|
-
coverImage: z.ZodString;
|
|
381
317
|
email: z.ZodString;
|
|
382
318
|
seats: z.ZodNumber;
|
|
383
|
-
|
|
319
|
+
subDomain: z.ZodString;
|
|
384
320
|
phone: z.ZodString;
|
|
385
|
-
website: z.ZodString;
|
|
386
321
|
address: z.ZodObject<{
|
|
387
|
-
placeId: z.ZodString;
|
|
388
|
-
cadastralCode: z.ZodString;
|
|
389
|
-
fullName: z.ZodString;
|
|
390
|
-
lat: z.ZodNumber;
|
|
391
|
-
lng: z.ZodNumber;
|
|
392
322
|
country: z.ZodString;
|
|
393
323
|
city: z.ZodString;
|
|
324
|
+
district: z.ZodString;
|
|
325
|
+
subdistrict: z.ZodString;
|
|
394
326
|
street: z.ZodString;
|
|
395
327
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
396
|
-
placeId: z.ZodString;
|
|
397
|
-
cadastralCode: z.ZodString;
|
|
398
|
-
fullName: z.ZodString;
|
|
399
|
-
lat: z.ZodNumber;
|
|
400
|
-
lng: z.ZodNumber;
|
|
401
328
|
country: z.ZodString;
|
|
402
329
|
city: z.ZodString;
|
|
330
|
+
district: z.ZodString;
|
|
331
|
+
subdistrict: z.ZodString;
|
|
403
332
|
street: z.ZodString;
|
|
404
333
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
405
|
-
placeId: z.ZodString;
|
|
406
|
-
cadastralCode: z.ZodString;
|
|
407
|
-
fullName: z.ZodString;
|
|
408
|
-
lat: z.ZodNumber;
|
|
409
|
-
lng: z.ZodNumber;
|
|
410
334
|
country: z.ZodString;
|
|
411
335
|
city: z.ZodString;
|
|
336
|
+
district: z.ZodString;
|
|
337
|
+
subdistrict: z.ZodString;
|
|
412
338
|
street: z.ZodString;
|
|
413
339
|
}, z.ZodTypeAny, "passthrough">>;
|
|
414
340
|
yearSince: z.ZodNumber;
|
|
415
341
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
416
342
|
name: z.ZodString;
|
|
417
|
-
slogan: z.ZodString;
|
|
418
|
-
logoUrl: z.ZodString;
|
|
419
|
-
coverImage: z.ZodString;
|
|
420
343
|
email: z.ZodString;
|
|
421
344
|
seats: z.ZodNumber;
|
|
422
|
-
|
|
345
|
+
subDomain: z.ZodString;
|
|
423
346
|
phone: z.ZodString;
|
|
424
|
-
website: z.ZodString;
|
|
425
347
|
address: z.ZodObject<{
|
|
426
|
-
placeId: z.ZodString;
|
|
427
|
-
cadastralCode: z.ZodString;
|
|
428
|
-
fullName: z.ZodString;
|
|
429
|
-
lat: z.ZodNumber;
|
|
430
|
-
lng: z.ZodNumber;
|
|
431
348
|
country: z.ZodString;
|
|
432
349
|
city: z.ZodString;
|
|
350
|
+
district: z.ZodString;
|
|
351
|
+
subdistrict: z.ZodString;
|
|
433
352
|
street: z.ZodString;
|
|
434
353
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
435
|
-
placeId: z.ZodString;
|
|
436
|
-
cadastralCode: z.ZodString;
|
|
437
|
-
fullName: z.ZodString;
|
|
438
|
-
lat: z.ZodNumber;
|
|
439
|
-
lng: z.ZodNumber;
|
|
440
354
|
country: z.ZodString;
|
|
441
355
|
city: z.ZodString;
|
|
356
|
+
district: z.ZodString;
|
|
357
|
+
subdistrict: z.ZodString;
|
|
442
358
|
street: z.ZodString;
|
|
443
359
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
444
|
-
placeId: z.ZodString;
|
|
445
|
-
cadastralCode: z.ZodString;
|
|
446
|
-
fullName: z.ZodString;
|
|
447
|
-
lat: z.ZodNumber;
|
|
448
|
-
lng: z.ZodNumber;
|
|
449
360
|
country: z.ZodString;
|
|
450
361
|
city: z.ZodString;
|
|
362
|
+
district: z.ZodString;
|
|
363
|
+
subdistrict: z.ZodString;
|
|
451
364
|
street: z.ZodString;
|
|
452
365
|
}, z.ZodTypeAny, "passthrough">>;
|
|
453
366
|
yearSince: z.ZodNumber;
|
|
@@ -745,118 +658,79 @@ export declare function createApiClient(baseUrl: string, options?: ZodiosOptions
|
|
|
745
658
|
type: "Body";
|
|
746
659
|
schema: z.ZodObject<{
|
|
747
660
|
name: z.ZodString;
|
|
748
|
-
slogan: z.ZodString;
|
|
749
|
-
logoUrl: z.ZodString;
|
|
750
|
-
coverImage: z.ZodString;
|
|
751
661
|
email: z.ZodString;
|
|
752
662
|
seats: z.ZodNumber;
|
|
753
|
-
|
|
663
|
+
subDomain: z.ZodString;
|
|
754
664
|
phone: z.ZodString;
|
|
755
|
-
website: z.ZodString;
|
|
756
665
|
address: z.ZodObject<{
|
|
757
|
-
placeId: z.ZodString;
|
|
758
|
-
cadastralCode: z.ZodString;
|
|
759
|
-
fullName: z.ZodString;
|
|
760
|
-
lat: z.ZodNumber;
|
|
761
|
-
lng: z.ZodNumber;
|
|
762
666
|
country: z.ZodString;
|
|
763
667
|
city: z.ZodString;
|
|
668
|
+
district: z.ZodString;
|
|
669
|
+
subdistrict: z.ZodString;
|
|
764
670
|
street: z.ZodString;
|
|
765
671
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
766
|
-
placeId: z.ZodString;
|
|
767
|
-
cadastralCode: z.ZodString;
|
|
768
|
-
fullName: z.ZodString;
|
|
769
|
-
lat: z.ZodNumber;
|
|
770
|
-
lng: z.ZodNumber;
|
|
771
672
|
country: z.ZodString;
|
|
772
673
|
city: z.ZodString;
|
|
674
|
+
district: z.ZodString;
|
|
675
|
+
subdistrict: z.ZodString;
|
|
773
676
|
street: z.ZodString;
|
|
774
677
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
775
|
-
placeId: z.ZodString;
|
|
776
|
-
cadastralCode: z.ZodString;
|
|
777
|
-
fullName: z.ZodString;
|
|
778
|
-
lat: z.ZodNumber;
|
|
779
|
-
lng: z.ZodNumber;
|
|
780
678
|
country: z.ZodString;
|
|
781
679
|
city: z.ZodString;
|
|
680
|
+
district: z.ZodString;
|
|
681
|
+
subdistrict: z.ZodString;
|
|
782
682
|
street: z.ZodString;
|
|
783
683
|
}, z.ZodTypeAny, "passthrough">>;
|
|
784
684
|
yearSince: z.ZodNumber;
|
|
785
685
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
786
686
|
name: z.ZodString;
|
|
787
|
-
slogan: z.ZodString;
|
|
788
|
-
logoUrl: z.ZodString;
|
|
789
|
-
coverImage: z.ZodString;
|
|
790
687
|
email: z.ZodString;
|
|
791
688
|
seats: z.ZodNumber;
|
|
792
|
-
|
|
689
|
+
subDomain: z.ZodString;
|
|
793
690
|
phone: z.ZodString;
|
|
794
|
-
website: z.ZodString;
|
|
795
691
|
address: z.ZodObject<{
|
|
796
|
-
placeId: z.ZodString;
|
|
797
|
-
cadastralCode: z.ZodString;
|
|
798
|
-
fullName: z.ZodString;
|
|
799
|
-
lat: z.ZodNumber;
|
|
800
|
-
lng: z.ZodNumber;
|
|
801
692
|
country: z.ZodString;
|
|
802
693
|
city: z.ZodString;
|
|
694
|
+
district: z.ZodString;
|
|
695
|
+
subdistrict: z.ZodString;
|
|
803
696
|
street: z.ZodString;
|
|
804
697
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
805
|
-
placeId: z.ZodString;
|
|
806
|
-
cadastralCode: z.ZodString;
|
|
807
|
-
fullName: z.ZodString;
|
|
808
|
-
lat: z.ZodNumber;
|
|
809
|
-
lng: z.ZodNumber;
|
|
810
698
|
country: z.ZodString;
|
|
811
699
|
city: z.ZodString;
|
|
700
|
+
district: z.ZodString;
|
|
701
|
+
subdistrict: z.ZodString;
|
|
812
702
|
street: z.ZodString;
|
|
813
703
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
814
|
-
placeId: z.ZodString;
|
|
815
|
-
cadastralCode: z.ZodString;
|
|
816
|
-
fullName: z.ZodString;
|
|
817
|
-
lat: z.ZodNumber;
|
|
818
|
-
lng: z.ZodNumber;
|
|
819
704
|
country: z.ZodString;
|
|
820
705
|
city: z.ZodString;
|
|
706
|
+
district: z.ZodString;
|
|
707
|
+
subdistrict: z.ZodString;
|
|
821
708
|
street: z.ZodString;
|
|
822
709
|
}, z.ZodTypeAny, "passthrough">>;
|
|
823
710
|
yearSince: z.ZodNumber;
|
|
824
711
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
825
712
|
name: z.ZodString;
|
|
826
|
-
slogan: z.ZodString;
|
|
827
|
-
logoUrl: z.ZodString;
|
|
828
|
-
coverImage: z.ZodString;
|
|
829
713
|
email: z.ZodString;
|
|
830
714
|
seats: z.ZodNumber;
|
|
831
|
-
|
|
715
|
+
subDomain: z.ZodString;
|
|
832
716
|
phone: z.ZodString;
|
|
833
|
-
website: z.ZodString;
|
|
834
717
|
address: z.ZodObject<{
|
|
835
|
-
placeId: z.ZodString;
|
|
836
|
-
cadastralCode: z.ZodString;
|
|
837
|
-
fullName: z.ZodString;
|
|
838
|
-
lat: z.ZodNumber;
|
|
839
|
-
lng: z.ZodNumber;
|
|
840
718
|
country: z.ZodString;
|
|
841
719
|
city: z.ZodString;
|
|
720
|
+
district: z.ZodString;
|
|
721
|
+
subdistrict: z.ZodString;
|
|
842
722
|
street: z.ZodString;
|
|
843
723
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
844
|
-
placeId: z.ZodString;
|
|
845
|
-
cadastralCode: z.ZodString;
|
|
846
|
-
fullName: z.ZodString;
|
|
847
|
-
lat: z.ZodNumber;
|
|
848
|
-
lng: z.ZodNumber;
|
|
849
724
|
country: z.ZodString;
|
|
850
725
|
city: z.ZodString;
|
|
726
|
+
district: z.ZodString;
|
|
727
|
+
subdistrict: z.ZodString;
|
|
851
728
|
street: z.ZodString;
|
|
852
729
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
853
|
-
placeId: z.ZodString;
|
|
854
|
-
cadastralCode: z.ZodString;
|
|
855
|
-
fullName: z.ZodString;
|
|
856
|
-
lat: z.ZodNumber;
|
|
857
|
-
lng: z.ZodNumber;
|
|
858
730
|
country: z.ZodString;
|
|
859
731
|
city: z.ZodString;
|
|
732
|
+
district: z.ZodString;
|
|
733
|
+
subdistrict: z.ZodString;
|
|
860
734
|
street: z.ZodString;
|
|
861
735
|
}, z.ZodTypeAny, "passthrough">>;
|
|
862
736
|
yearSince: z.ZodNumber;
|