@alicloud/tdsr20200101 3.0.4 → 3.0.7
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +164 -299
- package/dist/client.js +348 -686
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +397 -800
package/src/client.ts
CHANGED
|
@@ -458,56 +458,17 @@ export class AddSubSceneResponse extends $tea.Model {
|
|
|
458
458
|
}
|
|
459
459
|
}
|
|
460
460
|
|
|
461
|
-
export class
|
|
462
|
-
|
|
463
|
-
country?: string;
|
|
464
|
-
gmtWakeup?: string;
|
|
465
|
-
hid?: number;
|
|
466
|
-
interrupt?: boolean;
|
|
467
|
-
invoker?: string;
|
|
468
|
-
level?: number;
|
|
469
|
-
message?: string;
|
|
470
|
-
pk?: string;
|
|
471
|
-
prompt?: string;
|
|
472
|
-
success?: boolean;
|
|
473
|
-
taskExtraData?: string;
|
|
474
|
-
taskIdentifier?: string;
|
|
475
|
-
url?: string;
|
|
461
|
+
export class CheckUserPropertyRequest extends $tea.Model {
|
|
462
|
+
uid?: string;
|
|
476
463
|
static names(): { [key: string]: string } {
|
|
477
464
|
return {
|
|
478
|
-
|
|
479
|
-
country: 'Country',
|
|
480
|
-
gmtWakeup: 'GmtWakeup',
|
|
481
|
-
hid: 'Hid',
|
|
482
|
-
interrupt: 'Interrupt',
|
|
483
|
-
invoker: 'Invoker',
|
|
484
|
-
level: 'Level',
|
|
485
|
-
message: 'Message',
|
|
486
|
-
pk: 'Pk',
|
|
487
|
-
prompt: 'Prompt',
|
|
488
|
-
success: 'Success',
|
|
489
|
-
taskExtraData: 'TaskExtraData',
|
|
490
|
-
taskIdentifier: 'TaskIdentifier',
|
|
491
|
-
url: 'Url',
|
|
465
|
+
uid: 'Uid',
|
|
492
466
|
};
|
|
493
467
|
}
|
|
494
468
|
|
|
495
469
|
static types(): { [key: string]: any } {
|
|
496
470
|
return {
|
|
497
|
-
|
|
498
|
-
country: 'string',
|
|
499
|
-
gmtWakeup: 'string',
|
|
500
|
-
hid: 'number',
|
|
501
|
-
interrupt: 'boolean',
|
|
502
|
-
invoker: 'string',
|
|
503
|
-
level: 'number',
|
|
504
|
-
message: 'string',
|
|
505
|
-
pk: 'string',
|
|
506
|
-
prompt: 'string',
|
|
507
|
-
success: 'boolean',
|
|
508
|
-
taskExtraData: 'string',
|
|
509
|
-
taskIdentifier: 'string',
|
|
510
|
-
url: 'string',
|
|
471
|
+
uid: 'string',
|
|
511
472
|
};
|
|
512
473
|
}
|
|
513
474
|
|
|
@@ -516,285 +477,27 @@ export class CheckResourceRequest extends $tea.Model {
|
|
|
516
477
|
}
|
|
517
478
|
}
|
|
518
479
|
|
|
519
|
-
export class
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
gmtWakeup?: string;
|
|
523
|
-
hid?: number;
|
|
524
|
-
interrupt?: boolean;
|
|
525
|
-
invoker?: string;
|
|
526
|
-
level?: number;
|
|
480
|
+
export class CheckUserPropertyResponseBody extends $tea.Model {
|
|
481
|
+
code?: number;
|
|
482
|
+
match?: boolean;
|
|
527
483
|
message?: string;
|
|
528
|
-
pk?: string;
|
|
529
|
-
prompt?: string;
|
|
530
484
|
requestId?: string;
|
|
531
485
|
success?: boolean;
|
|
532
|
-
taskExtraData?: string;
|
|
533
|
-
taskIdentifier?: string;
|
|
534
|
-
url?: string;
|
|
535
486
|
static names(): { [key: string]: string } {
|
|
536
487
|
return {
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
gmtWakeup: 'GmtWakeup',
|
|
540
|
-
hid: 'Hid',
|
|
541
|
-
interrupt: 'Interrupt',
|
|
542
|
-
invoker: 'Invoker',
|
|
543
|
-
level: 'Level',
|
|
488
|
+
code: 'Code',
|
|
489
|
+
match: 'Match',
|
|
544
490
|
message: 'Message',
|
|
545
|
-
pk: 'Pk',
|
|
546
|
-
prompt: 'Prompt',
|
|
547
491
|
requestId: 'RequestId',
|
|
548
492
|
success: 'Success',
|
|
549
|
-
taskExtraData: 'TaskExtraData',
|
|
550
|
-
taskIdentifier: 'TaskIdentifier',
|
|
551
|
-
url: 'Url',
|
|
552
493
|
};
|
|
553
494
|
}
|
|
554
495
|
|
|
555
496
|
static types(): { [key: string]: any } {
|
|
556
497
|
return {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
gmtWakeup: 'string',
|
|
560
|
-
hid: 'number',
|
|
561
|
-
interrupt: 'boolean',
|
|
562
|
-
invoker: 'string',
|
|
563
|
-
level: 'number',
|
|
498
|
+
code: 'number',
|
|
499
|
+
match: 'boolean',
|
|
564
500
|
message: 'string',
|
|
565
|
-
pk: 'string',
|
|
566
|
-
prompt: 'string',
|
|
567
|
-
requestId: 'string',
|
|
568
|
-
success: 'boolean',
|
|
569
|
-
taskExtraData: 'string',
|
|
570
|
-
taskIdentifier: 'string',
|
|
571
|
-
url: 'string',
|
|
572
|
-
};
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
constructor(map?: { [key: string]: any }) {
|
|
576
|
-
super(map);
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
export class CheckResourceResponse extends $tea.Model {
|
|
581
|
-
headers: { [key: string]: string };
|
|
582
|
-
body: CheckResourceResponseBody;
|
|
583
|
-
static names(): { [key: string]: string } {
|
|
584
|
-
return {
|
|
585
|
-
headers: 'headers',
|
|
586
|
-
body: 'body',
|
|
587
|
-
};
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
static types(): { [key: string]: any } {
|
|
591
|
-
return {
|
|
592
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
593
|
-
body: CheckResourceResponseBody,
|
|
594
|
-
};
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
constructor(map?: { [key: string]: any }) {
|
|
598
|
-
super(map);
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
export class CreateProjectRequest extends $tea.Model {
|
|
603
|
-
builderUserIdList?: string;
|
|
604
|
-
businessId?: string;
|
|
605
|
-
businessUserIdList?: string;
|
|
606
|
-
gatherUserIdList?: string;
|
|
607
|
-
name?: string;
|
|
608
|
-
static names(): { [key: string]: string } {
|
|
609
|
-
return {
|
|
610
|
-
builderUserIdList: 'BuilderUserIdList',
|
|
611
|
-
businessId: 'BusinessId',
|
|
612
|
-
businessUserIdList: 'BusinessUserIdList',
|
|
613
|
-
gatherUserIdList: 'GatherUserIdList',
|
|
614
|
-
name: 'Name',
|
|
615
|
-
};
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
static types(): { [key: string]: any } {
|
|
619
|
-
return {
|
|
620
|
-
builderUserIdList: 'string',
|
|
621
|
-
businessId: 'string',
|
|
622
|
-
businessUserIdList: 'string',
|
|
623
|
-
gatherUserIdList: 'string',
|
|
624
|
-
name: 'string',
|
|
625
|
-
};
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
constructor(map?: { [key: string]: any }) {
|
|
629
|
-
super(map);
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
export class CreateProjectResponseBody extends $tea.Model {
|
|
634
|
-
errMessage?: string;
|
|
635
|
-
id?: number;
|
|
636
|
-
name?: string;
|
|
637
|
-
requestId?: string;
|
|
638
|
-
success?: boolean;
|
|
639
|
-
static names(): { [key: string]: string } {
|
|
640
|
-
return {
|
|
641
|
-
errMessage: 'ErrMessage',
|
|
642
|
-
id: 'Id',
|
|
643
|
-
name: 'Name',
|
|
644
|
-
requestId: 'RequestId',
|
|
645
|
-
success: 'Success',
|
|
646
|
-
};
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
static types(): { [key: string]: any } {
|
|
650
|
-
return {
|
|
651
|
-
errMessage: 'string',
|
|
652
|
-
id: 'number',
|
|
653
|
-
name: 'string',
|
|
654
|
-
requestId: 'string',
|
|
655
|
-
success: 'boolean',
|
|
656
|
-
};
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
constructor(map?: { [key: string]: any }) {
|
|
660
|
-
super(map);
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
export class CreateProjectResponse extends $tea.Model {
|
|
665
|
-
headers: { [key: string]: string };
|
|
666
|
-
body: CreateProjectResponseBody;
|
|
667
|
-
static names(): { [key: string]: string } {
|
|
668
|
-
return {
|
|
669
|
-
headers: 'headers',
|
|
670
|
-
body: 'body',
|
|
671
|
-
};
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
static types(): { [key: string]: any } {
|
|
675
|
-
return {
|
|
676
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
677
|
-
body: CreateProjectResponseBody,
|
|
678
|
-
};
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
constructor(map?: { [key: string]: any }) {
|
|
682
|
-
super(map);
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
export class CreateSceneRequest extends $tea.Model {
|
|
687
|
-
name?: string;
|
|
688
|
-
projectId?: string;
|
|
689
|
-
static names(): { [key: string]: string } {
|
|
690
|
-
return {
|
|
691
|
-
name: 'Name',
|
|
692
|
-
projectId: 'ProjectId',
|
|
693
|
-
};
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
static types(): { [key: string]: any } {
|
|
697
|
-
return {
|
|
698
|
-
name: 'string',
|
|
699
|
-
projectId: 'string',
|
|
700
|
-
};
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
constructor(map?: { [key: string]: any }) {
|
|
704
|
-
super(map);
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
export class CreateSceneResponseBody extends $tea.Model {
|
|
709
|
-
errMessage?: string;
|
|
710
|
-
previewToken?: string;
|
|
711
|
-
requestId?: string;
|
|
712
|
-
sceneId?: number;
|
|
713
|
-
success?: boolean;
|
|
714
|
-
static names(): { [key: string]: string } {
|
|
715
|
-
return {
|
|
716
|
-
errMessage: 'ErrMessage',
|
|
717
|
-
previewToken: 'PreviewToken',
|
|
718
|
-
requestId: 'RequestId',
|
|
719
|
-
sceneId: 'SceneId',
|
|
720
|
-
success: 'Success',
|
|
721
|
-
};
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
static types(): { [key: string]: any } {
|
|
725
|
-
return {
|
|
726
|
-
errMessage: 'string',
|
|
727
|
-
previewToken: 'string',
|
|
728
|
-
requestId: 'string',
|
|
729
|
-
sceneId: 'number',
|
|
730
|
-
success: 'boolean',
|
|
731
|
-
};
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
constructor(map?: { [key: string]: any }) {
|
|
735
|
-
super(map);
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
export class CreateSceneResponse extends $tea.Model {
|
|
740
|
-
headers: { [key: string]: string };
|
|
741
|
-
body: CreateSceneResponseBody;
|
|
742
|
-
static names(): { [key: string]: string } {
|
|
743
|
-
return {
|
|
744
|
-
headers: 'headers',
|
|
745
|
-
body: 'body',
|
|
746
|
-
};
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
static types(): { [key: string]: any } {
|
|
750
|
-
return {
|
|
751
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
752
|
-
body: CreateSceneResponseBody,
|
|
753
|
-
};
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
constructor(map?: { [key: string]: any }) {
|
|
757
|
-
super(map);
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
export class DeleteFileRequest extends $tea.Model {
|
|
762
|
-
paramFile?: string;
|
|
763
|
-
subSceneUuid?: string;
|
|
764
|
-
static names(): { [key: string]: string } {
|
|
765
|
-
return {
|
|
766
|
-
paramFile: 'ParamFile',
|
|
767
|
-
subSceneUuid: 'SubSceneUuid',
|
|
768
|
-
};
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
static types(): { [key: string]: any } {
|
|
772
|
-
return {
|
|
773
|
-
paramFile: 'string',
|
|
774
|
-
subSceneUuid: 'string',
|
|
775
|
-
};
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
constructor(map?: { [key: string]: any }) {
|
|
779
|
-
super(map);
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
export class DeleteFileResponseBody extends $tea.Model {
|
|
784
|
-
errMessage?: string;
|
|
785
|
-
requestId?: string;
|
|
786
|
-
success?: boolean;
|
|
787
|
-
static names(): { [key: string]: string } {
|
|
788
|
-
return {
|
|
789
|
-
errMessage: 'ErrMessage',
|
|
790
|
-
requestId: 'RequestId',
|
|
791
|
-
success: 'Success',
|
|
792
|
-
};
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
static types(): { [key: string]: any } {
|
|
796
|
-
return {
|
|
797
|
-
errMessage: 'string',
|
|
798
501
|
requestId: 'string',
|
|
799
502
|
success: 'boolean',
|
|
800
503
|
};
|
|
@@ -805,9 +508,9 @@ export class DeleteFileResponseBody extends $tea.Model {
|
|
|
805
508
|
}
|
|
806
509
|
}
|
|
807
510
|
|
|
808
|
-
export class
|
|
511
|
+
export class CheckUserPropertyResponse extends $tea.Model {
|
|
809
512
|
headers: { [key: string]: string };
|
|
810
|
-
body:
|
|
513
|
+
body: CheckUserPropertyResponseBody;
|
|
811
514
|
static names(): { [key: string]: string } {
|
|
812
515
|
return {
|
|
813
516
|
headers: 'headers',
|
|
@@ -818,73 +521,7 @@ export class DeleteFileResponse extends $tea.Model {
|
|
|
818
521
|
static types(): { [key: string]: any } {
|
|
819
522
|
return {
|
|
820
523
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
821
|
-
body:
|
|
822
|
-
};
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
constructor(map?: { [key: string]: any }) {
|
|
826
|
-
super(map);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
export class DeleteProjectRequest extends $tea.Model {
|
|
831
|
-
projectId?: string;
|
|
832
|
-
static names(): { [key: string]: string } {
|
|
833
|
-
return {
|
|
834
|
-
projectId: 'ProjectId',
|
|
835
|
-
};
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
static types(): { [key: string]: any } {
|
|
839
|
-
return {
|
|
840
|
-
projectId: 'string',
|
|
841
|
-
};
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
constructor(map?: { [key: string]: any }) {
|
|
845
|
-
super(map);
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
export class DeleteProjectResponseBody extends $tea.Model {
|
|
850
|
-
errMessage?: string;
|
|
851
|
-
requestId?: string;
|
|
852
|
-
success?: boolean;
|
|
853
|
-
static names(): { [key: string]: string } {
|
|
854
|
-
return {
|
|
855
|
-
errMessage: 'ErrMessage',
|
|
856
|
-
requestId: 'RequestId',
|
|
857
|
-
success: 'Success',
|
|
858
|
-
};
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
static types(): { [key: string]: any } {
|
|
862
|
-
return {
|
|
863
|
-
errMessage: 'string',
|
|
864
|
-
requestId: 'string',
|
|
865
|
-
success: 'boolean',
|
|
866
|
-
};
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
constructor(map?: { [key: string]: any }) {
|
|
870
|
-
super(map);
|
|
871
|
-
}
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
export class DeleteProjectResponse extends $tea.Model {
|
|
875
|
-
headers: { [key: string]: string };
|
|
876
|
-
body: DeleteProjectResponseBody;
|
|
877
|
-
static names(): { [key: string]: string } {
|
|
878
|
-
return {
|
|
879
|
-
headers: 'headers',
|
|
880
|
-
body: 'body',
|
|
881
|
-
};
|
|
882
|
-
}
|
|
883
|
-
|
|
884
|
-
static types(): { [key: string]: any } {
|
|
885
|
-
return {
|
|
886
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
887
|
-
body: DeleteProjectResponseBody,
|
|
524
|
+
body: CheckUserPropertyResponseBody,
|
|
888
525
|
};
|
|
889
526
|
}
|
|
890
527
|
|
|
@@ -1105,12 +742,16 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
1105
742
|
gmtCreate?: number;
|
|
1106
743
|
gmtModified?: number;
|
|
1107
744
|
id?: string;
|
|
745
|
+
imageUrl?: string;
|
|
746
|
+
layoutData?: string;
|
|
1108
747
|
message?: string;
|
|
1109
748
|
name?: string;
|
|
749
|
+
originUrl?: string;
|
|
1110
750
|
requestId?: string;
|
|
1111
751
|
resourceId?: string;
|
|
1112
752
|
status?: number;
|
|
1113
753
|
success?: boolean;
|
|
754
|
+
type?: string;
|
|
1114
755
|
url?: string;
|
|
1115
756
|
static names(): { [key: string]: string } {
|
|
1116
757
|
return {
|
|
@@ -1120,12 +761,16 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
1120
761
|
gmtCreate: 'GmtCreate',
|
|
1121
762
|
gmtModified: 'GmtModified',
|
|
1122
763
|
id: 'Id',
|
|
764
|
+
imageUrl: 'ImageUrl',
|
|
765
|
+
layoutData: 'LayoutData',
|
|
1123
766
|
message: 'Message',
|
|
1124
767
|
name: 'Name',
|
|
768
|
+
originUrl: 'OriginUrl',
|
|
1125
769
|
requestId: 'RequestId',
|
|
1126
770
|
resourceId: 'ResourceId',
|
|
1127
771
|
status: 'Status',
|
|
1128
772
|
success: 'Success',
|
|
773
|
+
type: 'Type',
|
|
1129
774
|
url: 'Url',
|
|
1130
775
|
};
|
|
1131
776
|
}
|
|
@@ -1138,12 +783,16 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
1138
783
|
gmtCreate: 'number',
|
|
1139
784
|
gmtModified: 'number',
|
|
1140
785
|
id: 'string',
|
|
786
|
+
imageUrl: 'string',
|
|
787
|
+
layoutData: 'string',
|
|
1141
788
|
message: 'string',
|
|
1142
789
|
name: 'string',
|
|
790
|
+
originUrl: 'string',
|
|
1143
791
|
requestId: 'string',
|
|
1144
792
|
resourceId: 'string',
|
|
1145
793
|
status: 'number',
|
|
1146
794
|
success: 'boolean',
|
|
795
|
+
type: 'string',
|
|
1147
796
|
url: 'string',
|
|
1148
797
|
};
|
|
1149
798
|
}
|
|
@@ -1940,20 +1589,17 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1940
1589
|
}
|
|
1941
1590
|
}
|
|
1942
1591
|
|
|
1943
|
-
export class
|
|
1944
|
-
|
|
1945
|
-
type?: string;
|
|
1592
|
+
export class GetRectifyImageRequest extends $tea.Model {
|
|
1593
|
+
subSceneId?: string;
|
|
1946
1594
|
static names(): { [key: string]: string } {
|
|
1947
1595
|
return {
|
|
1948
|
-
|
|
1949
|
-
type: 'Type',
|
|
1596
|
+
subSceneId: 'SubSceneId',
|
|
1950
1597
|
};
|
|
1951
1598
|
}
|
|
1952
1599
|
|
|
1953
1600
|
static types(): { [key: string]: any } {
|
|
1954
1601
|
return {
|
|
1955
|
-
|
|
1956
|
-
type: 'string',
|
|
1602
|
+
subSceneId: 'string',
|
|
1957
1603
|
};
|
|
1958
1604
|
}
|
|
1959
1605
|
|
|
@@ -1962,29 +1608,29 @@ export class GetPolicyRequest extends $tea.Model {
|
|
|
1962
1608
|
}
|
|
1963
1609
|
}
|
|
1964
1610
|
|
|
1965
|
-
export class
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
objectString?: string;
|
|
1611
|
+
export class GetRectifyImageResponseBody extends $tea.Model {
|
|
1612
|
+
code?: number;
|
|
1613
|
+
message?: string;
|
|
1969
1614
|
requestId?: string;
|
|
1970
1615
|
success?: boolean;
|
|
1616
|
+
url?: string;
|
|
1971
1617
|
static names(): { [key: string]: string } {
|
|
1972
1618
|
return {
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
objectString: 'ObjectString',
|
|
1619
|
+
code: 'Code',
|
|
1620
|
+
message: 'Message',
|
|
1976
1621
|
requestId: 'RequestId',
|
|
1977
1622
|
success: 'Success',
|
|
1623
|
+
url: 'Url',
|
|
1978
1624
|
};
|
|
1979
1625
|
}
|
|
1980
1626
|
|
|
1981
1627
|
static types(): { [key: string]: any } {
|
|
1982
1628
|
return {
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
objectString: 'string',
|
|
1629
|
+
code: 'number',
|
|
1630
|
+
message: 'string',
|
|
1986
1631
|
requestId: 'string',
|
|
1987
1632
|
success: 'boolean',
|
|
1633
|
+
url: 'string',
|
|
1988
1634
|
};
|
|
1989
1635
|
}
|
|
1990
1636
|
|
|
@@ -1993,9 +1639,9 @@ export class GetPolicyResponseBody extends $tea.Model {
|
|
|
1993
1639
|
}
|
|
1994
1640
|
}
|
|
1995
1641
|
|
|
1996
|
-
export class
|
|
1642
|
+
export class GetRectifyImageResponse extends $tea.Model {
|
|
1997
1643
|
headers: { [key: string]: string };
|
|
1998
|
-
body:
|
|
1644
|
+
body: GetRectifyImageResponseBody;
|
|
1999
1645
|
static names(): { [key: string]: string } {
|
|
2000
1646
|
return {
|
|
2001
1647
|
headers: 'headers',
|
|
@@ -2006,7 +1652,7 @@ export class GetPolicyResponse extends $tea.Model {
|
|
|
2006
1652
|
static types(): { [key: string]: any } {
|
|
2007
1653
|
return {
|
|
2008
1654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2009
|
-
body:
|
|
1655
|
+
body: GetRectifyImageResponseBody,
|
|
2010
1656
|
};
|
|
2011
1657
|
}
|
|
2012
1658
|
|
|
@@ -2015,17 +1661,17 @@ export class GetPolicyResponse extends $tea.Model {
|
|
|
2015
1661
|
}
|
|
2016
1662
|
}
|
|
2017
1663
|
|
|
2018
|
-
export class
|
|
2019
|
-
|
|
1664
|
+
export class GetSceneBuildTaskStatusRequest extends $tea.Model {
|
|
1665
|
+
sceneId?: string;
|
|
2020
1666
|
static names(): { [key: string]: string } {
|
|
2021
1667
|
return {
|
|
2022
|
-
|
|
1668
|
+
sceneId: 'SceneId',
|
|
2023
1669
|
};
|
|
2024
1670
|
}
|
|
2025
1671
|
|
|
2026
1672
|
static types(): { [key: string]: any } {
|
|
2027
1673
|
return {
|
|
2028
|
-
|
|
1674
|
+
sceneId: 'string',
|
|
2029
1675
|
};
|
|
2030
1676
|
}
|
|
2031
1677
|
|
|
@@ -2034,29 +1680,38 @@ export class GetRectifyImageRequest extends $tea.Model {
|
|
|
2034
1680
|
}
|
|
2035
1681
|
}
|
|
2036
1682
|
|
|
2037
|
-
export class
|
|
1683
|
+
export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
2038
1684
|
code?: number;
|
|
1685
|
+
errorCode?: string;
|
|
1686
|
+
errorMsg?: string;
|
|
2039
1687
|
message?: string;
|
|
2040
1688
|
requestId?: string;
|
|
1689
|
+
sceneId?: string;
|
|
1690
|
+
status?: string;
|
|
2041
1691
|
success?: boolean;
|
|
2042
|
-
url?: string;
|
|
2043
1692
|
static names(): { [key: string]: string } {
|
|
2044
1693
|
return {
|
|
2045
1694
|
code: 'Code',
|
|
1695
|
+
errorCode: 'ErrorCode',
|
|
1696
|
+
errorMsg: 'ErrorMsg',
|
|
2046
1697
|
message: 'Message',
|
|
2047
1698
|
requestId: 'RequestId',
|
|
1699
|
+
sceneId: 'SceneId',
|
|
1700
|
+
status: 'Status',
|
|
2048
1701
|
success: 'Success',
|
|
2049
|
-
url: 'Url',
|
|
2050
1702
|
};
|
|
2051
1703
|
}
|
|
2052
1704
|
|
|
2053
1705
|
static types(): { [key: string]: any } {
|
|
2054
1706
|
return {
|
|
2055
1707
|
code: 'number',
|
|
1708
|
+
errorCode: 'string',
|
|
1709
|
+
errorMsg: 'string',
|
|
2056
1710
|
message: 'string',
|
|
2057
1711
|
requestId: 'string',
|
|
1712
|
+
sceneId: 'string',
|
|
1713
|
+
status: 'string',
|
|
2058
1714
|
success: 'boolean',
|
|
2059
|
-
url: 'string',
|
|
2060
1715
|
};
|
|
2061
1716
|
}
|
|
2062
1717
|
|
|
@@ -2065,9 +1720,9 @@ export class GetRectifyImageResponseBody extends $tea.Model {
|
|
|
2065
1720
|
}
|
|
2066
1721
|
}
|
|
2067
1722
|
|
|
2068
|
-
export class
|
|
1723
|
+
export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
2069
1724
|
headers: { [key: string]: string };
|
|
2070
|
-
body:
|
|
1725
|
+
body: GetSceneBuildTaskStatusResponseBody;
|
|
2071
1726
|
static names(): { [key: string]: string } {
|
|
2072
1727
|
return {
|
|
2073
1728
|
headers: 'headers',
|
|
@@ -2078,7 +1733,7 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
2078
1733
|
static types(): { [key: string]: any } {
|
|
2079
1734
|
return {
|
|
2080
1735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2081
|
-
body:
|
|
1736
|
+
body: GetSceneBuildTaskStatusResponseBody,
|
|
2082
1737
|
};
|
|
2083
1738
|
}
|
|
2084
1739
|
|
|
@@ -2087,17 +1742,26 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
2087
1742
|
}
|
|
2088
1743
|
}
|
|
2089
1744
|
|
|
2090
|
-
export class
|
|
2091
|
-
|
|
1745
|
+
export class GetScenePreviewDataRequest extends $tea.Model {
|
|
1746
|
+
domain?: string;
|
|
1747
|
+
enabled?: boolean;
|
|
1748
|
+
previewToken?: string;
|
|
1749
|
+
showTag?: boolean;
|
|
2092
1750
|
static names(): { [key: string]: string } {
|
|
2093
1751
|
return {
|
|
2094
|
-
|
|
1752
|
+
domain: 'Domain',
|
|
1753
|
+
enabled: 'Enabled',
|
|
1754
|
+
previewToken: 'PreviewToken',
|
|
1755
|
+
showTag: 'ShowTag',
|
|
2095
1756
|
};
|
|
2096
1757
|
}
|
|
2097
1758
|
|
|
2098
1759
|
static types(): { [key: string]: any } {
|
|
2099
1760
|
return {
|
|
2100
|
-
|
|
1761
|
+
domain: 'string',
|
|
1762
|
+
enabled: 'boolean',
|
|
1763
|
+
previewToken: 'string',
|
|
1764
|
+
showTag: 'boolean',
|
|
2101
1765
|
};
|
|
2102
1766
|
}
|
|
2103
1767
|
|
|
@@ -2106,24 +1770,18 @@ export class GetSceneBuildTaskStatusRequest extends $tea.Model {
|
|
|
2106
1770
|
}
|
|
2107
1771
|
}
|
|
2108
1772
|
|
|
2109
|
-
export class
|
|
1773
|
+
export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
2110
1774
|
code?: number;
|
|
2111
|
-
|
|
2112
|
-
errorMsg?: string;
|
|
1775
|
+
data?: GetScenePreviewDataResponseBodyData;
|
|
2113
1776
|
message?: string;
|
|
2114
1777
|
requestId?: string;
|
|
2115
|
-
sceneId?: string;
|
|
2116
|
-
status?: string;
|
|
2117
1778
|
success?: boolean;
|
|
2118
1779
|
static names(): { [key: string]: string } {
|
|
2119
1780
|
return {
|
|
2120
1781
|
code: 'Code',
|
|
2121
|
-
|
|
2122
|
-
errorMsg: 'ErrorMsg',
|
|
1782
|
+
data: 'Data',
|
|
2123
1783
|
message: 'Message',
|
|
2124
1784
|
requestId: 'RequestId',
|
|
2125
|
-
sceneId: 'SceneId',
|
|
2126
|
-
status: 'Status',
|
|
2127
1785
|
success: 'Success',
|
|
2128
1786
|
};
|
|
2129
1787
|
}
|
|
@@ -2131,12 +1789,9 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
2131
1789
|
static types(): { [key: string]: any } {
|
|
2132
1790
|
return {
|
|
2133
1791
|
code: 'number',
|
|
2134
|
-
|
|
2135
|
-
errorMsg: 'string',
|
|
1792
|
+
data: GetScenePreviewDataResponseBodyData,
|
|
2136
1793
|
message: 'string',
|
|
2137
1794
|
requestId: 'string',
|
|
2138
|
-
sceneId: 'string',
|
|
2139
|
-
status: 'string',
|
|
2140
1795
|
success: 'boolean',
|
|
2141
1796
|
};
|
|
2142
1797
|
}
|
|
@@ -2146,9 +1801,9 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
2146
1801
|
}
|
|
2147
1802
|
}
|
|
2148
1803
|
|
|
2149
|
-
export class
|
|
1804
|
+
export class GetScenePreviewDataResponse extends $tea.Model {
|
|
2150
1805
|
headers: { [key: string]: string };
|
|
2151
|
-
body:
|
|
1806
|
+
body: GetScenePreviewDataResponseBody;
|
|
2152
1807
|
static names(): { [key: string]: string } {
|
|
2153
1808
|
return {
|
|
2154
1809
|
headers: 'headers',
|
|
@@ -2159,7 +1814,7 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
2159
1814
|
static types(): { [key: string]: any } {
|
|
2160
1815
|
return {
|
|
2161
1816
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2162
|
-
body:
|
|
1817
|
+
body: GetScenePreviewDataResponseBody,
|
|
2163
1818
|
};
|
|
2164
1819
|
}
|
|
2165
1820
|
|
|
@@ -2885,78 +2540,6 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2885
2540
|
}
|
|
2886
2541
|
}
|
|
2887
2542
|
|
|
2888
|
-
export class ListScenesRequest extends $tea.Model {
|
|
2889
|
-
isPublishQuery?: boolean;
|
|
2890
|
-
projectId?: string;
|
|
2891
|
-
static names(): { [key: string]: string } {
|
|
2892
|
-
return {
|
|
2893
|
-
isPublishQuery: 'IsPublishQuery',
|
|
2894
|
-
projectId: 'ProjectId',
|
|
2895
|
-
};
|
|
2896
|
-
}
|
|
2897
|
-
|
|
2898
|
-
static types(): { [key: string]: any } {
|
|
2899
|
-
return {
|
|
2900
|
-
isPublishQuery: 'boolean',
|
|
2901
|
-
projectId: 'string',
|
|
2902
|
-
};
|
|
2903
|
-
}
|
|
2904
|
-
|
|
2905
|
-
constructor(map?: { [key: string]: any }) {
|
|
2906
|
-
super(map);
|
|
2907
|
-
}
|
|
2908
|
-
}
|
|
2909
|
-
|
|
2910
|
-
export class ListScenesResponseBody extends $tea.Model {
|
|
2911
|
-
data?: ListScenesResponseBodyData[];
|
|
2912
|
-
errMessage?: string;
|
|
2913
|
-
requestId?: string;
|
|
2914
|
-
success?: boolean;
|
|
2915
|
-
static names(): { [key: string]: string } {
|
|
2916
|
-
return {
|
|
2917
|
-
data: 'Data',
|
|
2918
|
-
errMessage: 'ErrMessage',
|
|
2919
|
-
requestId: 'RequestId',
|
|
2920
|
-
success: 'Success',
|
|
2921
|
-
};
|
|
2922
|
-
}
|
|
2923
|
-
|
|
2924
|
-
static types(): { [key: string]: any } {
|
|
2925
|
-
return {
|
|
2926
|
-
data: { 'type': 'array', 'itemType': ListScenesResponseBodyData },
|
|
2927
|
-
errMessage: 'string',
|
|
2928
|
-
requestId: 'string',
|
|
2929
|
-
success: 'boolean',
|
|
2930
|
-
};
|
|
2931
|
-
}
|
|
2932
|
-
|
|
2933
|
-
constructor(map?: { [key: string]: any }) {
|
|
2934
|
-
super(map);
|
|
2935
|
-
}
|
|
2936
|
-
}
|
|
2937
|
-
|
|
2938
|
-
export class ListScenesResponse extends $tea.Model {
|
|
2939
|
-
headers: { [key: string]: string };
|
|
2940
|
-
body: ListScenesResponseBody;
|
|
2941
|
-
static names(): { [key: string]: string } {
|
|
2942
|
-
return {
|
|
2943
|
-
headers: 'headers',
|
|
2944
|
-
body: 'body',
|
|
2945
|
-
};
|
|
2946
|
-
}
|
|
2947
|
-
|
|
2948
|
-
static types(): { [key: string]: any } {
|
|
2949
|
-
return {
|
|
2950
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2951
|
-
body: ListScenesResponseBody,
|
|
2952
|
-
};
|
|
2953
|
-
}
|
|
2954
|
-
|
|
2955
|
-
constructor(map?: { [key: string]: any }) {
|
|
2956
|
-
super(map);
|
|
2957
|
-
}
|
|
2958
|
-
}
|
|
2959
|
-
|
|
2960
2543
|
export class ListSubSceneRequest extends $tea.Model {
|
|
2961
2544
|
pageNum?: number;
|
|
2962
2545
|
pageSize?: number;
|
|
@@ -4536,13 +4119,263 @@ export class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
4536
4119
|
|
|
4537
4120
|
static types(): { [key: string]: any } {
|
|
4538
4121
|
return {
|
|
4539
|
-
accessId: 'string',
|
|
4540
|
-
callback: 'string',
|
|
4541
|
-
dir: 'string',
|
|
4542
|
-
expire: 'string',
|
|
4543
|
-
host: 'string',
|
|
4544
|
-
policy: 'string',
|
|
4545
|
-
signature: 'string',
|
|
4122
|
+
accessId: 'string',
|
|
4123
|
+
callback: 'string',
|
|
4124
|
+
dir: 'string',
|
|
4125
|
+
expire: 'string',
|
|
4126
|
+
host: 'string',
|
|
4127
|
+
policy: 'string',
|
|
4128
|
+
signature: 'string',
|
|
4129
|
+
};
|
|
4130
|
+
}
|
|
4131
|
+
|
|
4132
|
+
constructor(map?: { [key: string]: any }) {
|
|
4133
|
+
super(map);
|
|
4134
|
+
}
|
|
4135
|
+
}
|
|
4136
|
+
|
|
4137
|
+
export class GetConnDataResponseBodyList extends $tea.Model {
|
|
4138
|
+
id?: string;
|
|
4139
|
+
mapId?: string;
|
|
4140
|
+
type?: string;
|
|
4141
|
+
static names(): { [key: string]: string } {
|
|
4142
|
+
return {
|
|
4143
|
+
id: 'Id',
|
|
4144
|
+
mapId: 'MapId',
|
|
4145
|
+
type: 'Type',
|
|
4146
|
+
};
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
static types(): { [key: string]: any } {
|
|
4150
|
+
return {
|
|
4151
|
+
id: 'string',
|
|
4152
|
+
mapId: 'string',
|
|
4153
|
+
type: 'string',
|
|
4154
|
+
};
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
constructor(map?: { [key: string]: any }) {
|
|
4158
|
+
super(map);
|
|
4159
|
+
}
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
4163
|
+
modelToken?: string;
|
|
4164
|
+
previewData?: string;
|
|
4165
|
+
previewToken?: string;
|
|
4166
|
+
sceneType?: string;
|
|
4167
|
+
static names(): { [key: string]: string } {
|
|
4168
|
+
return {
|
|
4169
|
+
modelToken: 'ModelToken',
|
|
4170
|
+
previewData: 'PreviewData',
|
|
4171
|
+
previewToken: 'PreviewToken',
|
|
4172
|
+
sceneType: 'SceneType',
|
|
4173
|
+
};
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
static types(): { [key: string]: any } {
|
|
4177
|
+
return {
|
|
4178
|
+
modelToken: 'string',
|
|
4179
|
+
previewData: 'string',
|
|
4180
|
+
previewToken: 'string',
|
|
4181
|
+
sceneType: 'string',
|
|
4182
|
+
};
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
constructor(map?: { [key: string]: any }) {
|
|
4186
|
+
super(map);
|
|
4187
|
+
}
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
export class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
4191
|
+
rotation?: number[];
|
|
4192
|
+
spot?: number[];
|
|
4193
|
+
viewpoint?: number[];
|
|
4194
|
+
static names(): { [key: string]: string } {
|
|
4195
|
+
return {
|
|
4196
|
+
rotation: 'Rotation',
|
|
4197
|
+
spot: 'Spot',
|
|
4198
|
+
viewpoint: 'Viewpoint',
|
|
4199
|
+
};
|
|
4200
|
+
}
|
|
4201
|
+
|
|
4202
|
+
static types(): { [key: string]: any } {
|
|
4203
|
+
return {
|
|
4204
|
+
rotation: { 'type': 'array', 'itemType': 'number' },
|
|
4205
|
+
spot: { 'type': 'array', 'itemType': 'number' },
|
|
4206
|
+
viewpoint: { 'type': 'array', 'itemType': 'number' },
|
|
4207
|
+
};
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
constructor(map?: { [key: string]: any }) {
|
|
4211
|
+
super(map);
|
|
4212
|
+
}
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
export class GetScenePreviewDataResponseBodyDataModelPanoList extends $tea.Model {
|
|
4216
|
+
curRoomPicList?: string[];
|
|
4217
|
+
enabled?: boolean;
|
|
4218
|
+
floorIdx?: string;
|
|
4219
|
+
id?: string;
|
|
4220
|
+
mainImage?: boolean;
|
|
4221
|
+
neighbours?: string[];
|
|
4222
|
+
position?: GetScenePreviewDataResponseBodyDataModelPanoListPosition;
|
|
4223
|
+
rawName?: string;
|
|
4224
|
+
resource?: string;
|
|
4225
|
+
roomIdx?: string;
|
|
4226
|
+
subSceneId?: string;
|
|
4227
|
+
token?: string;
|
|
4228
|
+
virtualId?: string;
|
|
4229
|
+
virtualName?: string;
|
|
4230
|
+
static names(): { [key: string]: string } {
|
|
4231
|
+
return {
|
|
4232
|
+
curRoomPicList: 'CurRoomPicList',
|
|
4233
|
+
enabled: 'Enabled',
|
|
4234
|
+
floorIdx: 'FloorIdx',
|
|
4235
|
+
id: 'Id',
|
|
4236
|
+
mainImage: 'MainImage',
|
|
4237
|
+
neighbours: 'Neighbours',
|
|
4238
|
+
position: 'Position',
|
|
4239
|
+
rawName: 'RawName',
|
|
4240
|
+
resource: 'Resource',
|
|
4241
|
+
roomIdx: 'RoomIdx',
|
|
4242
|
+
subSceneId: 'SubSceneId',
|
|
4243
|
+
token: 'Token',
|
|
4244
|
+
virtualId: 'VirtualId',
|
|
4245
|
+
virtualName: 'VirtualName',
|
|
4246
|
+
};
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
static types(): { [key: string]: any } {
|
|
4250
|
+
return {
|
|
4251
|
+
curRoomPicList: { 'type': 'array', 'itemType': 'string' },
|
|
4252
|
+
enabled: 'boolean',
|
|
4253
|
+
floorIdx: 'string',
|
|
4254
|
+
id: 'string',
|
|
4255
|
+
mainImage: 'boolean',
|
|
4256
|
+
neighbours: { 'type': 'array', 'itemType': 'string' },
|
|
4257
|
+
position: GetScenePreviewDataResponseBodyDataModelPanoListPosition,
|
|
4258
|
+
rawName: 'string',
|
|
4259
|
+
resource: 'string',
|
|
4260
|
+
roomIdx: 'string',
|
|
4261
|
+
subSceneId: 'string',
|
|
4262
|
+
token: 'string',
|
|
4263
|
+
virtualId: 'string',
|
|
4264
|
+
virtualName: 'string',
|
|
4265
|
+
};
|
|
4266
|
+
}
|
|
4267
|
+
|
|
4268
|
+
constructor(map?: { [key: string]: any }) {
|
|
4269
|
+
super(map);
|
|
4270
|
+
}
|
|
4271
|
+
}
|
|
4272
|
+
|
|
4273
|
+
export class GetScenePreviewDataResponseBodyDataModel extends $tea.Model {
|
|
4274
|
+
modelPath?: string;
|
|
4275
|
+
panoList?: GetScenePreviewDataResponseBodyDataModelPanoList[];
|
|
4276
|
+
textureModelPath?: string;
|
|
4277
|
+
texturePanoPath?: string;
|
|
4278
|
+
static names(): { [key: string]: string } {
|
|
4279
|
+
return {
|
|
4280
|
+
modelPath: 'ModelPath',
|
|
4281
|
+
panoList: 'PanoList',
|
|
4282
|
+
textureModelPath: 'TextureModelPath',
|
|
4283
|
+
texturePanoPath: 'TexturePanoPath',
|
|
4284
|
+
};
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4287
|
+
static types(): { [key: string]: any } {
|
|
4288
|
+
return {
|
|
4289
|
+
modelPath: 'string',
|
|
4290
|
+
panoList: { 'type': 'array', 'itemType': GetScenePreviewDataResponseBodyDataModelPanoList },
|
|
4291
|
+
textureModelPath: 'string',
|
|
4292
|
+
texturePanoPath: 'string',
|
|
4293
|
+
};
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
constructor(map?: { [key: string]: any }) {
|
|
4297
|
+
super(map);
|
|
4298
|
+
}
|
|
4299
|
+
}
|
|
4300
|
+
|
|
4301
|
+
export class GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig extends $tea.Model {
|
|
4302
|
+
customText?: string;
|
|
4303
|
+
type?: string;
|
|
4304
|
+
static names(): { [key: string]: string } {
|
|
4305
|
+
return {
|
|
4306
|
+
customText: 'CustomText',
|
|
4307
|
+
type: 'Type',
|
|
4308
|
+
};
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
static types(): { [key: string]: any } {
|
|
4312
|
+
return {
|
|
4313
|
+
customText: 'string',
|
|
4314
|
+
type: 'string',
|
|
4315
|
+
};
|
|
4316
|
+
}
|
|
4317
|
+
|
|
4318
|
+
constructor(map?: { [key: string]: any }) {
|
|
4319
|
+
super(map);
|
|
4320
|
+
}
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
export class GetScenePreviewDataResponseBodyDataTagsConfig extends $tea.Model {
|
|
4324
|
+
backgroundColor?: string;
|
|
4325
|
+
buttonConfig?: GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig;
|
|
4326
|
+
content?: string;
|
|
4327
|
+
formImgSize?: number[];
|
|
4328
|
+
formJumpType?: boolean;
|
|
4329
|
+
formSelectImgType?: string;
|
|
4330
|
+
images?: string[];
|
|
4331
|
+
isTagVisibleBy3d?: boolean;
|
|
4332
|
+
link?: string;
|
|
4333
|
+
panoId?: string;
|
|
4334
|
+
position?: number[];
|
|
4335
|
+
positionPanoCube?: number[];
|
|
4336
|
+
relatedPanoIds?: string[];
|
|
4337
|
+
sceneId?: number;
|
|
4338
|
+
title?: string;
|
|
4339
|
+
video?: string;
|
|
4340
|
+
static names(): { [key: string]: string } {
|
|
4341
|
+
return {
|
|
4342
|
+
backgroundColor: 'BackgroundColor',
|
|
4343
|
+
buttonConfig: 'ButtonConfig',
|
|
4344
|
+
content: 'Content',
|
|
4345
|
+
formImgSize: 'FormImgSize',
|
|
4346
|
+
formJumpType: 'FormJumpType',
|
|
4347
|
+
formSelectImgType: 'FormSelectImgType',
|
|
4348
|
+
images: 'Images',
|
|
4349
|
+
isTagVisibleBy3d: 'IsTagVisibleBy3d',
|
|
4350
|
+
link: 'Link',
|
|
4351
|
+
panoId: 'PanoId',
|
|
4352
|
+
position: 'Position',
|
|
4353
|
+
positionPanoCube: 'PositionPanoCube',
|
|
4354
|
+
relatedPanoIds: 'RelatedPanoIds',
|
|
4355
|
+
sceneId: 'SceneId',
|
|
4356
|
+
title: 'Title',
|
|
4357
|
+
video: 'Video',
|
|
4358
|
+
};
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
static types(): { [key: string]: any } {
|
|
4362
|
+
return {
|
|
4363
|
+
backgroundColor: 'string',
|
|
4364
|
+
buttonConfig: GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig,
|
|
4365
|
+
content: 'string',
|
|
4366
|
+
formImgSize: { 'type': 'array', 'itemType': 'number' },
|
|
4367
|
+
formJumpType: 'boolean',
|
|
4368
|
+
formSelectImgType: 'string',
|
|
4369
|
+
images: { 'type': 'array', 'itemType': 'string' },
|
|
4370
|
+
isTagVisibleBy3d: 'boolean',
|
|
4371
|
+
link: 'string',
|
|
4372
|
+
panoId: 'string',
|
|
4373
|
+
position: { 'type': 'array', 'itemType': 'number' },
|
|
4374
|
+
positionPanoCube: { 'type': 'array', 'itemType': 'number' },
|
|
4375
|
+
relatedPanoIds: { 'type': 'array', 'itemType': 'string' },
|
|
4376
|
+
sceneId: 'number',
|
|
4377
|
+
title: 'string',
|
|
4378
|
+
video: 'string',
|
|
4546
4379
|
};
|
|
4547
4380
|
}
|
|
4548
4381
|
|
|
@@ -4551,22 +4384,28 @@ export class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
4551
4384
|
}
|
|
4552
4385
|
}
|
|
4553
4386
|
|
|
4554
|
-
export class
|
|
4387
|
+
export class GetScenePreviewDataResponseBodyDataTags extends $tea.Model {
|
|
4388
|
+
config?: GetScenePreviewDataResponseBodyDataTagsConfig;
|
|
4555
4389
|
id?: string;
|
|
4556
|
-
|
|
4390
|
+
position?: number[];
|
|
4391
|
+
positionPanoCube?: number[];
|
|
4557
4392
|
type?: string;
|
|
4558
4393
|
static names(): { [key: string]: string } {
|
|
4559
4394
|
return {
|
|
4395
|
+
config: 'Config',
|
|
4560
4396
|
id: 'Id',
|
|
4561
|
-
|
|
4397
|
+
position: 'Position',
|
|
4398
|
+
positionPanoCube: 'PositionPanoCube',
|
|
4562
4399
|
type: 'Type',
|
|
4563
4400
|
};
|
|
4564
4401
|
}
|
|
4565
4402
|
|
|
4566
4403
|
static types(): { [key: string]: any } {
|
|
4567
4404
|
return {
|
|
4405
|
+
config: GetScenePreviewDataResponseBodyDataTagsConfig,
|
|
4568
4406
|
id: 'string',
|
|
4569
|
-
|
|
4407
|
+
position: { 'type': 'array', 'itemType': 'number' },
|
|
4408
|
+
positionPanoCube: { 'type': 'array', 'itemType': 'number' },
|
|
4570
4409
|
type: 'string',
|
|
4571
4410
|
};
|
|
4572
4411
|
}
|
|
@@ -4576,26 +4415,20 @@ export class GetConnDataResponseBodyList extends $tea.Model {
|
|
|
4576
4415
|
}
|
|
4577
4416
|
}
|
|
4578
4417
|
|
|
4579
|
-
export class
|
|
4580
|
-
|
|
4581
|
-
|
|
4582
|
-
previewToken?: string;
|
|
4583
|
-
sceneType?: string;
|
|
4418
|
+
export class GetScenePreviewDataResponseBodyData extends $tea.Model {
|
|
4419
|
+
model?: GetScenePreviewDataResponseBodyDataModel;
|
|
4420
|
+
tags?: GetScenePreviewDataResponseBodyDataTags[];
|
|
4584
4421
|
static names(): { [key: string]: string } {
|
|
4585
4422
|
return {
|
|
4586
|
-
|
|
4587
|
-
|
|
4588
|
-
previewToken: 'PreviewToken',
|
|
4589
|
-
sceneType: 'SceneType',
|
|
4423
|
+
model: 'Model',
|
|
4424
|
+
tags: 'Tags',
|
|
4590
4425
|
};
|
|
4591
4426
|
}
|
|
4592
4427
|
|
|
4593
4428
|
static types(): { [key: string]: any } {
|
|
4594
4429
|
return {
|
|
4595
|
-
|
|
4596
|
-
|
|
4597
|
-
previewToken: 'string',
|
|
4598
|
-
sceneType: 'string',
|
|
4430
|
+
model: GetScenePreviewDataResponseBodyDataModel,
|
|
4431
|
+
tags: { 'type': 'array', 'itemType': GetScenePreviewDataResponseBodyDataTags },
|
|
4599
4432
|
};
|
|
4600
4433
|
}
|
|
4601
4434
|
|
|
@@ -4774,25 +4607,6 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
4774
4607
|
}
|
|
4775
4608
|
}
|
|
4776
4609
|
|
|
4777
|
-
export class ListScenesResponseBodyData extends $tea.Model {
|
|
4778
|
-
sceneId?: string;
|
|
4779
|
-
static names(): { [key: string]: string } {
|
|
4780
|
-
return {
|
|
4781
|
-
sceneId: 'SceneId',
|
|
4782
|
-
};
|
|
4783
|
-
}
|
|
4784
|
-
|
|
4785
|
-
static types(): { [key: string]: any } {
|
|
4786
|
-
return {
|
|
4787
|
-
sceneId: 'string',
|
|
4788
|
-
};
|
|
4789
|
-
}
|
|
4790
|
-
|
|
4791
|
-
constructor(map?: { [key: string]: any }) {
|
|
4792
|
-
super(map);
|
|
4793
|
-
}
|
|
4794
|
-
}
|
|
4795
|
-
|
|
4796
4610
|
export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
4797
4611
|
baseImageUrl?: string;
|
|
4798
4612
|
coverUrl?: string;
|
|
@@ -5082,181 +4896,18 @@ export default class Client extends OpenApi {
|
|
|
5082
4896
|
return await this.addSubSceneWithOptions(request, runtime);
|
|
5083
4897
|
}
|
|
5084
4898
|
|
|
5085
|
-
async
|
|
5086
|
-
Util.validateModel(request);
|
|
5087
|
-
let query = { };
|
|
5088
|
-
if (!Util.isUnset(request.bid)) {
|
|
5089
|
-
query["Bid"] = request.bid;
|
|
5090
|
-
}
|
|
5091
|
-
|
|
5092
|
-
if (!Util.isUnset(request.country)) {
|
|
5093
|
-
query["Country"] = request.country;
|
|
5094
|
-
}
|
|
5095
|
-
|
|
5096
|
-
if (!Util.isUnset(request.gmtWakeup)) {
|
|
5097
|
-
query["GmtWakeup"] = request.gmtWakeup;
|
|
5098
|
-
}
|
|
5099
|
-
|
|
5100
|
-
if (!Util.isUnset(request.hid)) {
|
|
5101
|
-
query["Hid"] = request.hid;
|
|
5102
|
-
}
|
|
5103
|
-
|
|
5104
|
-
if (!Util.isUnset(request.interrupt)) {
|
|
5105
|
-
query["Interrupt"] = request.interrupt;
|
|
5106
|
-
}
|
|
5107
|
-
|
|
5108
|
-
if (!Util.isUnset(request.invoker)) {
|
|
5109
|
-
query["Invoker"] = request.invoker;
|
|
5110
|
-
}
|
|
5111
|
-
|
|
5112
|
-
if (!Util.isUnset(request.level)) {
|
|
5113
|
-
query["Level"] = request.level;
|
|
5114
|
-
}
|
|
5115
|
-
|
|
5116
|
-
if (!Util.isUnset(request.message)) {
|
|
5117
|
-
query["Message"] = request.message;
|
|
5118
|
-
}
|
|
5119
|
-
|
|
5120
|
-
if (!Util.isUnset(request.pk)) {
|
|
5121
|
-
query["Pk"] = request.pk;
|
|
5122
|
-
}
|
|
5123
|
-
|
|
5124
|
-
if (!Util.isUnset(request.prompt)) {
|
|
5125
|
-
query["Prompt"] = request.prompt;
|
|
5126
|
-
}
|
|
5127
|
-
|
|
5128
|
-
if (!Util.isUnset(request.success)) {
|
|
5129
|
-
query["Success"] = request.success;
|
|
5130
|
-
}
|
|
5131
|
-
|
|
5132
|
-
if (!Util.isUnset(request.taskExtraData)) {
|
|
5133
|
-
query["TaskExtraData"] = request.taskExtraData;
|
|
5134
|
-
}
|
|
5135
|
-
|
|
5136
|
-
if (!Util.isUnset(request.taskIdentifier)) {
|
|
5137
|
-
query["TaskIdentifier"] = request.taskIdentifier;
|
|
5138
|
-
}
|
|
5139
|
-
|
|
5140
|
-
if (!Util.isUnset(request.url)) {
|
|
5141
|
-
query["Url"] = request.url;
|
|
5142
|
-
}
|
|
5143
|
-
|
|
5144
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5145
|
-
query: OpenApiUtil.query(query),
|
|
5146
|
-
});
|
|
5147
|
-
let params = new $OpenApi.Params({
|
|
5148
|
-
action: "CheckResource",
|
|
5149
|
-
version: "2020-01-01",
|
|
5150
|
-
protocol: "HTTPS",
|
|
5151
|
-
pathname: "/",
|
|
5152
|
-
method: "POST",
|
|
5153
|
-
authType: "AK",
|
|
5154
|
-
style: "RPC",
|
|
5155
|
-
reqBodyType: "formData",
|
|
5156
|
-
bodyType: "json",
|
|
5157
|
-
});
|
|
5158
|
-
return $tea.cast<CheckResourceResponse>(await this.callApi(params, req, runtime), new CheckResourceResponse({}));
|
|
5159
|
-
}
|
|
5160
|
-
|
|
5161
|
-
async checkResource(request: CheckResourceRequest): Promise<CheckResourceResponse> {
|
|
5162
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5163
|
-
return await this.checkResourceWithOptions(request, runtime);
|
|
5164
|
-
}
|
|
5165
|
-
|
|
5166
|
-
async createProjectWithOptions(request: CreateProjectRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectResponse> {
|
|
5167
|
-
Util.validateModel(request);
|
|
5168
|
-
let query = { };
|
|
5169
|
-
if (!Util.isUnset(request.builderUserIdList)) {
|
|
5170
|
-
query["BuilderUserIdList"] = request.builderUserIdList;
|
|
5171
|
-
}
|
|
5172
|
-
|
|
5173
|
-
if (!Util.isUnset(request.businessId)) {
|
|
5174
|
-
query["BusinessId"] = request.businessId;
|
|
5175
|
-
}
|
|
5176
|
-
|
|
5177
|
-
if (!Util.isUnset(request.businessUserIdList)) {
|
|
5178
|
-
query["BusinessUserIdList"] = request.businessUserIdList;
|
|
5179
|
-
}
|
|
5180
|
-
|
|
5181
|
-
if (!Util.isUnset(request.gatherUserIdList)) {
|
|
5182
|
-
query["GatherUserIdList"] = request.gatherUserIdList;
|
|
5183
|
-
}
|
|
5184
|
-
|
|
5185
|
-
if (!Util.isUnset(request.name)) {
|
|
5186
|
-
query["Name"] = request.name;
|
|
5187
|
-
}
|
|
5188
|
-
|
|
5189
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5190
|
-
query: OpenApiUtil.query(query),
|
|
5191
|
-
});
|
|
5192
|
-
let params = new $OpenApi.Params({
|
|
5193
|
-
action: "CreateProject",
|
|
5194
|
-
version: "2020-01-01",
|
|
5195
|
-
protocol: "HTTPS",
|
|
5196
|
-
pathname: "/",
|
|
5197
|
-
method: "POST",
|
|
5198
|
-
authType: "AK",
|
|
5199
|
-
style: "RPC",
|
|
5200
|
-
reqBodyType: "formData",
|
|
5201
|
-
bodyType: "json",
|
|
5202
|
-
});
|
|
5203
|
-
return $tea.cast<CreateProjectResponse>(await this.callApi(params, req, runtime), new CreateProjectResponse({}));
|
|
5204
|
-
}
|
|
5205
|
-
|
|
5206
|
-
async createProject(request: CreateProjectRequest): Promise<CreateProjectResponse> {
|
|
5207
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5208
|
-
return await this.createProjectWithOptions(request, runtime);
|
|
5209
|
-
}
|
|
5210
|
-
|
|
5211
|
-
async createSceneWithOptions(request: CreateSceneRequest, runtime: $Util.RuntimeOptions): Promise<CreateSceneResponse> {
|
|
4899
|
+
async checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse> {
|
|
5212
4900
|
Util.validateModel(request);
|
|
5213
4901
|
let query = { };
|
|
5214
|
-
if (!Util.isUnset(request.
|
|
5215
|
-
query["
|
|
5216
|
-
}
|
|
5217
|
-
|
|
5218
|
-
if (!Util.isUnset(request.projectId)) {
|
|
5219
|
-
query["ProjectId"] = request.projectId;
|
|
5220
|
-
}
|
|
5221
|
-
|
|
5222
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5223
|
-
query: OpenApiUtil.query(query),
|
|
5224
|
-
});
|
|
5225
|
-
let params = new $OpenApi.Params({
|
|
5226
|
-
action: "CreateScene",
|
|
5227
|
-
version: "2020-01-01",
|
|
5228
|
-
protocol: "HTTPS",
|
|
5229
|
-
pathname: "/",
|
|
5230
|
-
method: "POST",
|
|
5231
|
-
authType: "AK",
|
|
5232
|
-
style: "RPC",
|
|
5233
|
-
reqBodyType: "formData",
|
|
5234
|
-
bodyType: "json",
|
|
5235
|
-
});
|
|
5236
|
-
return $tea.cast<CreateSceneResponse>(await this.callApi(params, req, runtime), new CreateSceneResponse({}));
|
|
5237
|
-
}
|
|
5238
|
-
|
|
5239
|
-
async createScene(request: CreateSceneRequest): Promise<CreateSceneResponse> {
|
|
5240
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5241
|
-
return await this.createSceneWithOptions(request, runtime);
|
|
5242
|
-
}
|
|
5243
|
-
|
|
5244
|
-
async deleteFileWithOptions(request: DeleteFileRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFileResponse> {
|
|
5245
|
-
Util.validateModel(request);
|
|
5246
|
-
let query = { };
|
|
5247
|
-
if (!Util.isUnset(request.paramFile)) {
|
|
5248
|
-
query["ParamFile"] = request.paramFile;
|
|
5249
|
-
}
|
|
5250
|
-
|
|
5251
|
-
if (!Util.isUnset(request.subSceneUuid)) {
|
|
5252
|
-
query["SubSceneUuid"] = request.subSceneUuid;
|
|
4902
|
+
if (!Util.isUnset(request.uid)) {
|
|
4903
|
+
query["Uid"] = request.uid;
|
|
5253
4904
|
}
|
|
5254
4905
|
|
|
5255
4906
|
let req = new $OpenApi.OpenApiRequest({
|
|
5256
4907
|
query: OpenApiUtil.query(query),
|
|
5257
4908
|
});
|
|
5258
4909
|
let params = new $OpenApi.Params({
|
|
5259
|
-
action: "
|
|
4910
|
+
action: "CheckUserProperty",
|
|
5260
4911
|
version: "2020-01-01",
|
|
5261
4912
|
protocol: "HTTPS",
|
|
5262
4913
|
pathname: "/",
|
|
@@ -5266,41 +4917,12 @@ export default class Client extends OpenApi {
|
|
|
5266
4917
|
reqBodyType: "formData",
|
|
5267
4918
|
bodyType: "json",
|
|
5268
4919
|
});
|
|
5269
|
-
return $tea.cast<
|
|
4920
|
+
return $tea.cast<CheckUserPropertyResponse>(await this.callApi(params, req, runtime), new CheckUserPropertyResponse({}));
|
|
5270
4921
|
}
|
|
5271
4922
|
|
|
5272
|
-
async
|
|
4923
|
+
async checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse> {
|
|
5273
4924
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5274
|
-
return await this.
|
|
5275
|
-
}
|
|
5276
|
-
|
|
5277
|
-
async deleteProjectWithOptions(request: DeleteProjectRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectResponse> {
|
|
5278
|
-
Util.validateModel(request);
|
|
5279
|
-
let query = { };
|
|
5280
|
-
if (!Util.isUnset(request.projectId)) {
|
|
5281
|
-
query["ProjectId"] = request.projectId;
|
|
5282
|
-
}
|
|
5283
|
-
|
|
5284
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5285
|
-
query: OpenApiUtil.query(query),
|
|
5286
|
-
});
|
|
5287
|
-
let params = new $OpenApi.Params({
|
|
5288
|
-
action: "DeleteProject",
|
|
5289
|
-
version: "2020-01-01",
|
|
5290
|
-
protocol: "HTTPS",
|
|
5291
|
-
pathname: "/",
|
|
5292
|
-
method: "POST",
|
|
5293
|
-
authType: "AK",
|
|
5294
|
-
style: "RPC",
|
|
5295
|
-
reqBodyType: "formData",
|
|
5296
|
-
bodyType: "json",
|
|
5297
|
-
});
|
|
5298
|
-
return $tea.cast<DeleteProjectResponse>(await this.callApi(params, req, runtime), new DeleteProjectResponse({}));
|
|
5299
|
-
}
|
|
5300
|
-
|
|
5301
|
-
async deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse> {
|
|
5302
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5303
|
-
return await this.deleteProjectWithOptions(request, runtime);
|
|
4925
|
+
return await this.checkUserPropertyWithOptions(request, runtime);
|
|
5304
4926
|
}
|
|
5305
4927
|
|
|
5306
4928
|
async detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse> {
|
|
@@ -5720,22 +5342,18 @@ export default class Client extends OpenApi {
|
|
|
5720
5342
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
5721
5343
|
}
|
|
5722
5344
|
|
|
5723
|
-
async
|
|
5345
|
+
async getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse> {
|
|
5724
5346
|
Util.validateModel(request);
|
|
5725
5347
|
let query = { };
|
|
5726
|
-
if (!Util.isUnset(request.
|
|
5727
|
-
query["
|
|
5728
|
-
}
|
|
5729
|
-
|
|
5730
|
-
if (!Util.isUnset(request.type)) {
|
|
5731
|
-
query["Type"] = request.type;
|
|
5348
|
+
if (!Util.isUnset(request.subSceneId)) {
|
|
5349
|
+
query["SubSceneId"] = request.subSceneId;
|
|
5732
5350
|
}
|
|
5733
5351
|
|
|
5734
5352
|
let req = new $OpenApi.OpenApiRequest({
|
|
5735
5353
|
query: OpenApiUtil.query(query),
|
|
5736
5354
|
});
|
|
5737
5355
|
let params = new $OpenApi.Params({
|
|
5738
|
-
action: "
|
|
5356
|
+
action: "GetRectifyImage",
|
|
5739
5357
|
version: "2020-01-01",
|
|
5740
5358
|
protocol: "HTTPS",
|
|
5741
5359
|
pathname: "/",
|
|
@@ -5745,26 +5363,26 @@ export default class Client extends OpenApi {
|
|
|
5745
5363
|
reqBodyType: "formData",
|
|
5746
5364
|
bodyType: "json",
|
|
5747
5365
|
});
|
|
5748
|
-
return $tea.cast<
|
|
5366
|
+
return $tea.cast<GetRectifyImageResponse>(await this.callApi(params, req, runtime), new GetRectifyImageResponse({}));
|
|
5749
5367
|
}
|
|
5750
5368
|
|
|
5751
|
-
async
|
|
5369
|
+
async getRectifyImage(request: GetRectifyImageRequest): Promise<GetRectifyImageResponse> {
|
|
5752
5370
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5753
|
-
return await this.
|
|
5371
|
+
return await this.getRectifyImageWithOptions(request, runtime);
|
|
5754
5372
|
}
|
|
5755
5373
|
|
|
5756
|
-
async
|
|
5374
|
+
async getSceneBuildTaskStatusWithOptions(request: GetSceneBuildTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSceneBuildTaskStatusResponse> {
|
|
5757
5375
|
Util.validateModel(request);
|
|
5758
5376
|
let query = { };
|
|
5759
|
-
if (!Util.isUnset(request.
|
|
5760
|
-
query["
|
|
5377
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
5378
|
+
query["SceneId"] = request.sceneId;
|
|
5761
5379
|
}
|
|
5762
5380
|
|
|
5763
5381
|
let req = new $OpenApi.OpenApiRequest({
|
|
5764
5382
|
query: OpenApiUtil.query(query),
|
|
5765
5383
|
});
|
|
5766
5384
|
let params = new $OpenApi.Params({
|
|
5767
|
-
action: "
|
|
5385
|
+
action: "GetSceneBuildTaskStatus",
|
|
5768
5386
|
version: "2020-01-01",
|
|
5769
5387
|
protocol: "HTTPS",
|
|
5770
5388
|
pathname: "/",
|
|
@@ -5774,26 +5392,38 @@ export default class Client extends OpenApi {
|
|
|
5774
5392
|
reqBodyType: "formData",
|
|
5775
5393
|
bodyType: "json",
|
|
5776
5394
|
});
|
|
5777
|
-
return $tea.cast<
|
|
5395
|
+
return $tea.cast<GetSceneBuildTaskStatusResponse>(await this.callApi(params, req, runtime), new GetSceneBuildTaskStatusResponse({}));
|
|
5778
5396
|
}
|
|
5779
5397
|
|
|
5780
|
-
async
|
|
5398
|
+
async getSceneBuildTaskStatus(request: GetSceneBuildTaskStatusRequest): Promise<GetSceneBuildTaskStatusResponse> {
|
|
5781
5399
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5782
|
-
return await this.
|
|
5400
|
+
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
5783
5401
|
}
|
|
5784
5402
|
|
|
5785
|
-
async
|
|
5403
|
+
async getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse> {
|
|
5786
5404
|
Util.validateModel(request);
|
|
5787
5405
|
let query = { };
|
|
5788
|
-
if (!Util.isUnset(request.
|
|
5789
|
-
query["
|
|
5406
|
+
if (!Util.isUnset(request.domain)) {
|
|
5407
|
+
query["Domain"] = request.domain;
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
if (!Util.isUnset(request.enabled)) {
|
|
5411
|
+
query["Enabled"] = request.enabled;
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
if (!Util.isUnset(request.previewToken)) {
|
|
5415
|
+
query["PreviewToken"] = request.previewToken;
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5418
|
+
if (!Util.isUnset(request.showTag)) {
|
|
5419
|
+
query["ShowTag"] = request.showTag;
|
|
5790
5420
|
}
|
|
5791
5421
|
|
|
5792
5422
|
let req = new $OpenApi.OpenApiRequest({
|
|
5793
5423
|
query: OpenApiUtil.query(query),
|
|
5794
5424
|
});
|
|
5795
5425
|
let params = new $OpenApi.Params({
|
|
5796
|
-
action: "
|
|
5426
|
+
action: "GetScenePreviewData",
|
|
5797
5427
|
version: "2020-01-01",
|
|
5798
5428
|
protocol: "HTTPS",
|
|
5799
5429
|
pathname: "/",
|
|
@@ -5803,12 +5433,12 @@ export default class Client extends OpenApi {
|
|
|
5803
5433
|
reqBodyType: "formData",
|
|
5804
5434
|
bodyType: "json",
|
|
5805
5435
|
});
|
|
5806
|
-
return $tea.cast<
|
|
5436
|
+
return $tea.cast<GetScenePreviewDataResponse>(await this.callApi(params, req, runtime), new GetScenePreviewDataResponse({}));
|
|
5807
5437
|
}
|
|
5808
5438
|
|
|
5809
|
-
async
|
|
5439
|
+
async getScenePreviewData(request: GetScenePreviewDataRequest): Promise<GetScenePreviewDataResponse> {
|
|
5810
5440
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5811
|
-
return await this.
|
|
5441
|
+
return await this.getScenePreviewDataWithOptions(request, runtime);
|
|
5812
5442
|
}
|
|
5813
5443
|
|
|
5814
5444
|
async getScenePreviewInfoWithOptions(request: GetScenePreviewInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewInfoResponse> {
|
|
@@ -6116,39 +5746,6 @@ export default class Client extends OpenApi {
|
|
|
6116
5746
|
return await this.listSceneWithOptions(request, runtime);
|
|
6117
5747
|
}
|
|
6118
5748
|
|
|
6119
|
-
async listScenesWithOptions(request: ListScenesRequest, runtime: $Util.RuntimeOptions): Promise<ListScenesResponse> {
|
|
6120
|
-
Util.validateModel(request);
|
|
6121
|
-
let query = { };
|
|
6122
|
-
if (!Util.isUnset(request.isPublishQuery)) {
|
|
6123
|
-
query["IsPublishQuery"] = request.isPublishQuery;
|
|
6124
|
-
}
|
|
6125
|
-
|
|
6126
|
-
if (!Util.isUnset(request.projectId)) {
|
|
6127
|
-
query["ProjectId"] = request.projectId;
|
|
6128
|
-
}
|
|
6129
|
-
|
|
6130
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
6131
|
-
query: OpenApiUtil.query(query),
|
|
6132
|
-
});
|
|
6133
|
-
let params = new $OpenApi.Params({
|
|
6134
|
-
action: "ListScenes",
|
|
6135
|
-
version: "2020-01-01",
|
|
6136
|
-
protocol: "HTTPS",
|
|
6137
|
-
pathname: "/",
|
|
6138
|
-
method: "POST",
|
|
6139
|
-
authType: "AK",
|
|
6140
|
-
style: "RPC",
|
|
6141
|
-
reqBodyType: "formData",
|
|
6142
|
-
bodyType: "json",
|
|
6143
|
-
});
|
|
6144
|
-
return $tea.cast<ListScenesResponse>(await this.callApi(params, req, runtime), new ListScenesResponse({}));
|
|
6145
|
-
}
|
|
6146
|
-
|
|
6147
|
-
async listScenes(request: ListScenesRequest): Promise<ListScenesResponse> {
|
|
6148
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
6149
|
-
return await this.listScenesWithOptions(request, runtime);
|
|
6150
|
-
}
|
|
6151
|
-
|
|
6152
5749
|
async listSubSceneWithOptions(request: ListSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSubSceneResponse> {
|
|
6153
5750
|
Util.validateModel(request);
|
|
6154
5751
|
let query = { };
|