snss-types 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist-types/index.d.ts +145 -142
  2. package/package.json +1 -1
@@ -21,16 +21,16 @@ interface SceneItem {
21
21
  */
22
22
  interface SceneItemMeta {
23
23
  scene_json?: SceneItemSelfInfo;
24
- manifest_json?: ManifestData;
25
- constellations_json?: ConstellationsData;
26
- satellites_json?: SatellitesData;
27
- nodes_json?: NodesData;
28
- links_json?: LinksData;
29
- tasks_json?: TasksData;
30
- flows_json?: FlowsData;
31
- timeline_json?: TimelineData;
32
- metrics_json?: MetricsData;
33
- evaluation_json?: EvaluationData;
24
+ manifest_json?: SceneManifestData;
25
+ constellations_json?: SceneConstellationsData;
26
+ satellites_json?: SceneSatellitesData;
27
+ nodes_json?: SceneNodesData;
28
+ links_json?: SceneLinksData;
29
+ tasks_json?: SceneTasksData;
30
+ flows_json?: SceneFlowsData;
31
+ timeline_json?: SceneTimelineData;
32
+ metrics_json?: SceneMetricsData;
33
+ evaluation_json?: SceneEvaluationData;
34
34
  }
35
35
  /**
36
36
  * 场景节点(单个架构版本)
@@ -61,7 +61,7 @@ type SceneRole = 'baseline' | 'iteration' | 'final';
61
61
  /**
62
62
  * 时间配置
63
63
  */
64
- interface ManifestTime {
64
+ interface SceneManifestTime {
65
65
  epoch_utc: string;
66
66
  start_time_s: number;
67
67
  end_time_s: number;
@@ -71,174 +71,174 @@ interface ManifestTime {
71
71
  /**
72
72
  * 场景清单文件
73
73
  */
74
- interface ManifestData {
74
+ interface SceneManifestData {
75
75
  scene_id: string;
76
76
  scene_name: string;
77
77
  description: string;
78
- time: ManifestTime;
78
+ time: SceneManifestTime;
79
79
  }
80
80
  /**
81
81
  * 星座类型
82
82
  */
83
- type ConstellationType = 'GEO' | 'MEO' | 'LEO';
83
+ type SceneConstellationType = 'GEO' | 'MEO' | 'LEO';
84
84
  /**
85
85
  * 星座配置
86
86
  */
87
- interface Constellation {
87
+ interface SceneConstellation {
88
88
  constellation_id: string;
89
89
  constellation_name: string;
90
- layer: ConstellationType;
90
+ layer: SceneConstellationType;
91
91
  satellite_count: number;
92
92
  }
93
93
  /**
94
94
  * 星座列表
95
95
  */
96
- interface ConstellationsData {
97
- constellations: Constellation[];
96
+ interface SceneConstellationsData {
97
+ constellations: SceneConstellation[];
98
98
  }
99
99
  /**
100
100
  * 卫星TLE数据
101
101
  */
102
- interface SatelliteTLE {
102
+ interface SceneSatelliteTLE {
103
103
  line1: string;
104
104
  line2: string;
105
105
  }
106
106
  /**
107
107
  * 卫星配置
108
108
  */
109
- interface Satellite {
109
+ interface SceneSatellite {
110
110
  satellite_id: string;
111
111
  satellite_name: string;
112
112
  constellation_id: string;
113
- layer: ConstellationType;
114
- satellite_type: TaskType;
113
+ layer: SceneConstellationType;
114
+ satellite_type: SceneTaskType;
115
115
  orbit_plane: number;
116
116
  orbit_index: number;
117
- tle: SatelliteTLE;
117
+ tle: SceneSatelliteTLE;
118
118
  }
119
119
  /**
120
120
  * 卫星列表
121
121
  */
122
- interface SatellitesData {
123
- satellites: Satellite[];
122
+ interface SceneSatellitesData {
123
+ satellites: SceneSatellite[];
124
124
  }
125
125
  /**
126
126
  * 容量配置
127
127
  */
128
- interface Capacity {
128
+ interface SceneCapacity {
129
129
  max_access_capacity_mbps: number;
130
130
  }
131
131
  /**
132
132
  * 显示配置
133
133
  */
134
- interface DisplayOptions {
134
+ interface SceneDisplayOptions {
135
135
  show_trajectory?: boolean;
136
136
  }
137
137
  /**
138
138
  * 节点类型
139
139
  */
140
- type NodeType = 'gateway' | 'user_terminal' | 'control_center' | 'other';
140
+ type SceneNodeType = 'gateway' | 'user_terminal' | 'control_center' | 'other';
141
141
  /**
142
142
  * 终端类型(仅在 node_type = 'user_terminal' 时使用)
143
143
  */
144
- type TerminalType = 'fixed' | 'mobile' | 'airborne' | 'maritime';
144
+ type SceneTerminalType = 'fixed' | 'mobile' | 'airborne' | 'maritime';
145
145
  /**
146
146
  * 移动模型类型
147
147
  */
148
- type MobilityModel = 'static' | 'waypoint';
148
+ type SceneMobilityModel = 'static' | 'waypoint';
149
149
  /**
150
150
  * 网关节点
151
151
  */
152
- interface GatewayNode {
152
+ interface SceneGatewayNode {
153
153
  node_id: string;
154
154
  node_name: string;
155
155
  node_type: 'gateway';
156
156
  region: string;
157
- geo_position: GeoPosition;
158
- capacity: Capacity;
157
+ geo_position: SceneGeoPosition;
158
+ capacity: SceneCapacity;
159
159
  }
160
160
  /**
161
161
  * 固定用户终端
162
162
  */
163
- interface StaticUserTerminal {
163
+ interface SceneStaticUserTerminal {
164
164
  node_id: string;
165
165
  node_name: string;
166
166
  node_type: 'user_terminal';
167
167
  terminal_type: 'fixed';
168
168
  mobility_model: 'static';
169
- geo_position: GeoPosition;
170
- display_options?: DisplayOptions;
169
+ geo_position: SceneGeoPosition;
170
+ display_options?: SceneDisplayOptions;
171
171
  }
172
172
  /**
173
173
  * 移动用户终端
174
174
  */
175
- interface MobileUserTerminal {
175
+ interface SceneMobileUserTerminal {
176
176
  node_id: string;
177
177
  node_name: string;
178
178
  node_type: 'user_terminal';
179
179
  terminal_type: 'mobile';
180
180
  mobility_model: 'waypoint';
181
- geo_position: GeoPosition;
182
- display_options?: DisplayOptions;
181
+ geo_position: SceneGeoPosition;
182
+ display_options?: SceneDisplayOptions;
183
183
  }
184
184
  /**
185
185
  * 其他类型用户终端
186
186
  */
187
- interface OtherUserTerminal {
187
+ interface SceneOtherUserTerminal {
188
188
  node_id: string;
189
189
  node_name: string;
190
190
  node_type: 'user_terminal';
191
- terminal_type: Exclude<TerminalType, 'fixed' | 'mobile'>;
192
- mobility_model: MobilityModel;
193
- geo_position: GeoPosition;
194
- display_options?: DisplayOptions;
191
+ terminal_type: Exclude<SceneTerminalType, 'fixed' | 'mobile'>;
192
+ mobility_model: SceneMobilityModel;
193
+ geo_position: SceneGeoPosition;
194
+ display_options?: SceneDisplayOptions;
195
195
  }
196
196
  /**
197
197
  * 控制中心节点
198
198
  */
199
- interface ControlCenterNode {
199
+ interface SceneControlCenterNode {
200
200
  node_id: string;
201
201
  node_name: string;
202
202
  node_type: 'control_center';
203
- geo_position: GeoPosition;
203
+ geo_position: SceneGeoPosition;
204
204
  }
205
205
  /**
206
206
  * 其他类型节点
207
207
  */
208
- interface OtherNode {
208
+ interface SceneOtherNode {
209
209
  node_id: string;
210
210
  node_name: string;
211
211
  node_type: 'other';
212
- geo_position: GeoPosition;
212
+ geo_position: SceneGeoPosition;
213
213
  }
214
214
  /**
215
215
  * 节点联合类型
216
216
  */
217
- type Node = GatewayNode | StaticUserTerminal | MobileUserTerminal | OtherUserTerminal | ControlCenterNode | OtherNode;
217
+ type SceneNode = SceneGatewayNode | SceneStaticUserTerminal | SceneMobileUserTerminal | SceneOtherUserTerminal | SceneControlCenterNode | SceneOtherNode;
218
218
  /**
219
219
  * 节点列表
220
220
  */
221
- interface NodesData {
222
- nodes: Node[];
221
+ interface SceneNodesData {
222
+ nodes: SceneNode[];
223
223
  }
224
224
  /**
225
225
  * 链路类型
226
226
  */
227
- type LinkType = 'ISL' | 'IOL' | 'GSL' | 'BACKHAUL';
227
+ type SceneLinkType = 'ISL' | 'IOL' | 'GSL' | 'BACKHAUL';
228
228
  /**
229
229
  * 节点类型
230
230
  */
231
- type LinkNodeType = 'satellite' | 'gateway';
231
+ type SceneLinkNodeType = 'satellite' | 'gateway';
232
232
  /**
233
233
  * 链路实例
234
234
  */
235
- interface Link {
235
+ interface SceneLink {
236
236
  link_id: string;
237
237
  node_a_id: string;
238
- node_a_type: LinkNodeType;
238
+ node_a_type: SceneLinkNodeType;
239
239
  node_b_id: string;
240
- node_b_type: LinkNodeType;
241
- link_type: LinkType;
240
+ node_b_type: SceneLinkNodeType;
241
+ link_type: SceneLinkType;
242
242
  capacity_mbps: number;
243
243
  node_a_constellation_id?: string;
244
244
  node_b_constellation_id?: string;
@@ -246,34 +246,34 @@ interface Link {
246
246
  /**
247
247
  * 批量链路配置规则
248
248
  */
249
- interface BulkConfigRule {
249
+ interface SceneBulkConfigRule {
250
250
  constellation_id: string;
251
- link_type: LinkType;
251
+ link_type: SceneLinkType;
252
252
  capacity_mbps: number;
253
253
  }
254
254
  /**
255
255
  * 链路列表
256
256
  */
257
- interface LinksData {
258
- links: Link[];
259
- bulk_config_rules: BulkConfigRule[];
257
+ interface SceneLinksData {
258
+ links: SceneLink[];
259
+ bulk_config_rules: SceneBulkConfigRule[];
260
260
  }
261
261
  /**
262
262
  * 任务类型
263
263
  */
264
- type TaskType = 'emergency_communication';
264
+ type SceneTaskType = 'emergency_communication';
265
265
  /**
266
266
  * 任务优先级
267
267
  */
268
- type TaskPriority = 'high';
268
+ type SceneTaskPriority = 'high';
269
269
  /**
270
270
  * 任务
271
271
  */
272
- interface Task {
272
+ interface SceneTask {
273
273
  task_id: string;
274
274
  task_name: string;
275
- task_type: TaskType;
276
- priority: TaskPriority;
275
+ task_type: SceneTaskType;
276
+ priority: SceneTaskPriority;
277
277
  flow_ids: string[];
278
278
  start_time_s: number;
279
279
  end_time_s: number;
@@ -281,26 +281,26 @@ interface Task {
281
281
  /**
282
282
  * 任务列表
283
283
  */
284
- interface TasksData {
285
- tasks: Task[];
284
+ interface SceneTasksData {
285
+ tasks: SceneTask[];
286
286
  }
287
287
  /**
288
288
  * 业务类型
289
289
  */
290
- type ServiceType = 'voice' | 'image_return';
290
+ type SceneServiceType = 'voice' | 'image_return';
291
291
  /**
292
292
  * 业务优先级
293
293
  */
294
- type FlowPriority = 'high';
294
+ type SceneFlowPriority = 'high';
295
295
  /**
296
296
  * 业务流
297
297
  */
298
- interface Flow {
298
+ interface SceneFlow {
299
299
  flow_id: string;
300
300
  flow_name: string;
301
301
  task_id: string;
302
- service_type: ServiceType;
303
- priority: FlowPriority;
302
+ service_type: SceneServiceType;
303
+ priority: SceneFlowPriority;
304
304
  src_node_id: string;
305
305
  dst_node_id: string;
306
306
  start_time_s: number;
@@ -309,13 +309,13 @@ interface Flow {
309
309
  /**
310
310
  * 业务流列表
311
311
  */
312
- interface FlowsData {
313
- flows: Flow[];
312
+ interface SceneFlowsData {
313
+ flows: SceneFlow[];
314
314
  }
315
315
  /**
316
316
  * 地理位置
317
317
  */
318
- interface GeoPosition {
318
+ interface SceneGeoPosition {
319
319
  lon_deg: number;
320
320
  lat_deg: number;
321
321
  alt_km: number;
@@ -323,7 +323,7 @@ interface GeoPosition {
323
323
  /**
324
324
  * 地理位置
325
325
  */
326
- interface GeoPosition {
326
+ interface SceneGeoPosition {
327
327
  lon_deg: number;
328
328
  lat_deg: number;
329
329
  alt_km: number;
@@ -331,7 +331,7 @@ interface GeoPosition {
331
331
  /**
332
332
  * 速度向量
333
333
  */
334
- interface VelocityWGS {
334
+ interface SceneVelocityWGS {
335
335
  vx: number;
336
336
  vy: number;
337
337
  vz: number;
@@ -340,15 +340,15 @@ interface VelocityWGS {
340
340
  /**
341
341
  * 用户状态
342
342
  */
343
- interface UserState {
343
+ interface SceneUserState {
344
344
  node_id: string;
345
- geo_position: GeoPosition;
346
- velocity_wgs: VelocityWGS;
345
+ geo_position: SceneGeoPosition;
346
+ velocity_wgs: SceneVelocityWGS;
347
347
  }
348
348
  /**
349
349
  * 链路状态
350
350
  */
351
- interface LinkState {
351
+ interface SceneLinkState {
352
352
  link_id: string;
353
353
  status: string;
354
354
  utilization_ratio: number;
@@ -357,7 +357,7 @@ interface LinkState {
357
357
  /**
358
358
  * 业务流状态
359
359
  */
360
- interface FlowState {
360
+ interface SceneFlowState {
361
361
  flow_id: string;
362
362
  status: string;
363
363
  throughput_mbps: number;
@@ -369,7 +369,7 @@ interface FlowState {
369
369
  /**
370
370
  * 任务状态
371
371
  */
372
- interface TaskState {
372
+ interface SceneTaskState {
373
373
  task_id: string;
374
374
  status: string;
375
375
  active_flow_ids: string[];
@@ -377,24 +377,24 @@ interface TaskState {
377
377
  /**
378
378
  * 时间轴单帧数据
379
379
  */
380
- interface TimelineFrame {
380
+ interface SceneTimelineFrame {
381
381
  frame_no: number;
382
382
  timestamp_s: number;
383
- user_states: UserState[];
384
- links: LinkState[];
385
- flows: FlowState[];
386
- tasks: TaskState[];
383
+ user_states: SceneUserState[];
384
+ links: SceneLinkState[];
385
+ flows: SceneFlowState[];
386
+ tasks: SceneTaskState[];
387
387
  }
388
388
  /**
389
389
  * 时间轴数据
390
390
  */
391
- interface TimelineData {
392
- timelines: TimelineFrame[];
391
+ interface SceneTimelineData {
392
+ timelines: SceneTimelineFrame[];
393
393
  }
394
394
  /**
395
395
  * 概要统计
396
396
  */
397
- interface MetricsSummary {
397
+ interface SceneMetricsSummary {
398
398
  active_flow_total: number;
399
399
  high_priority_flow_total: number;
400
400
  avg_delay_ms: number;
@@ -405,7 +405,7 @@ interface MetricsSummary {
405
405
  /**
406
406
  * 时序数据点
407
407
  */
408
- interface TimeseriesPoint {
408
+ interface SceneTimeseriesPoint {
409
409
  timestamp_s: number;
410
410
  active_flow_count: number;
411
411
  network_throughput_mbps: number;
@@ -416,7 +416,7 @@ interface TimeseriesPoint {
416
416
  /**
417
417
  * 图表配置
418
418
  */
419
- interface ChartConfig {
419
+ interface SceneChartConfig {
420
420
  chart_id: string;
421
421
  chart_name: string;
422
422
  chart_type: string;
@@ -427,7 +427,7 @@ interface ChartConfig {
427
427
  /**
428
428
  * 图表资源
429
429
  */
430
- interface FigureAsset {
430
+ interface SceneFigureAsset {
431
431
  figure_id: string;
432
432
  figure_name: string;
433
433
  figure_type: string;
@@ -437,33 +437,33 @@ interface FigureAsset {
437
437
  /**
438
438
  * 指标数据
439
439
  */
440
- interface MetricsData {
441
- summary: MetricsSummary;
442
- timeseries: TimeseriesPoint[];
443
- charts: ChartConfig[];
444
- figure_assets: FigureAsset[];
440
+ interface SceneMetricsData {
441
+ summary: SceneMetricsSummary;
442
+ timeseries: SceneTimeseriesPoint[];
443
+ charts: SceneChartConfig[];
444
+ figure_assets: SceneFigureAsset[];
445
445
  }
446
446
  /**
447
447
  * 评估方法类型
448
448
  */
449
- type EvaluationMethod = 'AHP_ENTROPY';
449
+ type SceneEvaluationMethod = 'AHP_ENTROPY';
450
450
  /**
451
451
  * 指标方向类型
452
452
  */
453
- type MetricDirection = 'benefit' | 'cost';
453
+ type SceneMetricDirection = 'benefit' | 'cost';
454
454
  /**
455
455
  * 评估模型
456
456
  */
457
- interface EvaluationModel {
458
- method: EvaluationMethod;
457
+ interface SceneEvaluationModel {
458
+ method: SceneEvaluationMethod;
459
459
  }
460
460
  /**
461
461
  * 细分指标
462
462
  */
463
- interface Metric {
463
+ interface SceneMetric {
464
464
  metric_id: string;
465
465
  metric_name: string;
466
- direction: MetricDirection;
466
+ direction: SceneMetricDirection;
467
467
  value: number;
468
468
  normalized_value: number;
469
469
  unit: string;
@@ -471,26 +471,26 @@ interface Metric {
471
471
  /**
472
472
  * 评估维度
473
473
  */
474
- interface EvaluationDimension {
474
+ interface SceneEvaluationDimension {
475
475
  dimension_id: string;
476
476
  dimension_name: string;
477
477
  score: number;
478
478
  ahp_weight: number;
479
479
  entropy_weight: number;
480
480
  combined_weight: number;
481
- metrics: Metric[];
481
+ metrics: SceneMetric[];
482
482
  }
483
483
  /**
484
484
  * 最终得分
485
485
  */
486
- interface FinalScore {
486
+ interface SceneFinalScore {
487
487
  score: number;
488
488
  score_scale: string;
489
489
  }
490
490
  /**
491
491
  * 评估图表配置
492
492
  */
493
- interface EvaluationChart {
493
+ interface SceneEvaluationChart {
494
494
  chart_id: string;
495
495
  chart_name: string;
496
496
  chart_type: string;
@@ -501,7 +501,7 @@ interface EvaluationChart {
501
501
  /**
502
502
  * 评估图表资源
503
503
  */
504
- interface EvaluationFigureAsset {
504
+ interface SceneEvaluationFigureAsset {
505
505
  figure_id: string;
506
506
  figure_name: string;
507
507
  figure_type: string;
@@ -511,14 +511,14 @@ interface EvaluationFigureAsset {
511
511
  /**
512
512
  * 评估结果
513
513
  */
514
- interface EvaluationData {
514
+ interface SceneEvaluationData {
515
515
  scene_id: string;
516
516
  scene_name: string;
517
- evaluation_model: EvaluationModel;
518
- dimensions: EvaluationDimension[];
519
- final_score: FinalScore;
520
- charts: EvaluationChart[];
521
- figure_assets: EvaluationFigureAsset[];
517
+ evaluation_model: SceneEvaluationModel;
518
+ dimensions: SceneEvaluationDimension[];
519
+ final_score: SceneFinalScore;
520
+ charts: SceneEvaluationChart[];
521
+ figure_assets: SceneEvaluationFigureAsset[];
522
522
  }
523
523
 
524
524
  /**
@@ -556,28 +556,28 @@ interface CaseItem {
556
556
  isOnline?: boolean;
557
557
  [x: string]: any;
558
558
  }
559
+ /**
560
+ * 案例库树结构对象元数据
561
+ */
559
562
  interface CaseItemMeta {
560
563
  case_json?: CaseJsonData;
561
- evaluation_summary_json?: EvaluationSummaryData;
564
+ evaluation_summary_json?: CaseEvaluationSummaryJsonData;
562
565
  }
563
566
  /**
564
- * 各维度评分
567
+ * 案例库多维度评估结果
565
568
  */
566
- interface DimensionScores {
567
- /** 网络容量评分 */
568
- network_capacity: number;
569
- /** 服务质量评分 */
570
- service_quality: number;
571
- /** 网络韧性评分 */
572
- network_resilience: number;
573
- /** 网络复杂度评分 */
574
- network_complexity: number;
575
- [x: string]: number;
569
+ interface CaseEvaluationSummaryJsonData {
570
+ /** 案例唯一标识 */
571
+ case_id: string;
572
+ /** 评估方法 */
573
+ evaluation_method: SceneEvaluationMethod;
574
+ /** 场景评估列表 */
575
+ scenes: CaseSceneEvaluation[];
576
576
  }
577
577
  /**
578
- * 场景评估节点
578
+ * 案例库场景评估节点
579
579
  */
580
- interface SceneEvaluation {
580
+ interface CaseSceneEvaluation {
581
581
  /** 场景唯一标识 */
582
582
  scene_id: string;
583
583
  /** 场景显示名称 */
@@ -585,18 +585,21 @@ interface SceneEvaluation {
585
585
  /** 综合最终得分 */
586
586
  final_score: number;
587
587
  /** 各维度得分详情 */
588
- dimension_scores: DimensionScores;
588
+ dimension_scores: CaseSceneDimensionScore;
589
589
  }
590
590
  /**
591
- * 多维度评估结果
591
+ * 案例库各维度评分
592
592
  */
593
- interface EvaluationSummaryData {
594
- /** 案例唯一标识 */
595
- case_id: string;
596
- /** 评估方法 */
597
- evaluation_method: EvaluationMethod;
598
- /** 场景评估列表 */
599
- scenes: SceneEvaluation[];
593
+ interface CaseSceneDimensionScore {
594
+ /** 网络容量评分 */
595
+ network_capacity: number;
596
+ /** 服务质量评分 */
597
+ service_quality: number;
598
+ /** 网络韧性评分 */
599
+ network_resilience: number;
600
+ /** 网络复杂度评分 */
601
+ network_complexity: number;
602
+ [x: string]: number;
600
603
  }
601
604
 
602
605
  declare class DirPathDto {
@@ -675,4 +678,4 @@ interface ModelResponse extends BaseResponse {
675
678
  data?: ModelEntity | ModelEntity[] | null;
676
679
  }
677
680
 
678
- export { type BaseResponse, type BulkConfigRule, type Capacity, type CaseItem, type CaseItemMeta, type CaseJsonData, type CaseTreeResponse, type CaseType, type ChartConfig, type Constellation, type ConstellationType, type ConstellationsData, type ControlCenterNode, type DimensionScores, DirPathDto, type DisplayOptions, type EvaluationChart, type EvaluationData, type EvaluationDimension, type EvaluationFigureAsset, type EvaluationMethod, type EvaluationModel, type EvaluationSummaryData, type FigureAsset, type FinalScore, type Flow, type FlowPriority, type FlowState, type FlowsData, type GatewayNode, type GeoPosition, InitCaseCacheDto, type Link, type LinkNodeType, type LinkState, type LinkType, type LinksData, type ManifestData, type ManifestTime, type Metric, type MetricDirection, type MetricsData, type MetricsSummary, type MobileUserTerminal, type MobilityModel, ModelDto, ModelEntity, type ModelResponse, type Node, type NodeType, type NodesData, type OtherNode, type OtherUserTerminal, type Satellite, type SatelliteTLE, type SatellitesData, type SceneEvaluation, type SceneItem, type SceneItemMeta, type SceneItemMetaResponse, type SceneItemSelfInfo, type SceneRole, SendMessageDto, type ServiceType, type StaticUserTerminal, type Task, type TaskPriority, type TaskState, type TaskType, type TasksData, type TerminalType, type TimelineData, type TimelineFrame, type TimeseriesPoint, type UploadFileResponse, type UserState, type VelocityWGS };
681
+ export { type BaseResponse, type CaseEvaluationSummaryJsonData, type CaseItem, type CaseItemMeta, type CaseJsonData, type CaseSceneDimensionScore, type CaseSceneEvaluation, type CaseTreeResponse, type CaseType, DirPathDto, InitCaseCacheDto, ModelDto, ModelEntity, type ModelResponse, type SceneBulkConfigRule, type SceneCapacity, type SceneChartConfig, type SceneConstellation, type SceneConstellationType, type SceneConstellationsData, type SceneControlCenterNode, type SceneDisplayOptions, type SceneEvaluationChart, type SceneEvaluationData, type SceneEvaluationDimension, type SceneEvaluationFigureAsset, type SceneEvaluationMethod, type SceneEvaluationModel, type SceneFigureAsset, type SceneFinalScore, type SceneFlow, type SceneFlowPriority, type SceneFlowState, type SceneFlowsData, type SceneGatewayNode, type SceneGeoPosition, type SceneItem, type SceneItemMeta, type SceneItemMetaResponse, type SceneItemSelfInfo, type SceneLink, type SceneLinkNodeType, type SceneLinkState, type SceneLinkType, type SceneLinksData, type SceneManifestData, type SceneManifestTime, type SceneMetric, type SceneMetricDirection, type SceneMetricsData, type SceneMetricsSummary, type SceneMobileUserTerminal, type SceneMobilityModel, type SceneNode, type SceneNodeType, type SceneNodesData, type SceneOtherNode, type SceneOtherUserTerminal, type SceneRole, type SceneSatellite, type SceneSatelliteTLE, type SceneSatellitesData, type SceneServiceType, type SceneStaticUserTerminal, type SceneTask, type SceneTaskPriority, type SceneTaskState, type SceneTaskType, type SceneTasksData, type SceneTerminalType, type SceneTimelineData, type SceneTimelineFrame, type SceneTimeseriesPoint, type SceneUserState, type SceneVelocityWGS, SendMessageDto, type UploadFileResponse };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snss-types",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "label": "卫星网络仿真文件解析数据传输服务",
5
5
  "description": "基于 Nestjs 的 服务端接口,提供文件数据处理解析传输等服务接口",
6
6
  "private": false,