snss-types 1.0.7 → 1.0.8
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/README.md +227 -227
- package/dist-types/index.d.ts +139 -782
- package/dist-types/index.js.map +1 -1
- package/package.json +1 -1
package/dist-types/index.d.ts
CHANGED
|
@@ -58,6 +58,71 @@ interface SceneItemMeta {
|
|
|
58
58
|
* - final: 最终优化版本
|
|
59
59
|
*/
|
|
60
60
|
type SceneRole = 'baseline' | 'iteration' | 'final';
|
|
61
|
+
/**
|
|
62
|
+
* 场景任务实体(querySceneTasks 返回的列表项)
|
|
63
|
+
*/
|
|
64
|
+
interface SceneTaskEntityData {
|
|
65
|
+
/** 案例ID */
|
|
66
|
+
case_id: string;
|
|
67
|
+
/** 场景ID */
|
|
68
|
+
scene_id: string;
|
|
69
|
+
/** 任务ID */
|
|
70
|
+
task_id: string;
|
|
71
|
+
/** 任务名称 */
|
|
72
|
+
task_name: string;
|
|
73
|
+
/** 任务类型 */
|
|
74
|
+
task_type: string;
|
|
75
|
+
/** 优先级 */
|
|
76
|
+
priority: string;
|
|
77
|
+
/** 关联的业务流ID列表(逗号分隔) */
|
|
78
|
+
flow_ids: string;
|
|
79
|
+
/** 开始时间(秒) */
|
|
80
|
+
start_time_s: number;
|
|
81
|
+
/** 结束时间(秒) */
|
|
82
|
+
end_time_s: number;
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
86
|
+
*/
|
|
87
|
+
interface SceneFlowEntityData {
|
|
88
|
+
/** 案例ID */
|
|
89
|
+
case_id: string;
|
|
90
|
+
/** 场景ID */
|
|
91
|
+
scene_id: string;
|
|
92
|
+
/** 所属任务ID */
|
|
93
|
+
task_id: string;
|
|
94
|
+
/** 业务流ID */
|
|
95
|
+
flow_id: string;
|
|
96
|
+
/** 业务流名称 */
|
|
97
|
+
flow_name: string;
|
|
98
|
+
/** 业务类型 */
|
|
99
|
+
service_type: string;
|
|
100
|
+
/** 优先级 */
|
|
101
|
+
priority: string;
|
|
102
|
+
/** 源节点ID */
|
|
103
|
+
src_node_id: string;
|
|
104
|
+
/** 目标节点ID */
|
|
105
|
+
dst_node_id: string;
|
|
106
|
+
/** 开始时间(秒) */
|
|
107
|
+
start_time_s: number;
|
|
108
|
+
/** 结束时间(秒) */
|
|
109
|
+
end_time_s: number;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
113
|
+
*/
|
|
114
|
+
interface SceneTimelineEntityData {
|
|
115
|
+
/** 案例ID */
|
|
116
|
+
case_id: string;
|
|
117
|
+
/** 场景ID */
|
|
118
|
+
scene_id: string;
|
|
119
|
+
/** 帧号 */
|
|
120
|
+
frame_no: number;
|
|
121
|
+
/** 时间戳(秒) */
|
|
122
|
+
timestamp_s: number;
|
|
123
|
+
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
124
|
+
json_str: string;
|
|
125
|
+
}
|
|
61
126
|
/**
|
|
62
127
|
* 时间配置
|
|
63
128
|
*/
|
|
@@ -475,810 +540,95 @@ interface SceneTaskState {
|
|
|
475
540
|
status: string;
|
|
476
541
|
active_flow_ids: string[];
|
|
477
542
|
}
|
|
543
|
+
|
|
478
544
|
/**
|
|
479
|
-
*
|
|
545
|
+
* 案例类型
|
|
480
546
|
*/
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
priority: string;
|
|
494
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
495
|
-
flow_ids: string;
|
|
496
|
-
/** 开始时间(秒) */
|
|
497
|
-
start_time_s: number;
|
|
498
|
-
/** 结束时间(秒) */
|
|
499
|
-
end_time_s: number;
|
|
547
|
+
type CaseType = 'architecture_optimization';
|
|
548
|
+
/**
|
|
549
|
+
* 案例库树结构对象
|
|
550
|
+
*/
|
|
551
|
+
interface CaseItem {
|
|
552
|
+
label: string;
|
|
553
|
+
value: string;
|
|
554
|
+
meta: CaseItemMeta;
|
|
555
|
+
children: SceneItem[];
|
|
556
|
+
isLeaf?: boolean;
|
|
557
|
+
isOnline?: boolean;
|
|
558
|
+
[x: string]: any;
|
|
500
559
|
}
|
|
501
560
|
/**
|
|
502
|
-
*
|
|
561
|
+
* 案例库树结构对象元数据
|
|
503
562
|
*/
|
|
504
|
-
interface
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
scene_id: string;
|
|
509
|
-
/** 任务ID */
|
|
510
|
-
task_id: string;
|
|
511
|
-
/** 任务名称 */
|
|
512
|
-
task_name: string;
|
|
513
|
-
/** 任务类型 */
|
|
514
|
-
task_type: string;
|
|
515
|
-
/** 优先级 */
|
|
516
|
-
priority: string;
|
|
517
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
518
|
-
flow_ids: string;
|
|
519
|
-
/** 开始时间(秒) */
|
|
520
|
-
start_time_s: number;
|
|
521
|
-
/** 结束时间(秒) */
|
|
522
|
-
end_time_s: number;
|
|
563
|
+
interface CaseItemMeta {
|
|
564
|
+
case_json?: CaseJsonData;
|
|
565
|
+
evaluation_summary_json?: CaseEvaluationSummaryJsonData;
|
|
566
|
+
optimization_trace_json?: OptimizationTraceJsonData;
|
|
523
567
|
}
|
|
524
568
|
/**
|
|
525
|
-
*
|
|
569
|
+
* 优化评估案例
|
|
526
570
|
*/
|
|
527
|
-
interface
|
|
528
|
-
/**
|
|
571
|
+
interface CaseJsonData {
|
|
572
|
+
/** 案例唯一标识 */
|
|
529
573
|
case_id: string;
|
|
530
|
-
/**
|
|
531
|
-
|
|
532
|
-
/**
|
|
533
|
-
|
|
534
|
-
/**
|
|
535
|
-
|
|
536
|
-
/**
|
|
537
|
-
|
|
538
|
-
/**
|
|
539
|
-
|
|
540
|
-
/**
|
|
541
|
-
|
|
542
|
-
/**
|
|
543
|
-
|
|
544
|
-
/** 结束时间(秒) */
|
|
545
|
-
end_time_s: number;
|
|
574
|
+
/** 案例名称 */
|
|
575
|
+
case_name: string;
|
|
576
|
+
/** 案例类型 */
|
|
577
|
+
case_type: CaseType;
|
|
578
|
+
/** 案例描述 */
|
|
579
|
+
description: string;
|
|
580
|
+
/** 默认展示的场景ID */
|
|
581
|
+
default_scene_id: string;
|
|
582
|
+
/** 是否为实时模式 */
|
|
583
|
+
is_realtime_mode: boolean;
|
|
584
|
+
/** 场景顺序列表(按迭代顺序排列的 scene_id 数组) */
|
|
585
|
+
scene_order: string[];
|
|
586
|
+
/** 场景详情列表 */
|
|
587
|
+
scenes: CaseSceneInfo[];
|
|
546
588
|
}
|
|
547
589
|
/**
|
|
548
|
-
*
|
|
590
|
+
* 案例库多维度评估结果
|
|
549
591
|
*/
|
|
550
|
-
interface
|
|
551
|
-
/**
|
|
592
|
+
interface CaseEvaluationSummaryJsonData {
|
|
593
|
+
/** 案例唯一标识 */
|
|
552
594
|
case_id: string;
|
|
553
|
-
/**
|
|
554
|
-
|
|
555
|
-
/**
|
|
556
|
-
|
|
557
|
-
/** 任务名称 */
|
|
558
|
-
task_name: string;
|
|
559
|
-
/** 任务类型 */
|
|
560
|
-
task_type: string;
|
|
561
|
-
/** 优先级 */
|
|
562
|
-
priority: string;
|
|
563
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
564
|
-
flow_ids: string;
|
|
565
|
-
/** 开始时间(秒) */
|
|
566
|
-
start_time_s: number;
|
|
567
|
-
/** 结束时间(秒) */
|
|
568
|
-
end_time_s: number;
|
|
595
|
+
/** 评估方法 */
|
|
596
|
+
evaluation_method: SceneEvaluationMethod;
|
|
597
|
+
/** 场景评估列表 */
|
|
598
|
+
scenes: CaseSceneEvaluation[];
|
|
569
599
|
}
|
|
570
600
|
/**
|
|
571
|
-
*
|
|
601
|
+
* 案例库场景评估节点
|
|
572
602
|
*/
|
|
573
|
-
interface
|
|
574
|
-
/**
|
|
575
|
-
case_id: string;
|
|
576
|
-
/** 场景ID */
|
|
603
|
+
interface CaseSceneEvaluation {
|
|
604
|
+
/** 场景唯一标识 */
|
|
577
605
|
scene_id: string;
|
|
578
|
-
/**
|
|
579
|
-
|
|
580
|
-
/**
|
|
581
|
-
|
|
582
|
-
/**
|
|
583
|
-
|
|
584
|
-
/** 优先级 */
|
|
585
|
-
priority: string;
|
|
586
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
587
|
-
flow_ids: string;
|
|
588
|
-
/** 开始时间(秒) */
|
|
589
|
-
start_time_s: number;
|
|
590
|
-
/** 结束时间(秒) */
|
|
591
|
-
end_time_s: number;
|
|
606
|
+
/** 场景显示名称 */
|
|
607
|
+
scene_name: string;
|
|
608
|
+
/** 综合最终得分 */
|
|
609
|
+
final_score: number;
|
|
610
|
+
/** 各维度得分详情 */
|
|
611
|
+
dimension_scores: CaseSceneDimensionScore;
|
|
592
612
|
}
|
|
593
613
|
/**
|
|
594
|
-
*
|
|
614
|
+
* 案例库各维度评分
|
|
595
615
|
*/
|
|
596
|
-
interface
|
|
597
|
-
/**
|
|
598
|
-
|
|
599
|
-
/**
|
|
600
|
-
|
|
601
|
-
/**
|
|
602
|
-
|
|
603
|
-
/**
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
task_type: string;
|
|
607
|
-
/** 优先级 */
|
|
608
|
-
priority: string;
|
|
609
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
610
|
-
flow_ids: string;
|
|
611
|
-
/** 开始时间(秒) */
|
|
612
|
-
start_time_s: number;
|
|
613
|
-
/** 结束时间(秒) */
|
|
614
|
-
end_time_s: number;
|
|
616
|
+
interface CaseSceneDimensionScore {
|
|
617
|
+
/** 网络容量评分 */
|
|
618
|
+
network_capacity: number;
|
|
619
|
+
/** 服务质量评分 */
|
|
620
|
+
service_quality: number;
|
|
621
|
+
/** 网络韧性评分 */
|
|
622
|
+
network_resilience: number;
|
|
623
|
+
/** 网络复杂度评分 */
|
|
624
|
+
network_complexity: number;
|
|
625
|
+
[x: string]: number;
|
|
615
626
|
}
|
|
616
627
|
/**
|
|
617
|
-
*
|
|
628
|
+
* 网络架构优化搜索过程记录(case 级文件 optimization_trace.json)
|
|
618
629
|
*/
|
|
619
|
-
interface
|
|
620
|
-
/**
|
|
621
|
-
case_id: string;
|
|
622
|
-
/** 场景ID */
|
|
623
|
-
scene_id: string;
|
|
624
|
-
/** 任务ID */
|
|
625
|
-
task_id: string;
|
|
626
|
-
/** 任务名称 */
|
|
627
|
-
task_name: string;
|
|
628
|
-
/** 任务类型 */
|
|
629
|
-
task_type: string;
|
|
630
|
-
/** 优先级 */
|
|
631
|
-
priority: string;
|
|
632
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
633
|
-
flow_ids: string;
|
|
634
|
-
/** 开始时间(秒) */
|
|
635
|
-
start_time_s: number;
|
|
636
|
-
/** 结束时间(秒) */
|
|
637
|
-
end_time_s: number;
|
|
638
|
-
}
|
|
639
|
-
/**
|
|
640
|
-
* 场景任务实体(querySceneTasks 返回的列表项)
|
|
641
|
-
*/
|
|
642
|
-
interface SceneTaskEntityData {
|
|
643
|
-
/** 案例ID */
|
|
644
|
-
case_id: string;
|
|
645
|
-
/** 场景ID */
|
|
646
|
-
scene_id: string;
|
|
647
|
-
/** 任务ID */
|
|
648
|
-
task_id: string;
|
|
649
|
-
/** 任务名称 */
|
|
650
|
-
task_name: string;
|
|
651
|
-
/** 任务类型 */
|
|
652
|
-
task_type: string;
|
|
653
|
-
/** 优先级 */
|
|
654
|
-
priority: string;
|
|
655
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
656
|
-
flow_ids: string;
|
|
657
|
-
/** 开始时间(秒) */
|
|
658
|
-
start_time_s: number;
|
|
659
|
-
/** 结束时间(秒) */
|
|
660
|
-
end_time_s: number;
|
|
661
|
-
}
|
|
662
|
-
/**
|
|
663
|
-
* 场景任务实体(querySceneTasks 返回的列表项)
|
|
664
|
-
*/
|
|
665
|
-
interface SceneTaskEntityData {
|
|
666
|
-
/** 案例ID */
|
|
667
|
-
case_id: string;
|
|
668
|
-
/** 场景ID */
|
|
669
|
-
scene_id: string;
|
|
670
|
-
/** 任务ID */
|
|
671
|
-
task_id: string;
|
|
672
|
-
/** 任务名称 */
|
|
673
|
-
task_name: string;
|
|
674
|
-
/** 任务类型 */
|
|
675
|
-
task_type: string;
|
|
676
|
-
/** 优先级 */
|
|
677
|
-
priority: string;
|
|
678
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
679
|
-
flow_ids: string;
|
|
680
|
-
/** 开始时间(秒) */
|
|
681
|
-
start_time_s: number;
|
|
682
|
-
/** 结束时间(秒) */
|
|
683
|
-
end_time_s: number;
|
|
684
|
-
}
|
|
685
|
-
/**
|
|
686
|
-
* 场景任务实体(querySceneTasks 返回的列表项)
|
|
687
|
-
*/
|
|
688
|
-
interface SceneTaskEntityData {
|
|
689
|
-
/** 案例ID */
|
|
690
|
-
case_id: string;
|
|
691
|
-
/** 场景ID */
|
|
692
|
-
scene_id: string;
|
|
693
|
-
/** 任务ID */
|
|
694
|
-
task_id: string;
|
|
695
|
-
/** 任务名称 */
|
|
696
|
-
task_name: string;
|
|
697
|
-
/** 任务类型 */
|
|
698
|
-
task_type: string;
|
|
699
|
-
/** 优先级 */
|
|
700
|
-
priority: string;
|
|
701
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
702
|
-
flow_ids: string;
|
|
703
|
-
/** 开始时间(秒) */
|
|
704
|
-
start_time_s: number;
|
|
705
|
-
/** 结束时间(秒) */
|
|
706
|
-
end_time_s: number;
|
|
707
|
-
}
|
|
708
|
-
/**
|
|
709
|
-
* 场景任务实体(querySceneTasks 返回的列表项)
|
|
710
|
-
*/
|
|
711
|
-
interface SceneTaskEntityData {
|
|
712
|
-
/** 案例ID */
|
|
713
|
-
case_id: string;
|
|
714
|
-
/** 场景ID */
|
|
715
|
-
scene_id: string;
|
|
716
|
-
/** 任务ID */
|
|
717
|
-
task_id: string;
|
|
718
|
-
/** 任务名称 */
|
|
719
|
-
task_name: string;
|
|
720
|
-
/** 任务类型 */
|
|
721
|
-
task_type: string;
|
|
722
|
-
/** 优先级 */
|
|
723
|
-
priority: string;
|
|
724
|
-
/** 关联的业务流ID列表(逗号分隔) */
|
|
725
|
-
flow_ids: string;
|
|
726
|
-
/** 开始时间(秒) */
|
|
727
|
-
start_time_s: number;
|
|
728
|
-
/** 结束时间(秒) */
|
|
729
|
-
end_time_s: number;
|
|
730
|
-
}
|
|
731
|
-
/**
|
|
732
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
733
|
-
*/
|
|
734
|
-
interface SceneFlowEntityData {
|
|
735
|
-
/** 案例ID */
|
|
736
|
-
case_id: string;
|
|
737
|
-
/** 场景ID */
|
|
738
|
-
scene_id: string;
|
|
739
|
-
/** 所属任务ID */
|
|
740
|
-
task_id: string;
|
|
741
|
-
/** 业务流ID */
|
|
742
|
-
flow_id: string;
|
|
743
|
-
/** 业务流名称 */
|
|
744
|
-
flow_name: string;
|
|
745
|
-
/** 业务类型 */
|
|
746
|
-
service_type: string;
|
|
747
|
-
/** 优先级 */
|
|
748
|
-
priority: string;
|
|
749
|
-
/** 源节点ID */
|
|
750
|
-
src_node_id: string;
|
|
751
|
-
/** 目标节点ID */
|
|
752
|
-
dst_node_id: string;
|
|
753
|
-
/** 开始时间(秒) */
|
|
754
|
-
start_time_s: number;
|
|
755
|
-
/** 结束时间(秒) */
|
|
756
|
-
end_time_s: number;
|
|
757
|
-
}
|
|
758
|
-
/**
|
|
759
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
760
|
-
*/
|
|
761
|
-
interface SceneFlowEntityData {
|
|
762
|
-
/** 案例ID */
|
|
763
|
-
case_id: string;
|
|
764
|
-
/** 场景ID */
|
|
765
|
-
scene_id: string;
|
|
766
|
-
/** 所属任务ID */
|
|
767
|
-
task_id: string;
|
|
768
|
-
/** 业务流ID */
|
|
769
|
-
flow_id: string;
|
|
770
|
-
/** 业务流名称 */
|
|
771
|
-
flow_name: string;
|
|
772
|
-
/** 业务类型 */
|
|
773
|
-
service_type: string;
|
|
774
|
-
/** 优先级 */
|
|
775
|
-
priority: string;
|
|
776
|
-
/** 源节点ID */
|
|
777
|
-
src_node_id: string;
|
|
778
|
-
/** 目标节点ID */
|
|
779
|
-
dst_node_id: string;
|
|
780
|
-
/** 开始时间(秒) */
|
|
781
|
-
start_time_s: number;
|
|
782
|
-
/** 结束时间(秒) */
|
|
783
|
-
end_time_s: number;
|
|
784
|
-
}
|
|
785
|
-
/**
|
|
786
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
787
|
-
*/
|
|
788
|
-
interface SceneFlowEntityData {
|
|
789
|
-
/** 案例ID */
|
|
790
|
-
case_id: string;
|
|
791
|
-
/** 场景ID */
|
|
792
|
-
scene_id: string;
|
|
793
|
-
/** 所属任务ID */
|
|
794
|
-
task_id: string;
|
|
795
|
-
/** 业务流ID */
|
|
796
|
-
flow_id: string;
|
|
797
|
-
/** 业务流名称 */
|
|
798
|
-
flow_name: string;
|
|
799
|
-
/** 业务类型 */
|
|
800
|
-
service_type: string;
|
|
801
|
-
/** 优先级 */
|
|
802
|
-
priority: string;
|
|
803
|
-
/** 源节点ID */
|
|
804
|
-
src_node_id: string;
|
|
805
|
-
/** 目标节点ID */
|
|
806
|
-
dst_node_id: string;
|
|
807
|
-
/** 开始时间(秒) */
|
|
808
|
-
start_time_s: number;
|
|
809
|
-
/** 结束时间(秒) */
|
|
810
|
-
end_time_s: number;
|
|
811
|
-
}
|
|
812
|
-
/**
|
|
813
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
814
|
-
*/
|
|
815
|
-
interface SceneFlowEntityData {
|
|
816
|
-
/** 案例ID */
|
|
817
|
-
case_id: string;
|
|
818
|
-
/** 场景ID */
|
|
819
|
-
scene_id: string;
|
|
820
|
-
/** 所属任务ID */
|
|
821
|
-
task_id: string;
|
|
822
|
-
/** 业务流ID */
|
|
823
|
-
flow_id: string;
|
|
824
|
-
/** 业务流名称 */
|
|
825
|
-
flow_name: string;
|
|
826
|
-
/** 业务类型 */
|
|
827
|
-
service_type: string;
|
|
828
|
-
/** 优先级 */
|
|
829
|
-
priority: string;
|
|
830
|
-
/** 源节点ID */
|
|
831
|
-
src_node_id: string;
|
|
832
|
-
/** 目标节点ID */
|
|
833
|
-
dst_node_id: string;
|
|
834
|
-
/** 开始时间(秒) */
|
|
835
|
-
start_time_s: number;
|
|
836
|
-
/** 结束时间(秒) */
|
|
837
|
-
end_time_s: number;
|
|
838
|
-
}
|
|
839
|
-
/**
|
|
840
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
841
|
-
*/
|
|
842
|
-
interface SceneFlowEntityData {
|
|
843
|
-
/** 案例ID */
|
|
844
|
-
case_id: string;
|
|
845
|
-
/** 场景ID */
|
|
846
|
-
scene_id: string;
|
|
847
|
-
/** 所属任务ID */
|
|
848
|
-
task_id: string;
|
|
849
|
-
/** 业务流ID */
|
|
850
|
-
flow_id: string;
|
|
851
|
-
/** 业务流名称 */
|
|
852
|
-
flow_name: string;
|
|
853
|
-
/** 业务类型 */
|
|
854
|
-
service_type: string;
|
|
855
|
-
/** 优先级 */
|
|
856
|
-
priority: string;
|
|
857
|
-
/** 源节点ID */
|
|
858
|
-
src_node_id: string;
|
|
859
|
-
/** 目标节点ID */
|
|
860
|
-
dst_node_id: string;
|
|
861
|
-
/** 开始时间(秒) */
|
|
862
|
-
start_time_s: number;
|
|
863
|
-
/** 结束时间(秒) */
|
|
864
|
-
end_time_s: number;
|
|
865
|
-
}
|
|
866
|
-
/**
|
|
867
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
868
|
-
*/
|
|
869
|
-
interface SceneFlowEntityData {
|
|
870
|
-
/** 案例ID */
|
|
871
|
-
case_id: string;
|
|
872
|
-
/** 场景ID */
|
|
873
|
-
scene_id: string;
|
|
874
|
-
/** 所属任务ID */
|
|
875
|
-
task_id: string;
|
|
876
|
-
/** 业务流ID */
|
|
877
|
-
flow_id: string;
|
|
878
|
-
/** 业务流名称 */
|
|
879
|
-
flow_name: string;
|
|
880
|
-
/** 业务类型 */
|
|
881
|
-
service_type: string;
|
|
882
|
-
/** 优先级 */
|
|
883
|
-
priority: string;
|
|
884
|
-
/** 源节点ID */
|
|
885
|
-
src_node_id: string;
|
|
886
|
-
/** 目标节点ID */
|
|
887
|
-
dst_node_id: string;
|
|
888
|
-
/** 开始时间(秒) */
|
|
889
|
-
start_time_s: number;
|
|
890
|
-
/** 结束时间(秒) */
|
|
891
|
-
end_time_s: number;
|
|
892
|
-
}
|
|
893
|
-
/**
|
|
894
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
895
|
-
*/
|
|
896
|
-
interface SceneFlowEntityData {
|
|
897
|
-
/** 案例ID */
|
|
898
|
-
case_id: string;
|
|
899
|
-
/** 场景ID */
|
|
900
|
-
scene_id: string;
|
|
901
|
-
/** 所属任务ID */
|
|
902
|
-
task_id: string;
|
|
903
|
-
/** 业务流ID */
|
|
904
|
-
flow_id: string;
|
|
905
|
-
/** 业务流名称 */
|
|
906
|
-
flow_name: string;
|
|
907
|
-
/** 业务类型 */
|
|
908
|
-
service_type: string;
|
|
909
|
-
/** 优先级 */
|
|
910
|
-
priority: string;
|
|
911
|
-
/** 源节点ID */
|
|
912
|
-
src_node_id: string;
|
|
913
|
-
/** 目标节点ID */
|
|
914
|
-
dst_node_id: string;
|
|
915
|
-
/** 开始时间(秒) */
|
|
916
|
-
start_time_s: number;
|
|
917
|
-
/** 结束时间(秒) */
|
|
918
|
-
end_time_s: number;
|
|
919
|
-
}
|
|
920
|
-
/**
|
|
921
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
922
|
-
*/
|
|
923
|
-
interface SceneFlowEntityData {
|
|
924
|
-
/** 案例ID */
|
|
925
|
-
case_id: string;
|
|
926
|
-
/** 场景ID */
|
|
927
|
-
scene_id: string;
|
|
928
|
-
/** 所属任务ID */
|
|
929
|
-
task_id: string;
|
|
930
|
-
/** 业务流ID */
|
|
931
|
-
flow_id: string;
|
|
932
|
-
/** 业务流名称 */
|
|
933
|
-
flow_name: string;
|
|
934
|
-
/** 业务类型 */
|
|
935
|
-
service_type: string;
|
|
936
|
-
/** 优先级 */
|
|
937
|
-
priority: string;
|
|
938
|
-
/** 源节点ID */
|
|
939
|
-
src_node_id: string;
|
|
940
|
-
/** 目标节点ID */
|
|
941
|
-
dst_node_id: string;
|
|
942
|
-
/** 开始时间(秒) */
|
|
943
|
-
start_time_s: number;
|
|
944
|
-
/** 结束时间(秒) */
|
|
945
|
-
end_time_s: number;
|
|
946
|
-
}
|
|
947
|
-
/**
|
|
948
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
949
|
-
*/
|
|
950
|
-
interface SceneFlowEntityData {
|
|
951
|
-
/** 案例ID */
|
|
952
|
-
case_id: string;
|
|
953
|
-
/** 场景ID */
|
|
954
|
-
scene_id: string;
|
|
955
|
-
/** 所属任务ID */
|
|
956
|
-
task_id: string;
|
|
957
|
-
/** 业务流ID */
|
|
958
|
-
flow_id: string;
|
|
959
|
-
/** 业务流名称 */
|
|
960
|
-
flow_name: string;
|
|
961
|
-
/** 业务类型 */
|
|
962
|
-
service_type: string;
|
|
963
|
-
/** 优先级 */
|
|
964
|
-
priority: string;
|
|
965
|
-
/** 源节点ID */
|
|
966
|
-
src_node_id: string;
|
|
967
|
-
/** 目标节点ID */
|
|
968
|
-
dst_node_id: string;
|
|
969
|
-
/** 开始时间(秒) */
|
|
970
|
-
start_time_s: number;
|
|
971
|
-
/** 结束时间(秒) */
|
|
972
|
-
end_time_s: number;
|
|
973
|
-
}
|
|
974
|
-
/**
|
|
975
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
976
|
-
*/
|
|
977
|
-
interface SceneFlowEntityData {
|
|
978
|
-
/** 案例ID */
|
|
979
|
-
case_id: string;
|
|
980
|
-
/** 场景ID */
|
|
981
|
-
scene_id: string;
|
|
982
|
-
/** 所属任务ID */
|
|
983
|
-
task_id: string;
|
|
984
|
-
/** 业务流ID */
|
|
985
|
-
flow_id: string;
|
|
986
|
-
/** 业务流名称 */
|
|
987
|
-
flow_name: string;
|
|
988
|
-
/** 业务类型 */
|
|
989
|
-
service_type: string;
|
|
990
|
-
/** 优先级 */
|
|
991
|
-
priority: string;
|
|
992
|
-
/** 源节点ID */
|
|
993
|
-
src_node_id: string;
|
|
994
|
-
/** 目标节点ID */
|
|
995
|
-
dst_node_id: string;
|
|
996
|
-
/** 开始时间(秒) */
|
|
997
|
-
start_time_s: number;
|
|
998
|
-
/** 结束时间(秒) */
|
|
999
|
-
end_time_s: number;
|
|
1000
|
-
}
|
|
1001
|
-
/**
|
|
1002
|
-
* 场景业务流实体(querySceneFlows 返回的列表项)
|
|
1003
|
-
*/
|
|
1004
|
-
interface SceneFlowEntityData {
|
|
1005
|
-
/** 案例ID */
|
|
1006
|
-
case_id: string;
|
|
1007
|
-
/** 场景ID */
|
|
1008
|
-
scene_id: string;
|
|
1009
|
-
/** 所属任务ID */
|
|
1010
|
-
task_id: string;
|
|
1011
|
-
/** 业务流ID */
|
|
1012
|
-
flow_id: string;
|
|
1013
|
-
/** 业务流名称 */
|
|
1014
|
-
flow_name: string;
|
|
1015
|
-
/** 业务类型 */
|
|
1016
|
-
service_type: string;
|
|
1017
|
-
/** 优先级 */
|
|
1018
|
-
priority: string;
|
|
1019
|
-
/** 源节点ID */
|
|
1020
|
-
src_node_id: string;
|
|
1021
|
-
/** 目标节点ID */
|
|
1022
|
-
dst_node_id: string;
|
|
1023
|
-
/** 开始时间(秒) */
|
|
1024
|
-
start_time_s: number;
|
|
1025
|
-
/** 结束时间(秒) */
|
|
1026
|
-
end_time_s: number;
|
|
1027
|
-
}
|
|
1028
|
-
/**
|
|
1029
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1030
|
-
*/
|
|
1031
|
-
interface SceneTimelineEntityData {
|
|
1032
|
-
/** 案例ID */
|
|
1033
|
-
case_id: string;
|
|
1034
|
-
/** 场景ID */
|
|
1035
|
-
scene_id: string;
|
|
1036
|
-
/** 帧号 */
|
|
1037
|
-
frame_no: number;
|
|
1038
|
-
/** 时间戳(秒) */
|
|
1039
|
-
timestamp_s: number;
|
|
1040
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1041
|
-
json_str: string;
|
|
1042
|
-
}
|
|
1043
|
-
/**
|
|
1044
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1045
|
-
*/
|
|
1046
|
-
interface SceneTimelineEntityData {
|
|
1047
|
-
/** 案例ID */
|
|
1048
|
-
case_id: string;
|
|
1049
|
-
/** 场景ID */
|
|
1050
|
-
scene_id: string;
|
|
1051
|
-
/** 帧号 */
|
|
1052
|
-
frame_no: number;
|
|
1053
|
-
/** 时间戳(秒) */
|
|
1054
|
-
timestamp_s: number;
|
|
1055
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1056
|
-
json_str: string;
|
|
1057
|
-
}
|
|
1058
|
-
/**
|
|
1059
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1060
|
-
*/
|
|
1061
|
-
interface SceneTimelineEntityData {
|
|
1062
|
-
/** 案例ID */
|
|
1063
|
-
case_id: string;
|
|
1064
|
-
/** 场景ID */
|
|
1065
|
-
scene_id: string;
|
|
1066
|
-
/** 帧号 */
|
|
1067
|
-
frame_no: number;
|
|
1068
|
-
/** 时间戳(秒) */
|
|
1069
|
-
timestamp_s: number;
|
|
1070
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1071
|
-
json_str: string;
|
|
1072
|
-
}
|
|
1073
|
-
/**
|
|
1074
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1075
|
-
*/
|
|
1076
|
-
interface SceneTimelineEntityData {
|
|
1077
|
-
/** 案例ID */
|
|
1078
|
-
case_id: string;
|
|
1079
|
-
/** 场景ID */
|
|
1080
|
-
scene_id: string;
|
|
1081
|
-
/** 帧号 */
|
|
1082
|
-
frame_no: number;
|
|
1083
|
-
/** 时间戳(秒) */
|
|
1084
|
-
timestamp_s: number;
|
|
1085
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1086
|
-
json_str: string;
|
|
1087
|
-
}
|
|
1088
|
-
/**
|
|
1089
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1090
|
-
*/
|
|
1091
|
-
interface SceneTimelineEntityData {
|
|
1092
|
-
/** 案例ID */
|
|
1093
|
-
case_id: string;
|
|
1094
|
-
/** 场景ID */
|
|
1095
|
-
scene_id: string;
|
|
1096
|
-
/** 帧号 */
|
|
1097
|
-
frame_no: number;
|
|
1098
|
-
/** 时间戳(秒) */
|
|
1099
|
-
timestamp_s: number;
|
|
1100
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1101
|
-
json_str: string;
|
|
1102
|
-
}
|
|
1103
|
-
/**
|
|
1104
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1105
|
-
*/
|
|
1106
|
-
interface SceneTimelineEntityData {
|
|
1107
|
-
/** 案例ID */
|
|
1108
|
-
case_id: string;
|
|
1109
|
-
/** 场景ID */
|
|
1110
|
-
scene_id: string;
|
|
1111
|
-
/** 帧号 */
|
|
1112
|
-
frame_no: number;
|
|
1113
|
-
/** 时间戳(秒) */
|
|
1114
|
-
timestamp_s: number;
|
|
1115
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1116
|
-
json_str: string;
|
|
1117
|
-
}
|
|
1118
|
-
/**
|
|
1119
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1120
|
-
*/
|
|
1121
|
-
interface SceneTimelineEntityData {
|
|
1122
|
-
/** 案例ID */
|
|
1123
|
-
case_id: string;
|
|
1124
|
-
/** 场景ID */
|
|
1125
|
-
scene_id: string;
|
|
1126
|
-
/** 帧号 */
|
|
1127
|
-
frame_no: number;
|
|
1128
|
-
/** 时间戳(秒) */
|
|
1129
|
-
timestamp_s: number;
|
|
1130
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1131
|
-
json_str: string;
|
|
1132
|
-
}
|
|
1133
|
-
/**
|
|
1134
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1135
|
-
*/
|
|
1136
|
-
interface SceneTimelineEntityData {
|
|
1137
|
-
/** 案例ID */
|
|
1138
|
-
case_id: string;
|
|
1139
|
-
/** 场景ID */
|
|
1140
|
-
scene_id: string;
|
|
1141
|
-
/** 帧号 */
|
|
1142
|
-
frame_no: number;
|
|
1143
|
-
/** 时间戳(秒) */
|
|
1144
|
-
timestamp_s: number;
|
|
1145
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1146
|
-
json_str: string;
|
|
1147
|
-
}
|
|
1148
|
-
/**
|
|
1149
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1150
|
-
*/
|
|
1151
|
-
interface SceneTimelineEntityData {
|
|
1152
|
-
/** 案例ID */
|
|
1153
|
-
case_id: string;
|
|
1154
|
-
/** 场景ID */
|
|
1155
|
-
scene_id: string;
|
|
1156
|
-
/** 帧号 */
|
|
1157
|
-
frame_no: number;
|
|
1158
|
-
/** 时间戳(秒) */
|
|
1159
|
-
timestamp_s: number;
|
|
1160
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1161
|
-
json_str: string;
|
|
1162
|
-
}
|
|
1163
|
-
/**
|
|
1164
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1165
|
-
*/
|
|
1166
|
-
interface SceneTimelineEntityData {
|
|
1167
|
-
/** 案例ID */
|
|
1168
|
-
case_id: string;
|
|
1169
|
-
/** 场景ID */
|
|
1170
|
-
scene_id: string;
|
|
1171
|
-
/** 帧号 */
|
|
1172
|
-
frame_no: number;
|
|
1173
|
-
/** 时间戳(秒) */
|
|
1174
|
-
timestamp_s: number;
|
|
1175
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1176
|
-
json_str: string;
|
|
1177
|
-
}
|
|
1178
|
-
/**
|
|
1179
|
-
* 场景时间轴实体(querySceneTimelines 返回的列表项)
|
|
1180
|
-
*/
|
|
1181
|
-
interface SceneTimelineEntityData {
|
|
1182
|
-
/** 案例ID */
|
|
1183
|
-
case_id: string;
|
|
1184
|
-
/** 场景ID */
|
|
1185
|
-
scene_id: string;
|
|
1186
|
-
/** 帧号 */
|
|
1187
|
-
frame_no: number;
|
|
1188
|
-
/** 时间戳(秒) */
|
|
1189
|
-
timestamp_s: number;
|
|
1190
|
-
/** JSON 字符串,可解析为 SceneTimelineFrame */
|
|
1191
|
-
json_str: string;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
/**
|
|
1195
|
-
* 案例类型
|
|
1196
|
-
*/
|
|
1197
|
-
type CaseType = 'architecture_optimization';
|
|
1198
|
-
/**
|
|
1199
|
-
* 案例库树结构对象
|
|
1200
|
-
*/
|
|
1201
|
-
interface CaseItem {
|
|
1202
|
-
label: string;
|
|
1203
|
-
value: string;
|
|
1204
|
-
meta: CaseItemMeta;
|
|
1205
|
-
children: SceneItem[];
|
|
1206
|
-
isLeaf?: boolean;
|
|
1207
|
-
isOnline?: boolean;
|
|
1208
|
-
[x: string]: any;
|
|
1209
|
-
}
|
|
1210
|
-
/**
|
|
1211
|
-
* 案例库树结构对象元数据
|
|
1212
|
-
*/
|
|
1213
|
-
interface CaseItemMeta {
|
|
1214
|
-
case_json?: CaseJsonData;
|
|
1215
|
-
evaluation_summary_json?: CaseEvaluationSummaryJsonData;
|
|
1216
|
-
optimization_trace_json?: OptimizationTraceJsonData;
|
|
1217
|
-
}
|
|
1218
|
-
/**
|
|
1219
|
-
* 优化评估案例
|
|
1220
|
-
*/
|
|
1221
|
-
interface CaseJsonData {
|
|
1222
|
-
/** 案例唯一标识 */
|
|
1223
|
-
case_id: string;
|
|
1224
|
-
/** 案例名称 */
|
|
1225
|
-
case_name: string;
|
|
1226
|
-
/** 案例类型 */
|
|
1227
|
-
case_type: CaseType;
|
|
1228
|
-
/** 案例描述 */
|
|
1229
|
-
description: string;
|
|
1230
|
-
/** 默认展示的场景ID */
|
|
1231
|
-
default_scene_id: string;
|
|
1232
|
-
/** 是否为实时模式 */
|
|
1233
|
-
is_realtime_mode: boolean;
|
|
1234
|
-
/** 场景顺序列表(按迭代顺序排列的 scene_id 数组) */
|
|
1235
|
-
scene_order: string[];
|
|
1236
|
-
/** 场景详情列表 */
|
|
1237
|
-
scenes: CaseSceneInfo[];
|
|
1238
|
-
}
|
|
1239
|
-
/**
|
|
1240
|
-
* 案例库多维度评估结果
|
|
1241
|
-
*/
|
|
1242
|
-
interface CaseEvaluationSummaryJsonData {
|
|
1243
|
-
/** 案例唯一标识 */
|
|
1244
|
-
case_id: string;
|
|
1245
|
-
/** 评估方法 */
|
|
1246
|
-
evaluation_method: SceneEvaluationMethod;
|
|
1247
|
-
/** 场景评估列表 */
|
|
1248
|
-
scenes: CaseSceneEvaluation[];
|
|
1249
|
-
}
|
|
1250
|
-
/**
|
|
1251
|
-
* 案例库场景评估节点
|
|
1252
|
-
*/
|
|
1253
|
-
interface CaseSceneEvaluation {
|
|
1254
|
-
/** 场景唯一标识 */
|
|
1255
|
-
scene_id: string;
|
|
1256
|
-
/** 场景显示名称 */
|
|
1257
|
-
scene_name: string;
|
|
1258
|
-
/** 综合最终得分 */
|
|
1259
|
-
final_score: number;
|
|
1260
|
-
/** 各维度得分详情 */
|
|
1261
|
-
dimension_scores: CaseSceneDimensionScore;
|
|
1262
|
-
}
|
|
1263
|
-
/**
|
|
1264
|
-
* 案例库各维度评分
|
|
1265
|
-
*/
|
|
1266
|
-
interface CaseSceneDimensionScore {
|
|
1267
|
-
/** 网络容量评分 */
|
|
1268
|
-
network_capacity: number;
|
|
1269
|
-
/** 服务质量评分 */
|
|
1270
|
-
service_quality: number;
|
|
1271
|
-
/** 网络韧性评分 */
|
|
1272
|
-
network_resilience: number;
|
|
1273
|
-
/** 网络复杂度评分 */
|
|
1274
|
-
network_complexity: number;
|
|
1275
|
-
[x: string]: number;
|
|
1276
|
-
}
|
|
1277
|
-
/**
|
|
1278
|
-
* 网络架构优化搜索过程记录(case 级文件 optimization_trace.json)
|
|
1279
|
-
*/
|
|
1280
|
-
interface OptimizationTraceJsonData {
|
|
1281
|
-
/** 案例唯一标识 */
|
|
630
|
+
interface OptimizationTraceJsonData {
|
|
631
|
+
/** 案例唯一标识 */
|
|
1282
632
|
case_id: string;
|
|
1283
633
|
/** 优化终止目标 */
|
|
1284
634
|
optimization_goal: OptimizationGoal;
|
|
@@ -1440,11 +790,18 @@ interface FigureAssetsImageResponse extends BaseResponse {
|
|
|
1440
790
|
/** base64格式的图片数据 */
|
|
1441
791
|
data?: FigureAssetsImageResponseData;
|
|
1442
792
|
}
|
|
793
|
+
/** 图片数据结构 */
|
|
1443
794
|
interface FigureAssetsImageResponseData {
|
|
1444
795
|
base64: string;
|
|
1445
796
|
mimeType: string;
|
|
1446
797
|
fileSize: number;
|
|
1447
798
|
fileName: string;
|
|
1448
799
|
}
|
|
800
|
+
/** websocket上传进度数据结构 */
|
|
801
|
+
interface WsUploadProgressData {
|
|
802
|
+
clientId: string;
|
|
803
|
+
message: string;
|
|
804
|
+
end: boolean;
|
|
805
|
+
}
|
|
1449
806
|
|
|
1450
|
-
export { type BaseResponse, type CaseEvaluationSummaryJsonData, type CaseItem, type CaseItemMeta, type CaseJsonData, type CaseSceneDimensionScore, type CaseSceneEvaluation, type CaseSceneInfo, type CaseTreeResponse, type CaseType, DirPathDto, type FigureAssetsImageResponse, type FigureAssetsImageResponseData, InitCaseCacheDto, ModelDto, ModelEntity, type ModelResponse, type OptimizationCandidate, type OptimizationEvaluationResult, type OptimizationGoal, type OptimizationRound, type OptimizationTraceJsonData, type SceneBulkConfigRule, type SceneChartConfig, type SceneConstellation, type SceneConstellationType, type SceneConstellationsData, type SceneEvaluationChart, type SceneEvaluationData, type SceneEvaluationDimension, type SceneEvaluationFigureAsset, type SceneEvaluationMethod, type SceneEvaluationModel, type SceneFigureAsset, type SceneFinalScore, type SceneFlow, type SceneFlowEntityData, type SceneFlowPriority, type SceneFlowState, type SceneFlowsData, type SceneGeoPosition, type SceneItem, type SceneItemMeta, type SceneItemMetaResponse, type SceneLink, type SceneLinkNodeType, type SceneLinkState, type SceneLinkType, type SceneLinksData, type SceneManifestData, type SceneManifestTime, type SceneMetric, type SceneMetricDirection, type SceneMetricsData, type SceneMetricsSummary, type SceneNode, type SceneNodeDisplayOptions, type SceneNodeGatewayCapacity, type SceneNodeMobilityModel, type SceneNodeTerminalType, type SceneNodeType, type SceneNodesData, type SceneRole, type SceneSatellite, type SceneSatelliteTLE, type SceneSatelliteType, type SceneSatellitesData, type SceneServiceType, type SceneTask, type SceneTaskEntityData, type SceneTaskPriority, type SceneTaskState, type SceneTaskType, type SceneTasksData, type SceneTimelineData, type SceneTimelineEntityData, type SceneTimelineFrame, type SceneTimeseriesPoint, type SceneUserState, type SceneVelocityWGS, SendMessageDto, type UploadFileResponse, type UploadFileResponseData };
|
|
807
|
+
export { type BaseResponse, type CaseEvaluationSummaryJsonData, type CaseItem, type CaseItemMeta, type CaseJsonData, type CaseSceneDimensionScore, type CaseSceneEvaluation, type CaseSceneInfo, type CaseTreeResponse, type CaseType, DirPathDto, type FigureAssetsImageResponse, type FigureAssetsImageResponseData, InitCaseCacheDto, ModelDto, ModelEntity, type ModelResponse, type OptimizationCandidate, type OptimizationEvaluationResult, type OptimizationGoal, type OptimizationRound, type OptimizationTraceJsonData, type SceneBulkConfigRule, type SceneChartConfig, type SceneConstellation, type SceneConstellationType, type SceneConstellationsData, type SceneEvaluationChart, type SceneEvaluationData, type SceneEvaluationDimension, type SceneEvaluationFigureAsset, type SceneEvaluationMethod, type SceneEvaluationModel, type SceneFigureAsset, type SceneFinalScore, type SceneFlow, type SceneFlowEntityData, type SceneFlowPriority, type SceneFlowState, type SceneFlowsData, type SceneGeoPosition, type SceneItem, type SceneItemMeta, type SceneItemMetaResponse, type SceneLink, type SceneLinkNodeType, type SceneLinkState, type SceneLinkType, type SceneLinksData, type SceneManifestData, type SceneManifestTime, type SceneMetric, type SceneMetricDirection, type SceneMetricsData, type SceneMetricsSummary, type SceneNode, type SceneNodeDisplayOptions, type SceneNodeGatewayCapacity, type SceneNodeMobilityModel, type SceneNodeTerminalType, type SceneNodeType, type SceneNodesData, type SceneRole, type SceneSatellite, type SceneSatelliteTLE, type SceneSatelliteType, type SceneSatellitesData, type SceneServiceType, type SceneTask, type SceneTaskEntityData, type SceneTaskPriority, type SceneTaskState, type SceneTaskType, type SceneTasksData, type SceneTimelineData, type SceneTimelineEntityData, type SceneTimelineFrame, type SceneTimeseriesPoint, type SceneUserState, type SceneVelocityWGS, SendMessageDto, type UploadFileResponse, type UploadFileResponseData, type WsUploadProgressData };
|