snss-types 1.0.4 → 1.0.5
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/dist-types/index.d.ts +13 -13
- package/package.json +1 -1
package/dist-types/index.d.ts
CHANGED
|
@@ -179,24 +179,23 @@ interface SceneNodeDisplayOptions {
|
|
|
179
179
|
show_trajectory?: boolean;
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
|
-
*
|
|
183
|
-
*/
|
|
184
|
-
type SceneLinkType = 'ISL' | 'IOL' | 'GSL' | 'BACKHAUL';
|
|
185
|
-
/**
|
|
186
|
-
* 节点类型
|
|
182
|
+
* 链路列表
|
|
187
183
|
*/
|
|
188
|
-
|
|
184
|
+
interface SceneLinksData {
|
|
185
|
+
links: SceneLink[];
|
|
186
|
+
bulk_config_rules: SceneBulkConfigRule[];
|
|
187
|
+
}
|
|
189
188
|
/**
|
|
190
189
|
* 链路实例
|
|
191
190
|
*/
|
|
192
191
|
interface SceneLink {
|
|
193
192
|
link_id: string;
|
|
193
|
+
link_type: SceneLinkType;
|
|
194
194
|
node_a_id: string;
|
|
195
195
|
node_a_type: SceneLinkNodeType;
|
|
196
196
|
node_b_id: string;
|
|
197
197
|
node_b_type: SceneLinkNodeType;
|
|
198
|
-
|
|
199
|
-
capacity_mbps: number;
|
|
198
|
+
capacity_mbps?: number;
|
|
200
199
|
node_a_constellation_id?: string;
|
|
201
200
|
node_b_constellation_id?: string;
|
|
202
201
|
}
|
|
@@ -209,12 +208,13 @@ interface SceneBulkConfigRule {
|
|
|
209
208
|
capacity_mbps: number;
|
|
210
209
|
}
|
|
211
210
|
/**
|
|
212
|
-
*
|
|
211
|
+
* 链路类型ISL(星间链路) 、 IOL(层间链路) 、 GSL(星地链路) 、 BACKHAUL(馈电链路)
|
|
213
212
|
*/
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
213
|
+
type SceneLinkType = 'ISL' | 'IOL' | 'GSL' | 'BACKHAUL';
|
|
214
|
+
/**
|
|
215
|
+
* 节点类型
|
|
216
|
+
*/
|
|
217
|
+
type SceneLinkNodeType = 'satellite' | 'gateway' | 'user_terminal' | 'control_center' | 'other';
|
|
218
218
|
/**
|
|
219
219
|
* 任务类型
|
|
220
220
|
*/
|