-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypings.d.ts
153 lines (132 loc) · 2.42 KB
/
typings.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
type siteMode = "on" | "off" | "alert";
type sectorState = "enabled" | "disabled" | "locked";
type deltaDirection = "positive" | "negative";
type AllowedAlert = {
id: number;
body: string;
modifier: "REGEX" | "ENDS" | "CONTAINS" | "BEGINS";
};
type Site = {
id: string;
siteNameForUser: string;
pikud: "צפון" | "מרכז" | "דרום";
siteType: "BBU" | "DUS";
siteIP: string;
isPortable: boolean;
defaultLocation: string;
};
type SiteData = {
success: boolean;
displayName: string;
amosName: string;
status: string;
area: string;
isPortable: boolean;
data: SiteDataDatum[];
};
type SiteDataDatum = {
id: number;
index: string;
siteID: string;
date: string;
st_cell: St;
st_rru: Alt;
st_mme: St;
st_ike: St;
rr: Rr;
ue_print_admitted: UePrintAdmitted;
getEarfcn: ConfiguredMaxTxPowerData;
invxrf: Invxrf;
configuredMaxTxPowerData: ConfiguredMaxTxPowerData;
alt: Alt;
gpsData?: GpsData;
};
type Alt = {
generalInfo: GeneralInfo;
data: AltDatum[];
};
type AltDatum = {
date: Date;
servicePriority: string;
description: string;
};
type GeneralInfo = {
commandName: string;
status: string
totalRows: number;
};
type ConfiguredMaxTxPowerData = {
generalInfo: GeneralInfo;
data: ConfiguredMaxTxPowerDataDatum[];
};
type ConfiguredMaxTxPowerDataDatum = {
sector: string;
mo: string;
attribute: string;
value: string;
mode?: string;
};
type GpsData = {
generalInfo: GeneralInfo;
data: GpsDataDatum[];
};
type GpsDataDatum = {
latitude: string;
longitude: string;
noOfSatellitesInView: string;
noOfSatellitesInUse: string;
};
type Invxrf = {
generalInfo: GeneralInfo;
data: InvxrfDatum[];
};
type InvxrfDatum = {
auxPiu: string;
lnh: string;
board: string;
rf: string;
bp: string;
tx: string;
txWDbm: string;
vswr: string;
vswrRl: string;
rxDbm: string;
ues: string;
sector: string;
antennaGroup: string;
cells: string;
pci: string;
};
type Rr = {
generalInfo: GeneralInfo;
data: RrDatum[];
};
type RrDatum = {
sector: string;
counter: string;
value: string;
};
type St = {
generalInfo: GeneralInfo;
data: StCellDatum[];
};
type StCellDatum = {
sector?: string;
sectorId: string;
proxy: string;
admState: string;
opState: string;
mo: string;
ipsecTunnel?: string;
mmeName?: string;
};
type UePrintAdmitted = {
generalInfo: GeneralInfo;
data: UePrintAdmittedDatum[];
};
type UePrintAdmittedDatum = {
sectorId: string;
cellID: string;
ueS: string;
bearers: string;
};