@new-project-media/client-frontends-shared-types 2.0.27 → 2.0.29
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.29",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsc -p tsconfig.json",
|
|
6
6
|
"postbuild": "mkdir -p ../../dist/packages/client-frontends-shared-types/ && cp package.json ../../dist/packages/client-frontends-shared-types/",
|
|
@@ -57,6 +57,267 @@ declare const PowerWithStorageSchema: z.ZodObject<{
|
|
|
57
57
|
};
|
|
58
58
|
}>;
|
|
59
59
|
export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
|
|
60
|
+
declare const BuildingSizeSchema: z.ZodObject<{
|
|
61
|
+
square_foot: z.ZodNumber;
|
|
62
|
+
square_metre: z.ZodNumber;
|
|
63
|
+
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
square_foot?: number;
|
|
65
|
+
square_metre?: number;
|
|
66
|
+
}, {
|
|
67
|
+
square_foot?: number;
|
|
68
|
+
square_metre?: number;
|
|
69
|
+
}>;
|
|
70
|
+
export type BuildingSize = z.infer<typeof BuildingSizeSchema>;
|
|
71
|
+
declare const LandSizeSchema: z.ZodObject<{
|
|
72
|
+
acre: z.ZodNumber;
|
|
73
|
+
hectare: z.ZodNumber;
|
|
74
|
+
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
acre?: number;
|
|
76
|
+
hectare?: number;
|
|
77
|
+
}, {
|
|
78
|
+
acre?: number;
|
|
79
|
+
hectare?: number;
|
|
80
|
+
}>;
|
|
81
|
+
export type LandSize = z.infer<typeof LandSizeSchema>;
|
|
82
|
+
export declare const signalDocumentSchema: z.ZodObject<{
|
|
83
|
+
filename: z.ZodString;
|
|
84
|
+
size: z.ZodOptional<z.ZodString>;
|
|
85
|
+
created: z.ZodOptional<z.ZodString>;
|
|
86
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
87
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
88
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
89
|
+
document_id: z.ZodString;
|
|
90
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
91
|
+
key: z.ZodOptional<z.ZodString>;
|
|
92
|
+
username: z.ZodOptional<z.ZodString>;
|
|
93
|
+
url: z.ZodOptional<z.ZodString>;
|
|
94
|
+
}, "strip", z.ZodTypeAny, {
|
|
95
|
+
type?: string[];
|
|
96
|
+
key?: string;
|
|
97
|
+
filename?: string;
|
|
98
|
+
created?: string;
|
|
99
|
+
document_id?: string;
|
|
100
|
+
mimetype?: string;
|
|
101
|
+
scanResultStatus?: string;
|
|
102
|
+
url?: string;
|
|
103
|
+
filing_id?: string;
|
|
104
|
+
size?: string;
|
|
105
|
+
username?: string;
|
|
106
|
+
}, {
|
|
107
|
+
type?: string[];
|
|
108
|
+
key?: string;
|
|
109
|
+
filename?: string;
|
|
110
|
+
created?: string;
|
|
111
|
+
document_id?: string;
|
|
112
|
+
mimetype?: string;
|
|
113
|
+
scanResultStatus?: string;
|
|
114
|
+
url?: string;
|
|
115
|
+
filing_id?: string;
|
|
116
|
+
size?: string;
|
|
117
|
+
username?: string;
|
|
118
|
+
}>;
|
|
119
|
+
export declare const signalSubTypeSchema: z.ZodObject<{
|
|
120
|
+
identifier: z.ZodString;
|
|
121
|
+
id: z.ZodString;
|
|
122
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
id?: string;
|
|
125
|
+
identifier?: string;
|
|
126
|
+
parentId?: string;
|
|
127
|
+
}, {
|
|
128
|
+
id?: string;
|
|
129
|
+
identifier?: string;
|
|
130
|
+
parentId?: string;
|
|
131
|
+
}>;
|
|
132
|
+
export declare const signalTypeSchema: z.ZodObject<{
|
|
133
|
+
identifier: z.ZodString;
|
|
134
|
+
id: z.ZodString;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
id?: string;
|
|
137
|
+
identifier?: string;
|
|
138
|
+
}, {
|
|
139
|
+
id?: string;
|
|
140
|
+
identifier?: string;
|
|
141
|
+
}>;
|
|
142
|
+
export declare const signalsSchema: z.ZodObject<{
|
|
143
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
144
|
+
filename: z.ZodString;
|
|
145
|
+
size: z.ZodOptional<z.ZodString>;
|
|
146
|
+
created: z.ZodOptional<z.ZodString>;
|
|
147
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
148
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
149
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
150
|
+
document_id: z.ZodString;
|
|
151
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
152
|
+
key: z.ZodOptional<z.ZodString>;
|
|
153
|
+
username: z.ZodOptional<z.ZodString>;
|
|
154
|
+
url: z.ZodOptional<z.ZodString>;
|
|
155
|
+
}, "strip", z.ZodTypeAny, {
|
|
156
|
+
type?: string[];
|
|
157
|
+
key?: string;
|
|
158
|
+
filename?: string;
|
|
159
|
+
created?: string;
|
|
160
|
+
document_id?: string;
|
|
161
|
+
mimetype?: string;
|
|
162
|
+
scanResultStatus?: string;
|
|
163
|
+
url?: string;
|
|
164
|
+
filing_id?: string;
|
|
165
|
+
size?: string;
|
|
166
|
+
username?: string;
|
|
167
|
+
}, {
|
|
168
|
+
type?: string[];
|
|
169
|
+
key?: string;
|
|
170
|
+
filename?: string;
|
|
171
|
+
created?: string;
|
|
172
|
+
document_id?: string;
|
|
173
|
+
mimetype?: string;
|
|
174
|
+
scanResultStatus?: string;
|
|
175
|
+
url?: string;
|
|
176
|
+
filing_id?: string;
|
|
177
|
+
size?: string;
|
|
178
|
+
username?: string;
|
|
179
|
+
}>, "many">;
|
|
180
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
181
|
+
identifier: z.ZodString;
|
|
182
|
+
id: z.ZodString;
|
|
183
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
184
|
+
}, "strip", z.ZodTypeAny, {
|
|
185
|
+
id?: string;
|
|
186
|
+
identifier?: string;
|
|
187
|
+
parentId?: string;
|
|
188
|
+
}, {
|
|
189
|
+
id?: string;
|
|
190
|
+
identifier?: string;
|
|
191
|
+
parentId?: string;
|
|
192
|
+
}>, "many">;
|
|
193
|
+
id: z.ZodString;
|
|
194
|
+
type: z.ZodObject<{
|
|
195
|
+
identifier: z.ZodString;
|
|
196
|
+
id: z.ZodString;
|
|
197
|
+
}, "strip", z.ZodTypeAny, {
|
|
198
|
+
id?: string;
|
|
199
|
+
identifier?: string;
|
|
200
|
+
}, {
|
|
201
|
+
id?: string;
|
|
202
|
+
identifier?: string;
|
|
203
|
+
}>;
|
|
204
|
+
headline: z.ZodString;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
type?: {
|
|
207
|
+
id?: string;
|
|
208
|
+
identifier?: string;
|
|
209
|
+
};
|
|
210
|
+
subType?: {
|
|
211
|
+
id?: string;
|
|
212
|
+
identifier?: string;
|
|
213
|
+
parentId?: string;
|
|
214
|
+
}[];
|
|
215
|
+
id?: string;
|
|
216
|
+
documents?: {
|
|
217
|
+
type?: string[];
|
|
218
|
+
key?: string;
|
|
219
|
+
filename?: string;
|
|
220
|
+
created?: string;
|
|
221
|
+
document_id?: string;
|
|
222
|
+
mimetype?: string;
|
|
223
|
+
scanResultStatus?: string;
|
|
224
|
+
url?: string;
|
|
225
|
+
filing_id?: string;
|
|
226
|
+
size?: string;
|
|
227
|
+
username?: string;
|
|
228
|
+
}[];
|
|
229
|
+
headline?: string;
|
|
230
|
+
}, {
|
|
231
|
+
type?: {
|
|
232
|
+
id?: string;
|
|
233
|
+
identifier?: string;
|
|
234
|
+
};
|
|
235
|
+
subType?: {
|
|
236
|
+
id?: string;
|
|
237
|
+
identifier?: string;
|
|
238
|
+
parentId?: string;
|
|
239
|
+
}[];
|
|
240
|
+
id?: string;
|
|
241
|
+
documents?: {
|
|
242
|
+
type?: string[];
|
|
243
|
+
key?: string;
|
|
244
|
+
filename?: string;
|
|
245
|
+
created?: string;
|
|
246
|
+
document_id?: string;
|
|
247
|
+
mimetype?: string;
|
|
248
|
+
scanResultStatus?: string;
|
|
249
|
+
url?: string;
|
|
250
|
+
filing_id?: string;
|
|
251
|
+
size?: string;
|
|
252
|
+
username?: string;
|
|
253
|
+
}[];
|
|
254
|
+
headline?: string;
|
|
255
|
+
}>;
|
|
256
|
+
export declare const documentSchema: z.ZodObject<{
|
|
257
|
+
filename: z.ZodString;
|
|
258
|
+
size: z.ZodOptional<z.ZodString>;
|
|
259
|
+
created: z.ZodString;
|
|
260
|
+
filing_id: z.ZodString;
|
|
261
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
262
|
+
type: z.ZodArray<z.ZodString, "many">;
|
|
263
|
+
document_id: z.ZodString;
|
|
264
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
265
|
+
key: z.ZodOptional<z.ZodString>;
|
|
266
|
+
url: z.ZodOptional<z.ZodString>;
|
|
267
|
+
username: z.ZodString;
|
|
268
|
+
}, "strip", z.ZodTypeAny, {
|
|
269
|
+
type?: string[];
|
|
270
|
+
key?: string;
|
|
271
|
+
filename?: string;
|
|
272
|
+
created?: string;
|
|
273
|
+
document_id?: string;
|
|
274
|
+
mimetype?: string;
|
|
275
|
+
scanResultStatus?: string;
|
|
276
|
+
url?: string;
|
|
277
|
+
filing_id?: string;
|
|
278
|
+
size?: string;
|
|
279
|
+
username?: string;
|
|
280
|
+
}, {
|
|
281
|
+
type?: string[];
|
|
282
|
+
key?: string;
|
|
283
|
+
filename?: string;
|
|
284
|
+
created?: string;
|
|
285
|
+
document_id?: string;
|
|
286
|
+
mimetype?: string;
|
|
287
|
+
scanResultStatus?: string;
|
|
288
|
+
url?: string;
|
|
289
|
+
filing_id?: string;
|
|
290
|
+
size?: string;
|
|
291
|
+
username?: string;
|
|
292
|
+
}>;
|
|
293
|
+
export declare const keyPeopleSchema: z.ZodObject<{
|
|
294
|
+
identifier: z.ZodString;
|
|
295
|
+
fullName: z.ZodString;
|
|
296
|
+
id: z.ZodString;
|
|
297
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
298
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
299
|
+
email: z.ZodString;
|
|
300
|
+
source: z.ZodString;
|
|
301
|
+
phone: z.ZodString;
|
|
302
|
+
}, "strip", z.ZodTypeAny, {
|
|
303
|
+
id?: string;
|
|
304
|
+
identifier?: string;
|
|
305
|
+
source?: string;
|
|
306
|
+
linkedinUrl?: string;
|
|
307
|
+
fullName?: string;
|
|
308
|
+
email?: string;
|
|
309
|
+
phone?: string;
|
|
310
|
+
roles?: string[];
|
|
311
|
+
}, {
|
|
312
|
+
id?: string;
|
|
313
|
+
identifier?: string;
|
|
314
|
+
source?: string;
|
|
315
|
+
linkedinUrl?: string;
|
|
316
|
+
fullName?: string;
|
|
317
|
+
email?: string;
|
|
318
|
+
phone?: string;
|
|
319
|
+
roles?: string[];
|
|
320
|
+
}>;
|
|
60
321
|
export declare const DataCenterSchema: z.ZodObject<{
|
|
61
322
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
62
323
|
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -727,12 +988,201 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
727
988
|
intels?: number;
|
|
728
989
|
signals?: number;
|
|
729
990
|
}>>;
|
|
991
|
+
signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
992
|
+
documents: z.ZodArray<z.ZodObject<{
|
|
993
|
+
filename: z.ZodString;
|
|
994
|
+
size: z.ZodOptional<z.ZodString>;
|
|
995
|
+
created: z.ZodOptional<z.ZodString>;
|
|
996
|
+
filing_id: z.ZodOptional<z.ZodString>;
|
|
997
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
998
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
999
|
+
document_id: z.ZodString;
|
|
1000
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
username: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
}, "strip", z.ZodTypeAny, {
|
|
1005
|
+
type?: string[];
|
|
1006
|
+
key?: string;
|
|
1007
|
+
filename?: string;
|
|
1008
|
+
created?: string;
|
|
1009
|
+
document_id?: string;
|
|
1010
|
+
mimetype?: string;
|
|
1011
|
+
scanResultStatus?: string;
|
|
1012
|
+
url?: string;
|
|
1013
|
+
filing_id?: string;
|
|
1014
|
+
size?: string;
|
|
1015
|
+
username?: string;
|
|
1016
|
+
}, {
|
|
1017
|
+
type?: string[];
|
|
1018
|
+
key?: string;
|
|
1019
|
+
filename?: string;
|
|
1020
|
+
created?: string;
|
|
1021
|
+
document_id?: string;
|
|
1022
|
+
mimetype?: string;
|
|
1023
|
+
scanResultStatus?: string;
|
|
1024
|
+
url?: string;
|
|
1025
|
+
filing_id?: string;
|
|
1026
|
+
size?: string;
|
|
1027
|
+
username?: string;
|
|
1028
|
+
}>, "many">;
|
|
1029
|
+
subType: z.ZodArray<z.ZodObject<{
|
|
1030
|
+
identifier: z.ZodString;
|
|
1031
|
+
id: z.ZodString;
|
|
1032
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
}, "strip", z.ZodTypeAny, {
|
|
1034
|
+
id?: string;
|
|
1035
|
+
identifier?: string;
|
|
1036
|
+
parentId?: string;
|
|
1037
|
+
}, {
|
|
1038
|
+
id?: string;
|
|
1039
|
+
identifier?: string;
|
|
1040
|
+
parentId?: string;
|
|
1041
|
+
}>, "many">;
|
|
1042
|
+
id: z.ZodString;
|
|
1043
|
+
type: z.ZodObject<{
|
|
1044
|
+
identifier: z.ZodString;
|
|
1045
|
+
id: z.ZodString;
|
|
1046
|
+
}, "strip", z.ZodTypeAny, {
|
|
1047
|
+
id?: string;
|
|
1048
|
+
identifier?: string;
|
|
1049
|
+
}, {
|
|
1050
|
+
id?: string;
|
|
1051
|
+
identifier?: string;
|
|
1052
|
+
}>;
|
|
1053
|
+
headline: z.ZodString;
|
|
1054
|
+
}, "strip", z.ZodTypeAny, {
|
|
1055
|
+
type?: {
|
|
1056
|
+
id?: string;
|
|
1057
|
+
identifier?: string;
|
|
1058
|
+
};
|
|
1059
|
+
subType?: {
|
|
1060
|
+
id?: string;
|
|
1061
|
+
identifier?: string;
|
|
1062
|
+
parentId?: string;
|
|
1063
|
+
}[];
|
|
1064
|
+
id?: string;
|
|
1065
|
+
documents?: {
|
|
1066
|
+
type?: string[];
|
|
1067
|
+
key?: string;
|
|
1068
|
+
filename?: string;
|
|
1069
|
+
created?: string;
|
|
1070
|
+
document_id?: string;
|
|
1071
|
+
mimetype?: string;
|
|
1072
|
+
scanResultStatus?: string;
|
|
1073
|
+
url?: string;
|
|
1074
|
+
filing_id?: string;
|
|
1075
|
+
size?: string;
|
|
1076
|
+
username?: string;
|
|
1077
|
+
}[];
|
|
1078
|
+
headline?: string;
|
|
1079
|
+
}, {
|
|
1080
|
+
type?: {
|
|
1081
|
+
id?: string;
|
|
1082
|
+
identifier?: string;
|
|
1083
|
+
};
|
|
1084
|
+
subType?: {
|
|
1085
|
+
id?: string;
|
|
1086
|
+
identifier?: string;
|
|
1087
|
+
parentId?: string;
|
|
1088
|
+
}[];
|
|
1089
|
+
id?: string;
|
|
1090
|
+
documents?: {
|
|
1091
|
+
type?: string[];
|
|
1092
|
+
key?: string;
|
|
1093
|
+
filename?: string;
|
|
1094
|
+
created?: string;
|
|
1095
|
+
document_id?: string;
|
|
1096
|
+
mimetype?: string;
|
|
1097
|
+
scanResultStatus?: string;
|
|
1098
|
+
url?: string;
|
|
1099
|
+
filing_id?: string;
|
|
1100
|
+
size?: string;
|
|
1101
|
+
username?: string;
|
|
1102
|
+
}[];
|
|
1103
|
+
headline?: string;
|
|
1104
|
+
}>, "many">>;
|
|
1105
|
+
documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1106
|
+
filename: z.ZodString;
|
|
1107
|
+
size: z.ZodOptional<z.ZodString>;
|
|
1108
|
+
created: z.ZodString;
|
|
1109
|
+
filing_id: z.ZodString;
|
|
1110
|
+
mimetype: z.ZodOptional<z.ZodString>;
|
|
1111
|
+
type: z.ZodArray<z.ZodString, "many">;
|
|
1112
|
+
document_id: z.ZodString;
|
|
1113
|
+
scanResultStatus: z.ZodOptional<z.ZodString>;
|
|
1114
|
+
key: z.ZodOptional<z.ZodString>;
|
|
1115
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1116
|
+
username: z.ZodString;
|
|
1117
|
+
}, "strip", z.ZodTypeAny, {
|
|
1118
|
+
type?: string[];
|
|
1119
|
+
key?: string;
|
|
1120
|
+
filename?: string;
|
|
1121
|
+
created?: string;
|
|
1122
|
+
document_id?: string;
|
|
1123
|
+
mimetype?: string;
|
|
1124
|
+
scanResultStatus?: string;
|
|
1125
|
+
url?: string;
|
|
1126
|
+
filing_id?: string;
|
|
1127
|
+
size?: string;
|
|
1128
|
+
username?: string;
|
|
1129
|
+
}, {
|
|
1130
|
+
type?: string[];
|
|
1131
|
+
key?: string;
|
|
1132
|
+
filename?: string;
|
|
1133
|
+
created?: string;
|
|
1134
|
+
document_id?: string;
|
|
1135
|
+
mimetype?: string;
|
|
1136
|
+
scanResultStatus?: string;
|
|
1137
|
+
url?: string;
|
|
1138
|
+
filing_id?: string;
|
|
1139
|
+
size?: string;
|
|
1140
|
+
username?: string;
|
|
1141
|
+
}>, "many">>;
|
|
1142
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1143
|
+
identifier: z.ZodString;
|
|
1144
|
+
fullName: z.ZodString;
|
|
1145
|
+
id: z.ZodString;
|
|
1146
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
1147
|
+
roles: z.ZodArray<z.ZodString, "many">;
|
|
1148
|
+
email: z.ZodString;
|
|
1149
|
+
source: z.ZodString;
|
|
1150
|
+
phone: z.ZodString;
|
|
1151
|
+
}, "strip", z.ZodTypeAny, {
|
|
1152
|
+
id?: string;
|
|
1153
|
+
identifier?: string;
|
|
1154
|
+
source?: string;
|
|
1155
|
+
linkedinUrl?: string;
|
|
1156
|
+
fullName?: string;
|
|
1157
|
+
email?: string;
|
|
1158
|
+
phone?: string;
|
|
1159
|
+
roles?: string[];
|
|
1160
|
+
}, {
|
|
1161
|
+
id?: string;
|
|
1162
|
+
identifier?: string;
|
|
1163
|
+
source?: string;
|
|
1164
|
+
linkedinUrl?: string;
|
|
1165
|
+
fullName?: string;
|
|
1166
|
+
email?: string;
|
|
1167
|
+
phone?: string;
|
|
1168
|
+
roles?: string[];
|
|
1169
|
+
}>, "many">>;
|
|
730
1170
|
}, "strip", z.ZodTypeAny, {
|
|
731
1171
|
sectors?: {
|
|
732
1172
|
id?: string;
|
|
733
1173
|
identifier?: string;
|
|
734
1174
|
source?: string;
|
|
735
1175
|
}[];
|
|
1176
|
+
keyPeople?: {
|
|
1177
|
+
id?: string;
|
|
1178
|
+
identifier?: string;
|
|
1179
|
+
source?: string;
|
|
1180
|
+
linkedinUrl?: string;
|
|
1181
|
+
fullName?: string;
|
|
1182
|
+
email?: string;
|
|
1183
|
+
phone?: string;
|
|
1184
|
+
roles?: string[];
|
|
1185
|
+
}[];
|
|
736
1186
|
id?: string;
|
|
737
1187
|
location?: {
|
|
738
1188
|
id?: string;
|
|
@@ -768,6 +1218,19 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
768
1218
|
}[];
|
|
769
1219
|
country?: string;
|
|
770
1220
|
created?: string;
|
|
1221
|
+
documents?: {
|
|
1222
|
+
type?: string[];
|
|
1223
|
+
key?: string;
|
|
1224
|
+
filename?: string;
|
|
1225
|
+
created?: string;
|
|
1226
|
+
document_id?: string;
|
|
1227
|
+
mimetype?: string;
|
|
1228
|
+
scanResultStatus?: string;
|
|
1229
|
+
url?: string;
|
|
1230
|
+
filing_id?: string;
|
|
1231
|
+
size?: string;
|
|
1232
|
+
username?: string;
|
|
1233
|
+
}[];
|
|
771
1234
|
organizations?: {
|
|
772
1235
|
id?: string;
|
|
773
1236
|
identifier?: string;
|
|
@@ -781,6 +1244,32 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
781
1244
|
applicationId?: string;
|
|
782
1245
|
queueDataset?: string;
|
|
783
1246
|
}[];
|
|
1247
|
+
signals?: {
|
|
1248
|
+
type?: {
|
|
1249
|
+
id?: string;
|
|
1250
|
+
identifier?: string;
|
|
1251
|
+
};
|
|
1252
|
+
subType?: {
|
|
1253
|
+
id?: string;
|
|
1254
|
+
identifier?: string;
|
|
1255
|
+
parentId?: string;
|
|
1256
|
+
}[];
|
|
1257
|
+
id?: string;
|
|
1258
|
+
documents?: {
|
|
1259
|
+
type?: string[];
|
|
1260
|
+
key?: string;
|
|
1261
|
+
filename?: string;
|
|
1262
|
+
created?: string;
|
|
1263
|
+
document_id?: string;
|
|
1264
|
+
mimetype?: string;
|
|
1265
|
+
scanResultStatus?: string;
|
|
1266
|
+
url?: string;
|
|
1267
|
+
filing_id?: string;
|
|
1268
|
+
size?: string;
|
|
1269
|
+
username?: string;
|
|
1270
|
+
}[];
|
|
1271
|
+
headline?: string;
|
|
1272
|
+
}[];
|
|
784
1273
|
powerCapacity?: {
|
|
785
1274
|
sectors?: {
|
|
786
1275
|
id?: string;
|
|
@@ -926,6 +1415,16 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
926
1415
|
identifier?: string;
|
|
927
1416
|
source?: string;
|
|
928
1417
|
}[];
|
|
1418
|
+
keyPeople?: {
|
|
1419
|
+
id?: string;
|
|
1420
|
+
identifier?: string;
|
|
1421
|
+
source?: string;
|
|
1422
|
+
linkedinUrl?: string;
|
|
1423
|
+
fullName?: string;
|
|
1424
|
+
email?: string;
|
|
1425
|
+
phone?: string;
|
|
1426
|
+
roles?: string[];
|
|
1427
|
+
}[];
|
|
929
1428
|
id?: string;
|
|
930
1429
|
location?: {
|
|
931
1430
|
id?: string;
|
|
@@ -961,6 +1460,19 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
961
1460
|
}[];
|
|
962
1461
|
country?: string;
|
|
963
1462
|
created?: string;
|
|
1463
|
+
documents?: {
|
|
1464
|
+
type?: string[];
|
|
1465
|
+
key?: string;
|
|
1466
|
+
filename?: string;
|
|
1467
|
+
created?: string;
|
|
1468
|
+
document_id?: string;
|
|
1469
|
+
mimetype?: string;
|
|
1470
|
+
scanResultStatus?: string;
|
|
1471
|
+
url?: string;
|
|
1472
|
+
filing_id?: string;
|
|
1473
|
+
size?: string;
|
|
1474
|
+
username?: string;
|
|
1475
|
+
}[];
|
|
964
1476
|
organizations?: {
|
|
965
1477
|
id?: string;
|
|
966
1478
|
identifier?: string;
|
|
@@ -974,6 +1486,32 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
974
1486
|
applicationId?: string;
|
|
975
1487
|
queueDataset?: string;
|
|
976
1488
|
}[];
|
|
1489
|
+
signals?: {
|
|
1490
|
+
type?: {
|
|
1491
|
+
id?: string;
|
|
1492
|
+
identifier?: string;
|
|
1493
|
+
};
|
|
1494
|
+
subType?: {
|
|
1495
|
+
id?: string;
|
|
1496
|
+
identifier?: string;
|
|
1497
|
+
parentId?: string;
|
|
1498
|
+
}[];
|
|
1499
|
+
id?: string;
|
|
1500
|
+
documents?: {
|
|
1501
|
+
type?: string[];
|
|
1502
|
+
key?: string;
|
|
1503
|
+
filename?: string;
|
|
1504
|
+
created?: string;
|
|
1505
|
+
document_id?: string;
|
|
1506
|
+
mimetype?: string;
|
|
1507
|
+
scanResultStatus?: string;
|
|
1508
|
+
url?: string;
|
|
1509
|
+
filing_id?: string;
|
|
1510
|
+
size?: string;
|
|
1511
|
+
username?: string;
|
|
1512
|
+
}[];
|
|
1513
|
+
headline?: string;
|
|
1514
|
+
}[];
|
|
977
1515
|
powerCapacity?: {
|
|
978
1516
|
sectors?: {
|
|
979
1517
|
id?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DataCenterSchema = exports.RegionType = void 0;
|
|
3
|
+
exports.DataCenterSchema = exports.keyPeopleSchema = exports.documentSchema = exports.signalsSchema = exports.signalTypeSchema = exports.signalSubTypeSchema = exports.signalDocumentSchema = exports.RegionType = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const entity_1 = require("./entity");
|
|
6
6
|
var RegionType;
|
|
@@ -39,6 +39,58 @@ const SizeFieldsSchema = zod_1.z.object({
|
|
|
39
39
|
building: BuildingSizeSchema.optional(),
|
|
40
40
|
land: LandSizeSchema.optional(),
|
|
41
41
|
});
|
|
42
|
+
exports.signalDocumentSchema = zod_1.z.object({
|
|
43
|
+
filename: zod_1.z.string(),
|
|
44
|
+
size: zod_1.z.string().optional(),
|
|
45
|
+
created: zod_1.z.string().datetime().optional(),
|
|
46
|
+
filing_id: zod_1.z.string().optional(),
|
|
47
|
+
mimetype: zod_1.z.string().optional(),
|
|
48
|
+
type: zod_1.z.array(zod_1.z.string()).optional(),
|
|
49
|
+
document_id: zod_1.z.string(),
|
|
50
|
+
scanResultStatus: zod_1.z.string().optional(),
|
|
51
|
+
key: zod_1.z.string().optional(),
|
|
52
|
+
username: zod_1.z.string().optional(),
|
|
53
|
+
url: zod_1.z.string().url().optional(),
|
|
54
|
+
});
|
|
55
|
+
exports.signalSubTypeSchema = zod_1.z.object({
|
|
56
|
+
identifier: zod_1.z.string(),
|
|
57
|
+
id: zod_1.z.string(),
|
|
58
|
+
parentId: zod_1.z.string().optional(),
|
|
59
|
+
});
|
|
60
|
+
exports.signalTypeSchema = zod_1.z.object({
|
|
61
|
+
identifier: zod_1.z.string(),
|
|
62
|
+
id: zod_1.z.string(),
|
|
63
|
+
});
|
|
64
|
+
exports.signalsSchema = zod_1.z.object({
|
|
65
|
+
documents: zod_1.z.array(exports.signalDocumentSchema),
|
|
66
|
+
subType: zod_1.z.array(exports.signalSubTypeSchema),
|
|
67
|
+
id: zod_1.z.string(),
|
|
68
|
+
type: exports.signalTypeSchema,
|
|
69
|
+
headline: zod_1.z.string(),
|
|
70
|
+
});
|
|
71
|
+
exports.documentSchema = zod_1.z.object({
|
|
72
|
+
filename: zod_1.z.string(),
|
|
73
|
+
size: zod_1.z.string().optional(),
|
|
74
|
+
created: zod_1.z.string().datetime(),
|
|
75
|
+
filing_id: zod_1.z.string(),
|
|
76
|
+
mimetype: zod_1.z.string().optional(),
|
|
77
|
+
type: zod_1.z.array(zod_1.z.string()),
|
|
78
|
+
document_id: zod_1.z.string(),
|
|
79
|
+
scanResultStatus: zod_1.z.string().optional(),
|
|
80
|
+
key: zod_1.z.string().optional(),
|
|
81
|
+
url: zod_1.z.string().url().optional(),
|
|
82
|
+
username: zod_1.z.string(),
|
|
83
|
+
});
|
|
84
|
+
exports.keyPeopleSchema = zod_1.z.object({
|
|
85
|
+
identifier: zod_1.z.string(),
|
|
86
|
+
fullName: zod_1.z.string(),
|
|
87
|
+
id: zod_1.z.string(),
|
|
88
|
+
linkedinUrl: zod_1.z.string().url().optional(),
|
|
89
|
+
roles: zod_1.z.array(zod_1.z.string()),
|
|
90
|
+
email: zod_1.z.string(),
|
|
91
|
+
source: zod_1.z.string(),
|
|
92
|
+
phone: zod_1.z.string(),
|
|
93
|
+
});
|
|
42
94
|
exports.DataCenterSchema = zod_1.z.object({
|
|
43
95
|
'#developers': entity_1.OptionalStringArraySchema,
|
|
44
96
|
'#epcs': entity_1.OptionalStringArraySchema,
|
|
@@ -89,5 +141,8 @@ exports.DataCenterSchema = zod_1.z.object({
|
|
|
89
141
|
substation: entity_1.OptionalStringSchema,
|
|
90
142
|
totalMw: zod_1.z.number().optional(),
|
|
91
143
|
totals: entity_1.TotalsSchema,
|
|
144
|
+
signals: zod_1.z.array(exports.signalsSchema).optional(),
|
|
145
|
+
documents: zod_1.z.array(exports.documentSchema).optional(),
|
|
146
|
+
keyPeople: zod_1.z.array(exports.keyPeopleSchema).optional(),
|
|
92
147
|
});
|
|
93
148
|
//# sourceMappingURL=dataCenters.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":";;;AAAA,6BAAuB;AACvB,qCAeiB;AAEjB,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,+BAAiB,CAAA;IACjB,uBAAS,CAAA;AACX,CAAC,EAHW,UAAU,0BAAV,UAAU,QAGrB;AAED,MAAM,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,iBAAQ;CACf,CAAC,CAAA;AAEF,MAAM,sBAAsB,GAAG,oBAAoB,CAAC,MAAM,CAAC;IACzD,UAAU,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,kBAAkB,EAAE,kBAAkB,CAAC,CAAC;IAC5D,OAAO,EAAE,oBAAoB,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,8BAAqB,CAAC,QAAQ,EAAE;IACzC,WAAW,EAAE,6BAAoB;CAClC,CAAC,CAAA;AAIF,MAAM,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,mBAAmB,CAAC,CAAC;IACzC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,iBAAQ;CACf,CAAC,CAAA;AAEF,MAAM,gBAAgB,GAAG,OAAC,CAAC,kBAAkB,CAAC,YAAY,EAAE;IAC1D,sBAAsB;IACtB,uBAAuB;CACxB,CAAC,CAAA;AAEF,MAAM,kBAAkB,GAAG,OAAC,CAAC,MAAM,CAAC;IAClC,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;CACzB,CAAC,CAAA;
|
|
1
|
+
{"version":3,"file":"dataCenters.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/dataCenters.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,7 +47,7 @@ export type FilterDefinition = {
|
|
|
47
47
|
max?: number;
|
|
48
48
|
sum?: number;
|
|
49
49
|
};
|
|
50
|
-
export type EntityExportMap = (
|
|
50
|
+
export type EntityExportMap = (userLocalePreference: string) => Array<{
|
|
51
51
|
id: string;
|
|
52
52
|
header?: string;
|
|
53
53
|
render: (entity: Entity) => string | number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataGrid.js","sourceRoot":"","sources":["../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/dataGrid.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"dataGrid.js","sourceRoot":"","sources":["../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/dataGrid.ts"],"names":[],"mappings":";;;AAqHA,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,6CAAe,CAAA;IACf,2CAAa,CAAA;AACf,CAAC,EAHW,0BAA0B,0CAA1B,0BAA0B,QAGrC"}
|