@new-project-media/client-frontends-shared-types 3.2.10 → 3.3.1
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 +42 -11
- package/src/lib/dataGrid/api/entity.js +4 -3
- 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 +1410 -1752
- package/src/lib/dataGrid/api/signals/v1.js +59 -80
- 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.ZodNullable<z.ZodOptional<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.ZodNullable<z.ZodOptional<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;
|
|
@@ -71,13 +67,7 @@ export declare const euSignalListSchemaV1: z.ZodObject<{
|
|
|
71
67
|
role: z.ZodString;
|
|
72
68
|
ref: z.ZodOptional<z.ZodString>;
|
|
73
69
|
}, z.core.$strip>>>;
|
|
74
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
75
70
|
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
71
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
82
72
|
identifier: z.ZodString;
|
|
83
73
|
id: z.ZodString;
|
|
@@ -105,17 +95,42 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
105
95
|
id: z.ZodString;
|
|
106
96
|
schema: z.ZodLiteral<"us_signal">;
|
|
107
97
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
108
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
109
|
-
identifier: z.ZodString;
|
|
110
|
-
id: z.ZodString;
|
|
111
|
-
}, z.core.$strip>>;
|
|
112
98
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
113
99
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
114
100
|
identifier: z.ZodString;
|
|
115
101
|
id: z.ZodString;
|
|
116
102
|
}, z.core.$strip>>>;
|
|
117
|
-
|
|
103
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
104
|
+
filename: z.ZodString;
|
|
105
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
106
|
+
document_id: z.ZodString;
|
|
107
|
+
mimetype: z.ZodString;
|
|
108
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
109
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
110
|
+
key: z.ZodOptional<z.ZodString>;
|
|
111
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
112
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
113
|
+
file: z.ZodOptional<z.ZodString>;
|
|
114
|
+
url: z.ZodString;
|
|
115
|
+
created: z.ZodOptional<z.ZodString>;
|
|
116
|
+
type: z.ZodArray<z.ZodString>;
|
|
117
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
118
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
119
|
+
source: z.ZodOptional<z.ZodString>;
|
|
120
|
+
id: z.ZodOptional<z.ZodString>;
|
|
121
|
+
}, z.core.$strip>]>>>;
|
|
118
122
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
123
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
124
|
+
full: z.ZodOptional<z.ZodString>;
|
|
125
|
+
city: z.ZodOptional<z.ZodString>;
|
|
126
|
+
state: z.ZodOptional<z.ZodString>;
|
|
127
|
+
street: z.ZodOptional<z.ZodString>;
|
|
128
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
129
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
130
|
+
country: z.ZodOptional<z.ZodString>;
|
|
131
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
132
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
133
|
+
}, z.core.$strip>>;
|
|
119
134
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
120
135
|
geo: z.ZodOptional<z.ZodObject<{
|
|
121
136
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -125,34 +140,6 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
125
140
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
126
141
|
}, z.core.$strip>>;
|
|
127
142
|
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
143
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
157
144
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
158
145
|
identifier: z.ZodString;
|
|
@@ -160,17 +147,11 @@ export declare const usSignalListSchemaV1: z.ZodObject<{
|
|
|
160
147
|
role: z.ZodString;
|
|
161
148
|
ref: z.ZodOptional<z.ZodString>;
|
|
162
149
|
}, z.core.$strip>>>;
|
|
163
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
164
150
|
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
151
|
state: z.ZodArray<z.ZodObject<{
|
|
170
152
|
identifier: z.ZodString;
|
|
171
153
|
id: z.ZodString;
|
|
172
154
|
}, z.core.$strip>>;
|
|
173
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
174
155
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
175
156
|
identifier: z.ZodString;
|
|
176
157
|
id: z.ZodString;
|
|
@@ -201,17 +182,42 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
201
182
|
}, z.core.$strip>>>;
|
|
202
183
|
id: z.ZodString;
|
|
203
184
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
204
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
205
|
-
identifier: z.ZodString;
|
|
206
|
-
id: z.ZodString;
|
|
207
|
-
}, z.core.$strip>>;
|
|
208
185
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
209
186
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
210
187
|
identifier: z.ZodString;
|
|
211
188
|
id: z.ZodString;
|
|
212
189
|
}, z.core.$strip>>>;
|
|
213
|
-
|
|
190
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
191
|
+
filename: z.ZodString;
|
|
192
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
193
|
+
document_id: z.ZodString;
|
|
194
|
+
mimetype: z.ZodString;
|
|
195
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
196
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
197
|
+
key: z.ZodOptional<z.ZodString>;
|
|
198
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
199
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
200
|
+
file: z.ZodOptional<z.ZodString>;
|
|
201
|
+
url: z.ZodString;
|
|
202
|
+
created: z.ZodOptional<z.ZodString>;
|
|
203
|
+
type: z.ZodArray<z.ZodString>;
|
|
204
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
205
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
206
|
+
source: z.ZodOptional<z.ZodString>;
|
|
207
|
+
id: z.ZodOptional<z.ZodString>;
|
|
208
|
+
}, z.core.$strip>]>>>;
|
|
214
209
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
210
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
211
|
+
full: z.ZodOptional<z.ZodString>;
|
|
212
|
+
city: z.ZodOptional<z.ZodString>;
|
|
213
|
+
state: z.ZodOptional<z.ZodString>;
|
|
214
|
+
street: z.ZodOptional<z.ZodString>;
|
|
215
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
216
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
217
|
+
country: z.ZodOptional<z.ZodString>;
|
|
218
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
219
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
220
|
+
}, z.core.$strip>>;
|
|
215
221
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
216
222
|
geo: z.ZodOptional<z.ZodObject<{
|
|
217
223
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -221,34 +227,6 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
221
227
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
222
228
|
}, z.core.$strip>>;
|
|
223
229
|
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
230
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
253
231
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
254
232
|
identifier: z.ZodString;
|
|
@@ -256,17 +234,7 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
256
234
|
role: z.ZodString;
|
|
257
235
|
ref: z.ZodOptional<z.ZodString>;
|
|
258
236
|
}, z.core.$strip>>>;
|
|
259
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
260
237
|
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
238
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
271
239
|
identifier: z.ZodString;
|
|
272
240
|
id: z.ZodString;
|
|
@@ -290,22 +258,51 @@ export declare const globalSignalListSchemaV1: z.ZodObject<{
|
|
|
290
258
|
id: z.ZodString;
|
|
291
259
|
}, z.core.$strip>>;
|
|
292
260
|
schema: z.ZodLiteral<"global_signal">;
|
|
261
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
262
|
+
identifier: z.ZodString;
|
|
263
|
+
id: z.ZodString;
|
|
264
|
+
}, z.core.$strip>>>;
|
|
293
265
|
}, z.core.$strict>;
|
|
294
266
|
export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
295
267
|
id: z.ZodString;
|
|
296
268
|
schema: z.ZodLiteral<"eu_signal">;
|
|
297
269
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
298
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
299
|
-
identifier: z.ZodString;
|
|
300
|
-
id: z.ZodString;
|
|
301
|
-
}, z.core.$strip>>;
|
|
302
270
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
303
271
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
304
272
|
identifier: z.ZodString;
|
|
305
273
|
id: z.ZodString;
|
|
306
274
|
}, z.core.$strip>>>;
|
|
307
|
-
|
|
275
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
276
|
+
filename: z.ZodString;
|
|
277
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
278
|
+
document_id: z.ZodString;
|
|
279
|
+
mimetype: z.ZodString;
|
|
280
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
281
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
282
|
+
key: z.ZodOptional<z.ZodString>;
|
|
283
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
285
|
+
file: z.ZodOptional<z.ZodString>;
|
|
286
|
+
url: z.ZodString;
|
|
287
|
+
created: z.ZodOptional<z.ZodString>;
|
|
288
|
+
type: z.ZodArray<z.ZodString>;
|
|
289
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
290
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
291
|
+
source: z.ZodOptional<z.ZodString>;
|
|
292
|
+
id: z.ZodOptional<z.ZodString>;
|
|
293
|
+
}, z.core.$strip>]>>>;
|
|
308
294
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
295
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
296
|
+
full: z.ZodOptional<z.ZodString>;
|
|
297
|
+
city: z.ZodOptional<z.ZodString>;
|
|
298
|
+
state: z.ZodOptional<z.ZodString>;
|
|
299
|
+
street: z.ZodOptional<z.ZodString>;
|
|
300
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
301
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
302
|
+
country: z.ZodOptional<z.ZodString>;
|
|
303
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
304
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
305
|
+
}, z.core.$strip>>;
|
|
309
306
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
310
307
|
geo: z.ZodOptional<z.ZodObject<{
|
|
311
308
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -315,48 +312,14 @@ export declare const euSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
315
312
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
316
313
|
}, z.core.$strip>>;
|
|
317
314
|
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<{
|
|
315
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
316
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
348
317
|
identifier: z.ZodString;
|
|
349
318
|
id: z.ZodString;
|
|
350
319
|
role: z.ZodString;
|
|
351
320
|
ref: z.ZodOptional<z.ZodString>;
|
|
352
321
|
}, z.core.$strip>>>;
|
|
353
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
354
322
|
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
323
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
361
324
|
identifier: z.ZodString;
|
|
362
325
|
id: z.ZodString;
|
|
@@ -385,17 +348,42 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
385
348
|
id: z.ZodString;
|
|
386
349
|
schema: z.ZodLiteral<"us_signal">;
|
|
387
350
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
388
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
389
|
-
identifier: z.ZodString;
|
|
390
|
-
id: z.ZodString;
|
|
391
|
-
}, z.core.$strip>>;
|
|
392
351
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
393
352
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
394
353
|
identifier: z.ZodString;
|
|
395
354
|
id: z.ZodString;
|
|
396
355
|
}, z.core.$strip>>>;
|
|
397
|
-
|
|
356
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
357
|
+
filename: z.ZodString;
|
|
358
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
359
|
+
document_id: z.ZodString;
|
|
360
|
+
mimetype: z.ZodString;
|
|
361
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
362
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
363
|
+
key: z.ZodOptional<z.ZodString>;
|
|
364
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
365
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
366
|
+
file: z.ZodOptional<z.ZodString>;
|
|
367
|
+
url: z.ZodString;
|
|
368
|
+
created: z.ZodOptional<z.ZodString>;
|
|
369
|
+
type: z.ZodArray<z.ZodString>;
|
|
370
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
371
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
372
|
+
source: z.ZodOptional<z.ZodString>;
|
|
373
|
+
id: z.ZodOptional<z.ZodString>;
|
|
374
|
+
}, z.core.$strip>]>>>;
|
|
398
375
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
376
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
full: z.ZodOptional<z.ZodString>;
|
|
378
|
+
city: z.ZodOptional<z.ZodString>;
|
|
379
|
+
state: z.ZodOptional<z.ZodString>;
|
|
380
|
+
street: z.ZodOptional<z.ZodString>;
|
|
381
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
382
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
383
|
+
country: z.ZodOptional<z.ZodString>;
|
|
384
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
386
|
+
}, z.core.$strip>>;
|
|
399
387
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
400
388
|
geo: z.ZodOptional<z.ZodObject<{
|
|
401
389
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -405,34 +393,6 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
405
393
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
406
394
|
}, z.core.$strip>>;
|
|
407
395
|
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
396
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
437
397
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
438
398
|
identifier: z.ZodString;
|
|
@@ -440,17 +400,11 @@ export declare const usSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
440
400
|
role: z.ZodString;
|
|
441
401
|
ref: z.ZodOptional<z.ZodString>;
|
|
442
402
|
}, z.core.$strip>>>;
|
|
443
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
444
403
|
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
404
|
state: z.ZodArray<z.ZodObject<{
|
|
450
405
|
identifier: z.ZodString;
|
|
451
406
|
id: z.ZodString;
|
|
452
407
|
}, z.core.$strip>>;
|
|
453
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
454
408
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
455
409
|
identifier: z.ZodString;
|
|
456
410
|
id: z.ZodString;
|
|
@@ -482,17 +436,42 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
482
436
|
}, z.core.$strip>>>;
|
|
483
437
|
id: z.ZodString;
|
|
484
438
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
485
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
486
|
-
identifier: z.ZodString;
|
|
487
|
-
id: z.ZodString;
|
|
488
|
-
}, z.core.$strip>>;
|
|
489
439
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
490
440
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
491
441
|
identifier: z.ZodString;
|
|
492
442
|
id: z.ZodString;
|
|
493
443
|
}, z.core.$strip>>>;
|
|
494
|
-
|
|
444
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
445
|
+
filename: z.ZodString;
|
|
446
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
447
|
+
document_id: z.ZodString;
|
|
448
|
+
mimetype: z.ZodString;
|
|
449
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
450
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
451
|
+
key: z.ZodOptional<z.ZodString>;
|
|
452
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
453
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
454
|
+
file: z.ZodOptional<z.ZodString>;
|
|
455
|
+
url: z.ZodString;
|
|
456
|
+
created: z.ZodOptional<z.ZodString>;
|
|
457
|
+
type: z.ZodArray<z.ZodString>;
|
|
458
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
459
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
460
|
+
source: z.ZodOptional<z.ZodString>;
|
|
461
|
+
id: z.ZodOptional<z.ZodString>;
|
|
462
|
+
}, z.core.$strip>]>>>;
|
|
495
463
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
464
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
465
|
+
full: z.ZodOptional<z.ZodString>;
|
|
466
|
+
city: z.ZodOptional<z.ZodString>;
|
|
467
|
+
state: z.ZodOptional<z.ZodString>;
|
|
468
|
+
street: z.ZodOptional<z.ZodString>;
|
|
469
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
470
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
471
|
+
country: z.ZodOptional<z.ZodString>;
|
|
472
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
473
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
474
|
+
}, z.core.$strip>>;
|
|
496
475
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
497
476
|
geo: z.ZodOptional<z.ZodObject<{
|
|
498
477
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -502,34 +481,6 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
502
481
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
503
482
|
}, z.core.$strip>>;
|
|
504
483
|
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
484
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
534
485
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
535
486
|
identifier: z.ZodString;
|
|
@@ -537,17 +488,7 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
537
488
|
role: z.ZodString;
|
|
538
489
|
ref: z.ZodOptional<z.ZodString>;
|
|
539
490
|
}, z.core.$strip>>>;
|
|
540
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
541
491
|
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
492
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
552
493
|
identifier: z.ZodString;
|
|
553
494
|
id: z.ZodString;
|
|
@@ -571,23 +512,52 @@ export declare const globalSignalListWithSortSchemaV1: z.ZodObject<{
|
|
|
571
512
|
id: z.ZodString;
|
|
572
513
|
}, z.core.$strip>>;
|
|
573
514
|
schema: z.ZodLiteral<"global_signal">;
|
|
515
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
516
|
+
identifier: z.ZodString;
|
|
517
|
+
id: z.ZodString;
|
|
518
|
+
}, z.core.$strip>>>;
|
|
574
519
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
575
520
|
}, z.core.$strict>;
|
|
576
521
|
export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
577
522
|
id: z.ZodString;
|
|
578
523
|
schema: z.ZodLiteral<"eu_signal">;
|
|
579
524
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
580
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
581
|
-
identifier: z.ZodString;
|
|
582
|
-
id: z.ZodString;
|
|
583
|
-
}, z.core.$strip>>;
|
|
584
525
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
585
526
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
586
527
|
identifier: z.ZodString;
|
|
587
528
|
id: z.ZodString;
|
|
588
529
|
}, z.core.$strip>>>;
|
|
589
|
-
|
|
530
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
531
|
+
filename: z.ZodString;
|
|
532
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
533
|
+
document_id: z.ZodString;
|
|
534
|
+
mimetype: z.ZodString;
|
|
535
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
536
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
537
|
+
key: z.ZodOptional<z.ZodString>;
|
|
538
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
539
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
540
|
+
file: z.ZodOptional<z.ZodString>;
|
|
541
|
+
url: z.ZodString;
|
|
542
|
+
created: z.ZodOptional<z.ZodString>;
|
|
543
|
+
type: z.ZodArray<z.ZodString>;
|
|
544
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
545
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
546
|
+
source: z.ZodOptional<z.ZodString>;
|
|
547
|
+
id: z.ZodOptional<z.ZodString>;
|
|
548
|
+
}, z.core.$strip>]>>>;
|
|
590
549
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
550
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
551
|
+
full: z.ZodOptional<z.ZodString>;
|
|
552
|
+
city: z.ZodOptional<z.ZodString>;
|
|
553
|
+
state: z.ZodOptional<z.ZodString>;
|
|
554
|
+
street: z.ZodOptional<z.ZodString>;
|
|
555
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
556
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
557
|
+
country: z.ZodOptional<z.ZodString>;
|
|
558
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
559
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
560
|
+
}, z.core.$strip>>;
|
|
591
561
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
592
562
|
geo: z.ZodOptional<z.ZodObject<{
|
|
593
563
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -597,34 +567,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
597
567
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
598
568
|
}, z.core.$strip>>;
|
|
599
569
|
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
570
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
629
571
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
630
572
|
identifier: z.ZodString;
|
|
@@ -632,13 +574,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
632
574
|
role: z.ZodString;
|
|
633
575
|
ref: z.ZodOptional<z.ZodString>;
|
|
634
576
|
}, z.core.$strip>>>;
|
|
635
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
636
577
|
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
578
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
643
579
|
identifier: z.ZodString;
|
|
644
580
|
id: z.ZodString;
|
|
@@ -666,54 +602,51 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
666
602
|
id: z.ZodString;
|
|
667
603
|
schema: z.ZodLiteral<"us_signal">;
|
|
668
604
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
669
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
670
|
-
identifier: z.ZodString;
|
|
671
|
-
id: z.ZodString;
|
|
672
|
-
}, z.core.$strip>>;
|
|
673
605
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
674
606
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
675
607
|
identifier: z.ZodString;
|
|
676
608
|
id: z.ZodString;
|
|
677
609
|
}, z.core.$strip>>>;
|
|
678
|
-
|
|
610
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
611
|
+
filename: z.ZodString;
|
|
612
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
613
|
+
document_id: z.ZodString;
|
|
614
|
+
mimetype: z.ZodString;
|
|
615
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
616
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
617
|
+
key: z.ZodOptional<z.ZodString>;
|
|
618
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
619
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
620
|
+
file: z.ZodOptional<z.ZodString>;
|
|
621
|
+
url: z.ZodString;
|
|
622
|
+
created: z.ZodOptional<z.ZodString>;
|
|
623
|
+
type: z.ZodArray<z.ZodString>;
|
|
624
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
625
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
626
|
+
source: z.ZodOptional<z.ZodString>;
|
|
627
|
+
id: z.ZodOptional<z.ZodString>;
|
|
628
|
+
}, z.core.$strip>]>>>;
|
|
679
629
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
695
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
696
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
697
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
698
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
699
|
-
_type: z.ZodString;
|
|
700
|
-
city: z.ZodOptional<z.ZodString>;
|
|
701
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
702
|
-
country: z.ZodOptional<z.ZodString>;
|
|
703
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
704
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
705
|
-
county: z.ZodOptional<z.ZodString>;
|
|
706
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
707
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
708
|
-
state: z.ZodOptional<z.ZodString>;
|
|
709
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
710
|
-
}, z.core.$strip>>;
|
|
711
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
630
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
631
|
+
full: z.ZodOptional<z.ZodString>;
|
|
632
|
+
city: z.ZodOptional<z.ZodString>;
|
|
633
|
+
state: z.ZodOptional<z.ZodString>;
|
|
634
|
+
street: z.ZodOptional<z.ZodString>;
|
|
635
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
636
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
637
|
+
country: z.ZodOptional<z.ZodString>;
|
|
638
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
639
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
640
|
+
}, z.core.$strip>>;
|
|
641
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
642
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
643
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
712
644
|
lat: z.ZodNumber;
|
|
713
|
-
|
|
645
|
+
lon: z.ZodNumber;
|
|
714
646
|
}, z.core.$strip>>;
|
|
715
|
-
|
|
647
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
716
648
|
}, z.core.$strip>>;
|
|
649
|
+
headline: z.ZodString;
|
|
717
650
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
718
651
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
719
652
|
identifier: z.ZodString;
|
|
@@ -721,17 +654,11 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
721
654
|
role: z.ZodString;
|
|
722
655
|
ref: z.ZodOptional<z.ZodString>;
|
|
723
656
|
}, z.core.$strip>>>;
|
|
724
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
725
657
|
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
658
|
state: z.ZodArray<z.ZodObject<{
|
|
731
659
|
identifier: z.ZodString;
|
|
732
660
|
id: z.ZodString;
|
|
733
661
|
}, z.core.$strip>>;
|
|
734
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
735
662
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
736
663
|
identifier: z.ZodString;
|
|
737
664
|
id: z.ZodString;
|
|
@@ -762,17 +689,42 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
762
689
|
}, z.core.$strip>>>;
|
|
763
690
|
id: z.ZodString;
|
|
764
691
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
765
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
766
|
-
identifier: z.ZodString;
|
|
767
|
-
id: z.ZodString;
|
|
768
|
-
}, z.core.$strip>>;
|
|
769
692
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
770
693
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
771
694
|
identifier: z.ZodString;
|
|
772
695
|
id: z.ZodString;
|
|
773
696
|
}, z.core.$strip>>>;
|
|
774
|
-
|
|
697
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
698
|
+
filename: z.ZodString;
|
|
699
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
700
|
+
document_id: z.ZodString;
|
|
701
|
+
mimetype: z.ZodString;
|
|
702
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
703
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
704
|
+
key: z.ZodOptional<z.ZodString>;
|
|
705
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
706
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
707
|
+
file: z.ZodOptional<z.ZodString>;
|
|
708
|
+
url: z.ZodString;
|
|
709
|
+
created: z.ZodOptional<z.ZodString>;
|
|
710
|
+
type: z.ZodArray<z.ZodString>;
|
|
711
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
712
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
713
|
+
source: z.ZodOptional<z.ZodString>;
|
|
714
|
+
id: z.ZodOptional<z.ZodString>;
|
|
715
|
+
}, z.core.$strip>]>>>;
|
|
775
716
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
717
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
718
|
+
full: z.ZodOptional<z.ZodString>;
|
|
719
|
+
city: z.ZodOptional<z.ZodString>;
|
|
720
|
+
state: z.ZodOptional<z.ZodString>;
|
|
721
|
+
street: z.ZodOptional<z.ZodString>;
|
|
722
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
723
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
724
|
+
country: z.ZodOptional<z.ZodString>;
|
|
725
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
726
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
727
|
+
}, z.core.$strip>>;
|
|
776
728
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
777
729
|
geo: z.ZodOptional<z.ZodObject<{
|
|
778
730
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -782,34 +734,6 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
782
734
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
783
735
|
}, z.core.$strip>>;
|
|
784
736
|
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
737
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
814
738
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
815
739
|
identifier: z.ZodString;
|
|
@@ -817,17 +741,7 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
817
741
|
role: z.ZodString;
|
|
818
742
|
ref: z.ZodOptional<z.ZodString>;
|
|
819
743
|
}, z.core.$strip>>>;
|
|
820
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
821
744
|
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
745
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
832
746
|
identifier: z.ZodString;
|
|
833
747
|
id: z.ZodString;
|
|
@@ -851,23 +765,52 @@ export declare const signalListSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
851
765
|
id: z.ZodString;
|
|
852
766
|
}, z.core.$strip>>;
|
|
853
767
|
schema: z.ZodLiteral<"global_signal">;
|
|
768
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
769
|
+
identifier: z.ZodString;
|
|
770
|
+
id: z.ZodString;
|
|
771
|
+
}, z.core.$strip>>>;
|
|
854
772
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
855
773
|
}, z.core.$strict>]>;
|
|
856
774
|
export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
857
775
|
id: z.ZodString;
|
|
858
776
|
schema: z.ZodLiteral<"eu_signal">;
|
|
859
777
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
860
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
861
|
-
identifier: z.ZodString;
|
|
862
|
-
id: z.ZodString;
|
|
863
|
-
}, z.core.$strip>>;
|
|
864
778
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
865
779
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
866
780
|
identifier: z.ZodString;
|
|
867
781
|
id: z.ZodString;
|
|
868
782
|
}, z.core.$strip>>>;
|
|
869
|
-
|
|
783
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
784
|
+
filename: z.ZodString;
|
|
785
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
786
|
+
document_id: z.ZodString;
|
|
787
|
+
mimetype: z.ZodString;
|
|
788
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
789
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
790
|
+
key: z.ZodOptional<z.ZodString>;
|
|
791
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
792
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
793
|
+
file: z.ZodOptional<z.ZodString>;
|
|
794
|
+
url: z.ZodString;
|
|
795
|
+
created: z.ZodOptional<z.ZodString>;
|
|
796
|
+
type: z.ZodArray<z.ZodString>;
|
|
797
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
798
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
799
|
+
source: z.ZodOptional<z.ZodString>;
|
|
800
|
+
id: z.ZodOptional<z.ZodString>;
|
|
801
|
+
}, z.core.$strip>]>>>;
|
|
870
802
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
803
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
804
|
+
full: z.ZodOptional<z.ZodString>;
|
|
805
|
+
city: z.ZodOptional<z.ZodString>;
|
|
806
|
+
state: z.ZodOptional<z.ZodString>;
|
|
807
|
+
street: z.ZodOptional<z.ZodString>;
|
|
808
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
809
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
810
|
+
country: z.ZodOptional<z.ZodString>;
|
|
811
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
812
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
813
|
+
}, z.core.$strip>>;
|
|
871
814
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
872
815
|
geo: z.ZodOptional<z.ZodObject<{
|
|
873
816
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -877,34 +820,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
877
820
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
878
821
|
}, z.core.$strip>>;
|
|
879
822
|
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
823
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
909
824
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
910
825
|
identifier: z.ZodString;
|
|
@@ -912,13 +827,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
912
827
|
role: z.ZodString;
|
|
913
828
|
ref: z.ZodOptional<z.ZodString>;
|
|
914
829
|
}, z.core.$strip>>>;
|
|
915
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
916
830
|
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
831
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
923
832
|
identifier: z.ZodString;
|
|
924
833
|
id: z.ZodString;
|
|
@@ -946,17 +855,42 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
946
855
|
id: z.ZodString;
|
|
947
856
|
schema: z.ZodLiteral<"us_signal">;
|
|
948
857
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
949
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
950
|
-
identifier: z.ZodString;
|
|
951
|
-
id: z.ZodString;
|
|
952
|
-
}, z.core.$strip>>;
|
|
953
858
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
954
859
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
955
860
|
identifier: z.ZodString;
|
|
956
861
|
id: z.ZodString;
|
|
957
862
|
}, z.core.$strip>>>;
|
|
958
|
-
|
|
863
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
864
|
+
filename: z.ZodString;
|
|
865
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
866
|
+
document_id: z.ZodString;
|
|
867
|
+
mimetype: z.ZodString;
|
|
868
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
869
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
870
|
+
key: z.ZodOptional<z.ZodString>;
|
|
871
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
872
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
873
|
+
file: z.ZodOptional<z.ZodString>;
|
|
874
|
+
url: z.ZodString;
|
|
875
|
+
created: z.ZodOptional<z.ZodString>;
|
|
876
|
+
type: z.ZodArray<z.ZodString>;
|
|
877
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
878
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
879
|
+
source: z.ZodOptional<z.ZodString>;
|
|
880
|
+
id: z.ZodOptional<z.ZodString>;
|
|
881
|
+
}, z.core.$strip>]>>>;
|
|
959
882
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
883
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
884
|
+
full: z.ZodOptional<z.ZodString>;
|
|
885
|
+
city: z.ZodOptional<z.ZodString>;
|
|
886
|
+
state: z.ZodOptional<z.ZodString>;
|
|
887
|
+
street: z.ZodOptional<z.ZodString>;
|
|
888
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
889
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
890
|
+
country: z.ZodOptional<z.ZodString>;
|
|
891
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
892
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
893
|
+
}, z.core.$strip>>;
|
|
960
894
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
961
895
|
geo: z.ZodOptional<z.ZodObject<{
|
|
962
896
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -966,34 +900,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
966
900
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
967
901
|
}, z.core.$strip>>;
|
|
968
902
|
headline: z.ZodString;
|
|
969
|
-
location: z.ZodArray<z.ZodObject<{
|
|
970
|
-
identifier: z.ZodString;
|
|
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
903
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
998
904
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
999
905
|
identifier: z.ZodString;
|
|
@@ -1001,17 +907,11 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1001
907
|
role: z.ZodString;
|
|
1002
908
|
ref: z.ZodOptional<z.ZodString>;
|
|
1003
909
|
}, z.core.$strip>>>;
|
|
1004
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1005
910
|
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
911
|
state: z.ZodArray<z.ZodObject<{
|
|
1011
912
|
identifier: z.ZodString;
|
|
1012
913
|
id: z.ZodString;
|
|
1013
914
|
}, z.core.$strip>>;
|
|
1014
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1015
915
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1016
916
|
identifier: z.ZodString;
|
|
1017
917
|
id: z.ZodString;
|
|
@@ -1042,17 +942,42 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1042
942
|
}, z.core.$strip>>>;
|
|
1043
943
|
id: z.ZodString;
|
|
1044
944
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1045
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1046
|
-
identifier: z.ZodString;
|
|
1047
|
-
id: z.ZodString;
|
|
1048
|
-
}, z.core.$strip>>;
|
|
1049
945
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1050
946
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1051
947
|
identifier: z.ZodString;
|
|
1052
948
|
id: z.ZodString;
|
|
1053
949
|
}, z.core.$strip>>>;
|
|
1054
|
-
|
|
950
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
951
|
+
filename: z.ZodString;
|
|
952
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
953
|
+
document_id: z.ZodString;
|
|
954
|
+
mimetype: z.ZodString;
|
|
955
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
956
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
957
|
+
key: z.ZodOptional<z.ZodString>;
|
|
958
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
959
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
960
|
+
file: z.ZodOptional<z.ZodString>;
|
|
961
|
+
url: z.ZodString;
|
|
962
|
+
created: z.ZodOptional<z.ZodString>;
|
|
963
|
+
type: z.ZodArray<z.ZodString>;
|
|
964
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
965
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
966
|
+
source: z.ZodOptional<z.ZodString>;
|
|
967
|
+
id: z.ZodOptional<z.ZodString>;
|
|
968
|
+
}, z.core.$strip>]>>>;
|
|
1055
969
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
970
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
971
|
+
full: z.ZodOptional<z.ZodString>;
|
|
972
|
+
city: z.ZodOptional<z.ZodString>;
|
|
973
|
+
state: z.ZodOptional<z.ZodString>;
|
|
974
|
+
street: z.ZodOptional<z.ZodString>;
|
|
975
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
976
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
977
|
+
country: z.ZodOptional<z.ZodString>;
|
|
978
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
979
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
980
|
+
}, z.core.$strip>>;
|
|
1056
981
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1057
982
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1058
983
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1062,34 +987,6 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1062
987
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1063
988
|
}, z.core.$strip>>;
|
|
1064
989
|
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
990
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1094
991
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
992
|
identifier: z.ZodString;
|
|
@@ -1097,17 +994,7 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1097
994
|
role: z.ZodString;
|
|
1098
995
|
ref: z.ZodOptional<z.ZodString>;
|
|
1099
996
|
}, z.core.$strip>>>;
|
|
1100
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1101
997
|
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
998
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1112
999
|
identifier: z.ZodString;
|
|
1113
1000
|
id: z.ZodString;
|
|
@@ -1131,23 +1018,52 @@ export declare const signalListUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
1131
1018
|
id: z.ZodString;
|
|
1132
1019
|
}, z.core.$strip>>;
|
|
1133
1020
|
schema: z.ZodLiteral<"global_signal">;
|
|
1021
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1022
|
+
identifier: z.ZodString;
|
|
1023
|
+
id: z.ZodString;
|
|
1024
|
+
}, z.core.$strip>>>;
|
|
1134
1025
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
1135
1026
|
}, z.core.$strict>], "schema">;
|
|
1136
1027
|
export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1137
1028
|
id: z.ZodString;
|
|
1138
1029
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1139
1030
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1140
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1141
|
-
identifier: z.ZodString;
|
|
1142
|
-
id: z.ZodString;
|
|
1143
|
-
}, z.core.$strip>>;
|
|
1144
1031
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1145
1032
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1146
1033
|
identifier: z.ZodString;
|
|
1147
1034
|
id: z.ZodString;
|
|
1148
1035
|
}, z.core.$strip>>>;
|
|
1149
|
-
|
|
1036
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1037
|
+
filename: z.ZodString;
|
|
1038
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1039
|
+
document_id: z.ZodString;
|
|
1040
|
+
mimetype: z.ZodString;
|
|
1041
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1042
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1043
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1044
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1045
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1046
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
url: z.ZodString;
|
|
1048
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1049
|
+
type: z.ZodArray<z.ZodString>;
|
|
1050
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1051
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1052
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1053
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1054
|
+
}, z.core.$strip>]>>>;
|
|
1150
1055
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
1056
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1057
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1058
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1059
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1060
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1061
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1062
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1063
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1064
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1065
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1066
|
+
}, z.core.$strip>>;
|
|
1151
1067
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1152
1068
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1153
1069
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1157,34 +1073,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1157
1073
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1158
1074
|
}, z.core.$strip>>;
|
|
1159
1075
|
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
1076
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1189
1077
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1190
1078
|
identifier: z.ZodString;
|
|
@@ -1192,13 +1080,7 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1192
1080
|
role: z.ZodString;
|
|
1193
1081
|
ref: z.ZodOptional<z.ZodString>;
|
|
1194
1082
|
}, z.core.$strip>>>;
|
|
1195
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1196
1083
|
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
1084
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1203
1085
|
identifier: z.ZodString;
|
|
1204
1086
|
id: z.ZodString;
|
|
@@ -1225,17 +1107,42 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1225
1107
|
id: z.ZodString;
|
|
1226
1108
|
schema: z.ZodLiteral<"us_signal">;
|
|
1227
1109
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1228
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1229
|
-
identifier: z.ZodString;
|
|
1230
|
-
id: z.ZodString;
|
|
1231
|
-
}, z.core.$strip>>;
|
|
1232
1110
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1233
1111
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1234
1112
|
identifier: z.ZodString;
|
|
1235
1113
|
id: z.ZodString;
|
|
1236
1114
|
}, z.core.$strip>>>;
|
|
1237
|
-
|
|
1115
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1116
|
+
filename: z.ZodString;
|
|
1117
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1118
|
+
document_id: z.ZodString;
|
|
1119
|
+
mimetype: z.ZodString;
|
|
1120
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1121
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1122
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1123
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1124
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1125
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1126
|
+
url: z.ZodString;
|
|
1127
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1128
|
+
type: z.ZodArray<z.ZodString>;
|
|
1129
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1130
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1131
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1133
|
+
}, z.core.$strip>]>>>;
|
|
1238
1134
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
1135
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1136
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1137
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1138
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1139
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1140
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1141
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1143
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1144
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1145
|
+
}, z.core.$strip>>;
|
|
1239
1146
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1240
1147
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1241
1148
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1245,34 +1152,6 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1245
1152
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1246
1153
|
}, z.core.$strip>>;
|
|
1247
1154
|
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
1155
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
1277
1156
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1278
1157
|
identifier: z.ZodString;
|
|
@@ -1280,17 +1159,11 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1280
1159
|
role: z.ZodString;
|
|
1281
1160
|
ref: z.ZodOptional<z.ZodString>;
|
|
1282
1161
|
}, z.core.$strip>>>;
|
|
1283
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1284
1162
|
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
1163
|
state: z.ZodArray<z.ZodObject<{
|
|
1290
1164
|
identifier: z.ZodString;
|
|
1291
1165
|
id: z.ZodString;
|
|
1292
1166
|
}, z.core.$strip>>;
|
|
1293
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1294
1167
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1295
1168
|
identifier: z.ZodString;
|
|
1296
1169
|
id: z.ZodString;
|
|
@@ -1320,17 +1193,42 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1320
1193
|
}, z.core.$strip>>>;
|
|
1321
1194
|
id: z.ZodString;
|
|
1322
1195
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
1323
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
1324
|
-
identifier: z.ZodString;
|
|
1325
|
-
id: z.ZodString;
|
|
1326
|
-
}, z.core.$strip>>;
|
|
1327
1196
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1328
1197
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1329
1198
|
identifier: z.ZodString;
|
|
1330
1199
|
id: z.ZodString;
|
|
1331
1200
|
}, z.core.$strip>>>;
|
|
1332
|
-
|
|
1201
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1202
|
+
filename: z.ZodString;
|
|
1203
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1204
|
+
document_id: z.ZodString;
|
|
1205
|
+
mimetype: z.ZodString;
|
|
1206
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1208
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1209
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1211
|
+
file: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
url: z.ZodString;
|
|
1213
|
+
created: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
type: z.ZodArray<z.ZodString>;
|
|
1215
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1216
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1217
|
+
source: z.ZodOptional<z.ZodString>;
|
|
1218
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1219
|
+
}, z.core.$strip>]>>>;
|
|
1333
1220
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
1221
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
1222
|
+
full: z.ZodOptional<z.ZodString>;
|
|
1223
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1225
|
+
street: z.ZodOptional<z.ZodString>;
|
|
1226
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
1230
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
1231
|
+
}, z.core.$strip>>;
|
|
1334
1232
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1335
1233
|
geo: z.ZodOptional<z.ZodObject<{
|
|
1336
1234
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -1340,52 +1238,14 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1340
1238
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
1341
1239
|
}, z.core.$strip>>;
|
|
1342
1240
|
headline: z.ZodString;
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
id: z.ZodString;
|
|
1346
|
-
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
1347
|
-
components: z.ZodOptional<z.ZodObject<{
|
|
1348
|
-
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
1349
|
-
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
1350
|
-
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1351
|
-
_category: z.ZodOptional<z.ZodString>;
|
|
1352
|
-
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
1353
|
-
_type: z.ZodString;
|
|
1354
|
-
city: z.ZodOptional<z.ZodString>;
|
|
1355
|
-
continent: z.ZodOptional<z.ZodString>;
|
|
1356
|
-
country: z.ZodOptional<z.ZodString>;
|
|
1357
|
-
country_code: z.ZodOptional<z.ZodString>;
|
|
1358
|
-
state_code: z.ZodOptional<z.ZodString>;
|
|
1359
|
-
county: z.ZodOptional<z.ZodString>;
|
|
1360
|
-
municipality: z.ZodOptional<z.ZodString>;
|
|
1361
|
-
political_union: z.ZodOptional<z.ZodString>;
|
|
1362
|
-
state: z.ZodOptional<z.ZodString>;
|
|
1363
|
-
state_district: z.ZodOptional<z.ZodString>;
|
|
1364
|
-
}, z.core.$strip>>;
|
|
1365
|
-
geometry: z.ZodOptional<z.ZodObject<{
|
|
1366
|
-
lat: z.ZodNumber;
|
|
1367
|
-
lng: z.ZodNumber;
|
|
1368
|
-
}, z.core.$strip>>;
|
|
1369
|
-
override: z.ZodOptional<z.ZodBoolean>;
|
|
1370
|
-
}, z.core.$strip>>;
|
|
1371
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
1372
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1241
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
1242
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1373
1243
|
identifier: z.ZodString;
|
|
1374
1244
|
id: z.ZodString;
|
|
1375
1245
|
role: z.ZodString;
|
|
1376
1246
|
ref: z.ZodOptional<z.ZodString>;
|
|
1377
1247
|
}, z.core.$strip>>>;
|
|
1378
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1379
1248
|
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
1249
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1390
1250
|
identifier: z.ZodString;
|
|
1391
1251
|
id: z.ZodString;
|
|
@@ -1409,6 +1269,10 @@ export declare const signalListBaseUnionSchemaV1: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
1409
1269
|
id: z.ZodString;
|
|
1410
1270
|
}, z.core.$strip>>;
|
|
1411
1271
|
schema: z.ZodLiteral<"global_signal">;
|
|
1272
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1273
|
+
identifier: z.ZodString;
|
|
1274
|
+
id: z.ZodString;
|
|
1275
|
+
}, z.core.$strip>>>;
|
|
1412
1276
|
}, z.core.$strict>], "schema">;
|
|
1413
1277
|
export type SignalListTypeV1 = z.infer<typeof signalListSchemaV1>;
|
|
1414
1278
|
export type SignalListUnionTypeV1 = z.infer<typeof signalListUnionSchemaV1>;
|
|
@@ -1420,7 +1284,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1420
1284
|
id: z.ZodString;
|
|
1421
1285
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1422
1286
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1423
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1424
1287
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1425
1288
|
identifier: z.ZodString;
|
|
1426
1289
|
id: z.ZodString;
|
|
@@ -1431,10 +1294,9 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1431
1294
|
identifier: z.ZodString;
|
|
1432
1295
|
id: z.ZodString;
|
|
1433
1296
|
}, z.core.$strip>>>;
|
|
1434
|
-
created: z.ZodString;
|
|
1435
1297
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1436
1298
|
filename: z.ZodString;
|
|
1437
|
-
created: z.ZodString
|
|
1299
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1438
1300
|
document_id: z.ZodString;
|
|
1439
1301
|
mimetype: z.ZodString;
|
|
1440
1302
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -1447,7 +1309,7 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1447
1309
|
created: z.ZodOptional<z.ZodString>;
|
|
1448
1310
|
type: z.ZodArray<z.ZodString>;
|
|
1449
1311
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1450
|
-
documentDate: z.ZodString
|
|
1312
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1451
1313
|
source: z.ZodOptional<z.ZodString>;
|
|
1452
1314
|
id: z.ZodOptional<z.ZodString>;
|
|
1453
1315
|
}, z.core.$strip>]>>>;
|
|
@@ -1529,7 +1391,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1529
1391
|
role: z.ZodString;
|
|
1530
1392
|
ref: z.ZodOptional<z.ZodString>;
|
|
1531
1393
|
}, z.core.$strip>>>;
|
|
1532
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1533
1394
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1534
1395
|
identifier: z.ZodString;
|
|
1535
1396
|
id: z.ZodString;
|
|
@@ -1546,7 +1407,6 @@ export declare const euSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1546
1407
|
identifier: z.ZodString;
|
|
1547
1408
|
id: z.ZodString;
|
|
1548
1409
|
}, z.core.$strip>>;
|
|
1549
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1550
1410
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1551
1411
|
identifier: z.ZodString;
|
|
1552
1412
|
id: z.ZodString;
|
|
@@ -1574,7 +1434,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1574
1434
|
id: z.ZodString;
|
|
1575
1435
|
schema: z.ZodLiteral<"us_signal">;
|
|
1576
1436
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1577
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1578
1437
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1579
1438
|
identifier: z.ZodString;
|
|
1580
1439
|
id: z.ZodString;
|
|
@@ -1589,10 +1448,9 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1589
1448
|
identifier: z.ZodString;
|
|
1590
1449
|
id: z.ZodString;
|
|
1591
1450
|
}, z.core.$strip>>>;
|
|
1592
|
-
created: z.ZodString;
|
|
1593
1451
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1594
1452
|
filename: z.ZodString;
|
|
1595
|
-
created: z.ZodString
|
|
1453
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1596
1454
|
document_id: z.ZodString;
|
|
1597
1455
|
mimetype: z.ZodString;
|
|
1598
1456
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -1605,7 +1463,7 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1605
1463
|
created: z.ZodOptional<z.ZodString>;
|
|
1606
1464
|
type: z.ZodArray<z.ZodString>;
|
|
1607
1465
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1608
|
-
documentDate: z.ZodString
|
|
1466
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1609
1467
|
source: z.ZodOptional<z.ZodString>;
|
|
1610
1468
|
id: z.ZodOptional<z.ZodString>;
|
|
1611
1469
|
}, z.core.$strip>]>>>;
|
|
@@ -1687,7 +1545,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1687
1545
|
role: z.ZodString;
|
|
1688
1546
|
ref: z.ZodOptional<z.ZodString>;
|
|
1689
1547
|
}, z.core.$strip>>>;
|
|
1690
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1691
1548
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1692
1549
|
identifier: z.ZodString;
|
|
1693
1550
|
id: z.ZodString;
|
|
@@ -1720,7 +1577,6 @@ export declare const usSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1720
1577
|
identifier: z.ZodString;
|
|
1721
1578
|
id: z.ZodString;
|
|
1722
1579
|
}, z.core.$strip>>;
|
|
1723
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1724
1580
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1725
1581
|
identifier: z.ZodString;
|
|
1726
1582
|
id: z.ZodString;
|
|
@@ -1751,7 +1607,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1751
1607
|
}, z.core.$strip>>>;
|
|
1752
1608
|
id: z.ZodString;
|
|
1753
1609
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1754
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1755
1610
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1756
1611
|
identifier: z.ZodString;
|
|
1757
1612
|
id: z.ZodString;
|
|
@@ -1766,10 +1621,9 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1766
1621
|
identifier: z.ZodString;
|
|
1767
1622
|
id: z.ZodString;
|
|
1768
1623
|
}, z.core.$strip>>>;
|
|
1769
|
-
created: z.ZodString;
|
|
1770
1624
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1771
1625
|
filename: z.ZodString;
|
|
1772
|
-
created: z.ZodString
|
|
1626
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1773
1627
|
document_id: z.ZodString;
|
|
1774
1628
|
mimetype: z.ZodString;
|
|
1775
1629
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -1782,7 +1636,7 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1782
1636
|
created: z.ZodOptional<z.ZodString>;
|
|
1783
1637
|
type: z.ZodArray<z.ZodString>;
|
|
1784
1638
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1785
|
-
documentDate: z.ZodString
|
|
1639
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1786
1640
|
source: z.ZodOptional<z.ZodString>;
|
|
1787
1641
|
id: z.ZodOptional<z.ZodString>;
|
|
1788
1642
|
}, z.core.$strip>]>>>;
|
|
@@ -1864,7 +1718,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1864
1718
|
role: z.ZodString;
|
|
1865
1719
|
ref: z.ZodOptional<z.ZodString>;
|
|
1866
1720
|
}, z.core.$strip>>>;
|
|
1867
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
1868
1721
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1869
1722
|
identifier: z.ZodString;
|
|
1870
1723
|
id: z.ZodString;
|
|
@@ -1897,7 +1750,6 @@ export declare const globalSignalDetailsSchemaV1: z.ZodObject<{
|
|
|
1897
1750
|
identifier: z.ZodString;
|
|
1898
1751
|
id: z.ZodString;
|
|
1899
1752
|
}, z.core.$strip>>;
|
|
1900
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
1901
1753
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1902
1754
|
identifier: z.ZodString;
|
|
1903
1755
|
id: z.ZodString;
|
|
@@ -1926,7 +1778,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
1926
1778
|
id: z.ZodString;
|
|
1927
1779
|
schema: z.ZodLiteral<"eu_signal">;
|
|
1928
1780
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
1929
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
1930
1781
|
audiences: z.ZodArray<z.ZodObject<{
|
|
1931
1782
|
identifier: z.ZodString;
|
|
1932
1783
|
id: z.ZodString;
|
|
@@ -1937,10 +1788,9 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
1937
1788
|
identifier: z.ZodString;
|
|
1938
1789
|
id: z.ZodString;
|
|
1939
1790
|
}, z.core.$strip>>>;
|
|
1940
|
-
created: z.ZodString;
|
|
1941
1791
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1942
1792
|
filename: z.ZodString;
|
|
1943
|
-
created: z.ZodString
|
|
1793
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1944
1794
|
document_id: z.ZodString;
|
|
1945
1795
|
mimetype: z.ZodString;
|
|
1946
1796
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -1953,7 +1803,7 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
1953
1803
|
created: z.ZodOptional<z.ZodString>;
|
|
1954
1804
|
type: z.ZodArray<z.ZodString>;
|
|
1955
1805
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1956
|
-
documentDate: z.ZodString
|
|
1806
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1957
1807
|
source: z.ZodOptional<z.ZodString>;
|
|
1958
1808
|
id: z.ZodOptional<z.ZodString>;
|
|
1959
1809
|
}, z.core.$strip>]>>>;
|
|
@@ -2035,7 +1885,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2035
1885
|
role: z.ZodString;
|
|
2036
1886
|
ref: z.ZodOptional<z.ZodString>;
|
|
2037
1887
|
}, z.core.$strip>>>;
|
|
2038
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2039
1888
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2040
1889
|
identifier: z.ZodString;
|
|
2041
1890
|
id: z.ZodString;
|
|
@@ -2052,7 +1901,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2052
1901
|
identifier: z.ZodString;
|
|
2053
1902
|
id: z.ZodString;
|
|
2054
1903
|
}, z.core.$strip>>;
|
|
2055
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2056
1904
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2057
1905
|
identifier: z.ZodString;
|
|
2058
1906
|
id: z.ZodString;
|
|
@@ -2079,7 +1927,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2079
1927
|
id: z.ZodString;
|
|
2080
1928
|
schema: z.ZodLiteral<"us_signal">;
|
|
2081
1929
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2082
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2083
1930
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2084
1931
|
identifier: z.ZodString;
|
|
2085
1932
|
id: z.ZodString;
|
|
@@ -2094,10 +1941,9 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2094
1941
|
identifier: z.ZodString;
|
|
2095
1942
|
id: z.ZodString;
|
|
2096
1943
|
}, z.core.$strip>>>;
|
|
2097
|
-
created: z.ZodString;
|
|
2098
1944
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2099
1945
|
filename: z.ZodString;
|
|
2100
|
-
created: z.ZodString
|
|
1946
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2101
1947
|
document_id: z.ZodString;
|
|
2102
1948
|
mimetype: z.ZodString;
|
|
2103
1949
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -2110,7 +1956,7 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2110
1956
|
created: z.ZodOptional<z.ZodString>;
|
|
2111
1957
|
type: z.ZodArray<z.ZodString>;
|
|
2112
1958
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2113
|
-
documentDate: z.ZodString
|
|
1959
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2114
1960
|
source: z.ZodOptional<z.ZodString>;
|
|
2115
1961
|
id: z.ZodOptional<z.ZodString>;
|
|
2116
1962
|
}, z.core.$strip>]>>>;
|
|
@@ -2192,7 +2038,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2192
2038
|
role: z.ZodString;
|
|
2193
2039
|
ref: z.ZodOptional<z.ZodString>;
|
|
2194
2040
|
}, z.core.$strip>>>;
|
|
2195
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2196
2041
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2197
2042
|
identifier: z.ZodString;
|
|
2198
2043
|
id: z.ZodString;
|
|
@@ -2225,7 +2070,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2225
2070
|
identifier: z.ZodString;
|
|
2226
2071
|
id: z.ZodString;
|
|
2227
2072
|
}, z.core.$strip>>;
|
|
2228
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2229
2073
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2230
2074
|
identifier: z.ZodString;
|
|
2231
2075
|
id: z.ZodString;
|
|
@@ -2255,7 +2099,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2255
2099
|
}, z.core.$strip>>>;
|
|
2256
2100
|
id: z.ZodString;
|
|
2257
2101
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2258
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2259
2102
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2260
2103
|
identifier: z.ZodString;
|
|
2261
2104
|
id: z.ZodString;
|
|
@@ -2270,10 +2113,9 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2270
2113
|
identifier: z.ZodString;
|
|
2271
2114
|
id: z.ZodString;
|
|
2272
2115
|
}, z.core.$strip>>>;
|
|
2273
|
-
created: z.ZodString;
|
|
2274
2116
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2275
2117
|
filename: z.ZodString;
|
|
2276
|
-
created: z.ZodString
|
|
2118
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2277
2119
|
document_id: z.ZodString;
|
|
2278
2120
|
mimetype: z.ZodString;
|
|
2279
2121
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -2286,7 +2128,7 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2286
2128
|
created: z.ZodOptional<z.ZodString>;
|
|
2287
2129
|
type: z.ZodArray<z.ZodString>;
|
|
2288
2130
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2289
|
-
documentDate: z.ZodString
|
|
2131
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2290
2132
|
source: z.ZodOptional<z.ZodString>;
|
|
2291
2133
|
id: z.ZodOptional<z.ZodString>;
|
|
2292
2134
|
}, z.core.$strip>]>>>;
|
|
@@ -2368,7 +2210,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2368
2210
|
role: z.ZodString;
|
|
2369
2211
|
ref: z.ZodOptional<z.ZodString>;
|
|
2370
2212
|
}, z.core.$strip>>>;
|
|
2371
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2372
2213
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2373
2214
|
identifier: z.ZodString;
|
|
2374
2215
|
id: z.ZodString;
|
|
@@ -2401,7 +2242,6 @@ export declare const signalDetailsSchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
|
2401
2242
|
identifier: z.ZodString;
|
|
2402
2243
|
id: z.ZodString;
|
|
2403
2244
|
}, z.core.$strip>>;
|
|
2404
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2405
2245
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2406
2246
|
identifier: z.ZodString;
|
|
2407
2247
|
id: z.ZodString;
|
|
@@ -2430,7 +2270,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2430
2270
|
id: z.ZodString;
|
|
2431
2271
|
schema: z.ZodLiteral<"eu_signal">;
|
|
2432
2272
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2433
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2434
2273
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2435
2274
|
identifier: z.ZodString;
|
|
2436
2275
|
id: z.ZodString;
|
|
@@ -2441,10 +2280,9 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2441
2280
|
identifier: z.ZodString;
|
|
2442
2281
|
id: z.ZodString;
|
|
2443
2282
|
}, z.core.$strip>>>;
|
|
2444
|
-
created: z.ZodString;
|
|
2445
2283
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2446
2284
|
filename: z.ZodString;
|
|
2447
|
-
created: z.ZodString
|
|
2285
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2448
2286
|
document_id: z.ZodString;
|
|
2449
2287
|
mimetype: z.ZodString;
|
|
2450
2288
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -2457,7 +2295,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2457
2295
|
created: z.ZodOptional<z.ZodString>;
|
|
2458
2296
|
type: z.ZodArray<z.ZodString>;
|
|
2459
2297
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2460
|
-
documentDate: z.ZodString
|
|
2298
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2461
2299
|
source: z.ZodOptional<z.ZodString>;
|
|
2462
2300
|
id: z.ZodOptional<z.ZodString>;
|
|
2463
2301
|
}, z.core.$strip>]>>>;
|
|
@@ -2539,7 +2377,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2539
2377
|
role: z.ZodString;
|
|
2540
2378
|
ref: z.ZodOptional<z.ZodString>;
|
|
2541
2379
|
}, z.core.$strip>>>;
|
|
2542
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2543
2380
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2544
2381
|
identifier: z.ZodString;
|
|
2545
2382
|
id: z.ZodString;
|
|
@@ -2556,7 +2393,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2556
2393
|
identifier: z.ZodString;
|
|
2557
2394
|
id: z.ZodString;
|
|
2558
2395
|
}, z.core.$strip>>;
|
|
2559
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2560
2396
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2561
2397
|
identifier: z.ZodString;
|
|
2562
2398
|
id: z.ZodString;
|
|
@@ -2583,7 +2419,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2583
2419
|
id: z.ZodString;
|
|
2584
2420
|
schema: z.ZodLiteral<"us_signal">;
|
|
2585
2421
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2586
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2587
2422
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2588
2423
|
identifier: z.ZodString;
|
|
2589
2424
|
id: z.ZodString;
|
|
@@ -2598,10 +2433,9 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2598
2433
|
identifier: z.ZodString;
|
|
2599
2434
|
id: z.ZodString;
|
|
2600
2435
|
}, z.core.$strip>>>;
|
|
2601
|
-
created: z.ZodString;
|
|
2602
2436
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2603
2437
|
filename: z.ZodString;
|
|
2604
|
-
created: z.ZodString
|
|
2438
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2605
2439
|
document_id: z.ZodString;
|
|
2606
2440
|
mimetype: z.ZodString;
|
|
2607
2441
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -2614,7 +2448,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2614
2448
|
created: z.ZodOptional<z.ZodString>;
|
|
2615
2449
|
type: z.ZodArray<z.ZodString>;
|
|
2616
2450
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2617
|
-
documentDate: z.ZodString
|
|
2451
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2618
2452
|
source: z.ZodOptional<z.ZodString>;
|
|
2619
2453
|
id: z.ZodOptional<z.ZodString>;
|
|
2620
2454
|
}, z.core.$strip>]>>>;
|
|
@@ -2696,7 +2530,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2696
2530
|
role: z.ZodString;
|
|
2697
2531
|
ref: z.ZodOptional<z.ZodString>;
|
|
2698
2532
|
}, z.core.$strip>>>;
|
|
2699
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2700
2533
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2701
2534
|
identifier: z.ZodString;
|
|
2702
2535
|
id: z.ZodString;
|
|
@@ -2729,7 +2562,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2729
2562
|
identifier: z.ZodString;
|
|
2730
2563
|
id: z.ZodString;
|
|
2731
2564
|
}, z.core.$strip>>;
|
|
2732
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2733
2565
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2734
2566
|
identifier: z.ZodString;
|
|
2735
2567
|
id: z.ZodString;
|
|
@@ -2759,7 +2591,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2759
2591
|
}, z.core.$strip>>>;
|
|
2760
2592
|
id: z.ZodString;
|
|
2761
2593
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
2762
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
2763
2594
|
audiences: z.ZodArray<z.ZodObject<{
|
|
2764
2595
|
identifier: z.ZodString;
|
|
2765
2596
|
id: z.ZodString;
|
|
@@ -2774,10 +2605,9 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2774
2605
|
identifier: z.ZodString;
|
|
2775
2606
|
id: z.ZodString;
|
|
2776
2607
|
}, z.core.$strip>>>;
|
|
2777
|
-
created: z.ZodString;
|
|
2778
2608
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2779
2609
|
filename: z.ZodString;
|
|
2780
|
-
created: z.ZodString
|
|
2610
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2781
2611
|
document_id: z.ZodString;
|
|
2782
2612
|
mimetype: z.ZodString;
|
|
2783
2613
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -2790,7 +2620,7 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2790
2620
|
created: z.ZodOptional<z.ZodString>;
|
|
2791
2621
|
type: z.ZodArray<z.ZodString>;
|
|
2792
2622
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2793
|
-
documentDate: z.ZodString
|
|
2623
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2794
2624
|
source: z.ZodOptional<z.ZodString>;
|
|
2795
2625
|
id: z.ZodOptional<z.ZodString>;
|
|
2796
2626
|
}, z.core.$strip>]>>>;
|
|
@@ -2872,7 +2702,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2872
2702
|
role: z.ZodString;
|
|
2873
2703
|
ref: z.ZodOptional<z.ZodString>;
|
|
2874
2704
|
}, z.core.$strip>>>;
|
|
2875
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
2876
2705
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2877
2706
|
identifier: z.ZodString;
|
|
2878
2707
|
id: z.ZodString;
|
|
@@ -2905,7 +2734,6 @@ export declare const signalDetailsUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodO
|
|
|
2905
2734
|
identifier: z.ZodString;
|
|
2906
2735
|
id: z.ZodString;
|
|
2907
2736
|
}, z.core.$strip>>;
|
|
2908
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
2909
2737
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2910
2738
|
identifier: z.ZodString;
|
|
2911
2739
|
id: z.ZodString;
|
|
@@ -2935,22 +2763,33 @@ export type SignalDetailsUnionTypeV1 = z.infer<typeof signalDetailsUnionSchemaV1
|
|
|
2935
2763
|
export type EUSignalDetailsTypeV1 = z.infer<typeof euSignalDetailsSchemaV1>;
|
|
2936
2764
|
export type USSignalDetailsTypeV1 = z.infer<typeof usSignalDetailsSchemaV1>;
|
|
2937
2765
|
export type GlobalSignalDetailsTypeV1 = z.infer<typeof globalSignalDetailsSchemaV1>;
|
|
2938
|
-
export declare const
|
|
2766
|
+
export declare const signalByLocationListSchemaV1: z.ZodObject<{
|
|
2939
2767
|
id: z.ZodString;
|
|
2940
|
-
schema: z.
|
|
2768
|
+
schema: z.ZodString;
|
|
2941
2769
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
2942
|
-
|
|
2770
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2943
2771
|
identifier: z.ZodString;
|
|
2944
2772
|
id: z.ZodString;
|
|
2945
|
-
}, z.core.$strip
|
|
2946
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2773
|
+
}, z.core.$strip>>>;
|
|
2947
2774
|
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2948
2775
|
identifier: z.ZodString;
|
|
2949
2776
|
id: z.ZodString;
|
|
2950
2777
|
}, z.core.$strip>>>;
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2778
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2779
|
+
identifier: z.ZodString;
|
|
2780
|
+
id: z.ZodString;
|
|
2781
|
+
}, z.core.$strip>>>;
|
|
2782
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2783
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2784
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2785
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2786
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2787
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2788
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2789
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2790
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2791
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2792
|
+
}, z.core.$strip>>;
|
|
2954
2793
|
geo: z.ZodOptional<z.ZodObject<{
|
|
2955
2794
|
default: z.ZodOptional<z.ZodObject<{
|
|
2956
2795
|
lat: z.ZodNumber;
|
|
@@ -2958,7 +2797,6 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
2958
2797
|
}, z.core.$strip>>;
|
|
2959
2798
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
2960
2799
|
}, z.core.$strip>>;
|
|
2961
|
-
headline: z.ZodString;
|
|
2962
2800
|
location: z.ZodArray<z.ZodObject<{
|
|
2963
2801
|
identifier: z.ZodString;
|
|
2964
2802
|
id: z.ZodString;
|
|
@@ -2994,52 +2832,53 @@ export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
|
2994
2832
|
role: z.ZodString;
|
|
2995
2833
|
ref: z.ZodOptional<z.ZodString>;
|
|
2996
2834
|
}, z.core.$strip>>>;
|
|
2997
|
-
|
|
2998
|
-
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2999
|
-
sectors: z.ZodArray<z.ZodObject<{
|
|
3000
|
-
identifier: z.ZodString;
|
|
3001
|
-
id: z.ZodString;
|
|
3002
|
-
}, z.core.$strip>>;
|
|
3003
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3004
|
-
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3005
|
-
identifier: z.ZodString;
|
|
3006
|
-
id: z.ZodString;
|
|
3007
|
-
}, z.core.$strip>>>;
|
|
3008
|
-
totals: z.ZodOptional<z.ZodObject<{
|
|
3009
|
-
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
3010
|
-
projects: z.ZodOptional<z.ZodNumber>;
|
|
3011
|
-
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
3012
|
-
documents: z.ZodOptional<z.ZodNumber>;
|
|
3013
|
-
organizations: z.ZodOptional<z.ZodNumber>;
|
|
3014
|
-
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
3015
|
-
utility: z.ZodOptional<z.ZodNumber>;
|
|
3016
|
-
puc: z.ZodOptional<z.ZodNumber>;
|
|
3017
|
-
epc: z.ZodOptional<z.ZodNumber>;
|
|
3018
|
-
developer: z.ZodOptional<z.ZodNumber>;
|
|
3019
|
-
intels: z.ZodOptional<z.ZodNumber>;
|
|
3020
|
-
signals: z.ZodOptional<z.ZodNumber>;
|
|
3021
|
-
}, z.core.$strip>>;
|
|
2835
|
+
sort: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
3022
2836
|
type: z.ZodOptional<z.ZodObject<{
|
|
3023
2837
|
identifier: z.ZodString;
|
|
3024
2838
|
id: z.ZodString;
|
|
3025
2839
|
}, z.core.$strip>>;
|
|
3026
|
-
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3027
2840
|
}, z.core.$strict>;
|
|
3028
|
-
export
|
|
2841
|
+
export type SignalByLocationListTypeV1 = z.infer<typeof signalByLocationListSchemaV1>;
|
|
2842
|
+
export declare const euSignalExportSchemaV1: z.ZodObject<{
|
|
3029
2843
|
id: z.ZodString;
|
|
3030
|
-
schema: z.ZodLiteral<"
|
|
2844
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
3031
2845
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3032
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3033
|
-
identifier: z.ZodString;
|
|
3034
|
-
id: z.ZodString;
|
|
3035
|
-
}, z.core.$strip>>;
|
|
3036
2846
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3037
|
-
|
|
2847
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3038
2848
|
identifier: z.ZodString;
|
|
3039
2849
|
id: z.ZodString;
|
|
3040
2850
|
}, z.core.$strip>>>;
|
|
3041
|
-
|
|
2851
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2852
|
+
filename: z.ZodString;
|
|
2853
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2854
|
+
document_id: z.ZodString;
|
|
2855
|
+
mimetype: z.ZodString;
|
|
2856
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2857
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2858
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2859
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
2860
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2861
|
+
file: z.ZodOptional<z.ZodString>;
|
|
2862
|
+
url: z.ZodString;
|
|
2863
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2864
|
+
type: z.ZodArray<z.ZodString>;
|
|
2865
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2866
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2867
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2868
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2869
|
+
}, z.core.$strip>]>>>;
|
|
3042
2870
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
2871
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2872
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2873
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2874
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2875
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2876
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2877
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2878
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2879
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2880
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2881
|
+
}, z.core.$strip>>;
|
|
3043
2882
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3044
2883
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3045
2884
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3049,34 +2888,6 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3049
2888
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3050
2889
|
}, z.core.$strip>>;
|
|
3051
2890
|
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
2891
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3081
2892
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3082
2893
|
identifier: z.ZodString;
|
|
@@ -3084,17 +2895,7 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3084
2895
|
role: z.ZodString;
|
|
3085
2896
|
ref: z.ZodOptional<z.ZodString>;
|
|
3086
2897
|
}, z.core.$strip>>>;
|
|
3087
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3088
2898
|
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
|
-
state: z.ZodArray<z.ZodObject<{
|
|
3094
|
-
identifier: z.ZodString;
|
|
3095
|
-
id: z.ZodString;
|
|
3096
|
-
}, z.core.$strip>>;
|
|
3097
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3098
2899
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3099
2900
|
identifier: z.ZodString;
|
|
3100
2901
|
id: z.ZodString;
|
|
@@ -3119,24 +2920,46 @@ export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
|
3119
2920
|
}, z.core.$strip>>;
|
|
3120
2921
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3121
2922
|
}, z.core.$strict>;
|
|
3122
|
-
export declare const
|
|
3123
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3124
|
-
identifier: z.ZodString;
|
|
3125
|
-
id: z.ZodString;
|
|
3126
|
-
}, z.core.$strip>>>;
|
|
2923
|
+
export declare const usSignalExportSchemaV1: z.ZodObject<{
|
|
3127
2924
|
id: z.ZodString;
|
|
2925
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
3128
2926
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3129
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3130
|
-
identifier: z.ZodString;
|
|
3131
|
-
id: z.ZodString;
|
|
3132
|
-
}, z.core.$strip>>;
|
|
3133
2927
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3134
2928
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3135
2929
|
identifier: z.ZodString;
|
|
3136
2930
|
id: z.ZodString;
|
|
3137
2931
|
}, z.core.$strip>>>;
|
|
3138
|
-
|
|
2932
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
2933
|
+
filename: z.ZodString;
|
|
2934
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2935
|
+
document_id: z.ZodString;
|
|
2936
|
+
mimetype: z.ZodString;
|
|
2937
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2939
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2940
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
2941
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2942
|
+
file: z.ZodOptional<z.ZodString>;
|
|
2943
|
+
url: z.ZodString;
|
|
2944
|
+
created: z.ZodOptional<z.ZodString>;
|
|
2945
|
+
type: z.ZodArray<z.ZodString>;
|
|
2946
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
2947
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2948
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2949
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2950
|
+
}, z.core.$strip>]>>>;
|
|
3139
2951
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
2952
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
2953
|
+
full: z.ZodOptional<z.ZodString>;
|
|
2954
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2955
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2956
|
+
street: z.ZodOptional<z.ZodString>;
|
|
2957
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
2958
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
2959
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2960
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
2961
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
2962
|
+
}, z.core.$strip>>;
|
|
3140
2963
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3141
2964
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3142
2965
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3146,34 +2969,6 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3146
2969
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3147
2970
|
}, z.core.$strip>>;
|
|
3148
2971
|
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
2972
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3178
2973
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3179
2974
|
identifier: z.ZodString;
|
|
@@ -3181,17 +2976,11 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3181
2976
|
role: z.ZodString;
|
|
3182
2977
|
ref: z.ZodOptional<z.ZodString>;
|
|
3183
2978
|
}, z.core.$strip>>>;
|
|
3184
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3185
2979
|
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
2980
|
state: z.ZodArray<z.ZodObject<{
|
|
3191
2981
|
identifier: z.ZodString;
|
|
3192
2982
|
id: z.ZodString;
|
|
3193
2983
|
}, z.core.$strip>>;
|
|
3194
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3195
2984
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3196
2985
|
identifier: z.ZodString;
|
|
3197
2986
|
id: z.ZodString;
|
|
@@ -3214,24 +3003,51 @@ export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
|
3214
3003
|
identifier: z.ZodString;
|
|
3215
3004
|
id: z.ZodString;
|
|
3216
3005
|
}, z.core.$strip>>;
|
|
3217
|
-
schema: z.ZodLiteral<"global_signal">;
|
|
3218
3006
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3219
3007
|
}, z.core.$strict>;
|
|
3220
|
-
export declare const
|
|
3221
|
-
|
|
3222
|
-
schema: z.ZodLiteral<"eu_signal">;
|
|
3223
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
3224
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3008
|
+
export declare const globalSignalExportSchemaV1: z.ZodObject<{
|
|
3009
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3225
3010
|
identifier: z.ZodString;
|
|
3226
3011
|
id: z.ZodString;
|
|
3227
|
-
}, z.core.$strip
|
|
3012
|
+
}, z.core.$strip>>>;
|
|
3013
|
+
id: z.ZodString;
|
|
3014
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
3228
3015
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3229
|
-
|
|
3016
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3230
3017
|
identifier: z.ZodString;
|
|
3231
3018
|
id: z.ZodString;
|
|
3232
3019
|
}, z.core.$strip>>>;
|
|
3233
|
-
|
|
3020
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3021
|
+
filename: z.ZodString;
|
|
3022
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3023
|
+
document_id: z.ZodString;
|
|
3024
|
+
mimetype: z.ZodString;
|
|
3025
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3026
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3027
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3028
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3029
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3030
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3031
|
+
url: z.ZodString;
|
|
3032
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3033
|
+
type: z.ZodArray<z.ZodString>;
|
|
3034
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3035
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3036
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3037
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3038
|
+
}, z.core.$strip>]>>>;
|
|
3234
3039
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3040
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3041
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3042
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3043
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3044
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3045
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3046
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3047
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3048
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3049
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3050
|
+
}, z.core.$strip>>;
|
|
3235
3051
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3236
3052
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3237
3053
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3241,34 +3057,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3241
3057
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3242
3058
|
}, z.core.$strip>>;
|
|
3243
3059
|
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
3060
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3273
3061
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3274
3062
|
identifier: z.ZodString;
|
|
@@ -3276,13 +3064,7 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3276
3064
|
role: z.ZodString;
|
|
3277
3065
|
ref: z.ZodOptional<z.ZodString>;
|
|
3278
3066
|
}, z.core.$strip>>>;
|
|
3279
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3280
3067
|
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
3068
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3287
3069
|
identifier: z.ZodString;
|
|
3288
3070
|
id: z.ZodString;
|
|
@@ -3305,22 +3087,53 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3305
3087
|
identifier: z.ZodString;
|
|
3306
3088
|
id: z.ZodString;
|
|
3307
3089
|
}, z.core.$strip>>;
|
|
3090
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
3091
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3092
|
+
identifier: z.ZodString;
|
|
3093
|
+
id: z.ZodString;
|
|
3094
|
+
}, z.core.$strip>>>;
|
|
3308
3095
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3309
|
-
}, z.core.$strict
|
|
3096
|
+
}, z.core.$strict>;
|
|
3097
|
+
export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3310
3098
|
id: z.ZodString;
|
|
3311
|
-
schema: z.ZodLiteral<"
|
|
3099
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
3312
3100
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3313
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3314
|
-
identifier: z.ZodString;
|
|
3315
|
-
id: z.ZodString;
|
|
3316
|
-
}, z.core.$strip>>;
|
|
3317
3101
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3318
|
-
|
|
3102
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3319
3103
|
identifier: z.ZodString;
|
|
3320
3104
|
id: z.ZodString;
|
|
3321
3105
|
}, z.core.$strip>>>;
|
|
3322
|
-
|
|
3106
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3107
|
+
filename: z.ZodString;
|
|
3108
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3109
|
+
document_id: z.ZodString;
|
|
3110
|
+
mimetype: z.ZodString;
|
|
3111
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3112
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3113
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3114
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3115
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3116
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3117
|
+
url: z.ZodString;
|
|
3118
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3119
|
+
type: z.ZodArray<z.ZodString>;
|
|
3120
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3121
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3122
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3123
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3124
|
+
}, z.core.$strip>]>>>;
|
|
3323
3125
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3126
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3127
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3128
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3129
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3130
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3131
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3132
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3133
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3134
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3135
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3136
|
+
}, z.core.$strip>>;
|
|
3324
3137
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3325
3138
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3326
3139
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3330,34 +3143,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3330
3143
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3331
3144
|
}, z.core.$strip>>;
|
|
3332
3145
|
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
3146
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3362
3147
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3363
3148
|
identifier: z.ZodString;
|
|
@@ -3365,17 +3150,7 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3365
3150
|
role: z.ZodString;
|
|
3366
3151
|
ref: z.ZodOptional<z.ZodString>;
|
|
3367
3152
|
}, z.core.$strip>>>;
|
|
3368
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3369
3153
|
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
|
-
state: z.ZodArray<z.ZodObject<{
|
|
3375
|
-
identifier: z.ZodString;
|
|
3376
|
-
id: z.ZodString;
|
|
3377
|
-
}, z.core.$strip>>;
|
|
3378
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3379
3154
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3380
3155
|
identifier: z.ZodString;
|
|
3381
3156
|
id: z.ZodString;
|
|
@@ -3400,23 +3175,45 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3400
3175
|
}, z.core.$strip>>;
|
|
3401
3176
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3402
3177
|
}, z.core.$strict>, z.ZodObject<{
|
|
3403
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3404
|
-
identifier: z.ZodString;
|
|
3405
|
-
id: z.ZodString;
|
|
3406
|
-
}, z.core.$strip>>>;
|
|
3407
3178
|
id: z.ZodString;
|
|
3179
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
3408
3180
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3409
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
3410
|
-
identifier: z.ZodString;
|
|
3411
|
-
id: z.ZodString;
|
|
3412
|
-
}, z.core.$strip>>;
|
|
3413
3181
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3414
3182
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3415
3183
|
identifier: z.ZodString;
|
|
3416
3184
|
id: z.ZodString;
|
|
3417
3185
|
}, z.core.$strip>>>;
|
|
3418
|
-
|
|
3186
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3187
|
+
filename: z.ZodString;
|
|
3188
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3189
|
+
document_id: z.ZodString;
|
|
3190
|
+
mimetype: z.ZodString;
|
|
3191
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3192
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3193
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3194
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3195
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3196
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3197
|
+
url: z.ZodString;
|
|
3198
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3199
|
+
type: z.ZodArray<z.ZodString>;
|
|
3200
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3201
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3202
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3203
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
}, z.core.$strip>]>>>;
|
|
3419
3205
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3206
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3207
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3208
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3209
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3210
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3211
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3212
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3213
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3214
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3215
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3216
|
+
}, z.core.$strip>>;
|
|
3420
3217
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3421
3218
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3422
3219
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3426,34 +3223,6 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3426
3223
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3427
3224
|
}, z.core.$strip>>;
|
|
3428
3225
|
headline: z.ZodString;
|
|
3429
|
-
location: z.ZodArray<z.ZodObject<{
|
|
3430
|
-
identifier: z.ZodString;
|
|
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
3226
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3458
3227
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3459
3228
|
identifier: z.ZodString;
|
|
@@ -3461,17 +3230,11 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3461
3230
|
role: z.ZodString;
|
|
3462
3231
|
ref: z.ZodOptional<z.ZodString>;
|
|
3463
3232
|
}, z.core.$strip>>>;
|
|
3464
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3465
3233
|
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
3234
|
state: z.ZodArray<z.ZodObject<{
|
|
3471
3235
|
identifier: z.ZodString;
|
|
3472
3236
|
id: z.ZodString;
|
|
3473
3237
|
}, z.core.$strip>>;
|
|
3474
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3475
3238
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3476
3239
|
identifier: z.ZodString;
|
|
3477
3240
|
id: z.ZodString;
|
|
@@ -3494,19 +3257,22 @@ export declare const signalExportUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
3494
3257
|
identifier: z.ZodString;
|
|
3495
3258
|
id: z.ZodString;
|
|
3496
3259
|
}, z.core.$strip>>;
|
|
3497
|
-
schema: z.ZodLiteral<"global_signal">;
|
|
3498
3260
|
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3499
|
-
}, z.core.$strict
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3261
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3262
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3263
|
+
identifier: z.ZodString;
|
|
3264
|
+
id: z.ZodString;
|
|
3265
|
+
}, z.core.$strip>>>;
|
|
3266
|
+
id: z.ZodString;
|
|
3267
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
3268
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3269
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3270
|
+
identifier: z.ZodString;
|
|
3271
|
+
id: z.ZodString;
|
|
3272
|
+
}, z.core.$strip>>>;
|
|
3507
3273
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3508
3274
|
filename: z.ZodString;
|
|
3509
|
-
created: z.ZodString
|
|
3275
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3510
3276
|
document_id: z.ZodString;
|
|
3511
3277
|
mimetype: z.ZodString;
|
|
3512
3278
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -3519,10 +3285,11 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3519
3285
|
created: z.ZodOptional<z.ZodString>;
|
|
3520
3286
|
type: z.ZodArray<z.ZodString>;
|
|
3521
3287
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3522
|
-
documentDate: z.ZodString
|
|
3288
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3523
3289
|
source: z.ZodOptional<z.ZodString>;
|
|
3524
3290
|
id: z.ZodOptional<z.ZodString>;
|
|
3525
3291
|
}, z.core.$strip>]>>>;
|
|
3292
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
3526
3293
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3527
3294
|
full: z.ZodOptional<z.ZodString>;
|
|
3528
3295
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -3534,37 +3301,6 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3534
3301
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3535
3302
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3536
3303
|
}, z.core.$strip>>;
|
|
3537
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3538
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3539
|
-
identifier: z.ZodOptional<z.ZodString>;
|
|
3540
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
3541
|
-
role: z.ZodOptional<z.ZodString>;
|
|
3542
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
3543
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3544
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
3545
|
-
source: z.ZodOptional<z.ZodString>;
|
|
3546
|
-
}, z.core.$strip>>>;
|
|
3547
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3548
|
-
identifier: z.ZodString;
|
|
3549
|
-
id: z.ZodString;
|
|
3550
|
-
}, z.core.$strip>>>;
|
|
3551
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3552
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
3553
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
3554
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3555
|
-
id: z.ZodString;
|
|
3556
|
-
identifier: z.ZodString;
|
|
3557
|
-
}, z.core.$strip>>>;
|
|
3558
|
-
id: z.ZodString;
|
|
3559
|
-
schema: z.ZodLiteral<"eu_signal">;
|
|
3560
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
3561
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3562
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3563
|
-
identifier: z.ZodString;
|
|
3564
|
-
id: z.ZodString;
|
|
3565
|
-
}, z.core.$strip>>>;
|
|
3566
|
-
created: z.ZodString;
|
|
3567
|
-
facilityName: z.ZodOptional<z.ZodString>;
|
|
3568
3304
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3569
3305
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3570
3306
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3574,34 +3310,6 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3574
3310
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3575
3311
|
}, z.core.$strip>>;
|
|
3576
3312
|
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
3313
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3606
3314
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3607
3315
|
identifier: z.ZodString;
|
|
@@ -3609,13 +3317,7 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3609
3317
|
role: z.ZodString;
|
|
3610
3318
|
ref: z.ZodOptional<z.ZodString>;
|
|
3611
3319
|
}, z.core.$strip>>>;
|
|
3612
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3613
3320
|
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
3321
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3620
3322
|
identifier: z.ZodString;
|
|
3621
3323
|
id: z.ZodString;
|
|
@@ -3638,34 +3340,56 @@ export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
|
3638
3340
|
identifier: z.ZodString;
|
|
3639
3341
|
id: z.ZodString;
|
|
3640
3342
|
}, z.core.$strip>>;
|
|
3641
|
-
|
|
3343
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
3344
|
+
state: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3642
3345
|
identifier: z.ZodString;
|
|
3643
3346
|
id: z.ZodString;
|
|
3644
|
-
}, z.core.$strip
|
|
3645
|
-
|
|
3347
|
+
}, z.core.$strip>>>;
|
|
3348
|
+
sort: z.ZodTuple<[z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>, z.ZodNumber], null>;
|
|
3349
|
+
}, z.core.$strict>], "schema">;
|
|
3350
|
+
export type SignalExportUnionTypeV1 = z.infer<typeof signalExportUnionSchemaV1>;
|
|
3351
|
+
export type EUSignalExportTypeV1 = z.infer<typeof euSignalExportSchemaV1>;
|
|
3352
|
+
export type USSignalExportTypeV1 = z.infer<typeof usSignalExportSchemaV1>;
|
|
3353
|
+
export type GlobalSignalExportTypeV1 = z.infer<typeof globalSignalExportSchemaV1>;
|
|
3354
|
+
export declare const euSignalAPISchemaV1: z.ZodObject<{
|
|
3355
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
3356
|
+
body: z.ZodOptional<z.ZodString>;
|
|
3357
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3358
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3359
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
3360
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
3361
|
+
role: z.ZodOptional<z.ZodString>;
|
|
3362
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
3363
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3364
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
3365
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3366
|
+
}, z.core.$strip>>>;
|
|
3367
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3646
3368
|
identifier: z.ZodString;
|
|
3647
3369
|
id: z.ZodString;
|
|
3648
3370
|
}, z.core.$strip>>>;
|
|
3649
|
-
|
|
3650
|
-
|
|
3371
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3372
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
3373
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
3374
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3651
3375
|
id: z.ZodString;
|
|
3376
|
+
identifier: z.ZodString;
|
|
3652
3377
|
}, z.core.$strip>>>;
|
|
3653
|
-
|
|
3378
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3654
3379
|
identifier: z.ZodString;
|
|
3655
3380
|
id: z.ZodString;
|
|
3656
|
-
}, z.core.$strip
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3381
|
+
}, z.core.$strip>>;
|
|
3382
|
+
id: z.ZodString;
|
|
3383
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
3384
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
3385
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3386
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3663
3387
|
identifier: z.ZodString;
|
|
3664
3388
|
id: z.ZodString;
|
|
3665
3389
|
}, z.core.$strip>>>;
|
|
3666
3390
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3667
3391
|
filename: z.ZodString;
|
|
3668
|
-
created: z.ZodString
|
|
3392
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3669
3393
|
document_id: z.ZodString;
|
|
3670
3394
|
mimetype: z.ZodString;
|
|
3671
3395
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -3678,10 +3402,11 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3678
3402
|
created: z.ZodOptional<z.ZodString>;
|
|
3679
3403
|
type: z.ZodArray<z.ZodString>;
|
|
3680
3404
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3681
|
-
documentDate: z.ZodString
|
|
3405
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3682
3406
|
source: z.ZodOptional<z.ZodString>;
|
|
3683
3407
|
id: z.ZodOptional<z.ZodString>;
|
|
3684
3408
|
}, z.core.$strip>]>>>;
|
|
3409
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
3685
3410
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3686
3411
|
full: z.ZodOptional<z.ZodString>;
|
|
3687
3412
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -3693,49 +3418,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3693
3418
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3694
3419
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3695
3420
|
}, z.core.$strip>>;
|
|
3696
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3697
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3698
|
-
identifier: z.ZodOptional<z.ZodString>;
|
|
3699
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
3700
|
-
role: z.ZodOptional<z.ZodString>;
|
|
3701
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
3702
|
-
email: z.ZodOptional<z.ZodString>;
|
|
3703
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
3704
|
-
source: z.ZodOptional<z.ZodString>;
|
|
3705
|
-
}, z.core.$strip>>>;
|
|
3706
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3707
|
-
identifier: z.ZodString;
|
|
3708
|
-
id: z.ZodString;
|
|
3709
|
-
}, z.core.$strip>>>;
|
|
3710
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3711
|
-
identifier: z.ZodString;
|
|
3712
|
-
id: z.ZodString;
|
|
3713
|
-
}, z.core.$strip>>>;
|
|
3714
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3715
|
-
identifier: z.ZodString;
|
|
3716
|
-
id: z.ZodString;
|
|
3717
|
-
}, z.core.$strip>>>;
|
|
3718
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3719
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
3720
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
3721
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
3722
|
-
id: z.ZodString;
|
|
3723
|
-
identifier: z.ZodString;
|
|
3724
|
-
}, z.core.$strip>>>;
|
|
3725
|
-
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3726
|
-
identifier: z.ZodString;
|
|
3727
|
-
id: z.ZodString;
|
|
3728
|
-
}, z.core.$strip>>>;
|
|
3729
|
-
id: z.ZodString;
|
|
3730
|
-
schema: z.ZodLiteral<"us_signal">;
|
|
3731
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
3732
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3733
|
-
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3734
|
-
identifier: z.ZodString;
|
|
3735
|
-
id: z.ZodString;
|
|
3736
|
-
}, z.core.$strip>>>;
|
|
3737
|
-
created: z.ZodString;
|
|
3738
|
-
facilityName: z.ZodOptional<z.ZodString>;
|
|
3739
3421
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3740
3422
|
geo: z.ZodOptional<z.ZodObject<{
|
|
3741
3423
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -3745,34 +3427,6 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3745
3427
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3746
3428
|
}, z.core.$strip>>;
|
|
3747
3429
|
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
3430
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3777
3431
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3778
3432
|
identifier: z.ZodString;
|
|
@@ -3780,17 +3434,7 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3780
3434
|
role: z.ZodString;
|
|
3781
3435
|
ref: z.ZodOptional<z.ZodString>;
|
|
3782
3436
|
}, z.core.$strip>>>;
|
|
3783
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3784
3437
|
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
|
-
state: z.ZodArray<z.ZodObject<{
|
|
3790
|
-
identifier: z.ZodString;
|
|
3791
|
-
id: z.ZodString;
|
|
3792
|
-
}, z.core.$strip>>;
|
|
3793
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3794
3438
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3795
3439
|
identifier: z.ZodString;
|
|
3796
3440
|
id: z.ZodString;
|
|
@@ -3817,15 +3461,38 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3817
3461
|
identifier: z.ZodString;
|
|
3818
3462
|
id: z.ZodString;
|
|
3819
3463
|
}, z.core.$strip>>;
|
|
3820
|
-
|
|
3821
|
-
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
3464
|
+
created: z.ZodString;
|
|
3822
3465
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3823
3466
|
identifier: z.ZodString;
|
|
3824
3467
|
id: z.ZodString;
|
|
3825
3468
|
}, z.core.$strip>>>;
|
|
3826
|
-
|
|
3469
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3827
3470
|
identifier: z.ZodString;
|
|
3828
3471
|
id: z.ZodString;
|
|
3472
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3473
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3474
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3475
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3476
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3477
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3478
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3479
|
+
_type: z.ZodString;
|
|
3480
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3481
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3482
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3483
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3484
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3485
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3486
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3487
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3488
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3489
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3490
|
+
}, z.core.$strip>>;
|
|
3491
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3492
|
+
lat: z.ZodNumber;
|
|
3493
|
+
lng: z.ZodNumber;
|
|
3494
|
+
}, z.core.$strip>>;
|
|
3495
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3829
3496
|
}, z.core.$strip>>>;
|
|
3830
3497
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3831
3498
|
identifier: z.ZodString;
|
|
@@ -3835,49 +3502,16 @@ export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
|
3835
3502
|
identifier: z.ZodString;
|
|
3836
3503
|
id: z.ZodString;
|
|
3837
3504
|
}, z.core.$strip>>>;
|
|
3505
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
3838
3506
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
3839
3507
|
}, z.core.$strip>;
|
|
3840
|
-
export declare const
|
|
3841
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3842
|
-
identifier: z.ZodString;
|
|
3843
|
-
id: z.ZodString;
|
|
3844
|
-
}, z.core.$strip>>>;
|
|
3508
|
+
export declare const usSignalAPISchemaV1: z.ZodObject<{
|
|
3845
3509
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
3846
3510
|
body: z.ZodOptional<z.ZodString>;
|
|
3847
3511
|
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3848
3512
|
identifier: z.ZodString;
|
|
3849
3513
|
id: z.ZodString;
|
|
3850
3514
|
}, 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
3515
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3882
3516
|
id: z.ZodOptional<z.ZodString>;
|
|
3883
3517
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -3911,52 +3545,58 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3911
3545
|
identifier: z.ZodString;
|
|
3912
3546
|
id: z.ZodString;
|
|
3913
3547
|
}, z.core.$strip>>>;
|
|
3548
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3549
|
+
identifier: z.ZodString;
|
|
3550
|
+
id: z.ZodString;
|
|
3551
|
+
}, z.core.$strip>>;
|
|
3914
3552
|
id: z.ZodString;
|
|
3553
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
3915
3554
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
3916
3555
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3917
3556
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3918
3557
|
identifier: z.ZodString;
|
|
3919
3558
|
id: z.ZodString;
|
|
3920
3559
|
}, z.core.$strip>>>;
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
}, z.core.$strip
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3942
|
-
|
|
3943
|
-
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3947
|
-
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3560
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3561
|
+
filename: z.ZodString;
|
|
3562
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3563
|
+
document_id: z.ZodString;
|
|
3564
|
+
mimetype: z.ZodString;
|
|
3565
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3566
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3567
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3568
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3569
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3570
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3571
|
+
url: z.ZodString;
|
|
3572
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3573
|
+
type: z.ZodArray<z.ZodString>;
|
|
3574
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3575
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3576
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3577
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3578
|
+
}, z.core.$strip>]>>>;
|
|
3579
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
3580
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3581
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3582
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3583
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3584
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3585
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3586
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3587
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3588
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3589
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3590
|
+
}, z.core.$strip>>;
|
|
3591
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3592
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
3593
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
3955
3594
|
lat: z.ZodNumber;
|
|
3956
|
-
|
|
3595
|
+
lon: z.ZodNumber;
|
|
3957
3596
|
}, z.core.$strip>>;
|
|
3958
|
-
|
|
3597
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3959
3598
|
}, z.core.$strip>>;
|
|
3599
|
+
headline: z.ZodString;
|
|
3960
3600
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
3961
3601
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3962
3602
|
identifier: z.ZodString;
|
|
@@ -3964,17 +3604,11 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
3964
3604
|
role: z.ZodString;
|
|
3965
3605
|
ref: z.ZodOptional<z.ZodString>;
|
|
3966
3606
|
}, z.core.$strip>>>;
|
|
3967
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
3968
3607
|
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
3608
|
state: z.ZodArray<z.ZodObject<{
|
|
3974
3609
|
identifier: z.ZodString;
|
|
3975
3610
|
id: z.ZodString;
|
|
3976
3611
|
}, z.core.$strip>>;
|
|
3977
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
3978
3612
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3979
3613
|
identifier: z.ZodString;
|
|
3980
3614
|
id: z.ZodString;
|
|
@@ -4001,6 +3635,7 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4001
3635
|
identifier: z.ZodString;
|
|
4002
3636
|
id: z.ZodString;
|
|
4003
3637
|
}, z.core.$strip>>;
|
|
3638
|
+
created: z.ZodString;
|
|
4004
3639
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4005
3640
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4006
3641
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4011,6 +3646,34 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4011
3646
|
identifier: z.ZodString;
|
|
4012
3647
|
id: z.ZodString;
|
|
4013
3648
|
}, z.core.$strip>>>;
|
|
3649
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3650
|
+
identifier: z.ZodString;
|
|
3651
|
+
id: z.ZodString;
|
|
3652
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3653
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3654
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3655
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3656
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3657
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3658
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3659
|
+
_type: z.ZodString;
|
|
3660
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3661
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3662
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3663
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3664
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3665
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3666
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3667
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3668
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3669
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3670
|
+
}, z.core.$strip>>;
|
|
3671
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3672
|
+
lat: z.ZodNumber;
|
|
3673
|
+
lng: z.ZodNumber;
|
|
3674
|
+
}, z.core.$strip>>;
|
|
3675
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3676
|
+
}, z.core.$strip>>>;
|
|
4014
3677
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4015
3678
|
identifier: z.ZodString;
|
|
4016
3679
|
id: z.ZodString;
|
|
@@ -4019,42 +3682,20 @@ export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
|
4019
3682
|
identifier: z.ZodString;
|
|
4020
3683
|
id: z.ZodString;
|
|
4021
3684
|
}, z.core.$strip>>>;
|
|
3685
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4022
3686
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4023
|
-
schema: z.ZodLiteral<"global_signal">;
|
|
4024
3687
|
}, z.core.$strip>;
|
|
4025
|
-
export declare const
|
|
3688
|
+
export declare const globalSignalAPISchemaV1: z.ZodObject<{
|
|
3689
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3690
|
+
identifier: z.ZodString;
|
|
3691
|
+
id: z.ZodString;
|
|
3692
|
+
}, z.core.$strip>>>;
|
|
4026
3693
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4027
3694
|
body: z.ZodOptional<z.ZodString>;
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
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>>;
|
|
3695
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3696
|
+
identifier: z.ZodString;
|
|
3697
|
+
id: z.ZodString;
|
|
3698
|
+
}, z.core.$strip>>>;
|
|
4058
3699
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4059
3700
|
id: z.ZodOptional<z.ZodString>;
|
|
4060
3701
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4069,6 +3710,14 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4069
3710
|
identifier: z.ZodString;
|
|
4070
3711
|
id: z.ZodString;
|
|
4071
3712
|
}, z.core.$strip>>>;
|
|
3713
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3714
|
+
identifier: z.ZodString;
|
|
3715
|
+
id: z.ZodString;
|
|
3716
|
+
}, z.core.$strip>>>;
|
|
3717
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3718
|
+
identifier: z.ZodString;
|
|
3719
|
+
id: z.ZodString;
|
|
3720
|
+
}, z.core.$strip>>>;
|
|
4072
3721
|
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4073
3722
|
queueKey: z.ZodOptional<z.ZodString>;
|
|
4074
3723
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
@@ -4076,16 +3725,52 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4076
3725
|
id: z.ZodString;
|
|
4077
3726
|
identifier: z.ZodString;
|
|
4078
3727
|
}, z.core.$strip>>>;
|
|
3728
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3729
|
+
identifier: z.ZodString;
|
|
3730
|
+
id: z.ZodString;
|
|
3731
|
+
}, z.core.$strip>>>;
|
|
3732
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
3733
|
+
identifier: z.ZodString;
|
|
3734
|
+
id: z.ZodString;
|
|
3735
|
+
}, z.core.$strip>>;
|
|
4079
3736
|
id: z.ZodString;
|
|
4080
|
-
schema: z.ZodLiteral<"eu_signal">;
|
|
4081
3737
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4082
3738
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4083
|
-
|
|
3739
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4084
3740
|
identifier: z.ZodString;
|
|
4085
3741
|
id: z.ZodString;
|
|
4086
3742
|
}, z.core.$strip>>>;
|
|
4087
|
-
|
|
3743
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3744
|
+
filename: z.ZodString;
|
|
3745
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3746
|
+
document_id: z.ZodString;
|
|
3747
|
+
mimetype: z.ZodString;
|
|
3748
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3749
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3750
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3751
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3752
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3753
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3754
|
+
url: z.ZodString;
|
|
3755
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3756
|
+
type: z.ZodArray<z.ZodString>;
|
|
3757
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3758
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3759
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3760
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3761
|
+
}, z.core.$strip>]>>>;
|
|
4088
3762
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3763
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3764
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3765
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3766
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3767
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3768
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3769
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3770
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3771
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3772
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3773
|
+
}, z.core.$strip>>;
|
|
4089
3774
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4090
3775
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4091
3776
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4095,34 +3780,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4095
3780
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4096
3781
|
}, z.core.$strip>>;
|
|
4097
3782
|
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
3783
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4127
3784
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4128
3785
|
identifier: z.ZodString;
|
|
@@ -4130,13 +3787,11 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4130
3787
|
role: z.ZodString;
|
|
4131
3788
|
ref: z.ZodOptional<z.ZodString>;
|
|
4132
3789
|
}, z.core.$strip>>>;
|
|
4133
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
4134
3790
|
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4135
|
-
|
|
3791
|
+
state: z.ZodArray<z.ZodObject<{
|
|
4136
3792
|
identifier: z.ZodString;
|
|
4137
3793
|
id: z.ZodString;
|
|
4138
3794
|
}, z.core.$strip>>;
|
|
4139
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4140
3795
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4141
3796
|
identifier: z.ZodString;
|
|
4142
3797
|
id: z.ZodString;
|
|
@@ -4163,10 +3818,45 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4163
3818
|
identifier: z.ZodString;
|
|
4164
3819
|
id: z.ZodString;
|
|
4165
3820
|
}, z.core.$strip>>;
|
|
3821
|
+
created: z.ZodString;
|
|
3822
|
+
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
3823
|
+
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4166
3824
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4167
3825
|
identifier: z.ZodString;
|
|
4168
3826
|
id: z.ZodString;
|
|
4169
3827
|
}, z.core.$strip>>>;
|
|
3828
|
+
dgChannels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3829
|
+
identifier: z.ZodString;
|
|
3830
|
+
id: z.ZodString;
|
|
3831
|
+
}, z.core.$strip>>>;
|
|
3832
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3833
|
+
identifier: z.ZodString;
|
|
3834
|
+
id: z.ZodString;
|
|
3835
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3836
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3837
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3838
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3839
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3840
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3841
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3842
|
+
_type: z.ZodString;
|
|
3843
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3844
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
3845
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3846
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
3847
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
3848
|
+
county: z.ZodOptional<z.ZodString>;
|
|
3849
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
3850
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
3851
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3852
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
3853
|
+
}, z.core.$strip>>;
|
|
3854
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
3855
|
+
lat: z.ZodNumber;
|
|
3856
|
+
lng: z.ZodNumber;
|
|
3857
|
+
}, z.core.$strip>>;
|
|
3858
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
3859
|
+
}, z.core.$strip>>>;
|
|
4170
3860
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4171
3861
|
identifier: z.ZodString;
|
|
4172
3862
|
id: z.ZodString;
|
|
@@ -4175,44 +3865,13 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4175
3865
|
identifier: z.ZodString;
|
|
4176
3866
|
id: z.ZodString;
|
|
4177
3867
|
}, z.core.$strip>>>;
|
|
3868
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4178
3869
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4179
|
-
|
|
3870
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
3871
|
+
}, z.core.$strip>;
|
|
3872
|
+
export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
4180
3873
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4181
3874
|
body: z.ZodOptional<z.ZodString>;
|
|
4182
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4183
|
-
identifier: z.ZodString;
|
|
4184
|
-
id: z.ZodString;
|
|
4185
|
-
}, 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
3875
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4217
3876
|
id: z.ZodOptional<z.ZodString>;
|
|
4218
3877
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4227,14 +3886,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4227
3886
|
identifier: z.ZodString;
|
|
4228
3887
|
id: z.ZodString;
|
|
4229
3888
|
}, z.core.$strip>>>;
|
|
4230
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4231
|
-
identifier: z.ZodString;
|
|
4232
|
-
id: z.ZodString;
|
|
4233
|
-
}, z.core.$strip>>>;
|
|
4234
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4235
|
-
identifier: z.ZodString;
|
|
4236
|
-
id: z.ZodString;
|
|
4237
|
-
}, z.core.$strip>>>;
|
|
4238
3889
|
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4239
3890
|
queueKey: z.ZodOptional<z.ZodString>;
|
|
4240
3891
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
@@ -4242,20 +3893,49 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4242
3893
|
id: z.ZodString;
|
|
4243
3894
|
identifier: z.ZodString;
|
|
4244
3895
|
}, z.core.$strip>>>;
|
|
4245
|
-
|
|
3896
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4246
3897
|
identifier: z.ZodString;
|
|
4247
3898
|
id: z.ZodString;
|
|
4248
|
-
}, z.core.$strip
|
|
3899
|
+
}, z.core.$strip>>;
|
|
4249
3900
|
id: z.ZodString;
|
|
4250
|
-
schema: z.ZodLiteral<"
|
|
3901
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
4251
3902
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4252
3903
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4253
|
-
|
|
3904
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4254
3905
|
identifier: z.ZodString;
|
|
4255
3906
|
id: z.ZodString;
|
|
4256
3907
|
}, z.core.$strip>>>;
|
|
4257
|
-
|
|
3908
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
3909
|
+
filename: z.ZodString;
|
|
3910
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3911
|
+
document_id: z.ZodString;
|
|
3912
|
+
mimetype: z.ZodString;
|
|
3913
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3914
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3915
|
+
key: z.ZodOptional<z.ZodString>;
|
|
3916
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
3917
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3918
|
+
file: z.ZodOptional<z.ZodString>;
|
|
3919
|
+
url: z.ZodString;
|
|
3920
|
+
created: z.ZodOptional<z.ZodString>;
|
|
3921
|
+
type: z.ZodArray<z.ZodString>;
|
|
3922
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
3923
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3924
|
+
source: z.ZodOptional<z.ZodString>;
|
|
3925
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3926
|
+
}, z.core.$strip>]>>>;
|
|
4258
3927
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
3928
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
3929
|
+
full: z.ZodOptional<z.ZodString>;
|
|
3930
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3931
|
+
state: z.ZodOptional<z.ZodString>;
|
|
3932
|
+
street: z.ZodOptional<z.ZodString>;
|
|
3933
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
3934
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
3935
|
+
country: z.ZodOptional<z.ZodString>;
|
|
3936
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
3937
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
3938
|
+
}, z.core.$strip>>;
|
|
4259
3939
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4260
3940
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4261
3941
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4265,34 +3945,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4265
3945
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4266
3946
|
}, z.core.$strip>>;
|
|
4267
3947
|
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
3948
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4297
3949
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4298
3950
|
identifier: z.ZodString;
|
|
@@ -4300,17 +3952,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4300
3952
|
role: z.ZodString;
|
|
4301
3953
|
ref: z.ZodOptional<z.ZodString>;
|
|
4302
3954
|
}, z.core.$strip>>>;
|
|
4303
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
4304
3955
|
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
|
-
state: z.ZodArray<z.ZodObject<{
|
|
4310
|
-
identifier: z.ZodString;
|
|
4311
|
-
id: z.ZodString;
|
|
4312
|
-
}, z.core.$strip>>;
|
|
4313
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4314
3956
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4315
3957
|
identifier: z.ZodString;
|
|
4316
3958
|
id: z.ZodString;
|
|
@@ -4337,15 +3979,38 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4337
3979
|
identifier: z.ZodString;
|
|
4338
3980
|
id: z.ZodString;
|
|
4339
3981
|
}, z.core.$strip>>;
|
|
4340
|
-
|
|
4341
|
-
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
3982
|
+
created: z.ZodString;
|
|
4342
3983
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4343
3984
|
identifier: z.ZodString;
|
|
4344
3985
|
id: z.ZodString;
|
|
4345
3986
|
}, z.core.$strip>>>;
|
|
4346
|
-
|
|
3987
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4347
3988
|
identifier: z.ZodString;
|
|
4348
3989
|
id: z.ZodString;
|
|
3990
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
3991
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
3992
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
3993
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
3994
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3995
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
3996
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
3997
|
+
_type: z.ZodString;
|
|
3998
|
+
city: z.ZodOptional<z.ZodString>;
|
|
3999
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4000
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4001
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4002
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4003
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4004
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4005
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4006
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4007
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4008
|
+
}, z.core.$strip>>;
|
|
4009
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4010
|
+
lat: z.ZodNumber;
|
|
4011
|
+
lng: z.ZodNumber;
|
|
4012
|
+
}, z.core.$strip>>;
|
|
4013
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4349
4014
|
}, z.core.$strip>>>;
|
|
4350
4015
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4351
4016
|
identifier: z.ZodString;
|
|
@@ -4355,48 +4020,15 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4355
4020
|
identifier: z.ZodString;
|
|
4356
4021
|
id: z.ZodString;
|
|
4357
4022
|
}, z.core.$strip>>>;
|
|
4023
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4358
4024
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4359
|
-
}, z.core.$strip
|
|
4360
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4361
|
-
identifier: z.ZodString;
|
|
4362
|
-
id: z.ZodString;
|
|
4363
|
-
}, z.core.$strip>>>;
|
|
4025
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4364
4026
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4365
4027
|
body: z.ZodOptional<z.ZodString>;
|
|
4366
4028
|
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4367
4029
|
identifier: z.ZodString;
|
|
4368
4030
|
id: z.ZodString;
|
|
4369
4031
|
}, 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
4032
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4401
4033
|
id: z.ZodOptional<z.ZodString>;
|
|
4402
4034
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4430,15 +4062,49 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4430
4062
|
identifier: z.ZodString;
|
|
4431
4063
|
id: z.ZodString;
|
|
4432
4064
|
}, z.core.$strip>>>;
|
|
4065
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4066
|
+
identifier: z.ZodString;
|
|
4067
|
+
id: z.ZodString;
|
|
4068
|
+
}, z.core.$strip>>;
|
|
4433
4069
|
id: z.ZodString;
|
|
4070
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
4434
4071
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4435
4072
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4436
4073
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4437
4074
|
identifier: z.ZodString;
|
|
4438
4075
|
id: z.ZodString;
|
|
4439
4076
|
}, z.core.$strip>>>;
|
|
4440
|
-
|
|
4077
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4078
|
+
filename: z.ZodString;
|
|
4079
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4080
|
+
document_id: z.ZodString;
|
|
4081
|
+
mimetype: z.ZodString;
|
|
4082
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4083
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4084
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4085
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4086
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4087
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4088
|
+
url: z.ZodString;
|
|
4089
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4090
|
+
type: z.ZodArray<z.ZodString>;
|
|
4091
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4092
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4093
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4094
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4095
|
+
}, z.core.$strip>]>>>;
|
|
4441
4096
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4097
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4098
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4099
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4100
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4101
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4102
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4103
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4104
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4105
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4106
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4107
|
+
}, z.core.$strip>>;
|
|
4442
4108
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4443
4109
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4444
4110
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4448,34 +4114,6 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4448
4114
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4449
4115
|
}, z.core.$strip>>;
|
|
4450
4116
|
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
4117
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4480
4118
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4481
4119
|
identifier: z.ZodString;
|
|
@@ -4483,17 +4121,11 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4483
4121
|
role: z.ZodString;
|
|
4484
4122
|
ref: z.ZodOptional<z.ZodString>;
|
|
4485
4123
|
}, z.core.$strip>>>;
|
|
4486
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
4487
4124
|
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
4125
|
state: z.ZodArray<z.ZodObject<{
|
|
4493
4126
|
identifier: z.ZodString;
|
|
4494
4127
|
id: z.ZodString;
|
|
4495
4128
|
}, z.core.$strip>>;
|
|
4496
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4497
4129
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4498
4130
|
identifier: z.ZodString;
|
|
4499
4131
|
id: z.ZodString;
|
|
@@ -4520,6 +4152,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4520
4152
|
identifier: z.ZodString;
|
|
4521
4153
|
id: z.ZodString;
|
|
4522
4154
|
}, z.core.$strip>>;
|
|
4155
|
+
created: z.ZodString;
|
|
4523
4156
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4524
4157
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4525
4158
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4530,91 +4163,7 @@ export declare const signalAPISchemaV1: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4530
4163
|
identifier: z.ZodString;
|
|
4531
4164
|
id: z.ZodString;
|
|
4532
4165
|
}, z.core.$strip>>>;
|
|
4533
|
-
|
|
4534
|
-
identifier: z.ZodString;
|
|
4535
|
-
id: z.ZodString;
|
|
4536
|
-
}, z.core.$strip>>>;
|
|
4537
|
-
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4538
|
-
identifier: z.ZodString;
|
|
4539
|
-
id: z.ZodString;
|
|
4540
|
-
}, z.core.$strip>>>;
|
|
4541
|
-
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4542
|
-
schema: z.ZodLiteral<"global_signal">;
|
|
4543
|
-
}, z.core.$strip>]>;
|
|
4544
|
-
export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4545
|
-
$organizations: z.ZodOptional<z.ZodString>;
|
|
4546
|
-
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
|
-
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4578
|
-
id: z.ZodOptional<z.ZodString>;
|
|
4579
|
-
identifier: z.ZodOptional<z.ZodString>;
|
|
4580
|
-
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4581
|
-
role: z.ZodOptional<z.ZodString>;
|
|
4582
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
4583
|
-
email: z.ZodOptional<z.ZodString>;
|
|
4584
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
4585
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4586
|
-
}, z.core.$strip>>>;
|
|
4587
|
-
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4588
|
-
identifier: z.ZodString;
|
|
4589
|
-
id: z.ZodString;
|
|
4590
|
-
}, z.core.$strip>>>;
|
|
4591
|
-
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4592
|
-
queueKey: z.ZodOptional<z.ZodString>;
|
|
4593
|
-
applicationId: z.ZodOptional<z.ZodString>;
|
|
4594
|
-
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4595
|
-
id: z.ZodString;
|
|
4596
|
-
identifier: z.ZodString;
|
|
4597
|
-
}, z.core.$strip>>>;
|
|
4598
|
-
id: z.ZodString;
|
|
4599
|
-
schema: z.ZodLiteral<"eu_signal">;
|
|
4600
|
-
allSectors: z.ZodOptional<z.ZodString>;
|
|
4601
|
-
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4602
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4603
|
-
identifier: z.ZodString;
|
|
4604
|
-
id: z.ZodString;
|
|
4605
|
-
}, z.core.$strip>>>;
|
|
4606
|
-
created: z.ZodString;
|
|
4607
|
-
facilityName: z.ZodOptional<z.ZodString>;
|
|
4608
|
-
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4609
|
-
geo: z.ZodOptional<z.ZodObject<{
|
|
4610
|
-
default: z.ZodOptional<z.ZodObject<{
|
|
4611
|
-
lat: z.ZodNumber;
|
|
4612
|
-
lon: z.ZodNumber;
|
|
4613
|
-
}, z.core.$strip>>;
|
|
4614
|
-
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4615
|
-
}, z.core.$strip>>;
|
|
4616
|
-
headline: z.ZodString;
|
|
4617
|
-
location: z.ZodArray<z.ZodObject<{
|
|
4166
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4618
4167
|
identifier: z.ZodString;
|
|
4619
4168
|
id: z.ZodString;
|
|
4620
4169
|
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4641,50 +4190,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4641
4190
|
lng: z.ZodNumber;
|
|
4642
4191
|
}, z.core.$strip>>;
|
|
4643
4192
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
4644
|
-
}, z.core.$strip>>;
|
|
4645
|
-
mw: z.ZodOptional<z.ZodNumber>;
|
|
4646
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4647
|
-
identifier: z.ZodString;
|
|
4648
|
-
id: z.ZodString;
|
|
4649
|
-
role: z.ZodString;
|
|
4650
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
4651
|
-
}, z.core.$strip>>>;
|
|
4652
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
4653
|
-
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
|
-
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4660
|
-
identifier: z.ZodString;
|
|
4661
|
-
id: z.ZodString;
|
|
4662
|
-
}, z.core.$strip>>>;
|
|
4663
|
-
totals: z.ZodOptional<z.ZodObject<{
|
|
4664
|
-
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4665
|
-
projects: z.ZodOptional<z.ZodNumber>;
|
|
4666
|
-
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4667
|
-
documents: z.ZodOptional<z.ZodNumber>;
|
|
4668
|
-
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4669
|
-
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4670
|
-
utility: z.ZodOptional<z.ZodNumber>;
|
|
4671
|
-
puc: z.ZodOptional<z.ZodNumber>;
|
|
4672
|
-
epc: z.ZodOptional<z.ZodNumber>;
|
|
4673
|
-
developer: z.ZodOptional<z.ZodNumber>;
|
|
4674
|
-
intels: z.ZodOptional<z.ZodNumber>;
|
|
4675
|
-
signals: z.ZodOptional<z.ZodNumber>;
|
|
4676
|
-
}, z.core.$strip>>;
|
|
4677
|
-
type: z.ZodOptional<z.ZodObject<{
|
|
4678
|
-
identifier: z.ZodString;
|
|
4679
|
-
id: z.ZodString;
|
|
4680
|
-
}, z.core.$strip>>;
|
|
4681
|
-
audiences: z.ZodArray<z.ZodObject<{
|
|
4682
|
-
identifier: z.ZodString;
|
|
4683
|
-
id: z.ZodString;
|
|
4684
|
-
}, z.core.$strip>>;
|
|
4685
|
-
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4686
|
-
identifier: z.ZodString;
|
|
4687
|
-
id: z.ZodString;
|
|
4688
4193
|
}, z.core.$strip>>>;
|
|
4689
4194
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4690
4195
|
identifier: z.ZodString;
|
|
@@ -4694,44 +4199,19 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4694
4199
|
identifier: z.ZodString;
|
|
4695
4200
|
id: z.ZodString;
|
|
4696
4201
|
}, z.core.$strip>>>;
|
|
4202
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4697
4203
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4698
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4204
|
+
}, z.core.$strip>]>, z.ZodObject<{
|
|
4205
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4206
|
+
identifier: z.ZodString;
|
|
4207
|
+
id: z.ZodString;
|
|
4208
|
+
}, z.core.$strip>>>;
|
|
4699
4209
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4700
4210
|
body: z.ZodOptional<z.ZodString>;
|
|
4701
4211
|
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4702
4212
|
identifier: z.ZodString;
|
|
4703
4213
|
id: z.ZodString;
|
|
4704
4214
|
}, 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
4215
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4736
4216
|
id: z.ZodOptional<z.ZodString>;
|
|
4737
4217
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4765,16 +4245,48 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4765
4245
|
identifier: z.ZodString;
|
|
4766
4246
|
id: z.ZodString;
|
|
4767
4247
|
}, z.core.$strip>>>;
|
|
4248
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4249
|
+
identifier: z.ZodString;
|
|
4250
|
+
id: z.ZodString;
|
|
4251
|
+
}, z.core.$strip>>;
|
|
4768
4252
|
id: z.ZodString;
|
|
4769
|
-
schema: z.ZodLiteral<"us_signal">;
|
|
4770
4253
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4771
4254
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4772
4255
|
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4773
4256
|
identifier: z.ZodString;
|
|
4774
4257
|
id: z.ZodString;
|
|
4775
4258
|
}, z.core.$strip>>>;
|
|
4776
|
-
|
|
4259
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4260
|
+
filename: z.ZodString;
|
|
4261
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4262
|
+
document_id: z.ZodString;
|
|
4263
|
+
mimetype: z.ZodString;
|
|
4264
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4265
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4266
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4267
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4268
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4269
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4270
|
+
url: z.ZodString;
|
|
4271
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4272
|
+
type: z.ZodArray<z.ZodString>;
|
|
4273
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4274
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4275
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4276
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4277
|
+
}, z.core.$strip>]>>>;
|
|
4777
4278
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4279
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4280
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4281
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4282
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4283
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4284
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4285
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4286
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4287
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4288
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4289
|
+
}, z.core.$strip>>;
|
|
4778
4290
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4779
4291
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4780
4292
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4784,34 +4296,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4784
4296
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4785
4297
|
}, z.core.$strip>>;
|
|
4786
4298
|
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
4299
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4816
4300
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4817
4301
|
identifier: z.ZodString;
|
|
@@ -4819,17 +4303,11 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4819
4303
|
role: z.ZodString;
|
|
4820
4304
|
ref: z.ZodOptional<z.ZodString>;
|
|
4821
4305
|
}, z.core.$strip>>>;
|
|
4822
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
4823
4306
|
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
4307
|
state: z.ZodArray<z.ZodObject<{
|
|
4829
4308
|
identifier: z.ZodString;
|
|
4830
4309
|
id: z.ZodString;
|
|
4831
4310
|
}, z.core.$strip>>;
|
|
4832
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
4833
4311
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4834
4312
|
identifier: z.ZodString;
|
|
4835
4313
|
id: z.ZodString;
|
|
@@ -4856,6 +4334,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4856
4334
|
identifier: z.ZodString;
|
|
4857
4335
|
id: z.ZodString;
|
|
4858
4336
|
}, z.core.$strip>>;
|
|
4337
|
+
created: z.ZodString;
|
|
4859
4338
|
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4860
4339
|
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4861
4340
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -4866,56 +4345,49 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4866
4345
|
identifier: z.ZodString;
|
|
4867
4346
|
id: z.ZodString;
|
|
4868
4347
|
}, z.core.$strip>>>;
|
|
4869
|
-
|
|
4348
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4870
4349
|
identifier: z.ZodString;
|
|
4871
4350
|
id: z.ZodString;
|
|
4351
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4352
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4353
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4354
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4355
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4356
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4357
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4358
|
+
_type: z.ZodString;
|
|
4359
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4360
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4361
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4362
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4363
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4364
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4365
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4366
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4367
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4368
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4369
|
+
}, z.core.$strip>>;
|
|
4370
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4371
|
+
lat: z.ZodNumber;
|
|
4372
|
+
lng: z.ZodNumber;
|
|
4373
|
+
}, z.core.$strip>>;
|
|
4374
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4872
4375
|
}, z.core.$strip>>>;
|
|
4873
|
-
|
|
4376
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4874
4377
|
identifier: z.ZodString;
|
|
4875
4378
|
id: z.ZodString;
|
|
4876
4379
|
}, z.core.$strip>>>;
|
|
4877
|
-
|
|
4878
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4879
|
-
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4380
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4880
4381
|
identifier: z.ZodString;
|
|
4881
4382
|
id: z.ZodString;
|
|
4882
4383
|
}, z.core.$strip>>>;
|
|
4384
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4385
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4386
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4387
|
+
}, z.core.$strip>]>;
|
|
4388
|
+
export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4883
4389
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
4884
4390
|
body: z.ZodOptional<z.ZodString>;
|
|
4885
|
-
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4886
|
-
identifier: z.ZodString;
|
|
4887
|
-
id: z.ZodString;
|
|
4888
|
-
}, 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
4391
|
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4920
4392
|
id: z.ZodOptional<z.ZodString>;
|
|
4921
4393
|
identifier: z.ZodOptional<z.ZodString>;
|
|
@@ -4930,14 +4402,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4930
4402
|
identifier: z.ZodString;
|
|
4931
4403
|
id: z.ZodString;
|
|
4932
4404
|
}, z.core.$strip>>>;
|
|
4933
|
-
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4934
|
-
identifier: z.ZodString;
|
|
4935
|
-
id: z.ZodString;
|
|
4936
|
-
}, z.core.$strip>>>;
|
|
4937
|
-
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4938
|
-
identifier: z.ZodString;
|
|
4939
|
-
id: z.ZodString;
|
|
4940
|
-
}, z.core.$strip>>>;
|
|
4941
4405
|
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4942
4406
|
queueKey: z.ZodOptional<z.ZodString>;
|
|
4943
4407
|
applicationId: z.ZodOptional<z.ZodString>;
|
|
@@ -4945,19 +4409,49 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4945
4409
|
id: z.ZodString;
|
|
4946
4410
|
identifier: z.ZodString;
|
|
4947
4411
|
}, z.core.$strip>>>;
|
|
4948
|
-
|
|
4412
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4949
4413
|
identifier: z.ZodString;
|
|
4950
4414
|
id: z.ZodString;
|
|
4951
|
-
}, z.core.$strip
|
|
4415
|
+
}, z.core.$strip>>;
|
|
4952
4416
|
id: z.ZodString;
|
|
4417
|
+
schema: z.ZodLiteral<"eu_signal">;
|
|
4953
4418
|
allSectors: z.ZodOptional<z.ZodString>;
|
|
4954
4419
|
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4955
|
-
|
|
4420
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4956
4421
|
identifier: z.ZodString;
|
|
4957
4422
|
id: z.ZodString;
|
|
4958
4423
|
}, z.core.$strip>>>;
|
|
4959
|
-
|
|
4424
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4425
|
+
filename: z.ZodString;
|
|
4426
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4427
|
+
document_id: z.ZodString;
|
|
4428
|
+
mimetype: z.ZodString;
|
|
4429
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4430
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4431
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4432
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4433
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4434
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4435
|
+
url: z.ZodString;
|
|
4436
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4437
|
+
type: z.ZodArray<z.ZodString>;
|
|
4438
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4439
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4440
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4441
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4442
|
+
}, z.core.$strip>]>>>;
|
|
4960
4443
|
facilityName: z.ZodOptional<z.ZodString>;
|
|
4444
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4445
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4446
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4447
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4448
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4449
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4450
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4451
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4452
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4453
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4454
|
+
}, z.core.$strip>>;
|
|
4961
4455
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4962
4456
|
geo: z.ZodOptional<z.ZodObject<{
|
|
4963
4457
|
default: z.ZodOptional<z.ZodObject<{
|
|
@@ -4967,34 +4461,6 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
4967
4461
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4968
4462
|
}, z.core.$strip>>;
|
|
4969
4463
|
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
4464
|
mw: z.ZodOptional<z.ZodNumber>;
|
|
4999
4465
|
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5000
4466
|
identifier: z.ZodString;
|
|
@@ -5002,17 +4468,7 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5002
4468
|
role: z.ZodString;
|
|
5003
4469
|
ref: z.ZodOptional<z.ZodString>;
|
|
5004
4470
|
}, z.core.$strip>>>;
|
|
5005
|
-
phase: z.ZodOptional<z.ZodString>;
|
|
5006
4471
|
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
|
-
state: z.ZodArray<z.ZodObject<{
|
|
5012
|
-
identifier: z.ZodString;
|
|
5013
|
-
id: z.ZodString;
|
|
5014
|
-
}, z.core.$strip>>;
|
|
5015
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
5016
4472
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5017
4473
|
identifier: z.ZodString;
|
|
5018
4474
|
id: z.ZodString;
|
|
@@ -5039,15 +4495,38 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5039
4495
|
identifier: z.ZodString;
|
|
5040
4496
|
id: z.ZodString;
|
|
5041
4497
|
}, z.core.$strip>>;
|
|
5042
|
-
|
|
5043
|
-
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4498
|
+
created: z.ZodString;
|
|
5044
4499
|
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5045
4500
|
identifier: z.ZodString;
|
|
5046
4501
|
id: z.ZodString;
|
|
5047
4502
|
}, z.core.$strip>>>;
|
|
5048
|
-
|
|
4503
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5049
4504
|
identifier: z.ZodString;
|
|
5050
4505
|
id: z.ZodString;
|
|
4506
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4507
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4508
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4509
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4510
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4511
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4512
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4513
|
+
_type: z.ZodString;
|
|
4514
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4515
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4516
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4517
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4518
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4519
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4520
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4521
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4522
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4523
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4524
|
+
}, z.core.$strip>>;
|
|
4525
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4526
|
+
lat: z.ZodNumber;
|
|
4527
|
+
lng: z.ZodNumber;
|
|
4528
|
+
}, z.core.$strip>>;
|
|
4529
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
5051
4530
|
}, z.core.$strip>>>;
|
|
5052
4531
|
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5053
4532
|
identifier: z.ZodString;
|
|
@@ -5057,39 +4536,63 @@ export declare const signalAPIUnionSchemaV1: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
5057
4536
|
identifier: z.ZodString;
|
|
5058
4537
|
id: z.ZodString;
|
|
5059
4538
|
}, z.core.$strip>>>;
|
|
4539
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
5060
4540
|
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
5061
|
-
|
|
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<{
|
|
4541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
5069
4542
|
$organizations: z.ZodOptional<z.ZodString>;
|
|
5070
|
-
|
|
5071
|
-
|
|
4543
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4544
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5072
4545
|
identifier: z.ZodString;
|
|
5073
4546
|
id: z.ZodString;
|
|
5074
|
-
}, z.core.$strip
|
|
5075
|
-
|
|
5076
|
-
|
|
5077
|
-
|
|
4547
|
+
}, z.core.$strip>>>;
|
|
4548
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4549
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4550
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4551
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4552
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4553
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4554
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4555
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4556
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4557
|
+
}, z.core.$strip>>>;
|
|
4558
|
+
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5078
4559
|
identifier: z.ZodString;
|
|
5079
4560
|
id: z.ZodString;
|
|
5080
4561
|
}, z.core.$strip>>>;
|
|
5081
|
-
|
|
4562
|
+
projects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5082
4563
|
identifier: z.ZodString;
|
|
5083
4564
|
id: z.ZodString;
|
|
5084
4565
|
}, z.core.$strip>>>;
|
|
5085
|
-
|
|
4566
|
+
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4567
|
+
identifier: z.ZodString;
|
|
4568
|
+
id: z.ZodString;
|
|
4569
|
+
}, z.core.$strip>>>;
|
|
4570
|
+
queueApplications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4571
|
+
queueKey: z.ZodOptional<z.ZodString>;
|
|
4572
|
+
applicationId: z.ZodOptional<z.ZodString>;
|
|
4573
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
4574
|
+
id: z.ZodString;
|
|
4575
|
+
identifier: z.ZodString;
|
|
4576
|
+
}, z.core.$strip>>>;
|
|
4577
|
+
schoolDistrict: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4578
|
+
identifier: z.ZodString;
|
|
4579
|
+
id: z.ZodString;
|
|
4580
|
+
}, z.core.$strip>>>;
|
|
4581
|
+
sectors: z.ZodArray<z.ZodObject<{
|
|
4582
|
+
identifier: z.ZodString;
|
|
4583
|
+
id: z.ZodString;
|
|
4584
|
+
}, z.core.$strip>>;
|
|
4585
|
+
id: z.ZodString;
|
|
4586
|
+
schema: z.ZodLiteral<"us_signal">;
|
|
4587
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
4588
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4589
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5086
4590
|
identifier: z.ZodString;
|
|
5087
4591
|
id: z.ZodString;
|
|
5088
4592
|
}, z.core.$strip>>>;
|
|
5089
|
-
created: z.ZodString;
|
|
5090
4593
|
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5091
4594
|
filename: z.ZodString;
|
|
5092
|
-
created: z.ZodString
|
|
4595
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5093
4596
|
document_id: z.ZodString;
|
|
5094
4597
|
mimetype: z.ZodString;
|
|
5095
4598
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -5102,10 +4605,11 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5102
4605
|
created: z.ZodOptional<z.ZodString>;
|
|
5103
4606
|
type: z.ZodArray<z.ZodString>;
|
|
5104
4607
|
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
5105
|
-
documentDate: z.ZodString
|
|
4608
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5106
4609
|
source: z.ZodOptional<z.ZodString>;
|
|
5107
4610
|
id: z.ZodOptional<z.ZodString>;
|
|
5108
4611
|
}, z.core.$strip>]>>>;
|
|
4612
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
5109
4613
|
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
5110
4614
|
full: z.ZodOptional<z.ZodString>;
|
|
5111
4615
|
city: z.ZodOptional<z.ZodString>;
|
|
@@ -5117,40 +4621,65 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5117
4621
|
latitude: z.ZodOptional<z.ZodNumber>;
|
|
5118
4622
|
longitude: z.ZodOptional<z.ZodNumber>;
|
|
5119
4623
|
}, z.core.$strip>>;
|
|
5120
|
-
facilityName: z.ZodOptional<z.ZodString>;
|
|
5121
4624
|
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5122
|
-
geo: z.ZodObject<{
|
|
4625
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
5123
4626
|
default: z.ZodOptional<z.ZodObject<{
|
|
5124
4627
|
lat: z.ZodNumber;
|
|
5125
4628
|
lon: z.ZodNumber;
|
|
5126
4629
|
}, z.core.$strip>>;
|
|
5127
4630
|
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5128
|
-
|
|
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>;
|
|
4631
|
+
}, z.core.$strip>>;
|
|
5141
4632
|
headline: z.ZodString;
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
fullName: z.ZodOptional<z.ZodString>;
|
|
5149
|
-
email: z.ZodOptional<z.ZodString>;
|
|
5150
|
-
phone: z.ZodOptional<z.ZodString>;
|
|
5151
|
-
source: z.ZodOptional<z.ZodString>;
|
|
4633
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4634
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4635
|
+
identifier: z.ZodString;
|
|
4636
|
+
id: z.ZodString;
|
|
4637
|
+
role: z.ZodString;
|
|
4638
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
5152
4639
|
}, z.core.$strip>>>;
|
|
5153
|
-
|
|
4640
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4641
|
+
state: z.ZodArray<z.ZodObject<{
|
|
4642
|
+
identifier: z.ZodString;
|
|
4643
|
+
id: z.ZodString;
|
|
4644
|
+
}, z.core.$strip>>;
|
|
4645
|
+
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4646
|
+
identifier: z.ZodString;
|
|
4647
|
+
id: z.ZodString;
|
|
4648
|
+
}, z.core.$strip>>>;
|
|
4649
|
+
totals: z.ZodOptional<z.ZodObject<{
|
|
4650
|
+
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
4651
|
+
projects: z.ZodOptional<z.ZodNumber>;
|
|
4652
|
+
keyPeople: z.ZodOptional<z.ZodNumber>;
|
|
4653
|
+
documents: z.ZodOptional<z.ZodNumber>;
|
|
4654
|
+
organizations: z.ZodOptional<z.ZodNumber>;
|
|
4655
|
+
queueApplications: z.ZodOptional<z.ZodNumber>;
|
|
4656
|
+
utility: z.ZodOptional<z.ZodNumber>;
|
|
4657
|
+
puc: z.ZodOptional<z.ZodNumber>;
|
|
4658
|
+
epc: z.ZodOptional<z.ZodNumber>;
|
|
4659
|
+
developer: z.ZodOptional<z.ZodNumber>;
|
|
4660
|
+
intels: z.ZodOptional<z.ZodNumber>;
|
|
4661
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
4662
|
+
}, z.core.$strip>>;
|
|
4663
|
+
type: z.ZodOptional<z.ZodObject<{
|
|
4664
|
+
identifier: z.ZodString;
|
|
4665
|
+
id: z.ZodString;
|
|
4666
|
+
}, z.core.$strip>>;
|
|
4667
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4668
|
+
identifier: z.ZodString;
|
|
4669
|
+
id: z.ZodString;
|
|
4670
|
+
}, z.core.$strip>>;
|
|
4671
|
+
created: z.ZodString;
|
|
4672
|
+
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4673
|
+
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4674
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4675
|
+
identifier: z.ZodString;
|
|
4676
|
+
id: z.ZodString;
|
|
4677
|
+
}, z.core.$strip>>>;
|
|
4678
|
+
dgChannels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4679
|
+
identifier: z.ZodString;
|
|
4680
|
+
id: z.ZodString;
|
|
4681
|
+
}, z.core.$strip>>>;
|
|
4682
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5154
4683
|
identifier: z.ZodString;
|
|
5155
4684
|
id: z.ZodString;
|
|
5156
4685
|
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5177,15 +4706,38 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5177
4706
|
lng: z.ZodNumber;
|
|
5178
4707
|
}, z.core.$strip>>;
|
|
5179
4708
|
override: z.ZodOptional<z.ZodBoolean>;
|
|
5180
|
-
}, z.core.$strip
|
|
5181
|
-
|
|
5182
|
-
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4709
|
+
}, z.core.$strip>>>;
|
|
4710
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5183
4711
|
identifier: z.ZodString;
|
|
5184
4712
|
id: z.ZodString;
|
|
5185
|
-
role: z.ZodString;
|
|
5186
|
-
ref: z.ZodOptional<z.ZodString>;
|
|
5187
4713
|
}, z.core.$strip>>>;
|
|
5188
|
-
|
|
4714
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4715
|
+
identifier: z.ZodString;
|
|
4716
|
+
id: z.ZodString;
|
|
4717
|
+
}, z.core.$strip>>>;
|
|
4718
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4719
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4720
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4721
|
+
country: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4722
|
+
identifier: z.ZodString;
|
|
4723
|
+
id: z.ZodString;
|
|
4724
|
+
}, z.core.$strip>>>;
|
|
4725
|
+
$organizations: z.ZodOptional<z.ZodString>;
|
|
4726
|
+
body: z.ZodOptional<z.ZodString>;
|
|
4727
|
+
countyBoard: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4728
|
+
identifier: z.ZodString;
|
|
4729
|
+
id: z.ZodString;
|
|
4730
|
+
}, z.core.$strip>>>;
|
|
4731
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4732
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4733
|
+
identifier: z.ZodOptional<z.ZodString>;
|
|
4734
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
4735
|
+
role: z.ZodOptional<z.ZodString>;
|
|
4736
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
4737
|
+
email: z.ZodOptional<z.ZodString>;
|
|
4738
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
4739
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4740
|
+
}, z.core.$strip>>>;
|
|
5189
4741
|
projectPipeline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5190
4742
|
identifier: z.ZodString;
|
|
5191
4743
|
id: z.ZodString;
|
|
@@ -5194,7 +4746,6 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5194
4746
|
identifier: z.ZodString;
|
|
5195
4747
|
id: z.ZodString;
|
|
5196
4748
|
}, z.core.$strip>>>;
|
|
5197
|
-
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5198
4749
|
pucTracker: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5199
4750
|
identifier: z.ZodString;
|
|
5200
4751
|
id: z.ZodString;
|
|
@@ -5214,11 +4765,65 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5214
4765
|
identifier: z.ZodString;
|
|
5215
4766
|
id: z.ZodString;
|
|
5216
4767
|
}, z.core.$strip>>;
|
|
4768
|
+
id: z.ZodString;
|
|
4769
|
+
allSectors: z.ZodOptional<z.ZodString>;
|
|
4770
|
+
commercialOperationDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4771
|
+
county: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4772
|
+
identifier: z.ZodString;
|
|
4773
|
+
id: z.ZodString;
|
|
4774
|
+
}, z.core.$strip>>>;
|
|
4775
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
4776
|
+
filename: z.ZodString;
|
|
4777
|
+
created: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4778
|
+
document_id: z.ZodString;
|
|
4779
|
+
mimetype: z.ZodString;
|
|
4780
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4781
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4782
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4783
|
+
userName: z.ZodOptional<z.ZodString>;
|
|
4784
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
4785
|
+
file: z.ZodOptional<z.ZodString>;
|
|
4786
|
+
url: z.ZodString;
|
|
4787
|
+
created: z.ZodOptional<z.ZodString>;
|
|
4788
|
+
type: z.ZodArray<z.ZodString>;
|
|
4789
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
4790
|
+
documentDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4791
|
+
source: z.ZodOptional<z.ZodString>;
|
|
4792
|
+
id: z.ZodOptional<z.ZodString>;
|
|
4793
|
+
}, z.core.$strip>]>>>;
|
|
4794
|
+
facilityName: z.ZodOptional<z.ZodString>;
|
|
4795
|
+
facilityAddress: z.ZodOptional<z.ZodObject<{
|
|
4796
|
+
full: z.ZodOptional<z.ZodString>;
|
|
4797
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4798
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4799
|
+
street: z.ZodOptional<z.ZodString>;
|
|
4800
|
+
street2: z.ZodOptional<z.ZodString>;
|
|
4801
|
+
zip: z.ZodOptional<z.ZodString>;
|
|
4802
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4803
|
+
latitude: z.ZodOptional<z.ZodNumber>;
|
|
4804
|
+
longitude: z.ZodOptional<z.ZodNumber>;
|
|
4805
|
+
}, z.core.$strip>>;
|
|
4806
|
+
filingDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4807
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
4808
|
+
default: z.ZodOptional<z.ZodObject<{
|
|
4809
|
+
lat: z.ZodNumber;
|
|
4810
|
+
lon: z.ZodNumber;
|
|
4811
|
+
}, z.core.$strip>>;
|
|
4812
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
4813
|
+
}, z.core.$strip>>;
|
|
4814
|
+
headline: z.ZodString;
|
|
4815
|
+
mw: z.ZodOptional<z.ZodNumber>;
|
|
4816
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4817
|
+
identifier: z.ZodString;
|
|
4818
|
+
id: z.ZodString;
|
|
4819
|
+
role: z.ZodString;
|
|
4820
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
4821
|
+
}, z.core.$strip>>>;
|
|
4822
|
+
publishedDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5217
4823
|
state: z.ZodArray<z.ZodObject<{
|
|
5218
4824
|
identifier: z.ZodString;
|
|
5219
4825
|
id: z.ZodString;
|
|
5220
4826
|
}, z.core.$strip>>;
|
|
5221
|
-
status: z.ZodEnum<typeof PublishStatus>;
|
|
5222
4827
|
subType: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5223
4828
|
identifier: z.ZodString;
|
|
5224
4829
|
id: z.ZodString;
|
|
@@ -5241,10 +4846,63 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
5241
4846
|
identifier: z.ZodString;
|
|
5242
4847
|
id: z.ZodString;
|
|
5243
4848
|
}, z.core.$strip>>;
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
4849
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
4850
|
+
identifier: z.ZodString;
|
|
4851
|
+
id: z.ZodString;
|
|
4852
|
+
}, z.core.$strip>>;
|
|
4853
|
+
created: z.ZodString;
|
|
4854
|
+
curateDocLink: z.ZodOptional<z.ZodString>;
|
|
4855
|
+
curateMunicipalityLink: z.ZodOptional<z.ZodString>;
|
|
4856
|
+
dataCenters: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4857
|
+
identifier: z.ZodString;
|
|
4858
|
+
id: z.ZodString;
|
|
4859
|
+
}, z.core.$strip>>>;
|
|
4860
|
+
dgChannels: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4861
|
+
identifier: z.ZodString;
|
|
4862
|
+
id: z.ZodString;
|
|
4863
|
+
}, z.core.$strip>>>;
|
|
4864
|
+
location: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4865
|
+
identifier: z.ZodString;
|
|
4866
|
+
id: z.ZodString;
|
|
4867
|
+
isApproximate: z.ZodOptional<z.ZodBoolean>;
|
|
4868
|
+
components: z.ZodOptional<z.ZodObject<{
|
|
4869
|
+
'ISO_3166-1_alpha-2': z.ZodOptional<z.ZodString>;
|
|
4870
|
+
'ISO_3166-1_alpha-3': z.ZodOptional<z.ZodString>;
|
|
4871
|
+
'ISO_3166-2': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4872
|
+
_category: z.ZodOptional<z.ZodString>;
|
|
4873
|
+
_normalized_city: z.ZodOptional<z.ZodString>;
|
|
4874
|
+
_type: z.ZodString;
|
|
4875
|
+
city: z.ZodOptional<z.ZodString>;
|
|
4876
|
+
continent: z.ZodOptional<z.ZodString>;
|
|
4877
|
+
country: z.ZodOptional<z.ZodString>;
|
|
4878
|
+
country_code: z.ZodOptional<z.ZodString>;
|
|
4879
|
+
state_code: z.ZodOptional<z.ZodString>;
|
|
4880
|
+
county: z.ZodOptional<z.ZodString>;
|
|
4881
|
+
municipality: z.ZodOptional<z.ZodString>;
|
|
4882
|
+
political_union: z.ZodOptional<z.ZodString>;
|
|
4883
|
+
state: z.ZodOptional<z.ZodString>;
|
|
4884
|
+
state_district: z.ZodOptional<z.ZodString>;
|
|
4885
|
+
}, z.core.$strip>>;
|
|
4886
|
+
geometry: z.ZodOptional<z.ZodObject<{
|
|
4887
|
+
lat: z.ZodNumber;
|
|
4888
|
+
lng: z.ZodNumber;
|
|
4889
|
+
}, z.core.$strip>>;
|
|
4890
|
+
override: z.ZodOptional<z.ZodBoolean>;
|
|
4891
|
+
}, z.core.$strip>>>;
|
|
4892
|
+
queueDatasets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4893
|
+
identifier: z.ZodString;
|
|
4894
|
+
id: z.ZodString;
|
|
4895
|
+
}, z.core.$strip>>>;
|
|
4896
|
+
regions: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4897
|
+
identifier: z.ZodString;
|
|
4898
|
+
id: z.ZodString;
|
|
4899
|
+
}, z.core.$strip>>>;
|
|
4900
|
+
status: z.ZodEnum<typeof PublishStatus>;
|
|
4901
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
4902
|
+
schema: z.ZodLiteral<"global_signal">;
|
|
4903
|
+
}, z.core.$strip>], "schema">;
|
|
4904
|
+
export type SignalAPITypeV1 = z.infer<typeof signalAPISchemaV1>;
|
|
4905
|
+
export type SignalAPIUnionTypeV1 = z.infer<typeof signalAPIUnionSchemaV1>;
|
|
4906
|
+
export type EUSignalAPITypeV1 = z.infer<typeof euSignalAPISchemaV1>;
|
|
4907
|
+
export type USSignalAPITypeV1 = z.infer<typeof usSignalAPISchemaV1>;
|
|
4908
|
+
export type GlobalSignalAPITypeV1 = z.infer<typeof globalSignalAPISchemaV1>;
|