@alicloud/tdsr20200101 3.0.10 → 3.1.0

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 CHANGED
@@ -319,6 +319,51 @@ export declare class CheckUserPropertyResponse extends $tea.Model {
319
319
  [key: string]: any;
320
320
  });
321
321
  }
322
+ export declare class CopySceneRequest extends $tea.Model {
323
+ sceneId?: string;
324
+ sceneName?: string;
325
+ static names(): {
326
+ [key: string]: string;
327
+ };
328
+ static types(): {
329
+ [key: string]: any;
330
+ };
331
+ constructor(map?: {
332
+ [key: string]: any;
333
+ });
334
+ }
335
+ export declare class CopySceneResponseBody extends $tea.Model {
336
+ code?: number;
337
+ data?: CopySceneResponseBodyData;
338
+ message?: string;
339
+ requestId?: string;
340
+ success?: boolean;
341
+ static names(): {
342
+ [key: string]: string;
343
+ };
344
+ static types(): {
345
+ [key: string]: any;
346
+ };
347
+ constructor(map?: {
348
+ [key: string]: any;
349
+ });
350
+ }
351
+ export declare class CopySceneResponse extends $tea.Model {
352
+ headers: {
353
+ [key: string]: string;
354
+ };
355
+ statusCode: number;
356
+ body: CopySceneResponseBody;
357
+ static names(): {
358
+ [key: string]: string;
359
+ };
360
+ static types(): {
361
+ [key: string]: any;
362
+ };
363
+ constructor(map?: {
364
+ [key: string]: any;
365
+ });
366
+ }
322
367
  export declare class DetailProjectRequest extends $tea.Model {
323
368
  id?: string;
324
369
  static names(): {
@@ -652,6 +697,50 @@ export declare class GetConnDataResponse extends $tea.Model {
652
697
  [key: string]: any;
653
698
  });
654
699
  }
700
+ export declare class GetCopySceneTaskStatusRequest extends $tea.Model {
701
+ taskId?: string;
702
+ static names(): {
703
+ [key: string]: string;
704
+ };
705
+ static types(): {
706
+ [key: string]: any;
707
+ };
708
+ constructor(map?: {
709
+ [key: string]: any;
710
+ });
711
+ }
712
+ export declare class GetCopySceneTaskStatusResponseBody extends $tea.Model {
713
+ code?: number;
714
+ data?: GetCopySceneTaskStatusResponseBodyData;
715
+ message?: string;
716
+ requestId?: string;
717
+ success?: boolean;
718
+ static names(): {
719
+ [key: string]: string;
720
+ };
721
+ static types(): {
722
+ [key: string]: any;
723
+ };
724
+ constructor(map?: {
725
+ [key: string]: any;
726
+ });
727
+ }
728
+ export declare class GetCopySceneTaskStatusResponse extends $tea.Model {
729
+ headers: {
730
+ [key: string]: string;
731
+ };
732
+ statusCode: number;
733
+ body: GetCopySceneTaskStatusResponseBody;
734
+ static names(): {
735
+ [key: string]: string;
736
+ };
737
+ static types(): {
738
+ [key: string]: any;
739
+ };
740
+ constructor(map?: {
741
+ [key: string]: any;
742
+ });
743
+ }
655
744
  export declare class GetHotspotConfigRequest extends $tea.Model {
656
745
  domain?: string;
657
746
  enabled?: boolean;
@@ -1629,6 +1718,7 @@ export declare class ListSubSceneRequest extends $tea.Model {
1629
1718
  pageSize?: number;
1630
1719
  sceneId?: string;
1631
1720
  showLayoutData?: boolean;
1721
+ sortField?: string;
1632
1722
  static names(): {
1633
1723
  [key: string]: string;
1634
1724
  };
@@ -2569,6 +2659,21 @@ export declare class UpdateSceneResponse extends $tea.Model {
2569
2659
  export declare class UpdateSubSceneRequest extends $tea.Model {
2570
2660
  id?: string;
2571
2661
  name?: string;
2662
+ viewPoint?: number[];
2663
+ static names(): {
2664
+ [key: string]: string;
2665
+ };
2666
+ static types(): {
2667
+ [key: string]: any;
2668
+ };
2669
+ constructor(map?: {
2670
+ [key: string]: any;
2671
+ });
2672
+ }
2673
+ export declare class UpdateSubSceneShrinkRequest extends $tea.Model {
2674
+ id?: string;
2675
+ name?: string;
2676
+ viewPointShrink?: string;
2572
2677
  static names(): {
2573
2678
  [key: string]: string;
2574
2679
  };
@@ -2610,6 +2715,63 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
2610
2715
  [key: string]: any;
2611
2716
  });
2612
2717
  }
2718
+ export declare class UpdateSubSceneSeqRequest extends $tea.Model {
2719
+ sceneId?: string;
2720
+ sortSubSceneIds?: string[];
2721
+ static names(): {
2722
+ [key: string]: string;
2723
+ };
2724
+ static types(): {
2725
+ [key: string]: any;
2726
+ };
2727
+ constructor(map?: {
2728
+ [key: string]: any;
2729
+ });
2730
+ }
2731
+ export declare class UpdateSubSceneSeqShrinkRequest extends $tea.Model {
2732
+ sceneId?: string;
2733
+ sortSubSceneIdsShrink?: string;
2734
+ static names(): {
2735
+ [key: string]: string;
2736
+ };
2737
+ static types(): {
2738
+ [key: string]: any;
2739
+ };
2740
+ constructor(map?: {
2741
+ [key: string]: any;
2742
+ });
2743
+ }
2744
+ export declare class UpdateSubSceneSeqResponseBody extends $tea.Model {
2745
+ code?: number;
2746
+ message?: string;
2747
+ requestId?: string;
2748
+ success?: boolean;
2749
+ static names(): {
2750
+ [key: string]: string;
2751
+ };
2752
+ static types(): {
2753
+ [key: string]: any;
2754
+ };
2755
+ constructor(map?: {
2756
+ [key: string]: any;
2757
+ });
2758
+ }
2759
+ export declare class UpdateSubSceneSeqResponse extends $tea.Model {
2760
+ headers: {
2761
+ [key: string]: string;
2762
+ };
2763
+ statusCode: number;
2764
+ body: UpdateSubSceneSeqResponseBody;
2765
+ static names(): {
2766
+ [key: string]: string;
2767
+ };
2768
+ static types(): {
2769
+ [key: string]: any;
2770
+ };
2771
+ constructor(map?: {
2772
+ [key: string]: any;
2773
+ });
2774
+ }
2613
2775
  export declare class AddRoomPlanResponseBodyData extends $tea.Model {
2614
2776
  accessId?: string;
2615
2777
  callback?: string;
@@ -2628,6 +2790,18 @@ export declare class AddRoomPlanResponseBodyData extends $tea.Model {
2628
2790
  [key: string]: any;
2629
2791
  });
2630
2792
  }
2793
+ export declare class CopySceneResponseBodyData extends $tea.Model {
2794
+ taskId?: string;
2795
+ static names(): {
2796
+ [key: string]: string;
2797
+ };
2798
+ static types(): {
2799
+ [key: string]: any;
2800
+ };
2801
+ constructor(map?: {
2802
+ [key: string]: any;
2803
+ });
2804
+ }
2631
2805
  export declare class GetConnDataResponseBodyList extends $tea.Model {
2632
2806
  id?: string;
2633
2807
  mapId?: string;
@@ -2642,6 +2816,19 @@ export declare class GetConnDataResponseBodyList extends $tea.Model {
2642
2816
  [key: string]: any;
2643
2817
  });
2644
2818
  }
2819
+ export declare class GetCopySceneTaskStatusResponseBodyData extends $tea.Model {
2820
+ progress?: number;
2821
+ status?: string;
2822
+ static names(): {
2823
+ [key: string]: string;
2824
+ };
2825
+ static types(): {
2826
+ [key: string]: any;
2827
+ };
2828
+ constructor(map?: {
2829
+ [key: string]: any;
2830
+ });
2831
+ }
2645
2832
  export declare class GetHotspotSceneDataResponseBodyData extends $tea.Model {
2646
2833
  modelToken?: string;
2647
2834
  previewData?: string;
@@ -2977,6 +3164,8 @@ export default class Client extends OpenApi {
2977
3164
  addSubScene(request: AddSubSceneRequest): Promise<AddSubSceneResponse>;
2978
3165
  checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse>;
2979
3166
  checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
3167
+ copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse>;
3168
+ copyScene(request: CopySceneRequest): Promise<CopySceneResponse>;
2980
3169
  detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
2981
3170
  detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
2982
3171
  detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
@@ -2991,6 +3180,8 @@ export default class Client extends OpenApi {
2991
3180
  dropSubScene(request: DropSubSceneRequest): Promise<DropSubSceneResponse>;
2992
3181
  getConnDataWithOptions(request: GetConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetConnDataResponse>;
2993
3182
  getConnData(request: GetConnDataRequest): Promise<GetConnDataResponse>;
3183
+ getCopySceneTaskStatusWithOptions(request: GetCopySceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetCopySceneTaskStatusResponse>;
3184
+ getCopySceneTaskStatus(request: GetCopySceneTaskStatusRequest): Promise<GetCopySceneTaskStatusResponse>;
2994
3185
  getHotspotConfigWithOptions(request: GetHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotConfigResponse>;
2995
3186
  getHotspotConfig(request: GetHotspotConfigRequest): Promise<GetHotspotConfigResponse>;
2996
3187
  getHotspotSceneDataWithOptions(request: GetHotspotSceneDataRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotSceneDataResponse>;
@@ -3075,6 +3266,8 @@ export default class Client extends OpenApi {
3075
3266
  updateProject(request: UpdateProjectRequest): Promise<UpdateProjectResponse>;
3076
3267
  updateSceneWithOptions(request: UpdateSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSceneResponse>;
3077
3268
  updateScene(request: UpdateSceneRequest): Promise<UpdateSceneResponse>;
3078
- updateSubSceneWithOptions(request: UpdateSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneResponse>;
3269
+ updateSubSceneWithOptions(tmpReq: UpdateSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneResponse>;
3079
3270
  updateSubScene(request: UpdateSubSceneRequest): Promise<UpdateSubSceneResponse>;
3271
+ updateSubSceneSeqWithOptions(tmpReq: UpdateSubSceneSeqRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneSeqResponse>;
3272
+ updateSubSceneSeq(request: UpdateSubSceneSeqRequest): Promise<UpdateSubSceneSeqResponse>;
3080
3273
  }