@alicloud/tdsr20200101 3.1.3 → 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 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,6 +473,7 @@ 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;
431
478
  coverUrl?: string;
432
479
  gmtCreate?: number;
@@ -438,6 +485,8 @@ export declare class DetailSceneResponseBody extends $tea.Model {
438
485
  published?: boolean;
439
486
  requestId?: string;
440
487
  sourceNum?: number;
488
+ status?: string;
489
+ statusName?: string;
441
490
  subSceneNum?: number;
442
491
  success?: boolean;
443
492
  type?: string;
@@ -491,6 +540,7 @@ export declare class DetailSubSceneResponseBody extends $tea.Model {
491
540
  message?: string;
492
541
  name?: string;
493
542
  originUrl?: string;
543
+ position?: string;
494
544
  requestId?: string;
495
545
  resourceId?: string;
496
546
  status?: number;
@@ -1296,6 +1346,7 @@ export declare class GetScenePreviewInfoResponse extends $tea.Model {
1296
1346
  });
1297
1347
  }
1298
1348
  export declare class GetScenePreviewResourceRequest extends $tea.Model {
1349
+ draft?: boolean;
1299
1350
  previewToken?: string;
1300
1351
  static names(): {
1301
1352
  [key: string]: string;
@@ -2087,6 +2138,49 @@ export declare class PublishHotspotResponse extends $tea.Model {
2087
2138
  [key: string]: any;
2088
2139
  });
2089
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
+ }
2090
2184
  export declare class PublishSceneRequest extends $tea.Model {
2091
2185
  sceneId?: string;
2092
2186
  static names(): {
@@ -2441,6 +2535,94 @@ export declare class SaveHotspotTagResponse extends $tea.Model {
2441
2535
  [key: string]: any;
2442
2536
  });
2443
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
+ }
2444
2626
  export declare class ScenePublishRequest extends $tea.Model {
2445
2627
  sceneId?: string;
2446
2628
  static names(): {
@@ -2897,6 +3079,37 @@ export declare class CopySceneResponseBodyData extends $tea.Model {
2897
3079
  [key: string]: any;
2898
3080
  });
2899
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
+ }
2900
3113
  export declare class GetConnDataResponseBodyList extends $tea.Model {
2901
3114
  id?: string;
2902
3115
  mapId?: string;
@@ -3105,6 +3318,7 @@ export declare class GetScenePreviewInfoResponseBodyData extends $tea.Model {
3105
3318
  });
3106
3319
  }
3107
3320
  export declare class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
3321
+ hotspotTagConfig?: string;
3108
3322
  modelConfig?: string;
3109
3323
  orthomapConfig?: string;
3110
3324
  rootPath?: string;
@@ -3204,6 +3418,8 @@ export declare class ListSceneResponseBodyList extends $tea.Model {
3204
3418
  previewToken?: string;
3205
3419
  published?: boolean;
3206
3420
  sourceNum?: number;
3421
+ status?: string;
3422
+ statusName?: string;
3207
3423
  subSceneNum?: number;
3208
3424
  type?: string;
3209
3425
  static names(): {
@@ -3287,6 +3503,8 @@ export default class Client extends OpenApi {
3287
3503
  checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
3288
3504
  copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse>;
3289
3505
  copyScene(request: CopySceneRequest): Promise<CopySceneResponse>;
3506
+ createUploadPolicyWithOptions(request: CreateUploadPolicyRequest, runtime: $Util.RuntimeOptions): Promise<CreateUploadPolicyResponse>;
3507
+ createUploadPolicy(request: CreateUploadPolicyRequest): Promise<CreateUploadPolicyResponse>;
3290
3508
  detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
3291
3509
  detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
3292
3510
  detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
@@ -3361,6 +3579,8 @@ export default class Client extends OpenApi {
3361
3579
  predictionWallLine(request: PredictionWallLineRequest): Promise<PredictionWallLineResponse>;
3362
3580
  publishHotspotWithOptions(request: PublishHotspotRequest, runtime: $Util.RuntimeOptions): Promise<PublishHotspotResponse>;
3363
3581
  publishHotspot(request: PublishHotspotRequest): Promise<PublishHotspotResponse>;
3582
+ publishHotspotConfigWithOptions(request: PublishHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<PublishHotspotConfigResponse>;
3583
+ publishHotspotConfig(request: PublishHotspotConfigRequest): Promise<PublishHotspotConfigResponse>;
3364
3584
  publishSceneWithOptions(request: PublishSceneRequest, runtime: $Util.RuntimeOptions): Promise<PublishSceneResponse>;
3365
3585
  publishScene(request: PublishSceneRequest): Promise<PublishSceneResponse>;
3366
3586
  publishStatusWithOptions(request: PublishStatusRequest, runtime: $Util.RuntimeOptions): Promise<PublishStatusResponse>;
@@ -3377,6 +3597,10 @@ export default class Client extends OpenApi {
3377
3597
  saveHotspotConfig(request: SaveHotspotConfigRequest): Promise<SaveHotspotConfigResponse>;
3378
3598
  saveHotspotTagWithOptions(request: SaveHotspotTagRequest, runtime: $Util.RuntimeOptions): Promise<SaveHotspotTagResponse>;
3379
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>;
3380
3604
  scenePublishWithOptions(request: ScenePublishRequest, runtime: $Util.RuntimeOptions): Promise<ScenePublishResponse>;
3381
3605
  scenePublish(request: ScenePublishRequest): Promise<ScenePublishResponse>;
3382
3606
  tempPreviewWithOptions(request: TempPreviewRequest, runtime: $Util.RuntimeOptions): Promise<TempPreviewResponse>;