@new-project-media/client-frontends-shared-types 1.3.1 → 1.3.3
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 +716 -0
- package/src/lib/dataGrid/api/queues.js +2 -1
- package/src/lib/dataGrid/api/queues.js.map +1 -1
- package/src/lib/dataGrid/api/signals.d.ts +22 -22
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.3",
|
|
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"}
|
|
@@ -717,3 +717,719 @@ export declare const usQueueSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
717
717
|
}[];
|
|
718
718
|
}>;
|
|
719
719
|
export type USQueueType = z.infer<typeof usQueueSchema>;
|
|
720
|
+
export declare const QueueSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
721
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
722
|
+
allSectors: z.ZodDefault<z.ZodString>;
|
|
723
|
+
applicationId: z.ZodString;
|
|
724
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
725
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
726
|
+
identifier: z.ZodString;
|
|
727
|
+
}, "strip", z.ZodTypeAny, {
|
|
728
|
+
identifier?: string;
|
|
729
|
+
}, {
|
|
730
|
+
identifier?: string;
|
|
731
|
+
}>, "many">;
|
|
732
|
+
id: z.ZodString;
|
|
733
|
+
indexed_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
734
|
+
lastModified: z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>;
|
|
735
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
736
|
+
identifier: z.ZodString;
|
|
737
|
+
id: z.ZodString;
|
|
738
|
+
}, {
|
|
739
|
+
role: z.ZodString;
|
|
740
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
741
|
+
}>, "strip", z.ZodTypeAny, {
|
|
742
|
+
id?: string;
|
|
743
|
+
identifier?: string;
|
|
744
|
+
role?: string;
|
|
745
|
+
ref?: string;
|
|
746
|
+
}, {
|
|
747
|
+
id?: string;
|
|
748
|
+
identifier?: string;
|
|
749
|
+
role?: string;
|
|
750
|
+
ref?: string;
|
|
751
|
+
}>, "many">>;
|
|
752
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
753
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
754
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
755
|
+
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
756
|
+
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
757
|
+
identifier: z.ZodString;
|
|
758
|
+
id: z.ZodString;
|
|
759
|
+
}, "strip", z.ZodTypeAny, {
|
|
760
|
+
id?: string;
|
|
761
|
+
identifier?: string;
|
|
762
|
+
}, {
|
|
763
|
+
id?: string;
|
|
764
|
+
identifier?: string;
|
|
765
|
+
}>, "many">>;
|
|
766
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
767
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
768
|
+
}, {
|
|
769
|
+
'#developers': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
770
|
+
'#keyPeople': z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
771
|
+
applicationType: z.ZodOptional<z.ZodString>;
|
|
772
|
+
city: z.ZodOptional<z.ZodObject<{
|
|
773
|
+
identifier: z.ZodString;
|
|
774
|
+
id: z.ZodString;
|
|
775
|
+
}, "strip", z.ZodTypeAny, {
|
|
776
|
+
id?: string;
|
|
777
|
+
identifier?: string;
|
|
778
|
+
}, {
|
|
779
|
+
id?: string;
|
|
780
|
+
identifier?: string;
|
|
781
|
+
}>>;
|
|
782
|
+
compositeQueue: z.ZodString;
|
|
783
|
+
cost: z.ZodOptional<z.ZodObject<{
|
|
784
|
+
costCompany: z.ZodString;
|
|
785
|
+
costYear: z.ZodNumber;
|
|
786
|
+
networkCostKW: z.ZodNumber;
|
|
787
|
+
poiCostKW: z.ZodNumber;
|
|
788
|
+
totalCostKW: z.ZodNumber;
|
|
789
|
+
}, "strip", z.ZodTypeAny, {
|
|
790
|
+
costCompany?: string;
|
|
791
|
+
costYear?: number;
|
|
792
|
+
networkCostKW?: number;
|
|
793
|
+
poiCostKW?: number;
|
|
794
|
+
totalCostKW?: number;
|
|
795
|
+
}, {
|
|
796
|
+
costCompany?: string;
|
|
797
|
+
costYear?: number;
|
|
798
|
+
networkCostKW?: number;
|
|
799
|
+
poiCostKW?: number;
|
|
800
|
+
totalCostKW?: number;
|
|
801
|
+
}>>;
|
|
802
|
+
country: z.ZodArray<z.ZodObject<{
|
|
803
|
+
identifier: z.ZodString;
|
|
804
|
+
id: z.ZodString;
|
|
805
|
+
}, "strip", z.ZodTypeAny, {
|
|
806
|
+
id?: string;
|
|
807
|
+
identifier?: string;
|
|
808
|
+
}, {
|
|
809
|
+
id?: string;
|
|
810
|
+
identifier?: string;
|
|
811
|
+
}>, "many">;
|
|
812
|
+
county: z.ZodOptional<z.ZodObject<{
|
|
813
|
+
identifier: z.ZodString;
|
|
814
|
+
id: z.ZodString;
|
|
815
|
+
}, "strip", z.ZodTypeAny, {
|
|
816
|
+
id?: string;
|
|
817
|
+
identifier?: string;
|
|
818
|
+
}, {
|
|
819
|
+
id?: string;
|
|
820
|
+
identifier?: string;
|
|
821
|
+
}>>;
|
|
822
|
+
dateAddedToNpm: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>>;
|
|
823
|
+
dateCreated: z.ZodEffects<z.ZodString, string, string>;
|
|
824
|
+
geo: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
825
|
+
default: z.ZodObject<{
|
|
826
|
+
lon: z.ZodNumber;
|
|
827
|
+
lat: z.ZodNumber;
|
|
828
|
+
}, "strip", z.ZodTypeAny, {
|
|
829
|
+
lat?: number;
|
|
830
|
+
lon?: number;
|
|
831
|
+
}, {
|
|
832
|
+
lat?: number;
|
|
833
|
+
lon?: number;
|
|
834
|
+
}>;
|
|
835
|
+
defaultValue: z.ZodString;
|
|
836
|
+
}, "strip", z.ZodTypeAny, {
|
|
837
|
+
default?: {
|
|
838
|
+
lat?: number;
|
|
839
|
+
lon?: number;
|
|
840
|
+
};
|
|
841
|
+
defaultValue?: string;
|
|
842
|
+
}, {
|
|
843
|
+
default?: {
|
|
844
|
+
lat?: number;
|
|
845
|
+
lon?: number;
|
|
846
|
+
};
|
|
847
|
+
defaultValue?: string;
|
|
848
|
+
}>, z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
849
|
+
lon: z.ZodNumber;
|
|
850
|
+
lat: z.ZodNumber;
|
|
851
|
+
}, "strip", z.ZodTypeAny, {
|
|
852
|
+
lat?: number;
|
|
853
|
+
lon?: number;
|
|
854
|
+
}, {
|
|
855
|
+
lat?: number;
|
|
856
|
+
lon?: number;
|
|
857
|
+
}>>>>;
|
|
858
|
+
interconnectingEntity: z.ZodOptional<z.ZodString>;
|
|
859
|
+
isoRtoConnection: z.ZodOptional<z.ZodObject<{
|
|
860
|
+
identifier: z.ZodString;
|
|
861
|
+
id: z.ZodString;
|
|
862
|
+
}, "strip", z.ZodTypeAny, {
|
|
863
|
+
id?: string;
|
|
864
|
+
identifier?: string;
|
|
865
|
+
}, {
|
|
866
|
+
id?: string;
|
|
867
|
+
identifier?: string;
|
|
868
|
+
}>>;
|
|
869
|
+
keyPeople: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
870
|
+
linkedinUrl: z.ZodOptional<z.ZodString>;
|
|
871
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
872
|
+
created: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
873
|
+
roles: z.ZodArray<z.ZodOptional<z.ZodString>, "many">;
|
|
874
|
+
fullName: z.ZodOptional<z.ZodString>;
|
|
875
|
+
id: z.ZodOptional<z.ZodString>;
|
|
876
|
+
source: z.ZodOptional<z.ZodString>;
|
|
877
|
+
email: z.ZodOptional<z.ZodString>;
|
|
878
|
+
}, "strip", z.ZodTypeAny, {
|
|
879
|
+
id?: string;
|
|
880
|
+
linkedinUrl?: string;
|
|
881
|
+
fullName?: string;
|
|
882
|
+
email?: string;
|
|
883
|
+
phone?: string;
|
|
884
|
+
source?: string;
|
|
885
|
+
created?: string;
|
|
886
|
+
roles?: string[];
|
|
887
|
+
}, {
|
|
888
|
+
id?: string;
|
|
889
|
+
linkedinUrl?: string;
|
|
890
|
+
fullName?: string;
|
|
891
|
+
email?: string;
|
|
892
|
+
phone?: string;
|
|
893
|
+
source?: string;
|
|
894
|
+
created?: string;
|
|
895
|
+
roles?: string[];
|
|
896
|
+
}>, "many">>;
|
|
897
|
+
kV: z.ZodOptional<z.ZodNumber>;
|
|
898
|
+
meta: z.ZodObject<{
|
|
899
|
+
created: z.ZodEffects<z.ZodString, string, string>;
|
|
900
|
+
computedList: z.ZodArray<z.ZodString, "many">;
|
|
901
|
+
sk: z.ZodString;
|
|
902
|
+
modified: z.ZodEffects<z.ZodString, string, string>;
|
|
903
|
+
pk: z.ZodString;
|
|
904
|
+
entity: z.ZodString;
|
|
905
|
+
}, "strip", z.ZodTypeAny, {
|
|
906
|
+
created?: string;
|
|
907
|
+
computedList?: string[];
|
|
908
|
+
sk?: string;
|
|
909
|
+
modified?: string;
|
|
910
|
+
pk?: string;
|
|
911
|
+
entity?: string;
|
|
912
|
+
}, {
|
|
913
|
+
created?: string;
|
|
914
|
+
computedList?: string[];
|
|
915
|
+
sk?: string;
|
|
916
|
+
modified?: string;
|
|
917
|
+
pk?: string;
|
|
918
|
+
entity?: string;
|
|
919
|
+
}>;
|
|
920
|
+
nearestTownOrCounty: z.ZodOptional<z.ZodString>;
|
|
921
|
+
newToQ: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
922
|
+
npmOrganizationProfile: z.ZodOptional<z.ZodObject<{
|
|
923
|
+
identifier: z.ZodString;
|
|
924
|
+
id: z.ZodString;
|
|
925
|
+
}, "strip", z.ZodTypeAny, {
|
|
926
|
+
id?: string;
|
|
927
|
+
identifier?: string;
|
|
928
|
+
}, {
|
|
929
|
+
id?: string;
|
|
930
|
+
identifier?: string;
|
|
931
|
+
}>>;
|
|
932
|
+
totalMw: z.ZodNumber;
|
|
933
|
+
poiLocation: z.ZodOptional<z.ZodString>;
|
|
934
|
+
processInfo: z.ZodOptional<z.ZodObject<{
|
|
935
|
+
county: z.ZodOptional<z.ZodString>;
|
|
936
|
+
isoRtoConnection: z.ZodOptional<z.ZodString>;
|
|
937
|
+
newRecord: z.ZodOptional<z.ZodString>;
|
|
938
|
+
newToQ: z.ZodOptional<z.ZodString>;
|
|
939
|
+
npmOrganizationProfile: z.ZodOptional<z.ZodString>;
|
|
940
|
+
sectors: z.ZodOptional<z.ZodString>;
|
|
941
|
+
state: z.ZodOptional<z.ZodString>;
|
|
942
|
+
utility: z.ZodOptional<z.ZodString>;
|
|
943
|
+
}, "strip", z.ZodTypeAny, {
|
|
944
|
+
sectors?: string;
|
|
945
|
+
state?: string;
|
|
946
|
+
county?: string;
|
|
947
|
+
utility?: string;
|
|
948
|
+
isoRtoConnection?: string;
|
|
949
|
+
newRecord?: string;
|
|
950
|
+
newToQ?: string;
|
|
951
|
+
npmOrganizationProfile?: string;
|
|
952
|
+
}, {
|
|
953
|
+
sectors?: string;
|
|
954
|
+
state?: string;
|
|
955
|
+
county?: string;
|
|
956
|
+
utility?: string;
|
|
957
|
+
isoRtoConnection?: string;
|
|
958
|
+
newRecord?: string;
|
|
959
|
+
newToQ?: string;
|
|
960
|
+
npmOrganizationProfile?: string;
|
|
961
|
+
}>>;
|
|
962
|
+
queueDatasetType: z.ZodString;
|
|
963
|
+
queueKey: z.ZodString;
|
|
964
|
+
sourceUpdate: z.ZodString;
|
|
965
|
+
reportCount: z.ZodOptional<z.ZodNumber>;
|
|
966
|
+
state: z.ZodOptional<z.ZodObject<{
|
|
967
|
+
identifier: z.ZodString;
|
|
968
|
+
id: z.ZodString;
|
|
969
|
+
}, "strip", z.ZodTypeAny, {
|
|
970
|
+
id?: string;
|
|
971
|
+
identifier?: string;
|
|
972
|
+
}, {
|
|
973
|
+
id?: string;
|
|
974
|
+
identifier?: string;
|
|
975
|
+
}>>;
|
|
976
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
977
|
+
identifier: z.ZodString;
|
|
978
|
+
}, "strip", z.ZodTypeAny, {
|
|
979
|
+
identifier?: string;
|
|
980
|
+
}, {
|
|
981
|
+
identifier?: string;
|
|
982
|
+
}>, "many">>;
|
|
983
|
+
utility: z.ZodOptional<z.ZodObject<{
|
|
984
|
+
identifier: z.ZodString;
|
|
985
|
+
id: z.ZodString;
|
|
986
|
+
}, "strip", z.ZodTypeAny, {
|
|
987
|
+
id?: string;
|
|
988
|
+
identifier?: string;
|
|
989
|
+
}, {
|
|
990
|
+
id?: string;
|
|
991
|
+
identifier?: string;
|
|
992
|
+
}>>;
|
|
993
|
+
}>, "strip", z.ZodTypeAny, {
|
|
994
|
+
sectors?: {
|
|
995
|
+
id?: string;
|
|
996
|
+
identifier?: string;
|
|
997
|
+
}[];
|
|
998
|
+
state?: {
|
|
999
|
+
id?: string;
|
|
1000
|
+
identifier?: string;
|
|
1001
|
+
};
|
|
1002
|
+
county?: {
|
|
1003
|
+
id?: string;
|
|
1004
|
+
identifier?: string;
|
|
1005
|
+
};
|
|
1006
|
+
keyPeople?: {
|
|
1007
|
+
id?: string;
|
|
1008
|
+
linkedinUrl?: string;
|
|
1009
|
+
fullName?: string;
|
|
1010
|
+
email?: string;
|
|
1011
|
+
phone?: string;
|
|
1012
|
+
source?: string;
|
|
1013
|
+
created?: string;
|
|
1014
|
+
roles?: string[];
|
|
1015
|
+
}[];
|
|
1016
|
+
id?: string;
|
|
1017
|
+
queueKey?: string;
|
|
1018
|
+
applicationId?: string;
|
|
1019
|
+
queueDataset?: string;
|
|
1020
|
+
city?: {
|
|
1021
|
+
id?: string;
|
|
1022
|
+
identifier?: string;
|
|
1023
|
+
};
|
|
1024
|
+
country?: {
|
|
1025
|
+
id?: string;
|
|
1026
|
+
identifier?: string;
|
|
1027
|
+
}[];
|
|
1028
|
+
organizations?: {
|
|
1029
|
+
id?: string;
|
|
1030
|
+
identifier?: string;
|
|
1031
|
+
role?: string;
|
|
1032
|
+
ref?: string;
|
|
1033
|
+
}[];
|
|
1034
|
+
utility?: {
|
|
1035
|
+
id?: string;
|
|
1036
|
+
identifier?: string;
|
|
1037
|
+
};
|
|
1038
|
+
geo?: {
|
|
1039
|
+
default?: {
|
|
1040
|
+
lat?: number;
|
|
1041
|
+
lon?: number;
|
|
1042
|
+
};
|
|
1043
|
+
defaultValue?: string;
|
|
1044
|
+
} & Record<string, {
|
|
1045
|
+
lat?: number;
|
|
1046
|
+
lon?: number;
|
|
1047
|
+
}>;
|
|
1048
|
+
audiences?: {
|
|
1049
|
+
identifier?: string;
|
|
1050
|
+
}[];
|
|
1051
|
+
totals?: Record<string, number>;
|
|
1052
|
+
allSectors?: string;
|
|
1053
|
+
isoRtoConnection?: {
|
|
1054
|
+
id?: string;
|
|
1055
|
+
identifier?: string;
|
|
1056
|
+
};
|
|
1057
|
+
newToQ?: string;
|
|
1058
|
+
npmOrganizationProfile?: {
|
|
1059
|
+
id?: string;
|
|
1060
|
+
identifier?: string;
|
|
1061
|
+
};
|
|
1062
|
+
actualOperationalDate?: string;
|
|
1063
|
+
applicationStatus?: string;
|
|
1064
|
+
indexed_at?: string;
|
|
1065
|
+
lastModified?: string;
|
|
1066
|
+
plannedOperationalDate?: string;
|
|
1067
|
+
projectName?: string;
|
|
1068
|
+
reportDate?: string;
|
|
1069
|
+
withdrawnDate?: string;
|
|
1070
|
+
sourceUpdate?: string;
|
|
1071
|
+
totalMw?: number;
|
|
1072
|
+
'#developers'?: string[];
|
|
1073
|
+
'#keyPeople'?: string[];
|
|
1074
|
+
applicationType?: string;
|
|
1075
|
+
compositeQueue?: string;
|
|
1076
|
+
cost?: {
|
|
1077
|
+
costCompany?: string;
|
|
1078
|
+
costYear?: number;
|
|
1079
|
+
networkCostKW?: number;
|
|
1080
|
+
poiCostKW?: number;
|
|
1081
|
+
totalCostKW?: number;
|
|
1082
|
+
};
|
|
1083
|
+
dateAddedToNpm?: string;
|
|
1084
|
+
dateCreated?: string;
|
|
1085
|
+
interconnectingEntity?: string;
|
|
1086
|
+
kV?: number;
|
|
1087
|
+
meta?: {
|
|
1088
|
+
created?: string;
|
|
1089
|
+
computedList?: string[];
|
|
1090
|
+
sk?: string;
|
|
1091
|
+
modified?: string;
|
|
1092
|
+
pk?: string;
|
|
1093
|
+
entity?: string;
|
|
1094
|
+
};
|
|
1095
|
+
nearestTownOrCounty?: string;
|
|
1096
|
+
poiLocation?: string;
|
|
1097
|
+
processInfo?: {
|
|
1098
|
+
sectors?: string;
|
|
1099
|
+
state?: string;
|
|
1100
|
+
county?: string;
|
|
1101
|
+
utility?: string;
|
|
1102
|
+
isoRtoConnection?: string;
|
|
1103
|
+
newRecord?: string;
|
|
1104
|
+
newToQ?: string;
|
|
1105
|
+
npmOrganizationProfile?: string;
|
|
1106
|
+
};
|
|
1107
|
+
queueDatasetType?: string;
|
|
1108
|
+
reportCount?: number;
|
|
1109
|
+
tags?: {
|
|
1110
|
+
identifier?: string;
|
|
1111
|
+
}[];
|
|
1112
|
+
}, {
|
|
1113
|
+
sectors?: {
|
|
1114
|
+
id?: string;
|
|
1115
|
+
identifier?: string;
|
|
1116
|
+
}[];
|
|
1117
|
+
state?: {
|
|
1118
|
+
id?: string;
|
|
1119
|
+
identifier?: string;
|
|
1120
|
+
};
|
|
1121
|
+
county?: {
|
|
1122
|
+
id?: string;
|
|
1123
|
+
identifier?: string;
|
|
1124
|
+
};
|
|
1125
|
+
keyPeople?: {
|
|
1126
|
+
id?: string;
|
|
1127
|
+
linkedinUrl?: string;
|
|
1128
|
+
fullName?: string;
|
|
1129
|
+
email?: string;
|
|
1130
|
+
phone?: string;
|
|
1131
|
+
source?: string;
|
|
1132
|
+
created?: string;
|
|
1133
|
+
roles?: string[];
|
|
1134
|
+
}[];
|
|
1135
|
+
id?: string;
|
|
1136
|
+
queueKey?: string;
|
|
1137
|
+
applicationId?: string;
|
|
1138
|
+
queueDataset?: string;
|
|
1139
|
+
city?: {
|
|
1140
|
+
id?: string;
|
|
1141
|
+
identifier?: string;
|
|
1142
|
+
};
|
|
1143
|
+
country?: {
|
|
1144
|
+
id?: string;
|
|
1145
|
+
identifier?: string;
|
|
1146
|
+
}[];
|
|
1147
|
+
organizations?: {
|
|
1148
|
+
id?: string;
|
|
1149
|
+
identifier?: string;
|
|
1150
|
+
role?: string;
|
|
1151
|
+
ref?: string;
|
|
1152
|
+
}[];
|
|
1153
|
+
utility?: {
|
|
1154
|
+
id?: string;
|
|
1155
|
+
identifier?: string;
|
|
1156
|
+
};
|
|
1157
|
+
geo?: {
|
|
1158
|
+
default?: {
|
|
1159
|
+
lat?: number;
|
|
1160
|
+
lon?: number;
|
|
1161
|
+
};
|
|
1162
|
+
defaultValue?: string;
|
|
1163
|
+
} & Record<string, {
|
|
1164
|
+
lat?: number;
|
|
1165
|
+
lon?: number;
|
|
1166
|
+
}>;
|
|
1167
|
+
audiences?: {
|
|
1168
|
+
identifier?: string;
|
|
1169
|
+
}[];
|
|
1170
|
+
totals?: Record<string, number>;
|
|
1171
|
+
allSectors?: string;
|
|
1172
|
+
isoRtoConnection?: {
|
|
1173
|
+
id?: string;
|
|
1174
|
+
identifier?: string;
|
|
1175
|
+
};
|
|
1176
|
+
newToQ?: string;
|
|
1177
|
+
npmOrganizationProfile?: {
|
|
1178
|
+
id?: string;
|
|
1179
|
+
identifier?: string;
|
|
1180
|
+
};
|
|
1181
|
+
actualOperationalDate?: string;
|
|
1182
|
+
applicationStatus?: string;
|
|
1183
|
+
indexed_at?: string;
|
|
1184
|
+
lastModified?: string;
|
|
1185
|
+
plannedOperationalDate?: string;
|
|
1186
|
+
projectName?: string;
|
|
1187
|
+
reportDate?: string;
|
|
1188
|
+
withdrawnDate?: string;
|
|
1189
|
+
sourceUpdate?: string;
|
|
1190
|
+
totalMw?: number;
|
|
1191
|
+
'#developers'?: string[];
|
|
1192
|
+
'#keyPeople'?: string[];
|
|
1193
|
+
applicationType?: string;
|
|
1194
|
+
compositeQueue?: string;
|
|
1195
|
+
cost?: {
|
|
1196
|
+
costCompany?: string;
|
|
1197
|
+
costYear?: number;
|
|
1198
|
+
networkCostKW?: number;
|
|
1199
|
+
poiCostKW?: number;
|
|
1200
|
+
totalCostKW?: number;
|
|
1201
|
+
};
|
|
1202
|
+
dateAddedToNpm?: string;
|
|
1203
|
+
dateCreated?: string;
|
|
1204
|
+
interconnectingEntity?: string;
|
|
1205
|
+
kV?: number;
|
|
1206
|
+
meta?: {
|
|
1207
|
+
created?: string;
|
|
1208
|
+
computedList?: string[];
|
|
1209
|
+
sk?: string;
|
|
1210
|
+
modified?: string;
|
|
1211
|
+
pk?: string;
|
|
1212
|
+
entity?: string;
|
|
1213
|
+
};
|
|
1214
|
+
nearestTownOrCounty?: string;
|
|
1215
|
+
poiLocation?: string;
|
|
1216
|
+
processInfo?: {
|
|
1217
|
+
sectors?: string;
|
|
1218
|
+
state?: string;
|
|
1219
|
+
county?: string;
|
|
1220
|
+
utility?: string;
|
|
1221
|
+
isoRtoConnection?: string;
|
|
1222
|
+
newRecord?: string;
|
|
1223
|
+
newToQ?: string;
|
|
1224
|
+
npmOrganizationProfile?: string;
|
|
1225
|
+
};
|
|
1226
|
+
queueDatasetType?: string;
|
|
1227
|
+
reportCount?: number;
|
|
1228
|
+
tags?: {
|
|
1229
|
+
identifier?: string;
|
|
1230
|
+
}[];
|
|
1231
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1232
|
+
actualOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1233
|
+
allSectors: z.ZodDefault<z.ZodString>;
|
|
1234
|
+
applicationId: z.ZodString;
|
|
1235
|
+
applicationStatus: z.ZodOptional<z.ZodString>;
|
|
1236
|
+
audiences: z.ZodArray<z.ZodObject<{
|
|
1237
|
+
identifier: z.ZodString;
|
|
1238
|
+
}, "strip", z.ZodTypeAny, {
|
|
1239
|
+
identifier?: string;
|
|
1240
|
+
}, {
|
|
1241
|
+
identifier?: string;
|
|
1242
|
+
}>, "many">;
|
|
1243
|
+
id: z.ZodString;
|
|
1244
|
+
indexed_at: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1245
|
+
lastModified: z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>;
|
|
1246
|
+
organizations: z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
1247
|
+
identifier: z.ZodString;
|
|
1248
|
+
id: z.ZodString;
|
|
1249
|
+
}, {
|
|
1250
|
+
role: z.ZodString;
|
|
1251
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1253
|
+
id?: string;
|
|
1254
|
+
identifier?: string;
|
|
1255
|
+
role?: string;
|
|
1256
|
+
ref?: string;
|
|
1257
|
+
}, {
|
|
1258
|
+
id?: string;
|
|
1259
|
+
identifier?: string;
|
|
1260
|
+
role?: string;
|
|
1261
|
+
ref?: string;
|
|
1262
|
+
}>, "many">>;
|
|
1263
|
+
plannedOperationalDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1264
|
+
projectName: z.ZodOptional<z.ZodString>;
|
|
1265
|
+
queueDataset: z.ZodOptional<z.ZodString>;
|
|
1266
|
+
reportDate: z.ZodEffects<z.ZodString, string, string>;
|
|
1267
|
+
sectors: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1268
|
+
identifier: z.ZodString;
|
|
1269
|
+
id: z.ZodString;
|
|
1270
|
+
}, "strip", z.ZodTypeAny, {
|
|
1271
|
+
id?: string;
|
|
1272
|
+
identifier?: string;
|
|
1273
|
+
}, {
|
|
1274
|
+
id?: string;
|
|
1275
|
+
identifier?: string;
|
|
1276
|
+
}>, "many">>;
|
|
1277
|
+
totals: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1278
|
+
withdrawnDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1279
|
+
}, {
|
|
1280
|
+
address: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
constructionDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1282
|
+
country: z.ZodString;
|
|
1283
|
+
developmentStatus: z.ZodOptional<z.ZodString>;
|
|
1284
|
+
geo: z.ZodOptional<z.ZodObject<{
|
|
1285
|
+
project: z.ZodObject<{
|
|
1286
|
+
lon: z.ZodNumber;
|
|
1287
|
+
lat: z.ZodNumber;
|
|
1288
|
+
}, "strip", z.ZodTypeAny, {
|
|
1289
|
+
lat?: number;
|
|
1290
|
+
lon?: number;
|
|
1291
|
+
}, {
|
|
1292
|
+
lat?: number;
|
|
1293
|
+
lon?: number;
|
|
1294
|
+
}>;
|
|
1295
|
+
}, "strip", z.ZodTypeAny, {
|
|
1296
|
+
project?: {
|
|
1297
|
+
lat?: number;
|
|
1298
|
+
lon?: number;
|
|
1299
|
+
};
|
|
1300
|
+
}, {
|
|
1301
|
+
project?: {
|
|
1302
|
+
lat?: number;
|
|
1303
|
+
lon?: number;
|
|
1304
|
+
};
|
|
1305
|
+
}>>;
|
|
1306
|
+
localCounty: z.ZodOptional<z.ZodString>;
|
|
1307
|
+
localRegion: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
localState: z.ZodOptional<z.ZodString>;
|
|
1309
|
+
localTown: z.ZodOptional<z.ZodString>;
|
|
1310
|
+
mwGross: z.ZodOptional<z.ZodNumber>;
|
|
1311
|
+
mwNet: z.ZodOptional<z.ZodNumber>;
|
|
1312
|
+
planningGranted: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1313
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1314
|
+
queueDate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1315
|
+
refId: z.ZodString;
|
|
1316
|
+
sectorDetail: z.ZodDefault<z.ZodString>;
|
|
1317
|
+
sourceUpdate: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodEffects<z.ZodString, string, string>]>>;
|
|
1318
|
+
status: z.ZodString;
|
|
1319
|
+
storageCapacity: z.ZodOptional<z.ZodNumber>;
|
|
1320
|
+
storageType: z.ZodOptional<z.ZodString>;
|
|
1321
|
+
technology: z.ZodOptional<z.ZodString>;
|
|
1322
|
+
totalMw: z.ZodOptional<z.ZodNumber>;
|
|
1323
|
+
windFarmName: z.ZodOptional<z.ZodString>;
|
|
1324
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1325
|
+
sectors?: {
|
|
1326
|
+
id?: string;
|
|
1327
|
+
identifier?: string;
|
|
1328
|
+
}[];
|
|
1329
|
+
id?: string;
|
|
1330
|
+
status?: string;
|
|
1331
|
+
applicationId?: string;
|
|
1332
|
+
queueDataset?: string;
|
|
1333
|
+
country?: string;
|
|
1334
|
+
organizations?: {
|
|
1335
|
+
id?: string;
|
|
1336
|
+
identifier?: string;
|
|
1337
|
+
role?: string;
|
|
1338
|
+
ref?: string;
|
|
1339
|
+
}[];
|
|
1340
|
+
geo?: {
|
|
1341
|
+
project?: {
|
|
1342
|
+
lat?: number;
|
|
1343
|
+
lon?: number;
|
|
1344
|
+
};
|
|
1345
|
+
};
|
|
1346
|
+
audiences?: {
|
|
1347
|
+
identifier?: string;
|
|
1348
|
+
}[];
|
|
1349
|
+
totals?: Record<string, number>;
|
|
1350
|
+
allSectors?: string;
|
|
1351
|
+
actualOperationalDate?: string;
|
|
1352
|
+
applicationStatus?: string;
|
|
1353
|
+
indexed_at?: string;
|
|
1354
|
+
lastModified?: string;
|
|
1355
|
+
plannedOperationalDate?: string;
|
|
1356
|
+
projectName?: string;
|
|
1357
|
+
reportDate?: string;
|
|
1358
|
+
withdrawnDate?: string;
|
|
1359
|
+
address?: string;
|
|
1360
|
+
constructionDate?: string;
|
|
1361
|
+
developmentStatus?: string;
|
|
1362
|
+
localCounty?: string;
|
|
1363
|
+
localRegion?: string;
|
|
1364
|
+
localState?: string;
|
|
1365
|
+
localTown?: string;
|
|
1366
|
+
mwGross?: number;
|
|
1367
|
+
mwNet?: number;
|
|
1368
|
+
planningGranted?: string;
|
|
1369
|
+
postalCode?: string;
|
|
1370
|
+
queueDate?: string;
|
|
1371
|
+
refId?: string;
|
|
1372
|
+
sectorDetail?: string;
|
|
1373
|
+
sourceUpdate?: string;
|
|
1374
|
+
storageCapacity?: number;
|
|
1375
|
+
storageType?: string;
|
|
1376
|
+
technology?: string;
|
|
1377
|
+
totalMw?: number;
|
|
1378
|
+
windFarmName?: string;
|
|
1379
|
+
}, {
|
|
1380
|
+
sectors?: {
|
|
1381
|
+
id?: string;
|
|
1382
|
+
identifier?: string;
|
|
1383
|
+
}[];
|
|
1384
|
+
id?: string;
|
|
1385
|
+
status?: string;
|
|
1386
|
+
applicationId?: string;
|
|
1387
|
+
queueDataset?: string;
|
|
1388
|
+
country?: string;
|
|
1389
|
+
organizations?: {
|
|
1390
|
+
id?: string;
|
|
1391
|
+
identifier?: string;
|
|
1392
|
+
role?: string;
|
|
1393
|
+
ref?: string;
|
|
1394
|
+
}[];
|
|
1395
|
+
geo?: {
|
|
1396
|
+
project?: {
|
|
1397
|
+
lat?: number;
|
|
1398
|
+
lon?: number;
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
audiences?: {
|
|
1402
|
+
identifier?: string;
|
|
1403
|
+
}[];
|
|
1404
|
+
totals?: Record<string, number>;
|
|
1405
|
+
allSectors?: string;
|
|
1406
|
+
actualOperationalDate?: string;
|
|
1407
|
+
applicationStatus?: string;
|
|
1408
|
+
indexed_at?: string;
|
|
1409
|
+
lastModified?: string;
|
|
1410
|
+
plannedOperationalDate?: string;
|
|
1411
|
+
projectName?: string;
|
|
1412
|
+
reportDate?: string;
|
|
1413
|
+
withdrawnDate?: string;
|
|
1414
|
+
address?: string;
|
|
1415
|
+
constructionDate?: string;
|
|
1416
|
+
developmentStatus?: string;
|
|
1417
|
+
localCounty?: string;
|
|
1418
|
+
localRegion?: string;
|
|
1419
|
+
localState?: string;
|
|
1420
|
+
localTown?: string;
|
|
1421
|
+
mwGross?: number;
|
|
1422
|
+
mwNet?: number;
|
|
1423
|
+
planningGranted?: string;
|
|
1424
|
+
postalCode?: string;
|
|
1425
|
+
queueDate?: string;
|
|
1426
|
+
refId?: string;
|
|
1427
|
+
sectorDetail?: string;
|
|
1428
|
+
sourceUpdate?: string;
|
|
1429
|
+
storageCapacity?: number;
|
|
1430
|
+
storageType?: string;
|
|
1431
|
+
technology?: string;
|
|
1432
|
+
totalMw?: number;
|
|
1433
|
+
windFarmName?: string;
|
|
1434
|
+
}>]>;
|
|
1435
|
+
export type QueueType = z.infer<typeof QueueSchema>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.usQueueSchema = exports.euQueueSchema = void 0;
|
|
3
|
+
exports.QueueSchema = exports.usQueueSchema = exports.euQueueSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const entity_1 = require("./entity");
|
|
6
6
|
const CostSchema = zod_1.z.object({
|
|
@@ -128,4 +128,5 @@ exports.usQueueSchema = sharedQueueSchema.extend({
|
|
|
128
128
|
tags: zod_1.z.array(entity_1.IdentifierOnlyEntityItemSchema).optional(),
|
|
129
129
|
utility: entity_1.EntityItemSchema.optional(),
|
|
130
130
|
});
|
|
131
|
+
exports.QueueSchema = exports.usQueueSchema.or(exports.euQueueSchema);
|
|
131
132
|
//# sourceMappingURL=queues.js.map
|
|
@@ -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;
|