@alicloud/tdsr20200101 3.1.1 → 3.1.4
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 +346 -1
- package/dist/client.js +671 -34
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +810 -27
package/dist/client.d.ts
CHANGED
|
@@ -320,6 +320,7 @@ export declare class CheckUserPropertyResponse extends $tea.Model {
|
|
|
320
320
|
});
|
|
321
321
|
}
|
|
322
322
|
export declare class CopySceneRequest extends $tea.Model {
|
|
323
|
+
projectId?: string;
|
|
323
324
|
sceneId?: string;
|
|
324
325
|
sceneName?: string;
|
|
325
326
|
static names(): {
|
|
@@ -364,6 +365,51 @@ export declare class CopySceneResponse extends $tea.Model {
|
|
|
364
365
|
[key: string]: any;
|
|
365
366
|
});
|
|
366
367
|
}
|
|
368
|
+
export declare class CreateUploadPolicyRequest extends $tea.Model {
|
|
369
|
+
option?: string;
|
|
370
|
+
type?: string;
|
|
371
|
+
static names(): {
|
|
372
|
+
[key: string]: string;
|
|
373
|
+
};
|
|
374
|
+
static types(): {
|
|
375
|
+
[key: string]: any;
|
|
376
|
+
};
|
|
377
|
+
constructor(map?: {
|
|
378
|
+
[key: string]: any;
|
|
379
|
+
});
|
|
380
|
+
}
|
|
381
|
+
export declare class CreateUploadPolicyResponseBody extends $tea.Model {
|
|
382
|
+
code?: number;
|
|
383
|
+
data?: CreateUploadPolicyResponseBodyData;
|
|
384
|
+
message?: string;
|
|
385
|
+
requestId?: string;
|
|
386
|
+
success?: boolean;
|
|
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 CreateUploadPolicyResponse extends $tea.Model {
|
|
398
|
+
headers: {
|
|
399
|
+
[key: string]: string;
|
|
400
|
+
};
|
|
401
|
+
statusCode: number;
|
|
402
|
+
body: CreateUploadPolicyResponseBody;
|
|
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
|
+
}
|
|
367
413
|
export declare class DetailProjectRequest extends $tea.Model {
|
|
368
414
|
id?: string;
|
|
369
415
|
static names(): {
|
|
@@ -427,7 +473,9 @@ export declare class DetailSceneRequest extends $tea.Model {
|
|
|
427
473
|
});
|
|
428
474
|
}
|
|
429
475
|
export declare class DetailSceneResponseBody extends $tea.Model {
|
|
476
|
+
captures?: DetailSceneResponseBodyCaptures[];
|
|
430
477
|
code?: number;
|
|
478
|
+
coverUrl?: string;
|
|
431
479
|
gmtCreate?: number;
|
|
432
480
|
gmtModified?: number;
|
|
433
481
|
id?: string;
|
|
@@ -437,6 +485,8 @@ export declare class DetailSceneResponseBody extends $tea.Model {
|
|
|
437
485
|
published?: boolean;
|
|
438
486
|
requestId?: string;
|
|
439
487
|
sourceNum?: number;
|
|
488
|
+
status?: string;
|
|
489
|
+
statusName?: string;
|
|
440
490
|
subSceneNum?: number;
|
|
441
491
|
success?: boolean;
|
|
442
492
|
type?: string;
|
|
@@ -490,6 +540,7 @@ export declare class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
490
540
|
message?: string;
|
|
491
541
|
name?: string;
|
|
492
542
|
originUrl?: string;
|
|
543
|
+
position?: string;
|
|
493
544
|
requestId?: string;
|
|
494
545
|
resourceId?: string;
|
|
495
546
|
status?: number;
|
|
@@ -1295,6 +1346,7 @@ export declare class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1295
1346
|
});
|
|
1296
1347
|
}
|
|
1297
1348
|
export declare class GetScenePreviewResourceRequest extends $tea.Model {
|
|
1349
|
+
draft?: boolean;
|
|
1298
1350
|
previewToken?: string;
|
|
1299
1351
|
static names(): {
|
|
1300
1352
|
[key: string]: string;
|
|
@@ -1383,6 +1435,51 @@ export declare class GetSingleConnDataResponse extends $tea.Model {
|
|
|
1383
1435
|
[key: string]: any;
|
|
1384
1436
|
});
|
|
1385
1437
|
}
|
|
1438
|
+
export declare class GetSourcePackStatusRequest extends $tea.Model {
|
|
1439
|
+
taskId?: string;
|
|
1440
|
+
static names(): {
|
|
1441
|
+
[key: string]: string;
|
|
1442
|
+
};
|
|
1443
|
+
static types(): {
|
|
1444
|
+
[key: string]: any;
|
|
1445
|
+
};
|
|
1446
|
+
constructor(map?: {
|
|
1447
|
+
[key: string]: any;
|
|
1448
|
+
});
|
|
1449
|
+
}
|
|
1450
|
+
export declare class GetSourcePackStatusResponseBody extends $tea.Model {
|
|
1451
|
+
code?: number;
|
|
1452
|
+
data?: GetSourcePackStatusResponseBodyData;
|
|
1453
|
+
message?: string;
|
|
1454
|
+
requestId?: string;
|
|
1455
|
+
success?: boolean;
|
|
1456
|
+
url?: string;
|
|
1457
|
+
static names(): {
|
|
1458
|
+
[key: string]: string;
|
|
1459
|
+
};
|
|
1460
|
+
static types(): {
|
|
1461
|
+
[key: string]: any;
|
|
1462
|
+
};
|
|
1463
|
+
constructor(map?: {
|
|
1464
|
+
[key: string]: any;
|
|
1465
|
+
});
|
|
1466
|
+
}
|
|
1467
|
+
export declare class GetSourcePackStatusResponse extends $tea.Model {
|
|
1468
|
+
headers: {
|
|
1469
|
+
[key: string]: string;
|
|
1470
|
+
};
|
|
1471
|
+
statusCode: number;
|
|
1472
|
+
body: GetSourcePackStatusResponseBody;
|
|
1473
|
+
static names(): {
|
|
1474
|
+
[key: string]: string;
|
|
1475
|
+
};
|
|
1476
|
+
static types(): {
|
|
1477
|
+
[key: string]: any;
|
|
1478
|
+
};
|
|
1479
|
+
constructor(map?: {
|
|
1480
|
+
[key: string]: any;
|
|
1481
|
+
});
|
|
1482
|
+
}
|
|
1386
1483
|
export declare class GetSubSceneTaskStatusRequest extends $tea.Model {
|
|
1387
1484
|
subSceneId?: string;
|
|
1388
1485
|
static names(): {
|
|
@@ -1522,7 +1619,7 @@ export declare class GetWindowConfigResponse extends $tea.Model {
|
|
|
1522
1619
|
}
|
|
1523
1620
|
export declare class LabelBuildRequest extends $tea.Model {
|
|
1524
1621
|
mode?: string;
|
|
1525
|
-
|
|
1622
|
+
modelStyle?: string;
|
|
1526
1623
|
optimizeWallWidth?: string;
|
|
1527
1624
|
planStyle?: string;
|
|
1528
1625
|
sceneId?: string;
|
|
@@ -1858,6 +1955,50 @@ export declare class PackSceneResponse extends $tea.Model {
|
|
|
1858
1955
|
[key: string]: any;
|
|
1859
1956
|
});
|
|
1860
1957
|
}
|
|
1958
|
+
export declare class PackSourceRequest extends $tea.Model {
|
|
1959
|
+
sceneId?: string;
|
|
1960
|
+
static names(): {
|
|
1961
|
+
[key: string]: string;
|
|
1962
|
+
};
|
|
1963
|
+
static types(): {
|
|
1964
|
+
[key: string]: any;
|
|
1965
|
+
};
|
|
1966
|
+
constructor(map?: {
|
|
1967
|
+
[key: string]: any;
|
|
1968
|
+
});
|
|
1969
|
+
}
|
|
1970
|
+
export declare class PackSourceResponseBody extends $tea.Model {
|
|
1971
|
+
code?: number;
|
|
1972
|
+
data?: PackSourceResponseBodyData;
|
|
1973
|
+
message?: string;
|
|
1974
|
+
requestId?: string;
|
|
1975
|
+
success?: boolean;
|
|
1976
|
+
static names(): {
|
|
1977
|
+
[key: string]: string;
|
|
1978
|
+
};
|
|
1979
|
+
static types(): {
|
|
1980
|
+
[key: string]: any;
|
|
1981
|
+
};
|
|
1982
|
+
constructor(map?: {
|
|
1983
|
+
[key: string]: any;
|
|
1984
|
+
});
|
|
1985
|
+
}
|
|
1986
|
+
export declare class PackSourceResponse extends $tea.Model {
|
|
1987
|
+
headers: {
|
|
1988
|
+
[key: string]: string;
|
|
1989
|
+
};
|
|
1990
|
+
statusCode: number;
|
|
1991
|
+
body: PackSourceResponseBody;
|
|
1992
|
+
static names(): {
|
|
1993
|
+
[key: string]: string;
|
|
1994
|
+
};
|
|
1995
|
+
static types(): {
|
|
1996
|
+
[key: string]: any;
|
|
1997
|
+
};
|
|
1998
|
+
constructor(map?: {
|
|
1999
|
+
[key: string]: any;
|
|
2000
|
+
});
|
|
2001
|
+
}
|
|
1861
2002
|
export declare class PredImageRequest extends $tea.Model {
|
|
1862
2003
|
correctVertical?: boolean;
|
|
1863
2004
|
countDetectDoor?: number;
|
|
@@ -1997,6 +2138,49 @@ export declare class PublishHotspotResponse extends $tea.Model {
|
|
|
1997
2138
|
[key: string]: any;
|
|
1998
2139
|
});
|
|
1999
2140
|
}
|
|
2141
|
+
export declare class PublishHotspotConfigRequest extends $tea.Model {
|
|
2142
|
+
sceneId?: string;
|
|
2143
|
+
static names(): {
|
|
2144
|
+
[key: string]: string;
|
|
2145
|
+
};
|
|
2146
|
+
static types(): {
|
|
2147
|
+
[key: string]: any;
|
|
2148
|
+
};
|
|
2149
|
+
constructor(map?: {
|
|
2150
|
+
[key: string]: any;
|
|
2151
|
+
});
|
|
2152
|
+
}
|
|
2153
|
+
export declare class PublishHotspotConfigResponseBody extends $tea.Model {
|
|
2154
|
+
code?: number;
|
|
2155
|
+
message?: string;
|
|
2156
|
+
requestId?: string;
|
|
2157
|
+
success?: boolean;
|
|
2158
|
+
static names(): {
|
|
2159
|
+
[key: string]: string;
|
|
2160
|
+
};
|
|
2161
|
+
static types(): {
|
|
2162
|
+
[key: string]: any;
|
|
2163
|
+
};
|
|
2164
|
+
constructor(map?: {
|
|
2165
|
+
[key: string]: any;
|
|
2166
|
+
});
|
|
2167
|
+
}
|
|
2168
|
+
export declare class PublishHotspotConfigResponse extends $tea.Model {
|
|
2169
|
+
headers: {
|
|
2170
|
+
[key: string]: string;
|
|
2171
|
+
};
|
|
2172
|
+
statusCode: number;
|
|
2173
|
+
body: PublishHotspotConfigResponseBody;
|
|
2174
|
+
static names(): {
|
|
2175
|
+
[key: string]: string;
|
|
2176
|
+
};
|
|
2177
|
+
static types(): {
|
|
2178
|
+
[key: string]: any;
|
|
2179
|
+
};
|
|
2180
|
+
constructor(map?: {
|
|
2181
|
+
[key: string]: any;
|
|
2182
|
+
});
|
|
2183
|
+
}
|
|
2000
2184
|
export declare class PublishSceneRequest extends $tea.Model {
|
|
2001
2185
|
sceneId?: string;
|
|
2002
2186
|
static names(): {
|
|
@@ -2059,6 +2243,7 @@ export declare class PublishStatusResponseBody extends $tea.Model {
|
|
|
2059
2243
|
requestId?: string;
|
|
2060
2244
|
status?: string;
|
|
2061
2245
|
success?: boolean;
|
|
2246
|
+
syncStatus?: string;
|
|
2062
2247
|
static names(): {
|
|
2063
2248
|
[key: string]: string;
|
|
2064
2249
|
};
|
|
@@ -2350,6 +2535,94 @@ export declare class SaveHotspotTagResponse extends $tea.Model {
|
|
|
2350
2535
|
[key: string]: any;
|
|
2351
2536
|
});
|
|
2352
2537
|
}
|
|
2538
|
+
export declare class SaveHotspotTagListRequest extends $tea.Model {
|
|
2539
|
+
hotspotListJson?: string;
|
|
2540
|
+
sceneId?: string;
|
|
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
|
+
}
|
|
2551
|
+
export declare class SaveHotspotTagListResponseBody extends $tea.Model {
|
|
2552
|
+
code?: number;
|
|
2553
|
+
message?: string;
|
|
2554
|
+
requestId?: string;
|
|
2555
|
+
success?: boolean;
|
|
2556
|
+
static names(): {
|
|
2557
|
+
[key: string]: string;
|
|
2558
|
+
};
|
|
2559
|
+
static types(): {
|
|
2560
|
+
[key: string]: any;
|
|
2561
|
+
};
|
|
2562
|
+
constructor(map?: {
|
|
2563
|
+
[key: string]: any;
|
|
2564
|
+
});
|
|
2565
|
+
}
|
|
2566
|
+
export declare class SaveHotspotTagListResponse extends $tea.Model {
|
|
2567
|
+
headers: {
|
|
2568
|
+
[key: string]: string;
|
|
2569
|
+
};
|
|
2570
|
+
statusCode: number;
|
|
2571
|
+
body: SaveHotspotTagListResponseBody;
|
|
2572
|
+
static names(): {
|
|
2573
|
+
[key: string]: string;
|
|
2574
|
+
};
|
|
2575
|
+
static types(): {
|
|
2576
|
+
[key: string]: any;
|
|
2577
|
+
};
|
|
2578
|
+
constructor(map?: {
|
|
2579
|
+
[key: string]: any;
|
|
2580
|
+
});
|
|
2581
|
+
}
|
|
2582
|
+
export declare class SaveModelConfigRequest extends $tea.Model {
|
|
2583
|
+
data?: string;
|
|
2584
|
+
sceneId?: string;
|
|
2585
|
+
static names(): {
|
|
2586
|
+
[key: string]: string;
|
|
2587
|
+
};
|
|
2588
|
+
static types(): {
|
|
2589
|
+
[key: string]: any;
|
|
2590
|
+
};
|
|
2591
|
+
constructor(map?: {
|
|
2592
|
+
[key: string]: any;
|
|
2593
|
+
});
|
|
2594
|
+
}
|
|
2595
|
+
export declare class SaveModelConfigResponseBody extends $tea.Model {
|
|
2596
|
+
code?: number;
|
|
2597
|
+
message?: string;
|
|
2598
|
+
requestId?: string;
|
|
2599
|
+
success?: boolean;
|
|
2600
|
+
static names(): {
|
|
2601
|
+
[key: string]: string;
|
|
2602
|
+
};
|
|
2603
|
+
static types(): {
|
|
2604
|
+
[key: string]: any;
|
|
2605
|
+
};
|
|
2606
|
+
constructor(map?: {
|
|
2607
|
+
[key: string]: any;
|
|
2608
|
+
});
|
|
2609
|
+
}
|
|
2610
|
+
export declare class SaveModelConfigResponse extends $tea.Model {
|
|
2611
|
+
headers: {
|
|
2612
|
+
[key: string]: string;
|
|
2613
|
+
};
|
|
2614
|
+
statusCode: number;
|
|
2615
|
+
body: SaveModelConfigResponseBody;
|
|
2616
|
+
static names(): {
|
|
2617
|
+
[key: string]: string;
|
|
2618
|
+
};
|
|
2619
|
+
static types(): {
|
|
2620
|
+
[key: string]: any;
|
|
2621
|
+
};
|
|
2622
|
+
constructor(map?: {
|
|
2623
|
+
[key: string]: any;
|
|
2624
|
+
});
|
|
2625
|
+
}
|
|
2353
2626
|
export declare class ScenePublishRequest extends $tea.Model {
|
|
2354
2627
|
sceneId?: string;
|
|
2355
2628
|
static names(): {
|
|
@@ -2806,6 +3079,37 @@ export declare class CopySceneResponseBodyData extends $tea.Model {
|
|
|
2806
3079
|
[key: string]: any;
|
|
2807
3080
|
});
|
|
2808
3081
|
}
|
|
3082
|
+
export declare class CreateUploadPolicyResponseBodyData extends $tea.Model {
|
|
3083
|
+
accessId?: string;
|
|
3084
|
+
callback?: string;
|
|
3085
|
+
dir?: string;
|
|
3086
|
+
expire?: string;
|
|
3087
|
+
host?: string;
|
|
3088
|
+
policy?: string;
|
|
3089
|
+
signature?: string;
|
|
3090
|
+
static names(): {
|
|
3091
|
+
[key: string]: string;
|
|
3092
|
+
};
|
|
3093
|
+
static types(): {
|
|
3094
|
+
[key: string]: any;
|
|
3095
|
+
};
|
|
3096
|
+
constructor(map?: {
|
|
3097
|
+
[key: string]: any;
|
|
3098
|
+
});
|
|
3099
|
+
}
|
|
3100
|
+
export declare class DetailSceneResponseBodyCaptures extends $tea.Model {
|
|
3101
|
+
title?: string;
|
|
3102
|
+
url?: string;
|
|
3103
|
+
static names(): {
|
|
3104
|
+
[key: string]: string;
|
|
3105
|
+
};
|
|
3106
|
+
static types(): {
|
|
3107
|
+
[key: string]: any;
|
|
3108
|
+
};
|
|
3109
|
+
constructor(map?: {
|
|
3110
|
+
[key: string]: any;
|
|
3111
|
+
});
|
|
3112
|
+
}
|
|
2809
3113
|
export declare class GetConnDataResponseBodyList extends $tea.Model {
|
|
2810
3114
|
id?: string;
|
|
2811
3115
|
mapId?: string;
|
|
@@ -3014,6 +3318,7 @@ export declare class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
3014
3318
|
});
|
|
3015
3319
|
}
|
|
3016
3320
|
export declare class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
|
|
3321
|
+
hotspotTagConfig?: string;
|
|
3017
3322
|
modelConfig?: string;
|
|
3018
3323
|
orthomapConfig?: string;
|
|
3019
3324
|
rootPath?: string;
|
|
@@ -3055,6 +3360,19 @@ export declare class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
|
3055
3360
|
[key: string]: any;
|
|
3056
3361
|
});
|
|
3057
3362
|
}
|
|
3363
|
+
export declare class GetSourcePackStatusResponseBodyData extends $tea.Model {
|
|
3364
|
+
progress?: number;
|
|
3365
|
+
status?: string;
|
|
3366
|
+
static names(): {
|
|
3367
|
+
[key: string]: string;
|
|
3368
|
+
};
|
|
3369
|
+
static types(): {
|
|
3370
|
+
[key: string]: any;
|
|
3371
|
+
};
|
|
3372
|
+
constructor(map?: {
|
|
3373
|
+
[key: string]: any;
|
|
3374
|
+
});
|
|
3375
|
+
}
|
|
3058
3376
|
export declare class GetSubSceneTaskStatusResponseBodyList extends $tea.Model {
|
|
3059
3377
|
errorCode?: string;
|
|
3060
3378
|
errorMsg?: string;
|
|
@@ -3092,6 +3410,7 @@ export declare class ListProjectResponseBodyList extends $tea.Model {
|
|
|
3092
3410
|
});
|
|
3093
3411
|
}
|
|
3094
3412
|
export declare class ListSceneResponseBodyList extends $tea.Model {
|
|
3413
|
+
coverUrl?: string;
|
|
3095
3414
|
gmtCreate?: number;
|
|
3096
3415
|
gmtModified?: number;
|
|
3097
3416
|
id?: string;
|
|
@@ -3099,6 +3418,8 @@ export declare class ListSceneResponseBodyList extends $tea.Model {
|
|
|
3099
3418
|
previewToken?: string;
|
|
3100
3419
|
published?: boolean;
|
|
3101
3420
|
sourceNum?: number;
|
|
3421
|
+
status?: string;
|
|
3422
|
+
statusName?: string;
|
|
3102
3423
|
subSceneNum?: number;
|
|
3103
3424
|
type?: string;
|
|
3104
3425
|
static names(): {
|
|
@@ -3149,6 +3470,18 @@ export declare class PackSceneResponseBodyData extends $tea.Model {
|
|
|
3149
3470
|
[key: string]: any;
|
|
3150
3471
|
});
|
|
3151
3472
|
}
|
|
3473
|
+
export declare class PackSourceResponseBodyData extends $tea.Model {
|
|
3474
|
+
taskId?: string;
|
|
3475
|
+
static names(): {
|
|
3476
|
+
[key: string]: string;
|
|
3477
|
+
};
|
|
3478
|
+
static types(): {
|
|
3479
|
+
[key: string]: any;
|
|
3480
|
+
};
|
|
3481
|
+
constructor(map?: {
|
|
3482
|
+
[key: string]: any;
|
|
3483
|
+
});
|
|
3484
|
+
}
|
|
3152
3485
|
export default class Client extends OpenApi {
|
|
3153
3486
|
constructor(config: $OpenApi.Config);
|
|
3154
3487
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -3170,6 +3503,8 @@ export default class Client extends OpenApi {
|
|
|
3170
3503
|
checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
|
|
3171
3504
|
copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse>;
|
|
3172
3505
|
copyScene(request: CopySceneRequest): Promise<CopySceneResponse>;
|
|
3506
|
+
createUploadPolicyWithOptions(request: CreateUploadPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateUploadPolicyResponse>;
|
|
3507
|
+
createUploadPolicy(request: CreateUploadPolicyRequest): Promise<CreateUploadPolicyResponse>;
|
|
3173
3508
|
detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
|
|
3174
3509
|
detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
|
|
3175
3510
|
detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
|
|
@@ -3214,6 +3549,8 @@ export default class Client extends OpenApi {
|
|
|
3214
3549
|
getScenePreviewResource(request: GetScenePreviewResourceRequest): Promise<GetScenePreviewResourceResponse>;
|
|
3215
3550
|
getSingleConnDataWithOptions(request: GetSingleConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSingleConnDataResponse>;
|
|
3216
3551
|
getSingleConnData(request: GetSingleConnDataRequest): Promise<GetSingleConnDataResponse>;
|
|
3552
|
+
getSourcePackStatusWithOptions(request: GetSourcePackStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSourcePackStatusResponse>;
|
|
3553
|
+
getSourcePackStatus(request: GetSourcePackStatusRequest): Promise<GetSourcePackStatusResponse>;
|
|
3217
3554
|
getSubSceneTaskStatusWithOptions(request: GetSubSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSubSceneTaskStatusResponse>;
|
|
3218
3555
|
getSubSceneTaskStatus(request: GetSubSceneTaskStatusRequest): Promise<GetSubSceneTaskStatusResponse>;
|
|
3219
3556
|
getTaskStatusWithOptions(request: GetTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetTaskStatusResponse>;
|
|
@@ -3234,12 +3571,16 @@ export default class Client extends OpenApi {
|
|
|
3234
3571
|
optimizeRightAngle(request: OptimizeRightAngleRequest): Promise<OptimizeRightAngleResponse>;
|
|
3235
3572
|
packSceneWithOptions(request: PackSceneRequest, runtime: $Util.RuntimeOptions): Promise<PackSceneResponse>;
|
|
3236
3573
|
packScene(request: PackSceneRequest): Promise<PackSceneResponse>;
|
|
3574
|
+
packSourceWithOptions(request: PackSourceRequest, runtime: $Util.RuntimeOptions): Promise<PackSourceResponse>;
|
|
3575
|
+
packSource(request: PackSourceRequest): Promise<PackSourceResponse>;
|
|
3237
3576
|
predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse>;
|
|
3238
3577
|
predImage(request: PredImageRequest): Promise<PredImageResponse>;
|
|
3239
3578
|
predictionWallLineWithOptions(request: PredictionWallLineRequest, runtime: $Util.RuntimeOptions): Promise<PredictionWallLineResponse>;
|
|
3240
3579
|
predictionWallLine(request: PredictionWallLineRequest): Promise<PredictionWallLineResponse>;
|
|
3241
3580
|
publishHotspotWithOptions(request: PublishHotspotRequest, runtime: $Util.RuntimeOptions): Promise<PublishHotspotResponse>;
|
|
3242
3581
|
publishHotspot(request: PublishHotspotRequest): Promise<PublishHotspotResponse>;
|
|
3582
|
+
publishHotspotConfigWithOptions(request: PublishHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<PublishHotspotConfigResponse>;
|
|
3583
|
+
publishHotspotConfig(request: PublishHotspotConfigRequest): Promise<PublishHotspotConfigResponse>;
|
|
3243
3584
|
publishSceneWithOptions(request: PublishSceneRequest, runtime: $Util.RuntimeOptions): Promise<PublishSceneResponse>;
|
|
3244
3585
|
publishScene(request: PublishSceneRequest): Promise<PublishSceneResponse>;
|
|
3245
3586
|
publishStatusWithOptions(request: PublishStatusRequest, runtime: $Util.RuntimeOptions): Promise<PublishStatusResponse>;
|
|
@@ -3256,6 +3597,10 @@ export default class Client extends OpenApi {
|
|
|
3256
3597
|
saveHotspotConfig(request: SaveHotspotConfigRequest): Promise<SaveHotspotConfigResponse>;
|
|
3257
3598
|
saveHotspotTagWithOptions(request: SaveHotspotTagRequest, runtime: $Util.RuntimeOptions): Promise<SaveHotspotTagResponse>;
|
|
3258
3599
|
saveHotspotTag(request: SaveHotspotTagRequest): Promise<SaveHotspotTagResponse>;
|
|
3600
|
+
saveHotspotTagListWithOptions(request: SaveHotspotTagListRequest, runtime: $Util.RuntimeOptions): Promise<SaveHotspotTagListResponse>;
|
|
3601
|
+
saveHotspotTagList(request: SaveHotspotTagListRequest): Promise<SaveHotspotTagListResponse>;
|
|
3602
|
+
saveModelConfigWithOptions(request: SaveModelConfigRequest, runtime: $Util.RuntimeOptions): Promise<SaveModelConfigResponse>;
|
|
3603
|
+
saveModelConfig(request: SaveModelConfigRequest): Promise<SaveModelConfigResponse>;
|
|
3259
3604
|
scenePublishWithOptions(request: ScenePublishRequest, runtime: $Util.RuntimeOptions): Promise<ScenePublishResponse>;
|
|
3260
3605
|
scenePublish(request: ScenePublishRequest): Promise<ScenePublishResponse>;
|
|
3261
3606
|
tempPreviewWithOptions(request: TempPreviewRequest, runtime: $Util.RuntimeOptions): Promise<TempPreviewResponse>;
|