@alicloud/tdsr20200101 3.1.1 → 3.1.4
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/client.d.ts +346 -1
- package/dist/client.js +671 -34
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +810 -27
package/src/client.ts
CHANGED
|
@@ -555,10 +555,12 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
555
555
|
}
|
|
556
556
|
|
|
557
557
|
export class CopySceneRequest extends $tea.Model {
|
|
558
|
+
projectId?: string;
|
|
558
559
|
sceneId?: string;
|
|
559
560
|
sceneName?: string;
|
|
560
561
|
static names(): { [key: string]: string } {
|
|
561
562
|
return {
|
|
563
|
+
projectId: 'ProjectId',
|
|
562
564
|
sceneId: 'SceneId',
|
|
563
565
|
sceneName: 'SceneName',
|
|
564
566
|
};
|
|
@@ -566,6 +568,7 @@ export class CopySceneRequest extends $tea.Model {
|
|
|
566
568
|
|
|
567
569
|
static types(): { [key: string]: any } {
|
|
568
570
|
return {
|
|
571
|
+
projectId: 'string',
|
|
569
572
|
sceneId: 'string',
|
|
570
573
|
sceneName: 'string',
|
|
571
574
|
};
|
|
@@ -632,6 +635,84 @@ export class CopySceneResponse extends $tea.Model {
|
|
|
632
635
|
}
|
|
633
636
|
}
|
|
634
637
|
|
|
638
|
+
export class CreateUploadPolicyRequest extends $tea.Model {
|
|
639
|
+
option?: string;
|
|
640
|
+
type?: string;
|
|
641
|
+
static names(): { [key: string]: string } {
|
|
642
|
+
return {
|
|
643
|
+
option: 'Option',
|
|
644
|
+
type: 'Type',
|
|
645
|
+
};
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
static types(): { [key: string]: any } {
|
|
649
|
+
return {
|
|
650
|
+
option: 'string',
|
|
651
|
+
type: 'string',
|
|
652
|
+
};
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
constructor(map?: { [key: string]: any }) {
|
|
656
|
+
super(map);
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
export class CreateUploadPolicyResponseBody extends $tea.Model {
|
|
661
|
+
code?: number;
|
|
662
|
+
data?: CreateUploadPolicyResponseBodyData;
|
|
663
|
+
message?: string;
|
|
664
|
+
requestId?: string;
|
|
665
|
+
success?: boolean;
|
|
666
|
+
static names(): { [key: string]: string } {
|
|
667
|
+
return {
|
|
668
|
+
code: 'Code',
|
|
669
|
+
data: 'Data',
|
|
670
|
+
message: 'Message',
|
|
671
|
+
requestId: 'RequestId',
|
|
672
|
+
success: 'Success',
|
|
673
|
+
};
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
static types(): { [key: string]: any } {
|
|
677
|
+
return {
|
|
678
|
+
code: 'number',
|
|
679
|
+
data: CreateUploadPolicyResponseBodyData,
|
|
680
|
+
message: 'string',
|
|
681
|
+
requestId: 'string',
|
|
682
|
+
success: 'boolean',
|
|
683
|
+
};
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
constructor(map?: { [key: string]: any }) {
|
|
687
|
+
super(map);
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
export class CreateUploadPolicyResponse extends $tea.Model {
|
|
692
|
+
headers: { [key: string]: string };
|
|
693
|
+
statusCode: number;
|
|
694
|
+
body: CreateUploadPolicyResponseBody;
|
|
695
|
+
static names(): { [key: string]: string } {
|
|
696
|
+
return {
|
|
697
|
+
headers: 'headers',
|
|
698
|
+
statusCode: 'statusCode',
|
|
699
|
+
body: 'body',
|
|
700
|
+
};
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
static types(): { [key: string]: any } {
|
|
704
|
+
return {
|
|
705
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
706
|
+
statusCode: 'number',
|
|
707
|
+
body: CreateUploadPolicyResponseBody,
|
|
708
|
+
};
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
constructor(map?: { [key: string]: any }) {
|
|
712
|
+
super(map);
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
|
|
635
716
|
export class DetailProjectRequest extends $tea.Model {
|
|
636
717
|
id?: string;
|
|
637
718
|
static names(): { [key: string]: string } {
|
|
@@ -745,7 +826,9 @@ export class DetailSceneRequest extends $tea.Model {
|
|
|
745
826
|
}
|
|
746
827
|
|
|
747
828
|
export class DetailSceneResponseBody extends $tea.Model {
|
|
829
|
+
captures?: DetailSceneResponseBodyCaptures[];
|
|
748
830
|
code?: number;
|
|
831
|
+
coverUrl?: string;
|
|
749
832
|
gmtCreate?: number;
|
|
750
833
|
gmtModified?: number;
|
|
751
834
|
id?: string;
|
|
@@ -755,12 +838,16 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
755
838
|
published?: boolean;
|
|
756
839
|
requestId?: string;
|
|
757
840
|
sourceNum?: number;
|
|
841
|
+
status?: string;
|
|
842
|
+
statusName?: string;
|
|
758
843
|
subSceneNum?: number;
|
|
759
844
|
success?: boolean;
|
|
760
845
|
type?: string;
|
|
761
846
|
static names(): { [key: string]: string } {
|
|
762
847
|
return {
|
|
848
|
+
captures: 'Captures',
|
|
763
849
|
code: 'Code',
|
|
850
|
+
coverUrl: 'CoverUrl',
|
|
764
851
|
gmtCreate: 'GmtCreate',
|
|
765
852
|
gmtModified: 'GmtModified',
|
|
766
853
|
id: 'Id',
|
|
@@ -770,6 +857,8 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
770
857
|
published: 'Published',
|
|
771
858
|
requestId: 'RequestId',
|
|
772
859
|
sourceNum: 'SourceNum',
|
|
860
|
+
status: 'Status',
|
|
861
|
+
statusName: 'StatusName',
|
|
773
862
|
subSceneNum: 'SubSceneNum',
|
|
774
863
|
success: 'Success',
|
|
775
864
|
type: 'Type',
|
|
@@ -778,7 +867,9 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
778
867
|
|
|
779
868
|
static types(): { [key: string]: any } {
|
|
780
869
|
return {
|
|
870
|
+
captures: { 'type': 'array', 'itemType': DetailSceneResponseBodyCaptures },
|
|
781
871
|
code: 'number',
|
|
872
|
+
coverUrl: 'string',
|
|
782
873
|
gmtCreate: 'number',
|
|
783
874
|
gmtModified: 'number',
|
|
784
875
|
id: 'string',
|
|
@@ -788,6 +879,8 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
788
879
|
published: 'boolean',
|
|
789
880
|
requestId: 'string',
|
|
790
881
|
sourceNum: 'number',
|
|
882
|
+
status: 'string',
|
|
883
|
+
statusName: 'string',
|
|
791
884
|
subSceneNum: 'number',
|
|
792
885
|
success: 'boolean',
|
|
793
886
|
type: 'string',
|
|
@@ -855,6 +948,7 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
855
948
|
message?: string;
|
|
856
949
|
name?: string;
|
|
857
950
|
originUrl?: string;
|
|
951
|
+
position?: string;
|
|
858
952
|
requestId?: string;
|
|
859
953
|
resourceId?: string;
|
|
860
954
|
status?: number;
|
|
@@ -874,6 +968,7 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
874
968
|
message: 'Message',
|
|
875
969
|
name: 'Name',
|
|
876
970
|
originUrl: 'OriginUrl',
|
|
971
|
+
position: 'Position',
|
|
877
972
|
requestId: 'RequestId',
|
|
878
973
|
resourceId: 'ResourceId',
|
|
879
974
|
status: 'Status',
|
|
@@ -896,6 +991,7 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
896
991
|
message: 'string',
|
|
897
992
|
name: 'string',
|
|
898
993
|
originUrl: 'string',
|
|
994
|
+
position: 'string',
|
|
899
995
|
requestId: 'string',
|
|
900
996
|
resourceId: 'string',
|
|
901
997
|
status: 'number',
|
|
@@ -2283,15 +2379,18 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
2283
2379
|
}
|
|
2284
2380
|
|
|
2285
2381
|
export class GetScenePreviewResourceRequest extends $tea.Model {
|
|
2382
|
+
draft?: boolean;
|
|
2286
2383
|
previewToken?: string;
|
|
2287
2384
|
static names(): { [key: string]: string } {
|
|
2288
2385
|
return {
|
|
2386
|
+
draft: 'Draft',
|
|
2289
2387
|
previewToken: 'PreviewToken',
|
|
2290
2388
|
};
|
|
2291
2389
|
}
|
|
2292
2390
|
|
|
2293
2391
|
static types(): { [key: string]: any } {
|
|
2294
2392
|
return {
|
|
2393
|
+
draft: 'boolean',
|
|
2295
2394
|
previewToken: 'string',
|
|
2296
2395
|
};
|
|
2297
2396
|
}
|
|
@@ -2435,6 +2534,84 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
2435
2534
|
}
|
|
2436
2535
|
}
|
|
2437
2536
|
|
|
2537
|
+
export class GetSourcePackStatusRequest extends $tea.Model {
|
|
2538
|
+
taskId?: string;
|
|
2539
|
+
static names(): { [key: string]: string } {
|
|
2540
|
+
return {
|
|
2541
|
+
taskId: 'TaskId',
|
|
2542
|
+
};
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
static types(): { [key: string]: any } {
|
|
2546
|
+
return {
|
|
2547
|
+
taskId: 'string',
|
|
2548
|
+
};
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
constructor(map?: { [key: string]: any }) {
|
|
2552
|
+
super(map);
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
export class GetSourcePackStatusResponseBody extends $tea.Model {
|
|
2557
|
+
code?: number;
|
|
2558
|
+
data?: GetSourcePackStatusResponseBodyData;
|
|
2559
|
+
message?: string;
|
|
2560
|
+
requestId?: string;
|
|
2561
|
+
success?: boolean;
|
|
2562
|
+
url?: string;
|
|
2563
|
+
static names(): { [key: string]: string } {
|
|
2564
|
+
return {
|
|
2565
|
+
code: 'Code',
|
|
2566
|
+
data: 'Data',
|
|
2567
|
+
message: 'Message',
|
|
2568
|
+
requestId: 'RequestId',
|
|
2569
|
+
success: 'Success',
|
|
2570
|
+
url: 'Url',
|
|
2571
|
+
};
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
static types(): { [key: string]: any } {
|
|
2575
|
+
return {
|
|
2576
|
+
code: 'number',
|
|
2577
|
+
data: GetSourcePackStatusResponseBodyData,
|
|
2578
|
+
message: 'string',
|
|
2579
|
+
requestId: 'string',
|
|
2580
|
+
success: 'boolean',
|
|
2581
|
+
url: 'string',
|
|
2582
|
+
};
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
constructor(map?: { [key: string]: any }) {
|
|
2586
|
+
super(map);
|
|
2587
|
+
}
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2590
|
+
export class GetSourcePackStatusResponse extends $tea.Model {
|
|
2591
|
+
headers: { [key: string]: string };
|
|
2592
|
+
statusCode: number;
|
|
2593
|
+
body: GetSourcePackStatusResponseBody;
|
|
2594
|
+
static names(): { [key: string]: string } {
|
|
2595
|
+
return {
|
|
2596
|
+
headers: 'headers',
|
|
2597
|
+
statusCode: 'statusCode',
|
|
2598
|
+
body: 'body',
|
|
2599
|
+
};
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
static types(): { [key: string]: any } {
|
|
2603
|
+
return {
|
|
2604
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2605
|
+
statusCode: 'number',
|
|
2606
|
+
body: GetSourcePackStatusResponseBody,
|
|
2607
|
+
};
|
|
2608
|
+
}
|
|
2609
|
+
|
|
2610
|
+
constructor(map?: { [key: string]: any }) {
|
|
2611
|
+
super(map);
|
|
2612
|
+
}
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2438
2615
|
export class GetSubSceneTaskStatusRequest extends $tea.Model {
|
|
2439
2616
|
subSceneId?: string;
|
|
2440
2617
|
static names(): { [key: string]: string } {
|
|
@@ -2671,7 +2848,7 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2671
2848
|
|
|
2672
2849
|
export class LabelBuildRequest extends $tea.Model {
|
|
2673
2850
|
mode?: string;
|
|
2674
|
-
|
|
2851
|
+
modelStyle?: string;
|
|
2675
2852
|
optimizeWallWidth?: string;
|
|
2676
2853
|
planStyle?: string;
|
|
2677
2854
|
sceneId?: string;
|
|
@@ -2679,7 +2856,7 @@ export class LabelBuildRequest extends $tea.Model {
|
|
|
2679
2856
|
static names(): { [key: string]: string } {
|
|
2680
2857
|
return {
|
|
2681
2858
|
mode: 'Mode',
|
|
2682
|
-
|
|
2859
|
+
modelStyle: 'ModelStyle',
|
|
2683
2860
|
optimizeWallWidth: 'OptimizeWallWidth',
|
|
2684
2861
|
planStyle: 'PlanStyle',
|
|
2685
2862
|
sceneId: 'SceneId',
|
|
@@ -2690,7 +2867,7 @@ export class LabelBuildRequest extends $tea.Model {
|
|
|
2690
2867
|
static types(): { [key: string]: any } {
|
|
2691
2868
|
return {
|
|
2692
2869
|
mode: 'string',
|
|
2693
|
-
|
|
2870
|
+
modelStyle: 'string',
|
|
2694
2871
|
optimizeWallWidth: 'string',
|
|
2695
2872
|
planStyle: 'string',
|
|
2696
2873
|
sceneId: 'string',
|
|
@@ -3284,6 +3461,81 @@ export class PackSceneResponse extends $tea.Model {
|
|
|
3284
3461
|
}
|
|
3285
3462
|
}
|
|
3286
3463
|
|
|
3464
|
+
export class PackSourceRequest extends $tea.Model {
|
|
3465
|
+
sceneId?: string;
|
|
3466
|
+
static names(): { [key: string]: string } {
|
|
3467
|
+
return {
|
|
3468
|
+
sceneId: 'SceneId',
|
|
3469
|
+
};
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
static types(): { [key: string]: any } {
|
|
3473
|
+
return {
|
|
3474
|
+
sceneId: 'string',
|
|
3475
|
+
};
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
constructor(map?: { [key: string]: any }) {
|
|
3479
|
+
super(map);
|
|
3480
|
+
}
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
export class PackSourceResponseBody extends $tea.Model {
|
|
3484
|
+
code?: number;
|
|
3485
|
+
data?: PackSourceResponseBodyData;
|
|
3486
|
+
message?: string;
|
|
3487
|
+
requestId?: string;
|
|
3488
|
+
success?: boolean;
|
|
3489
|
+
static names(): { [key: string]: string } {
|
|
3490
|
+
return {
|
|
3491
|
+
code: 'Code',
|
|
3492
|
+
data: 'Data',
|
|
3493
|
+
message: 'Message',
|
|
3494
|
+
requestId: 'RequestId',
|
|
3495
|
+
success: 'Success',
|
|
3496
|
+
};
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
static types(): { [key: string]: any } {
|
|
3500
|
+
return {
|
|
3501
|
+
code: 'number',
|
|
3502
|
+
data: PackSourceResponseBodyData,
|
|
3503
|
+
message: 'string',
|
|
3504
|
+
requestId: 'string',
|
|
3505
|
+
success: 'boolean',
|
|
3506
|
+
};
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
constructor(map?: { [key: string]: any }) {
|
|
3510
|
+
super(map);
|
|
3511
|
+
}
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
export class PackSourceResponse extends $tea.Model {
|
|
3515
|
+
headers: { [key: string]: string };
|
|
3516
|
+
statusCode: number;
|
|
3517
|
+
body: PackSourceResponseBody;
|
|
3518
|
+
static names(): { [key: string]: string } {
|
|
3519
|
+
return {
|
|
3520
|
+
headers: 'headers',
|
|
3521
|
+
statusCode: 'statusCode',
|
|
3522
|
+
body: 'body',
|
|
3523
|
+
};
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
static types(): { [key: string]: any } {
|
|
3527
|
+
return {
|
|
3528
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3529
|
+
statusCode: 'number',
|
|
3530
|
+
body: PackSourceResponseBody,
|
|
3531
|
+
};
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3534
|
+
constructor(map?: { [key: string]: any }) {
|
|
3535
|
+
super(map);
|
|
3536
|
+
}
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3287
3539
|
export class PredImageRequest extends $tea.Model {
|
|
3288
3540
|
correctVertical?: boolean;
|
|
3289
3541
|
countDetectDoor?: number;
|
|
@@ -3524,7 +3776,7 @@ export class PublishHotspotResponse extends $tea.Model {
|
|
|
3524
3776
|
}
|
|
3525
3777
|
}
|
|
3526
3778
|
|
|
3527
|
-
export class
|
|
3779
|
+
export class PublishHotspotConfigRequest extends $tea.Model {
|
|
3528
3780
|
sceneId?: string;
|
|
3529
3781
|
static names(): { [key: string]: string } {
|
|
3530
3782
|
return {
|
|
@@ -3543,17 +3795,15 @@ export class PublishSceneRequest extends $tea.Model {
|
|
|
3543
3795
|
}
|
|
3544
3796
|
}
|
|
3545
3797
|
|
|
3546
|
-
export class
|
|
3798
|
+
export class PublishHotspotConfigResponseBody extends $tea.Model {
|
|
3547
3799
|
code?: number;
|
|
3548
3800
|
message?: string;
|
|
3549
|
-
previewUrl?: string;
|
|
3550
3801
|
requestId?: string;
|
|
3551
3802
|
success?: boolean;
|
|
3552
3803
|
static names(): { [key: string]: string } {
|
|
3553
3804
|
return {
|
|
3554
3805
|
code: 'Code',
|
|
3555
3806
|
message: 'Message',
|
|
3556
|
-
previewUrl: 'PreviewUrl',
|
|
3557
3807
|
requestId: 'RequestId',
|
|
3558
3808
|
success: 'Success',
|
|
3559
3809
|
};
|
|
@@ -3563,7 +3813,6 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
3563
3813
|
return {
|
|
3564
3814
|
code: 'number',
|
|
3565
3815
|
message: 'string',
|
|
3566
|
-
previewUrl: 'string',
|
|
3567
3816
|
requestId: 'string',
|
|
3568
3817
|
success: 'boolean',
|
|
3569
3818
|
};
|
|
@@ -3574,10 +3823,10 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
3574
3823
|
}
|
|
3575
3824
|
}
|
|
3576
3825
|
|
|
3577
|
-
export class
|
|
3826
|
+
export class PublishHotspotConfigResponse extends $tea.Model {
|
|
3578
3827
|
headers: { [key: string]: string };
|
|
3579
3828
|
statusCode: number;
|
|
3580
|
-
body:
|
|
3829
|
+
body: PublishHotspotConfigResponseBody;
|
|
3581
3830
|
static names(): { [key: string]: string } {
|
|
3582
3831
|
return {
|
|
3583
3832
|
headers: 'headers',
|
|
@@ -3590,7 +3839,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
3590
3839
|
return {
|
|
3591
3840
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3592
3841
|
statusCode: 'number',
|
|
3593
|
-
body:
|
|
3842
|
+
body: PublishHotspotConfigResponseBody,
|
|
3594
3843
|
};
|
|
3595
3844
|
}
|
|
3596
3845
|
|
|
@@ -3599,7 +3848,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
3599
3848
|
}
|
|
3600
3849
|
}
|
|
3601
3850
|
|
|
3602
|
-
export class
|
|
3851
|
+
export class PublishSceneRequest extends $tea.Model {
|
|
3603
3852
|
sceneId?: string;
|
|
3604
3853
|
static names(): { [key: string]: string } {
|
|
3605
3854
|
return {
|
|
@@ -3618,18 +3867,18 @@ export class PublishStatusRequest extends $tea.Model {
|
|
|
3618
3867
|
}
|
|
3619
3868
|
}
|
|
3620
3869
|
|
|
3621
|
-
export class
|
|
3870
|
+
export class PublishSceneResponseBody extends $tea.Model {
|
|
3622
3871
|
code?: number;
|
|
3623
3872
|
message?: string;
|
|
3873
|
+
previewUrl?: string;
|
|
3624
3874
|
requestId?: string;
|
|
3625
|
-
status?: string;
|
|
3626
3875
|
success?: boolean;
|
|
3627
3876
|
static names(): { [key: string]: string } {
|
|
3628
3877
|
return {
|
|
3629
3878
|
code: 'Code',
|
|
3630
3879
|
message: 'Message',
|
|
3880
|
+
previewUrl: 'PreviewUrl',
|
|
3631
3881
|
requestId: 'RequestId',
|
|
3632
|
-
status: 'Status',
|
|
3633
3882
|
success: 'Success',
|
|
3634
3883
|
};
|
|
3635
3884
|
}
|
|
@@ -3638,8 +3887,8 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3638
3887
|
return {
|
|
3639
3888
|
code: 'number',
|
|
3640
3889
|
message: 'string',
|
|
3890
|
+
previewUrl: 'string',
|
|
3641
3891
|
requestId: 'string',
|
|
3642
|
-
status: 'string',
|
|
3643
3892
|
success: 'boolean',
|
|
3644
3893
|
};
|
|
3645
3894
|
}
|
|
@@ -3649,10 +3898,10 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3649
3898
|
}
|
|
3650
3899
|
}
|
|
3651
3900
|
|
|
3652
|
-
export class
|
|
3901
|
+
export class PublishSceneResponse extends $tea.Model {
|
|
3653
3902
|
headers: { [key: string]: string };
|
|
3654
3903
|
statusCode: number;
|
|
3655
|
-
body:
|
|
3904
|
+
body: PublishSceneResponseBody;
|
|
3656
3905
|
static names(): { [key: string]: string } {
|
|
3657
3906
|
return {
|
|
3658
3907
|
headers: 'headers',
|
|
@@ -3665,7 +3914,7 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3665
3914
|
return {
|
|
3666
3915
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3667
3916
|
statusCode: 'number',
|
|
3668
|
-
body:
|
|
3917
|
+
body: PublishSceneResponseBody,
|
|
3669
3918
|
};
|
|
3670
3919
|
}
|
|
3671
3920
|
|
|
@@ -3674,17 +3923,17 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3674
3923
|
}
|
|
3675
3924
|
}
|
|
3676
3925
|
|
|
3677
|
-
export class
|
|
3678
|
-
|
|
3926
|
+
export class PublishStatusRequest extends $tea.Model {
|
|
3927
|
+
sceneId?: string;
|
|
3679
3928
|
static names(): { [key: string]: string } {
|
|
3680
3929
|
return {
|
|
3681
|
-
|
|
3930
|
+
sceneId: 'SceneId',
|
|
3682
3931
|
};
|
|
3683
3932
|
}
|
|
3684
3933
|
|
|
3685
3934
|
static types(): { [key: string]: any } {
|
|
3686
3935
|
return {
|
|
3687
|
-
|
|
3936
|
+
sceneId: 'string',
|
|
3688
3937
|
};
|
|
3689
3938
|
}
|
|
3690
3939
|
|
|
@@ -3693,17 +3942,21 @@ export class RecoveryOriginImageRequest extends $tea.Model {
|
|
|
3693
3942
|
}
|
|
3694
3943
|
}
|
|
3695
3944
|
|
|
3696
|
-
export class
|
|
3945
|
+
export class PublishStatusResponseBody extends $tea.Model {
|
|
3697
3946
|
code?: number;
|
|
3698
3947
|
message?: string;
|
|
3699
3948
|
requestId?: string;
|
|
3949
|
+
status?: string;
|
|
3700
3950
|
success?: boolean;
|
|
3951
|
+
syncStatus?: string;
|
|
3701
3952
|
static names(): { [key: string]: string } {
|
|
3702
3953
|
return {
|
|
3703
3954
|
code: 'Code',
|
|
3704
3955
|
message: 'Message',
|
|
3705
3956
|
requestId: 'RequestId',
|
|
3957
|
+
status: 'Status',
|
|
3706
3958
|
success: 'Success',
|
|
3959
|
+
syncStatus: 'SyncStatus',
|
|
3707
3960
|
};
|
|
3708
3961
|
}
|
|
3709
3962
|
|
|
@@ -3712,7 +3965,9 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3712
3965
|
code: 'number',
|
|
3713
3966
|
message: 'string',
|
|
3714
3967
|
requestId: 'string',
|
|
3968
|
+
status: 'string',
|
|
3715
3969
|
success: 'boolean',
|
|
3970
|
+
syncStatus: 'string',
|
|
3716
3971
|
};
|
|
3717
3972
|
}
|
|
3718
3973
|
|
|
@@ -3721,7 +3976,79 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3721
3976
|
}
|
|
3722
3977
|
}
|
|
3723
3978
|
|
|
3724
|
-
export class
|
|
3979
|
+
export class PublishStatusResponse extends $tea.Model {
|
|
3980
|
+
headers: { [key: string]: string };
|
|
3981
|
+
statusCode: number;
|
|
3982
|
+
body: PublishStatusResponseBody;
|
|
3983
|
+
static names(): { [key: string]: string } {
|
|
3984
|
+
return {
|
|
3985
|
+
headers: 'headers',
|
|
3986
|
+
statusCode: 'statusCode',
|
|
3987
|
+
body: 'body',
|
|
3988
|
+
};
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
static types(): { [key: string]: any } {
|
|
3992
|
+
return {
|
|
3993
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3994
|
+
statusCode: 'number',
|
|
3995
|
+
body: PublishStatusResponseBody,
|
|
3996
|
+
};
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
constructor(map?: { [key: string]: any }) {
|
|
4000
|
+
super(map);
|
|
4001
|
+
}
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
export class RecoveryOriginImageRequest extends $tea.Model {
|
|
4005
|
+
subSceneId?: string;
|
|
4006
|
+
static names(): { [key: string]: string } {
|
|
4007
|
+
return {
|
|
4008
|
+
subSceneId: 'SubSceneId',
|
|
4009
|
+
};
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
static types(): { [key: string]: any } {
|
|
4013
|
+
return {
|
|
4014
|
+
subSceneId: 'string',
|
|
4015
|
+
};
|
|
4016
|
+
}
|
|
4017
|
+
|
|
4018
|
+
constructor(map?: { [key: string]: any }) {
|
|
4019
|
+
super(map);
|
|
4020
|
+
}
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
4024
|
+
code?: number;
|
|
4025
|
+
message?: string;
|
|
4026
|
+
requestId?: string;
|
|
4027
|
+
success?: boolean;
|
|
4028
|
+
static names(): { [key: string]: string } {
|
|
4029
|
+
return {
|
|
4030
|
+
code: 'Code',
|
|
4031
|
+
message: 'Message',
|
|
4032
|
+
requestId: 'RequestId',
|
|
4033
|
+
success: 'Success',
|
|
4034
|
+
};
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
static types(): { [key: string]: any } {
|
|
4038
|
+
return {
|
|
4039
|
+
code: 'number',
|
|
4040
|
+
message: 'string',
|
|
4041
|
+
requestId: 'string',
|
|
4042
|
+
success: 'boolean',
|
|
4043
|
+
};
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4046
|
+
constructor(map?: { [key: string]: any }) {
|
|
4047
|
+
super(map);
|
|
4048
|
+
}
|
|
4049
|
+
}
|
|
4050
|
+
|
|
4051
|
+
export class RecoveryOriginImageResponse extends $tea.Model {
|
|
3725
4052
|
headers: { [key: string]: string };
|
|
3726
4053
|
statusCode: number;
|
|
3727
4054
|
body: RecoveryOriginImageResponseBody;
|
|
@@ -4127,6 +4454,156 @@ export class SaveHotspotTagResponse extends $tea.Model {
|
|
|
4127
4454
|
}
|
|
4128
4455
|
}
|
|
4129
4456
|
|
|
4457
|
+
export class SaveHotspotTagListRequest extends $tea.Model {
|
|
4458
|
+
hotspotListJson?: string;
|
|
4459
|
+
sceneId?: string;
|
|
4460
|
+
static names(): { [key: string]: string } {
|
|
4461
|
+
return {
|
|
4462
|
+
hotspotListJson: 'HotspotListJson',
|
|
4463
|
+
sceneId: 'SceneId',
|
|
4464
|
+
};
|
|
4465
|
+
}
|
|
4466
|
+
|
|
4467
|
+
static types(): { [key: string]: any } {
|
|
4468
|
+
return {
|
|
4469
|
+
hotspotListJson: 'string',
|
|
4470
|
+
sceneId: 'string',
|
|
4471
|
+
};
|
|
4472
|
+
}
|
|
4473
|
+
|
|
4474
|
+
constructor(map?: { [key: string]: any }) {
|
|
4475
|
+
super(map);
|
|
4476
|
+
}
|
|
4477
|
+
}
|
|
4478
|
+
|
|
4479
|
+
export class SaveHotspotTagListResponseBody extends $tea.Model {
|
|
4480
|
+
code?: number;
|
|
4481
|
+
message?: string;
|
|
4482
|
+
requestId?: string;
|
|
4483
|
+
success?: boolean;
|
|
4484
|
+
static names(): { [key: string]: string } {
|
|
4485
|
+
return {
|
|
4486
|
+
code: 'Code',
|
|
4487
|
+
message: 'Message',
|
|
4488
|
+
requestId: 'RequestId',
|
|
4489
|
+
success: 'Success',
|
|
4490
|
+
};
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
static types(): { [key: string]: any } {
|
|
4494
|
+
return {
|
|
4495
|
+
code: 'number',
|
|
4496
|
+
message: 'string',
|
|
4497
|
+
requestId: 'string',
|
|
4498
|
+
success: 'boolean',
|
|
4499
|
+
};
|
|
4500
|
+
}
|
|
4501
|
+
|
|
4502
|
+
constructor(map?: { [key: string]: any }) {
|
|
4503
|
+
super(map);
|
|
4504
|
+
}
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
export class SaveHotspotTagListResponse extends $tea.Model {
|
|
4508
|
+
headers: { [key: string]: string };
|
|
4509
|
+
statusCode: number;
|
|
4510
|
+
body: SaveHotspotTagListResponseBody;
|
|
4511
|
+
static names(): { [key: string]: string } {
|
|
4512
|
+
return {
|
|
4513
|
+
headers: 'headers',
|
|
4514
|
+
statusCode: 'statusCode',
|
|
4515
|
+
body: 'body',
|
|
4516
|
+
};
|
|
4517
|
+
}
|
|
4518
|
+
|
|
4519
|
+
static types(): { [key: string]: any } {
|
|
4520
|
+
return {
|
|
4521
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4522
|
+
statusCode: 'number',
|
|
4523
|
+
body: SaveHotspotTagListResponseBody,
|
|
4524
|
+
};
|
|
4525
|
+
}
|
|
4526
|
+
|
|
4527
|
+
constructor(map?: { [key: string]: any }) {
|
|
4528
|
+
super(map);
|
|
4529
|
+
}
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
export class SaveModelConfigRequest extends $tea.Model {
|
|
4533
|
+
data?: string;
|
|
4534
|
+
sceneId?: string;
|
|
4535
|
+
static names(): { [key: string]: string } {
|
|
4536
|
+
return {
|
|
4537
|
+
data: 'Data',
|
|
4538
|
+
sceneId: 'SceneId',
|
|
4539
|
+
};
|
|
4540
|
+
}
|
|
4541
|
+
|
|
4542
|
+
static types(): { [key: string]: any } {
|
|
4543
|
+
return {
|
|
4544
|
+
data: 'string',
|
|
4545
|
+
sceneId: 'string',
|
|
4546
|
+
};
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
constructor(map?: { [key: string]: any }) {
|
|
4550
|
+
super(map);
|
|
4551
|
+
}
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
export class SaveModelConfigResponseBody extends $tea.Model {
|
|
4555
|
+
code?: number;
|
|
4556
|
+
message?: string;
|
|
4557
|
+
requestId?: string;
|
|
4558
|
+
success?: boolean;
|
|
4559
|
+
static names(): { [key: string]: string } {
|
|
4560
|
+
return {
|
|
4561
|
+
code: 'Code',
|
|
4562
|
+
message: 'Message',
|
|
4563
|
+
requestId: 'RequestId',
|
|
4564
|
+
success: 'Success',
|
|
4565
|
+
};
|
|
4566
|
+
}
|
|
4567
|
+
|
|
4568
|
+
static types(): { [key: string]: any } {
|
|
4569
|
+
return {
|
|
4570
|
+
code: 'number',
|
|
4571
|
+
message: 'string',
|
|
4572
|
+
requestId: 'string',
|
|
4573
|
+
success: 'boolean',
|
|
4574
|
+
};
|
|
4575
|
+
}
|
|
4576
|
+
|
|
4577
|
+
constructor(map?: { [key: string]: any }) {
|
|
4578
|
+
super(map);
|
|
4579
|
+
}
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
export class SaveModelConfigResponse extends $tea.Model {
|
|
4583
|
+
headers: { [key: string]: string };
|
|
4584
|
+
statusCode: number;
|
|
4585
|
+
body: SaveModelConfigResponseBody;
|
|
4586
|
+
static names(): { [key: string]: string } {
|
|
4587
|
+
return {
|
|
4588
|
+
headers: 'headers',
|
|
4589
|
+
statusCode: 'statusCode',
|
|
4590
|
+
body: 'body',
|
|
4591
|
+
};
|
|
4592
|
+
}
|
|
4593
|
+
|
|
4594
|
+
static types(): { [key: string]: any } {
|
|
4595
|
+
return {
|
|
4596
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4597
|
+
statusCode: 'number',
|
|
4598
|
+
body: SaveModelConfigResponseBody,
|
|
4599
|
+
};
|
|
4600
|
+
}
|
|
4601
|
+
|
|
4602
|
+
constructor(map?: { [key: string]: any }) {
|
|
4603
|
+
super(map);
|
|
4604
|
+
}
|
|
4605
|
+
}
|
|
4606
|
+
|
|
4130
4607
|
export class ScenePublishRequest extends $tea.Model {
|
|
4131
4608
|
sceneId?: string;
|
|
4132
4609
|
static names(): { [key: string]: string } {
|
|
@@ -4914,6 +5391,65 @@ export class CopySceneResponseBodyData extends $tea.Model {
|
|
|
4914
5391
|
}
|
|
4915
5392
|
}
|
|
4916
5393
|
|
|
5394
|
+
export class CreateUploadPolicyResponseBodyData extends $tea.Model {
|
|
5395
|
+
accessId?: string;
|
|
5396
|
+
callback?: string;
|
|
5397
|
+
dir?: string;
|
|
5398
|
+
expire?: string;
|
|
5399
|
+
host?: string;
|
|
5400
|
+
policy?: string;
|
|
5401
|
+
signature?: string;
|
|
5402
|
+
static names(): { [key: string]: string } {
|
|
5403
|
+
return {
|
|
5404
|
+
accessId: 'AccessId',
|
|
5405
|
+
callback: 'Callback',
|
|
5406
|
+
dir: 'Dir',
|
|
5407
|
+
expire: 'Expire',
|
|
5408
|
+
host: 'Host',
|
|
5409
|
+
policy: 'Policy',
|
|
5410
|
+
signature: 'Signature',
|
|
5411
|
+
};
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
static types(): { [key: string]: any } {
|
|
5415
|
+
return {
|
|
5416
|
+
accessId: 'string',
|
|
5417
|
+
callback: 'string',
|
|
5418
|
+
dir: 'string',
|
|
5419
|
+
expire: 'string',
|
|
5420
|
+
host: 'string',
|
|
5421
|
+
policy: 'string',
|
|
5422
|
+
signature: 'string',
|
|
5423
|
+
};
|
|
5424
|
+
}
|
|
5425
|
+
|
|
5426
|
+
constructor(map?: { [key: string]: any }) {
|
|
5427
|
+
super(map);
|
|
5428
|
+
}
|
|
5429
|
+
}
|
|
5430
|
+
|
|
5431
|
+
export class DetailSceneResponseBodyCaptures extends $tea.Model {
|
|
5432
|
+
title?: string;
|
|
5433
|
+
url?: string;
|
|
5434
|
+
static names(): { [key: string]: string } {
|
|
5435
|
+
return {
|
|
5436
|
+
title: 'Title',
|
|
5437
|
+
url: 'Url',
|
|
5438
|
+
};
|
|
5439
|
+
}
|
|
5440
|
+
|
|
5441
|
+
static types(): { [key: string]: any } {
|
|
5442
|
+
return {
|
|
5443
|
+
title: 'string',
|
|
5444
|
+
url: 'string',
|
|
5445
|
+
};
|
|
5446
|
+
}
|
|
5447
|
+
|
|
5448
|
+
constructor(map?: { [key: string]: any }) {
|
|
5449
|
+
super(map);
|
|
5450
|
+
}
|
|
5451
|
+
}
|
|
5452
|
+
|
|
4917
5453
|
export class GetConnDataResponseBodyList extends $tea.Model {
|
|
4918
5454
|
id?: string;
|
|
4919
5455
|
mapId?: string;
|
|
@@ -5315,11 +5851,13 @@ export class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
5315
5851
|
}
|
|
5316
5852
|
|
|
5317
5853
|
export class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
|
|
5854
|
+
hotspotTagConfig?: string;
|
|
5318
5855
|
modelConfig?: string;
|
|
5319
5856
|
orthomapConfig?: string;
|
|
5320
5857
|
rootPath?: string;
|
|
5321
5858
|
static names(): { [key: string]: string } {
|
|
5322
5859
|
return {
|
|
5860
|
+
hotspotTagConfig: 'HotspotTagConfig',
|
|
5323
5861
|
modelConfig: 'ModelConfig',
|
|
5324
5862
|
orthomapConfig: 'OrthomapConfig',
|
|
5325
5863
|
rootPath: 'RootPath',
|
|
@@ -5328,6 +5866,7 @@ export class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $t
|
|
|
5328
5866
|
|
|
5329
5867
|
static types(): { [key: string]: any } {
|
|
5330
5868
|
return {
|
|
5869
|
+
hotspotTagConfig: 'string',
|
|
5331
5870
|
modelConfig: 'string',
|
|
5332
5871
|
orthomapConfig: 'string',
|
|
5333
5872
|
rootPath: 'string',
|
|
@@ -5389,6 +5928,28 @@ export class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
|
5389
5928
|
}
|
|
5390
5929
|
}
|
|
5391
5930
|
|
|
5931
|
+
export class GetSourcePackStatusResponseBodyData extends $tea.Model {
|
|
5932
|
+
progress?: number;
|
|
5933
|
+
status?: string;
|
|
5934
|
+
static names(): { [key: string]: string } {
|
|
5935
|
+
return {
|
|
5936
|
+
progress: 'Progress',
|
|
5937
|
+
status: 'Status',
|
|
5938
|
+
};
|
|
5939
|
+
}
|
|
5940
|
+
|
|
5941
|
+
static types(): { [key: string]: any } {
|
|
5942
|
+
return {
|
|
5943
|
+
progress: 'number',
|
|
5944
|
+
status: 'string',
|
|
5945
|
+
};
|
|
5946
|
+
}
|
|
5947
|
+
|
|
5948
|
+
constructor(map?: { [key: string]: any }) {
|
|
5949
|
+
super(map);
|
|
5950
|
+
}
|
|
5951
|
+
}
|
|
5952
|
+
|
|
5392
5953
|
export class GetSubSceneTaskStatusResponseBodyList extends $tea.Model {
|
|
5393
5954
|
errorCode?: string;
|
|
5394
5955
|
errorMsg?: string;
|
|
@@ -5464,6 +6025,7 @@ export class ListProjectResponseBodyList extends $tea.Model {
|
|
|
5464
6025
|
}
|
|
5465
6026
|
|
|
5466
6027
|
export class ListSceneResponseBodyList extends $tea.Model {
|
|
6028
|
+
coverUrl?: string;
|
|
5467
6029
|
gmtCreate?: number;
|
|
5468
6030
|
gmtModified?: number;
|
|
5469
6031
|
id?: string;
|
|
@@ -5471,10 +6033,13 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
5471
6033
|
previewToken?: string;
|
|
5472
6034
|
published?: boolean;
|
|
5473
6035
|
sourceNum?: number;
|
|
6036
|
+
status?: string;
|
|
6037
|
+
statusName?: string;
|
|
5474
6038
|
subSceneNum?: number;
|
|
5475
6039
|
type?: string;
|
|
5476
6040
|
static names(): { [key: string]: string } {
|
|
5477
6041
|
return {
|
|
6042
|
+
coverUrl: 'CoverUrl',
|
|
5478
6043
|
gmtCreate: 'GmtCreate',
|
|
5479
6044
|
gmtModified: 'GmtModified',
|
|
5480
6045
|
id: 'Id',
|
|
@@ -5482,6 +6047,8 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
5482
6047
|
previewToken: 'PreviewToken',
|
|
5483
6048
|
published: 'Published',
|
|
5484
6049
|
sourceNum: 'SourceNum',
|
|
6050
|
+
status: 'Status',
|
|
6051
|
+
statusName: 'StatusName',
|
|
5485
6052
|
subSceneNum: 'SubSceneNum',
|
|
5486
6053
|
type: 'Type',
|
|
5487
6054
|
};
|
|
@@ -5489,6 +6056,7 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
5489
6056
|
|
|
5490
6057
|
static types(): { [key: string]: any } {
|
|
5491
6058
|
return {
|
|
6059
|
+
coverUrl: 'string',
|
|
5492
6060
|
gmtCreate: 'number',
|
|
5493
6061
|
gmtModified: 'number',
|
|
5494
6062
|
id: 'string',
|
|
@@ -5496,6 +6064,8 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
5496
6064
|
previewToken: 'string',
|
|
5497
6065
|
published: 'boolean',
|
|
5498
6066
|
sourceNum: 'number',
|
|
6067
|
+
status: 'string',
|
|
6068
|
+
statusName: 'string',
|
|
5499
6069
|
subSceneNum: 'number',
|
|
5500
6070
|
type: 'string',
|
|
5501
6071
|
};
|
|
@@ -5586,6 +6156,25 @@ export class PackSceneResponseBodyData extends $tea.Model {
|
|
|
5586
6156
|
}
|
|
5587
6157
|
}
|
|
5588
6158
|
|
|
6159
|
+
export class PackSourceResponseBodyData extends $tea.Model {
|
|
6160
|
+
taskId?: string;
|
|
6161
|
+
static names(): { [key: string]: string } {
|
|
6162
|
+
return {
|
|
6163
|
+
taskId: 'TaskId',
|
|
6164
|
+
};
|
|
6165
|
+
}
|
|
6166
|
+
|
|
6167
|
+
static types(): { [key: string]: any } {
|
|
6168
|
+
return {
|
|
6169
|
+
taskId: 'string',
|
|
6170
|
+
};
|
|
6171
|
+
}
|
|
6172
|
+
|
|
6173
|
+
constructor(map?: { [key: string]: any }) {
|
|
6174
|
+
super(map);
|
|
6175
|
+
}
|
|
6176
|
+
}
|
|
6177
|
+
|
|
5589
6178
|
|
|
5590
6179
|
export default class Client extends OpenApi {
|
|
5591
6180
|
|
|
@@ -5850,6 +6439,10 @@ export default class Client extends OpenApi {
|
|
|
5850
6439
|
async copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse> {
|
|
5851
6440
|
Util.validateModel(request);
|
|
5852
6441
|
let query = { };
|
|
6442
|
+
if (!Util.isUnset(request.projectId)) {
|
|
6443
|
+
query["ProjectId"] = request.projectId;
|
|
6444
|
+
}
|
|
6445
|
+
|
|
5853
6446
|
if (!Util.isUnset(request.sceneId)) {
|
|
5854
6447
|
query["SceneId"] = request.sceneId;
|
|
5855
6448
|
}
|
|
@@ -5880,6 +6473,39 @@ export default class Client extends OpenApi {
|
|
|
5880
6473
|
return await this.copySceneWithOptions(request, runtime);
|
|
5881
6474
|
}
|
|
5882
6475
|
|
|
6476
|
+
async createUploadPolicyWithOptions(request: CreateUploadPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateUploadPolicyResponse> {
|
|
6477
|
+
Util.validateModel(request);
|
|
6478
|
+
let query = { };
|
|
6479
|
+
if (!Util.isUnset(request.option)) {
|
|
6480
|
+
query["Option"] = request.option;
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
if (!Util.isUnset(request.type)) {
|
|
6484
|
+
query["Type"] = request.type;
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6487
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6488
|
+
query: OpenApiUtil.query(query),
|
|
6489
|
+
});
|
|
6490
|
+
let params = new $OpenApi.Params({
|
|
6491
|
+
action: "CreateUploadPolicy",
|
|
6492
|
+
version: "2020-01-01",
|
|
6493
|
+
protocol: "HTTPS",
|
|
6494
|
+
pathname: "/",
|
|
6495
|
+
method: "POST",
|
|
6496
|
+
authType: "AK",
|
|
6497
|
+
style: "RPC",
|
|
6498
|
+
reqBodyType: "formData",
|
|
6499
|
+
bodyType: "json",
|
|
6500
|
+
});
|
|
6501
|
+
return $tea.cast<CreateUploadPolicyResponse>(await this.callApi(params, req, runtime), new CreateUploadPolicyResponse({}));
|
|
6502
|
+
}
|
|
6503
|
+
|
|
6504
|
+
async createUploadPolicy(request: CreateUploadPolicyRequest): Promise<CreateUploadPolicyResponse> {
|
|
6505
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6506
|
+
return await this.createUploadPolicyWithOptions(request, runtime);
|
|
6507
|
+
}
|
|
6508
|
+
|
|
5883
6509
|
async detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse> {
|
|
5884
6510
|
Util.validateModel(request);
|
|
5885
6511
|
let query = { };
|
|
@@ -6527,6 +7153,10 @@ export default class Client extends OpenApi {
|
|
|
6527
7153
|
async getScenePreviewResourceWithOptions(request: GetScenePreviewResourceRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewResourceResponse> {
|
|
6528
7154
|
Util.validateModel(request);
|
|
6529
7155
|
let query = { };
|
|
7156
|
+
if (!Util.isUnset(request.draft)) {
|
|
7157
|
+
query["Draft"] = request.draft;
|
|
7158
|
+
}
|
|
7159
|
+
|
|
6530
7160
|
if (!Util.isUnset(request.previewToken)) {
|
|
6531
7161
|
query["PreviewToken"] = request.previewToken;
|
|
6532
7162
|
}
|
|
@@ -6582,6 +7212,35 @@ export default class Client extends OpenApi {
|
|
|
6582
7212
|
return await this.getSingleConnDataWithOptions(request, runtime);
|
|
6583
7213
|
}
|
|
6584
7214
|
|
|
7215
|
+
async getSourcePackStatusWithOptions(request: GetSourcePackStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSourcePackStatusResponse> {
|
|
7216
|
+
Util.validateModel(request);
|
|
7217
|
+
let query = { };
|
|
7218
|
+
if (!Util.isUnset(request.taskId)) {
|
|
7219
|
+
query["TaskId"] = request.taskId;
|
|
7220
|
+
}
|
|
7221
|
+
|
|
7222
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7223
|
+
query: OpenApiUtil.query(query),
|
|
7224
|
+
});
|
|
7225
|
+
let params = new $OpenApi.Params({
|
|
7226
|
+
action: "GetSourcePackStatus",
|
|
7227
|
+
version: "2020-01-01",
|
|
7228
|
+
protocol: "HTTPS",
|
|
7229
|
+
pathname: "/",
|
|
7230
|
+
method: "POST",
|
|
7231
|
+
authType: "AK",
|
|
7232
|
+
style: "RPC",
|
|
7233
|
+
reqBodyType: "formData",
|
|
7234
|
+
bodyType: "json",
|
|
7235
|
+
});
|
|
7236
|
+
return $tea.cast<GetSourcePackStatusResponse>(await this.callApi(params, req, runtime), new GetSourcePackStatusResponse({}));
|
|
7237
|
+
}
|
|
7238
|
+
|
|
7239
|
+
async getSourcePackStatus(request: GetSourcePackStatusRequest): Promise<GetSourcePackStatusResponse> {
|
|
7240
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7241
|
+
return await this.getSourcePackStatusWithOptions(request, runtime);
|
|
7242
|
+
}
|
|
7243
|
+
|
|
6585
7244
|
async getSubSceneTaskStatusWithOptions(request: GetSubSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSubSceneTaskStatusResponse> {
|
|
6586
7245
|
Util.validateModel(request);
|
|
6587
7246
|
let query = { };
|
|
@@ -6676,8 +7335,8 @@ export default class Client extends OpenApi {
|
|
|
6676
7335
|
query["Mode"] = request.mode;
|
|
6677
7336
|
}
|
|
6678
7337
|
|
|
6679
|
-
if (!Util.isUnset(request.
|
|
6680
|
-
query["
|
|
7338
|
+
if (!Util.isUnset(request.modelStyle)) {
|
|
7339
|
+
query["ModelStyle"] = request.modelStyle;
|
|
6681
7340
|
}
|
|
6682
7341
|
|
|
6683
7342
|
if (!Util.isUnset(request.optimizeWallWidth)) {
|
|
@@ -6944,6 +7603,35 @@ export default class Client extends OpenApi {
|
|
|
6944
7603
|
return await this.packSceneWithOptions(request, runtime);
|
|
6945
7604
|
}
|
|
6946
7605
|
|
|
7606
|
+
async packSourceWithOptions(request: PackSourceRequest, runtime: $Util.RuntimeOptions): Promise<PackSourceResponse> {
|
|
7607
|
+
Util.validateModel(request);
|
|
7608
|
+
let query = { };
|
|
7609
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
7610
|
+
query["SceneId"] = request.sceneId;
|
|
7611
|
+
}
|
|
7612
|
+
|
|
7613
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7614
|
+
query: OpenApiUtil.query(query),
|
|
7615
|
+
});
|
|
7616
|
+
let params = new $OpenApi.Params({
|
|
7617
|
+
action: "PackSource",
|
|
7618
|
+
version: "2020-01-01",
|
|
7619
|
+
protocol: "HTTPS",
|
|
7620
|
+
pathname: "/",
|
|
7621
|
+
method: "POST",
|
|
7622
|
+
authType: "AK",
|
|
7623
|
+
style: "RPC",
|
|
7624
|
+
reqBodyType: "formData",
|
|
7625
|
+
bodyType: "json",
|
|
7626
|
+
});
|
|
7627
|
+
return $tea.cast<PackSourceResponse>(await this.callApi(params, req, runtime), new PackSourceResponse({}));
|
|
7628
|
+
}
|
|
7629
|
+
|
|
7630
|
+
async packSource(request: PackSourceRequest): Promise<PackSourceResponse> {
|
|
7631
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7632
|
+
return await this.packSourceWithOptions(request, runtime);
|
|
7633
|
+
}
|
|
7634
|
+
|
|
6947
7635
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
6948
7636
|
Util.validateModel(request);
|
|
6949
7637
|
let query = { };
|
|
@@ -7051,6 +7739,35 @@ export default class Client extends OpenApi {
|
|
|
7051
7739
|
return await this.publishHotspotWithOptions(request, runtime);
|
|
7052
7740
|
}
|
|
7053
7741
|
|
|
7742
|
+
async publishHotspotConfigWithOptions(request: PublishHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<PublishHotspotConfigResponse> {
|
|
7743
|
+
Util.validateModel(request);
|
|
7744
|
+
let query = { };
|
|
7745
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
7746
|
+
query["SceneId"] = request.sceneId;
|
|
7747
|
+
}
|
|
7748
|
+
|
|
7749
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7750
|
+
query: OpenApiUtil.query(query),
|
|
7751
|
+
});
|
|
7752
|
+
let params = new $OpenApi.Params({
|
|
7753
|
+
action: "PublishHotspotConfig",
|
|
7754
|
+
version: "2020-01-01",
|
|
7755
|
+
protocol: "HTTPS",
|
|
7756
|
+
pathname: "/",
|
|
7757
|
+
method: "POST",
|
|
7758
|
+
authType: "AK",
|
|
7759
|
+
style: "RPC",
|
|
7760
|
+
reqBodyType: "formData",
|
|
7761
|
+
bodyType: "json",
|
|
7762
|
+
});
|
|
7763
|
+
return $tea.cast<PublishHotspotConfigResponse>(await this.callApi(params, req, runtime), new PublishHotspotConfigResponse({}));
|
|
7764
|
+
}
|
|
7765
|
+
|
|
7766
|
+
async publishHotspotConfig(request: PublishHotspotConfigRequest): Promise<PublishHotspotConfigResponse> {
|
|
7767
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7768
|
+
return await this.publishHotspotConfigWithOptions(request, runtime);
|
|
7769
|
+
}
|
|
7770
|
+
|
|
7054
7771
|
async publishSceneWithOptions(request: PublishSceneRequest, runtime: $Util.RuntimeOptions): Promise<PublishSceneResponse> {
|
|
7055
7772
|
Util.validateModel(request);
|
|
7056
7773
|
let query = { };
|
|
@@ -7307,6 +8024,72 @@ export default class Client extends OpenApi {
|
|
|
7307
8024
|
return await this.saveHotspotTagWithOptions(request, runtime);
|
|
7308
8025
|
}
|
|
7309
8026
|
|
|
8027
|
+
async saveHotspotTagListWithOptions(request: SaveHotspotTagListRequest, runtime: $Util.RuntimeOptions): Promise<SaveHotspotTagListResponse> {
|
|
8028
|
+
Util.validateModel(request);
|
|
8029
|
+
let query = { };
|
|
8030
|
+
if (!Util.isUnset(request.hotspotListJson)) {
|
|
8031
|
+
query["HotspotListJson"] = request.hotspotListJson;
|
|
8032
|
+
}
|
|
8033
|
+
|
|
8034
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
8035
|
+
query["SceneId"] = request.sceneId;
|
|
8036
|
+
}
|
|
8037
|
+
|
|
8038
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8039
|
+
query: OpenApiUtil.query(query),
|
|
8040
|
+
});
|
|
8041
|
+
let params = new $OpenApi.Params({
|
|
8042
|
+
action: "SaveHotspotTagList",
|
|
8043
|
+
version: "2020-01-01",
|
|
8044
|
+
protocol: "HTTPS",
|
|
8045
|
+
pathname: "/",
|
|
8046
|
+
method: "POST",
|
|
8047
|
+
authType: "AK",
|
|
8048
|
+
style: "RPC",
|
|
8049
|
+
reqBodyType: "formData",
|
|
8050
|
+
bodyType: "json",
|
|
8051
|
+
});
|
|
8052
|
+
return $tea.cast<SaveHotspotTagListResponse>(await this.callApi(params, req, runtime), new SaveHotspotTagListResponse({}));
|
|
8053
|
+
}
|
|
8054
|
+
|
|
8055
|
+
async saveHotspotTagList(request: SaveHotspotTagListRequest): Promise<SaveHotspotTagListResponse> {
|
|
8056
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8057
|
+
return await this.saveHotspotTagListWithOptions(request, runtime);
|
|
8058
|
+
}
|
|
8059
|
+
|
|
8060
|
+
async saveModelConfigWithOptions(request: SaveModelConfigRequest, runtime: $Util.RuntimeOptions): Promise<SaveModelConfigResponse> {
|
|
8061
|
+
Util.validateModel(request);
|
|
8062
|
+
let query = { };
|
|
8063
|
+
if (!Util.isUnset(request.data)) {
|
|
8064
|
+
query["Data"] = request.data;
|
|
8065
|
+
}
|
|
8066
|
+
|
|
8067
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
8068
|
+
query["SceneId"] = request.sceneId;
|
|
8069
|
+
}
|
|
8070
|
+
|
|
8071
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8072
|
+
query: OpenApiUtil.query(query),
|
|
8073
|
+
});
|
|
8074
|
+
let params = new $OpenApi.Params({
|
|
8075
|
+
action: "SaveModelConfig",
|
|
8076
|
+
version: "2020-01-01",
|
|
8077
|
+
protocol: "HTTPS",
|
|
8078
|
+
pathname: "/",
|
|
8079
|
+
method: "POST",
|
|
8080
|
+
authType: "AK",
|
|
8081
|
+
style: "RPC",
|
|
8082
|
+
reqBodyType: "formData",
|
|
8083
|
+
bodyType: "json",
|
|
8084
|
+
});
|
|
8085
|
+
return $tea.cast<SaveModelConfigResponse>(await this.callApi(params, req, runtime), new SaveModelConfigResponse({}));
|
|
8086
|
+
}
|
|
8087
|
+
|
|
8088
|
+
async saveModelConfig(request: SaveModelConfigRequest): Promise<SaveModelConfigResponse> {
|
|
8089
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8090
|
+
return await this.saveModelConfigWithOptions(request, runtime);
|
|
8091
|
+
}
|
|
8092
|
+
|
|
7310
8093
|
async scenePublishWithOptions(request: ScenePublishRequest, runtime: $Util.RuntimeOptions): Promise<ScenePublishResponse> {
|
|
7311
8094
|
Util.validateModel(request);
|
|
7312
8095
|
let query = { };
|