@new-project-media/client-frontends-shared-types 2.0.24 → 2.0.26
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/dataCenters.d.ts +44 -26
- package/src/lib/dataGrid/api/dataCenters.js +4 -2
- package/src/lib/dataGrid/api/dataCenters.js.map +1 -1
- package/src/lib/dataGrid/api/entity.d.ts +21 -0
- package/src/lib/dataGrid/api/entity.js +13 -6
- package/src/lib/dataGrid/api/entity.js.map +1 -1
- package/src/lib/dataGrid/api/queues.d.ts +96 -96
- package/src/lib/dataGrid/api/signals.d.ts +7 -0
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.26",
|
|
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/",
|
|
@@ -5,18 +5,18 @@ export declare enum RegionType {
|
|
|
5
5
|
}
|
|
6
6
|
declare const PowerWithStorageSchema: z.ZodObject<{
|
|
7
7
|
value: z.ZodNumber;
|
|
8
|
-
unit: z.
|
|
8
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
9
9
|
} & {
|
|
10
10
|
identifier: z.ZodEnum<["onsiteGeneration", "backupGeneration"]>;
|
|
11
11
|
storage: z.ZodOptional<z.ZodObject<{
|
|
12
12
|
value: z.ZodNumber;
|
|
13
|
-
unit: z.
|
|
13
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
value?: number;
|
|
16
|
-
unit?:
|
|
16
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
17
17
|
}, {
|
|
18
18
|
value?: number;
|
|
19
|
-
unit?:
|
|
19
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
20
20
|
}>>;
|
|
21
21
|
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22
22
|
identifier: z.ZodString;
|
|
@@ -28,6 +28,7 @@ declare const PowerWithStorageSchema: z.ZodObject<{
|
|
|
28
28
|
id?: string;
|
|
29
29
|
identifier?: string;
|
|
30
30
|
}>, "many">>;
|
|
31
|
+
description: z.ZodOptional<z.ZodString>;
|
|
31
32
|
}, "strip", z.ZodTypeAny, {
|
|
32
33
|
sectors?: {
|
|
33
34
|
id?: string;
|
|
@@ -35,10 +36,11 @@ declare const PowerWithStorageSchema: z.ZodObject<{
|
|
|
35
36
|
}[];
|
|
36
37
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
37
38
|
value?: number;
|
|
38
|
-
unit?:
|
|
39
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
40
|
+
description?: string;
|
|
39
41
|
storage?: {
|
|
40
42
|
value?: number;
|
|
41
|
-
unit?:
|
|
43
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
42
44
|
};
|
|
43
45
|
}, {
|
|
44
46
|
sectors?: {
|
|
@@ -47,12 +49,14 @@ declare const PowerWithStorageSchema: z.ZodObject<{
|
|
|
47
49
|
}[];
|
|
48
50
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
49
51
|
value?: number;
|
|
50
|
-
unit?:
|
|
52
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
53
|
+
description?: string;
|
|
51
54
|
storage?: {
|
|
52
55
|
value?: number;
|
|
53
|
-
unit?:
|
|
56
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
54
57
|
};
|
|
55
58
|
}>;
|
|
59
|
+
export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
|
|
56
60
|
export declare const DataCenterSchema: z.ZodObject<{
|
|
57
61
|
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
58
62
|
'#epcs': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -469,18 +473,18 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
469
473
|
plannedOperationalDate: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
470
474
|
powerFields: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"identifier", [z.ZodObject<{
|
|
471
475
|
value: z.ZodNumber;
|
|
472
|
-
unit: z.
|
|
476
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
473
477
|
} & {
|
|
474
478
|
identifier: z.ZodEnum<["onsiteGeneration", "backupGeneration"]>;
|
|
475
479
|
storage: z.ZodOptional<z.ZodObject<{
|
|
476
480
|
value: z.ZodNumber;
|
|
477
|
-
unit: z.
|
|
481
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
478
482
|
}, "strip", z.ZodTypeAny, {
|
|
479
483
|
value?: number;
|
|
480
|
-
unit?:
|
|
484
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
481
485
|
}, {
|
|
482
486
|
value?: number;
|
|
483
|
-
unit?:
|
|
487
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
484
488
|
}>>;
|
|
485
489
|
sectors: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
486
490
|
identifier: z.ZodString;
|
|
@@ -492,6 +496,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
492
496
|
id?: string;
|
|
493
497
|
identifier?: string;
|
|
494
498
|
}>, "many">>;
|
|
499
|
+
description: z.ZodOptional<z.ZodString>;
|
|
495
500
|
}, "strip", z.ZodTypeAny, {
|
|
496
501
|
sectors?: {
|
|
497
502
|
id?: string;
|
|
@@ -499,10 +504,11 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
499
504
|
}[];
|
|
500
505
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
501
506
|
value?: number;
|
|
502
|
-
unit?:
|
|
507
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
508
|
+
description?: string;
|
|
503
509
|
storage?: {
|
|
504
510
|
value?: number;
|
|
505
|
-
unit?:
|
|
511
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
506
512
|
};
|
|
507
513
|
}, {
|
|
508
514
|
sectors?: {
|
|
@@ -511,23 +517,24 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
511
517
|
}[];
|
|
512
518
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
513
519
|
value?: number;
|
|
514
|
-
unit?:
|
|
520
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
521
|
+
description?: string;
|
|
515
522
|
storage?: {
|
|
516
523
|
value?: number;
|
|
517
|
-
unit?:
|
|
524
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
518
525
|
};
|
|
519
526
|
}>, z.ZodObject<{
|
|
520
527
|
identifier: z.ZodEnum<["operatingCapacity"]>;
|
|
521
528
|
value: z.ZodNumber;
|
|
522
|
-
unit: z.
|
|
529
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
523
530
|
}, "strip", z.ZodTypeAny, {
|
|
524
531
|
identifier?: "operatingCapacity";
|
|
525
532
|
value?: number;
|
|
526
|
-
unit?:
|
|
533
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
527
534
|
}, {
|
|
528
535
|
identifier?: "operatingCapacity";
|
|
529
536
|
value?: number;
|
|
530
|
-
unit?:
|
|
537
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
531
538
|
}>]>, "many">>;
|
|
532
539
|
powerCapacity: z.ZodOptional<z.ZodObject<{
|
|
533
540
|
value: z.ZodOptional<z.ZodNumber>;
|
|
@@ -653,6 +660,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
653
660
|
identifier?: string;
|
|
654
661
|
}>, "many">;
|
|
655
662
|
substation: z.ZodOptional<z.ZodString>;
|
|
663
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
656
664
|
totals: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
657
665
|
offtaker: z.ZodOptional<z.ZodNumber>;
|
|
658
666
|
projects: z.ZodOptional<z.ZodNumber>;
|
|
@@ -665,6 +673,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
665
673
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
666
674
|
developer: z.ZodOptional<z.ZodNumber>;
|
|
667
675
|
intels: z.ZodOptional<z.ZodNumber>;
|
|
676
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
668
677
|
}, "strip", z.ZodTypeAny, {
|
|
669
678
|
keyPeople?: number;
|
|
670
679
|
offtaker?: number;
|
|
@@ -677,6 +686,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
677
686
|
epc?: number;
|
|
678
687
|
developer?: number;
|
|
679
688
|
intels?: number;
|
|
689
|
+
signals?: number;
|
|
680
690
|
}, {
|
|
681
691
|
keyPeople?: number;
|
|
682
692
|
offtaker?: number;
|
|
@@ -689,6 +699,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
689
699
|
epc?: number;
|
|
690
700
|
developer?: number;
|
|
691
701
|
intels?: number;
|
|
702
|
+
signals?: number;
|
|
692
703
|
}>, {
|
|
693
704
|
keyPeople?: number;
|
|
694
705
|
offtaker?: number;
|
|
@@ -701,6 +712,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
701
712
|
epc?: number;
|
|
702
713
|
developer?: number;
|
|
703
714
|
intels?: number;
|
|
715
|
+
signals?: number;
|
|
704
716
|
}, {
|
|
705
717
|
keyPeople?: number;
|
|
706
718
|
offtaker?: number;
|
|
@@ -713,6 +725,7 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
713
725
|
epc?: number;
|
|
714
726
|
developer?: number;
|
|
715
727
|
intels?: number;
|
|
728
|
+
signals?: number;
|
|
716
729
|
}>>;
|
|
717
730
|
}, "strip", z.ZodTypeAny, {
|
|
718
731
|
sectors?: {
|
|
@@ -812,11 +825,13 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
812
825
|
epc?: number;
|
|
813
826
|
developer?: number;
|
|
814
827
|
intels?: number;
|
|
828
|
+
signals?: number;
|
|
815
829
|
};
|
|
816
830
|
localCounty?: string;
|
|
817
831
|
localState?: string;
|
|
818
832
|
plannedOperationalDate?: string;
|
|
819
833
|
projectName?: string;
|
|
834
|
+
totalMw?: number;
|
|
820
835
|
cost?: {
|
|
821
836
|
value?: number;
|
|
822
837
|
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
@@ -881,15 +896,16 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
881
896
|
}[];
|
|
882
897
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
883
898
|
value?: number;
|
|
884
|
-
unit?:
|
|
899
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
900
|
+
description?: string;
|
|
885
901
|
storage?: {
|
|
886
902
|
value?: number;
|
|
887
|
-
unit?:
|
|
903
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
888
904
|
};
|
|
889
905
|
} | {
|
|
890
906
|
identifier?: "operatingCapacity";
|
|
891
907
|
value?: number;
|
|
892
|
-
unit?:
|
|
908
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
893
909
|
})[];
|
|
894
910
|
region?: RegionType;
|
|
895
911
|
showProject?: boolean;
|
|
@@ -1002,11 +1018,13 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
1002
1018
|
epc?: number;
|
|
1003
1019
|
developer?: number;
|
|
1004
1020
|
intels?: number;
|
|
1021
|
+
signals?: number;
|
|
1005
1022
|
};
|
|
1006
1023
|
localCounty?: string;
|
|
1007
1024
|
localState?: string;
|
|
1008
1025
|
plannedOperationalDate?: string;
|
|
1009
1026
|
projectName?: string;
|
|
1027
|
+
totalMw?: number;
|
|
1010
1028
|
cost?: {
|
|
1011
1029
|
value?: number;
|
|
1012
1030
|
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
@@ -1071,15 +1089,16 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
1071
1089
|
}[];
|
|
1072
1090
|
identifier?: "onsiteGeneration" | "backupGeneration";
|
|
1073
1091
|
value?: number;
|
|
1074
|
-
unit?:
|
|
1092
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
1093
|
+
description?: string;
|
|
1075
1094
|
storage?: {
|
|
1076
1095
|
value?: number;
|
|
1077
|
-
unit?:
|
|
1096
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
1078
1097
|
};
|
|
1079
1098
|
} | {
|
|
1080
1099
|
identifier?: "operatingCapacity";
|
|
1081
1100
|
value?: number;
|
|
1082
|
-
unit?:
|
|
1101
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
1083
1102
|
})[];
|
|
1084
1103
|
region?: RegionType;
|
|
1085
1104
|
showProject?: boolean;
|
|
@@ -1095,6 +1114,5 @@ export declare const DataCenterSchema: z.ZodObject<{
|
|
|
1095
1114
|
};
|
|
1096
1115
|
substation?: string;
|
|
1097
1116
|
}>;
|
|
1098
|
-
export type PowerWithStorage = z.infer<typeof PowerWithStorageSchema>;
|
|
1099
1117
|
export type DataCenter = z.infer<typeof DataCenterSchema>;
|
|
1100
1118
|
export {};
|
|
@@ -10,17 +10,18 @@ var RegionType;
|
|
|
10
10
|
})(RegionType || (exports.RegionType = RegionType = {}));
|
|
11
11
|
const BasePowerFieldSchema = zod_1.z.object({
|
|
12
12
|
value: zod_1.z.number(),
|
|
13
|
-
unit: entity_1.
|
|
13
|
+
unit: entity_1.UnitEnum,
|
|
14
14
|
});
|
|
15
15
|
const PowerWithStorageSchema = BasePowerFieldSchema.extend({
|
|
16
16
|
identifier: zod_1.z.enum(['onsiteGeneration', 'backupGeneration']),
|
|
17
17
|
storage: BasePowerFieldSchema.optional(),
|
|
18
18
|
sectors: entity_1.EntityItemArraySchema.optional(),
|
|
19
|
+
description: entity_1.OptionalStringSchema,
|
|
19
20
|
});
|
|
20
21
|
const OperatingCapacitySchema = zod_1.z.object({
|
|
21
22
|
identifier: zod_1.z.enum(['operatingCapacity']),
|
|
22
23
|
value: zod_1.z.number(),
|
|
23
|
-
unit: entity_1.
|
|
24
|
+
unit: entity_1.UnitEnum,
|
|
24
25
|
});
|
|
25
26
|
const PowerFieldSchema = zod_1.z.discriminatedUnion('identifier', [
|
|
26
27
|
PowerWithStorageSchema,
|
|
@@ -86,6 +87,7 @@ exports.DataCenterSchema = zod_1.z.object({
|
|
|
86
87
|
sizeFields: SizeFieldsSchema.optional(),
|
|
87
88
|
status: entity_1.EntityItemArraySchema.min(1),
|
|
88
89
|
substation: entity_1.OptionalStringSchema,
|
|
90
|
+
totalMw: zod_1.z.number().optional(),
|
|
89
91
|
totals: entity_1.TotalsSchema,
|
|
90
92
|
});
|
|
91
93
|
//# 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,
|
|
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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"}
|
|
@@ -873,6 +873,7 @@ export declare const TotalsSchema: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
|
873
873
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
874
874
|
developer: z.ZodOptional<z.ZodNumber>;
|
|
875
875
|
intels: z.ZodOptional<z.ZodNumber>;
|
|
876
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
876
877
|
}, "strip", z.ZodTypeAny, {
|
|
877
878
|
keyPeople?: number;
|
|
878
879
|
offtaker?: number;
|
|
@@ -885,6 +886,7 @@ export declare const TotalsSchema: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
|
885
886
|
epc?: number;
|
|
886
887
|
developer?: number;
|
|
887
888
|
intels?: number;
|
|
889
|
+
signals?: number;
|
|
888
890
|
}, {
|
|
889
891
|
keyPeople?: number;
|
|
890
892
|
offtaker?: number;
|
|
@@ -897,6 +899,7 @@ export declare const TotalsSchema: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
|
897
899
|
epc?: number;
|
|
898
900
|
developer?: number;
|
|
899
901
|
intels?: number;
|
|
902
|
+
signals?: number;
|
|
900
903
|
}>, {
|
|
901
904
|
keyPeople?: number;
|
|
902
905
|
offtaker?: number;
|
|
@@ -909,6 +912,7 @@ export declare const TotalsSchema: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
|
909
912
|
epc?: number;
|
|
910
913
|
developer?: number;
|
|
911
914
|
intels?: number;
|
|
915
|
+
signals?: number;
|
|
912
916
|
}, {
|
|
913
917
|
keyPeople?: number;
|
|
914
918
|
offtaker?: number;
|
|
@@ -921,8 +925,20 @@ export declare const TotalsSchema: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
|
921
925
|
epc?: number;
|
|
922
926
|
developer?: number;
|
|
923
927
|
intels?: number;
|
|
928
|
+
signals?: number;
|
|
924
929
|
}>>;
|
|
925
930
|
export declare const FingerprintSchema: z.ZodString;
|
|
931
|
+
export declare const UnitEnum: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
932
|
+
export declare const NumberWithUnitSchema: z.ZodObject<{
|
|
933
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
934
|
+
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
935
|
+
}, "strip", z.ZodTypeAny, {
|
|
936
|
+
value?: number;
|
|
937
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
938
|
+
}, {
|
|
939
|
+
value?: number;
|
|
940
|
+
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
941
|
+
}>;
|
|
926
942
|
export declare const OptionalNumberWithUnitSchema: z.ZodOptional<z.ZodObject<{
|
|
927
943
|
value: z.ZodOptional<z.ZodNumber>;
|
|
928
944
|
unit: z.ZodEnum<["kW", "MW", "GW", "kWh", "MWh", "GWh", "acre", "hectare", "square_foot", "square_metre", "usd", "eur", "gbp"]>;
|
|
@@ -1016,3 +1032,8 @@ export declare const OnsiteGenerationSchema: z.ZodObject<{
|
|
|
1016
1032
|
unit?: "kW" | "MW" | "GW" | "kWh" | "MWh" | "GWh" | "acre" | "hectare" | "square_foot" | "square_metre" | "usd" | "eur" | "gbp";
|
|
1017
1033
|
};
|
|
1018
1034
|
}>;
|
|
1035
|
+
export declare enum SectorSources {
|
|
1036
|
+
onsiteGeneration = "Onsite Generation",
|
|
1037
|
+
backupGeneration = "Backup Generation",
|
|
1038
|
+
powerCapacity = "Power Capacity"
|
|
1039
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OnsiteGenerationSchema = exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalStringArraySchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemSourceArraySchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.EntityItemSourceSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
|
|
3
|
+
exports.SectorSources = exports.OnsiteGenerationSchema = exports.OptionalNumberWithUnitAndSectorSchema = exports.OptionalNumberWithUnitSchema = exports.NumberWithUnitSchema = exports.UnitEnum = exports.FingerprintSchema = exports.TotalsSchema = exports.GeoSchema = exports.geoPoint = exports.defaultValue = exports.DocumentRecordSchema = exports.OptionalDocumentLinkSchema = exports.DocumentLinkSchema = exports.OptionalS3DocumentSchema = exports.DocumentS3RecordSchema = exports.OptionalCoordinateSchema = exports.CoordinateSchema = exports.OptionalAddressSchema = exports.AddressSchema = exports.LinkedPeopleOptionalSchema = exports.LinkedPeopleSchema = exports.QueueJoinOptionalSchema = exports.QueueJoinSchema = exports.ISODateTimeOptionalSchema = exports.ISODateTimeSchema = exports.FlexibleDateRegexOptionalSchema = exports.FlexibleDateRegexSchema = exports.YYYYMMDDRegexOptionalSchema = exports.YYYYMMDDRegexSchema = exports.YYYYMMDDRegex = exports.LocationItemArraySchema = exports.LocationItemSchema = exports.GeometrySchema = exports.ComponentsSchema = exports.OptionalStringArraySchema = exports.OptionalNumberSchema = exports.OptionalStringSchema = exports.EntityItemArrayOptionalSchema = exports.EntityItemSourceArraySchema = exports.EntityItemArraySchema = exports.OrganizationSchema = exports.EntityItemSourceSchema = exports.OrganizationItemSchema = exports.IdentifierOnlyEntityItemSchema = exports.EntityItemSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
exports.EntityItemSchema = zod_1.z.object({
|
|
6
6
|
identifier: zod_1.z.string().min(1),
|
|
@@ -172,6 +172,7 @@ exports.TotalsSchema = zod_1.z
|
|
|
172
172
|
epc: zod_1.z.number().optional(),
|
|
173
173
|
developer: zod_1.z.number().optional(),
|
|
174
174
|
intels: zod_1.z.number().optional(),
|
|
175
|
+
signals: zod_1.z.number().optional(),
|
|
175
176
|
})
|
|
176
177
|
.refine((obj) => Object.keys(obj).length > 0, {
|
|
177
178
|
message: 'At least one property must be present if totals object exists',
|
|
@@ -182,7 +183,7 @@ exports.FingerprintSchema = zod_1.z
|
|
|
182
183
|
.string()
|
|
183
184
|
.regex(base64Regex, 'Invalid Base64 string')
|
|
184
185
|
.min(1, 'Fingerprint cannot be empty');
|
|
185
|
-
|
|
186
|
+
exports.UnitEnum = zod_1.z.enum([
|
|
186
187
|
'kW',
|
|
187
188
|
'MW',
|
|
188
189
|
'GW',
|
|
@@ -197,14 +198,14 @@ const UnitEnum = zod_1.z.enum([
|
|
|
197
198
|
'eur',
|
|
198
199
|
'gbp',
|
|
199
200
|
]);
|
|
200
|
-
|
|
201
|
+
exports.NumberWithUnitSchema = zod_1.z.object({
|
|
201
202
|
value: zod_1.z.number().optional(),
|
|
202
|
-
unit: UnitEnum,
|
|
203
|
+
unit: exports.UnitEnum,
|
|
203
204
|
});
|
|
204
|
-
exports.OptionalNumberWithUnitSchema = NumberWithUnitSchema.optional();
|
|
205
|
+
exports.OptionalNumberWithUnitSchema = exports.NumberWithUnitSchema.optional();
|
|
205
206
|
const NumberWithUnitAndSectorSchema = zod_1.z.object({
|
|
206
207
|
value: zod_1.z.number().optional(),
|
|
207
|
-
unit: UnitEnum,
|
|
208
|
+
unit: exports.UnitEnum,
|
|
208
209
|
sectors: zod_1.z
|
|
209
210
|
.array(zod_1.z.object({ identifier: zod_1.z.string(), id: zod_1.z.string() }).optional())
|
|
210
211
|
.optional(),
|
|
@@ -215,4 +216,10 @@ exports.OnsiteGenerationSchema = zod_1.z.object({
|
|
|
215
216
|
description: exports.OptionalStringSchema,
|
|
216
217
|
powerCapacity: exports.OptionalNumberWithUnitAndSectorSchema,
|
|
217
218
|
});
|
|
219
|
+
var SectorSources;
|
|
220
|
+
(function (SectorSources) {
|
|
221
|
+
SectorSources["onsiteGeneration"] = "Onsite Generation";
|
|
222
|
+
SectorSources["backupGeneration"] = "Backup Generation";
|
|
223
|
+
SectorSources["powerCapacity"] = "Power Capacity";
|
|
224
|
+
})(SectorSources || (exports.SectorSources = SectorSources = {}));
|
|
218
225
|
//# sourceMappingURL=entity.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"entity.js","sourceRoot":"","sources":["../../../../../../../packages/client-frontends-shared-types/src/lib/dataGrid/api/entity.ts"],"names":[],"mappings":";;;AAAA,6BAAiC;AAEpB,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC7B,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACtB,CAAC,CAAA;AAEW,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CAC9B,CAAC,CAAA;AAEW,QAAA,sBAAsB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IAC5D,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACvB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC3B,CAAC,CAAA;AAEW,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,iCACzC,wBAAgB,CAAC,KAAK,KACzB,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,IAC7B,CAAA;AAIW,QAAA,kBAAkB,GAAG,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAC,QAAQ,EAAE,CAAA;AAG/D,QAAA,qBAAqB,GAAG,OAAC,CAAC,KAAK,CAAC,wBAAgB,CAAC,CAAA;AAGjD,QAAA,2BAA2B,GAAG,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAA;AAK7D,QAAA,6BAA6B,GAAG,6BAAqB,CAAC,QAAQ,EAAE,CAAA;AAKhE,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAC5C,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAA;AAC5C,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAA;AAEzD,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC;IACvC,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,oBAAoB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3C,YAAY,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACtC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEW,QAAA,cAAc,GAAG,OAAC,CAAC,MAAM,CAAC;IACrC,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AAEW,QAAA,kBAAkB,GAAG,wBAAgB,CAAC,MAAM,CAAC;IACxD,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,UAAU,EAAE,wBAAgB,CAAC,QAAQ,EAAE;IACvC,QAAQ,EAAE,sBAAc,CAAC,QAAQ,EAAE;IACnC,QAAQ,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACjC,CAAC,CAAA;AAEW,QAAA,uBAAuB,GAAG,OAAC,CAAC,KAAK,CAAC,0BAAkB,CAAC,CAAA;AAErD,QAAA,aAAa,GAAG,mDAAmD,CAAA;AACnE,QAAA,mBAAmB,GAAG,OAAC;KACjC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,qBAAa,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAC5C,OAAO,EAAE,qBAAqB;CAC/B,CAAC,CAAA;AACS,QAAA,2BAA2B,GACtC,2BAAmB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE3C,MAAM,iBAAiB,GACrB,uDAAuD,CAAA;AAE5C,QAAA,uBAAuB,GAAG,OAAC;KACrC,MAAM,EAAE;KACR,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,iBAAiB,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;IAChD,OAAO,EAAE,iEAAiE;CAC3E,CAAC,CAAA;AAES,QAAA,+BAA+B,GAC1C,+BAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE,CAAA;AAE/C,MAAM,yBAAyB,GAAG,OAAC;KAChC,MAAM,EAAE;KACR,KAAK,CAAC,+CAA+C,CAAC,CAAA;AAE5C,QAAA,iBAAiB,GAAG,OAAC,CAAC,KAAK,CAAC;IACvC,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC,CAAA;AAEW,QAAA,yBAAyB,GAAG,OAAC;KACvC,KAAK,CAAC;IACL,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrB,yBAAyB;IACzB,+BAAuB;CACxB,CAAC;KACD,QAAQ,EAAE,CAAA;AAEA,QAAA,eAAe,GAAG,OAAC;KAC7B,MAAM,CAAC;IACN,QAAQ,EAAE,4BAAoB;IAC9B,aAAa,EAAE,4BAAoB;IACnC,YAAY,EAAE,4BAAoB;IAClC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE;CACvB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,uBAAuB,GAAG,uBAAe,CAAC,QAAQ,EAAE,CAAA;AAKpD,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,EAAE,EAAE,4BAAoB;IACxB,UAAU,EAAE,4BAAoB;IAChC,WAAW,EAAE,IAAA,cAAQ,EAAC,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC;IACvC,IAAI,EAAE,4BAAoB;IAC1B,QAAQ,EAAE,4BAAoB;IAC9B,KAAK,EAAE,4BAAoB;IAC3B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;CAC7B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,4BAAoB;IAC1B,IAAI,EAAE,4BAAoB;IAC1B,KAAK,EAAE,4BAAoB;IAC3B,MAAM,EAAE,4BAAoB;IAC5B,OAAO,EAAE,4BAAoB;IAC7B,GAAG,EAAE,4BAAoB;IACzB,OAAO,EAAE,4BAAoB;IAC7B,QAAQ,EAAE,4BAAoB;IAC9B,SAAS,EAAE,4BAAoB;CAChC,CAAC,CAAA;AAEW,QAAA,qBAAqB,GAAG,qBAAa,CAAC,QAAQ,EAAE,CAAA;AAGhD,QAAA,gBAAgB,GAAG,OAAC,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;AACjE,QAAA,wBAAwB,GAAG,wBAAgB,CAAC,QAAQ,EAAE,CAAA;AAEtD,QAAA,sBAAsB,GAAG,OAAC;KACpC,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,OAAO,EAAE,2BAAmB;IAC5B,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACnC,GAAG,EAAE,4BAAoB;IACzB,QAAQ,EAAE,4BAAoB;CAC/B,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,wBAAwB,GAAG,8BAAsB,CAAC,QAAQ,EAAE,CAAA;AAG5D,QAAA,kBAAkB,GAAG,OAAC;KAChC,MAAM,CAAC;IACN,IAAI,EAAE,4BAAoB;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IACrB,OAAO,EAAE,4BAAoB;IAC7B,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,YAAY,EAAE,2BAAmB;IACjC,MAAM,EAAE,4BAAoB;IAC5B,EAAE,EAAE,4BAAoB;CACzB,CAAC;KACD,KAAK,EAAE,CAAA;AAEG,QAAA,0BAA0B,GAAG,0BAAkB,CAAC,QAAQ,EAAE,CAAA;AAK1D,QAAA,oBAAoB,GAAG,OAAC;KAClC,KAAK,CAAC,CAAC,8BAAsB,EAAE,0BAAkB,CAAC,CAAC;KACnD,QAAQ,EAAE,CAAA;AAMA,QAAA,YAAY,GAAG,OAAC,CAAC,MAAM,EAAE,CAAA;AACzB,QAAA,QAAQ,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAA;AACW,QAAA,SAAS,GAAG,OAAC;KACvB,MAAM,CAAC;IACN,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE;IACxB,OAAO,EAAE,gBAAQ;IACjB,OAAO,EAAE,gBAAQ;IACjB,MAAM,EAAE,gBAAQ;IAChB,QAAQ,EAAE,gBAAQ;CACnB,CAAC;KACD,OAAO,EAAE,CAAA;AAIC,QAAA,YAAY,GAAG,OAAC;KAC1B,MAAM,CAAC;IACN,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1B,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC;KACD,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;IAC5C,OAAO,EAAE,+DAA+D;CACzE,CAAC;KACD,QAAQ,EAAE,CAAA;AAEb,MAAM,WAAW,GAAG,wBAAwB,CAAA;AAE/B,QAAA,iBAAiB,GAAG,OAAC;KAC/B,MAAM,EAAE;KACR,KAAK,CAAC,WAAW,EAAE,uBAAuB,CAAC;KAC3C,GAAG,CAAC,CAAC,EAAE,6BAA6B,CAAC,CAAA;AAE3B,QAAA,QAAQ,GAAG,OAAC,CAAC,IAAI,CAAC;IAC7B,IAAI;IACJ,IAAI;IACJ,IAAI;IACJ,KAAK;IACL,KAAK;IACL,KAAK;IACL,MAAM;IACN,SAAS;IACT,aAAa;IACb,cAAc;IACd,KAAK;IACL,KAAK;IACL,KAAK;CACN,CAAC,CAAA;AAEW,QAAA,oBAAoB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,gBAAQ;CACf,CAAC,CAAA;AAEW,QAAA,4BAA4B,GAAG,4BAAoB,CAAC,QAAQ,EAAE,CAAA;AAM3E,MAAM,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,IAAI,EAAE,gBAAQ;IACd,OAAO,EAAE,OAAC;SACP,KAAK,CAAC,OAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC;SACtE,QAAQ,EAAE;CACd,CAAC,CAAA;AAEW,QAAA,qCAAqC,GAChD,6BAA6B,CAAC,QAAQ,EAAE,CAAA;AAE7B,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,WAAW,EAAE,4BAAoB;IACjC,aAAa,EAAE,6CAAqC;CACrD,CAAC,CAAA;AAEF,IAAY,aAIX;AAJD,WAAY,aAAa;IACvB,uDAAsC,CAAA;IACtC,uDAAsC,CAAA;IACtC,iDAAgC,CAAA;AAClC,CAAC,EAJW,aAAa,6BAAb,aAAa,QAIxB"}
|
|
@@ -1108,6 +1108,14 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1108
1108
|
role?: string;
|
|
1109
1109
|
ref?: string;
|
|
1110
1110
|
}[];
|
|
1111
|
+
signals?: {
|
|
1112
|
+
type?: string;
|
|
1113
|
+
subType?: string;
|
|
1114
|
+
id?: string;
|
|
1115
|
+
filingDate?: string;
|
|
1116
|
+
headline?: string;
|
|
1117
|
+
publishedDate?: string;
|
|
1118
|
+
}[];
|
|
1111
1119
|
$organizations?: string;
|
|
1112
1120
|
allSectors?: string;
|
|
1113
1121
|
reportDate?: string;
|
|
@@ -1210,14 +1218,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1210
1218
|
meta?: string;
|
|
1211
1219
|
poiGroup?: string;
|
|
1212
1220
|
};
|
|
1213
|
-
signals?: {
|
|
1214
|
-
type?: string;
|
|
1215
|
-
subType?: string;
|
|
1216
|
-
id?: string;
|
|
1217
|
-
filingDate?: string;
|
|
1218
|
-
headline?: string;
|
|
1219
|
-
publishedDate?: string;
|
|
1220
|
-
}[];
|
|
1221
1221
|
}, {
|
|
1222
1222
|
sectors?: {
|
|
1223
1223
|
id?: string;
|
|
@@ -1255,6 +1255,14 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1255
1255
|
role?: string;
|
|
1256
1256
|
ref?: string;
|
|
1257
1257
|
}[];
|
|
1258
|
+
signals?: {
|
|
1259
|
+
type?: string;
|
|
1260
|
+
subType?: string;
|
|
1261
|
+
id?: string;
|
|
1262
|
+
filingDate?: string;
|
|
1263
|
+
headline?: string;
|
|
1264
|
+
publishedDate?: string;
|
|
1265
|
+
}[];
|
|
1258
1266
|
$organizations?: string;
|
|
1259
1267
|
allSectors?: string;
|
|
1260
1268
|
reportDate?: string;
|
|
@@ -1357,14 +1365,6 @@ declare const usQueueDetailsSchema: z.ZodObject<{
|
|
|
1357
1365
|
meta?: string;
|
|
1358
1366
|
poiGroup?: string;
|
|
1359
1367
|
};
|
|
1360
|
-
signals?: {
|
|
1361
|
-
type?: string;
|
|
1362
|
-
subType?: string;
|
|
1363
|
-
id?: string;
|
|
1364
|
-
filingDate?: string;
|
|
1365
|
-
headline?: string;
|
|
1366
|
-
publishedDate?: string;
|
|
1367
|
-
}[];
|
|
1368
1368
|
}>;
|
|
1369
1369
|
declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
1370
1370
|
id: z.ZodString;
|
|
@@ -1949,6 +1949,14 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1949
1949
|
role?: string;
|
|
1950
1950
|
ref?: string;
|
|
1951
1951
|
}[];
|
|
1952
|
+
signals?: {
|
|
1953
|
+
type?: string;
|
|
1954
|
+
subType?: string;
|
|
1955
|
+
id?: string;
|
|
1956
|
+
filingDate?: string;
|
|
1957
|
+
headline?: string;
|
|
1958
|
+
publishedDate?: string;
|
|
1959
|
+
}[];
|
|
1952
1960
|
$organizations?: string;
|
|
1953
1961
|
allSectors?: string;
|
|
1954
1962
|
reportDate?: string;
|
|
@@ -2051,14 +2059,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2051
2059
|
meta?: string;
|
|
2052
2060
|
poiGroup?: string;
|
|
2053
2061
|
};
|
|
2054
|
-
signals?: {
|
|
2055
|
-
type?: string;
|
|
2056
|
-
subType?: string;
|
|
2057
|
-
id?: string;
|
|
2058
|
-
filingDate?: string;
|
|
2059
|
-
headline?: string;
|
|
2060
|
-
publishedDate?: string;
|
|
2061
|
-
}[];
|
|
2062
2062
|
}, {
|
|
2063
2063
|
sectors?: {
|
|
2064
2064
|
id?: string;
|
|
@@ -2096,6 +2096,14 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2096
2096
|
role?: string;
|
|
2097
2097
|
ref?: string;
|
|
2098
2098
|
}[];
|
|
2099
|
+
signals?: {
|
|
2100
|
+
type?: string;
|
|
2101
|
+
subType?: string;
|
|
2102
|
+
id?: string;
|
|
2103
|
+
filingDate?: string;
|
|
2104
|
+
headline?: string;
|
|
2105
|
+
publishedDate?: string;
|
|
2106
|
+
}[];
|
|
2099
2107
|
$organizations?: string;
|
|
2100
2108
|
allSectors?: string;
|
|
2101
2109
|
reportDate?: string;
|
|
@@ -2198,14 +2206,6 @@ declare const queueDetailsSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2198
2206
|
meta?: string;
|
|
2199
2207
|
poiGroup?: string;
|
|
2200
2208
|
};
|
|
2201
|
-
signals?: {
|
|
2202
|
-
type?: string;
|
|
2203
|
-
subType?: string;
|
|
2204
|
-
id?: string;
|
|
2205
|
-
filingDate?: string;
|
|
2206
|
-
headline?: string;
|
|
2207
|
-
publishedDate?: string;
|
|
2208
|
-
}[];
|
|
2209
2209
|
}>]>;
|
|
2210
2210
|
export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.ZodObject<{
|
|
2211
2211
|
id: z.ZodString;
|
|
@@ -2790,6 +2790,14 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2790
2790
|
role?: string;
|
|
2791
2791
|
ref?: string;
|
|
2792
2792
|
}[];
|
|
2793
|
+
signals?: {
|
|
2794
|
+
type?: string;
|
|
2795
|
+
subType?: string;
|
|
2796
|
+
id?: string;
|
|
2797
|
+
filingDate?: string;
|
|
2798
|
+
headline?: string;
|
|
2799
|
+
publishedDate?: string;
|
|
2800
|
+
}[];
|
|
2793
2801
|
$organizations?: string;
|
|
2794
2802
|
allSectors?: string;
|
|
2795
2803
|
reportDate?: string;
|
|
@@ -2892,14 +2900,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2892
2900
|
meta?: string;
|
|
2893
2901
|
poiGroup?: string;
|
|
2894
2902
|
};
|
|
2895
|
-
signals?: {
|
|
2896
|
-
type?: string;
|
|
2897
|
-
subType?: string;
|
|
2898
|
-
id?: string;
|
|
2899
|
-
filingDate?: string;
|
|
2900
|
-
headline?: string;
|
|
2901
|
-
publishedDate?: string;
|
|
2902
|
-
}[];
|
|
2903
2903
|
}, {
|
|
2904
2904
|
sectors?: {
|
|
2905
2905
|
id?: string;
|
|
@@ -2937,6 +2937,14 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
2937
2937
|
role?: string;
|
|
2938
2938
|
ref?: string;
|
|
2939
2939
|
}[];
|
|
2940
|
+
signals?: {
|
|
2941
|
+
type?: string;
|
|
2942
|
+
subType?: string;
|
|
2943
|
+
id?: string;
|
|
2944
|
+
filingDate?: string;
|
|
2945
|
+
headline?: string;
|
|
2946
|
+
publishedDate?: string;
|
|
2947
|
+
}[];
|
|
2940
2948
|
$organizations?: string;
|
|
2941
2949
|
allSectors?: string;
|
|
2942
2950
|
reportDate?: string;
|
|
@@ -3039,14 +3047,6 @@ export declare const queueDetailsUnionSchema: z.ZodDiscriminatedUnion<"schema",
|
|
|
3039
3047
|
meta?: string;
|
|
3040
3048
|
poiGroup?: string;
|
|
3041
3049
|
};
|
|
3042
|
-
signals?: {
|
|
3043
|
-
type?: string;
|
|
3044
|
-
subType?: string;
|
|
3045
|
-
id?: string;
|
|
3046
|
-
filingDate?: string;
|
|
3047
|
-
headline?: string;
|
|
3048
|
-
publishedDate?: string;
|
|
3049
|
-
}[];
|
|
3050
3050
|
}>]>;
|
|
3051
3051
|
export { baseQueueSchema, euQueueDetailsSchema, usQueueDetailsSchema, euQueueListSchema, usQueueListSchema, };
|
|
3052
3052
|
export type QueueDetailsType = z.infer<typeof queueDetailsSchema>;
|
|
@@ -6018,6 +6018,14 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6018
6018
|
role?: string;
|
|
6019
6019
|
ref?: string;
|
|
6020
6020
|
}[];
|
|
6021
|
+
signals?: {
|
|
6022
|
+
type?: string;
|
|
6023
|
+
subType?: string;
|
|
6024
|
+
id?: string;
|
|
6025
|
+
filingDate?: string;
|
|
6026
|
+
headline?: string;
|
|
6027
|
+
publishedDate?: string;
|
|
6028
|
+
}[];
|
|
6021
6029
|
$organizations?: string;
|
|
6022
6030
|
allSectors?: string;
|
|
6023
6031
|
audiences?: {
|
|
@@ -6144,14 +6152,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6144
6152
|
meta?: string;
|
|
6145
6153
|
poiGroup?: string;
|
|
6146
6154
|
};
|
|
6147
|
-
signals?: {
|
|
6148
|
-
type?: string;
|
|
6149
|
-
subType?: string;
|
|
6150
|
-
id?: string;
|
|
6151
|
-
filingDate?: string;
|
|
6152
|
-
headline?: string;
|
|
6153
|
-
publishedDate?: string;
|
|
6154
|
-
}[];
|
|
6155
6155
|
queueDataSetType?: string;
|
|
6156
6156
|
regions?: {
|
|
6157
6157
|
id?: string;
|
|
@@ -6198,6 +6198,14 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6198
6198
|
role?: string;
|
|
6199
6199
|
ref?: string;
|
|
6200
6200
|
}[];
|
|
6201
|
+
signals?: {
|
|
6202
|
+
type?: string;
|
|
6203
|
+
subType?: string;
|
|
6204
|
+
id?: string;
|
|
6205
|
+
filingDate?: string;
|
|
6206
|
+
headline?: string;
|
|
6207
|
+
publishedDate?: string;
|
|
6208
|
+
}[];
|
|
6201
6209
|
$organizations?: string;
|
|
6202
6210
|
allSectors?: string;
|
|
6203
6211
|
audiences?: {
|
|
@@ -6324,14 +6332,6 @@ export declare const usQueueAPISchema: z.ZodObject<{
|
|
|
6324
6332
|
meta?: string;
|
|
6325
6333
|
poiGroup?: string;
|
|
6326
6334
|
};
|
|
6327
|
-
signals?: {
|
|
6328
|
-
type?: string;
|
|
6329
|
-
subType?: string;
|
|
6330
|
-
id?: string;
|
|
6331
|
-
filingDate?: string;
|
|
6332
|
-
headline?: string;
|
|
6333
|
-
publishedDate?: string;
|
|
6334
|
-
}[];
|
|
6335
6335
|
queueDataSetType?: string;
|
|
6336
6336
|
regions?: {
|
|
6337
6337
|
id?: string;
|
|
@@ -7219,6 +7219,14 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7219
7219
|
role?: string;
|
|
7220
7220
|
ref?: string;
|
|
7221
7221
|
}[];
|
|
7222
|
+
signals?: {
|
|
7223
|
+
type?: string;
|
|
7224
|
+
subType?: string;
|
|
7225
|
+
id?: string;
|
|
7226
|
+
filingDate?: string;
|
|
7227
|
+
headline?: string;
|
|
7228
|
+
publishedDate?: string;
|
|
7229
|
+
}[];
|
|
7222
7230
|
$organizations?: string;
|
|
7223
7231
|
allSectors?: string;
|
|
7224
7232
|
audiences?: {
|
|
@@ -7345,14 +7353,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7345
7353
|
meta?: string;
|
|
7346
7354
|
poiGroup?: string;
|
|
7347
7355
|
};
|
|
7348
|
-
signals?: {
|
|
7349
|
-
type?: string;
|
|
7350
|
-
subType?: string;
|
|
7351
|
-
id?: string;
|
|
7352
|
-
filingDate?: string;
|
|
7353
|
-
headline?: string;
|
|
7354
|
-
publishedDate?: string;
|
|
7355
|
-
}[];
|
|
7356
7356
|
queueDataSetType?: string;
|
|
7357
7357
|
regions?: {
|
|
7358
7358
|
id?: string;
|
|
@@ -7399,6 +7399,14 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7399
7399
|
role?: string;
|
|
7400
7400
|
ref?: string;
|
|
7401
7401
|
}[];
|
|
7402
|
+
signals?: {
|
|
7403
|
+
type?: string;
|
|
7404
|
+
subType?: string;
|
|
7405
|
+
id?: string;
|
|
7406
|
+
filingDate?: string;
|
|
7407
|
+
headline?: string;
|
|
7408
|
+
publishedDate?: string;
|
|
7409
|
+
}[];
|
|
7402
7410
|
$organizations?: string;
|
|
7403
7411
|
allSectors?: string;
|
|
7404
7412
|
audiences?: {
|
|
@@ -7525,14 +7533,6 @@ export declare const queueAPISchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7525
7533
|
meta?: string;
|
|
7526
7534
|
poiGroup?: string;
|
|
7527
7535
|
};
|
|
7528
|
-
signals?: {
|
|
7529
|
-
type?: string;
|
|
7530
|
-
subType?: string;
|
|
7531
|
-
id?: string;
|
|
7532
|
-
filingDate?: string;
|
|
7533
|
-
headline?: string;
|
|
7534
|
-
publishedDate?: string;
|
|
7535
|
-
}[];
|
|
7536
7536
|
queueDataSetType?: string;
|
|
7537
7537
|
regions?: {
|
|
7538
7538
|
id?: string;
|
|
@@ -8110,6 +8110,14 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8110
8110
|
role?: string;
|
|
8111
8111
|
ref?: string;
|
|
8112
8112
|
}[];
|
|
8113
|
+
signals?: {
|
|
8114
|
+
type?: string;
|
|
8115
|
+
subType?: string;
|
|
8116
|
+
id?: string;
|
|
8117
|
+
filingDate?: string;
|
|
8118
|
+
headline?: string;
|
|
8119
|
+
publishedDate?: string;
|
|
8120
|
+
}[];
|
|
8113
8121
|
$organizations?: string;
|
|
8114
8122
|
allSectors?: string;
|
|
8115
8123
|
audiences?: {
|
|
@@ -8236,14 +8244,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8236
8244
|
meta?: string;
|
|
8237
8245
|
poiGroup?: string;
|
|
8238
8246
|
};
|
|
8239
|
-
signals?: {
|
|
8240
|
-
type?: string;
|
|
8241
|
-
subType?: string;
|
|
8242
|
-
id?: string;
|
|
8243
|
-
filingDate?: string;
|
|
8244
|
-
headline?: string;
|
|
8245
|
-
publishedDate?: string;
|
|
8246
|
-
}[];
|
|
8247
8247
|
queueDataSetType?: string;
|
|
8248
8248
|
regions?: {
|
|
8249
8249
|
id?: string;
|
|
@@ -8290,6 +8290,14 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8290
8290
|
role?: string;
|
|
8291
8291
|
ref?: string;
|
|
8292
8292
|
}[];
|
|
8293
|
+
signals?: {
|
|
8294
|
+
type?: string;
|
|
8295
|
+
subType?: string;
|
|
8296
|
+
id?: string;
|
|
8297
|
+
filingDate?: string;
|
|
8298
|
+
headline?: string;
|
|
8299
|
+
publishedDate?: string;
|
|
8300
|
+
}[];
|
|
8293
8301
|
$organizations?: string;
|
|
8294
8302
|
allSectors?: string;
|
|
8295
8303
|
audiences?: {
|
|
@@ -8416,14 +8424,6 @@ export declare const queueAPIUnionSchema: z.ZodDiscriminatedUnion<"schema", [z.Z
|
|
|
8416
8424
|
meta?: string;
|
|
8417
8425
|
poiGroup?: string;
|
|
8418
8426
|
};
|
|
8419
|
-
signals?: {
|
|
8420
|
-
type?: string;
|
|
8421
|
-
subType?: string;
|
|
8422
|
-
id?: string;
|
|
8423
|
-
filingDate?: string;
|
|
8424
|
-
headline?: string;
|
|
8425
|
-
publishedDate?: string;
|
|
8426
|
-
}[];
|
|
8427
8427
|
queueDataSetType?: string;
|
|
8428
8428
|
regions?: {
|
|
8429
8429
|
id?: string;
|
|
@@ -496,6 +496,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
496
496
|
epc: z.ZodOptional<z.ZodNumber>;
|
|
497
497
|
developer: z.ZodOptional<z.ZodNumber>;
|
|
498
498
|
intels: z.ZodOptional<z.ZodNumber>;
|
|
499
|
+
signals: z.ZodOptional<z.ZodNumber>;
|
|
499
500
|
}, "strip", z.ZodTypeAny, {
|
|
500
501
|
keyPeople?: number;
|
|
501
502
|
offtaker?: number;
|
|
@@ -508,6 +509,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
508
509
|
epc?: number;
|
|
509
510
|
developer?: number;
|
|
510
511
|
intels?: number;
|
|
512
|
+
signals?: number;
|
|
511
513
|
}, {
|
|
512
514
|
keyPeople?: number;
|
|
513
515
|
offtaker?: number;
|
|
@@ -520,6 +522,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
520
522
|
epc?: number;
|
|
521
523
|
developer?: number;
|
|
522
524
|
intels?: number;
|
|
525
|
+
signals?: number;
|
|
523
526
|
}>, {
|
|
524
527
|
keyPeople?: number;
|
|
525
528
|
offtaker?: number;
|
|
@@ -532,6 +535,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
532
535
|
epc?: number;
|
|
533
536
|
developer?: number;
|
|
534
537
|
intels?: number;
|
|
538
|
+
signals?: number;
|
|
535
539
|
}, {
|
|
536
540
|
keyPeople?: number;
|
|
537
541
|
offtaker?: number;
|
|
@@ -544,6 +548,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
544
548
|
epc?: number;
|
|
545
549
|
developer?: number;
|
|
546
550
|
intels?: number;
|
|
551
|
+
signals?: number;
|
|
547
552
|
}>>;
|
|
548
553
|
type: z.ZodOptional<z.ZodObject<{
|
|
549
554
|
identifier: z.ZodString;
|
|
@@ -729,6 +734,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
729
734
|
epc?: number;
|
|
730
735
|
developer?: number;
|
|
731
736
|
intels?: number;
|
|
737
|
+
signals?: number;
|
|
732
738
|
};
|
|
733
739
|
}, {
|
|
734
740
|
type?: {
|
|
@@ -904,6 +910,7 @@ export declare const SignalSchema: z.ZodObject<{
|
|
|
904
910
|
epc?: number;
|
|
905
911
|
developer?: number;
|
|
906
912
|
intels?: number;
|
|
913
|
+
signals?: number;
|
|
907
914
|
};
|
|
908
915
|
}>;
|
|
909
916
|
export type Signal = z.infer<typeof SignalSchema>;
|