@alicloud/tdsr20200101 3.0.8 → 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 +427 -1
- package/dist/client.js +792 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1007 -16
package/dist/client.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare class AddMosaicsResponse extends $tea.Model {
|
|
|
37
37
|
headers: {
|
|
38
38
|
[key: string]: string;
|
|
39
39
|
};
|
|
40
|
+
statusCode: number;
|
|
40
41
|
body: AddMosaicsResponseBody;
|
|
41
42
|
static names(): {
|
|
42
43
|
[key: string]: string;
|
|
@@ -81,6 +82,7 @@ export declare class AddProjectResponse extends $tea.Model {
|
|
|
81
82
|
headers: {
|
|
82
83
|
[key: string]: string;
|
|
83
84
|
};
|
|
85
|
+
statusCode: number;
|
|
84
86
|
body: AddProjectResponseBody;
|
|
85
87
|
static names(): {
|
|
86
88
|
[key: string]: string;
|
|
@@ -124,6 +126,7 @@ export declare class AddRelativePositionResponse extends $tea.Model {
|
|
|
124
126
|
headers: {
|
|
125
127
|
[key: string]: string;
|
|
126
128
|
};
|
|
129
|
+
statusCode: number;
|
|
127
130
|
body: AddRelativePositionResponseBody;
|
|
128
131
|
static names(): {
|
|
129
132
|
[key: string]: string;
|
|
@@ -167,6 +170,7 @@ export declare class AddRoomPlanResponse extends $tea.Model {
|
|
|
167
170
|
headers: {
|
|
168
171
|
[key: string]: string;
|
|
169
172
|
};
|
|
173
|
+
statusCode: number;
|
|
170
174
|
body: AddRoomPlanResponseBody;
|
|
171
175
|
static names(): {
|
|
172
176
|
[key: string]: string;
|
|
@@ -213,6 +217,7 @@ export declare class AddSceneResponse extends $tea.Model {
|
|
|
213
217
|
headers: {
|
|
214
218
|
[key: string]: string;
|
|
215
219
|
};
|
|
220
|
+
statusCode: number;
|
|
216
221
|
body: AddSceneResponseBody;
|
|
217
222
|
static names(): {
|
|
218
223
|
[key: string]: string;
|
|
@@ -258,6 +263,7 @@ export declare class AddSubSceneResponse extends $tea.Model {
|
|
|
258
263
|
headers: {
|
|
259
264
|
[key: string]: string;
|
|
260
265
|
};
|
|
266
|
+
statusCode: number;
|
|
261
267
|
body: AddSubSceneResponseBody;
|
|
262
268
|
static names(): {
|
|
263
269
|
[key: string]: string;
|
|
@@ -301,6 +307,7 @@ export declare class CheckUserPropertyResponse extends $tea.Model {
|
|
|
301
307
|
headers: {
|
|
302
308
|
[key: string]: string;
|
|
303
309
|
};
|
|
310
|
+
statusCode: number;
|
|
304
311
|
body: CheckUserPropertyResponseBody;
|
|
305
312
|
static names(): {
|
|
306
313
|
[key: string]: string;
|
|
@@ -312,6 +319,51 @@ export declare class CheckUserPropertyResponse extends $tea.Model {
|
|
|
312
319
|
[key: string]: any;
|
|
313
320
|
});
|
|
314
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
|
+
}
|
|
315
367
|
export declare class DetailProjectRequest extends $tea.Model {
|
|
316
368
|
id?: string;
|
|
317
369
|
static names(): {
|
|
@@ -350,6 +402,7 @@ export declare class DetailProjectResponse extends $tea.Model {
|
|
|
350
402
|
headers: {
|
|
351
403
|
[key: string]: string;
|
|
352
404
|
};
|
|
405
|
+
statusCode: number;
|
|
353
406
|
body: DetailProjectResponseBody;
|
|
354
407
|
static names(): {
|
|
355
408
|
[key: string]: string;
|
|
@@ -401,6 +454,7 @@ export declare class DetailSceneResponse extends $tea.Model {
|
|
|
401
454
|
headers: {
|
|
402
455
|
[key: string]: string;
|
|
403
456
|
};
|
|
457
|
+
statusCode: number;
|
|
404
458
|
body: DetailSceneResponseBody;
|
|
405
459
|
static names(): {
|
|
406
460
|
[key: string]: string;
|
|
@@ -456,6 +510,7 @@ export declare class DetailSubSceneResponse extends $tea.Model {
|
|
|
456
510
|
headers: {
|
|
457
511
|
[key: string]: string;
|
|
458
512
|
};
|
|
513
|
+
statusCode: number;
|
|
459
514
|
body: DetailSubSceneResponseBody;
|
|
460
515
|
static names(): {
|
|
461
516
|
[key: string]: string;
|
|
@@ -498,6 +553,7 @@ export declare class DropProjectResponse extends $tea.Model {
|
|
|
498
553
|
headers: {
|
|
499
554
|
[key: string]: string;
|
|
500
555
|
};
|
|
556
|
+
statusCode: number;
|
|
501
557
|
body: DropProjectResponseBody;
|
|
502
558
|
static names(): {
|
|
503
559
|
[key: string]: string;
|
|
@@ -540,6 +596,7 @@ export declare class DropSceneResponse extends $tea.Model {
|
|
|
540
596
|
headers: {
|
|
541
597
|
[key: string]: string;
|
|
542
598
|
};
|
|
599
|
+
statusCode: number;
|
|
543
600
|
body: DropSceneResponseBody;
|
|
544
601
|
static names(): {
|
|
545
602
|
[key: string]: string;
|
|
@@ -582,6 +639,7 @@ export declare class DropSubSceneResponse extends $tea.Model {
|
|
|
582
639
|
headers: {
|
|
583
640
|
[key: string]: string;
|
|
584
641
|
};
|
|
642
|
+
statusCode: number;
|
|
585
643
|
body: DropSubSceneResponseBody;
|
|
586
644
|
static names(): {
|
|
587
645
|
[key: string]: string;
|
|
@@ -627,6 +685,7 @@ export declare class GetConnDataResponse extends $tea.Model {
|
|
|
627
685
|
headers: {
|
|
628
686
|
[key: string]: string;
|
|
629
687
|
};
|
|
688
|
+
statusCode: number;
|
|
630
689
|
body: GetConnDataResponseBody;
|
|
631
690
|
static names(): {
|
|
632
691
|
[key: string]: string;
|
|
@@ -638,6 +697,50 @@ export declare class GetConnDataResponse extends $tea.Model {
|
|
|
638
697
|
[key: string]: any;
|
|
639
698
|
});
|
|
640
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
|
+
}
|
|
641
744
|
export declare class GetHotspotConfigRequest extends $tea.Model {
|
|
642
745
|
domain?: string;
|
|
643
746
|
enabled?: boolean;
|
|
@@ -673,6 +776,7 @@ export declare class GetHotspotConfigResponse extends $tea.Model {
|
|
|
673
776
|
headers: {
|
|
674
777
|
[key: string]: string;
|
|
675
778
|
};
|
|
779
|
+
statusCode: number;
|
|
676
780
|
body: GetHotspotConfigResponseBody;
|
|
677
781
|
static names(): {
|
|
678
782
|
[key: string]: string;
|
|
@@ -719,6 +823,7 @@ export declare class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
719
823
|
headers: {
|
|
720
824
|
[key: string]: string;
|
|
721
825
|
};
|
|
826
|
+
statusCode: number;
|
|
722
827
|
body: GetHotspotSceneDataResponseBody;
|
|
723
828
|
static names(): {
|
|
724
829
|
[key: string]: string;
|
|
@@ -766,6 +871,7 @@ export declare class GetHotspotTagResponse extends $tea.Model {
|
|
|
766
871
|
headers: {
|
|
767
872
|
[key: string]: string;
|
|
768
873
|
};
|
|
874
|
+
statusCode: number;
|
|
769
875
|
body: GetHotspotTagResponseBody;
|
|
770
876
|
static names(): {
|
|
771
877
|
[key: string]: string;
|
|
@@ -809,6 +915,7 @@ export declare class GetLayoutDataResponse extends $tea.Model {
|
|
|
809
915
|
headers: {
|
|
810
916
|
[key: string]: string;
|
|
811
917
|
};
|
|
918
|
+
statusCode: number;
|
|
812
919
|
body: GetLayoutDataResponseBody;
|
|
813
920
|
static names(): {
|
|
814
921
|
[key: string]: string;
|
|
@@ -852,6 +959,7 @@ export declare class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
852
959
|
headers: {
|
|
853
960
|
[key: string]: string;
|
|
854
961
|
};
|
|
962
|
+
statusCode: number;
|
|
855
963
|
body: GetOriginLayoutDataResponseBody;
|
|
856
964
|
static names(): {
|
|
857
965
|
[key: string]: string;
|
|
@@ -901,6 +1009,7 @@ export declare class GetOssPolicyResponse extends $tea.Model {
|
|
|
901
1009
|
headers: {
|
|
902
1010
|
[key: string]: string;
|
|
903
1011
|
};
|
|
1012
|
+
statusCode: number;
|
|
904
1013
|
body: GetOssPolicyResponseBody;
|
|
905
1014
|
static names(): {
|
|
906
1015
|
[key: string]: string;
|
|
@@ -912,6 +1021,51 @@ export declare class GetOssPolicyResponse extends $tea.Model {
|
|
|
912
1021
|
[key: string]: any;
|
|
913
1022
|
});
|
|
914
1023
|
}
|
|
1024
|
+
export declare class GetPackSceneTaskStatusRequest extends $tea.Model {
|
|
1025
|
+
taskId?: string;
|
|
1026
|
+
type?: string;
|
|
1027
|
+
static names(): {
|
|
1028
|
+
[key: string]: string;
|
|
1029
|
+
};
|
|
1030
|
+
static types(): {
|
|
1031
|
+
[key: string]: any;
|
|
1032
|
+
};
|
|
1033
|
+
constructor(map?: {
|
|
1034
|
+
[key: string]: any;
|
|
1035
|
+
});
|
|
1036
|
+
}
|
|
1037
|
+
export declare class GetPackSceneTaskStatusResponseBody extends $tea.Model {
|
|
1038
|
+
code?: number;
|
|
1039
|
+
data?: GetPackSceneTaskStatusResponseBodyData;
|
|
1040
|
+
message?: string;
|
|
1041
|
+
requestId?: string;
|
|
1042
|
+
success?: boolean;
|
|
1043
|
+
static names(): {
|
|
1044
|
+
[key: string]: string;
|
|
1045
|
+
};
|
|
1046
|
+
static types(): {
|
|
1047
|
+
[key: string]: any;
|
|
1048
|
+
};
|
|
1049
|
+
constructor(map?: {
|
|
1050
|
+
[key: string]: any;
|
|
1051
|
+
});
|
|
1052
|
+
}
|
|
1053
|
+
export declare class GetPackSceneTaskStatusResponse extends $tea.Model {
|
|
1054
|
+
headers: {
|
|
1055
|
+
[key: string]: string;
|
|
1056
|
+
};
|
|
1057
|
+
statusCode: number;
|
|
1058
|
+
body: GetPackSceneTaskStatusResponseBody;
|
|
1059
|
+
static names(): {
|
|
1060
|
+
[key: string]: string;
|
|
1061
|
+
};
|
|
1062
|
+
static types(): {
|
|
1063
|
+
[key: string]: any;
|
|
1064
|
+
};
|
|
1065
|
+
constructor(map?: {
|
|
1066
|
+
[key: string]: any;
|
|
1067
|
+
});
|
|
1068
|
+
}
|
|
915
1069
|
export declare class GetRectifyImageRequest extends $tea.Model {
|
|
916
1070
|
subSceneId?: string;
|
|
917
1071
|
static names(): {
|
|
@@ -944,6 +1098,7 @@ export declare class GetRectifyImageResponse extends $tea.Model {
|
|
|
944
1098
|
headers: {
|
|
945
1099
|
[key: string]: string;
|
|
946
1100
|
};
|
|
1101
|
+
statusCode: number;
|
|
947
1102
|
body: GetRectifyImageResponseBody;
|
|
948
1103
|
static names(): {
|
|
949
1104
|
[key: string]: string;
|
|
@@ -990,6 +1145,7 @@ export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
990
1145
|
headers: {
|
|
991
1146
|
[key: string]: string;
|
|
992
1147
|
};
|
|
1148
|
+
statusCode: number;
|
|
993
1149
|
body: GetSceneBuildTaskStatusResponseBody;
|
|
994
1150
|
static names(): {
|
|
995
1151
|
[key: string]: string;
|
|
@@ -1001,6 +1157,50 @@ export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1001
1157
|
[key: string]: any;
|
|
1002
1158
|
});
|
|
1003
1159
|
}
|
|
1160
|
+
export declare class GetScenePackUrlRequest extends $tea.Model {
|
|
1161
|
+
sceneId?: string;
|
|
1162
|
+
static names(): {
|
|
1163
|
+
[key: string]: string;
|
|
1164
|
+
};
|
|
1165
|
+
static types(): {
|
|
1166
|
+
[key: string]: any;
|
|
1167
|
+
};
|
|
1168
|
+
constructor(map?: {
|
|
1169
|
+
[key: string]: any;
|
|
1170
|
+
});
|
|
1171
|
+
}
|
|
1172
|
+
export declare class GetScenePackUrlResponseBody extends $tea.Model {
|
|
1173
|
+
code?: number;
|
|
1174
|
+
data?: GetScenePackUrlResponseBodyData;
|
|
1175
|
+
message?: string;
|
|
1176
|
+
requestId?: string;
|
|
1177
|
+
success?: boolean;
|
|
1178
|
+
static names(): {
|
|
1179
|
+
[key: string]: string;
|
|
1180
|
+
};
|
|
1181
|
+
static types(): {
|
|
1182
|
+
[key: string]: any;
|
|
1183
|
+
};
|
|
1184
|
+
constructor(map?: {
|
|
1185
|
+
[key: string]: any;
|
|
1186
|
+
});
|
|
1187
|
+
}
|
|
1188
|
+
export declare class GetScenePackUrlResponse extends $tea.Model {
|
|
1189
|
+
headers: {
|
|
1190
|
+
[key: string]: string;
|
|
1191
|
+
};
|
|
1192
|
+
statusCode: number;
|
|
1193
|
+
body: GetScenePackUrlResponseBody;
|
|
1194
|
+
static names(): {
|
|
1195
|
+
[key: string]: string;
|
|
1196
|
+
};
|
|
1197
|
+
static types(): {
|
|
1198
|
+
[key: string]: any;
|
|
1199
|
+
};
|
|
1200
|
+
constructor(map?: {
|
|
1201
|
+
[key: string]: any;
|
|
1202
|
+
});
|
|
1203
|
+
}
|
|
1004
1204
|
export declare class GetScenePreviewDataRequest extends $tea.Model {
|
|
1005
1205
|
domain?: string;
|
|
1006
1206
|
enabled?: boolean;
|
|
@@ -1036,6 +1236,7 @@ export declare class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
1036
1236
|
headers: {
|
|
1037
1237
|
[key: string]: string;
|
|
1038
1238
|
};
|
|
1239
|
+
statusCode: number;
|
|
1039
1240
|
body: GetScenePreviewDataResponseBody;
|
|
1040
1241
|
static names(): {
|
|
1041
1242
|
[key: string]: string;
|
|
@@ -1081,6 +1282,7 @@ export declare class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1081
1282
|
headers: {
|
|
1082
1283
|
[key: string]: string;
|
|
1083
1284
|
};
|
|
1285
|
+
statusCode: number;
|
|
1084
1286
|
body: GetScenePreviewInfoResponseBody;
|
|
1085
1287
|
static names(): {
|
|
1086
1288
|
[key: string]: string;
|
|
@@ -1124,6 +1326,7 @@ export declare class GetScenePreviewResourceResponse extends $tea.Model {
|
|
|
1124
1326
|
headers: {
|
|
1125
1327
|
[key: string]: string;
|
|
1126
1328
|
};
|
|
1329
|
+
statusCode: number;
|
|
1127
1330
|
body: GetScenePreviewResourceResponseBody;
|
|
1128
1331
|
static names(): {
|
|
1129
1332
|
[key: string]: string;
|
|
@@ -1168,6 +1371,7 @@ export declare class GetSingleConnDataResponse extends $tea.Model {
|
|
|
1168
1371
|
headers: {
|
|
1169
1372
|
[key: string]: string;
|
|
1170
1373
|
};
|
|
1374
|
+
statusCode: number;
|
|
1171
1375
|
body: GetSingleConnDataResponseBody;
|
|
1172
1376
|
static names(): {
|
|
1173
1377
|
[key: string]: string;
|
|
@@ -1211,6 +1415,7 @@ export declare class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
1211
1415
|
headers: {
|
|
1212
1416
|
[key: string]: string;
|
|
1213
1417
|
};
|
|
1418
|
+
statusCode: number;
|
|
1214
1419
|
body: GetSubSceneTaskStatusResponseBody;
|
|
1215
1420
|
static names(): {
|
|
1216
1421
|
[key: string]: string;
|
|
@@ -1257,6 +1462,7 @@ export declare class GetTaskStatusResponse extends $tea.Model {
|
|
|
1257
1462
|
headers: {
|
|
1258
1463
|
[key: string]: string;
|
|
1259
1464
|
};
|
|
1465
|
+
statusCode: number;
|
|
1260
1466
|
body: GetTaskStatusResponseBody;
|
|
1261
1467
|
static names(): {
|
|
1262
1468
|
[key: string]: string;
|
|
@@ -1302,6 +1508,7 @@ export declare class GetWindowConfigResponse extends $tea.Model {
|
|
|
1302
1508
|
headers: {
|
|
1303
1509
|
[key: string]: string;
|
|
1304
1510
|
};
|
|
1511
|
+
statusCode: number;
|
|
1305
1512
|
body: GetWindowConfigResponseBody;
|
|
1306
1513
|
static names(): {
|
|
1307
1514
|
[key: string]: string;
|
|
@@ -1346,6 +1553,7 @@ export declare class LabelBuildResponse extends $tea.Model {
|
|
|
1346
1553
|
headers: {
|
|
1347
1554
|
[key: string]: string;
|
|
1348
1555
|
};
|
|
1556
|
+
statusCode: number;
|
|
1349
1557
|
body: LabelBuildResponseBody;
|
|
1350
1558
|
static names(): {
|
|
1351
1559
|
[key: string]: string;
|
|
@@ -1392,6 +1600,7 @@ export declare class LinkImageResponse extends $tea.Model {
|
|
|
1392
1600
|
headers: {
|
|
1393
1601
|
[key: string]: string;
|
|
1394
1602
|
};
|
|
1603
|
+
statusCode: number;
|
|
1395
1604
|
body: LinkImageResponseBody;
|
|
1396
1605
|
static names(): {
|
|
1397
1606
|
[key: string]: string;
|
|
@@ -1441,6 +1650,7 @@ export declare class ListProjectResponse extends $tea.Model {
|
|
|
1441
1650
|
headers: {
|
|
1442
1651
|
[key: string]: string;
|
|
1443
1652
|
};
|
|
1653
|
+
statusCode: number;
|
|
1444
1654
|
body: ListProjectResponseBody;
|
|
1445
1655
|
static names(): {
|
|
1446
1656
|
[key: string]: string;
|
|
@@ -1491,6 +1701,7 @@ export declare class ListSceneResponse extends $tea.Model {
|
|
|
1491
1701
|
headers: {
|
|
1492
1702
|
[key: string]: string;
|
|
1493
1703
|
};
|
|
1704
|
+
statusCode: number;
|
|
1494
1705
|
body: ListSceneResponseBody;
|
|
1495
1706
|
static names(): {
|
|
1496
1707
|
[key: string]: string;
|
|
@@ -1507,6 +1718,7 @@ export declare class ListSubSceneRequest extends $tea.Model {
|
|
|
1507
1718
|
pageSize?: number;
|
|
1508
1719
|
sceneId?: string;
|
|
1509
1720
|
showLayoutData?: boolean;
|
|
1721
|
+
sortField?: string;
|
|
1510
1722
|
static names(): {
|
|
1511
1723
|
[key: string]: string;
|
|
1512
1724
|
};
|
|
@@ -1541,6 +1753,7 @@ export declare class ListSubSceneResponse extends $tea.Model {
|
|
|
1541
1753
|
headers: {
|
|
1542
1754
|
[key: string]: string;
|
|
1543
1755
|
};
|
|
1756
|
+
statusCode: number;
|
|
1544
1757
|
body: ListSubSceneResponseBody;
|
|
1545
1758
|
static names(): {
|
|
1546
1759
|
[key: string]: string;
|
|
@@ -1584,6 +1797,7 @@ export declare class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
1584
1797
|
headers: {
|
|
1585
1798
|
[key: string]: string;
|
|
1586
1799
|
};
|
|
1800
|
+
statusCode: number;
|
|
1587
1801
|
body: OptimizeRightAngleResponseBody;
|
|
1588
1802
|
static names(): {
|
|
1589
1803
|
[key: string]: string;
|
|
@@ -1595,6 +1809,51 @@ export declare class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
1595
1809
|
[key: string]: any;
|
|
1596
1810
|
});
|
|
1597
1811
|
}
|
|
1812
|
+
export declare class PackSceneRequest extends $tea.Model {
|
|
1813
|
+
sceneId?: string;
|
|
1814
|
+
type?: string;
|
|
1815
|
+
static names(): {
|
|
1816
|
+
[key: string]: string;
|
|
1817
|
+
};
|
|
1818
|
+
static types(): {
|
|
1819
|
+
[key: string]: any;
|
|
1820
|
+
};
|
|
1821
|
+
constructor(map?: {
|
|
1822
|
+
[key: string]: any;
|
|
1823
|
+
});
|
|
1824
|
+
}
|
|
1825
|
+
export declare class PackSceneResponseBody extends $tea.Model {
|
|
1826
|
+
code?: number;
|
|
1827
|
+
data?: PackSceneResponseBodyData;
|
|
1828
|
+
message?: string;
|
|
1829
|
+
requestId?: string;
|
|
1830
|
+
success?: boolean;
|
|
1831
|
+
static names(): {
|
|
1832
|
+
[key: string]: string;
|
|
1833
|
+
};
|
|
1834
|
+
static types(): {
|
|
1835
|
+
[key: string]: any;
|
|
1836
|
+
};
|
|
1837
|
+
constructor(map?: {
|
|
1838
|
+
[key: string]: any;
|
|
1839
|
+
});
|
|
1840
|
+
}
|
|
1841
|
+
export declare class PackSceneResponse extends $tea.Model {
|
|
1842
|
+
headers: {
|
|
1843
|
+
[key: string]: string;
|
|
1844
|
+
};
|
|
1845
|
+
statusCode: number;
|
|
1846
|
+
body: PackSceneResponseBody;
|
|
1847
|
+
static names(): {
|
|
1848
|
+
[key: string]: string;
|
|
1849
|
+
};
|
|
1850
|
+
static types(): {
|
|
1851
|
+
[key: string]: any;
|
|
1852
|
+
};
|
|
1853
|
+
constructor(map?: {
|
|
1854
|
+
[key: string]: any;
|
|
1855
|
+
});
|
|
1856
|
+
}
|
|
1598
1857
|
export declare class PredImageRequest extends $tea.Model {
|
|
1599
1858
|
correctVertical?: boolean;
|
|
1600
1859
|
countDetectDoor?: number;
|
|
@@ -1630,6 +1889,7 @@ export declare class PredImageResponse extends $tea.Model {
|
|
|
1630
1889
|
headers: {
|
|
1631
1890
|
[key: string]: string;
|
|
1632
1891
|
};
|
|
1892
|
+
statusCode: number;
|
|
1633
1893
|
body: PredImageResponseBody;
|
|
1634
1894
|
static names(): {
|
|
1635
1895
|
[key: string]: string;
|
|
@@ -1675,6 +1935,7 @@ export declare class PredictionWallLineResponse extends $tea.Model {
|
|
|
1675
1935
|
headers: {
|
|
1676
1936
|
[key: string]: string;
|
|
1677
1937
|
};
|
|
1938
|
+
statusCode: number;
|
|
1678
1939
|
body: PredictionWallLineResponseBody;
|
|
1679
1940
|
static names(): {
|
|
1680
1941
|
[key: string]: string;
|
|
@@ -1720,6 +1981,7 @@ export declare class PublishHotspotResponse extends $tea.Model {
|
|
|
1720
1981
|
headers: {
|
|
1721
1982
|
[key: string]: string;
|
|
1722
1983
|
};
|
|
1984
|
+
statusCode: number;
|
|
1723
1985
|
body: PublishHotspotResponseBody;
|
|
1724
1986
|
static names(): {
|
|
1725
1987
|
[key: string]: string;
|
|
@@ -1763,6 +2025,7 @@ export declare class PublishSceneResponse extends $tea.Model {
|
|
|
1763
2025
|
headers: {
|
|
1764
2026
|
[key: string]: string;
|
|
1765
2027
|
};
|
|
2028
|
+
statusCode: number;
|
|
1766
2029
|
body: PublishSceneResponseBody;
|
|
1767
2030
|
static names(): {
|
|
1768
2031
|
[key: string]: string;
|
|
@@ -1806,6 +2069,7 @@ export declare class PublishStatusResponse extends $tea.Model {
|
|
|
1806
2069
|
headers: {
|
|
1807
2070
|
[key: string]: string;
|
|
1808
2071
|
};
|
|
2072
|
+
statusCode: number;
|
|
1809
2073
|
body: PublishStatusResponseBody;
|
|
1810
2074
|
static names(): {
|
|
1811
2075
|
[key: string]: string;
|
|
@@ -1848,6 +2112,7 @@ export declare class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
1848
2112
|
headers: {
|
|
1849
2113
|
[key: string]: string;
|
|
1850
2114
|
};
|
|
2115
|
+
statusCode: number;
|
|
1851
2116
|
body: RecoveryOriginImageResponseBody;
|
|
1852
2117
|
static names(): {
|
|
1853
2118
|
[key: string]: string;
|
|
@@ -1894,6 +2159,7 @@ export declare class RectVerticalResponse extends $tea.Model {
|
|
|
1894
2159
|
headers: {
|
|
1895
2160
|
[key: string]: string;
|
|
1896
2161
|
};
|
|
2162
|
+
statusCode: number;
|
|
1897
2163
|
body: RectVerticalResponseBody;
|
|
1898
2164
|
static names(): {
|
|
1899
2165
|
[key: string]: string;
|
|
@@ -1939,6 +2205,7 @@ export declare class RectifyImageResponse extends $tea.Model {
|
|
|
1939
2205
|
headers: {
|
|
1940
2206
|
[key: string]: string;
|
|
1941
2207
|
};
|
|
2208
|
+
statusCode: number;
|
|
1942
2209
|
body: RectifyImageResponseBody;
|
|
1943
2210
|
static names(): {
|
|
1944
2211
|
[key: string]: string;
|
|
@@ -1981,6 +2248,7 @@ export declare class RollbackSubSceneResponse extends $tea.Model {
|
|
|
1981
2248
|
headers: {
|
|
1982
2249
|
[key: string]: string;
|
|
1983
2250
|
};
|
|
2251
|
+
statusCode: number;
|
|
1984
2252
|
body: RollbackSubSceneResponseBody;
|
|
1985
2253
|
static names(): {
|
|
1986
2254
|
[key: string]: string;
|
|
@@ -2023,6 +2291,7 @@ export declare class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
2023
2291
|
headers: {
|
|
2024
2292
|
[key: string]: string;
|
|
2025
2293
|
};
|
|
2294
|
+
statusCode: number;
|
|
2026
2295
|
body: SaveHotspotConfigResponseBody;
|
|
2027
2296
|
static names(): {
|
|
2028
2297
|
[key: string]: string;
|
|
@@ -2065,6 +2334,7 @@ export declare class SaveHotspotTagResponse extends $tea.Model {
|
|
|
2065
2334
|
headers: {
|
|
2066
2335
|
[key: string]: string;
|
|
2067
2336
|
};
|
|
2337
|
+
statusCode: number;
|
|
2068
2338
|
body: SaveHotspotTagResponseBody;
|
|
2069
2339
|
static names(): {
|
|
2070
2340
|
[key: string]: string;
|
|
@@ -2108,6 +2378,7 @@ export declare class ScenePublishResponse extends $tea.Model {
|
|
|
2108
2378
|
headers: {
|
|
2109
2379
|
[key: string]: string;
|
|
2110
2380
|
};
|
|
2381
|
+
statusCode: number;
|
|
2111
2382
|
body: ScenePublishResponseBody;
|
|
2112
2383
|
static names(): {
|
|
2113
2384
|
[key: string]: string;
|
|
@@ -2152,6 +2423,7 @@ export declare class TempPreviewResponse extends $tea.Model {
|
|
|
2152
2423
|
headers: {
|
|
2153
2424
|
[key: string]: string;
|
|
2154
2425
|
};
|
|
2426
|
+
statusCode: number;
|
|
2155
2427
|
body: TempPreviewResponseBody;
|
|
2156
2428
|
static names(): {
|
|
2157
2429
|
[key: string]: string;
|
|
@@ -2195,6 +2467,7 @@ export declare class TempPreviewStatusResponse extends $tea.Model {
|
|
|
2195
2467
|
headers: {
|
|
2196
2468
|
[key: string]: string;
|
|
2197
2469
|
};
|
|
2470
|
+
statusCode: number;
|
|
2198
2471
|
body: TempPreviewStatusResponseBody;
|
|
2199
2472
|
static names(): {
|
|
2200
2473
|
[key: string]: string;
|
|
@@ -2238,6 +2511,7 @@ export declare class UpdateConnDataResponse extends $tea.Model {
|
|
|
2238
2511
|
headers: {
|
|
2239
2512
|
[key: string]: string;
|
|
2240
2513
|
};
|
|
2514
|
+
statusCode: number;
|
|
2241
2515
|
body: UpdateConnDataResponseBody;
|
|
2242
2516
|
static names(): {
|
|
2243
2517
|
[key: string]: string;
|
|
@@ -2281,6 +2555,7 @@ export declare class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
2281
2555
|
headers: {
|
|
2282
2556
|
[key: string]: string;
|
|
2283
2557
|
};
|
|
2558
|
+
statusCode: number;
|
|
2284
2559
|
body: UpdateLayoutDataResponseBody;
|
|
2285
2560
|
static names(): {
|
|
2286
2561
|
[key: string]: string;
|
|
@@ -2325,6 +2600,7 @@ export declare class UpdateProjectResponse extends $tea.Model {
|
|
|
2325
2600
|
headers: {
|
|
2326
2601
|
[key: string]: string;
|
|
2327
2602
|
};
|
|
2603
|
+
statusCode: number;
|
|
2328
2604
|
body: UpdateProjectResponseBody;
|
|
2329
2605
|
static names(): {
|
|
2330
2606
|
[key: string]: string;
|
|
@@ -2368,6 +2644,7 @@ export declare class UpdateSceneResponse extends $tea.Model {
|
|
|
2368
2644
|
headers: {
|
|
2369
2645
|
[key: string]: string;
|
|
2370
2646
|
};
|
|
2647
|
+
statusCode: number;
|
|
2371
2648
|
body: UpdateSceneResponseBody;
|
|
2372
2649
|
static names(): {
|
|
2373
2650
|
[key: string]: string;
|
|
@@ -2382,6 +2659,21 @@ export declare class UpdateSceneResponse extends $tea.Model {
|
|
|
2382
2659
|
export declare class UpdateSubSceneRequest extends $tea.Model {
|
|
2383
2660
|
id?: string;
|
|
2384
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;
|
|
2385
2677
|
static names(): {
|
|
2386
2678
|
[key: string]: string;
|
|
2387
2679
|
};
|
|
@@ -2411,6 +2703,7 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
|
|
|
2411
2703
|
headers: {
|
|
2412
2704
|
[key: string]: string;
|
|
2413
2705
|
};
|
|
2706
|
+
statusCode: number;
|
|
2414
2707
|
body: UpdateSubSceneResponseBody;
|
|
2415
2708
|
static names(): {
|
|
2416
2709
|
[key: string]: string;
|
|
@@ -2422,6 +2715,63 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
|
|
|
2422
2715
|
[key: string]: any;
|
|
2423
2716
|
});
|
|
2424
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
|
+
}
|
|
2425
2775
|
export declare class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
2426
2776
|
accessId?: string;
|
|
2427
2777
|
callback?: string;
|
|
@@ -2440,6 +2790,18 @@ export declare class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
2440
2790
|
[key: string]: any;
|
|
2441
2791
|
});
|
|
2442
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
|
+
}
|
|
2443
2805
|
export declare class GetConnDataResponseBodyList extends $tea.Model {
|
|
2444
2806
|
id?: string;
|
|
2445
2807
|
mapId?: string;
|
|
@@ -2454,6 +2816,19 @@ export declare class GetConnDataResponseBodyList extends $tea.Model {
|
|
|
2454
2816
|
[key: string]: any;
|
|
2455
2817
|
});
|
|
2456
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
|
+
}
|
|
2457
2832
|
export declare class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
2458
2833
|
modelToken?: string;
|
|
2459
2834
|
previewData?: string;
|
|
@@ -2469,6 +2844,33 @@ export declare class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
2469
2844
|
[key: string]: any;
|
|
2470
2845
|
});
|
|
2471
2846
|
}
|
|
2847
|
+
export declare class GetPackSceneTaskStatusResponseBodyData extends $tea.Model {
|
|
2848
|
+
progress?: number;
|
|
2849
|
+
status?: string;
|
|
2850
|
+
static names(): {
|
|
2851
|
+
[key: string]: string;
|
|
2852
|
+
};
|
|
2853
|
+
static types(): {
|
|
2854
|
+
[key: string]: any;
|
|
2855
|
+
};
|
|
2856
|
+
constructor(map?: {
|
|
2857
|
+
[key: string]: any;
|
|
2858
|
+
});
|
|
2859
|
+
}
|
|
2860
|
+
export declare class GetScenePackUrlResponseBodyData extends $tea.Model {
|
|
2861
|
+
expire?: string;
|
|
2862
|
+
url?: string;
|
|
2863
|
+
valid?: boolean;
|
|
2864
|
+
static names(): {
|
|
2865
|
+
[key: string]: string;
|
|
2866
|
+
};
|
|
2867
|
+
static types(): {
|
|
2868
|
+
[key: string]: any;
|
|
2869
|
+
};
|
|
2870
|
+
constructor(map?: {
|
|
2871
|
+
[key: string]: any;
|
|
2872
|
+
});
|
|
2873
|
+
}
|
|
2472
2874
|
export declare class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
2473
2875
|
rotation?: number[];
|
|
2474
2876
|
spot?: number[];
|
|
@@ -2731,6 +3133,18 @@ export declare class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
2731
3133
|
[key: string]: any;
|
|
2732
3134
|
});
|
|
2733
3135
|
}
|
|
3136
|
+
export declare class PackSceneResponseBodyData extends $tea.Model {
|
|
3137
|
+
taskId?: string;
|
|
3138
|
+
static names(): {
|
|
3139
|
+
[key: string]: string;
|
|
3140
|
+
};
|
|
3141
|
+
static types(): {
|
|
3142
|
+
[key: string]: any;
|
|
3143
|
+
};
|
|
3144
|
+
constructor(map?: {
|
|
3145
|
+
[key: string]: any;
|
|
3146
|
+
});
|
|
3147
|
+
}
|
|
2734
3148
|
export default class Client extends OpenApi {
|
|
2735
3149
|
constructor(config: $OpenApi.Config);
|
|
2736
3150
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -2750,6 +3164,8 @@ export default class Client extends OpenApi {
|
|
|
2750
3164
|
addSubScene(request: AddSubSceneRequest): Promise<AddSubSceneResponse>;
|
|
2751
3165
|
checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse>;
|
|
2752
3166
|
checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
|
|
3167
|
+
copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse>;
|
|
3168
|
+
copyScene(request: CopySceneRequest): Promise<CopySceneResponse>;
|
|
2753
3169
|
detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
|
|
2754
3170
|
detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
|
|
2755
3171
|
detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
|
|
@@ -2764,6 +3180,8 @@ export default class Client extends OpenApi {
|
|
|
2764
3180
|
dropSubScene(request: DropSubSceneRequest): Promise<DropSubSceneResponse>;
|
|
2765
3181
|
getConnDataWithOptions(request: GetConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetConnDataResponse>;
|
|
2766
3182
|
getConnData(request: GetConnDataRequest): Promise<GetConnDataResponse>;
|
|
3183
|
+
getCopySceneTaskStatusWithOptions(request: GetCopySceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetCopySceneTaskStatusResponse>;
|
|
3184
|
+
getCopySceneTaskStatus(request: GetCopySceneTaskStatusRequest): Promise<GetCopySceneTaskStatusResponse>;
|
|
2767
3185
|
getHotspotConfigWithOptions(request: GetHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotConfigResponse>;
|
|
2768
3186
|
getHotspotConfig(request: GetHotspotConfigRequest): Promise<GetHotspotConfigResponse>;
|
|
2769
3187
|
getHotspotSceneDataWithOptions(request: GetHotspotSceneDataRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotSceneDataResponse>;
|
|
@@ -2776,10 +3194,14 @@ export default class Client extends OpenApi {
|
|
|
2776
3194
|
getOriginLayoutData(request: GetOriginLayoutDataRequest): Promise<GetOriginLayoutDataResponse>;
|
|
2777
3195
|
getOssPolicyWithOptions(request: GetOssPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetOssPolicyResponse>;
|
|
2778
3196
|
getOssPolicy(request: GetOssPolicyRequest): Promise<GetOssPolicyResponse>;
|
|
3197
|
+
getPackSceneTaskStatusWithOptions(request: GetPackSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetPackSceneTaskStatusResponse>;
|
|
3198
|
+
getPackSceneTaskStatus(request: GetPackSceneTaskStatusRequest): Promise<GetPackSceneTaskStatusResponse>;
|
|
2779
3199
|
getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse>;
|
|
2780
3200
|
getRectifyImage(request: GetRectifyImageRequest): Promise<GetRectifyImageResponse>;
|
|
2781
3201
|
getSceneBuildTaskStatusWithOptions(request: GetSceneBuildTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSceneBuildTaskStatusResponse>;
|
|
2782
3202
|
getSceneBuildTaskStatus(request: GetSceneBuildTaskStatusRequest): Promise<GetSceneBuildTaskStatusResponse>;
|
|
3203
|
+
getScenePackUrlWithOptions(request: GetScenePackUrlRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePackUrlResponse>;
|
|
3204
|
+
getScenePackUrl(request: GetScenePackUrlRequest): Promise<GetScenePackUrlResponse>;
|
|
2783
3205
|
getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse>;
|
|
2784
3206
|
getScenePreviewData(request: GetScenePreviewDataRequest): Promise<GetScenePreviewDataResponse>;
|
|
2785
3207
|
getScenePreviewInfoWithOptions(request: GetScenePreviewInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewInfoResponse>;
|
|
@@ -2806,6 +3228,8 @@ export default class Client extends OpenApi {
|
|
|
2806
3228
|
listSubScene(request: ListSubSceneRequest): Promise<ListSubSceneResponse>;
|
|
2807
3229
|
optimizeRightAngleWithOptions(request: OptimizeRightAngleRequest, runtime: $Util.RuntimeOptions): Promise<OptimizeRightAngleResponse>;
|
|
2808
3230
|
optimizeRightAngle(request: OptimizeRightAngleRequest): Promise<OptimizeRightAngleResponse>;
|
|
3231
|
+
packSceneWithOptions(request: PackSceneRequest, runtime: $Util.RuntimeOptions): Promise<PackSceneResponse>;
|
|
3232
|
+
packScene(request: PackSceneRequest): Promise<PackSceneResponse>;
|
|
2809
3233
|
predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse>;
|
|
2810
3234
|
predImage(request: PredImageRequest): Promise<PredImageResponse>;
|
|
2811
3235
|
predictionWallLineWithOptions(request: PredictionWallLineRequest, runtime: $Util.RuntimeOptions): Promise<PredictionWallLineResponse>;
|
|
@@ -2842,6 +3266,8 @@ export default class Client extends OpenApi {
|
|
|
2842
3266
|
updateProject(request: UpdateProjectRequest): Promise<UpdateProjectResponse>;
|
|
2843
3267
|
updateSceneWithOptions(request: UpdateSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSceneResponse>;
|
|
2844
3268
|
updateScene(request: UpdateSceneRequest): Promise<UpdateSceneResponse>;
|
|
2845
|
-
updateSubSceneWithOptions(
|
|
3269
|
+
updateSubSceneWithOptions(tmpReq: UpdateSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneResponse>;
|
|
2846
3270
|
updateSubScene(request: UpdateSubSceneRequest): Promise<UpdateSubSceneResponse>;
|
|
3271
|
+
updateSubSceneSeqWithOptions(tmpReq: UpdateSubSceneSeqRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneSeqResponse>;
|
|
3272
|
+
updateSubSceneSeq(request: UpdateSubSceneSeqRequest): Promise<UpdateSubSceneSeqResponse>;
|
|
2847
3273
|
}
|