@new-project-media/client-frontends-shared-types 2.0.27 → 2.0.28

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.27",
3
+ "version": "2.0.28",
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,245 @@ declare const PowerWithStorageSchema: z.ZodObject<{
57
57
  };
58
58
  }>;
59
59
  export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
60
+ export declare const signalDocumentSchema: z.ZodObject<{
61
+ filename: z.ZodString;
62
+ size: z.ZodOptional<z.ZodString>;
63
+ created: z.ZodOptional<z.ZodString>;
64
+ filing_id: z.ZodOptional<z.ZodString>;
65
+ mimetype: z.ZodOptional<z.ZodString>;
66
+ type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
67
+ document_id: z.ZodString;
68
+ scanResultStatus: z.ZodOptional<z.ZodString>;
69
+ key: z.ZodOptional<z.ZodString>;
70
+ username: z.ZodOptional<z.ZodString>;
71
+ url: z.ZodOptional<z.ZodString>;
72
+ }, "strip", z.ZodTypeAny, {
73
+ type?: string[];
74
+ key?: string;
75
+ filename?: string;
76
+ created?: string;
77
+ document_id?: string;
78
+ mimetype?: string;
79
+ scanResultStatus?: string;
80
+ url?: string;
81
+ filing_id?: string;
82
+ size?: string;
83
+ username?: string;
84
+ }, {
85
+ type?: string[];
86
+ key?: string;
87
+ filename?: string;
88
+ created?: string;
89
+ document_id?: string;
90
+ mimetype?: string;
91
+ scanResultStatus?: string;
92
+ url?: string;
93
+ filing_id?: string;
94
+ size?: string;
95
+ username?: string;
96
+ }>;
97
+ export declare const signalSubTypeSchema: z.ZodObject<{
98
+ identifier: z.ZodString;
99
+ id: z.ZodString;
100
+ parentId: z.ZodOptional<z.ZodString>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ id?: string;
103
+ identifier?: string;
104
+ parentId?: string;
105
+ }, {
106
+ id?: string;
107
+ identifier?: string;
108
+ parentId?: string;
109
+ }>;
110
+ export declare const signalTypeSchema: z.ZodObject<{
111
+ identifier: z.ZodString;
112
+ id: z.ZodString;
113
+ }, "strip", z.ZodTypeAny, {
114
+ id?: string;
115
+ identifier?: string;
116
+ }, {
117
+ id?: string;
118
+ identifier?: string;
119
+ }>;
120
+ export declare const signalsSchema: z.ZodObject<{
121
+ documents: z.ZodArray<z.ZodObject<{
122
+ filename: z.ZodString;
123
+ size: z.ZodOptional<z.ZodString>;
124
+ created: z.ZodOptional<z.ZodString>;
125
+ filing_id: z.ZodOptional<z.ZodString>;
126
+ mimetype: z.ZodOptional<z.ZodString>;
127
+ type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
128
+ document_id: z.ZodString;
129
+ scanResultStatus: z.ZodOptional<z.ZodString>;
130
+ key: z.ZodOptional<z.ZodString>;
131
+ username: z.ZodOptional<z.ZodString>;
132
+ url: z.ZodOptional<z.ZodString>;
133
+ }, "strip", z.ZodTypeAny, {
134
+ type?: string[];
135
+ key?: string;
136
+ filename?: string;
137
+ created?: string;
138
+ document_id?: string;
139
+ mimetype?: string;
140
+ scanResultStatus?: string;
141
+ url?: string;
142
+ filing_id?: string;
143
+ size?: string;
144
+ username?: string;
145
+ }, {
146
+ type?: string[];
147
+ key?: string;
148
+ filename?: string;
149
+ created?: string;
150
+ document_id?: string;
151
+ mimetype?: string;
152
+ scanResultStatus?: string;
153
+ url?: string;
154
+ filing_id?: string;
155
+ size?: string;
156
+ username?: string;
157
+ }>, "many">;
158
+ subType: z.ZodArray<z.ZodObject<{
159
+ identifier: z.ZodString;
160
+ id: z.ZodString;
161
+ parentId: z.ZodOptional<z.ZodString>;
162
+ }, "strip", z.ZodTypeAny, {
163
+ id?: string;
164
+ identifier?: string;
165
+ parentId?: string;
166
+ }, {
167
+ id?: string;
168
+ identifier?: string;
169
+ parentId?: string;
170
+ }>, "many">;
171
+ id: z.ZodString;
172
+ type: z.ZodObject<{
173
+ identifier: z.ZodString;
174
+ id: z.ZodString;
175
+ }, "strip", z.ZodTypeAny, {
176
+ id?: string;
177
+ identifier?: string;
178
+ }, {
179
+ id?: string;
180
+ identifier?: string;
181
+ }>;
182
+ headline: z.ZodString;
183
+ }, "strip", z.ZodTypeAny, {
184
+ type?: {
185
+ id?: string;
186
+ identifier?: string;
187
+ };
188
+ subType?: {
189
+ id?: string;
190
+ identifier?: string;
191
+ parentId?: string;
192
+ }[];
193
+ id?: string;
194
+ documents?: {
195
+ type?: string[];
196
+ key?: string;
197
+ filename?: string;
198
+ created?: string;
199
+ document_id?: string;
200
+ mimetype?: string;
201
+ scanResultStatus?: string;
202
+ url?: string;
203
+ filing_id?: string;
204
+ size?: string;
205
+ username?: string;
206
+ }[];
207
+ headline?: string;
208
+ }, {
209
+ type?: {
210
+ id?: string;
211
+ identifier?: string;
212
+ };
213
+ subType?: {
214
+ id?: string;
215
+ identifier?: string;
216
+ parentId?: string;
217
+ }[];
218
+ id?: string;
219
+ documents?: {
220
+ type?: string[];
221
+ key?: string;
222
+ filename?: string;
223
+ created?: string;
224
+ document_id?: string;
225
+ mimetype?: string;
226
+ scanResultStatus?: string;
227
+ url?: string;
228
+ filing_id?: string;
229
+ size?: string;
230
+ username?: string;
231
+ }[];
232
+ headline?: string;
233
+ }>;
234
+ export declare const documentSchema: z.ZodObject<{
235
+ filename: z.ZodString;
236
+ size: z.ZodOptional<z.ZodString>;
237
+ created: z.ZodString;
238
+ filing_id: z.ZodString;
239
+ mimetype: z.ZodOptional<z.ZodString>;
240
+ type: z.ZodArray<z.ZodString, "many">;
241
+ document_id: z.ZodString;
242
+ scanResultStatus: z.ZodOptional<z.ZodString>;
243
+ key: z.ZodOptional<z.ZodString>;
244
+ url: z.ZodOptional<z.ZodString>;
245
+ username: z.ZodString;
246
+ }, "strip", z.ZodTypeAny, {
247
+ type?: string[];
248
+ key?: string;
249
+ filename?: string;
250
+ created?: string;
251
+ document_id?: string;
252
+ mimetype?: string;
253
+ scanResultStatus?: string;
254
+ url?: string;
255
+ filing_id?: string;
256
+ size?: string;
257
+ username?: string;
258
+ }, {
259
+ type?: string[];
260
+ key?: string;
261
+ filename?: string;
262
+ created?: string;
263
+ document_id?: string;
264
+ mimetype?: string;
265
+ scanResultStatus?: string;
266
+ url?: string;
267
+ filing_id?: string;
268
+ size?: string;
269
+ username?: string;
270
+ }>;
271
+ export declare const keyPeopleSchema: z.ZodObject<{
272
+ identifier: z.ZodString;
273
+ fullName: z.ZodString;
274
+ id: z.ZodString;
275
+ linkedinUrl: z.ZodOptional<z.ZodString>;
276
+ roles: z.ZodArray<z.ZodString, "many">;
277
+ email: z.ZodString;
278
+ source: z.ZodString;
279
+ phone: z.ZodString;
280
+ }, "strip", z.ZodTypeAny, {
281
+ id?: string;
282
+ identifier?: string;
283
+ source?: string;
284
+ linkedinUrl?: string;
285
+ fullName?: string;
286
+ email?: string;
287
+ phone?: string;
288
+ roles?: string[];
289
+ }, {
290
+ id?: string;
291
+ identifier?: string;
292
+ source?: string;
293
+ linkedinUrl?: string;
294
+ fullName?: string;
295
+ email?: string;
296
+ phone?: string;
297
+ roles?: string[];
298
+ }>;
60
299
  export declare const DataCenterSchema: z.ZodObject<{
61
300
  '#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
62
301
  '#epcs': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -727,12 +966,201 @@ export declare const DataCenterSchema: z.ZodObject<{
727
966
  intels?: number;
728
967
  signals?: number;
729
968
  }>>;
969
+ signals: z.ZodOptional<z.ZodArray<z.ZodObject<{
970
+ documents: z.ZodArray<z.ZodObject<{
971
+ filename: z.ZodString;
972
+ size: z.ZodOptional<z.ZodString>;
973
+ created: z.ZodOptional<z.ZodString>;
974
+ filing_id: z.ZodOptional<z.ZodString>;
975
+ mimetype: z.ZodOptional<z.ZodString>;
976
+ type: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
977
+ document_id: z.ZodString;
978
+ scanResultStatus: z.ZodOptional<z.ZodString>;
979
+ key: z.ZodOptional<z.ZodString>;
980
+ username: z.ZodOptional<z.ZodString>;
981
+ url: z.ZodOptional<z.ZodString>;
982
+ }, "strip", z.ZodTypeAny, {
983
+ type?: string[];
984
+ key?: string;
985
+ filename?: string;
986
+ created?: string;
987
+ document_id?: string;
988
+ mimetype?: string;
989
+ scanResultStatus?: string;
990
+ url?: string;
991
+ filing_id?: string;
992
+ size?: string;
993
+ username?: string;
994
+ }, {
995
+ type?: string[];
996
+ key?: string;
997
+ filename?: string;
998
+ created?: string;
999
+ document_id?: string;
1000
+ mimetype?: string;
1001
+ scanResultStatus?: string;
1002
+ url?: string;
1003
+ filing_id?: string;
1004
+ size?: string;
1005
+ username?: string;
1006
+ }>, "many">;
1007
+ subType: z.ZodArray<z.ZodObject<{
1008
+ identifier: z.ZodString;
1009
+ id: z.ZodString;
1010
+ parentId: z.ZodOptional<z.ZodString>;
1011
+ }, "strip", z.ZodTypeAny, {
1012
+ id?: string;
1013
+ identifier?: string;
1014
+ parentId?: string;
1015
+ }, {
1016
+ id?: string;
1017
+ identifier?: string;
1018
+ parentId?: string;
1019
+ }>, "many">;
1020
+ id: z.ZodString;
1021
+ type: z.ZodObject<{
1022
+ identifier: z.ZodString;
1023
+ id: z.ZodString;
1024
+ }, "strip", z.ZodTypeAny, {
1025
+ id?: string;
1026
+ identifier?: string;
1027
+ }, {
1028
+ id?: string;
1029
+ identifier?: string;
1030
+ }>;
1031
+ headline: z.ZodString;
1032
+ }, "strip", z.ZodTypeAny, {
1033
+ type?: {
1034
+ id?: string;
1035
+ identifier?: string;
1036
+ };
1037
+ subType?: {
1038
+ id?: string;
1039
+ identifier?: string;
1040
+ parentId?: string;
1041
+ }[];
1042
+ id?: string;
1043
+ documents?: {
1044
+ type?: string[];
1045
+ key?: string;
1046
+ filename?: string;
1047
+ created?: string;
1048
+ document_id?: string;
1049
+ mimetype?: string;
1050
+ scanResultStatus?: string;
1051
+ url?: string;
1052
+ filing_id?: string;
1053
+ size?: string;
1054
+ username?: string;
1055
+ }[];
1056
+ headline?: string;
1057
+ }, {
1058
+ type?: {
1059
+ id?: string;
1060
+ identifier?: string;
1061
+ };
1062
+ subType?: {
1063
+ id?: string;
1064
+ identifier?: string;
1065
+ parentId?: string;
1066
+ }[];
1067
+ id?: string;
1068
+ documents?: {
1069
+ type?: string[];
1070
+ key?: string;
1071
+ filename?: string;
1072
+ created?: string;
1073
+ document_id?: string;
1074
+ mimetype?: string;
1075
+ scanResultStatus?: string;
1076
+ url?: string;
1077
+ filing_id?: string;
1078
+ size?: string;
1079
+ username?: string;
1080
+ }[];
1081
+ headline?: string;
1082
+ }>, "many">>;
1083
+ documents: z.ZodOptional<z.ZodArray<z.ZodObject<{
1084
+ filename: z.ZodString;
1085
+ size: z.ZodOptional<z.ZodString>;
1086
+ created: z.ZodString;
1087
+ filing_id: z.ZodString;
1088
+ mimetype: z.ZodOptional<z.ZodString>;
1089
+ type: z.ZodArray<z.ZodString, "many">;
1090
+ document_id: z.ZodString;
1091
+ scanResultStatus: z.ZodOptional<z.ZodString>;
1092
+ key: z.ZodOptional<z.ZodString>;
1093
+ url: z.ZodOptional<z.ZodString>;
1094
+ username: z.ZodString;
1095
+ }, "strip", z.ZodTypeAny, {
1096
+ type?: string[];
1097
+ key?: string;
1098
+ filename?: string;
1099
+ created?: string;
1100
+ document_id?: string;
1101
+ mimetype?: string;
1102
+ scanResultStatus?: string;
1103
+ url?: string;
1104
+ filing_id?: string;
1105
+ size?: string;
1106
+ username?: string;
1107
+ }, {
1108
+ type?: string[];
1109
+ key?: string;
1110
+ filename?: string;
1111
+ created?: string;
1112
+ document_id?: string;
1113
+ mimetype?: string;
1114
+ scanResultStatus?: string;
1115
+ url?: string;
1116
+ filing_id?: string;
1117
+ size?: string;
1118
+ username?: string;
1119
+ }>, "many">>;
1120
+ keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
1121
+ identifier: z.ZodString;
1122
+ fullName: z.ZodString;
1123
+ id: z.ZodString;
1124
+ linkedinUrl: z.ZodOptional<z.ZodString>;
1125
+ roles: z.ZodArray<z.ZodString, "many">;
1126
+ email: z.ZodString;
1127
+ source: z.ZodString;
1128
+ phone: z.ZodString;
1129
+ }, "strip", z.ZodTypeAny, {
1130
+ id?: string;
1131
+ identifier?: string;
1132
+ source?: string;
1133
+ linkedinUrl?: string;
1134
+ fullName?: string;
1135
+ email?: string;
1136
+ phone?: string;
1137
+ roles?: string[];
1138
+ }, {
1139
+ id?: string;
1140
+ identifier?: string;
1141
+ source?: string;
1142
+ linkedinUrl?: string;
1143
+ fullName?: string;
1144
+ email?: string;
1145
+ phone?: string;
1146
+ roles?: string[];
1147
+ }>, "many">>;
730
1148
  }, "strip", z.ZodTypeAny, {
731
1149
  sectors?: {
732
1150
  id?: string;
733
1151
  identifier?: string;
734
1152
  source?: string;
735
1153
  }[];
1154
+ keyPeople?: {
1155
+ id?: string;
1156
+ identifier?: string;
1157
+ source?: string;
1158
+ linkedinUrl?: string;
1159
+ fullName?: string;
1160
+ email?: string;
1161
+ phone?: string;
1162
+ roles?: string[];
1163
+ }[];
736
1164
  id?: string;
737
1165
  location?: {
738
1166
  id?: string;
@@ -768,6 +1196,19 @@ export declare const DataCenterSchema: z.ZodObject<{
768
1196
  }[];
769
1197
  country?: string;
770
1198
  created?: string;
1199
+ documents?: {
1200
+ type?: string[];
1201
+ key?: string;
1202
+ filename?: string;
1203
+ created?: string;
1204
+ document_id?: string;
1205
+ mimetype?: string;
1206
+ scanResultStatus?: string;
1207
+ url?: string;
1208
+ filing_id?: string;
1209
+ size?: string;
1210
+ username?: string;
1211
+ }[];
771
1212
  organizations?: {
772
1213
  id?: string;
773
1214
  identifier?: string;
@@ -781,6 +1222,32 @@ export declare const DataCenterSchema: z.ZodObject<{
781
1222
  applicationId?: string;
782
1223
  queueDataset?: string;
783
1224
  }[];
1225
+ signals?: {
1226
+ type?: {
1227
+ id?: string;
1228
+ identifier?: string;
1229
+ };
1230
+ subType?: {
1231
+ id?: string;
1232
+ identifier?: string;
1233
+ parentId?: string;
1234
+ }[];
1235
+ id?: string;
1236
+ documents?: {
1237
+ type?: string[];
1238
+ key?: string;
1239
+ filename?: string;
1240
+ created?: string;
1241
+ document_id?: string;
1242
+ mimetype?: string;
1243
+ scanResultStatus?: string;
1244
+ url?: string;
1245
+ filing_id?: string;
1246
+ size?: string;
1247
+ username?: string;
1248
+ }[];
1249
+ headline?: string;
1250
+ }[];
784
1251
  powerCapacity?: {
785
1252
  sectors?: {
786
1253
  id?: string;
@@ -926,6 +1393,16 @@ export declare const DataCenterSchema: z.ZodObject<{
926
1393
  identifier?: string;
927
1394
  source?: string;
928
1395
  }[];
1396
+ keyPeople?: {
1397
+ id?: string;
1398
+ identifier?: string;
1399
+ source?: string;
1400
+ linkedinUrl?: string;
1401
+ fullName?: string;
1402
+ email?: string;
1403
+ phone?: string;
1404
+ roles?: string[];
1405
+ }[];
929
1406
  id?: string;
930
1407
  location?: {
931
1408
  id?: string;
@@ -961,6 +1438,19 @@ export declare const DataCenterSchema: z.ZodObject<{
961
1438
  }[];
962
1439
  country?: string;
963
1440
  created?: string;
1441
+ documents?: {
1442
+ type?: string[];
1443
+ key?: string;
1444
+ filename?: string;
1445
+ created?: string;
1446
+ document_id?: string;
1447
+ mimetype?: string;
1448
+ scanResultStatus?: string;
1449
+ url?: string;
1450
+ filing_id?: string;
1451
+ size?: string;
1452
+ username?: string;
1453
+ }[];
964
1454
  organizations?: {
965
1455
  id?: string;
966
1456
  identifier?: string;
@@ -974,6 +1464,32 @@ export declare const DataCenterSchema: z.ZodObject<{
974
1464
  applicationId?: string;
975
1465
  queueDataset?: string;
976
1466
  }[];
1467
+ signals?: {
1468
+ type?: {
1469
+ id?: string;
1470
+ identifier?: string;
1471
+ };
1472
+ subType?: {
1473
+ id?: string;
1474
+ identifier?: string;
1475
+ parentId?: string;
1476
+ }[];
1477
+ id?: string;
1478
+ documents?: {
1479
+ type?: string[];
1480
+ key?: string;
1481
+ filename?: string;
1482
+ created?: string;
1483
+ document_id?: string;
1484
+ mimetype?: string;
1485
+ scanResultStatus?: string;
1486
+ url?: string;
1487
+ filing_id?: string;
1488
+ size?: string;
1489
+ username?: string;
1490
+ }[];
1491
+ headline?: string;
1492
+ }[];
977
1493
  powerCapacity?: {
978
1494
  sectors?: {
979
1495
  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":"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"}
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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"}