@new-project-media/client-frontends-shared-types 3.2.10 → 3.3.0
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/package.json +1 -1
- package/src/lib/dataGrid/api/entity.d.ts +32 -1
- package/src/lib/dataGrid/api/entity.js +2 -1
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/signals/index.d.ts +2 -2
- package/src/lib/dataGrid/api/signals/index.js +3 -1
- package/src/lib/dataGrid/api/signals/index.js.map +1 -1
- package/src/lib/dataGrid/api/signals/v1.d.ts +1291 -1594
- package/src/lib/dataGrid/api/signals/v1.js +59 -76
- package/src/lib/dataGrid/api/signals/v1.js.map +1 -1
- package/src/lib/dataGrid/dataGrid.d.ts +2 -2
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { EntityItemArrayOptionalSchema, DocumentRecordSchema, OrganizationItemSchema, LinkedPeopleSchema, QueueJoinSchema } from '../entity';
|
|
3
2
|
export declare enum PublishStatus {
|
|
4
3
|
NeedsReview = "Needs Review",
|
|
5
4
|
Spiked = "Spiked",
|
|
@@ -16,17 +15,42 @@ export declare const euSignalListSchemaV1: z.ZodObject<{
|
|
|
16
15
|
id: z.ZodString;
|
|
17
16
|
schema: z.ZodLiteral<"eu_signal">;
|
|
18
17
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
19
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
20
|
-
identifier: z.ZodString;
|
|
21
|
-
id: z.ZodString;
|
|
22
|
-
}, z.core.$strip>>;
|
|
23
18
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
24
19
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
25
20
|
identifier: z.ZodString;
|
|
26
21
|
id: z.ZodString;
|
|
27
22
|
}, z.core.$strip>>>;
|
|
28
|
-
|
|
23
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
24
|
+
filename: z.ZodString;
|
|
25
|
+
created: z.ZodString;
|
|
26
|
+
document_id: z.ZodString;
|
|
27
|
+
mimetype: z.ZodString;
|
|
28
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
29
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30
|
+
key: z.ZodOptional<z.ZodString>;
|
|
31
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
file: z.ZodOptional<z.ZodString>;
|
|
34
|
+
url: z.ZodString;
|
|
35
|
+
created: z.ZodOptional<z.ZodString>;
|
|
36
|
+
type: z.ZodArray<z.ZodString>;
|
|
37
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
38
|
+
documentDate: z.ZodString;
|
|
39
|
+
source: z.ZodOptional<z.ZodString>;
|
|
40
|
+
id: z.ZodOptional<z.ZodString>;
|
|
41
|
+
}, z.core.$strip>]>>>;
|
|
29
42
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
43
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
44
|
+
full: z.ZodOptional<z.ZodString>;
|
|
45
|
+
city: z.ZodOptional<z.ZodString>;
|
|
46
|
+
state: z.ZodOptional<z.ZodString>;
|
|
47
|
+
street: z.ZodOptional<z.ZodString>;
|
|
48
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
49
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
50
|
+
country: z.ZodOptional<z.ZodString>;
|
|
51
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
52
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
53
|
+
}, z.core.$strip>>;
|
|
30
54
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
31
55
|
geo: z.ZodOptional<z.ZodObject<{
|
|
32
56
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -36,34 +60,6 @@ export declare const euSignalListSchemaV1: z.ZodObject<{
|
|
|
36
60
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
37
61
|
}, z.core.$strip>>;
|
|
38
62
|
headline: z.ZodString;
|
|
39
|
-
location: z.ZodArray<z.ZodObject<{
|
|
40
|
-
identifier: z.ZodString;
|
|
41
|
-
id: z.ZodString;
|
|
42
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
43
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
44
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
45
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
46
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
48
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
49
|
-
_type: z.ZodString;
|
|
50
|
-
city: z.ZodOptional<z.ZodString>;
|
|
51
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
52
|
-
country: z.ZodOptional<z.ZodString>;
|
|
53
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
54
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
55
|
-
county: z.ZodOptional<z.ZodString>;
|
|
56
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
57
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
58
|
-
state: z.ZodOptional<z.ZodString>;
|
|
59
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
60
|
-
}, z.core.$strip>>;
|
|
61
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
62
|
-
lat: z.ZodNumber;
|
|
63
|
-
lng: z.ZodNumber;
|
|
64
|
-
}, z.core.$strip>>;
|
|
65
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
66
|
-
}, z.core.$strip>>;
|
|
67
63
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
68
64
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
69
65
|
identifier: z.ZodString;
|
|
@@ -73,11 +69,6 @@ export declare const euSignalListSchemaV1: z.ZodObject<{
|
|
|
73
69
|
}, z.core.$strip>>>;
|
|
74
70
|
phase: z.ZodOptional<z.ZodString>;
|
|
75
71
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
76
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
77
|
-
identifier: z.ZodString;
|
|
78
|
-
id: z.ZodString;
|
|
79
|
-
}, z.core.$strip>>;
|
|
80
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
81
72
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
73
|
identifier: z.ZodString;
|
|
83
74
|
id: z.ZodString;
|
|
@@ -105,17 +96,42 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
105
96
|
id: z.ZodString;
|
|
106
97
|
schema: z.ZodLiteral<"us_signal">;
|
|
107
98
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
108
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
109
|
-
identifier: z.ZodString;
|
|
110
|
-
id: z.ZodString;
|
|
111
|
-
}, z.core.$strip>>;
|
|
112
99
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
113
100
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
114
101
|
identifier: z.ZodString;
|
|
115
102
|
id: z.ZodString;
|
|
116
103
|
}, z.core.$strip>>>;
|
|
117
|
-
|
|
104
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
105
|
+
filename: z.ZodString;
|
|
106
|
+
created: z.ZodString;
|
|
107
|
+
document_id: z.ZodString;
|
|
108
|
+
mimetype: z.ZodString;
|
|
109
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
110
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
111
|
+
key: z.ZodOptional<z.ZodString>;
|
|
112
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
113
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
114
|
+
file: z.ZodOptional<z.ZodString>;
|
|
115
|
+
url: z.ZodString;
|
|
116
|
+
created: z.ZodOptional<z.ZodString>;
|
|
117
|
+
type: z.ZodArray<z.ZodString>;
|
|
118
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
119
|
+
documentDate: z.ZodString;
|
|
120
|
+
source: z.ZodOptional<z.ZodString>;
|
|
121
|
+
id: z.ZodOptional<z.ZodString>;
|
|
122
|
+
}, z.core.$strip>]>>>;
|
|
118
123
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
124
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
125
|
+
full: z.ZodOptional<z.ZodString>;
|
|
126
|
+
city: z.ZodOptional<z.ZodString>;
|
|
127
|
+
state: z.ZodOptional<z.ZodString>;
|
|
128
|
+
street: z.ZodOptional<z.ZodString>;
|
|
129
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
130
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
131
|
+
country: z.ZodOptional<z.ZodString>;
|
|
132
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
133
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
134
|
+
}, z.core.$strip>>;
|
|
119
135
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
120
136
|
geo: z.ZodOptional<z.ZodObject<{
|
|
121
137
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -125,34 +141,6 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
125
141
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
126
142
|
}, z.core.$strip>>;
|
|
127
143
|
headline: z.ZodString;
|
|
128
|
-
location: z.ZodArray<z.ZodObject<{
|
|
129
|
-
identifier: z.ZodString;
|
|
130
|
-
id: z.ZodString;
|
|
131
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
132
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
133
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
134
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
135
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
137
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
138
|
-
_type: z.ZodString;
|
|
139
|
-
city: z.ZodOptional<z.ZodString>;
|
|
140
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
141
|
-
country: z.ZodOptional<z.ZodString>;
|
|
142
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
143
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
144
|
-
county: z.ZodOptional<z.ZodString>;
|
|
145
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
146
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
147
|
-
state: z.ZodOptional<z.ZodString>;
|
|
148
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
149
|
-
}, z.core.$strip>>;
|
|
150
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
151
|
-
lat: z.ZodNumber;
|
|
152
|
-
lng: z.ZodNumber;
|
|
153
|
-
}, z.core.$strip>>;
|
|
154
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
155
|
-
}, z.core.$strip>>;
|
|
156
144
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
157
145
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
158
146
|
identifier: z.ZodString;
|
|
@@ -162,15 +150,10 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
162
150
|
}, z.core.$strip>>>;
|
|
163
151
|
phase: z.ZodOptional<z.ZodString>;
|
|
164
152
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
165
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
166
|
-
identifier: z.ZodString;
|
|
167
|
-
id: z.ZodString;
|
|
168
|
-
}, z.core.$strip>>;
|
|
169
153
|
state: z.ZodArray<z.ZodObject<{
|
|
170
154
|
identifier: z.ZodString;
|
|
171
155
|
id: z.ZodString;
|
|
172
156
|
}, z.core.$strip>>;
|
|
173
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
174
157
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
175
158
|
identifier: z.ZodString;
|
|
176
159
|
id: z.ZodString;
|
|
@@ -201,17 +184,42 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
201
184
|
}, z.core.$strip>>>;
|
|
202
185
|
id: z.ZodString;
|
|
203
186
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
204
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
205
|
-
identifier: z.ZodString;
|
|
206
|
-
id: z.ZodString;
|
|
207
|
-
}, z.core.$strip>>;
|
|
208
187
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
209
188
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
210
189
|
identifier: z.ZodString;
|
|
211
190
|
id: z.ZodString;
|
|
212
191
|
}, z.core.$strip>>>;
|
|
213
|
-
|
|
192
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
193
|
+
filename: z.ZodString;
|
|
194
|
+
created: z.ZodString;
|
|
195
|
+
document_id: z.ZodString;
|
|
196
|
+
mimetype: z.ZodString;
|
|
197
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
198
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
199
|
+
key: z.ZodOptional<z.ZodString>;
|
|
200
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
201
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
202
|
+
file: z.ZodOptional<z.ZodString>;
|
|
203
|
+
url: z.ZodString;
|
|
204
|
+
created: z.ZodOptional<z.ZodString>;
|
|
205
|
+
type: z.ZodArray<z.ZodString>;
|
|
206
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
207
|
+
documentDate: z.ZodString;
|
|
208
|
+
source: z.ZodOptional<z.ZodString>;
|
|
209
|
+
id: z.ZodOptional<z.ZodString>;
|
|
210
|
+
}, z.core.$strip>]>>>;
|
|
214
211
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
212
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
213
|
+
full: z.ZodOptional<z.ZodString>;
|
|
214
|
+
city: z.ZodOptional<z.ZodString>;
|
|
215
|
+
state: z.ZodOptional<z.ZodString>;
|
|
216
|
+
street: z.ZodOptional<z.ZodString>;
|
|
217
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
218
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
219
|
+
country: z.ZodOptional<z.ZodString>;
|
|
220
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
221
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
222
|
+
}, z.core.$strip>>;
|
|
215
223
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
216
224
|
geo: z.ZodOptional<z.ZodObject<{
|
|
217
225
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -221,34 +229,6 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
221
229
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
222
230
|
}, z.core.$strip>>;
|
|
223
231
|
headline: z.ZodString;
|
|
224
|
-
location: z.ZodArray<z.ZodObject<{
|
|
225
|
-
identifier: z.ZodString;
|
|
226
|
-
id: z.ZodString;
|
|
227
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
228
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
229
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
230
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
231
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
232
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
233
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
234
|
-
_type: z.ZodString;
|
|
235
|
-
city: z.ZodOptional<z.ZodString>;
|
|
236
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
237
|
-
country: z.ZodOptional<z.ZodString>;
|
|
238
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
239
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
240
|
-
county: z.ZodOptional<z.ZodString>;
|
|
241
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
242
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
243
|
-
state: z.ZodOptional<z.ZodString>;
|
|
244
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
245
|
-
}, z.core.$strip>>;
|
|
246
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
247
|
-
lat: z.ZodNumber;
|
|
248
|
-
lng: z.ZodNumber;
|
|
249
|
-
}, z.core.$strip>>;
|
|
250
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
251
|
-
}, z.core.$strip>>;
|
|
252
232
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
253
233
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
254
234
|
identifier: z.ZodString;
|
|
@@ -258,15 +238,6 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
258
238
|
}, z.core.$strip>>>;
|
|
259
239
|
phase: z.ZodOptional<z.ZodString>;
|
|
260
240
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
261
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
262
|
-
identifier: z.ZodString;
|
|
263
|
-
id: z.ZodString;
|
|
264
|
-
}, z.core.$strip>>;
|
|
265
|
-
state: z.ZodArray<z.ZodObject<{
|
|
266
|
-
identifier: z.ZodString;
|
|
267
|
-
id: z.ZodString;
|
|
268
|
-
}, z.core.$strip>>;
|
|
269
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
270
241
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
271
242
|
identifier: z.ZodString;
|
|
272
243
|
id: z.ZodString;
|
|
@@ -290,22 +261,51 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
290
261
|
id: z.ZodString;
|
|
291
262
|
}, z.core.$strip>>;
|
|
292
263
|
schema: z.ZodLiteral<"global_signal">;
|
|
264
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
265
|
+
identifier: z.ZodString;
|
|
266
|
+
id: z.ZodString;
|
|
267
|
+
}, z.core.$strip>>>;
|
|
293
268
|
}, z.core.$strict>;
|
|
294
269
|
export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
295
270
|
id: z.ZodString;
|
|
296
271
|
schema: z.ZodLiteral<"eu_signal">;
|
|
297
272
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
298
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
299
|
-
identifier: z.ZodString;
|
|
300
|
-
id: z.ZodString;
|
|
301
|
-
}, z.core.$strip>>;
|
|
302
273
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
303
274
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
304
275
|
identifier: z.ZodString;
|
|
305
276
|
id: z.ZodString;
|
|
306
277
|
}, z.core.$strip>>>;
|
|
307
|
-
|
|
278
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
279
|
+
filename: z.ZodString;
|
|
280
|
+
created: z.ZodString;
|
|
281
|
+
document_id: z.ZodString;
|
|
282
|
+
mimetype: z.ZodString;
|
|
283
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
284
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
285
|
+
key: z.ZodOptional<z.ZodString>;
|
|
286
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
287
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
288
|
+
file: z.ZodOptional<z.ZodString>;
|
|
289
|
+
url: z.ZodString;
|
|
290
|
+
created: z.ZodOptional<z.ZodString>;
|
|
291
|
+
type: z.ZodArray<z.ZodString>;
|
|
292
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
293
|
+
documentDate: z.ZodString;
|
|
294
|
+
source: z.ZodOptional<z.ZodString>;
|
|
295
|
+
id: z.ZodOptional<z.ZodString>;
|
|
296
|
+
}, z.core.$strip>]>>>;
|
|
308
297
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
298
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
299
|
+
full: z.ZodOptional<z.ZodString>;
|
|
300
|
+
city: z.ZodOptional<z.ZodString>;
|
|
301
|
+
state: z.ZodOptional<z.ZodString>;
|
|
302
|
+
street: z.ZodOptional<z.ZodString>;
|
|
303
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
304
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
305
|
+
country: z.ZodOptional<z.ZodString>;
|
|
306
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
307
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
308
|
+
}, z.core.$strip>>;
|
|
309
309
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
310
310
|
geo: z.ZodOptional<z.ZodObject<{
|
|
311
311
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -315,36 +315,8 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
315
315
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
316
316
|
}, z.core.$strip>>;
|
|
317
317
|
headline: z.ZodString;
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
id: z.ZodString;
|
|
321
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
322
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
323
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
324
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
325
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
326
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
327
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
328
|
-
_type: z.ZodString;
|
|
329
|
-
city: z.ZodOptional<z.ZodString>;
|
|
330
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
331
|
-
country: z.ZodOptional<z.ZodString>;
|
|
332
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
333
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
334
|
-
county: z.ZodOptional<z.ZodString>;
|
|
335
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
336
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
337
|
-
state: z.ZodOptional<z.ZodString>;
|
|
338
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
339
|
-
}, z.core.$strip>>;
|
|
340
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
341
|
-
lat: z.ZodNumber;
|
|
342
|
-
lng: z.ZodNumber;
|
|
343
|
-
}, z.core.$strip>>;
|
|
344
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
345
|
-
}, z.core.$strip>>;
|
|
346
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
347
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
318
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
319
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
348
320
|
identifier: z.ZodString;
|
|
349
321
|
id: z.ZodString;
|
|
350
322
|
role: z.ZodString;
|
|
@@ -352,11 +324,6 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
352
324
|
}, z.core.$strip>>>;
|
|
353
325
|
phase: z.ZodOptional<z.ZodString>;
|
|
354
326
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
355
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
356
|
-
identifier: z.ZodString;
|
|
357
|
-
id: z.ZodString;
|
|
358
|
-
}, z.core.$strip>>;
|
|
359
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
360
327
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
361
328
|
identifier: z.ZodString;
|
|
362
329
|
id: z.ZodString;
|
|
@@ -385,17 +352,42 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
385
352
|
id: z.ZodString;
|
|
386
353
|
schema: z.ZodLiteral<"us_signal">;
|
|
387
354
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
388
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
389
|
-
identifier: z.ZodString;
|
|
390
|
-
id: z.ZodString;
|
|
391
|
-
}, z.core.$strip>>;
|
|
392
355
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
393
356
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
394
357
|
identifier: z.ZodString;
|
|
395
358
|
id: z.ZodString;
|
|
396
359
|
}, z.core.$strip>>>;
|
|
397
|
-
|
|
360
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
361
|
+
filename: z.ZodString;
|
|
362
|
+
created: z.ZodString;
|
|
363
|
+
document_id: z.ZodString;
|
|
364
|
+
mimetype: z.ZodString;
|
|
365
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
366
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
367
|
+
key: z.ZodOptional<z.ZodString>;
|
|
368
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
369
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
370
|
+
file: z.ZodOptional<z.ZodString>;
|
|
371
|
+
url: z.ZodString;
|
|
372
|
+
created: z.ZodOptional<z.ZodString>;
|
|
373
|
+
type: z.ZodArray<z.ZodString>;
|
|
374
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
375
|
+
documentDate: z.ZodString;
|
|
376
|
+
source: z.ZodOptional<z.ZodString>;
|
|
377
|
+
id: z.ZodOptional<z.ZodString>;
|
|
378
|
+
}, z.core.$strip>]>>>;
|
|
398
379
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
380
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
381
|
+
full: z.ZodOptional<z.ZodString>;
|
|
382
|
+
city: z.ZodOptional<z.ZodString>;
|
|
383
|
+
state: z.ZodOptional<z.ZodString>;
|
|
384
|
+
street: z.ZodOptional<z.ZodString>;
|
|
385
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
386
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
387
|
+
country: z.ZodOptional<z.ZodString>;
|
|
388
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
389
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
390
|
+
}, z.core.$strip>>;
|
|
399
391
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
400
392
|
geo: z.ZodOptional<z.ZodObject<{
|
|
401
393
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -405,34 +397,6 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
405
397
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
406
398
|
}, z.core.$strip>>;
|
|
407
399
|
headline: z.ZodString;
|
|
408
|
-
location: z.ZodArray<z.ZodObject<{
|
|
409
|
-
identifier: z.ZodString;
|
|
410
|
-
id: z.ZodString;
|
|
411
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
412
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
413
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
414
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
415
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
416
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
417
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
418
|
-
_type: z.ZodString;
|
|
419
|
-
city: z.ZodOptional<z.ZodString>;
|
|
420
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
421
|
-
country: z.ZodOptional<z.ZodString>;
|
|
422
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
423
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
424
|
-
county: z.ZodOptional<z.ZodString>;
|
|
425
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
426
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
427
|
-
state: z.ZodOptional<z.ZodString>;
|
|
428
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
429
|
-
}, z.core.$strip>>;
|
|
430
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
431
|
-
lat: z.ZodNumber;
|
|
432
|
-
lng: z.ZodNumber;
|
|
433
|
-
}, z.core.$strip>>;
|
|
434
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
435
|
-
}, z.core.$strip>>;
|
|
436
400
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
437
401
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
438
402
|
identifier: z.ZodString;
|
|
@@ -442,15 +406,10 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
442
406
|
}, z.core.$strip>>>;
|
|
443
407
|
phase: z.ZodOptional<z.ZodString>;
|
|
444
408
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
445
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
446
|
-
identifier: z.ZodString;
|
|
447
|
-
id: z.ZodString;
|
|
448
|
-
}, z.core.$strip>>;
|
|
449
409
|
state: z.ZodArray<z.ZodObject<{
|
|
450
410
|
identifier: z.ZodString;
|
|
451
411
|
id: z.ZodString;
|
|
452
412
|
}, z.core.$strip>>;
|
|
453
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
454
413
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
455
414
|
identifier: z.ZodString;
|
|
456
415
|
id: z.ZodString;
|
|
@@ -482,17 +441,42 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
482
441
|
}, z.core.$strip>>>;
|
|
483
442
|
id: z.ZodString;
|
|
484
443
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
485
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
486
|
-
identifier: z.ZodString;
|
|
487
|
-
id: z.ZodString;
|
|
488
|
-
}, z.core.$strip>>;
|
|
489
444
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
490
445
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
491
446
|
identifier: z.ZodString;
|
|
492
447
|
id: z.ZodString;
|
|
493
448
|
}, z.core.$strip>>>;
|
|
494
|
-
|
|
449
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
450
|
+
filename: z.ZodString;
|
|
451
|
+
created: z.ZodString;
|
|
452
|
+
document_id: z.ZodString;
|
|
453
|
+
mimetype: z.ZodString;
|
|
454
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
455
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
456
|
+
key: z.ZodOptional<z.ZodString>;
|
|
457
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
458
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
459
|
+
file: z.ZodOptional<z.ZodString>;
|
|
460
|
+
url: z.ZodString;
|
|
461
|
+
created: z.ZodOptional<z.ZodString>;
|
|
462
|
+
type: z.ZodArray<z.ZodString>;
|
|
463
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
464
|
+
documentDate: z.ZodString;
|
|
465
|
+
source: z.ZodOptional<z.ZodString>;
|
|
466
|
+
id: z.ZodOptional<z.ZodString>;
|
|
467
|
+
}, z.core.$strip>]>>>;
|
|
495
468
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
469
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
470
|
+
full: z.ZodOptional<z.ZodString>;
|
|
471
|
+
city: z.ZodOptional<z.ZodString>;
|
|
472
|
+
state: z.ZodOptional<z.ZodString>;
|
|
473
|
+
street: z.ZodOptional<z.ZodString>;
|
|
474
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
475
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
476
|
+
country: z.ZodOptional<z.ZodString>;
|
|
477
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
478
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
479
|
+
}, z.core.$strip>>;
|
|
496
480
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
497
481
|
geo: z.ZodOptional<z.ZodObject<{
|
|
498
482
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -502,34 +486,6 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
502
486
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
503
487
|
}, z.core.$strip>>;
|
|
504
488
|
headline: z.ZodString;
|
|
505
|
-
location: z.ZodArray<z.ZodObject<{
|
|
506
|
-
identifier: z.ZodString;
|
|
507
|
-
id: z.ZodString;
|
|
508
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
509
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
510
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
511
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
512
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
513
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
514
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
515
|
-
_type: z.ZodString;
|
|
516
|
-
city: z.ZodOptional<z.ZodString>;
|
|
517
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
518
|
-
country: z.ZodOptional<z.ZodString>;
|
|
519
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
520
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
521
|
-
county: z.ZodOptional<z.ZodString>;
|
|
522
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
523
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
524
|
-
state: z.ZodOptional<z.ZodString>;
|
|
525
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
526
|
-
}, z.core.$strip>>;
|
|
527
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
528
|
-
lat: z.ZodNumber;
|
|
529
|
-
lng: z.ZodNumber;
|
|
530
|
-
}, z.core.$strip>>;
|
|
531
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
532
|
-
}, z.core.$strip>>;
|
|
533
489
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
534
490
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
535
491
|
identifier: z.ZodString;
|
|
@@ -539,15 +495,6 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
539
495
|
}, z.core.$strip>>>;
|
|
540
496
|
phase: z.ZodOptional<z.ZodString>;
|
|
541
497
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
542
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
543
|
-
identifier: z.ZodString;
|
|
544
|
-
id: z.ZodString;
|
|
545
|
-
}, z.core.$strip>>;
|
|
546
|
-
state: z.ZodArray<z.ZodObject<{
|
|
547
|
-
identifier: z.ZodString;
|
|
548
|
-
id: z.ZodString;
|
|
549
|
-
}, z.core.$strip>>;
|
|
550
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
551
498
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
552
499
|
identifier: z.ZodString;
|
|
553
500
|
id: z.ZodString;
|
|
@@ -571,23 +518,52 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
571
518
|
id: z.ZodString;
|
|
572
519
|
}, z.core.$strip>>;
|
|
573
520
|
schema: z.ZodLiteral<"global_signal">;
|
|
521
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
522
|
+
identifier: z.ZodString;
|
|
523
|
+
id: z.ZodString;
|
|
524
|
+
}, z.core.$strip>>>;
|
|
574
525
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
575
526
|
}, z.core.$strict>;
|
|
576
527
|
export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
577
528
|
id: z.ZodString;
|
|
578
529
|
schema: z.ZodLiteral<"eu_signal">;
|
|
579
530
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
580
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
581
|
-
identifier: z.ZodString;
|
|
582
|
-
id: z.ZodString;
|
|
583
|
-
}, z.core.$strip>>;
|
|
584
531
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
585
532
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
586
533
|
identifier: z.ZodString;
|
|
587
534
|
id: z.ZodString;
|
|
588
535
|
}, z.core.$strip>>>;
|
|
589
|
-
|
|
536
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
537
|
+
filename: z.ZodString;
|
|
538
|
+
created: z.ZodString;
|
|
539
|
+
document_id: z.ZodString;
|
|
540
|
+
mimetype: z.ZodString;
|
|
541
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
542
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
543
|
+
key: z.ZodOptional<z.ZodString>;
|
|
544
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
545
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
546
|
+
file: z.ZodOptional<z.ZodString>;
|
|
547
|
+
url: z.ZodString;
|
|
548
|
+
created: z.ZodOptional<z.ZodString>;
|
|
549
|
+
type: z.ZodArray<z.ZodString>;
|
|
550
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
551
|
+
documentDate: z.ZodString;
|
|
552
|
+
source: z.ZodOptional<z.ZodString>;
|
|
553
|
+
id: z.ZodOptional<z.ZodString>;
|
|
554
|
+
}, z.core.$strip>]>>>;
|
|
590
555
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
556
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
557
|
+
full: z.ZodOptional<z.ZodString>;
|
|
558
|
+
city: z.ZodOptional<z.ZodString>;
|
|
559
|
+
state: z.ZodOptional<z.ZodString>;
|
|
560
|
+
street: z.ZodOptional<z.ZodString>;
|
|
561
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
562
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
563
|
+
country: z.ZodOptional<z.ZodString>;
|
|
564
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
565
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
566
|
+
}, z.core.$strip>>;
|
|
591
567
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
592
568
|
geo: z.ZodOptional<z.ZodObject<{
|
|
593
569
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -597,34 +573,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
597
573
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
598
574
|
}, z.core.$strip>>;
|
|
599
575
|
headline: z.ZodString;
|
|
600
|
-
location: z.ZodArray<z.ZodObject<{
|
|
601
|
-
identifier: z.ZodString;
|
|
602
|
-
id: z.ZodString;
|
|
603
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
604
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
605
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
606
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
607
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
608
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
609
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
610
|
-
_type: z.ZodString;
|
|
611
|
-
city: z.ZodOptional<z.ZodString>;
|
|
612
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
613
|
-
country: z.ZodOptional<z.ZodString>;
|
|
614
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
615
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
616
|
-
county: z.ZodOptional<z.ZodString>;
|
|
617
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
618
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
619
|
-
state: z.ZodOptional<z.ZodString>;
|
|
620
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
621
|
-
}, z.core.$strip>>;
|
|
622
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
623
|
-
lat: z.ZodNumber;
|
|
624
|
-
lng: z.ZodNumber;
|
|
625
|
-
}, z.core.$strip>>;
|
|
626
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
627
|
-
}, z.core.$strip>>;
|
|
628
576
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
629
577
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
630
578
|
identifier: z.ZodString;
|
|
@@ -634,11 +582,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
634
582
|
}, z.core.$strip>>>;
|
|
635
583
|
phase: z.ZodOptional<z.ZodString>;
|
|
636
584
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
637
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
638
|
-
identifier: z.ZodString;
|
|
639
|
-
id: z.ZodString;
|
|
640
|
-
}, z.core.$strip>>;
|
|
641
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
642
585
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
643
586
|
identifier: z.ZodString;
|
|
644
587
|
id: z.ZodString;
|
|
@@ -666,54 +609,51 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
666
609
|
id: z.ZodString;
|
|
667
610
|
schema: z.ZodLiteral<"us_signal">;
|
|
668
611
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
669
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
670
|
-
identifier: z.ZodString;
|
|
671
|
-
id: z.ZodString;
|
|
672
|
-
}, z.core.$strip>>;
|
|
673
612
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
674
613
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
675
614
|
identifier: z.ZodString;
|
|
676
615
|
id: z.ZodString;
|
|
677
616
|
}, z.core.$strip>>>;
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
}, z.core.$strip
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
617
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
618
|
+
filename: z.ZodString;
|
|
619
|
+
created: z.ZodString;
|
|
620
|
+
document_id: z.ZodString;
|
|
621
|
+
mimetype: z.ZodString;
|
|
622
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
623
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
624
|
+
key: z.ZodOptional<z.ZodString>;
|
|
625
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
626
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
627
|
+
file: z.ZodOptional<z.ZodString>;
|
|
628
|
+
url: z.ZodString;
|
|
629
|
+
created: z.ZodOptional<z.ZodString>;
|
|
630
|
+
type: z.ZodArray<z.ZodString>;
|
|
631
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
632
|
+
documentDate: z.ZodString;
|
|
633
|
+
source: z.ZodOptional<z.ZodString>;
|
|
634
|
+
id: z.ZodOptional<z.ZodString>;
|
|
635
|
+
}, z.core.$strip>]>>>;
|
|
636
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
637
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
638
|
+
full: z.ZodOptional<z.ZodString>;
|
|
639
|
+
city: z.ZodOptional<z.ZodString>;
|
|
640
|
+
state: z.ZodOptional<z.ZodString>;
|
|
641
|
+
street: z.ZodOptional<z.ZodString>;
|
|
642
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
643
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
644
|
+
country: z.ZodOptional<z.ZodString>;
|
|
645
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
646
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
647
|
+
}, z.core.$strip>>;
|
|
648
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
649
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
650
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
712
651
|
lat: z.ZodNumber;
|
|
713
|
-
|
|
652
|
+
lon: z.ZodNumber;
|
|
714
653
|
}, z.core.$strip>>;
|
|
715
|
-
|
|
654
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
716
655
|
}, z.core.$strip>>;
|
|
656
|
+
headline: z.ZodString;
|
|
717
657
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
718
658
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
719
659
|
identifier: z.ZodString;
|
|
@@ -723,15 +663,10 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
723
663
|
}, z.core.$strip>>>;
|
|
724
664
|
phase: z.ZodOptional<z.ZodString>;
|
|
725
665
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
726
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
727
|
-
identifier: z.ZodString;
|
|
728
|
-
id: z.ZodString;
|
|
729
|
-
}, z.core.$strip>>;
|
|
730
666
|
state: z.ZodArray<z.ZodObject<{
|
|
731
667
|
identifier: z.ZodString;
|
|
732
668
|
id: z.ZodString;
|
|
733
669
|
}, z.core.$strip>>;
|
|
734
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
735
670
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
736
671
|
identifier: z.ZodString;
|
|
737
672
|
id: z.ZodString;
|
|
@@ -762,17 +697,42 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
762
697
|
}, z.core.$strip>>>;
|
|
763
698
|
id: z.ZodString;
|
|
764
699
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
765
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
766
|
-
identifier: z.ZodString;
|
|
767
|
-
id: z.ZodString;
|
|
768
|
-
}, z.core.$strip>>;
|
|
769
700
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
770
701
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
771
702
|
identifier: z.ZodString;
|
|
772
703
|
id: z.ZodString;
|
|
773
704
|
}, z.core.$strip>>>;
|
|
774
|
-
|
|
705
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
706
|
+
filename: z.ZodString;
|
|
707
|
+
created: z.ZodString;
|
|
708
|
+
document_id: z.ZodString;
|
|
709
|
+
mimetype: z.ZodString;
|
|
710
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
711
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
712
|
+
key: z.ZodOptional<z.ZodString>;
|
|
713
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
714
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
715
|
+
file: z.ZodOptional<z.ZodString>;
|
|
716
|
+
url: z.ZodString;
|
|
717
|
+
created: z.ZodOptional<z.ZodString>;
|
|
718
|
+
type: z.ZodArray<z.ZodString>;
|
|
719
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
720
|
+
documentDate: z.ZodString;
|
|
721
|
+
source: z.ZodOptional<z.ZodString>;
|
|
722
|
+
id: z.ZodOptional<z.ZodString>;
|
|
723
|
+
}, z.core.$strip>]>>>;
|
|
775
724
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
725
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
726
|
+
full: z.ZodOptional<z.ZodString>;
|
|
727
|
+
city: z.ZodOptional<z.ZodString>;
|
|
728
|
+
state: z.ZodOptional<z.ZodString>;
|
|
729
|
+
street: z.ZodOptional<z.ZodString>;
|
|
730
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
731
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
732
|
+
country: z.ZodOptional<z.ZodString>;
|
|
733
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
734
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
735
|
+
}, z.core.$strip>>;
|
|
776
736
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
777
737
|
geo: z.ZodOptional<z.ZodObject<{
|
|
778
738
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -782,34 +742,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
782
742
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
783
743
|
}, z.core.$strip>>;
|
|
784
744
|
headline: z.ZodString;
|
|
785
|
-
location: z.ZodArray<z.ZodObject<{
|
|
786
|
-
identifier: z.ZodString;
|
|
787
|
-
id: z.ZodString;
|
|
788
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
789
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
790
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
791
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
792
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
793
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
794
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
795
|
-
_type: z.ZodString;
|
|
796
|
-
city: z.ZodOptional<z.ZodString>;
|
|
797
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
798
|
-
country: z.ZodOptional<z.ZodString>;
|
|
799
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
800
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
801
|
-
county: z.ZodOptional<z.ZodString>;
|
|
802
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
803
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
804
|
-
state: z.ZodOptional<z.ZodString>;
|
|
805
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
806
|
-
}, z.core.$strip>>;
|
|
807
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
808
|
-
lat: z.ZodNumber;
|
|
809
|
-
lng: z.ZodNumber;
|
|
810
|
-
}, z.core.$strip>>;
|
|
811
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
812
|
-
}, z.core.$strip>>;
|
|
813
745
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
814
746
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
815
747
|
identifier: z.ZodString;
|
|
@@ -819,15 +751,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
819
751
|
}, z.core.$strip>>>;
|
|
820
752
|
phase: z.ZodOptional<z.ZodString>;
|
|
821
753
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
822
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
823
|
-
identifier: z.ZodString;
|
|
824
|
-
id: z.ZodString;
|
|
825
|
-
}, z.core.$strip>>;
|
|
826
|
-
state: z.ZodArray<z.ZodObject<{
|
|
827
|
-
identifier: z.ZodString;
|
|
828
|
-
id: z.ZodString;
|
|
829
|
-
}, z.core.$strip>>;
|
|
830
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
831
754
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
832
755
|
identifier: z.ZodString;
|
|
833
756
|
id: z.ZodString;
|
|
@@ -851,23 +774,52 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
851
774
|
id: z.ZodString;
|
|
852
775
|
}, z.core.$strip>>;
|
|
853
776
|
schema: z.ZodLiteral<"global_signal">;
|
|
777
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
778
|
+
identifier: z.ZodString;
|
|
779
|
+
id: z.ZodString;
|
|
780
|
+
}, z.core.$strip>>>;
|
|
854
781
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
855
782
|
}, z.core.$strict>]>;
|
|
856
783
|
export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
857
784
|
id: z.ZodString;
|
|
858
785
|
schema: z.ZodLiteral<"eu_signal">;
|
|
859
786
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
860
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
861
|
-
identifier: z.ZodString;
|
|
862
|
-
id: z.ZodString;
|
|
863
|
-
}, z.core.$strip>>;
|
|
864
787
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
865
788
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
866
789
|
identifier: z.ZodString;
|
|
867
790
|
id: z.ZodString;
|
|
868
791
|
}, z.core.$strip>>>;
|
|
869
|
-
|
|
792
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
793
|
+
filename: z.ZodString;
|
|
794
|
+
created: z.ZodString;
|
|
795
|
+
document_id: z.ZodString;
|
|
796
|
+
mimetype: z.ZodString;
|
|
797
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
798
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
799
|
+
key: z.ZodOptional<z.ZodString>;
|
|
800
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
801
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
802
|
+
file: z.ZodOptional<z.ZodString>;
|
|
803
|
+
url: z.ZodString;
|
|
804
|
+
created: z.ZodOptional<z.ZodString>;
|
|
805
|
+
type: z.ZodArray<z.ZodString>;
|
|
806
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
807
|
+
documentDate: z.ZodString;
|
|
808
|
+
source: z.ZodOptional<z.ZodString>;
|
|
809
|
+
id: z.ZodOptional<z.ZodString>;
|
|
810
|
+
}, z.core.$strip>]>>>;
|
|
870
811
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
812
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
813
|
+
full: z.ZodOptional<z.ZodString>;
|
|
814
|
+
city: z.ZodOptional<z.ZodString>;
|
|
815
|
+
state: z.ZodOptional<z.ZodString>;
|
|
816
|
+
street: z.ZodOptional<z.ZodString>;
|
|
817
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
818
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
819
|
+
country: z.ZodOptional<z.ZodString>;
|
|
820
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
821
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
822
|
+
}, z.core.$strip>>;
|
|
871
823
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
872
824
|
geo: z.ZodOptional<z.ZodObject<{
|
|
873
825
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -877,34 +829,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
877
829
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
878
830
|
}, z.core.$strip>>;
|
|
879
831
|
headline: z.ZodString;
|
|
880
|
-
location: z.ZodArray<z.ZodObject<{
|
|
881
|
-
identifier: z.ZodString;
|
|
882
|
-
id: z.ZodString;
|
|
883
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
884
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
885
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
886
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
887
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
888
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
889
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
890
|
-
_type: z.ZodString;
|
|
891
|
-
city: z.ZodOptional<z.ZodString>;
|
|
892
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
893
|
-
country: z.ZodOptional<z.ZodString>;
|
|
894
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
895
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
896
|
-
county: z.ZodOptional<z.ZodString>;
|
|
897
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
898
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
899
|
-
state: z.ZodOptional<z.ZodString>;
|
|
900
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
901
|
-
}, z.core.$strip>>;
|
|
902
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
903
|
-
lat: z.ZodNumber;
|
|
904
|
-
lng: z.ZodNumber;
|
|
905
|
-
}, z.core.$strip>>;
|
|
906
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
907
|
-
}, z.core.$strip>>;
|
|
908
832
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
909
833
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
910
834
|
identifier: z.ZodString;
|
|
@@ -914,11 +838,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
914
838
|
}, z.core.$strip>>>;
|
|
915
839
|
phase: z.ZodOptional<z.ZodString>;
|
|
916
840
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
917
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
918
|
-
identifier: z.ZodString;
|
|
919
|
-
id: z.ZodString;
|
|
920
|
-
}, z.core.$strip>>;
|
|
921
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
922
841
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
923
842
|
identifier: z.ZodString;
|
|
924
843
|
id: z.ZodString;
|
|
@@ -946,17 +865,42 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
946
865
|
id: z.ZodString;
|
|
947
866
|
schema: z.ZodLiteral<"us_signal">;
|
|
948
867
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
949
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
950
|
-
identifier: z.ZodString;
|
|
951
|
-
id: z.ZodString;
|
|
952
|
-
}, z.core.$strip>>;
|
|
953
868
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
954
869
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
955
870
|
identifier: z.ZodString;
|
|
956
871
|
id: z.ZodString;
|
|
957
872
|
}, z.core.$strip>>>;
|
|
958
|
-
|
|
873
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
874
|
+
filename: z.ZodString;
|
|
875
|
+
created: z.ZodString;
|
|
876
|
+
document_id: z.ZodString;
|
|
877
|
+
mimetype: z.ZodString;
|
|
878
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
879
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
880
|
+
key: z.ZodOptional<z.ZodString>;
|
|
881
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
882
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
883
|
+
file: z.ZodOptional<z.ZodString>;
|
|
884
|
+
url: z.ZodString;
|
|
885
|
+
created: z.ZodOptional<z.ZodString>;
|
|
886
|
+
type: z.ZodArray<z.ZodString>;
|
|
887
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
888
|
+
documentDate: z.ZodString;
|
|
889
|
+
source: z.ZodOptional<z.ZodString>;
|
|
890
|
+
id: z.ZodOptional<z.ZodString>;
|
|
891
|
+
}, z.core.$strip>]>>>;
|
|
959
892
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
893
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
894
|
+
full: z.ZodOptional<z.ZodString>;
|
|
895
|
+
city: z.ZodOptional<z.ZodString>;
|
|
896
|
+
state: z.ZodOptional<z.ZodString>;
|
|
897
|
+
street: z.ZodOptional<z.ZodString>;
|
|
898
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
899
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
900
|
+
country: z.ZodOptional<z.ZodString>;
|
|
901
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
902
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
903
|
+
}, z.core.$strip>>;
|
|
960
904
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
961
905
|
geo: z.ZodOptional<z.ZodObject<{
|
|
962
906
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -966,36 +910,8 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
966
910
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
967
911
|
}, z.core.$strip>>;
|
|
968
912
|
headline: z.ZodString;
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
id: z.ZodString;
|
|
972
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
973
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
974
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
975
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
976
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
977
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
978
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
979
|
-
_type: z.ZodString;
|
|
980
|
-
city: z.ZodOptional<z.ZodString>;
|
|
981
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
982
|
-
country: z.ZodOptional<z.ZodString>;
|
|
983
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
984
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
985
|
-
county: z.ZodOptional<z.ZodString>;
|
|
986
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
987
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
988
|
-
state: z.ZodOptional<z.ZodString>;
|
|
989
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
990
|
-
}, z.core.$strip>>;
|
|
991
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
992
|
-
lat: z.ZodNumber;
|
|
993
|
-
lng: z.ZodNumber;
|
|
994
|
-
}, z.core.$strip>>;
|
|
995
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
996
|
-
}, z.core.$strip>>;
|
|
997
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
998
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
913
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
914
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
999
915
|
identifier: z.ZodString;
|
|
1000
916
|
id: z.ZodString;
|
|
1001
917
|
role: z.ZodString;
|
|
@@ -1003,15 +919,10 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1003
919
|
}, z.core.$strip>>>;
|
|
1004
920
|
phase: z.ZodOptional<z.ZodString>;
|
|
1005
921
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1006
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
1007
|
-
identifier: z.ZodString;
|
|
1008
|
-
id: z.ZodString;
|
|
1009
|
-
}, z.core.$strip>>;
|
|
1010
922
|
state: z.ZodArray<z.ZodObject<{
|
|
1011
923
|
identifier: z.ZodString;
|
|
1012
924
|
id: z.ZodString;
|
|
1013
925
|
}, z.core.$strip>>;
|
|
1014
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1015
926
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1016
927
|
identifier: z.ZodString;
|
|
1017
928
|
id: z.ZodString;
|
|
@@ -1042,17 +953,42 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1042
953
|
}, z.core.$strip>>>;
|
|
1043
954
|
id: z.ZodString;
|
|
1044
955
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1045
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1046
|
-
identifier: z.ZodString;
|
|
1047
|
-
id: z.ZodString;
|
|
1048
|
-
}, z.core.$strip>>;
|
|
1049
956
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1050
957
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1051
958
|
identifier: z.ZodString;
|
|
1052
959
|
id: z.ZodString;
|
|
1053
960
|
}, z.core.$strip>>>;
|
|
1054
|
-
|
|
961
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
962
|
+
filename: z.ZodString;
|
|
963
|
+
created: z.ZodString;
|
|
964
|
+
document_id: z.ZodString;
|
|
965
|
+
mimetype: z.ZodString;
|
|
966
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
967
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
968
|
+
key: z.ZodOptional<z.ZodString>;
|
|
969
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
970
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
971
|
+
file: z.ZodOptional<z.ZodString>;
|
|
972
|
+
url: z.ZodString;
|
|
973
|
+
created: z.ZodOptional<z.ZodString>;
|
|
974
|
+
type: z.ZodArray<z.ZodString>;
|
|
975
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
976
|
+
documentDate: z.ZodString;
|
|
977
|
+
source: z.ZodOptional<z.ZodString>;
|
|
978
|
+
id: z.ZodOptional<z.ZodString>;
|
|
979
|
+
}, z.core.$strip>]>>>;
|
|
1055
980
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
981
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
982
|
+
full: z.ZodOptional<z.ZodString>;
|
|
983
|
+
city: z.ZodOptional<z.ZodString>;
|
|
984
|
+
state: z.ZodOptional<z.ZodString>;
|
|
985
|
+
street: z.ZodOptional<z.ZodString>;
|
|
986
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
987
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
988
|
+
country: z.ZodOptional<z.ZodString>;
|
|
989
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
990
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
991
|
+
}, z.core.$strip>>;
|
|
1056
992
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1057
993
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1058
994
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1062,34 +998,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1062
998
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1063
999
|
}, z.core.$strip>>;
|
|
1064
1000
|
headline: z.ZodString;
|
|
1065
|
-
location: z.ZodArray<z.ZodObject<{
|
|
1066
|
-
identifier: z.ZodString;
|
|
1067
|
-
id: z.ZodString;
|
|
1068
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
1069
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
1070
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
1071
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
1072
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1073
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
1074
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
1075
|
-
_type: z.ZodString;
|
|
1076
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1077
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
1078
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1079
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
1080
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
1081
|
-
county: z.ZodOptional<z.ZodString>;
|
|
1082
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
1083
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
1084
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1085
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
1086
|
-
}, z.core.$strip>>;
|
|
1087
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
1088
|
-
lat: z.ZodNumber;
|
|
1089
|
-
lng: z.ZodNumber;
|
|
1090
|
-
}, z.core.$strip>>;
|
|
1091
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
1092
|
-
}, z.core.$strip>>;
|
|
1093
1001
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1094
1002
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
1003
|
identifier: z.ZodString;
|
|
@@ -1099,15 +1007,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1099
1007
|
}, z.core.$strip>>>;
|
|
1100
1008
|
phase: z.ZodOptional<z.ZodString>;
|
|
1101
1009
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1102
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
1103
|
-
identifier: z.ZodString;
|
|
1104
|
-
id: z.ZodString;
|
|
1105
|
-
}, z.core.$strip>>;
|
|
1106
|
-
state: z.ZodArray<z.ZodObject<{
|
|
1107
|
-
identifier: z.ZodString;
|
|
1108
|
-
id: z.ZodString;
|
|
1109
|
-
}, z.core.$strip>>;
|
|
1110
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1111
1010
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1112
1011
|
identifier: z.ZodString;
|
|
1113
1012
|
id: z.ZodString;
|
|
@@ -1131,23 +1030,52 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1131
1030
|
id: z.ZodString;
|
|
1132
1031
|
}, z.core.$strip>>;
|
|
1133
1032
|
schema: z.ZodLiteral<"global_signal">;
|
|
1033
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1034
|
+
identifier: z.ZodString;
|
|
1035
|
+
id: z.ZodString;
|
|
1036
|
+
}, z.core.$strip>>>;
|
|
1134
1037
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1135
1038
|
}, z.core.$strict>], "schema">;
|
|
1136
1039
|
export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1137
1040
|
id: z.ZodString;
|
|
1138
1041
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1139
1042
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1140
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1141
|
-
identifier: z.ZodString;
|
|
1142
|
-
id: z.ZodString;
|
|
1143
|
-
}, z.core.$strip>>;
|
|
1144
1043
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1145
1044
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1146
1045
|
identifier: z.ZodString;
|
|
1147
1046
|
id: z.ZodString;
|
|
1148
1047
|
}, z.core.$strip>>>;
|
|
1149
|
-
|
|
1048
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1049
|
+
filename: z.ZodString;
|
|
1050
|
+
created: z.ZodString;
|
|
1051
|
+
document_id: z.ZodString;
|
|
1052
|
+
mimetype: z.ZodString;
|
|
1053
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1055
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1057
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1058
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
url: z.ZodString;
|
|
1060
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1061
|
+
type: z.ZodArray<z.ZodString>;
|
|
1062
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1063
|
+
documentDate: z.ZodString;
|
|
1064
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1065
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1066
|
+
}, z.core.$strip>]>>>;
|
|
1150
1067
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1069
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1071
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1072
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1074
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1075
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1076
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1077
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1078
|
+
}, z.core.$strip>>;
|
|
1151
1079
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1152
1080
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1153
1081
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1157,34 +1085,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1157
1085
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1158
1086
|
}, z.core.$strip>>;
|
|
1159
1087
|
headline: z.ZodString;
|
|
1160
|
-
location: z.ZodArray<z.ZodObject<{
|
|
1161
|
-
identifier: z.ZodString;
|
|
1162
|
-
id: z.ZodString;
|
|
1163
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
1164
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
1165
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
1166
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
1167
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1168
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
1169
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
1170
|
-
_type: z.ZodString;
|
|
1171
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1172
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
1173
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1174
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
1175
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
1176
|
-
county: z.ZodOptional<z.ZodString>;
|
|
1177
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
1178
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
1179
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1180
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
1181
|
-
}, z.core.$strip>>;
|
|
1182
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
1183
|
-
lat: z.ZodNumber;
|
|
1184
|
-
lng: z.ZodNumber;
|
|
1185
|
-
}, z.core.$strip>>;
|
|
1186
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
1187
|
-
}, z.core.$strip>>;
|
|
1188
1088
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1189
1089
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1190
1090
|
identifier: z.ZodString;
|
|
@@ -1194,11 +1094,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1194
1094
|
}, z.core.$strip>>>;
|
|
1195
1095
|
phase: z.ZodOptional<z.ZodString>;
|
|
1196
1096
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1197
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
1198
|
-
identifier: z.ZodString;
|
|
1199
|
-
id: z.ZodString;
|
|
1200
|
-
}, z.core.$strip>>;
|
|
1201
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1202
1097
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1203
1098
|
identifier: z.ZodString;
|
|
1204
1099
|
id: z.ZodString;
|
|
@@ -1225,17 +1120,42 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1225
1120
|
id: z.ZodString;
|
|
1226
1121
|
schema: z.ZodLiteral<"us_signal">;
|
|
1227
1122
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1228
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1229
|
-
identifier: z.ZodString;
|
|
1230
|
-
id: z.ZodString;
|
|
1231
|
-
}, z.core.$strip>>;
|
|
1232
1123
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1233
1124
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1234
1125
|
identifier: z.ZodString;
|
|
1235
1126
|
id: z.ZodString;
|
|
1236
1127
|
}, z.core.$strip>>>;
|
|
1237
|
-
|
|
1128
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1129
|
+
filename: z.ZodString;
|
|
1130
|
+
created: z.ZodString;
|
|
1131
|
+
document_id: z.ZodString;
|
|
1132
|
+
mimetype: z.ZodString;
|
|
1133
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1135
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1136
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1137
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1138
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1139
|
+
url: z.ZodString;
|
|
1140
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1141
|
+
type: z.ZodArray<z.ZodString>;
|
|
1142
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1143
|
+
documentDate: z.ZodString;
|
|
1144
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1145
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1146
|
+
}, z.core.$strip>]>>>;
|
|
1238
1147
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
1148
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1149
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1150
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1151
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1152
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1153
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1154
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1156
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1157
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1158
|
+
}, z.core.$strip>>;
|
|
1239
1159
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1240
1160
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1241
1161
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1245,34 +1165,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1245
1165
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1246
1166
|
}, z.core.$strip>>;
|
|
1247
1167
|
headline: z.ZodString;
|
|
1248
|
-
location: z.ZodArray<z.ZodObject<{
|
|
1249
|
-
identifier: z.ZodString;
|
|
1250
|
-
id: z.ZodString;
|
|
1251
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
1252
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
1253
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
1254
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
1255
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1256
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
1257
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
1258
|
-
_type: z.ZodString;
|
|
1259
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1260
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
1261
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1262
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
1263
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
1264
|
-
county: z.ZodOptional<z.ZodString>;
|
|
1265
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
1266
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
1267
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1268
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
1269
|
-
}, z.core.$strip>>;
|
|
1270
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
1271
|
-
lat: z.ZodNumber;
|
|
1272
|
-
lng: z.ZodNumber;
|
|
1273
|
-
}, z.core.$strip>>;
|
|
1274
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
1275
|
-
}, z.core.$strip>>;
|
|
1276
1168
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1277
1169
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1278
1170
|
identifier: z.ZodString;
|
|
@@ -1282,15 +1174,10 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1282
1174
|
}, z.core.$strip>>>;
|
|
1283
1175
|
phase: z.ZodOptional<z.ZodString>;
|
|
1284
1176
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1285
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
1286
|
-
identifier: z.ZodString;
|
|
1287
|
-
id: z.ZodString;
|
|
1288
|
-
}, z.core.$strip>>;
|
|
1289
1177
|
state: z.ZodArray<z.ZodObject<{
|
|
1290
1178
|
identifier: z.ZodString;
|
|
1291
1179
|
id: z.ZodString;
|
|
1292
1180
|
}, z.core.$strip>>;
|
|
1293
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1294
1181
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1295
1182
|
identifier: z.ZodString;
|
|
1296
1183
|
id: z.ZodString;
|
|
@@ -1320,54 +1207,51 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1320
1207
|
}, z.core.$strip>>>;
|
|
1321
1208
|
id: z.ZodString;
|
|
1322
1209
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1323
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1324
|
-
identifier: z.ZodString;
|
|
1325
|
-
id: z.ZodString;
|
|
1326
|
-
}, z.core.$strip>>;
|
|
1327
1210
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1328
1211
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1329
1212
|
identifier: z.ZodString;
|
|
1330
1213
|
id: z.ZodString;
|
|
1331
1214
|
}, z.core.$strip>>>;
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
}, z.core.$strip
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1215
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1216
|
+
filename: z.ZodString;
|
|
1217
|
+
created: z.ZodString;
|
|
1218
|
+
document_id: z.ZodString;
|
|
1219
|
+
mimetype: z.ZodString;
|
|
1220
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1222
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1223
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1225
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
url: z.ZodString;
|
|
1227
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
type: z.ZodArray<z.ZodString>;
|
|
1229
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1230
|
+
documentDate: z.ZodString;
|
|
1231
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1232
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1233
|
+
}, z.core.$strip>]>>>;
|
|
1234
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1236
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1237
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1238
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1239
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1240
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1241
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1244
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1245
|
+
}, z.core.$strip>>;
|
|
1246
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1247
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
1248
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
1366
1249
|
lat: z.ZodNumber;
|
|
1367
|
-
|
|
1250
|
+
lon: z.ZodNumber;
|
|
1368
1251
|
}, z.core.$strip>>;
|
|
1369
|
-
|
|
1252
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1370
1253
|
}, z.core.$strip>>;
|
|
1254
|
+
headline: z.ZodString;
|
|
1371
1255
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1372
1256
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1373
1257
|
identifier: z.ZodString;
|
|
@@ -1377,15 +1261,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1377
1261
|
}, z.core.$strip>>>;
|
|
1378
1262
|
phase: z.ZodOptional<z.ZodString>;
|
|
1379
1263
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1380
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
1381
|
-
identifier: z.ZodString;
|
|
1382
|
-
id: z.ZodString;
|
|
1383
|
-
}, z.core.$strip>>;
|
|
1384
|
-
state: z.ZodArray<z.ZodObject<{
|
|
1385
|
-
identifier: z.ZodString;
|
|
1386
|
-
id: z.ZodString;
|
|
1387
|
-
}, z.core.$strip>>;
|
|
1388
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1389
1264
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1390
1265
|
identifier: z.ZodString;
|
|
1391
1266
|
id: z.ZodString;
|
|
@@ -1409,6 +1284,10 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1409
1284
|
id: z.ZodString;
|
|
1410
1285
|
}, z.core.$strip>>;
|
|
1411
1286
|
schema: z.ZodLiteral<"global_signal">;
|
|
1287
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1288
|
+
identifier: z.ZodString;
|
|
1289
|
+
id: z.ZodString;
|
|
1290
|
+
}, z.core.$strip>>>;
|
|
1412
1291
|
}, z.core.$strict>], "schema">;
|
|
1413
1292
|
export type SignalListTypeV1 = z.infer<typeof signalListSchemaV1>;
|
|
1414
1293
|
export type SignalListUnionTypeV1 = z.infer<typeof signalListUnionSchemaV1>;
|
|
@@ -1420,7 +1299,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1420
1299
|
id: z.ZodString;
|
|
1421
1300
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1422
1301
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1423
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1424
1302
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1425
1303
|
identifier: z.ZodString;
|
|
1426
1304
|
id: z.ZodString;
|
|
@@ -1431,7 +1309,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1431
1309
|
identifier: z.ZodString;
|
|
1432
1310
|
id: z.ZodString;
|
|
1433
1311
|
}, z.core.$strip>>>;
|
|
1434
|
-
created: z.ZodString;
|
|
1435
1312
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1436
1313
|
filename: z.ZodString;
|
|
1437
1314
|
created: z.ZodString;
|
|
@@ -1546,7 +1423,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1546
1423
|
identifier: z.ZodString;
|
|
1547
1424
|
id: z.ZodString;
|
|
1548
1425
|
}, z.core.$strip>>;
|
|
1549
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1550
1426
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1551
1427
|
identifier: z.ZodString;
|
|
1552
1428
|
id: z.ZodString;
|
|
@@ -1574,7 +1450,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1574
1450
|
id: z.ZodString;
|
|
1575
1451
|
schema: z.ZodLiteral<"us_signal">;
|
|
1576
1452
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1577
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1578
1453
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1579
1454
|
identifier: z.ZodString;
|
|
1580
1455
|
id: z.ZodString;
|
|
@@ -1589,7 +1464,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1589
1464
|
identifier: z.ZodString;
|
|
1590
1465
|
id: z.ZodString;
|
|
1591
1466
|
}, z.core.$strip>>>;
|
|
1592
|
-
created: z.ZodString;
|
|
1593
1467
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1594
1468
|
filename: z.ZodString;
|
|
1595
1469
|
created: z.ZodString;
|
|
@@ -1720,7 +1594,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1720
1594
|
identifier: z.ZodString;
|
|
1721
1595
|
id: z.ZodString;
|
|
1722
1596
|
}, z.core.$strip>>;
|
|
1723
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1724
1597
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1725
1598
|
identifier: z.ZodString;
|
|
1726
1599
|
id: z.ZodString;
|
|
@@ -1751,7 +1624,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1751
1624
|
}, z.core.$strip>>>;
|
|
1752
1625
|
id: z.ZodString;
|
|
1753
1626
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1754
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1755
1627
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1756
1628
|
identifier: z.ZodString;
|
|
1757
1629
|
id: z.ZodString;
|
|
@@ -1766,7 +1638,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1766
1638
|
identifier: z.ZodString;
|
|
1767
1639
|
id: z.ZodString;
|
|
1768
1640
|
}, z.core.$strip>>>;
|
|
1769
|
-
created: z.ZodString;
|
|
1770
1641
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1771
1642
|
filename: z.ZodString;
|
|
1772
1643
|
created: z.ZodString;
|
|
@@ -1897,7 +1768,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1897
1768
|
identifier: z.ZodString;
|
|
1898
1769
|
id: z.ZodString;
|
|
1899
1770
|
}, z.core.$strip>>;
|
|
1900
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1901
1771
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1902
1772
|
identifier: z.ZodString;
|
|
1903
1773
|
id: z.ZodString;
|
|
@@ -1926,7 +1796,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
1926
1796
|
id: z.ZodString;
|
|
1927
1797
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1928
1798
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1929
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1930
1799
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1931
1800
|
identifier: z.ZodString;
|
|
1932
1801
|
id: z.ZodString;
|
|
@@ -1937,7 +1806,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
1937
1806
|
identifier: z.ZodString;
|
|
1938
1807
|
id: z.ZodString;
|
|
1939
1808
|
}, z.core.$strip>>>;
|
|
1940
|
-
created: z.ZodString;
|
|
1941
1809
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1942
1810
|
filename: z.ZodString;
|
|
1943
1811
|
created: z.ZodString;
|
|
@@ -2052,7 +1920,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2052
1920
|
identifier: z.ZodString;
|
|
2053
1921
|
id: z.ZodString;
|
|
2054
1922
|
}, z.core.$strip>>;
|
|
2055
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2056
1923
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2057
1924
|
identifier: z.ZodString;
|
|
2058
1925
|
id: z.ZodString;
|
|
@@ -2079,7 +1946,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2079
1946
|
id: z.ZodString;
|
|
2080
1947
|
schema: z.ZodLiteral<"us_signal">;
|
|
2081
1948
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2082
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2083
1949
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2084
1950
|
identifier: z.ZodString;
|
|
2085
1951
|
id: z.ZodString;
|
|
@@ -2094,7 +1960,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2094
1960
|
identifier: z.ZodString;
|
|
2095
1961
|
id: z.ZodString;
|
|
2096
1962
|
}, z.core.$strip>>>;
|
|
2097
|
-
created: z.ZodString;
|
|
2098
1963
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2099
1964
|
filename: z.ZodString;
|
|
2100
1965
|
created: z.ZodString;
|
|
@@ -2225,7 +2090,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2225
2090
|
identifier: z.ZodString;
|
|
2226
2091
|
id: z.ZodString;
|
|
2227
2092
|
}, z.core.$strip>>;
|
|
2228
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2229
2093
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2230
2094
|
identifier: z.ZodString;
|
|
2231
2095
|
id: z.ZodString;
|
|
@@ -2255,7 +2119,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2255
2119
|
}, z.core.$strip>>>;
|
|
2256
2120
|
id: z.ZodString;
|
|
2257
2121
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2258
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2259
2122
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2260
2123
|
identifier: z.ZodString;
|
|
2261
2124
|
id: z.ZodString;
|
|
@@ -2270,7 +2133,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2270
2133
|
identifier: z.ZodString;
|
|
2271
2134
|
id: z.ZodString;
|
|
2272
2135
|
}, z.core.$strip>>>;
|
|
2273
|
-
created: z.ZodString;
|
|
2274
2136
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2275
2137
|
filename: z.ZodString;
|
|
2276
2138
|
created: z.ZodString;
|
|
@@ -2401,7 +2263,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2401
2263
|
identifier: z.ZodString;
|
|
2402
2264
|
id: z.ZodString;
|
|
2403
2265
|
}, z.core.$strip>>;
|
|
2404
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2405
2266
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2406
2267
|
identifier: z.ZodString;
|
|
2407
2268
|
id: z.ZodString;
|
|
@@ -2430,7 +2291,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2430
2291
|
id: z.ZodString;
|
|
2431
2292
|
schema: z.ZodLiteral<"eu_signal">;
|
|
2432
2293
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2433
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2434
2294
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2435
2295
|
identifier: z.ZodString;
|
|
2436
2296
|
id: z.ZodString;
|
|
@@ -2441,7 +2301,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2441
2301
|
identifier: z.ZodString;
|
|
2442
2302
|
id: z.ZodString;
|
|
2443
2303
|
}, z.core.$strip>>>;
|
|
2444
|
-
created: z.ZodString;
|
|
2445
2304
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2446
2305
|
filename: z.ZodString;
|
|
2447
2306
|
created: z.ZodString;
|
|
@@ -2556,7 +2415,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2556
2415
|
identifier: z.ZodString;
|
|
2557
2416
|
id: z.ZodString;
|
|
2558
2417
|
}, z.core.$strip>>;
|
|
2559
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2560
2418
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2561
2419
|
identifier: z.ZodString;
|
|
2562
2420
|
id: z.ZodString;
|
|
@@ -2583,7 +2441,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2583
2441
|
id: z.ZodString;
|
|
2584
2442
|
schema: z.ZodLiteral<"us_signal">;
|
|
2585
2443
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2586
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2587
2444
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2588
2445
|
identifier: z.ZodString;
|
|
2589
2446
|
id: z.ZodString;
|
|
@@ -2598,7 +2455,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2598
2455
|
identifier: z.ZodString;
|
|
2599
2456
|
id: z.ZodString;
|
|
2600
2457
|
}, z.core.$strip>>>;
|
|
2601
|
-
created: z.ZodString;
|
|
2602
2458
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2603
2459
|
filename: z.ZodString;
|
|
2604
2460
|
created: z.ZodString;
|
|
@@ -2729,7 +2585,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2729
2585
|
identifier: z.ZodString;
|
|
2730
2586
|
id: z.ZodString;
|
|
2731
2587
|
}, z.core.$strip>>;
|
|
2732
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2733
2588
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2734
2589
|
identifier: z.ZodString;
|
|
2735
2590
|
id: z.ZodString;
|
|
@@ -2759,7 +2614,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2759
2614
|
}, z.core.$strip>>>;
|
|
2760
2615
|
id: z.ZodString;
|
|
2761
2616
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2762
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2763
2617
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2764
2618
|
identifier: z.ZodString;
|
|
2765
2619
|
id: z.ZodString;
|
|
@@ -2774,7 +2628,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2774
2628
|
identifier: z.ZodString;
|
|
2775
2629
|
id: z.ZodString;
|
|
2776
2630
|
}, z.core.$strip>>>;
|
|
2777
|
-
created: z.ZodString;
|
|
2778
2631
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2779
2632
|
filename: z.ZodString;
|
|
2780
2633
|
created: z.ZodString;
|
|
@@ -2905,7 +2758,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2905
2758
|
identifier: z.ZodString;
|
|
2906
2759
|
id: z.ZodString;
|
|
2907
2760
|
}, z.core.$strip>>;
|
|
2908
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2909
2761
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2910
2762
|
identifier: z.ZodString;
|
|
2911
2763
|
id: z.ZodString;
|
|
@@ -2935,22 +2787,33 @@ export type SignalDetailsUnionTypeV1 = z.infer<typeof signalDetailsUnionSchemaV1
|
|
|
2935
2787
|
export type EUSignalDetailsTypeV1 = z.infer<typeof euSignalDetailsSchemaV1>;
|
|
2936
2788
|
export type USSignalDetailsTypeV1 = z.infer<typeof usSignalDetailsSchemaV1>;
|
|
2937
2789
|
export type GlobalSignalDetailsTypeV1 = z.infer<typeof globalSignalDetailsSchemaV1>;
|
|
2938
|
-
export declare const
|
|
2790
|
+
export declare const signalByLocationListSchemaV1: z.ZodObject<{
|
|
2939
2791
|
id: z.ZodString;
|
|
2940
|
-
schema: z.
|
|
2792
|
+
schema: z.ZodString;
|
|
2941
2793
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2942
|
-
|
|
2794
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2943
2795
|
identifier: z.ZodString;
|
|
2944
2796
|
id: z.ZodString;
|
|
2945
|
-
}, z.core.$strip
|
|
2946
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2797
|
+
}, z.core.$strip>>>;
|
|
2947
2798
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2948
2799
|
identifier: z.ZodString;
|
|
2949
2800
|
id: z.ZodString;
|
|
2950
2801
|
}, z.core.$strip>>>;
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2802
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2803
|
+
identifier: z.ZodString;
|
|
2804
|
+
id: z.ZodString;
|
|
2805
|
+
}, z.core.$strip>>>;
|
|
2806
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2807
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2808
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2809
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2810
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2811
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2812
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2813
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2814
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2815
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2816
|
+
}, z.core.$strip>>;
|
|
2954
2817
|
geo: z.ZodOptional<z.ZodObject<{
|
|
2955
2818
|
default: z.ZodOptional<z.ZodObject<{
|
|
2956
2819
|
lat: z.ZodNumber;
|
|
@@ -2958,7 +2821,6 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
2958
2821
|
}, z.core.$strip>>;
|
|
2959
2822
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2960
2823
|
}, z.core.$strip>>;
|
|
2961
|
-
headline: z.ZodString;
|
|
2962
2824
|
location: z.ZodArray<z.ZodObject<{
|
|
2963
2825
|
identifier: z.ZodString;
|
|
2964
2826
|
id: z.ZodString;
|
|
@@ -2994,13 +2856,71 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
2994
2856
|
role: z.ZodString;
|
|
2995
2857
|
ref: z.ZodOptional<z.ZodString>;
|
|
2996
2858
|
}, z.core.$strip>>>;
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
2859
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
2860
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
3000
2861
|
identifier: z.ZodString;
|
|
3001
2862
|
id: z.ZodString;
|
|
3002
2863
|
}, z.core.$strip>>;
|
|
3003
|
-
|
|
2864
|
+
}, z.core.$strict>;
|
|
2865
|
+
export type SignalByLocationListTypeV1 = z.infer<typeof signalByLocationListSchemaV1>;
|
|
2866
|
+
export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
2867
|
+
id: z.ZodString;
|
|
2868
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
2869
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
2870
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2871
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2872
|
+
identifier: z.ZodString;
|
|
2873
|
+
id: z.ZodString;
|
|
2874
|
+
}, z.core.$strip>>>;
|
|
2875
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2876
|
+
filename: z.ZodString;
|
|
2877
|
+
created: z.ZodString;
|
|
2878
|
+
document_id: z.ZodString;
|
|
2879
|
+
mimetype: z.ZodString;
|
|
2880
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2881
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2882
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2883
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
2884
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2885
|
+
file: z.ZodOptional<z.ZodString>;
|
|
2886
|
+
url: z.ZodString;
|
|
2887
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2888
|
+
type: z.ZodArray<z.ZodString>;
|
|
2889
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2890
|
+
documentDate: z.ZodString;
|
|
2891
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2892
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2893
|
+
}, z.core.$strip>]>>>;
|
|
2894
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
2895
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2896
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2897
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2898
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2899
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2900
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2901
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2902
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2903
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2904
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2905
|
+
}, z.core.$strip>>;
|
|
2906
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2907
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
2908
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
2909
|
+
lat: z.ZodNumber;
|
|
2910
|
+
lon: z.ZodNumber;
|
|
2911
|
+
}, z.core.$strip>>;
|
|
2912
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2913
|
+
}, z.core.$strip>>;
|
|
2914
|
+
headline: z.ZodString;
|
|
2915
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
2916
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2917
|
+
identifier: z.ZodString;
|
|
2918
|
+
id: z.ZodString;
|
|
2919
|
+
role: z.ZodString;
|
|
2920
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
2921
|
+
}, z.core.$strip>>>;
|
|
2922
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
2923
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3004
2924
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3005
2925
|
identifier: z.ZodString;
|
|
3006
2926
|
id: z.ZodString;
|
|
@@ -3029,17 +2949,42 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3029
2949
|
id: z.ZodString;
|
|
3030
2950
|
schema: z.ZodLiteral<"us_signal">;
|
|
3031
2951
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3032
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3033
|
-
identifier: z.ZodString;
|
|
3034
|
-
id: z.ZodString;
|
|
3035
|
-
}, z.core.$strip>>;
|
|
3036
2952
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3037
2953
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3038
2954
|
identifier: z.ZodString;
|
|
3039
2955
|
id: z.ZodString;
|
|
3040
2956
|
}, z.core.$strip>>>;
|
|
3041
|
-
|
|
2957
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2958
|
+
filename: z.ZodString;
|
|
2959
|
+
created: z.ZodString;
|
|
2960
|
+
document_id: z.ZodString;
|
|
2961
|
+
mimetype: z.ZodString;
|
|
2962
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2963
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2964
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2965
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
2966
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2967
|
+
file: z.ZodOptional<z.ZodString>;
|
|
2968
|
+
url: z.ZodString;
|
|
2969
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2970
|
+
type: z.ZodArray<z.ZodString>;
|
|
2971
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2972
|
+
documentDate: z.ZodString;
|
|
2973
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2974
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2975
|
+
}, z.core.$strip>]>>>;
|
|
3042
2976
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
2977
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2978
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2979
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2980
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2981
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2982
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2983
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2984
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2985
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2986
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2987
|
+
}, z.core.$strip>>;
|
|
3043
2988
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3044
2989
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3045
2990
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3049,34 +2994,6 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3049
2994
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3050
2995
|
}, z.core.$strip>>;
|
|
3051
2996
|
headline: z.ZodString;
|
|
3052
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3053
|
-
identifier: z.ZodString;
|
|
3054
|
-
id: z.ZodString;
|
|
3055
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3056
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3057
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3058
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3059
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3060
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3061
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3062
|
-
_type: z.ZodString;
|
|
3063
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3064
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3065
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3066
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3067
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3068
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3069
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3070
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3071
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3072
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3073
|
-
}, z.core.$strip>>;
|
|
3074
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3075
|
-
lat: z.ZodNumber;
|
|
3076
|
-
lng: z.ZodNumber;
|
|
3077
|
-
}, z.core.$strip>>;
|
|
3078
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3079
|
-
}, z.core.$strip>>;
|
|
3080
2997
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3081
2998
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3082
2999
|
identifier: z.ZodString;
|
|
@@ -3086,15 +3003,10 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3086
3003
|
}, z.core.$strip>>>;
|
|
3087
3004
|
phase: z.ZodOptional<z.ZodString>;
|
|
3088
3005
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3089
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3090
|
-
identifier: z.ZodString;
|
|
3091
|
-
id: z.ZodString;
|
|
3092
|
-
}, z.core.$strip>>;
|
|
3093
3006
|
state: z.ZodArray<z.ZodObject<{
|
|
3094
3007
|
identifier: z.ZodString;
|
|
3095
3008
|
id: z.ZodString;
|
|
3096
3009
|
}, z.core.$strip>>;
|
|
3097
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3098
3010
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3099
3011
|
identifier: z.ZodString;
|
|
3100
3012
|
id: z.ZodString;
|
|
@@ -3126,17 +3038,42 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3126
3038
|
}, z.core.$strip>>>;
|
|
3127
3039
|
id: z.ZodString;
|
|
3128
3040
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3129
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3130
|
-
identifier: z.ZodString;
|
|
3131
|
-
id: z.ZodString;
|
|
3132
|
-
}, z.core.$strip>>;
|
|
3133
3041
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3134
3042
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3135
3043
|
identifier: z.ZodString;
|
|
3136
3044
|
id: z.ZodString;
|
|
3137
3045
|
}, z.core.$strip>>>;
|
|
3138
|
-
|
|
3046
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3047
|
+
filename: z.ZodString;
|
|
3048
|
+
created: z.ZodString;
|
|
3049
|
+
document_id: z.ZodString;
|
|
3050
|
+
mimetype: z.ZodString;
|
|
3051
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3052
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3053
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3054
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3055
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3056
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3057
|
+
url: z.ZodString;
|
|
3058
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3059
|
+
type: z.ZodArray<z.ZodString>;
|
|
3060
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3061
|
+
documentDate: z.ZodString;
|
|
3062
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3063
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3064
|
+
}, z.core.$strip>]>>>;
|
|
3139
3065
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3066
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3067
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3068
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3069
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3070
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3071
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3072
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3073
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3074
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3075
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3076
|
+
}, z.core.$strip>>;
|
|
3140
3077
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3141
3078
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3142
3079
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3146,34 +3083,6 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3146
3083
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3147
3084
|
}, z.core.$strip>>;
|
|
3148
3085
|
headline: z.ZodString;
|
|
3149
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3150
|
-
identifier: z.ZodString;
|
|
3151
|
-
id: z.ZodString;
|
|
3152
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3153
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3154
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3155
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3156
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3157
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3158
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3159
|
-
_type: z.ZodString;
|
|
3160
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3161
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3162
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3163
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3164
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3165
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3166
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3167
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3168
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3169
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3170
|
-
}, z.core.$strip>>;
|
|
3171
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3172
|
-
lat: z.ZodNumber;
|
|
3173
|
-
lng: z.ZodNumber;
|
|
3174
|
-
}, z.core.$strip>>;
|
|
3175
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3176
|
-
}, z.core.$strip>>;
|
|
3177
3086
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3178
3087
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3179
3088
|
identifier: z.ZodString;
|
|
@@ -3183,15 +3092,6 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3183
3092
|
}, z.core.$strip>>>;
|
|
3184
3093
|
phase: z.ZodOptional<z.ZodString>;
|
|
3185
3094
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3186
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3187
|
-
identifier: z.ZodString;
|
|
3188
|
-
id: z.ZodString;
|
|
3189
|
-
}, z.core.$strip>>;
|
|
3190
|
-
state: z.ZodArray<z.ZodObject<{
|
|
3191
|
-
identifier: z.ZodString;
|
|
3192
|
-
id: z.ZodString;
|
|
3193
|
-
}, z.core.$strip>>;
|
|
3194
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3195
3095
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3196
3096
|
identifier: z.ZodString;
|
|
3197
3097
|
id: z.ZodString;
|
|
@@ -3215,23 +3115,52 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3215
3115
|
id: z.ZodString;
|
|
3216
3116
|
}, z.core.$strip>>;
|
|
3217
3117
|
schema: z.ZodLiteral<"global_signal">;
|
|
3118
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3119
|
+
identifier: z.ZodString;
|
|
3120
|
+
id: z.ZodString;
|
|
3121
|
+
}, z.core.$strip>>>;
|
|
3218
3122
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3219
3123
|
}, z.core.$strict>;
|
|
3220
3124
|
export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3221
3125
|
id: z.ZodString;
|
|
3222
3126
|
schema: z.ZodLiteral<"eu_signal">;
|
|
3223
3127
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3224
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3225
|
-
identifier: z.ZodString;
|
|
3226
|
-
id: z.ZodString;
|
|
3227
|
-
}, z.core.$strip>>;
|
|
3228
3128
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3229
3129
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3230
3130
|
identifier: z.ZodString;
|
|
3231
3131
|
id: z.ZodString;
|
|
3232
3132
|
}, z.core.$strip>>>;
|
|
3233
|
-
|
|
3133
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3134
|
+
filename: z.ZodString;
|
|
3135
|
+
created: z.ZodString;
|
|
3136
|
+
document_id: z.ZodString;
|
|
3137
|
+
mimetype: z.ZodString;
|
|
3138
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3139
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3140
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3141
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3142
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3143
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3144
|
+
url: z.ZodString;
|
|
3145
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3146
|
+
type: z.ZodArray<z.ZodString>;
|
|
3147
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3148
|
+
documentDate: z.ZodString;
|
|
3149
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3150
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3151
|
+
}, z.core.$strip>]>>>;
|
|
3234
3152
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3153
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3154
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3155
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3156
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3157
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3158
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3159
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3160
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3161
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3162
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3163
|
+
}, z.core.$strip>>;
|
|
3235
3164
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3236
3165
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3237
3166
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3241,34 +3170,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3241
3170
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3242
3171
|
}, z.core.$strip>>;
|
|
3243
3172
|
headline: z.ZodString;
|
|
3244
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3245
|
-
identifier: z.ZodString;
|
|
3246
|
-
id: z.ZodString;
|
|
3247
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3248
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3249
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3250
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3251
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3252
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3253
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3254
|
-
_type: z.ZodString;
|
|
3255
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3256
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3257
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3258
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3259
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3260
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3261
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3262
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3263
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3264
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3265
|
-
}, z.core.$strip>>;
|
|
3266
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3267
|
-
lat: z.ZodNumber;
|
|
3268
|
-
lng: z.ZodNumber;
|
|
3269
|
-
}, z.core.$strip>>;
|
|
3270
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3271
|
-
}, z.core.$strip>>;
|
|
3272
3173
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3273
3174
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3274
3175
|
identifier: z.ZodString;
|
|
@@ -3278,11 +3179,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3278
3179
|
}, z.core.$strip>>>;
|
|
3279
3180
|
phase: z.ZodOptional<z.ZodString>;
|
|
3280
3181
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3281
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3282
|
-
identifier: z.ZodString;
|
|
3283
|
-
id: z.ZodString;
|
|
3284
|
-
}, z.core.$strip>>;
|
|
3285
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3286
3182
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3287
3183
|
identifier: z.ZodString;
|
|
3288
3184
|
id: z.ZodString;
|
|
@@ -3310,17 +3206,42 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3310
3206
|
id: z.ZodString;
|
|
3311
3207
|
schema: z.ZodLiteral<"us_signal">;
|
|
3312
3208
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3313
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3314
|
-
identifier: z.ZodString;
|
|
3315
|
-
id: z.ZodString;
|
|
3316
|
-
}, z.core.$strip>>;
|
|
3317
3209
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3318
3210
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3319
3211
|
identifier: z.ZodString;
|
|
3320
3212
|
id: z.ZodString;
|
|
3321
3213
|
}, z.core.$strip>>>;
|
|
3322
|
-
|
|
3214
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3215
|
+
filename: z.ZodString;
|
|
3216
|
+
created: z.ZodString;
|
|
3217
|
+
document_id: z.ZodString;
|
|
3218
|
+
mimetype: z.ZodString;
|
|
3219
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3220
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3221
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3222
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3223
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3224
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3225
|
+
url: z.ZodString;
|
|
3226
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3227
|
+
type: z.ZodArray<z.ZodString>;
|
|
3228
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3229
|
+
documentDate: z.ZodString;
|
|
3230
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3231
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3232
|
+
}, z.core.$strip>]>>>;
|
|
3323
3233
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3234
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3235
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3236
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3237
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3238
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3239
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3240
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3241
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3242
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3243
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3244
|
+
}, z.core.$strip>>;
|
|
3324
3245
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3325
3246
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3326
3247
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3330,34 +3251,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3330
3251
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3331
3252
|
}, z.core.$strip>>;
|
|
3332
3253
|
headline: z.ZodString;
|
|
3333
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3334
|
-
identifier: z.ZodString;
|
|
3335
|
-
id: z.ZodString;
|
|
3336
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3337
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3338
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3339
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3340
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3341
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3342
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3343
|
-
_type: z.ZodString;
|
|
3344
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3345
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3346
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3347
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3348
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3349
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3350
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3351
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3352
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3353
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3354
|
-
}, z.core.$strip>>;
|
|
3355
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3356
|
-
lat: z.ZodNumber;
|
|
3357
|
-
lng: z.ZodNumber;
|
|
3358
|
-
}, z.core.$strip>>;
|
|
3359
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3360
|
-
}, z.core.$strip>>;
|
|
3361
3254
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3362
3255
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3363
3256
|
identifier: z.ZodString;
|
|
@@ -3367,15 +3260,10 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3367
3260
|
}, z.core.$strip>>>;
|
|
3368
3261
|
phase: z.ZodOptional<z.ZodString>;
|
|
3369
3262
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3370
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3371
|
-
identifier: z.ZodString;
|
|
3372
|
-
id: z.ZodString;
|
|
3373
|
-
}, z.core.$strip>>;
|
|
3374
3263
|
state: z.ZodArray<z.ZodObject<{
|
|
3375
3264
|
identifier: z.ZodString;
|
|
3376
3265
|
id: z.ZodString;
|
|
3377
3266
|
}, z.core.$strip>>;
|
|
3378
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3379
3267
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3380
3268
|
identifier: z.ZodString;
|
|
3381
3269
|
id: z.ZodString;
|
|
@@ -3406,17 +3294,42 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3406
3294
|
}, z.core.$strip>>>;
|
|
3407
3295
|
id: z.ZodString;
|
|
3408
3296
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3409
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3410
|
-
identifier: z.ZodString;
|
|
3411
|
-
id: z.ZodString;
|
|
3412
|
-
}, z.core.$strip>>;
|
|
3413
3297
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3414
3298
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3415
3299
|
identifier: z.ZodString;
|
|
3416
3300
|
id: z.ZodString;
|
|
3417
3301
|
}, z.core.$strip>>>;
|
|
3418
|
-
|
|
3302
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3303
|
+
filename: z.ZodString;
|
|
3304
|
+
created: z.ZodString;
|
|
3305
|
+
document_id: z.ZodString;
|
|
3306
|
+
mimetype: z.ZodString;
|
|
3307
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3308
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3309
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3310
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3311
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3312
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3313
|
+
url: z.ZodString;
|
|
3314
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3315
|
+
type: z.ZodArray<z.ZodString>;
|
|
3316
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3317
|
+
documentDate: z.ZodString;
|
|
3318
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3319
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3320
|
+
}, z.core.$strip>]>>>;
|
|
3419
3321
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3322
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3323
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3324
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3325
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3326
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3327
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3328
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3329
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3330
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3331
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3332
|
+
}, z.core.$strip>>;
|
|
3420
3333
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3421
3334
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3422
3335
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3426,36 +3339,8 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3426
3339
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3427
3340
|
}, z.core.$strip>>;
|
|
3428
3341
|
headline: z.ZodString;
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
id: z.ZodString;
|
|
3432
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3433
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3434
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3435
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3436
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3437
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3438
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3439
|
-
_type: z.ZodString;
|
|
3440
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3441
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3442
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3443
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3444
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3445
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3446
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3447
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3448
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3449
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3450
|
-
}, z.core.$strip>>;
|
|
3451
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3452
|
-
lat: z.ZodNumber;
|
|
3453
|
-
lng: z.ZodNumber;
|
|
3454
|
-
}, z.core.$strip>>;
|
|
3455
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3456
|
-
}, z.core.$strip>>;
|
|
3457
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
3458
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3342
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
3343
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3459
3344
|
identifier: z.ZodString;
|
|
3460
3345
|
id: z.ZodString;
|
|
3461
3346
|
role: z.ZodString;
|
|
@@ -3463,15 +3348,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3463
3348
|
}, z.core.$strip>>>;
|
|
3464
3349
|
phase: z.ZodOptional<z.ZodString>;
|
|
3465
3350
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3466
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3467
|
-
identifier: z.ZodString;
|
|
3468
|
-
id: z.ZodString;
|
|
3469
|
-
}, z.core.$strip>>;
|
|
3470
|
-
state: z.ZodArray<z.ZodObject<{
|
|
3471
|
-
identifier: z.ZodString;
|
|
3472
|
-
id: z.ZodString;
|
|
3473
|
-
}, z.core.$strip>>;
|
|
3474
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3475
3351
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3476
3352
|
identifier: z.ZodString;
|
|
3477
3353
|
id: z.ZodString;
|
|
@@ -3495,6 +3371,10 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3495
3371
|
id: z.ZodString;
|
|
3496
3372
|
}, z.core.$strip>>;
|
|
3497
3373
|
schema: z.ZodLiteral<"global_signal">;
|
|
3374
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3375
|
+
identifier: z.ZodString;
|
|
3376
|
+
id: z.ZodString;
|
|
3377
|
+
}, z.core.$strip>>>;
|
|
3498
3378
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3499
3379
|
}, z.core.$strict>], "schema">;
|
|
3500
3380
|
export type SignalExportUnionTypeV1 = z.infer<typeof signalExportUnionSchemaV1>;
|
|
@@ -3504,36 +3384,6 @@ export type GlobalSignalExportTypeV1 = z.infer<typeof globalSignalExportSchemaV1
|
|
|
3504
3384
|
export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
3505
3385
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
3506
3386
|
body: z.ZodOptional<z.ZodString>;
|
|
3507
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3508
|
-
filename: z.ZodString;
|
|
3509
|
-
created: z.ZodString;
|
|
3510
|
-
document_id: z.ZodString;
|
|
3511
|
-
mimetype: z.ZodString;
|
|
3512
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3513
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3514
|
-
key: z.ZodOptional<z.ZodString>;
|
|
3515
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
3516
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
3517
|
-
file: z.ZodOptional<z.ZodString>;
|
|
3518
|
-
url: z.ZodString;
|
|
3519
|
-
created: z.ZodOptional<z.ZodString>;
|
|
3520
|
-
type: z.ZodArray<z.ZodString>;
|
|
3521
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3522
|
-
documentDate: z.ZodString;
|
|
3523
|
-
source: z.ZodOptional<z.ZodString>;
|
|
3524
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3525
|
-
}, z.core.$strip>]>>>;
|
|
3526
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3527
|
-
full: z.ZodOptional<z.ZodString>;
|
|
3528
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3529
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3530
|
-
street: z.ZodOptional<z.ZodString>;
|
|
3531
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
3532
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
3533
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3534
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3535
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3536
|
-
}, z.core.$strip>>;
|
|
3537
3387
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3538
3388
|
id: z.ZodOptional<z.ZodString>;
|
|
3539
3389
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3555,6 +3405,10 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3555
3405
|
id: z.ZodString;
|
|
3556
3406
|
identifier: z.ZodString;
|
|
3557
3407
|
}, z.core.$strip>>>;
|
|
3408
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3409
|
+
identifier: z.ZodString;
|
|
3410
|
+
id: z.ZodString;
|
|
3411
|
+
}, z.core.$strip>>;
|
|
3558
3412
|
id: z.ZodString;
|
|
3559
3413
|
schema: z.ZodLiteral<"eu_signal">;
|
|
3560
3414
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -3563,8 +3417,37 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3563
3417
|
identifier: z.ZodString;
|
|
3564
3418
|
id: z.ZodString;
|
|
3565
3419
|
}, z.core.$strip>>>;
|
|
3566
|
-
|
|
3420
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3421
|
+
filename: z.ZodString;
|
|
3422
|
+
created: z.ZodString;
|
|
3423
|
+
document_id: z.ZodString;
|
|
3424
|
+
mimetype: z.ZodString;
|
|
3425
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3426
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3427
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3428
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3429
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3430
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3431
|
+
url: z.ZodString;
|
|
3432
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3433
|
+
type: z.ZodArray<z.ZodString>;
|
|
3434
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3435
|
+
documentDate: z.ZodString;
|
|
3436
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3437
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3438
|
+
}, z.core.$strip>]>>>;
|
|
3567
3439
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3440
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3441
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3442
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3443
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3444
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3445
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3446
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3447
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3448
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3449
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3450
|
+
}, z.core.$strip>>;
|
|
3568
3451
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3569
3452
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3570
3453
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3574,34 +3457,6 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3574
3457
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3575
3458
|
}, z.core.$strip>>;
|
|
3576
3459
|
headline: z.ZodString;
|
|
3577
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3578
|
-
identifier: z.ZodString;
|
|
3579
|
-
id: z.ZodString;
|
|
3580
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3581
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3582
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3583
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3584
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3585
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3586
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3587
|
-
_type: z.ZodString;
|
|
3588
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3589
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3590
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3591
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3592
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3593
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3594
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3595
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3596
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3597
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3598
|
-
}, z.core.$strip>>;
|
|
3599
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3600
|
-
lat: z.ZodNumber;
|
|
3601
|
-
lng: z.ZodNumber;
|
|
3602
|
-
}, z.core.$strip>>;
|
|
3603
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3604
|
-
}, z.core.$strip>>;
|
|
3605
3460
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3606
3461
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3607
3462
|
identifier: z.ZodString;
|
|
@@ -3611,11 +3466,6 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3611
3466
|
}, z.core.$strip>>>;
|
|
3612
3467
|
phase: z.ZodOptional<z.ZodString>;
|
|
3613
3468
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3614
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3615
|
-
identifier: z.ZodString;
|
|
3616
|
-
id: z.ZodString;
|
|
3617
|
-
}, z.core.$strip>>;
|
|
3618
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3619
3469
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3620
3470
|
identifier: z.ZodString;
|
|
3621
3471
|
id: z.ZodString;
|
|
@@ -3642,10 +3492,39 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3642
3492
|
identifier: z.ZodString;
|
|
3643
3493
|
id: z.ZodString;
|
|
3644
3494
|
}, z.core.$strip>>;
|
|
3495
|
+
created: z.ZodString;
|
|
3645
3496
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3646
3497
|
identifier: z.ZodString;
|
|
3647
3498
|
id: z.ZodString;
|
|
3648
3499
|
}, z.core.$strip>>>;
|
|
3500
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3501
|
+
identifier: z.ZodString;
|
|
3502
|
+
id: z.ZodString;
|
|
3503
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3504
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3505
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3506
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3507
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3508
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3509
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3510
|
+
_type: z.ZodString;
|
|
3511
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3512
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3513
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3514
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3515
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3517
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3518
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3519
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3520
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3521
|
+
}, z.core.$strip>>;
|
|
3522
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3523
|
+
lat: z.ZodNumber;
|
|
3524
|
+
lng: z.ZodNumber;
|
|
3525
|
+
}, z.core.$strip>>;
|
|
3526
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3527
|
+
}, z.core.$strip>>>;
|
|
3649
3528
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3650
3529
|
identifier: z.ZodString;
|
|
3651
3530
|
id: z.ZodString;
|
|
@@ -3654,6 +3533,7 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3654
3533
|
identifier: z.ZodString;
|
|
3655
3534
|
id: z.ZodString;
|
|
3656
3535
|
}, z.core.$strip>>>;
|
|
3536
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
3657
3537
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3658
3538
|
}, z.core.$strip>;
|
|
3659
3539
|
export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
@@ -3663,36 +3543,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3663
3543
|
identifier: z.ZodString;
|
|
3664
3544
|
id: z.ZodString;
|
|
3665
3545
|
}, z.core.$strip>>>;
|
|
3666
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3667
|
-
filename: z.ZodString;
|
|
3668
|
-
created: z.ZodString;
|
|
3669
|
-
document_id: z.ZodString;
|
|
3670
|
-
mimetype: z.ZodString;
|
|
3671
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3672
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3673
|
-
key: z.ZodOptional<z.ZodString>;
|
|
3674
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
3675
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
3676
|
-
file: z.ZodOptional<z.ZodString>;
|
|
3677
|
-
url: z.ZodString;
|
|
3678
|
-
created: z.ZodOptional<z.ZodString>;
|
|
3679
|
-
type: z.ZodArray<z.ZodString>;
|
|
3680
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3681
|
-
documentDate: z.ZodString;
|
|
3682
|
-
source: z.ZodOptional<z.ZodString>;
|
|
3683
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3684
|
-
}, z.core.$strip>]>>>;
|
|
3685
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3686
|
-
full: z.ZodOptional<z.ZodString>;
|
|
3687
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3688
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3689
|
-
street: z.ZodOptional<z.ZodString>;
|
|
3690
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
3691
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
3692
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3693
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3694
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3695
|
-
}, z.core.$strip>>;
|
|
3696
3546
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3697
3547
|
id: z.ZodOptional<z.ZodString>;
|
|
3698
3548
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3726,6 +3576,10 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3726
3576
|
identifier: z.ZodString;
|
|
3727
3577
|
id: z.ZodString;
|
|
3728
3578
|
}, z.core.$strip>>>;
|
|
3579
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3580
|
+
identifier: z.ZodString;
|
|
3581
|
+
id: z.ZodString;
|
|
3582
|
+
}, z.core.$strip>>;
|
|
3729
3583
|
id: z.ZodString;
|
|
3730
3584
|
schema: z.ZodLiteral<"us_signal">;
|
|
3731
3585
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -3734,8 +3588,37 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3734
3588
|
identifier: z.ZodString;
|
|
3735
3589
|
id: z.ZodString;
|
|
3736
3590
|
}, z.core.$strip>>>;
|
|
3737
|
-
|
|
3591
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3592
|
+
filename: z.ZodString;
|
|
3593
|
+
created: z.ZodString;
|
|
3594
|
+
document_id: z.ZodString;
|
|
3595
|
+
mimetype: z.ZodString;
|
|
3596
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3597
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3598
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3599
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3600
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3601
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3602
|
+
url: z.ZodString;
|
|
3603
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3604
|
+
type: z.ZodArray<z.ZodString>;
|
|
3605
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3606
|
+
documentDate: z.ZodString;
|
|
3607
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3608
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3609
|
+
}, z.core.$strip>]>>>;
|
|
3738
3610
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3611
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3612
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3613
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3614
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3615
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3616
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3617
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3618
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3619
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3620
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3621
|
+
}, z.core.$strip>>;
|
|
3739
3622
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3740
3623
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3741
3624
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3745,34 +3628,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3745
3628
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3746
3629
|
}, z.core.$strip>>;
|
|
3747
3630
|
headline: z.ZodString;
|
|
3748
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3749
|
-
identifier: z.ZodString;
|
|
3750
|
-
id: z.ZodString;
|
|
3751
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3752
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3753
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3754
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3755
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3756
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3757
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3758
|
-
_type: z.ZodString;
|
|
3759
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3760
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3761
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3762
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3763
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3764
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3765
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3766
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3767
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3768
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3769
|
-
}, z.core.$strip>>;
|
|
3770
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3771
|
-
lat: z.ZodNumber;
|
|
3772
|
-
lng: z.ZodNumber;
|
|
3773
|
-
}, z.core.$strip>>;
|
|
3774
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3775
|
-
}, z.core.$strip>>;
|
|
3776
3631
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3777
3632
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3778
3633
|
identifier: z.ZodString;
|
|
@@ -3782,15 +3637,10 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3782
3637
|
}, z.core.$strip>>>;
|
|
3783
3638
|
phase: z.ZodOptional<z.ZodString>;
|
|
3784
3639
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3785
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3786
|
-
identifier: z.ZodString;
|
|
3787
|
-
id: z.ZodString;
|
|
3788
|
-
}, z.core.$strip>>;
|
|
3789
3640
|
state: z.ZodArray<z.ZodObject<{
|
|
3790
3641
|
identifier: z.ZodString;
|
|
3791
3642
|
id: z.ZodString;
|
|
3792
3643
|
}, z.core.$strip>>;
|
|
3793
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3794
3644
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3795
3645
|
identifier: z.ZodString;
|
|
3796
3646
|
id: z.ZodString;
|
|
@@ -3817,6 +3667,7 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3817
3667
|
identifier: z.ZodString;
|
|
3818
3668
|
id: z.ZodString;
|
|
3819
3669
|
}, z.core.$strip>>;
|
|
3670
|
+
created: z.ZodString;
|
|
3820
3671
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
3821
3672
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
3822
3673
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3827,6 +3678,34 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3827
3678
|
identifier: z.ZodString;
|
|
3828
3679
|
id: z.ZodString;
|
|
3829
3680
|
}, z.core.$strip>>>;
|
|
3681
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3682
|
+
identifier: z.ZodString;
|
|
3683
|
+
id: z.ZodString;
|
|
3684
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3685
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3686
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3687
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3688
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3689
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3690
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3691
|
+
_type: z.ZodString;
|
|
3692
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3693
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3694
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3695
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3696
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3697
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3698
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3699
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3700
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3701
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3702
|
+
}, z.core.$strip>>;
|
|
3703
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3704
|
+
lat: z.ZodNumber;
|
|
3705
|
+
lng: z.ZodNumber;
|
|
3706
|
+
}, z.core.$strip>>;
|
|
3707
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3708
|
+
}, z.core.$strip>>>;
|
|
3830
3709
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3831
3710
|
identifier: z.ZodString;
|
|
3832
3711
|
id: z.ZodString;
|
|
@@ -3835,6 +3714,7 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3835
3714
|
identifier: z.ZodString;
|
|
3836
3715
|
id: z.ZodString;
|
|
3837
3716
|
}, z.core.$strip>>>;
|
|
3717
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
3838
3718
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3839
3719
|
}, z.core.$strip>;
|
|
3840
3720
|
export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
@@ -3848,36 +3728,6 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3848
3728
|
identifier: z.ZodString;
|
|
3849
3729
|
id: z.ZodString;
|
|
3850
3730
|
}, z.core.$strip>>>;
|
|
3851
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3852
|
-
filename: z.ZodString;
|
|
3853
|
-
created: z.ZodString;
|
|
3854
|
-
document_id: z.ZodString;
|
|
3855
|
-
mimetype: z.ZodString;
|
|
3856
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3857
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3858
|
-
key: z.ZodOptional<z.ZodString>;
|
|
3859
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
3860
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
3861
|
-
file: z.ZodOptional<z.ZodString>;
|
|
3862
|
-
url: z.ZodString;
|
|
3863
|
-
created: z.ZodOptional<z.ZodString>;
|
|
3864
|
-
type: z.ZodArray<z.ZodString>;
|
|
3865
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3866
|
-
documentDate: z.ZodString;
|
|
3867
|
-
source: z.ZodOptional<z.ZodString>;
|
|
3868
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3869
|
-
}, z.core.$strip>]>>>;
|
|
3870
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3871
|
-
full: z.ZodOptional<z.ZodString>;
|
|
3872
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3873
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3874
|
-
street: z.ZodOptional<z.ZodString>;
|
|
3875
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
3876
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
3877
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3878
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3879
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3880
|
-
}, z.core.$strip>>;
|
|
3881
3731
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3882
3732
|
id: z.ZodOptional<z.ZodString>;
|
|
3883
3733
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3911,6 +3761,10 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3911
3761
|
identifier: z.ZodString;
|
|
3912
3762
|
id: z.ZodString;
|
|
3913
3763
|
}, z.core.$strip>>>;
|
|
3764
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3765
|
+
identifier: z.ZodString;
|
|
3766
|
+
id: z.ZodString;
|
|
3767
|
+
}, z.core.$strip>>;
|
|
3914
3768
|
id: z.ZodString;
|
|
3915
3769
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3916
3770
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3918,8 +3772,37 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3918
3772
|
identifier: z.ZodString;
|
|
3919
3773
|
id: z.ZodString;
|
|
3920
3774
|
}, z.core.$strip>>>;
|
|
3921
|
-
|
|
3775
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3776
|
+
filename: z.ZodString;
|
|
3777
|
+
created: z.ZodString;
|
|
3778
|
+
document_id: z.ZodString;
|
|
3779
|
+
mimetype: z.ZodString;
|
|
3780
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3781
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3782
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3783
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3784
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3785
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3786
|
+
url: z.ZodString;
|
|
3787
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3788
|
+
type: z.ZodArray<z.ZodString>;
|
|
3789
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3790
|
+
documentDate: z.ZodString;
|
|
3791
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3792
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3793
|
+
}, z.core.$strip>]>>>;
|
|
3922
3794
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3795
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3796
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3797
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3798
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3799
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3800
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3801
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3802
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3803
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3804
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3805
|
+
}, z.core.$strip>>;
|
|
3923
3806
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3924
3807
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3925
3808
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3929,34 +3812,6 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3929
3812
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3930
3813
|
}, z.core.$strip>>;
|
|
3931
3814
|
headline: z.ZodString;
|
|
3932
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3933
|
-
identifier: z.ZodString;
|
|
3934
|
-
id: z.ZodString;
|
|
3935
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3936
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
3937
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3938
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3939
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3940
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
3941
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3942
|
-
_type: z.ZodString;
|
|
3943
|
-
city: z.ZodOptional<z.ZodString>;
|
|
3944
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
3945
|
-
country: z.ZodOptional<z.ZodString>;
|
|
3946
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
3947
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
3948
|
-
county: z.ZodOptional<z.ZodString>;
|
|
3949
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
3950
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
3951
|
-
state: z.ZodOptional<z.ZodString>;
|
|
3952
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
3953
|
-
}, z.core.$strip>>;
|
|
3954
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
3955
|
-
lat: z.ZodNumber;
|
|
3956
|
-
lng: z.ZodNumber;
|
|
3957
|
-
}, z.core.$strip>>;
|
|
3958
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
3959
|
-
}, z.core.$strip>>;
|
|
3960
3815
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3961
3816
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3962
3817
|
identifier: z.ZodString;
|
|
@@ -3966,15 +3821,10 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3966
3821
|
}, z.core.$strip>>>;
|
|
3967
3822
|
phase: z.ZodOptional<z.ZodString>;
|
|
3968
3823
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3969
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3970
|
-
identifier: z.ZodString;
|
|
3971
|
-
id: z.ZodString;
|
|
3972
|
-
}, z.core.$strip>>;
|
|
3973
3824
|
state: z.ZodArray<z.ZodObject<{
|
|
3974
3825
|
identifier: z.ZodString;
|
|
3975
3826
|
id: z.ZodString;
|
|
3976
3827
|
}, z.core.$strip>>;
|
|
3977
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3978
3828
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3979
3829
|
identifier: z.ZodString;
|
|
3980
3830
|
id: z.ZodString;
|
|
@@ -4001,6 +3851,7 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4001
3851
|
identifier: z.ZodString;
|
|
4002
3852
|
id: z.ZodString;
|
|
4003
3853
|
}, z.core.$strip>>;
|
|
3854
|
+
created: z.ZodString;
|
|
4004
3855
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4005
3856
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4006
3857
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4011,6 +3862,34 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4011
3862
|
identifier: z.ZodString;
|
|
4012
3863
|
id: z.ZodString;
|
|
4013
3864
|
}, z.core.$strip>>>;
|
|
3865
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3866
|
+
identifier: z.ZodString;
|
|
3867
|
+
id: z.ZodString;
|
|
3868
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3869
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3870
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3871
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3872
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3873
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3874
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3875
|
+
_type: z.ZodString;
|
|
3876
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3877
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3878
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3879
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3880
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3881
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3882
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3883
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3884
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3885
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3886
|
+
}, z.core.$strip>>;
|
|
3887
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3888
|
+
lat: z.ZodNumber;
|
|
3889
|
+
lng: z.ZodNumber;
|
|
3890
|
+
}, z.core.$strip>>;
|
|
3891
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3892
|
+
}, z.core.$strip>>>;
|
|
4014
3893
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4015
3894
|
identifier: z.ZodString;
|
|
4016
3895
|
id: z.ZodString;
|
|
@@ -4019,42 +3898,13 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4019
3898
|
identifier: z.ZodString;
|
|
4020
3899
|
id: z.ZodString;
|
|
4021
3900
|
}, z.core.$strip>>>;
|
|
3901
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4022
3902
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4023
3903
|
schema: z.ZodLiteral<"global_signal">;
|
|
4024
3904
|
}, z.core.$strip>;
|
|
4025
3905
|
export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
4026
3906
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4027
3907
|
body: z.ZodOptional<z.ZodString>;
|
|
4028
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4029
|
-
filename: z.ZodString;
|
|
4030
|
-
created: z.ZodString;
|
|
4031
|
-
document_id: z.ZodString;
|
|
4032
|
-
mimetype: z.ZodString;
|
|
4033
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4034
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4035
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4036
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4037
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4038
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4039
|
-
url: z.ZodString;
|
|
4040
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4041
|
-
type: z.ZodArray<z.ZodString>;
|
|
4042
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4043
|
-
documentDate: z.ZodString;
|
|
4044
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4045
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4046
|
-
}, z.core.$strip>]>>>;
|
|
4047
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4048
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4049
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4050
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4051
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4052
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4053
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4054
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4055
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4056
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4057
|
-
}, z.core.$strip>>;
|
|
4058
3908
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4059
3909
|
id: z.ZodOptional<z.ZodString>;
|
|
4060
3910
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4076,6 +3926,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4076
3926
|
id: z.ZodString;
|
|
4077
3927
|
identifier: z.ZodString;
|
|
4078
3928
|
}, z.core.$strip>>>;
|
|
3929
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3930
|
+
identifier: z.ZodString;
|
|
3931
|
+
id: z.ZodString;
|
|
3932
|
+
}, z.core.$strip>>;
|
|
4079
3933
|
id: z.ZodString;
|
|
4080
3934
|
schema: z.ZodLiteral<"eu_signal">;
|
|
4081
3935
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -4084,8 +3938,37 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4084
3938
|
identifier: z.ZodString;
|
|
4085
3939
|
id: z.ZodString;
|
|
4086
3940
|
}, z.core.$strip>>>;
|
|
4087
|
-
|
|
3941
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3942
|
+
filename: z.ZodString;
|
|
3943
|
+
created: z.ZodString;
|
|
3944
|
+
document_id: z.ZodString;
|
|
3945
|
+
mimetype: z.ZodString;
|
|
3946
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3947
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3948
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3949
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3950
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3951
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3952
|
+
url: z.ZodString;
|
|
3953
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3954
|
+
type: z.ZodArray<z.ZodString>;
|
|
3955
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3956
|
+
documentDate: z.ZodString;
|
|
3957
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3958
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3959
|
+
}, z.core.$strip>]>>>;
|
|
4088
3960
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3961
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3962
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3963
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3964
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3965
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3966
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3967
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3968
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3969
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3970
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3971
|
+
}, z.core.$strip>>;
|
|
4089
3972
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4090
3973
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4091
3974
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4095,34 +3978,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4095
3978
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4096
3979
|
}, z.core.$strip>>;
|
|
4097
3980
|
headline: z.ZodString;
|
|
4098
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4099
|
-
identifier: z.ZodString;
|
|
4100
|
-
id: z.ZodString;
|
|
4101
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4102
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4103
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4104
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4105
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4106
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4107
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4108
|
-
_type: z.ZodString;
|
|
4109
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4110
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4111
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4112
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4113
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4114
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4115
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4116
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4117
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4118
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4119
|
-
}, z.core.$strip>>;
|
|
4120
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4121
|
-
lat: z.ZodNumber;
|
|
4122
|
-
lng: z.ZodNumber;
|
|
4123
|
-
}, z.core.$strip>>;
|
|
4124
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4125
|
-
}, z.core.$strip>>;
|
|
4126
3981
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4127
3982
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4128
3983
|
identifier: z.ZodString;
|
|
@@ -4132,11 +3987,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4132
3987
|
}, z.core.$strip>>>;
|
|
4133
3988
|
phase: z.ZodOptional<z.ZodString>;
|
|
4134
3989
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4135
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
4136
|
-
identifier: z.ZodString;
|
|
4137
|
-
id: z.ZodString;
|
|
4138
|
-
}, z.core.$strip>>;
|
|
4139
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4140
3990
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4141
3991
|
identifier: z.ZodString;
|
|
4142
3992
|
id: z.ZodString;
|
|
@@ -4163,18 +4013,48 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4163
4013
|
identifier: z.ZodString;
|
|
4164
4014
|
id: z.ZodString;
|
|
4165
4015
|
}, z.core.$strip>>;
|
|
4016
|
+
created: z.ZodString;
|
|
4166
4017
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4167
4018
|
identifier: z.ZodString;
|
|
4168
4019
|
id: z.ZodString;
|
|
4169
4020
|
}, z.core.$strip>>>;
|
|
4170
|
-
|
|
4021
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4171
4022
|
identifier: z.ZodString;
|
|
4172
4023
|
id: z.ZodString;
|
|
4173
|
-
|
|
4024
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4025
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4026
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4027
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4028
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4029
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4030
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4031
|
+
_type: z.ZodString;
|
|
4032
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4033
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4034
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4035
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4036
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4037
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4038
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4039
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4040
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4041
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4042
|
+
}, z.core.$strip>>;
|
|
4043
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4044
|
+
lat: z.ZodNumber;
|
|
4045
|
+
lng: z.ZodNumber;
|
|
4046
|
+
}, z.core.$strip>>;
|
|
4047
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4048
|
+
}, z.core.$strip>>>;
|
|
4049
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4050
|
+
identifier: z.ZodString;
|
|
4051
|
+
id: z.ZodString;
|
|
4052
|
+
}, z.core.$strip>>>;
|
|
4174
4053
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4175
4054
|
identifier: z.ZodString;
|
|
4176
4055
|
id: z.ZodString;
|
|
4177
4056
|
}, z.core.$strip>>>;
|
|
4057
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4178
4058
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4179
4059
|
}, z.core.$strip>, z.ZodObject<{
|
|
4180
4060
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
@@ -4183,36 +4063,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4183
4063
|
identifier: z.ZodString;
|
|
4184
4064
|
id: z.ZodString;
|
|
4185
4065
|
}, z.core.$strip>>>;
|
|
4186
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4187
|
-
filename: z.ZodString;
|
|
4188
|
-
created: z.ZodString;
|
|
4189
|
-
document_id: z.ZodString;
|
|
4190
|
-
mimetype: z.ZodString;
|
|
4191
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4192
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4193
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4194
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4195
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4196
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4197
|
-
url: z.ZodString;
|
|
4198
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4199
|
-
type: z.ZodArray<z.ZodString>;
|
|
4200
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4201
|
-
documentDate: z.ZodString;
|
|
4202
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4203
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4204
|
-
}, z.core.$strip>]>>>;
|
|
4205
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4206
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4207
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4208
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4209
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4210
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4211
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4212
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4213
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4214
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4215
|
-
}, z.core.$strip>>;
|
|
4216
4066
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4217
4067
|
id: z.ZodOptional<z.ZodString>;
|
|
4218
4068
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4246,6 +4096,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4246
4096
|
identifier: z.ZodString;
|
|
4247
4097
|
id: z.ZodString;
|
|
4248
4098
|
}, z.core.$strip>>>;
|
|
4099
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4100
|
+
identifier: z.ZodString;
|
|
4101
|
+
id: z.ZodString;
|
|
4102
|
+
}, z.core.$strip>>;
|
|
4249
4103
|
id: z.ZodString;
|
|
4250
4104
|
schema: z.ZodLiteral<"us_signal">;
|
|
4251
4105
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -4254,8 +4108,37 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4254
4108
|
identifier: z.ZodString;
|
|
4255
4109
|
id: z.ZodString;
|
|
4256
4110
|
}, z.core.$strip>>>;
|
|
4257
|
-
|
|
4111
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4112
|
+
filename: z.ZodString;
|
|
4113
|
+
created: z.ZodString;
|
|
4114
|
+
document_id: z.ZodString;
|
|
4115
|
+
mimetype: z.ZodString;
|
|
4116
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4117
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4118
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4119
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4120
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4121
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4122
|
+
url: z.ZodString;
|
|
4123
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4124
|
+
type: z.ZodArray<z.ZodString>;
|
|
4125
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4126
|
+
documentDate: z.ZodString;
|
|
4127
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4128
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4129
|
+
}, z.core.$strip>]>>>;
|
|
4258
4130
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4131
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4132
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4133
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4134
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4135
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4136
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4137
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4138
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4139
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4140
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4141
|
+
}, z.core.$strip>>;
|
|
4259
4142
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4260
4143
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4261
4144
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4265,34 +4148,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4265
4148
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4266
4149
|
}, z.core.$strip>>;
|
|
4267
4150
|
headline: z.ZodString;
|
|
4268
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4269
|
-
identifier: z.ZodString;
|
|
4270
|
-
id: z.ZodString;
|
|
4271
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4272
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4273
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4274
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4275
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4276
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4277
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4278
|
-
_type: z.ZodString;
|
|
4279
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4280
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4281
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4282
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4283
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4284
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4285
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4286
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4287
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4288
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4289
|
-
}, z.core.$strip>>;
|
|
4290
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4291
|
-
lat: z.ZodNumber;
|
|
4292
|
-
lng: z.ZodNumber;
|
|
4293
|
-
}, z.core.$strip>>;
|
|
4294
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4295
|
-
}, z.core.$strip>>;
|
|
4296
4151
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4297
4152
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4298
4153
|
identifier: z.ZodString;
|
|
@@ -4302,15 +4157,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4302
4157
|
}, z.core.$strip>>>;
|
|
4303
4158
|
phase: z.ZodOptional<z.ZodString>;
|
|
4304
4159
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4305
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
4306
|
-
identifier: z.ZodString;
|
|
4307
|
-
id: z.ZodString;
|
|
4308
|
-
}, z.core.$strip>>;
|
|
4309
4160
|
state: z.ZodArray<z.ZodObject<{
|
|
4310
4161
|
identifier: z.ZodString;
|
|
4311
4162
|
id: z.ZodString;
|
|
4312
4163
|
}, z.core.$strip>>;
|
|
4313
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4314
4164
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4315
4165
|
identifier: z.ZodString;
|
|
4316
4166
|
id: z.ZodString;
|
|
@@ -4337,6 +4187,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4337
4187
|
identifier: z.ZodString;
|
|
4338
4188
|
id: z.ZodString;
|
|
4339
4189
|
}, z.core.$strip>>;
|
|
4190
|
+
created: z.ZodString;
|
|
4340
4191
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4341
4192
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4342
4193
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4347,6 +4198,34 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4347
4198
|
identifier: z.ZodString;
|
|
4348
4199
|
id: z.ZodString;
|
|
4349
4200
|
}, z.core.$strip>>>;
|
|
4201
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4202
|
+
identifier: z.ZodString;
|
|
4203
|
+
id: z.ZodString;
|
|
4204
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4205
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4206
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4207
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4208
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4209
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4210
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4211
|
+
_type: z.ZodString;
|
|
4212
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4213
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4214
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4215
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4216
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4217
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4218
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4219
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4220
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4221
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4222
|
+
}, z.core.$strip>>;
|
|
4223
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4224
|
+
lat: z.ZodNumber;
|
|
4225
|
+
lng: z.ZodNumber;
|
|
4226
|
+
}, z.core.$strip>>;
|
|
4227
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4228
|
+
}, z.core.$strip>>>;
|
|
4350
4229
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4351
4230
|
identifier: z.ZodString;
|
|
4352
4231
|
id: z.ZodString;
|
|
@@ -4355,6 +4234,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4355
4234
|
identifier: z.ZodString;
|
|
4356
4235
|
id: z.ZodString;
|
|
4357
4236
|
}, z.core.$strip>>>;
|
|
4237
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4358
4238
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4359
4239
|
}, z.core.$strip>]>, z.ZodObject<{
|
|
4360
4240
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4367,36 +4247,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4367
4247
|
identifier: z.ZodString;
|
|
4368
4248
|
id: z.ZodString;
|
|
4369
4249
|
}, z.core.$strip>>>;
|
|
4370
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4371
|
-
filename: z.ZodString;
|
|
4372
|
-
created: z.ZodString;
|
|
4373
|
-
document_id: z.ZodString;
|
|
4374
|
-
mimetype: z.ZodString;
|
|
4375
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4376
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4377
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4378
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4379
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4380
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4381
|
-
url: z.ZodString;
|
|
4382
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4383
|
-
type: z.ZodArray<z.ZodString>;
|
|
4384
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4385
|
-
documentDate: z.ZodString;
|
|
4386
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4387
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4388
|
-
}, z.core.$strip>]>>>;
|
|
4389
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4390
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4391
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4392
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4393
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4394
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4395
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4396
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4397
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4398
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4399
|
-
}, z.core.$strip>>;
|
|
4400
4250
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4401
4251
|
id: z.ZodOptional<z.ZodString>;
|
|
4402
4252
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4430,6 +4280,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4430
4280
|
identifier: z.ZodString;
|
|
4431
4281
|
id: z.ZodString;
|
|
4432
4282
|
}, z.core.$strip>>>;
|
|
4283
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4284
|
+
identifier: z.ZodString;
|
|
4285
|
+
id: z.ZodString;
|
|
4286
|
+
}, z.core.$strip>>;
|
|
4433
4287
|
id: z.ZodString;
|
|
4434
4288
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4435
4289
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4437,8 +4291,37 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4437
4291
|
identifier: z.ZodString;
|
|
4438
4292
|
id: z.ZodString;
|
|
4439
4293
|
}, z.core.$strip>>>;
|
|
4440
|
-
|
|
4294
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4295
|
+
filename: z.ZodString;
|
|
4296
|
+
created: z.ZodString;
|
|
4297
|
+
document_id: z.ZodString;
|
|
4298
|
+
mimetype: z.ZodString;
|
|
4299
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4300
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4301
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4302
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4303
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4304
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4305
|
+
url: z.ZodString;
|
|
4306
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4307
|
+
type: z.ZodArray<z.ZodString>;
|
|
4308
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4309
|
+
documentDate: z.ZodString;
|
|
4310
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4311
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4312
|
+
}, z.core.$strip>]>>>;
|
|
4441
4313
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4314
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4315
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4316
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4317
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4318
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4319
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4320
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4321
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4323
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4324
|
+
}, z.core.$strip>>;
|
|
4442
4325
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4443
4326
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4444
4327
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4448,34 +4331,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4448
4331
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4449
4332
|
}, z.core.$strip>>;
|
|
4450
4333
|
headline: z.ZodString;
|
|
4451
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4452
|
-
identifier: z.ZodString;
|
|
4453
|
-
id: z.ZodString;
|
|
4454
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4455
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4456
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4457
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4458
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4459
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4460
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4461
|
-
_type: z.ZodString;
|
|
4462
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4463
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4464
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4465
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4466
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4467
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4468
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4469
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4470
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4471
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4472
|
-
}, z.core.$strip>>;
|
|
4473
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4474
|
-
lat: z.ZodNumber;
|
|
4475
|
-
lng: z.ZodNumber;
|
|
4476
|
-
}, z.core.$strip>>;
|
|
4477
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4478
|
-
}, z.core.$strip>>;
|
|
4479
4334
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4480
4335
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4481
4336
|
identifier: z.ZodString;
|
|
@@ -4485,15 +4340,10 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4485
4340
|
}, z.core.$strip>>>;
|
|
4486
4341
|
phase: z.ZodOptional<z.ZodString>;
|
|
4487
4342
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4488
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
4489
|
-
identifier: z.ZodString;
|
|
4490
|
-
id: z.ZodString;
|
|
4491
|
-
}, z.core.$strip>>;
|
|
4492
4343
|
state: z.ZodArray<z.ZodObject<{
|
|
4493
4344
|
identifier: z.ZodString;
|
|
4494
4345
|
id: z.ZodString;
|
|
4495
4346
|
}, z.core.$strip>>;
|
|
4496
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4497
4347
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4498
4348
|
identifier: z.ZodString;
|
|
4499
4349
|
id: z.ZodString;
|
|
@@ -4520,6 +4370,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4520
4370
|
identifier: z.ZodString;
|
|
4521
4371
|
id: z.ZodString;
|
|
4522
4372
|
}, z.core.$strip>>;
|
|
4373
|
+
created: z.ZodString;
|
|
4523
4374
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4524
4375
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4525
4376
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4530,6 +4381,34 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4530
4381
|
identifier: z.ZodString;
|
|
4531
4382
|
id: z.ZodString;
|
|
4532
4383
|
}, z.core.$strip>>>;
|
|
4384
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4385
|
+
identifier: z.ZodString;
|
|
4386
|
+
id: z.ZodString;
|
|
4387
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4388
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4389
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4390
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4391
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4392
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4393
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4394
|
+
_type: z.ZodString;
|
|
4395
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4396
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4397
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4398
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4399
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4400
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4401
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4402
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4403
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4404
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4405
|
+
}, z.core.$strip>>;
|
|
4406
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4407
|
+
lat: z.ZodNumber;
|
|
4408
|
+
lng: z.ZodNumber;
|
|
4409
|
+
}, z.core.$strip>>;
|
|
4410
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4411
|
+
}, z.core.$strip>>>;
|
|
4533
4412
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4534
4413
|
identifier: z.ZodString;
|
|
4535
4414
|
id: z.ZodString;
|
|
@@ -4538,42 +4417,13 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4538
4417
|
identifier: z.ZodString;
|
|
4539
4418
|
id: z.ZodString;
|
|
4540
4419
|
}, z.core.$strip>>>;
|
|
4420
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4541
4421
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4542
4422
|
schema: z.ZodLiteral<"global_signal">;
|
|
4543
4423
|
}, z.core.$strip>]>;
|
|
4544
4424
|
export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4545
4425
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4546
4426
|
body: z.ZodOptional<z.ZodString>;
|
|
4547
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4548
|
-
filename: z.ZodString;
|
|
4549
|
-
created: z.ZodString;
|
|
4550
|
-
document_id: z.ZodString;
|
|
4551
|
-
mimetype: z.ZodString;
|
|
4552
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4553
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4554
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4555
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4556
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4557
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4558
|
-
url: z.ZodString;
|
|
4559
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4560
|
-
type: z.ZodArray<z.ZodString>;
|
|
4561
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4562
|
-
documentDate: z.ZodString;
|
|
4563
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4564
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4565
|
-
}, z.core.$strip>]>>>;
|
|
4566
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4567
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4568
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4569
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4570
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4571
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4572
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4573
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4574
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4575
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4576
|
-
}, z.core.$strip>>;
|
|
4577
4427
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4578
4428
|
id: z.ZodOptional<z.ZodString>;
|
|
4579
4429
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4595,6 +4445,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4595
4445
|
id: z.ZodString;
|
|
4596
4446
|
identifier: z.ZodString;
|
|
4597
4447
|
}, z.core.$strip>>>;
|
|
4448
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4449
|
+
identifier: z.ZodString;
|
|
4450
|
+
id: z.ZodString;
|
|
4451
|
+
}, z.core.$strip>>;
|
|
4598
4452
|
id: z.ZodString;
|
|
4599
4453
|
schema: z.ZodLiteral<"eu_signal">;
|
|
4600
4454
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -4603,8 +4457,37 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4603
4457
|
identifier: z.ZodString;
|
|
4604
4458
|
id: z.ZodString;
|
|
4605
4459
|
}, z.core.$strip>>>;
|
|
4606
|
-
|
|
4460
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4461
|
+
filename: z.ZodString;
|
|
4462
|
+
created: z.ZodString;
|
|
4463
|
+
document_id: z.ZodString;
|
|
4464
|
+
mimetype: z.ZodString;
|
|
4465
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4466
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4467
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4468
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4469
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4470
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4471
|
+
url: z.ZodString;
|
|
4472
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4473
|
+
type: z.ZodArray<z.ZodString>;
|
|
4474
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4475
|
+
documentDate: z.ZodString;
|
|
4476
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4477
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4478
|
+
}, z.core.$strip>]>>>;
|
|
4607
4479
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4480
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4481
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4482
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4483
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4484
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4485
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4486
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4487
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4488
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4489
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4490
|
+
}, z.core.$strip>>;
|
|
4608
4491
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4609
4492
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4610
4493
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4614,34 +4497,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4614
4497
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4615
4498
|
}, z.core.$strip>>;
|
|
4616
4499
|
headline: z.ZodString;
|
|
4617
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4618
|
-
identifier: z.ZodString;
|
|
4619
|
-
id: z.ZodString;
|
|
4620
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4621
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4622
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4623
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4624
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4625
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4626
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4627
|
-
_type: z.ZodString;
|
|
4628
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4629
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4630
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4631
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4632
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4633
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4634
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4635
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4636
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4637
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4638
|
-
}, z.core.$strip>>;
|
|
4639
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4640
|
-
lat: z.ZodNumber;
|
|
4641
|
-
lng: z.ZodNumber;
|
|
4642
|
-
}, z.core.$strip>>;
|
|
4643
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4644
|
-
}, z.core.$strip>>;
|
|
4645
4500
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4646
4501
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4647
4502
|
identifier: z.ZodString;
|
|
@@ -4651,11 +4506,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4651
4506
|
}, z.core.$strip>>>;
|
|
4652
4507
|
phase: z.ZodOptional<z.ZodString>;
|
|
4653
4508
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4654
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
4655
|
-
identifier: z.ZodString;
|
|
4656
|
-
id: z.ZodString;
|
|
4657
|
-
}, z.core.$strip>>;
|
|
4658
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4659
4509
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4660
4510
|
identifier: z.ZodString;
|
|
4661
4511
|
id: z.ZodString;
|
|
@@ -4682,10 +4532,39 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4682
4532
|
identifier: z.ZodString;
|
|
4683
4533
|
id: z.ZodString;
|
|
4684
4534
|
}, z.core.$strip>>;
|
|
4535
|
+
created: z.ZodString;
|
|
4685
4536
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4686
4537
|
identifier: z.ZodString;
|
|
4687
4538
|
id: z.ZodString;
|
|
4688
4539
|
}, z.core.$strip>>>;
|
|
4540
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4541
|
+
identifier: z.ZodString;
|
|
4542
|
+
id: z.ZodString;
|
|
4543
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4544
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4545
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4546
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4547
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4548
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4549
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4550
|
+
_type: z.ZodString;
|
|
4551
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4552
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4553
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4554
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4555
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4556
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4557
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4558
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4559
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4560
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4561
|
+
}, z.core.$strip>>;
|
|
4562
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4563
|
+
lat: z.ZodNumber;
|
|
4564
|
+
lng: z.ZodNumber;
|
|
4565
|
+
}, z.core.$strip>>;
|
|
4566
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4567
|
+
}, z.core.$strip>>>;
|
|
4689
4568
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4690
4569
|
identifier: z.ZodString;
|
|
4691
4570
|
id: z.ZodString;
|
|
@@ -4694,6 +4573,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4694
4573
|
identifier: z.ZodString;
|
|
4695
4574
|
id: z.ZodString;
|
|
4696
4575
|
}, z.core.$strip>>>;
|
|
4576
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4697
4577
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4698
4578
|
}, z.core.$strip>, z.ZodObject<{
|
|
4699
4579
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
@@ -4702,36 +4582,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4702
4582
|
identifier: z.ZodString;
|
|
4703
4583
|
id: z.ZodString;
|
|
4704
4584
|
}, z.core.$strip>>>;
|
|
4705
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4706
|
-
filename: z.ZodString;
|
|
4707
|
-
created: z.ZodString;
|
|
4708
|
-
document_id: z.ZodString;
|
|
4709
|
-
mimetype: z.ZodString;
|
|
4710
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4711
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4712
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4713
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4714
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4715
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4716
|
-
url: z.ZodString;
|
|
4717
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4718
|
-
type: z.ZodArray<z.ZodString>;
|
|
4719
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4720
|
-
documentDate: z.ZodString;
|
|
4721
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4722
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4723
|
-
}, z.core.$strip>]>>>;
|
|
4724
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4725
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4726
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4727
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4728
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4729
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4730
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4731
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4732
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4733
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4734
|
-
}, z.core.$strip>>;
|
|
4735
4585
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4736
4586
|
id: z.ZodOptional<z.ZodString>;
|
|
4737
4587
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4765,6 +4615,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4765
4615
|
identifier: z.ZodString;
|
|
4766
4616
|
id: z.ZodString;
|
|
4767
4617
|
}, z.core.$strip>>>;
|
|
4618
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4619
|
+
identifier: z.ZodString;
|
|
4620
|
+
id: z.ZodString;
|
|
4621
|
+
}, z.core.$strip>>;
|
|
4768
4622
|
id: z.ZodString;
|
|
4769
4623
|
schema: z.ZodLiteral<"us_signal">;
|
|
4770
4624
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
@@ -4773,8 +4627,37 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4773
4627
|
identifier: z.ZodString;
|
|
4774
4628
|
id: z.ZodString;
|
|
4775
4629
|
}, z.core.$strip>>>;
|
|
4776
|
-
|
|
4630
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4631
|
+
filename: z.ZodString;
|
|
4632
|
+
created: z.ZodString;
|
|
4633
|
+
document_id: z.ZodString;
|
|
4634
|
+
mimetype: z.ZodString;
|
|
4635
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4636
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4637
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4638
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4639
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4640
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4641
|
+
url: z.ZodString;
|
|
4642
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4643
|
+
type: z.ZodArray<z.ZodString>;
|
|
4644
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4645
|
+
documentDate: z.ZodString;
|
|
4646
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4647
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4648
|
+
}, z.core.$strip>]>>>;
|
|
4777
4649
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4650
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4651
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4652
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4653
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4654
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4655
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4656
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4657
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4658
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4659
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4660
|
+
}, z.core.$strip>>;
|
|
4778
4661
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4779
4662
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4780
4663
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4784,34 +4667,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4784
4667
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4785
4668
|
}, z.core.$strip>>;
|
|
4786
4669
|
headline: z.ZodString;
|
|
4787
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4788
|
-
identifier: z.ZodString;
|
|
4789
|
-
id: z.ZodString;
|
|
4790
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4791
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4792
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4793
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4794
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4795
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4796
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4797
|
-
_type: z.ZodString;
|
|
4798
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4799
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4800
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4801
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4802
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4803
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4804
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4805
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4806
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4807
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4808
|
-
}, z.core.$strip>>;
|
|
4809
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4810
|
-
lat: z.ZodNumber;
|
|
4811
|
-
lng: z.ZodNumber;
|
|
4812
|
-
}, z.core.$strip>>;
|
|
4813
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4814
|
-
}, z.core.$strip>>;
|
|
4815
4670
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4816
4671
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4817
4672
|
identifier: z.ZodString;
|
|
@@ -4821,15 +4676,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4821
4676
|
}, z.core.$strip>>>;
|
|
4822
4677
|
phase: z.ZodOptional<z.ZodString>;
|
|
4823
4678
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4824
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
4825
|
-
identifier: z.ZodString;
|
|
4826
|
-
id: z.ZodString;
|
|
4827
|
-
}, z.core.$strip>>;
|
|
4828
4679
|
state: z.ZodArray<z.ZodObject<{
|
|
4829
4680
|
identifier: z.ZodString;
|
|
4830
4681
|
id: z.ZodString;
|
|
4831
4682
|
}, z.core.$strip>>;
|
|
4832
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4833
4683
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4834
4684
|
identifier: z.ZodString;
|
|
4835
4685
|
id: z.ZodString;
|
|
@@ -4856,6 +4706,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4856
4706
|
identifier: z.ZodString;
|
|
4857
4707
|
id: z.ZodString;
|
|
4858
4708
|
}, z.core.$strip>>;
|
|
4709
|
+
created: z.ZodString;
|
|
4859
4710
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4860
4711
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4861
4712
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4866,14 +4717,43 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4866
4717
|
identifier: z.ZodString;
|
|
4867
4718
|
id: z.ZodString;
|
|
4868
4719
|
}, z.core.$strip>>>;
|
|
4869
|
-
|
|
4720
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4870
4721
|
identifier: z.ZodString;
|
|
4871
4722
|
id: z.ZodString;
|
|
4872
|
-
|
|
4723
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4724
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4725
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4726
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4727
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4728
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4729
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4730
|
+
_type: z.ZodString;
|
|
4731
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4732
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4733
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4734
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4735
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4736
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4737
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4738
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4739
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4740
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4741
|
+
}, z.core.$strip>>;
|
|
4742
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4743
|
+
lat: z.ZodNumber;
|
|
4744
|
+
lng: z.ZodNumber;
|
|
4745
|
+
}, z.core.$strip>>;
|
|
4746
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4747
|
+
}, z.core.$strip>>>;
|
|
4748
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4749
|
+
identifier: z.ZodString;
|
|
4750
|
+
id: z.ZodString;
|
|
4751
|
+
}, z.core.$strip>>>;
|
|
4873
4752
|
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4874
4753
|
identifier: z.ZodString;
|
|
4875
4754
|
id: z.ZodString;
|
|
4876
4755
|
}, z.core.$strip>>>;
|
|
4756
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4877
4757
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4878
4758
|
}, z.core.$strip>, z.ZodObject<{
|
|
4879
4759
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4886,36 +4766,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4886
4766
|
identifier: z.ZodString;
|
|
4887
4767
|
id: z.ZodString;
|
|
4888
4768
|
}, z.core.$strip>>>;
|
|
4889
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4890
|
-
filename: z.ZodString;
|
|
4891
|
-
created: z.ZodString;
|
|
4892
|
-
document_id: z.ZodString;
|
|
4893
|
-
mimetype: z.ZodString;
|
|
4894
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4895
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4896
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4897
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
4898
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4899
|
-
file: z.ZodOptional<z.ZodString>;
|
|
4900
|
-
url: z.ZodString;
|
|
4901
|
-
created: z.ZodOptional<z.ZodString>;
|
|
4902
|
-
type: z.ZodArray<z.ZodString>;
|
|
4903
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4904
|
-
documentDate: z.ZodString;
|
|
4905
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4906
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4907
|
-
}, z.core.$strip>]>>>;
|
|
4908
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4909
|
-
full: z.ZodOptional<z.ZodString>;
|
|
4910
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4911
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4912
|
-
street: z.ZodOptional<z.ZodString>;
|
|
4913
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
4914
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
4915
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4916
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4917
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4918
|
-
}, z.core.$strip>>;
|
|
4919
4769
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4920
4770
|
id: z.ZodOptional<z.ZodString>;
|
|
4921
4771
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4949,6 +4799,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4949
4799
|
identifier: z.ZodString;
|
|
4950
4800
|
id: z.ZodString;
|
|
4951
4801
|
}, z.core.$strip>>>;
|
|
4802
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4803
|
+
identifier: z.ZodString;
|
|
4804
|
+
id: z.ZodString;
|
|
4805
|
+
}, z.core.$strip>>;
|
|
4952
4806
|
id: z.ZodString;
|
|
4953
4807
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4954
4808
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4956,8 +4810,37 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4956
4810
|
identifier: z.ZodString;
|
|
4957
4811
|
id: z.ZodString;
|
|
4958
4812
|
}, z.core.$strip>>>;
|
|
4959
|
-
|
|
4813
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4814
|
+
filename: z.ZodString;
|
|
4815
|
+
created: z.ZodString;
|
|
4816
|
+
document_id: z.ZodString;
|
|
4817
|
+
mimetype: z.ZodString;
|
|
4818
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4819
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4820
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4821
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4822
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4823
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4824
|
+
url: z.ZodString;
|
|
4825
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4826
|
+
type: z.ZodArray<z.ZodString>;
|
|
4827
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4828
|
+
documentDate: z.ZodString;
|
|
4829
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4830
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4831
|
+
}, z.core.$strip>]>>>;
|
|
4960
4832
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4833
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4834
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4835
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4836
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4837
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4838
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4839
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4840
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4841
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4842
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4843
|
+
}, z.core.$strip>>;
|
|
4961
4844
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4962
4845
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4963
4846
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4967,34 +4850,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4967
4850
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4968
4851
|
}, z.core.$strip>>;
|
|
4969
4852
|
headline: z.ZodString;
|
|
4970
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4971
|
-
identifier: z.ZodString;
|
|
4972
|
-
id: z.ZodString;
|
|
4973
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4974
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
4975
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4976
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4977
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4978
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
4979
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4980
|
-
_type: z.ZodString;
|
|
4981
|
-
city: z.ZodOptional<z.ZodString>;
|
|
4982
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
4983
|
-
country: z.ZodOptional<z.ZodString>;
|
|
4984
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
4985
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
4986
|
-
county: z.ZodOptional<z.ZodString>;
|
|
4987
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
4988
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
4989
|
-
state: z.ZodOptional<z.ZodString>;
|
|
4990
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
4991
|
-
}, z.core.$strip>>;
|
|
4992
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
4993
|
-
lat: z.ZodNumber;
|
|
4994
|
-
lng: z.ZodNumber;
|
|
4995
|
-
}, z.core.$strip>>;
|
|
4996
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
4997
|
-
}, z.core.$strip>>;
|
|
4998
4853
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4999
4854
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5000
4855
|
identifier: z.ZodString;
|
|
@@ -5004,15 +4859,10 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5004
4859
|
}, z.core.$strip>>>;
|
|
5005
4860
|
phase: z.ZodOptional<z.ZodString>;
|
|
5006
4861
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5007
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
5008
|
-
identifier: z.ZodString;
|
|
5009
|
-
id: z.ZodString;
|
|
5010
|
-
}, z.core.$strip>>;
|
|
5011
4862
|
state: z.ZodArray<z.ZodObject<{
|
|
5012
4863
|
identifier: z.ZodString;
|
|
5013
4864
|
id: z.ZodString;
|
|
5014
4865
|
}, z.core.$strip>>;
|
|
5015
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
5016
4866
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5017
4867
|
identifier: z.ZodString;
|
|
5018
4868
|
id: z.ZodString;
|
|
@@ -5039,6 +4889,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5039
4889
|
identifier: z.ZodString;
|
|
5040
4890
|
id: z.ZodString;
|
|
5041
4891
|
}, z.core.$strip>>;
|
|
4892
|
+
created: z.ZodString;
|
|
5042
4893
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
5043
4894
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
5044
4895
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5049,108 +4900,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5049
4900
|
identifier: z.ZodString;
|
|
5050
4901
|
id: z.ZodString;
|
|
5051
4902
|
}, z.core.$strip>>>;
|
|
5052
|
-
|
|
5053
|
-
identifier: z.ZodString;
|
|
5054
|
-
id: z.ZodString;
|
|
5055
|
-
}, z.core.$strip>>>;
|
|
5056
|
-
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5057
|
-
identifier: z.ZodString;
|
|
5058
|
-
id: z.ZodString;
|
|
5059
|
-
}, z.core.$strip>>>;
|
|
5060
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
5061
|
-
schema: z.ZodLiteral<"global_signal">;
|
|
5062
|
-
}, z.core.$strip>], "schema">;
|
|
5063
|
-
export type SignalAPITypeV1 = z.infer<typeof signalAPISchemaV1>;
|
|
5064
|
-
export type SignalAPIUnionTypeV1 = z.infer<typeof signalAPIUnionSchemaV1>;
|
|
5065
|
-
export type EUSignalAPITypeV1 = z.infer<typeof euSignalAPISchemaV1>;
|
|
5066
|
-
export type USSignalAPITypeV1 = z.infer<typeof usSignalAPISchemaV1>;
|
|
5067
|
-
export type GlobalSignalAPITypeV1 = z.infer<typeof globalSignalAPISchemaV1>;
|
|
5068
|
-
export declare const SignalSchema: z.ZodObject<{
|
|
5069
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
5070
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
5071
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
5072
|
-
identifier: z.ZodString;
|
|
5073
|
-
id: z.ZodString;
|
|
5074
|
-
}, z.core.$strip>>;
|
|
5075
|
-
body: z.ZodOptional<z.ZodString>;
|
|
5076
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5077
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5078
|
-
identifier: z.ZodString;
|
|
5079
|
-
id: z.ZodString;
|
|
5080
|
-
}, z.core.$strip>>>;
|
|
5081
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5082
|
-
identifier: z.ZodString;
|
|
5083
|
-
id: z.ZodString;
|
|
5084
|
-
}, z.core.$strip>>>;
|
|
5085
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5086
|
-
identifier: z.ZodString;
|
|
5087
|
-
id: z.ZodString;
|
|
5088
|
-
}, z.core.$strip>>>;
|
|
5089
|
-
created: z.ZodString;
|
|
5090
|
-
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5091
|
-
filename: z.ZodString;
|
|
5092
|
-
created: z.ZodString;
|
|
5093
|
-
document_id: z.ZodString;
|
|
5094
|
-
mimetype: z.ZodString;
|
|
5095
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5096
|
-
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5097
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5098
|
-
userName: z.ZodOptional<z.ZodString>;
|
|
5099
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
5100
|
-
file: z.ZodOptional<z.ZodString>;
|
|
5101
|
-
url: z.ZodString;
|
|
5102
|
-
created: z.ZodOptional<z.ZodString>;
|
|
5103
|
-
type: z.ZodArray<z.ZodString>;
|
|
5104
|
-
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5105
|
-
documentDate: z.ZodString;
|
|
5106
|
-
source: z.ZodOptional<z.ZodString>;
|
|
5107
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5108
|
-
}, z.core.$strip>]>>>;
|
|
5109
|
-
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5110
|
-
full: z.ZodOptional<z.ZodString>;
|
|
5111
|
-
city: z.ZodOptional<z.ZodString>;
|
|
5112
|
-
state: z.ZodOptional<z.ZodString>;
|
|
5113
|
-
street: z.ZodOptional<z.ZodString>;
|
|
5114
|
-
street2: z.ZodOptional<z.ZodString>;
|
|
5115
|
-
zip: z.ZodOptional<z.ZodString>;
|
|
5116
|
-
country: z.ZodOptional<z.ZodString>;
|
|
5117
|
-
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5118
|
-
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5119
|
-
}, z.core.$strip>>;
|
|
5120
|
-
facilityName: z.ZodOptional<z.ZodString>;
|
|
5121
|
-
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5122
|
-
geo: z.ZodObject<{
|
|
5123
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
5124
|
-
lat: z.ZodNumber;
|
|
5125
|
-
lon: z.ZodNumber;
|
|
5126
|
-
}, z.core.$strip>>;
|
|
5127
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5128
|
-
location: z.ZodOptional<z.ZodObject<{
|
|
5129
|
-
lat: z.ZodNumber;
|
|
5130
|
-
lon: z.ZodNumber;
|
|
5131
|
-
}, z.core.$strip>>;
|
|
5132
|
-
facility: z.ZodOptional<z.ZodObject<{
|
|
5133
|
-
lat: z.ZodNumber;
|
|
5134
|
-
lon: z.ZodNumber;
|
|
5135
|
-
}, z.core.$strip>>;
|
|
5136
|
-
county: z.ZodOptional<z.ZodObject<{
|
|
5137
|
-
lat: z.ZodNumber;
|
|
5138
|
-
lon: z.ZodNumber;
|
|
5139
|
-
}, z.core.$strip>>;
|
|
5140
|
-
}, z.core.$strip>;
|
|
5141
|
-
headline: z.ZodString;
|
|
5142
|
-
id: z.ZodString;
|
|
5143
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5144
|
-
id: z.ZodOptional<z.ZodString>;
|
|
5145
|
-
identifier: z.ZodOptional<z.ZodString>;
|
|
5146
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
5147
|
-
role: z.ZodOptional<z.ZodString>;
|
|
5148
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
5149
|
-
email: z.ZodOptional<z.ZodString>;
|
|
5150
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
5151
|
-
source: z.ZodOptional<z.ZodString>;
|
|
5152
|
-
}, z.core.$strip>>>;
|
|
5153
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4903
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5154
4904
|
identifier: z.ZodString;
|
|
5155
4905
|
id: z.ZodString;
|
|
5156
4906
|
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5177,74 +4927,21 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5177
4927
|
lng: z.ZodNumber;
|
|
5178
4928
|
}, z.core.$strip>>;
|
|
5179
4929
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
5180
|
-
}, z.core.$strip>>;
|
|
5181
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
5182
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5183
|
-
identifier: z.ZodString;
|
|
5184
|
-
id: z.ZodString;
|
|
5185
|
-
role: z.ZodString;
|
|
5186
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5187
|
-
}, z.core.$strip>>>;
|
|
5188
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
5189
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5190
|
-
identifier: z.ZodString;
|
|
5191
|
-
id: z.ZodString;
|
|
5192
4930
|
}, z.core.$strip>>>;
|
|
5193
|
-
|
|
5194
|
-
identifier: z.ZodString;
|
|
5195
|
-
id: z.ZodString;
|
|
5196
|
-
}, z.core.$strip>>>;
|
|
5197
|
-
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5198
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4931
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5199
4932
|
identifier: z.ZodString;
|
|
5200
4933
|
id: z.ZodString;
|
|
5201
4934
|
}, z.core.$strip>>>;
|
|
5202
|
-
|
|
5203
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
5204
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
5205
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
5206
|
-
id: z.ZodString;
|
|
5207
|
-
identifier: z.ZodString;
|
|
5208
|
-
}, z.core.$strip>>>;
|
|
5209
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4935
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5210
4936
|
identifier: z.ZodString;
|
|
5211
4937
|
id: z.ZodString;
|
|
5212
4938
|
}, z.core.$strip>>>;
|
|
5213
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
5214
|
-
identifier: z.ZodString;
|
|
5215
|
-
id: z.ZodString;
|
|
5216
|
-
}, z.core.$strip>>;
|
|
5217
|
-
state: z.ZodArray<z.ZodObject<{
|
|
5218
|
-
identifier: z.ZodString;
|
|
5219
|
-
id: z.ZodString;
|
|
5220
|
-
}, z.core.$strip>>;
|
|
5221
4939
|
status: z.ZodEnum<typeof PublishStatus>;
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
documents: z.ZodOptional<z.ZodNumber>;
|
|
5231
|
-
organizations: z.ZodOptional<z.ZodNumber>;
|
|
5232
|
-
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
5233
|
-
utility: z.ZodOptional<z.ZodNumber>;
|
|
5234
|
-
puc: z.ZodOptional<z.ZodNumber>;
|
|
5235
|
-
epc: z.ZodOptional<z.ZodNumber>;
|
|
5236
|
-
developer: z.ZodOptional<z.ZodNumber>;
|
|
5237
|
-
intels: z.ZodOptional<z.ZodNumber>;
|
|
5238
|
-
signals: z.ZodOptional<z.ZodNumber>;
|
|
5239
|
-
}, z.core.$strip>>;
|
|
5240
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
5241
|
-
identifier: z.ZodString;
|
|
5242
|
-
id: z.ZodString;
|
|
5243
|
-
}, z.core.$strip>>;
|
|
5244
|
-
}, z.core.$strip>;
|
|
5245
|
-
export type Signal = z.infer<typeof SignalSchema>;
|
|
5246
|
-
export type OrganizationItem = z.infer<typeof OrganizationItemSchema>;
|
|
5247
|
-
export type DocumentRecord = z.infer<typeof DocumentRecordSchema>;
|
|
5248
|
-
export type LinkedPersonItem = z.infer<typeof LinkedPeopleSchema>[number];
|
|
5249
|
-
export type QueueJoinItem = z.infer<typeof QueueJoinSchema>[number];
|
|
5250
|
-
export type ProjectItem = z.infer<typeof EntityItemArrayOptionalSchema> extends Array<infer T> ? T : never;
|
|
4940
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4941
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4942
|
+
}, z.core.$strip>], "schema">;
|
|
4943
|
+
export type SignalAPITypeV1 = z.infer<typeof signalAPISchemaV1>;
|
|
4944
|
+
export type SignalAPIUnionTypeV1 = z.infer<typeof signalAPIUnionSchemaV1>;
|
|
4945
|
+
export type EUSignalAPITypeV1 = z.infer<typeof euSignalAPISchemaV1>;
|
|
4946
|
+
export type USSignalAPITypeV1 = z.infer<typeof usSignalAPISchemaV1>;
|
|
4947
|
+
export type GlobalSignalAPITypeV1 = z.infer<typeof globalSignalAPISchemaV1>;
|