@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 ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ English | [简体中文](README-CN.md)
2
+ ![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
3
+
4
+ # Alibaba Cloud tdsr SDK for NodeJS
5
+
6
+ ## Installation
7
+ If you use `npm` to manage your dependence, you can use the following command:
8
+
9
+ ```sh
10
+ npm install @alicloud/tdsr20200101 -S
11
+ ```
12
+
13
+ ## Issues
14
+ [Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
15
+
16
+ ## Usage
17
+ [Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
18
+
19
+ ## References
20
+ * [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
21
+
22
+ ## License
23
+ [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
24
+
25
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
package/dist/client.d.ts CHANGED
@@ -268,21 +268,8 @@ export declare class AddSubSceneResponse extends $tea.Model {
268
268
  [key: string]: any;
269
269
  });
270
270
  }
271
- export declare class CheckResourceRequest extends $tea.Model {
272
- bid?: string;
273
- country?: string;
274
- gmtWakeup?: string;
275
- hid?: number;
276
- interrupt?: boolean;
277
- invoker?: string;
278
- level?: number;
279
- message?: string;
280
- pk?: string;
281
- prompt?: string;
282
- success?: boolean;
283
- taskExtraData?: string;
284
- taskIdentifier?: string;
285
- url?: string;
271
+ export declare class CheckUserPropertyRequest extends $tea.Model {
272
+ uid?: string;
286
273
  static names(): {
287
274
  [key: string]: string;
288
275
  };
@@ -293,153 +280,10 @@ export declare class CheckResourceRequest extends $tea.Model {
293
280
  [key: string]: any;
294
281
  });
295
282
  }
296
- export declare class CheckResourceResponseBody extends $tea.Model {
297
- bid?: string;
298
- country?: string;
299
- gmtWakeup?: string;
300
- hid?: number;
301
- interrupt?: boolean;
302
- invoker?: string;
303
- level?: number;
283
+ export declare class CheckUserPropertyResponseBody extends $tea.Model {
284
+ code?: number;
285
+ match?: boolean;
304
286
  message?: string;
305
- pk?: string;
306
- prompt?: string;
307
- requestId?: string;
308
- success?: boolean;
309
- taskExtraData?: string;
310
- taskIdentifier?: string;
311
- url?: string;
312
- static names(): {
313
- [key: string]: string;
314
- };
315
- static types(): {
316
- [key: string]: any;
317
- };
318
- constructor(map?: {
319
- [key: string]: any;
320
- });
321
- }
322
- export declare class CheckResourceResponse extends $tea.Model {
323
- headers: {
324
- [key: string]: string;
325
- };
326
- body: CheckResourceResponseBody;
327
- static names(): {
328
- [key: string]: string;
329
- };
330
- static types(): {
331
- [key: string]: any;
332
- };
333
- constructor(map?: {
334
- [key: string]: any;
335
- });
336
- }
337
- export declare class CreateProjectRequest extends $tea.Model {
338
- builderUserIdList?: string;
339
- businessId?: string;
340
- businessUserIdList?: string;
341
- gatherUserIdList?: string;
342
- name?: string;
343
- static names(): {
344
- [key: string]: string;
345
- };
346
- static types(): {
347
- [key: string]: any;
348
- };
349
- constructor(map?: {
350
- [key: string]: any;
351
- });
352
- }
353
- export declare class CreateProjectResponseBody extends $tea.Model {
354
- errMessage?: string;
355
- id?: number;
356
- name?: string;
357
- requestId?: string;
358
- success?: boolean;
359
- static names(): {
360
- [key: string]: string;
361
- };
362
- static types(): {
363
- [key: string]: any;
364
- };
365
- constructor(map?: {
366
- [key: string]: any;
367
- });
368
- }
369
- export declare class CreateProjectResponse extends $tea.Model {
370
- headers: {
371
- [key: string]: string;
372
- };
373
- body: CreateProjectResponseBody;
374
- static names(): {
375
- [key: string]: string;
376
- };
377
- static types(): {
378
- [key: string]: any;
379
- };
380
- constructor(map?: {
381
- [key: string]: any;
382
- });
383
- }
384
- export declare class CreateSceneRequest extends $tea.Model {
385
- name?: string;
386
- projectId?: string;
387
- static names(): {
388
- [key: string]: string;
389
- };
390
- static types(): {
391
- [key: string]: any;
392
- };
393
- constructor(map?: {
394
- [key: string]: any;
395
- });
396
- }
397
- export declare class CreateSceneResponseBody extends $tea.Model {
398
- errMessage?: string;
399
- previewToken?: string;
400
- requestId?: string;
401
- sceneId?: number;
402
- success?: boolean;
403
- static names(): {
404
- [key: string]: string;
405
- };
406
- static types(): {
407
- [key: string]: any;
408
- };
409
- constructor(map?: {
410
- [key: string]: any;
411
- });
412
- }
413
- export declare class CreateSceneResponse extends $tea.Model {
414
- headers: {
415
- [key: string]: string;
416
- };
417
- body: CreateSceneResponseBody;
418
- static names(): {
419
- [key: string]: string;
420
- };
421
- static types(): {
422
- [key: string]: any;
423
- };
424
- constructor(map?: {
425
- [key: string]: any;
426
- });
427
- }
428
- export declare class DeleteFileRequest extends $tea.Model {
429
- paramFile?: string;
430
- subSceneUuid?: string;
431
- static names(): {
432
- [key: string]: string;
433
- };
434
- static types(): {
435
- [key: string]: any;
436
- };
437
- constructor(map?: {
438
- [key: string]: any;
439
- });
440
- }
441
- export declare class DeleteFileResponseBody extends $tea.Model {
442
- errMessage?: string;
443
287
  requestId?: string;
444
288
  success?: boolean;
445
289
  static names(): {
@@ -452,52 +296,11 @@ export declare class DeleteFileResponseBody extends $tea.Model {
452
296
  [key: string]: any;
453
297
  });
454
298
  }
455
- export declare class DeleteFileResponse extends $tea.Model {
299
+ export declare class CheckUserPropertyResponse extends $tea.Model {
456
300
  headers: {
457
301
  [key: string]: string;
458
302
  };
459
- body: DeleteFileResponseBody;
460
- static names(): {
461
- [key: string]: string;
462
- };
463
- static types(): {
464
- [key: string]: any;
465
- };
466
- constructor(map?: {
467
- [key: string]: any;
468
- });
469
- }
470
- export declare class DeleteProjectRequest extends $tea.Model {
471
- projectId?: string;
472
- static names(): {
473
- [key: string]: string;
474
- };
475
- static types(): {
476
- [key: string]: any;
477
- };
478
- constructor(map?: {
479
- [key: string]: any;
480
- });
481
- }
482
- export declare class DeleteProjectResponseBody extends $tea.Model {
483
- errMessage?: string;
484
- requestId?: string;
485
- success?: boolean;
486
- static names(): {
487
- [key: string]: string;
488
- };
489
- static types(): {
490
- [key: string]: any;
491
- };
492
- constructor(map?: {
493
- [key: string]: any;
494
- });
495
- }
496
- export declare class DeleteProjectResponse extends $tea.Model {
497
- headers: {
498
- [key: string]: string;
499
- };
500
- body: DeleteProjectResponseBody;
303
+ body: CheckUserPropertyResponseBody;
501
304
  static names(): {
502
305
  [key: string]: string;
503
306
  };
@@ -627,12 +430,16 @@ export declare class DetailSubSceneResponseBody extends $tea.Model {
627
430
  gmtCreate?: number;
628
431
  gmtModified?: number;
629
432
  id?: string;
433
+ imageUrl?: string;
434
+ layoutData?: string;
630
435
  message?: string;
631
436
  name?: string;
437
+ originUrl?: string;
632
438
  requestId?: string;
633
439
  resourceId?: string;
634
440
  status?: number;
635
441
  success?: boolean;
442
+ type?: string;
636
443
  url?: string;
637
444
  static names(): {
638
445
  [key: string]: string;
@@ -1104,9 +911,8 @@ export declare class GetOssPolicyResponse extends $tea.Model {
1104
911
  [key: string]: any;
1105
912
  });
1106
913
  }
1107
- export declare class GetPolicyRequest extends $tea.Model {
1108
- subSceneUuid?: string;
1109
- type?: string;
914
+ export declare class GetRectifyImageRequest extends $tea.Model {
915
+ subSceneId?: string;
1110
916
  static names(): {
1111
917
  [key: string]: string;
1112
918
  };
@@ -1117,14 +923,12 @@ export declare class GetPolicyRequest extends $tea.Model {
1117
923
  [key: string]: any;
1118
924
  });
1119
925
  }
1120
- export declare class GetPolicyResponseBody extends $tea.Model {
1121
- data?: {
1122
- [key: string]: any;
1123
- };
1124
- errMessage?: string;
1125
- objectString?: string;
926
+ export declare class GetRectifyImageResponseBody extends $tea.Model {
927
+ code?: number;
928
+ message?: string;
1126
929
  requestId?: string;
1127
930
  success?: boolean;
931
+ url?: string;
1128
932
  static names(): {
1129
933
  [key: string]: string;
1130
934
  };
@@ -1135,11 +939,11 @@ export declare class GetPolicyResponseBody extends $tea.Model {
1135
939
  [key: string]: any;
1136
940
  });
1137
941
  }
1138
- export declare class GetPolicyResponse extends $tea.Model {
942
+ export declare class GetRectifyImageResponse extends $tea.Model {
1139
943
  headers: {
1140
944
  [key: string]: string;
1141
945
  };
1142
- body: GetPolicyResponseBody;
946
+ body: GetRectifyImageResponseBody;
1143
947
  static names(): {
1144
948
  [key: string]: string;
1145
949
  };
@@ -1150,8 +954,8 @@ export declare class GetPolicyResponse extends $tea.Model {
1150
954
  [key: string]: any;
1151
955
  });
1152
956
  }
1153
- export declare class GetRectifyImageRequest extends $tea.Model {
1154
- subSceneId?: string;
957
+ export declare class GetSceneBuildTaskStatusRequest extends $tea.Model {
958
+ sceneId?: string;
1155
959
  static names(): {
1156
960
  [key: string]: string;
1157
961
  };
@@ -1162,12 +966,15 @@ export declare class GetRectifyImageRequest extends $tea.Model {
1162
966
  [key: string]: any;
1163
967
  });
1164
968
  }
1165
- export declare class GetRectifyImageResponseBody extends $tea.Model {
969
+ export declare class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
1166
970
  code?: number;
971
+ errorCode?: string;
972
+ errorMsg?: string;
1167
973
  message?: string;
1168
974
  requestId?: string;
975
+ sceneId?: string;
976
+ status?: string;
1169
977
  success?: boolean;
1170
- url?: string;
1171
978
  static names(): {
1172
979
  [key: string]: string;
1173
980
  };
@@ -1178,11 +985,11 @@ export declare class GetRectifyImageResponseBody extends $tea.Model {
1178
985
  [key: string]: any;
1179
986
  });
1180
987
  }
1181
- export declare class GetRectifyImageResponse extends $tea.Model {
988
+ export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
1182
989
  headers: {
1183
990
  [key: string]: string;
1184
991
  };
1185
- body: GetRectifyImageResponseBody;
992
+ body: GetSceneBuildTaskStatusResponseBody;
1186
993
  static names(): {
1187
994
  [key: string]: string;
1188
995
  };
@@ -1193,8 +1000,11 @@ export declare class GetRectifyImageResponse extends $tea.Model {
1193
1000
  [key: string]: any;
1194
1001
  });
1195
1002
  }
1196
- export declare class GetSceneBuildTaskStatusRequest extends $tea.Model {
1197
- sceneId?: string;
1003
+ export declare class GetScenePreviewDataRequest extends $tea.Model {
1004
+ domain?: string;
1005
+ enabled?: boolean;
1006
+ previewToken?: string;
1007
+ showTag?: boolean;
1198
1008
  static names(): {
1199
1009
  [key: string]: string;
1200
1010
  };
@@ -1205,14 +1015,11 @@ export declare class GetSceneBuildTaskStatusRequest extends $tea.Model {
1205
1015
  [key: string]: any;
1206
1016
  });
1207
1017
  }
1208
- export declare class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
1018
+ export declare class GetScenePreviewDataResponseBody extends $tea.Model {
1209
1019
  code?: number;
1210
- errorCode?: string;
1211
- errorMsg?: string;
1020
+ data?: GetScenePreviewDataResponseBodyData;
1212
1021
  message?: string;
1213
1022
  requestId?: string;
1214
- sceneId?: string;
1215
- status?: string;
1216
1023
  success?: boolean;
1217
1024
  static names(): {
1218
1025
  [key: string]: string;
@@ -1224,11 +1031,11 @@ export declare class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
1224
1031
  [key: string]: any;
1225
1032
  });
1226
1033
  }
1227
- export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
1034
+ export declare class GetScenePreviewDataResponse extends $tea.Model {
1228
1035
  headers: {
1229
1036
  [key: string]: string;
1230
1037
  };
1231
- body: GetSceneBuildTaskStatusResponseBody;
1038
+ body: GetScenePreviewDataResponseBody;
1232
1039
  static names(): {
1233
1040
  [key: string]: string;
1234
1041
  };
@@ -1651,49 +1458,6 @@ export declare class ListSceneResponse extends $tea.Model {
1651
1458
  [key: string]: any;
1652
1459
  });
1653
1460
  }
1654
- export declare class ListScenesRequest extends $tea.Model {
1655
- isPublishQuery?: boolean;
1656
- projectId?: string;
1657
- static names(): {
1658
- [key: string]: string;
1659
- };
1660
- static types(): {
1661
- [key: string]: any;
1662
- };
1663
- constructor(map?: {
1664
- [key: string]: any;
1665
- });
1666
- }
1667
- export declare class ListScenesResponseBody extends $tea.Model {
1668
- data?: ListScenesResponseBodyData[];
1669
- errMessage?: string;
1670
- requestId?: string;
1671
- success?: boolean;
1672
- static names(): {
1673
- [key: string]: string;
1674
- };
1675
- static types(): {
1676
- [key: string]: any;
1677
- };
1678
- constructor(map?: {
1679
- [key: string]: any;
1680
- });
1681
- }
1682
- export declare class ListScenesResponse extends $tea.Model {
1683
- headers: {
1684
- [key: string]: string;
1685
- };
1686
- body: ListScenesResponseBody;
1687
- static names(): {
1688
- [key: string]: string;
1689
- };
1690
- static types(): {
1691
- [key: string]: any;
1692
- };
1693
- constructor(map?: {
1694
- [key: string]: any;
1695
- });
1696
- }
1697
1461
  export declare class ListSubSceneRequest extends $tea.Model {
1698
1462
  pageNum?: number;
1699
1463
  pageSize?: number;
@@ -2661,6 +2425,129 @@ export declare class GetHotspotSceneDataResponseBodyData extends $tea.Model {
2661
2425
  [key: string]: any;
2662
2426
  });
2663
2427
  }
2428
+ export declare class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
2429
+ rotation?: number[];
2430
+ spot?: number[];
2431
+ viewpoint?: number[];
2432
+ static names(): {
2433
+ [key: string]: string;
2434
+ };
2435
+ static types(): {
2436
+ [key: string]: any;
2437
+ };
2438
+ constructor(map?: {
2439
+ [key: string]: any;
2440
+ });
2441
+ }
2442
+ export declare class GetScenePreviewDataResponseBodyDataModelPanoList extends $tea.Model {
2443
+ curRoomPicList?: string[];
2444
+ enabled?: boolean;
2445
+ floorIdx?: string;
2446
+ id?: string;
2447
+ mainImage?: boolean;
2448
+ neighbours?: string[];
2449
+ position?: GetScenePreviewDataResponseBodyDataModelPanoListPosition;
2450
+ rawName?: string;
2451
+ resource?: string;
2452
+ roomIdx?: string;
2453
+ subSceneId?: string;
2454
+ token?: string;
2455
+ virtualId?: string;
2456
+ virtualName?: string;
2457
+ static names(): {
2458
+ [key: string]: string;
2459
+ };
2460
+ static types(): {
2461
+ [key: string]: any;
2462
+ };
2463
+ constructor(map?: {
2464
+ [key: string]: any;
2465
+ });
2466
+ }
2467
+ export declare class GetScenePreviewDataResponseBodyDataModel extends $tea.Model {
2468
+ modelPath?: string;
2469
+ panoList?: GetScenePreviewDataResponseBodyDataModelPanoList[];
2470
+ textureModelPath?: string;
2471
+ texturePanoPath?: string;
2472
+ static names(): {
2473
+ [key: string]: string;
2474
+ };
2475
+ static types(): {
2476
+ [key: string]: any;
2477
+ };
2478
+ constructor(map?: {
2479
+ [key: string]: any;
2480
+ });
2481
+ }
2482
+ export declare class GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig extends $tea.Model {
2483
+ customText?: string;
2484
+ type?: string;
2485
+ static names(): {
2486
+ [key: string]: string;
2487
+ };
2488
+ static types(): {
2489
+ [key: string]: any;
2490
+ };
2491
+ constructor(map?: {
2492
+ [key: string]: any;
2493
+ });
2494
+ }
2495
+ export declare class GetScenePreviewDataResponseBodyDataTagsConfig extends $tea.Model {
2496
+ backgroundColor?: string;
2497
+ buttonConfig?: GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig;
2498
+ content?: string;
2499
+ formImgSize?: number[];
2500
+ formJumpType?: boolean;
2501
+ formSelectImgType?: string;
2502
+ images?: string[];
2503
+ isTagVisibleBy3d?: boolean;
2504
+ link?: string;
2505
+ panoId?: string;
2506
+ position?: number[];
2507
+ positionPanoCube?: number[];
2508
+ relatedPanoIds?: string[];
2509
+ sceneId?: number;
2510
+ title?: string;
2511
+ video?: string;
2512
+ static names(): {
2513
+ [key: string]: string;
2514
+ };
2515
+ static types(): {
2516
+ [key: string]: any;
2517
+ };
2518
+ constructor(map?: {
2519
+ [key: string]: any;
2520
+ });
2521
+ }
2522
+ export declare class GetScenePreviewDataResponseBodyDataTags extends $tea.Model {
2523
+ config?: GetScenePreviewDataResponseBodyDataTagsConfig;
2524
+ id?: string;
2525
+ position?: number[];
2526
+ positionPanoCube?: number[];
2527
+ type?: string;
2528
+ static names(): {
2529
+ [key: string]: string;
2530
+ };
2531
+ static types(): {
2532
+ [key: string]: any;
2533
+ };
2534
+ constructor(map?: {
2535
+ [key: string]: any;
2536
+ });
2537
+ }
2538
+ export declare class GetScenePreviewDataResponseBodyData extends $tea.Model {
2539
+ model?: GetScenePreviewDataResponseBodyDataModel;
2540
+ tags?: GetScenePreviewDataResponseBodyDataTags[];
2541
+ static names(): {
2542
+ [key: string]: string;
2543
+ };
2544
+ static types(): {
2545
+ [key: string]: any;
2546
+ };
2547
+ constructor(map?: {
2548
+ [key: string]: any;
2549
+ });
2550
+ }
2664
2551
  export declare class GetScenePreviewInfoResponseBodyData extends $tea.Model {
2665
2552
  modelPath?: string;
2666
2553
  panoList?: string;
@@ -2746,18 +2633,6 @@ export declare class ListSceneResponseBodyList extends $tea.Model {
2746
2633
  [key: string]: any;
2747
2634
  });
2748
2635
  }
2749
- export declare class ListScenesResponseBodyData extends $tea.Model {
2750
- sceneId?: string;
2751
- static names(): {
2752
- [key: string]: string;
2753
- };
2754
- static types(): {
2755
- [key: string]: any;
2756
- };
2757
- constructor(map?: {
2758
- [key: string]: any;
2759
- });
2760
- }
2761
2636
  export declare class ListSubSceneResponseBodyList extends $tea.Model {
2762
2637
  baseImageUrl?: string;
2763
2638
  coverUrl?: string;
@@ -2801,16 +2676,8 @@ export default class Client extends OpenApi {
2801
2676
  addScene(request: AddSceneRequest): Promise<AddSceneResponse>;
2802
2677
  addSubSceneWithOptions(request: AddSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSubSceneResponse>;
2803
2678
  addSubScene(request: AddSubSceneRequest): Promise<AddSubSceneResponse>;
2804
- checkResourceWithOptions(request: CheckResourceRequest, runtime: $Util.RuntimeOptions): Promise<CheckResourceResponse>;
2805
- checkResource(request: CheckResourceRequest): Promise<CheckResourceResponse>;
2806
- createProjectWithOptions(request: CreateProjectRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectResponse>;
2807
- createProject(request: CreateProjectRequest): Promise<CreateProjectResponse>;
2808
- createSceneWithOptions(request: CreateSceneRequest, runtime: $Util.RuntimeOptions): Promise<CreateSceneResponse>;
2809
- createScene(request: CreateSceneRequest): Promise<CreateSceneResponse>;
2810
- deleteFileWithOptions(request: DeleteFileRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFileResponse>;
2811
- deleteFile(request: DeleteFileRequest): Promise<DeleteFileResponse>;
2812
- deleteProjectWithOptions(request: DeleteProjectRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectResponse>;
2813
- deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse>;
2679
+ checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse>;
2680
+ checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
2814
2681
  detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
2815
2682
  detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
2816
2683
  detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
@@ -2837,12 +2704,12 @@ export default class Client extends OpenApi {
2837
2704
  getOriginLayoutData(request: GetOriginLayoutDataRequest): Promise<GetOriginLayoutDataResponse>;
2838
2705
  getOssPolicyWithOptions(request: GetOssPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetOssPolicyResponse>;
2839
2706
  getOssPolicy(request: GetOssPolicyRequest): Promise<GetOssPolicyResponse>;
2840
- getPolicyWithOptions(request: GetPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetPolicyResponse>;
2841
- getPolicy(request: GetPolicyRequest): Promise<GetPolicyResponse>;
2842
2707
  getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse>;
2843
2708
  getRectifyImage(request: GetRectifyImageRequest): Promise<GetRectifyImageResponse>;
2844
2709
  getSceneBuildTaskStatusWithOptions(request: GetSceneBuildTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSceneBuildTaskStatusResponse>;
2845
2710
  getSceneBuildTaskStatus(request: GetSceneBuildTaskStatusRequest): Promise<GetSceneBuildTaskStatusResponse>;
2711
+ getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse>;
2712
+ getScenePreviewData(request: GetScenePreviewDataRequest): Promise<GetScenePreviewDataResponse>;
2846
2713
  getScenePreviewInfoWithOptions(request: GetScenePreviewInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewInfoResponse>;
2847
2714
  getScenePreviewInfo(request: GetScenePreviewInfoRequest): Promise<GetScenePreviewInfoResponse>;
2848
2715
  getSingleConnDataWithOptions(request: GetSingleConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSingleConnDataResponse>;
@@ -2861,8 +2728,6 @@ export default class Client extends OpenApi {
2861
2728
  listProject(request: ListProjectRequest): Promise<ListProjectResponse>;
2862
2729
  listSceneWithOptions(request: ListSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSceneResponse>;
2863
2730
  listScene(request: ListSceneRequest): Promise<ListSceneResponse>;
2864
- listScenesWithOptions(request: ListScenesRequest, runtime: $Util.RuntimeOptions): Promise<ListScenesResponse>;
2865
- listScenes(request: ListScenesRequest): Promise<ListScenesResponse>;
2866
2731
  listSubSceneWithOptions(request: ListSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSubSceneResponse>;
2867
2732
  listSubScene(request: ListSubSceneRequest): Promise<ListSubSceneResponse>;
2868
2733
  optimizeRightAngleWithOptions(request: OptimizeRightAngleRequest, runtime: $Util.RuntimeOptions): Promise<OptimizeRightAngleResponse>;