@new-project-media/client-frontends-shared-types 1.3.2 → 1.3.4
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/common.d.ts +10 -2
- package/src/lib/dataGrid/api/common.js +5 -1
- package/src/lib/dataGrid/api/common.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +12 -6
- package/src/lib/dataGrid/api/queues.js +1 -1
- package/src/lib/dataGrid/api/queues.js.map +1 -1
- package/src/lib/dataGrid/api/signals.d.ts +22 -22
- package/src/lib/dataGrid/dataGrid.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@new-project-media/client-frontends-shared-types",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
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/",
|
|
@@ -59,7 +59,15 @@ export interface ChartAggregationBucket extends Omit<AggregationBucket, 'id'> {
|
|
|
59
59
|
id?: string;
|
|
60
60
|
[key: string]: number | string | undefined;
|
|
61
61
|
}
|
|
62
|
-
export declare const isAggregationItem: (item: AggregationItem | FilteredAggregation | undefined) => item is AggregationItem;
|
|
62
|
+
export declare const isAggregationItem: (item: AggregationItem | FilteredAggregation | CentroidAggregation | undefined) => item is AggregationItem;
|
|
63
|
+
export type CentroidAggregation = {
|
|
64
|
+
count: number;
|
|
65
|
+
location: {
|
|
66
|
+
lat: number;
|
|
67
|
+
lon: number;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
export declare const isCentroidAggregation: (item: AggregationItem | FilteredAggregation | CentroidAggregation | undefined) => item is CentroidAggregation;
|
|
63
71
|
type AggregationParam = {
|
|
64
72
|
primary: string;
|
|
65
73
|
secondary?: string;
|
|
@@ -103,7 +111,7 @@ export type ClientApiListResponse<T> = {
|
|
|
103
111
|
total: number;
|
|
104
112
|
};
|
|
105
113
|
data: T[];
|
|
106
|
-
aggregations?: Record<string, AggregationItem | FilteredAggregation>;
|
|
114
|
+
aggregations?: Record<string, AggregationItem | FilteredAggregation | CentroidAggregation>;
|
|
107
115
|
};
|
|
108
116
|
export type ClientApiSingleItemResponse<T> = {
|
|
109
117
|
paging: {
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isAggregationItem = void 0;
|
|
3
|
+
exports.isCentroidAggregation = exports.isAggregationItem = void 0;
|
|
4
4
|
const isAggregationItem = (item) => {
|
|
5
5
|
return !!item && 'buckets' in item;
|
|
6
6
|
};
|
|
7
7
|
exports.isAggregationItem = isAggregationItem;
|
|
8
|
+
const isCentroidAggregation = (item) => {
|
|
9
|
+
return !!item && 'location' in item;
|
|
10
|
+
};
|
|
11
|
+
exports.isCentroidAggregation = isCentroidAggregation;
|
|
8
12
|
//# sourceMappingURL=common.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/common.ts"],"names":[],"mappings":";;;AA+EO,MAAM,iBAAiB,GAAG,CAC/B,
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/common.ts"],"names":[],"mappings":";;;AA+EO,MAAM,iBAAiB,GAAG,CAC/B,IAA6E,EACpD,EAAE;IAC3B,OAAO,CAAC,CAAC,IAAI,IAAI,SAAS,IAAI,IAAI,CAAA;AACpC,CAAC,CAAA;AAJY,QAAA,iBAAiB,qBAI7B;AAUM,MAAM,qBAAqB,GAAG,CACnC,IAA6E,EAChD,EAAE;IAC/B,OAAO,CAAC,CAAC,IAAI,IAAI,UAAU,IAAI,IAAI,CAAA;AACrC,CAAC,CAAA;AAJY,QAAA,qBAAqB,yBAIjC"}
|
|
@@ -34,6 +34,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
34
34
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
35
35
|
projectName: z.ZodOptional<z.ZodString>;
|
|
36
36
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
37
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
37
38
|
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
38
39
|
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39
40
|
identifier: z.ZodString;
|
|
@@ -125,6 +126,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
125
126
|
lastModified?: string;
|
|
126
127
|
plannedOperationalDate?: string;
|
|
127
128
|
projectName?: string;
|
|
129
|
+
queueDatasetType?: string;
|
|
128
130
|
reportDate?: string;
|
|
129
131
|
withdrawnDate?: string;
|
|
130
132
|
address?: string;
|
|
@@ -180,6 +182,7 @@ export declare const euQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
180
182
|
lastModified?: string;
|
|
181
183
|
plannedOperationalDate?: string;
|
|
182
184
|
projectName?: string;
|
|
185
|
+
queueDatasetType?: string;
|
|
183
186
|
reportDate?: string;
|
|
184
187
|
withdrawnDate?: string;
|
|
185
188
|
address?: string;
|
|
@@ -239,6 +242,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
239
242
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
240
243
|
projectName: z.ZodOptional<z.ZodString>;
|
|
241
244
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
245
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
242
246
|
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
243
247
|
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
244
248
|
identifier: z.ZodString;
|
|
@@ -446,7 +450,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
446
450
|
newToQ?: string;
|
|
447
451
|
npmOrganizationProfile?: string;
|
|
448
452
|
}>>;
|
|
449
|
-
queueDatasetType: z.ZodString;
|
|
450
453
|
queueKey: z.ZodString;
|
|
451
454
|
sourceUpdate: z.ZodString;
|
|
452
455
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -552,6 +555,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
552
555
|
lastModified?: string;
|
|
553
556
|
plannedOperationalDate?: string;
|
|
554
557
|
projectName?: string;
|
|
558
|
+
queueDatasetType?: string;
|
|
555
559
|
reportDate?: string;
|
|
556
560
|
withdrawnDate?: string;
|
|
557
561
|
sourceUpdate?: string;
|
|
@@ -591,7 +595,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
591
595
|
newToQ?: string;
|
|
592
596
|
npmOrganizationProfile?: string;
|
|
593
597
|
};
|
|
594
|
-
queueDatasetType?: string;
|
|
595
598
|
reportCount?: number;
|
|
596
599
|
tags?: {
|
|
597
600
|
identifier?: string;
|
|
@@ -671,6 +674,7 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
671
674
|
lastModified?: string;
|
|
672
675
|
plannedOperationalDate?: string;
|
|
673
676
|
projectName?: string;
|
|
677
|
+
queueDatasetType?: string;
|
|
674
678
|
reportDate?: string;
|
|
675
679
|
withdrawnDate?: string;
|
|
676
680
|
sourceUpdate?: string;
|
|
@@ -710,7 +714,6 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
710
714
|
newToQ?: string;
|
|
711
715
|
npmOrganizationProfile?: string;
|
|
712
716
|
};
|
|
713
|
-
queueDatasetType?: string;
|
|
714
717
|
reportCount?: number;
|
|
715
718
|
tags?: {
|
|
716
719
|
identifier?: string;
|
|
@@ -752,6 +755,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
752
755
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
753
756
|
projectName: z.ZodOptional<z.ZodString>;
|
|
754
757
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
758
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
755
759
|
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
756
760
|
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
757
761
|
identifier: z.ZodString;
|
|
@@ -959,7 +963,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
959
963
|
newToQ?: string;
|
|
960
964
|
npmOrganizationProfile?: string;
|
|
961
965
|
}>>;
|
|
962
|
-
queueDatasetType: z.ZodString;
|
|
963
966
|
queueKey: z.ZodString;
|
|
964
967
|
sourceUpdate: z.ZodString;
|
|
965
968
|
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1065,6 +1068,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1065
1068
|
lastModified?: string;
|
|
1066
1069
|
plannedOperationalDate?: string;
|
|
1067
1070
|
projectName?: string;
|
|
1071
|
+
queueDatasetType?: string;
|
|
1068
1072
|
reportDate?: string;
|
|
1069
1073
|
withdrawnDate?: string;
|
|
1070
1074
|
sourceUpdate?: string;
|
|
@@ -1104,7 +1108,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1104
1108
|
newToQ?: string;
|
|
1105
1109
|
npmOrganizationProfile?: string;
|
|
1106
1110
|
};
|
|
1107
|
-
queueDatasetType?: string;
|
|
1108
1111
|
reportCount?: number;
|
|
1109
1112
|
tags?: {
|
|
1110
1113
|
identifier?: string;
|
|
@@ -1184,6 +1187,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1184
1187
|
lastModified?: string;
|
|
1185
1188
|
plannedOperationalDate?: string;
|
|
1186
1189
|
projectName?: string;
|
|
1190
|
+
queueDatasetType?: string;
|
|
1187
1191
|
reportDate?: string;
|
|
1188
1192
|
withdrawnDate?: string;
|
|
1189
1193
|
sourceUpdate?: string;
|
|
@@ -1223,7 +1227,6 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1223
1227
|
newToQ?: string;
|
|
1224
1228
|
npmOrganizationProfile?: string;
|
|
1225
1229
|
};
|
|
1226
|
-
queueDatasetType?: string;
|
|
1227
1230
|
reportCount?: number;
|
|
1228
1231
|
tags?: {
|
|
1229
1232
|
identifier?: string;
|
|
@@ -1263,6 +1266,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1263
1266
|
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1264
1267
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1265
1268
|
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1269
|
+
queueDatasetType: z.ZodOptional<z.ZodString>;
|
|
1266
1270
|
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
1267
1271
|
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1268
1272
|
identifier: z.ZodString;
|
|
@@ -1354,6 +1358,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1354
1358
|
lastModified?: string;
|
|
1355
1359
|
plannedOperationalDate?: string;
|
|
1356
1360
|
projectName?: string;
|
|
1361
|
+
queueDatasetType?: string;
|
|
1357
1362
|
reportDate?: string;
|
|
1358
1363
|
withdrawnDate?: string;
|
|
1359
1364
|
address?: string;
|
|
@@ -1409,6 +1414,7 @@ export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendSha
|
|
|
1409
1414
|
lastModified?: string;
|
|
1410
1415
|
plannedOperationalDate?: string;
|
|
1411
1416
|
projectName?: string;
|
|
1417
|
+
queueDatasetType?: string;
|
|
1412
1418
|
reportDate?: string;
|
|
1413
1419
|
withdrawnDate?: string;
|
|
1414
1420
|
address?: string;
|
|
@@ -67,6 +67,7 @@ const sharedQueueSchema = zod_1.z.object({
|
|
|
67
67
|
plannedOperationalDate: entity_1.ISODateTimeOptionalSchema,
|
|
68
68
|
projectName: entity_1.OptionalStringSchema,
|
|
69
69
|
queueDataset: entity_1.OptionalStringSchema,
|
|
70
|
+
queueDatasetType: entity_1.OptionalStringSchema,
|
|
70
71
|
reportDate: entity_1.YYYYMMDDRegexSchema,
|
|
71
72
|
sectors: entity_1.EntityItemArraySchema.default([]),
|
|
72
73
|
totals: zod_1.z.record(zod_1.z.number()).optional(),
|
|
@@ -120,7 +121,6 @@ exports.usQueueSchema = sharedQueueSchema.extend({
|
|
|
120
121
|
totalMw: zod_1.z.number(),
|
|
121
122
|
poiLocation: entity_1.OptionalStringSchema,
|
|
122
123
|
processInfo: ProcessInfoSchema.optional(),
|
|
123
|
-
queueDatasetType: zod_1.z.string(),
|
|
124
124
|
queueKey: zod_1.z.string(),
|
|
125
125
|
sourceUpdate: zod_1.z.string(),
|
|
126
126
|
reportCount: entity_1.OptionalNumberSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"queues.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/queues.ts"],"names":[],"mappings":"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"}
|
|
@@ -177,15 +177,15 @@ declare const signal: z.ZodObject<{
|
|
|
177
177
|
lat?: number;
|
|
178
178
|
lon?: number;
|
|
179
179
|
};
|
|
180
|
-
|
|
180
|
+
location?: {
|
|
181
181
|
lat?: number;
|
|
182
182
|
lon?: number;
|
|
183
183
|
};
|
|
184
|
-
|
|
185
|
-
location?: {
|
|
184
|
+
default?: {
|
|
186
185
|
lat?: number;
|
|
187
186
|
lon?: number;
|
|
188
187
|
};
|
|
188
|
+
defaultValue?: string;
|
|
189
189
|
facility?: {
|
|
190
190
|
lat?: number;
|
|
191
191
|
lon?: number;
|
|
@@ -195,15 +195,15 @@ declare const signal: z.ZodObject<{
|
|
|
195
195
|
lat?: number;
|
|
196
196
|
lon?: number;
|
|
197
197
|
};
|
|
198
|
-
|
|
198
|
+
location?: {
|
|
199
199
|
lat?: number;
|
|
200
200
|
lon?: number;
|
|
201
201
|
};
|
|
202
|
-
|
|
203
|
-
location?: {
|
|
202
|
+
default?: {
|
|
204
203
|
lat?: number;
|
|
205
204
|
lon?: number;
|
|
206
205
|
};
|
|
206
|
+
defaultValue?: string;
|
|
207
207
|
facility?: {
|
|
208
208
|
lat?: number;
|
|
209
209
|
lon?: number;
|
|
@@ -501,6 +501,11 @@ declare const signal: z.ZodObject<{
|
|
|
501
501
|
source?: string;
|
|
502
502
|
}[];
|
|
503
503
|
id?: string;
|
|
504
|
+
location?: {
|
|
505
|
+
id?: string;
|
|
506
|
+
identifier?: string;
|
|
507
|
+
isApproximate?: boolean;
|
|
508
|
+
}[];
|
|
504
509
|
status?: PublishStatus;
|
|
505
510
|
country?: {
|
|
506
511
|
id?: string;
|
|
@@ -564,25 +569,20 @@ declare const signal: z.ZodObject<{
|
|
|
564
569
|
latitude?: number;
|
|
565
570
|
longitude?: number;
|
|
566
571
|
};
|
|
567
|
-
location?: {
|
|
568
|
-
id?: string;
|
|
569
|
-
identifier?: string;
|
|
570
|
-
isApproximate?: boolean;
|
|
571
|
-
}[];
|
|
572
572
|
geo?: {
|
|
573
573
|
county?: {
|
|
574
574
|
lat?: number;
|
|
575
575
|
lon?: number;
|
|
576
576
|
};
|
|
577
|
-
|
|
577
|
+
location?: {
|
|
578
578
|
lat?: number;
|
|
579
579
|
lon?: number;
|
|
580
580
|
};
|
|
581
|
-
|
|
582
|
-
location?: {
|
|
581
|
+
default?: {
|
|
583
582
|
lat?: number;
|
|
584
583
|
lon?: number;
|
|
585
584
|
};
|
|
585
|
+
defaultValue?: string;
|
|
586
586
|
facility?: {
|
|
587
587
|
lat?: number;
|
|
588
588
|
lon?: number;
|
|
@@ -666,6 +666,11 @@ declare const signal: z.ZodObject<{
|
|
|
666
666
|
source?: string;
|
|
667
667
|
}[];
|
|
668
668
|
id?: string;
|
|
669
|
+
location?: {
|
|
670
|
+
id?: string;
|
|
671
|
+
identifier?: string;
|
|
672
|
+
isApproximate?: boolean;
|
|
673
|
+
}[];
|
|
669
674
|
status?: PublishStatus;
|
|
670
675
|
country?: {
|
|
671
676
|
id?: string;
|
|
@@ -729,25 +734,20 @@ declare const signal: z.ZodObject<{
|
|
|
729
734
|
latitude?: number;
|
|
730
735
|
longitude?: number;
|
|
731
736
|
};
|
|
732
|
-
location?: {
|
|
733
|
-
id?: string;
|
|
734
|
-
identifier?: string;
|
|
735
|
-
isApproximate?: boolean;
|
|
736
|
-
}[];
|
|
737
737
|
geo?: {
|
|
738
738
|
county?: {
|
|
739
739
|
lat?: number;
|
|
740
740
|
lon?: number;
|
|
741
741
|
};
|
|
742
|
-
|
|
742
|
+
location?: {
|
|
743
743
|
lat?: number;
|
|
744
744
|
lon?: number;
|
|
745
745
|
};
|
|
746
|
-
|
|
747
|
-
location?: {
|
|
746
|
+
default?: {
|
|
748
747
|
lat?: number;
|
|
749
748
|
lon?: number;
|
|
750
749
|
};
|
|
750
|
+
defaultValue?: string;
|
|
751
751
|
facility?: {
|
|
752
752
|
lat?: number;
|
|
753
753
|
lon?: number;
|