@alicloud/tdsr20200101 3.0.6 → 3.0.9
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 +264 -267
- package/dist/client.js +521 -597
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +667 -742
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;
|
|
@@ -179,6 +183,7 @@ export declare class AddRoomPlanResponse extends $tea.Model {
|
|
|
179
183
|
});
|
|
180
184
|
}
|
|
181
185
|
export declare class AddSceneRequest extends $tea.Model {
|
|
186
|
+
customerUid?: string;
|
|
182
187
|
name?: string;
|
|
183
188
|
projectId?: string;
|
|
184
189
|
type?: string;
|
|
@@ -212,6 +217,7 @@ export declare class AddSceneResponse extends $tea.Model {
|
|
|
212
217
|
headers: {
|
|
213
218
|
[key: string]: string;
|
|
214
219
|
};
|
|
220
|
+
statusCode: number;
|
|
215
221
|
body: AddSceneResponseBody;
|
|
216
222
|
static names(): {
|
|
217
223
|
[key: string]: string;
|
|
@@ -257,6 +263,7 @@ export declare class AddSubSceneResponse extends $tea.Model {
|
|
|
257
263
|
headers: {
|
|
258
264
|
[key: string]: string;
|
|
259
265
|
};
|
|
266
|
+
statusCode: number;
|
|
260
267
|
body: AddSubSceneResponseBody;
|
|
261
268
|
static names(): {
|
|
262
269
|
[key: string]: string;
|
|
@@ -268,21 +275,8 @@ export declare class AddSubSceneResponse extends $tea.Model {
|
|
|
268
275
|
[key: string]: any;
|
|
269
276
|
});
|
|
270
277
|
}
|
|
271
|
-
export declare class
|
|
272
|
-
|
|
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;
|
|
278
|
+
export declare class CheckUserPropertyRequest extends $tea.Model {
|
|
279
|
+
uid?: string;
|
|
286
280
|
static names(): {
|
|
287
281
|
[key: string]: string;
|
|
288
282
|
};
|
|
@@ -293,22 +287,12 @@ export declare class CheckResourceRequest extends $tea.Model {
|
|
|
293
287
|
[key: string]: any;
|
|
294
288
|
});
|
|
295
289
|
}
|
|
296
|
-
export declare class
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
gmtWakeup?: string;
|
|
300
|
-
hid?: number;
|
|
301
|
-
interrupt?: boolean;
|
|
302
|
-
invoker?: string;
|
|
303
|
-
level?: number;
|
|
290
|
+
export declare class CheckUserPropertyResponseBody extends $tea.Model {
|
|
291
|
+
code?: number;
|
|
292
|
+
match?: boolean;
|
|
304
293
|
message?: string;
|
|
305
|
-
pk?: string;
|
|
306
|
-
prompt?: string;
|
|
307
294
|
requestId?: string;
|
|
308
295
|
success?: boolean;
|
|
309
|
-
taskExtraData?: string;
|
|
310
|
-
taskIdentifier?: string;
|
|
311
|
-
url?: string;
|
|
312
296
|
static names(): {
|
|
313
297
|
[key: string]: string;
|
|
314
298
|
};
|
|
@@ -319,185 +303,12 @@ export declare class CheckResourceResponseBody extends $tea.Model {
|
|
|
319
303
|
[key: string]: any;
|
|
320
304
|
});
|
|
321
305
|
}
|
|
322
|
-
export declare class
|
|
306
|
+
export declare class CheckUserPropertyResponse extends $tea.Model {
|
|
323
307
|
headers: {
|
|
324
308
|
[key: string]: string;
|
|
325
309
|
};
|
|
326
|
-
|
|
327
|
-
|
|
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
|
-
requestId?: string;
|
|
444
|
-
success?: boolean;
|
|
445
|
-
static names(): {
|
|
446
|
-
[key: string]: string;
|
|
447
|
-
};
|
|
448
|
-
static types(): {
|
|
449
|
-
[key: string]: any;
|
|
450
|
-
};
|
|
451
|
-
constructor(map?: {
|
|
452
|
-
[key: string]: any;
|
|
453
|
-
});
|
|
454
|
-
}
|
|
455
|
-
export declare class DeleteFileResponse extends $tea.Model {
|
|
456
|
-
headers: {
|
|
457
|
-
[key: string]: string;
|
|
458
|
-
};
|
|
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;
|
|
310
|
+
statusCode: number;
|
|
311
|
+
body: CheckUserPropertyResponseBody;
|
|
501
312
|
static names(): {
|
|
502
313
|
[key: string]: string;
|
|
503
314
|
};
|
|
@@ -546,6 +357,7 @@ export declare class DetailProjectResponse extends $tea.Model {
|
|
|
546
357
|
headers: {
|
|
547
358
|
[key: string]: string;
|
|
548
359
|
};
|
|
360
|
+
statusCode: number;
|
|
549
361
|
body: DetailProjectResponseBody;
|
|
550
362
|
static names(): {
|
|
551
363
|
[key: string]: string;
|
|
@@ -597,6 +409,7 @@ export declare class DetailSceneResponse extends $tea.Model {
|
|
|
597
409
|
headers: {
|
|
598
410
|
[key: string]: string;
|
|
599
411
|
};
|
|
412
|
+
statusCode: number;
|
|
600
413
|
body: DetailSceneResponseBody;
|
|
601
414
|
static names(): {
|
|
602
415
|
[key: string]: string;
|
|
@@ -652,6 +465,7 @@ export declare class DetailSubSceneResponse extends $tea.Model {
|
|
|
652
465
|
headers: {
|
|
653
466
|
[key: string]: string;
|
|
654
467
|
};
|
|
468
|
+
statusCode: number;
|
|
655
469
|
body: DetailSubSceneResponseBody;
|
|
656
470
|
static names(): {
|
|
657
471
|
[key: string]: string;
|
|
@@ -694,6 +508,7 @@ export declare class DropProjectResponse extends $tea.Model {
|
|
|
694
508
|
headers: {
|
|
695
509
|
[key: string]: string;
|
|
696
510
|
};
|
|
511
|
+
statusCode: number;
|
|
697
512
|
body: DropProjectResponseBody;
|
|
698
513
|
static names(): {
|
|
699
514
|
[key: string]: string;
|
|
@@ -736,6 +551,7 @@ export declare class DropSceneResponse extends $tea.Model {
|
|
|
736
551
|
headers: {
|
|
737
552
|
[key: string]: string;
|
|
738
553
|
};
|
|
554
|
+
statusCode: number;
|
|
739
555
|
body: DropSceneResponseBody;
|
|
740
556
|
static names(): {
|
|
741
557
|
[key: string]: string;
|
|
@@ -778,6 +594,7 @@ export declare class DropSubSceneResponse extends $tea.Model {
|
|
|
778
594
|
headers: {
|
|
779
595
|
[key: string]: string;
|
|
780
596
|
};
|
|
597
|
+
statusCode: number;
|
|
781
598
|
body: DropSubSceneResponseBody;
|
|
782
599
|
static names(): {
|
|
783
600
|
[key: string]: string;
|
|
@@ -823,6 +640,7 @@ export declare class GetConnDataResponse extends $tea.Model {
|
|
|
823
640
|
headers: {
|
|
824
641
|
[key: string]: string;
|
|
825
642
|
};
|
|
643
|
+
statusCode: number;
|
|
826
644
|
body: GetConnDataResponseBody;
|
|
827
645
|
static names(): {
|
|
828
646
|
[key: string]: string;
|
|
@@ -869,6 +687,7 @@ export declare class GetHotspotConfigResponse extends $tea.Model {
|
|
|
869
687
|
headers: {
|
|
870
688
|
[key: string]: string;
|
|
871
689
|
};
|
|
690
|
+
statusCode: number;
|
|
872
691
|
body: GetHotspotConfigResponseBody;
|
|
873
692
|
static names(): {
|
|
874
693
|
[key: string]: string;
|
|
@@ -915,6 +734,7 @@ export declare class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
915
734
|
headers: {
|
|
916
735
|
[key: string]: string;
|
|
917
736
|
};
|
|
737
|
+
statusCode: number;
|
|
918
738
|
body: GetHotspotSceneDataResponseBody;
|
|
919
739
|
static names(): {
|
|
920
740
|
[key: string]: string;
|
|
@@ -962,6 +782,7 @@ export declare class GetHotspotTagResponse extends $tea.Model {
|
|
|
962
782
|
headers: {
|
|
963
783
|
[key: string]: string;
|
|
964
784
|
};
|
|
785
|
+
statusCode: number;
|
|
965
786
|
body: GetHotspotTagResponseBody;
|
|
966
787
|
static names(): {
|
|
967
788
|
[key: string]: string;
|
|
@@ -1005,6 +826,7 @@ export declare class GetLayoutDataResponse extends $tea.Model {
|
|
|
1005
826
|
headers: {
|
|
1006
827
|
[key: string]: string;
|
|
1007
828
|
};
|
|
829
|
+
statusCode: number;
|
|
1008
830
|
body: GetLayoutDataResponseBody;
|
|
1009
831
|
static names(): {
|
|
1010
832
|
[key: string]: string;
|
|
@@ -1048,6 +870,7 @@ export declare class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
1048
870
|
headers: {
|
|
1049
871
|
[key: string]: string;
|
|
1050
872
|
};
|
|
873
|
+
statusCode: number;
|
|
1051
874
|
body: GetOriginLayoutDataResponseBody;
|
|
1052
875
|
static names(): {
|
|
1053
876
|
[key: string]: string;
|
|
@@ -1097,6 +920,7 @@ export declare class GetOssPolicyResponse extends $tea.Model {
|
|
|
1097
920
|
headers: {
|
|
1098
921
|
[key: string]: string;
|
|
1099
922
|
};
|
|
923
|
+
statusCode: number;
|
|
1100
924
|
body: GetOssPolicyResponseBody;
|
|
1101
925
|
static names(): {
|
|
1102
926
|
[key: string]: string;
|
|
@@ -1108,8 +932,8 @@ export declare class GetOssPolicyResponse extends $tea.Model {
|
|
|
1108
932
|
[key: string]: any;
|
|
1109
933
|
});
|
|
1110
934
|
}
|
|
1111
|
-
export declare class
|
|
1112
|
-
|
|
935
|
+
export declare class GetPackSceneTaskStatusRequest extends $tea.Model {
|
|
936
|
+
taskId?: string;
|
|
1113
937
|
type?: string;
|
|
1114
938
|
static names(): {
|
|
1115
939
|
[key: string]: string;
|
|
@@ -1121,12 +945,10 @@ export declare class GetPolicyRequest extends $tea.Model {
|
|
|
1121
945
|
[key: string]: any;
|
|
1122
946
|
});
|
|
1123
947
|
}
|
|
1124
|
-
export declare class
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
errMessage?: string;
|
|
1129
|
-
objectString?: string;
|
|
948
|
+
export declare class GetPackSceneTaskStatusResponseBody extends $tea.Model {
|
|
949
|
+
code?: number;
|
|
950
|
+
data?: GetPackSceneTaskStatusResponseBodyData;
|
|
951
|
+
message?: string;
|
|
1130
952
|
requestId?: string;
|
|
1131
953
|
success?: boolean;
|
|
1132
954
|
static names(): {
|
|
@@ -1139,11 +961,12 @@ export declare class GetPolicyResponseBody extends $tea.Model {
|
|
|
1139
961
|
[key: string]: any;
|
|
1140
962
|
});
|
|
1141
963
|
}
|
|
1142
|
-
export declare class
|
|
964
|
+
export declare class GetPackSceneTaskStatusResponse extends $tea.Model {
|
|
1143
965
|
headers: {
|
|
1144
966
|
[key: string]: string;
|
|
1145
967
|
};
|
|
1146
|
-
|
|
968
|
+
statusCode: number;
|
|
969
|
+
body: GetPackSceneTaskStatusResponseBody;
|
|
1147
970
|
static names(): {
|
|
1148
971
|
[key: string]: string;
|
|
1149
972
|
};
|
|
@@ -1186,6 +1009,7 @@ export declare class GetRectifyImageResponse extends $tea.Model {
|
|
|
1186
1009
|
headers: {
|
|
1187
1010
|
[key: string]: string;
|
|
1188
1011
|
};
|
|
1012
|
+
statusCode: number;
|
|
1189
1013
|
body: GetRectifyImageResponseBody;
|
|
1190
1014
|
static names(): {
|
|
1191
1015
|
[key: string]: string;
|
|
@@ -1232,6 +1056,7 @@ export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1232
1056
|
headers: {
|
|
1233
1057
|
[key: string]: string;
|
|
1234
1058
|
};
|
|
1059
|
+
statusCode: number;
|
|
1235
1060
|
body: GetSceneBuildTaskStatusResponseBody;
|
|
1236
1061
|
static names(): {
|
|
1237
1062
|
[key: string]: string;
|
|
@@ -1243,6 +1068,50 @@ export declare class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1243
1068
|
[key: string]: any;
|
|
1244
1069
|
});
|
|
1245
1070
|
}
|
|
1071
|
+
export declare class GetScenePackUrlRequest extends $tea.Model {
|
|
1072
|
+
sceneId?: string;
|
|
1073
|
+
static names(): {
|
|
1074
|
+
[key: string]: string;
|
|
1075
|
+
};
|
|
1076
|
+
static types(): {
|
|
1077
|
+
[key: string]: any;
|
|
1078
|
+
};
|
|
1079
|
+
constructor(map?: {
|
|
1080
|
+
[key: string]: any;
|
|
1081
|
+
});
|
|
1082
|
+
}
|
|
1083
|
+
export declare class GetScenePackUrlResponseBody extends $tea.Model {
|
|
1084
|
+
code?: number;
|
|
1085
|
+
data?: GetScenePackUrlResponseBodyData;
|
|
1086
|
+
message?: string;
|
|
1087
|
+
requestId?: string;
|
|
1088
|
+
success?: boolean;
|
|
1089
|
+
static names(): {
|
|
1090
|
+
[key: string]: string;
|
|
1091
|
+
};
|
|
1092
|
+
static types(): {
|
|
1093
|
+
[key: string]: any;
|
|
1094
|
+
};
|
|
1095
|
+
constructor(map?: {
|
|
1096
|
+
[key: string]: any;
|
|
1097
|
+
});
|
|
1098
|
+
}
|
|
1099
|
+
export declare class GetScenePackUrlResponse extends $tea.Model {
|
|
1100
|
+
headers: {
|
|
1101
|
+
[key: string]: string;
|
|
1102
|
+
};
|
|
1103
|
+
statusCode: number;
|
|
1104
|
+
body: GetScenePackUrlResponseBody;
|
|
1105
|
+
static names(): {
|
|
1106
|
+
[key: string]: string;
|
|
1107
|
+
};
|
|
1108
|
+
static types(): {
|
|
1109
|
+
[key: string]: any;
|
|
1110
|
+
};
|
|
1111
|
+
constructor(map?: {
|
|
1112
|
+
[key: string]: any;
|
|
1113
|
+
});
|
|
1114
|
+
}
|
|
1246
1115
|
export declare class GetScenePreviewDataRequest extends $tea.Model {
|
|
1247
1116
|
domain?: string;
|
|
1248
1117
|
enabled?: boolean;
|
|
@@ -1278,6 +1147,7 @@ export declare class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
1278
1147
|
headers: {
|
|
1279
1148
|
[key: string]: string;
|
|
1280
1149
|
};
|
|
1150
|
+
statusCode: number;
|
|
1281
1151
|
body: GetScenePreviewDataResponseBody;
|
|
1282
1152
|
static names(): {
|
|
1283
1153
|
[key: string]: string;
|
|
@@ -1323,6 +1193,7 @@ export declare class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1323
1193
|
headers: {
|
|
1324
1194
|
[key: string]: string;
|
|
1325
1195
|
};
|
|
1196
|
+
statusCode: number;
|
|
1326
1197
|
body: GetScenePreviewInfoResponseBody;
|
|
1327
1198
|
static names(): {
|
|
1328
1199
|
[key: string]: string;
|
|
@@ -1334,6 +1205,50 @@ export declare class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1334
1205
|
[key: string]: any;
|
|
1335
1206
|
});
|
|
1336
1207
|
}
|
|
1208
|
+
export declare class GetScenePreviewResourceRequest extends $tea.Model {
|
|
1209
|
+
previewToken?: string;
|
|
1210
|
+
static names(): {
|
|
1211
|
+
[key: string]: string;
|
|
1212
|
+
};
|
|
1213
|
+
static types(): {
|
|
1214
|
+
[key: string]: any;
|
|
1215
|
+
};
|
|
1216
|
+
constructor(map?: {
|
|
1217
|
+
[key: string]: any;
|
|
1218
|
+
});
|
|
1219
|
+
}
|
|
1220
|
+
export declare class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
1221
|
+
code?: number;
|
|
1222
|
+
data?: GetScenePreviewResourceResponseBodyData;
|
|
1223
|
+
message?: string;
|
|
1224
|
+
requestId?: string;
|
|
1225
|
+
success?: boolean;
|
|
1226
|
+
static names(): {
|
|
1227
|
+
[key: string]: string;
|
|
1228
|
+
};
|
|
1229
|
+
static types(): {
|
|
1230
|
+
[key: string]: any;
|
|
1231
|
+
};
|
|
1232
|
+
constructor(map?: {
|
|
1233
|
+
[key: string]: any;
|
|
1234
|
+
});
|
|
1235
|
+
}
|
|
1236
|
+
export declare class GetScenePreviewResourceResponse extends $tea.Model {
|
|
1237
|
+
headers: {
|
|
1238
|
+
[key: string]: string;
|
|
1239
|
+
};
|
|
1240
|
+
statusCode: number;
|
|
1241
|
+
body: GetScenePreviewResourceResponseBody;
|
|
1242
|
+
static names(): {
|
|
1243
|
+
[key: string]: string;
|
|
1244
|
+
};
|
|
1245
|
+
static types(): {
|
|
1246
|
+
[key: string]: any;
|
|
1247
|
+
};
|
|
1248
|
+
constructor(map?: {
|
|
1249
|
+
[key: string]: any;
|
|
1250
|
+
});
|
|
1251
|
+
}
|
|
1337
1252
|
export declare class GetSingleConnDataRequest extends $tea.Model {
|
|
1338
1253
|
subSceneId?: string;
|
|
1339
1254
|
static names(): {
|
|
@@ -1367,6 +1282,7 @@ export declare class GetSingleConnDataResponse extends $tea.Model {
|
|
|
1367
1282
|
headers: {
|
|
1368
1283
|
[key: string]: string;
|
|
1369
1284
|
};
|
|
1285
|
+
statusCode: number;
|
|
1370
1286
|
body: GetSingleConnDataResponseBody;
|
|
1371
1287
|
static names(): {
|
|
1372
1288
|
[key: string]: string;
|
|
@@ -1410,6 +1326,7 @@ export declare class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
1410
1326
|
headers: {
|
|
1411
1327
|
[key: string]: string;
|
|
1412
1328
|
};
|
|
1329
|
+
statusCode: number;
|
|
1413
1330
|
body: GetSubSceneTaskStatusResponseBody;
|
|
1414
1331
|
static names(): {
|
|
1415
1332
|
[key: string]: string;
|
|
@@ -1456,6 +1373,7 @@ export declare class GetTaskStatusResponse extends $tea.Model {
|
|
|
1456
1373
|
headers: {
|
|
1457
1374
|
[key: string]: string;
|
|
1458
1375
|
};
|
|
1376
|
+
statusCode: number;
|
|
1459
1377
|
body: GetTaskStatusResponseBody;
|
|
1460
1378
|
static names(): {
|
|
1461
1379
|
[key: string]: string;
|
|
@@ -1501,6 +1419,7 @@ export declare class GetWindowConfigResponse extends $tea.Model {
|
|
|
1501
1419
|
headers: {
|
|
1502
1420
|
[key: string]: string;
|
|
1503
1421
|
};
|
|
1422
|
+
statusCode: number;
|
|
1504
1423
|
body: GetWindowConfigResponseBody;
|
|
1505
1424
|
static names(): {
|
|
1506
1425
|
[key: string]: string;
|
|
@@ -1545,6 +1464,7 @@ export declare class LabelBuildResponse extends $tea.Model {
|
|
|
1545
1464
|
headers: {
|
|
1546
1465
|
[key: string]: string;
|
|
1547
1466
|
};
|
|
1467
|
+
statusCode: number;
|
|
1548
1468
|
body: LabelBuildResponseBody;
|
|
1549
1469
|
static names(): {
|
|
1550
1470
|
[key: string]: string;
|
|
@@ -1591,6 +1511,7 @@ export declare class LinkImageResponse extends $tea.Model {
|
|
|
1591
1511
|
headers: {
|
|
1592
1512
|
[key: string]: string;
|
|
1593
1513
|
};
|
|
1514
|
+
statusCode: number;
|
|
1594
1515
|
body: LinkImageResponseBody;
|
|
1595
1516
|
static names(): {
|
|
1596
1517
|
[key: string]: string;
|
|
@@ -1640,6 +1561,7 @@ export declare class ListProjectResponse extends $tea.Model {
|
|
|
1640
1561
|
headers: {
|
|
1641
1562
|
[key: string]: string;
|
|
1642
1563
|
};
|
|
1564
|
+
statusCode: number;
|
|
1643
1565
|
body: ListProjectResponseBody;
|
|
1644
1566
|
static names(): {
|
|
1645
1567
|
[key: string]: string;
|
|
@@ -1690,6 +1612,7 @@ export declare class ListSceneResponse extends $tea.Model {
|
|
|
1690
1612
|
headers: {
|
|
1691
1613
|
[key: string]: string;
|
|
1692
1614
|
};
|
|
1615
|
+
statusCode: number;
|
|
1693
1616
|
body: ListSceneResponseBody;
|
|
1694
1617
|
static names(): {
|
|
1695
1618
|
[key: string]: string;
|
|
@@ -1701,9 +1624,11 @@ export declare class ListSceneResponse extends $tea.Model {
|
|
|
1701
1624
|
[key: string]: any;
|
|
1702
1625
|
});
|
|
1703
1626
|
}
|
|
1704
|
-
export declare class
|
|
1705
|
-
|
|
1706
|
-
|
|
1627
|
+
export declare class ListSubSceneRequest extends $tea.Model {
|
|
1628
|
+
pageNum?: number;
|
|
1629
|
+
pageSize?: number;
|
|
1630
|
+
sceneId?: string;
|
|
1631
|
+
showLayoutData?: boolean;
|
|
1707
1632
|
static names(): {
|
|
1708
1633
|
[key: string]: string;
|
|
1709
1634
|
};
|
|
@@ -1714,11 +1639,16 @@ export declare class ListScenesRequest extends $tea.Model {
|
|
|
1714
1639
|
[key: string]: any;
|
|
1715
1640
|
});
|
|
1716
1641
|
}
|
|
1717
|
-
export declare class
|
|
1718
|
-
|
|
1719
|
-
|
|
1642
|
+
export declare class ListSubSceneResponseBody extends $tea.Model {
|
|
1643
|
+
code?: number;
|
|
1644
|
+
count?: number;
|
|
1645
|
+
currentPage?: number;
|
|
1646
|
+
hasNext?: boolean;
|
|
1647
|
+
list?: ListSubSceneResponseBodyList[];
|
|
1648
|
+
message?: string;
|
|
1720
1649
|
requestId?: string;
|
|
1721
1650
|
success?: boolean;
|
|
1651
|
+
totalPage?: number;
|
|
1722
1652
|
static names(): {
|
|
1723
1653
|
[key: string]: string;
|
|
1724
1654
|
};
|
|
@@ -1729,11 +1659,12 @@ export declare class ListScenesResponseBody extends $tea.Model {
|
|
|
1729
1659
|
[key: string]: any;
|
|
1730
1660
|
});
|
|
1731
1661
|
}
|
|
1732
|
-
export declare class
|
|
1662
|
+
export declare class ListSubSceneResponse extends $tea.Model {
|
|
1733
1663
|
headers: {
|
|
1734
1664
|
[key: string]: string;
|
|
1735
1665
|
};
|
|
1736
|
-
|
|
1666
|
+
statusCode: number;
|
|
1667
|
+
body: ListSubSceneResponseBody;
|
|
1737
1668
|
static names(): {
|
|
1738
1669
|
[key: string]: string;
|
|
1739
1670
|
};
|
|
@@ -1744,11 +1675,8 @@ export declare class ListScenesResponse extends $tea.Model {
|
|
|
1744
1675
|
[key: string]: any;
|
|
1745
1676
|
});
|
|
1746
1677
|
}
|
|
1747
|
-
export declare class
|
|
1748
|
-
|
|
1749
|
-
pageSize?: number;
|
|
1750
|
-
sceneId?: string;
|
|
1751
|
-
showLayoutData?: boolean;
|
|
1678
|
+
export declare class OptimizeRightAngleRequest extends $tea.Model {
|
|
1679
|
+
subSceneId?: string;
|
|
1752
1680
|
static names(): {
|
|
1753
1681
|
[key: string]: string;
|
|
1754
1682
|
};
|
|
@@ -1759,16 +1687,12 @@ export declare class ListSubSceneRequest extends $tea.Model {
|
|
|
1759
1687
|
[key: string]: any;
|
|
1760
1688
|
});
|
|
1761
1689
|
}
|
|
1762
|
-
export declare class
|
|
1690
|
+
export declare class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
1763
1691
|
code?: number;
|
|
1764
|
-
count?: number;
|
|
1765
|
-
currentPage?: number;
|
|
1766
|
-
hasNext?: boolean;
|
|
1767
|
-
list?: ListSubSceneResponseBodyList[];
|
|
1768
1692
|
message?: string;
|
|
1769
1693
|
requestId?: string;
|
|
1770
1694
|
success?: boolean;
|
|
1771
|
-
|
|
1695
|
+
taskId?: string;
|
|
1772
1696
|
static names(): {
|
|
1773
1697
|
[key: string]: string;
|
|
1774
1698
|
};
|
|
@@ -1779,11 +1703,12 @@ export declare class ListSubSceneResponseBody extends $tea.Model {
|
|
|
1779
1703
|
[key: string]: any;
|
|
1780
1704
|
});
|
|
1781
1705
|
}
|
|
1782
|
-
export declare class
|
|
1706
|
+
export declare class OptimizeRightAngleResponse extends $tea.Model {
|
|
1783
1707
|
headers: {
|
|
1784
1708
|
[key: string]: string;
|
|
1785
1709
|
};
|
|
1786
|
-
|
|
1710
|
+
statusCode: number;
|
|
1711
|
+
body: OptimizeRightAngleResponseBody;
|
|
1787
1712
|
static names(): {
|
|
1788
1713
|
[key: string]: string;
|
|
1789
1714
|
};
|
|
@@ -1794,8 +1719,9 @@ export declare class ListSubSceneResponse extends $tea.Model {
|
|
|
1794
1719
|
[key: string]: any;
|
|
1795
1720
|
});
|
|
1796
1721
|
}
|
|
1797
|
-
export declare class
|
|
1798
|
-
|
|
1722
|
+
export declare class PackSceneRequest extends $tea.Model {
|
|
1723
|
+
sceneId?: string;
|
|
1724
|
+
type?: string;
|
|
1799
1725
|
static names(): {
|
|
1800
1726
|
[key: string]: string;
|
|
1801
1727
|
};
|
|
@@ -1806,12 +1732,12 @@ export declare class OptimizeRightAngleRequest extends $tea.Model {
|
|
|
1806
1732
|
[key: string]: any;
|
|
1807
1733
|
});
|
|
1808
1734
|
}
|
|
1809
|
-
export declare class
|
|
1735
|
+
export declare class PackSceneResponseBody extends $tea.Model {
|
|
1810
1736
|
code?: number;
|
|
1737
|
+
data?: PackSceneResponseBodyData;
|
|
1811
1738
|
message?: string;
|
|
1812
1739
|
requestId?: string;
|
|
1813
1740
|
success?: boolean;
|
|
1814
|
-
taskId?: string;
|
|
1815
1741
|
static names(): {
|
|
1816
1742
|
[key: string]: string;
|
|
1817
1743
|
};
|
|
@@ -1822,11 +1748,12 @@ export declare class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
|
1822
1748
|
[key: string]: any;
|
|
1823
1749
|
});
|
|
1824
1750
|
}
|
|
1825
|
-
export declare class
|
|
1751
|
+
export declare class PackSceneResponse extends $tea.Model {
|
|
1826
1752
|
headers: {
|
|
1827
1753
|
[key: string]: string;
|
|
1828
1754
|
};
|
|
1829
|
-
|
|
1755
|
+
statusCode: number;
|
|
1756
|
+
body: PackSceneResponseBody;
|
|
1830
1757
|
static names(): {
|
|
1831
1758
|
[key: string]: string;
|
|
1832
1759
|
};
|
|
@@ -1872,6 +1799,7 @@ export declare class PredImageResponse extends $tea.Model {
|
|
|
1872
1799
|
headers: {
|
|
1873
1800
|
[key: string]: string;
|
|
1874
1801
|
};
|
|
1802
|
+
statusCode: number;
|
|
1875
1803
|
body: PredImageResponseBody;
|
|
1876
1804
|
static names(): {
|
|
1877
1805
|
[key: string]: string;
|
|
@@ -1917,6 +1845,7 @@ export declare class PredictionWallLineResponse extends $tea.Model {
|
|
|
1917
1845
|
headers: {
|
|
1918
1846
|
[key: string]: string;
|
|
1919
1847
|
};
|
|
1848
|
+
statusCode: number;
|
|
1920
1849
|
body: PredictionWallLineResponseBody;
|
|
1921
1850
|
static names(): {
|
|
1922
1851
|
[key: string]: string;
|
|
@@ -1962,6 +1891,7 @@ export declare class PublishHotspotResponse extends $tea.Model {
|
|
|
1962
1891
|
headers: {
|
|
1963
1892
|
[key: string]: string;
|
|
1964
1893
|
};
|
|
1894
|
+
statusCode: number;
|
|
1965
1895
|
body: PublishHotspotResponseBody;
|
|
1966
1896
|
static names(): {
|
|
1967
1897
|
[key: string]: string;
|
|
@@ -2005,6 +1935,7 @@ export declare class PublishSceneResponse extends $tea.Model {
|
|
|
2005
1935
|
headers: {
|
|
2006
1936
|
[key: string]: string;
|
|
2007
1937
|
};
|
|
1938
|
+
statusCode: number;
|
|
2008
1939
|
body: PublishSceneResponseBody;
|
|
2009
1940
|
static names(): {
|
|
2010
1941
|
[key: string]: string;
|
|
@@ -2048,6 +1979,7 @@ export declare class PublishStatusResponse extends $tea.Model {
|
|
|
2048
1979
|
headers: {
|
|
2049
1980
|
[key: string]: string;
|
|
2050
1981
|
};
|
|
1982
|
+
statusCode: number;
|
|
2051
1983
|
body: PublishStatusResponseBody;
|
|
2052
1984
|
static names(): {
|
|
2053
1985
|
[key: string]: string;
|
|
@@ -2090,6 +2022,7 @@ export declare class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
2090
2022
|
headers: {
|
|
2091
2023
|
[key: string]: string;
|
|
2092
2024
|
};
|
|
2025
|
+
statusCode: number;
|
|
2093
2026
|
body: RecoveryOriginImageResponseBody;
|
|
2094
2027
|
static names(): {
|
|
2095
2028
|
[key: string]: string;
|
|
@@ -2136,6 +2069,7 @@ export declare class RectVerticalResponse extends $tea.Model {
|
|
|
2136
2069
|
headers: {
|
|
2137
2070
|
[key: string]: string;
|
|
2138
2071
|
};
|
|
2072
|
+
statusCode: number;
|
|
2139
2073
|
body: RectVerticalResponseBody;
|
|
2140
2074
|
static names(): {
|
|
2141
2075
|
[key: string]: string;
|
|
@@ -2181,6 +2115,7 @@ export declare class RectifyImageResponse extends $tea.Model {
|
|
|
2181
2115
|
headers: {
|
|
2182
2116
|
[key: string]: string;
|
|
2183
2117
|
};
|
|
2118
|
+
statusCode: number;
|
|
2184
2119
|
body: RectifyImageResponseBody;
|
|
2185
2120
|
static names(): {
|
|
2186
2121
|
[key: string]: string;
|
|
@@ -2223,6 +2158,7 @@ export declare class RollbackSubSceneResponse extends $tea.Model {
|
|
|
2223
2158
|
headers: {
|
|
2224
2159
|
[key: string]: string;
|
|
2225
2160
|
};
|
|
2161
|
+
statusCode: number;
|
|
2226
2162
|
body: RollbackSubSceneResponseBody;
|
|
2227
2163
|
static names(): {
|
|
2228
2164
|
[key: string]: string;
|
|
@@ -2265,6 +2201,7 @@ export declare class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
2265
2201
|
headers: {
|
|
2266
2202
|
[key: string]: string;
|
|
2267
2203
|
};
|
|
2204
|
+
statusCode: number;
|
|
2268
2205
|
body: SaveHotspotConfigResponseBody;
|
|
2269
2206
|
static names(): {
|
|
2270
2207
|
[key: string]: string;
|
|
@@ -2307,6 +2244,7 @@ export declare class SaveHotspotTagResponse extends $tea.Model {
|
|
|
2307
2244
|
headers: {
|
|
2308
2245
|
[key: string]: string;
|
|
2309
2246
|
};
|
|
2247
|
+
statusCode: number;
|
|
2310
2248
|
body: SaveHotspotTagResponseBody;
|
|
2311
2249
|
static names(): {
|
|
2312
2250
|
[key: string]: string;
|
|
@@ -2350,6 +2288,7 @@ export declare class ScenePublishResponse extends $tea.Model {
|
|
|
2350
2288
|
headers: {
|
|
2351
2289
|
[key: string]: string;
|
|
2352
2290
|
};
|
|
2291
|
+
statusCode: number;
|
|
2353
2292
|
body: ScenePublishResponseBody;
|
|
2354
2293
|
static names(): {
|
|
2355
2294
|
[key: string]: string;
|
|
@@ -2394,6 +2333,7 @@ export declare class TempPreviewResponse extends $tea.Model {
|
|
|
2394
2333
|
headers: {
|
|
2395
2334
|
[key: string]: string;
|
|
2396
2335
|
};
|
|
2336
|
+
statusCode: number;
|
|
2397
2337
|
body: TempPreviewResponseBody;
|
|
2398
2338
|
static names(): {
|
|
2399
2339
|
[key: string]: string;
|
|
@@ -2437,6 +2377,7 @@ export declare class TempPreviewStatusResponse extends $tea.Model {
|
|
|
2437
2377
|
headers: {
|
|
2438
2378
|
[key: string]: string;
|
|
2439
2379
|
};
|
|
2380
|
+
statusCode: number;
|
|
2440
2381
|
body: TempPreviewStatusResponseBody;
|
|
2441
2382
|
static names(): {
|
|
2442
2383
|
[key: string]: string;
|
|
@@ -2480,6 +2421,7 @@ export declare class UpdateConnDataResponse extends $tea.Model {
|
|
|
2480
2421
|
headers: {
|
|
2481
2422
|
[key: string]: string;
|
|
2482
2423
|
};
|
|
2424
|
+
statusCode: number;
|
|
2483
2425
|
body: UpdateConnDataResponseBody;
|
|
2484
2426
|
static names(): {
|
|
2485
2427
|
[key: string]: string;
|
|
@@ -2523,6 +2465,7 @@ export declare class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
2523
2465
|
headers: {
|
|
2524
2466
|
[key: string]: string;
|
|
2525
2467
|
};
|
|
2468
|
+
statusCode: number;
|
|
2526
2469
|
body: UpdateLayoutDataResponseBody;
|
|
2527
2470
|
static names(): {
|
|
2528
2471
|
[key: string]: string;
|
|
@@ -2567,6 +2510,7 @@ export declare class UpdateProjectResponse extends $tea.Model {
|
|
|
2567
2510
|
headers: {
|
|
2568
2511
|
[key: string]: string;
|
|
2569
2512
|
};
|
|
2513
|
+
statusCode: number;
|
|
2570
2514
|
body: UpdateProjectResponseBody;
|
|
2571
2515
|
static names(): {
|
|
2572
2516
|
[key: string]: string;
|
|
@@ -2610,6 +2554,7 @@ export declare class UpdateSceneResponse extends $tea.Model {
|
|
|
2610
2554
|
headers: {
|
|
2611
2555
|
[key: string]: string;
|
|
2612
2556
|
};
|
|
2557
|
+
statusCode: number;
|
|
2613
2558
|
body: UpdateSceneResponseBody;
|
|
2614
2559
|
static names(): {
|
|
2615
2560
|
[key: string]: string;
|
|
@@ -2653,6 +2598,7 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
|
|
|
2653
2598
|
headers: {
|
|
2654
2599
|
[key: string]: string;
|
|
2655
2600
|
};
|
|
2601
|
+
statusCode: number;
|
|
2656
2602
|
body: UpdateSubSceneResponseBody;
|
|
2657
2603
|
static names(): {
|
|
2658
2604
|
[key: string]: string;
|
|
@@ -2711,6 +2657,33 @@ export declare class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
2711
2657
|
[key: string]: any;
|
|
2712
2658
|
});
|
|
2713
2659
|
}
|
|
2660
|
+
export declare class GetPackSceneTaskStatusResponseBodyData extends $tea.Model {
|
|
2661
|
+
progress?: string;
|
|
2662
|
+
status?: string;
|
|
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 GetScenePackUrlResponseBodyData extends $tea.Model {
|
|
2674
|
+
expire?: string;
|
|
2675
|
+
url?: string;
|
|
2676
|
+
valid?: string;
|
|
2677
|
+
static names(): {
|
|
2678
|
+
[key: string]: string;
|
|
2679
|
+
};
|
|
2680
|
+
static types(): {
|
|
2681
|
+
[key: string]: any;
|
|
2682
|
+
};
|
|
2683
|
+
constructor(map?: {
|
|
2684
|
+
[key: string]: any;
|
|
2685
|
+
});
|
|
2686
|
+
}
|
|
2714
2687
|
export declare class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
2715
2688
|
rotation?: number[];
|
|
2716
2689
|
spot?: number[];
|
|
@@ -2849,6 +2822,34 @@ export declare class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
2849
2822
|
[key: string]: any;
|
|
2850
2823
|
});
|
|
2851
2824
|
}
|
|
2825
|
+
export declare class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
|
|
2826
|
+
modelConfig?: string;
|
|
2827
|
+
orthomapConfig?: string;
|
|
2828
|
+
rootPath?: string;
|
|
2829
|
+
static names(): {
|
|
2830
|
+
[key: string]: string;
|
|
2831
|
+
};
|
|
2832
|
+
static types(): {
|
|
2833
|
+
[key: string]: any;
|
|
2834
|
+
};
|
|
2835
|
+
constructor(map?: {
|
|
2836
|
+
[key: string]: any;
|
|
2837
|
+
});
|
|
2838
|
+
}
|
|
2839
|
+
export declare class GetScenePreviewResourceResponseBodyData extends $tea.Model {
|
|
2840
|
+
name?: string;
|
|
2841
|
+
resourceDirectory?: GetScenePreviewResourceResponseBodyDataResourceDirectory;
|
|
2842
|
+
version?: string;
|
|
2843
|
+
static names(): {
|
|
2844
|
+
[key: string]: string;
|
|
2845
|
+
};
|
|
2846
|
+
static types(): {
|
|
2847
|
+
[key: string]: any;
|
|
2848
|
+
};
|
|
2849
|
+
constructor(map?: {
|
|
2850
|
+
[key: string]: any;
|
|
2851
|
+
});
|
|
2852
|
+
}
|
|
2852
2853
|
export declare class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
2853
2854
|
id?: string;
|
|
2854
2855
|
mapId?: string;
|
|
@@ -2919,18 +2920,6 @@ export declare class ListSceneResponseBodyList extends $tea.Model {
|
|
|
2919
2920
|
[key: string]: any;
|
|
2920
2921
|
});
|
|
2921
2922
|
}
|
|
2922
|
-
export declare class ListScenesResponseBodyData extends $tea.Model {
|
|
2923
|
-
sceneId?: string;
|
|
2924
|
-
static names(): {
|
|
2925
|
-
[key: string]: string;
|
|
2926
|
-
};
|
|
2927
|
-
static types(): {
|
|
2928
|
-
[key: string]: any;
|
|
2929
|
-
};
|
|
2930
|
-
constructor(map?: {
|
|
2931
|
-
[key: string]: any;
|
|
2932
|
-
});
|
|
2933
|
-
}
|
|
2934
2923
|
export declare class ListSubSceneResponseBodyList extends $tea.Model {
|
|
2935
2924
|
baseImageUrl?: string;
|
|
2936
2925
|
coverUrl?: string;
|
|
@@ -2957,6 +2946,18 @@ export declare class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
2957
2946
|
[key: string]: any;
|
|
2958
2947
|
});
|
|
2959
2948
|
}
|
|
2949
|
+
export declare class PackSceneResponseBodyData extends $tea.Model {
|
|
2950
|
+
taskId?: string;
|
|
2951
|
+
static names(): {
|
|
2952
|
+
[key: string]: string;
|
|
2953
|
+
};
|
|
2954
|
+
static types(): {
|
|
2955
|
+
[key: string]: any;
|
|
2956
|
+
};
|
|
2957
|
+
constructor(map?: {
|
|
2958
|
+
[key: string]: any;
|
|
2959
|
+
});
|
|
2960
|
+
}
|
|
2960
2961
|
export default class Client extends OpenApi {
|
|
2961
2962
|
constructor(config: $OpenApi.Config);
|
|
2962
2963
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -2974,16 +2975,8 @@ export default class Client extends OpenApi {
|
|
|
2974
2975
|
addScene(request: AddSceneRequest): Promise<AddSceneResponse>;
|
|
2975
2976
|
addSubSceneWithOptions(request: AddSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSubSceneResponse>;
|
|
2976
2977
|
addSubScene(request: AddSubSceneRequest): Promise<AddSubSceneResponse>;
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
createProjectWithOptions(request: CreateProjectRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectResponse>;
|
|
2980
|
-
createProject(request: CreateProjectRequest): Promise<CreateProjectResponse>;
|
|
2981
|
-
createSceneWithOptions(request: CreateSceneRequest, runtime: $Util.RuntimeOptions): Promise<CreateSceneResponse>;
|
|
2982
|
-
createScene(request: CreateSceneRequest): Promise<CreateSceneResponse>;
|
|
2983
|
-
deleteFileWithOptions(request: DeleteFileRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFileResponse>;
|
|
2984
|
-
deleteFile(request: DeleteFileRequest): Promise<DeleteFileResponse>;
|
|
2985
|
-
deleteProjectWithOptions(request: DeleteProjectRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectResponse>;
|
|
2986
|
-
deleteProject(request: DeleteProjectRequest): Promise<DeleteProjectResponse>;
|
|
2978
|
+
checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse>;
|
|
2979
|
+
checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
|
|
2987
2980
|
detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
|
|
2988
2981
|
detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
|
|
2989
2982
|
detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
|
|
@@ -3010,16 +3003,20 @@ export default class Client extends OpenApi {
|
|
|
3010
3003
|
getOriginLayoutData(request: GetOriginLayoutDataRequest): Promise<GetOriginLayoutDataResponse>;
|
|
3011
3004
|
getOssPolicyWithOptions(request: GetOssPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetOssPolicyResponse>;
|
|
3012
3005
|
getOssPolicy(request: GetOssPolicyRequest): Promise<GetOssPolicyResponse>;
|
|
3013
|
-
|
|
3014
|
-
|
|
3006
|
+
getPackSceneTaskStatusWithOptions(request: GetPackSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetPackSceneTaskStatusResponse>;
|
|
3007
|
+
getPackSceneTaskStatus(request: GetPackSceneTaskStatusRequest): Promise<GetPackSceneTaskStatusResponse>;
|
|
3015
3008
|
getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse>;
|
|
3016
3009
|
getRectifyImage(request: GetRectifyImageRequest): Promise<GetRectifyImageResponse>;
|
|
3017
3010
|
getSceneBuildTaskStatusWithOptions(request: GetSceneBuildTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSceneBuildTaskStatusResponse>;
|
|
3018
3011
|
getSceneBuildTaskStatus(request: GetSceneBuildTaskStatusRequest): Promise<GetSceneBuildTaskStatusResponse>;
|
|
3012
|
+
getScenePackUrlWithOptions(request: GetScenePackUrlRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePackUrlResponse>;
|
|
3013
|
+
getScenePackUrl(request: GetScenePackUrlRequest): Promise<GetScenePackUrlResponse>;
|
|
3019
3014
|
getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse>;
|
|
3020
3015
|
getScenePreviewData(request: GetScenePreviewDataRequest): Promise<GetScenePreviewDataResponse>;
|
|
3021
3016
|
getScenePreviewInfoWithOptions(request: GetScenePreviewInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewInfoResponse>;
|
|
3022
3017
|
getScenePreviewInfo(request: GetScenePreviewInfoRequest): Promise<GetScenePreviewInfoResponse>;
|
|
3018
|
+
getScenePreviewResourceWithOptions(request: GetScenePreviewResourceRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewResourceResponse>;
|
|
3019
|
+
getScenePreviewResource(request: GetScenePreviewResourceRequest): Promise<GetScenePreviewResourceResponse>;
|
|
3023
3020
|
getSingleConnDataWithOptions(request: GetSingleConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSingleConnDataResponse>;
|
|
3024
3021
|
getSingleConnData(request: GetSingleConnDataRequest): Promise<GetSingleConnDataResponse>;
|
|
3025
3022
|
getSubSceneTaskStatusWithOptions(request: GetSubSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSubSceneTaskStatusResponse>;
|
|
@@ -3036,12 +3033,12 @@ export default class Client extends OpenApi {
|
|
|
3036
3033
|
listProject(request: ListProjectRequest): Promise<ListProjectResponse>;
|
|
3037
3034
|
listSceneWithOptions(request: ListSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSceneResponse>;
|
|
3038
3035
|
listScene(request: ListSceneRequest): Promise<ListSceneResponse>;
|
|
3039
|
-
listScenesWithOptions(request: ListScenesRequest, runtime: $Util.RuntimeOptions): Promise<ListScenesResponse>;
|
|
3040
|
-
listScenes(request: ListScenesRequest): Promise<ListScenesResponse>;
|
|
3041
3036
|
listSubSceneWithOptions(request: ListSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSubSceneResponse>;
|
|
3042
3037
|
listSubScene(request: ListSubSceneRequest): Promise<ListSubSceneResponse>;
|
|
3043
3038
|
optimizeRightAngleWithOptions(request: OptimizeRightAngleRequest, runtime: $Util.RuntimeOptions): Promise<OptimizeRightAngleResponse>;
|
|
3044
3039
|
optimizeRightAngle(request: OptimizeRightAngleRequest): Promise<OptimizeRightAngleResponse>;
|
|
3040
|
+
packSceneWithOptions(request: PackSceneRequest, runtime: $Util.RuntimeOptions): Promise<PackSceneResponse>;
|
|
3041
|
+
packScene(request: PackSceneRequest): Promise<PackSceneResponse>;
|
|
3045
3042
|
predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse>;
|
|
3046
3043
|
predImage(request: PredImageRequest): Promise<PredImageResponse>;
|
|
3047
3044
|
predictionWallLineWithOptions(request: PredictionWallLineRequest, runtime: $Util.RuntimeOptions): Promise<PredictionWallLineResponse>;
|