@alicloud/tdsr20200101 3.0.6 → 3.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ English | [简体中文](README-CN.md)
2
+ ![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg)
3
+
4
+ # Alibaba Cloud tdsr SDK for NodeJS
5
+
6
+ ## Installation
7
+ If you use `npm` to manage your dependence, you can use the following command:
8
+
9
+ ```sh
10
+ npm install @alicloud/tdsr20200101 -S
11
+ ```
12
+
13
+ ## Issues
14
+ [Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
15
+
16
+ ## Usage
17
+ [Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
18
+
19
+ ## References
20
+ * [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
21
+
22
+ ## License
23
+ [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
24
+
25
+ Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
package/dist/client.d.ts CHANGED
@@ -268,21 +268,8 @@ export declare class AddSubSceneResponse extends $tea.Model {
268
268
  [key: string]: any;
269
269
  });
270
270
  }
271
- export declare class CheckResourceRequest extends $tea.Model {
272
- bid?: string;
273
- country?: string;
274
- gmtWakeup?: string;
275
- hid?: number;
276
- interrupt?: boolean;
277
- invoker?: string;
278
- level?: number;
279
- message?: string;
280
- pk?: string;
281
- prompt?: string;
282
- success?: boolean;
283
- taskExtraData?: string;
284
- taskIdentifier?: string;
285
- url?: string;
271
+ export declare class CheckUserPropertyRequest extends $tea.Model {
272
+ uid?: string;
286
273
  static names(): {
287
274
  [key: string]: string;
288
275
  };
@@ -293,194 +280,10 @@ export declare class CheckResourceRequest extends $tea.Model {
293
280
  [key: string]: any;
294
281
  });
295
282
  }
296
- export declare class CheckResourceResponseBody extends $tea.Model {
297
- bid?: string;
298
- country?: string;
299
- gmtWakeup?: string;
300
- hid?: number;
301
- interrupt?: boolean;
302
- invoker?: string;
303
- level?: number;
283
+ export declare class CheckUserPropertyResponseBody extends $tea.Model {
284
+ code?: number;
285
+ match?: boolean;
304
286
  message?: string;
305
- pk?: string;
306
- prompt?: string;
307
- requestId?: string;
308
- success?: boolean;
309
- taskExtraData?: string;
310
- taskIdentifier?: string;
311
- url?: string;
312
- static names(): {
313
- [key: string]: string;
314
- };
315
- static types(): {
316
- [key: string]: any;
317
- };
318
- constructor(map?: {
319
- [key: string]: any;
320
- });
321
- }
322
- export declare class CheckResourceResponse extends $tea.Model {
323
- headers: {
324
- [key: string]: string;
325
- };
326
- body: CheckResourceResponseBody;
327
- static names(): {
328
- [key: string]: string;
329
- };
330
- static types(): {
331
- [key: string]: any;
332
- };
333
- constructor(map?: {
334
- [key: string]: any;
335
- });
336
- }
337
- export declare class CreateProjectRequest extends $tea.Model {
338
- builderUserIdList?: string;
339
- businessId?: string;
340
- businessUserIdList?: string;
341
- gatherUserIdList?: string;
342
- name?: string;
343
- static names(): {
344
- [key: string]: string;
345
- };
346
- static types(): {
347
- [key: string]: any;
348
- };
349
- constructor(map?: {
350
- [key: string]: any;
351
- });
352
- }
353
- export declare class CreateProjectResponseBody extends $tea.Model {
354
- errMessage?: string;
355
- id?: number;
356
- name?: string;
357
- requestId?: string;
358
- success?: boolean;
359
- static names(): {
360
- [key: string]: string;
361
- };
362
- static types(): {
363
- [key: string]: any;
364
- };
365
- constructor(map?: {
366
- [key: string]: any;
367
- });
368
- }
369
- export declare class CreateProjectResponse extends $tea.Model {
370
- headers: {
371
- [key: string]: string;
372
- };
373
- body: CreateProjectResponseBody;
374
- static names(): {
375
- [key: string]: string;
376
- };
377
- static types(): {
378
- [key: string]: any;
379
- };
380
- constructor(map?: {
381
- [key: string]: any;
382
- });
383
- }
384
- export declare class CreateSceneRequest extends $tea.Model {
385
- name?: string;
386
- projectId?: string;
387
- static names(): {
388
- [key: string]: string;
389
- };
390
- static types(): {
391
- [key: string]: any;
392
- };
393
- constructor(map?: {
394
- [key: string]: any;
395
- });
396
- }
397
- export declare class CreateSceneResponseBody extends $tea.Model {
398
- errMessage?: string;
399
- previewToken?: string;
400
- requestId?: string;
401
- sceneId?: number;
402
- success?: boolean;
403
- static names(): {
404
- [key: string]: string;
405
- };
406
- static types(): {
407
- [key: string]: any;
408
- };
409
- constructor(map?: {
410
- [key: string]: any;
411
- });
412
- }
413
- export declare class CreateSceneResponse extends $tea.Model {
414
- headers: {
415
- [key: string]: string;
416
- };
417
- body: CreateSceneResponseBody;
418
- static names(): {
419
- [key: string]: string;
420
- };
421
- static types(): {
422
- [key: string]: any;
423
- };
424
- constructor(map?: {
425
- [key: string]: any;
426
- });
427
- }
428
- export declare class DeleteFileRequest extends $tea.Model {
429
- paramFile?: string;
430
- subSceneUuid?: string;
431
- static names(): {
432
- [key: string]: string;
433
- };
434
- static types(): {
435
- [key: string]: any;
436
- };
437
- constructor(map?: {
438
- [key: string]: any;
439
- });
440
- }
441
- export declare class DeleteFileResponseBody extends $tea.Model {
442
- errMessage?: string;
443
- 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
287
  requestId?: string;
485
288
  success?: boolean;
486
289
  static names(): {
@@ -493,11 +296,11 @@ export declare class DeleteProjectResponseBody extends $tea.Model {
493
296
  [key: string]: any;
494
297
  });
495
298
  }
496
- export declare class DeleteProjectResponse extends $tea.Model {
299
+ export declare class CheckUserPropertyResponse extends $tea.Model {
497
300
  headers: {
498
301
  [key: string]: string;
499
302
  };
500
- body: DeleteProjectResponseBody;
303
+ body: CheckUserPropertyResponseBody;
501
304
  static names(): {
502
305
  [key: string]: string;
503
306
  };
@@ -1108,52 +911,6 @@ export declare class GetOssPolicyResponse extends $tea.Model {
1108
911
  [key: string]: any;
1109
912
  });
1110
913
  }
1111
- export declare class GetPolicyRequest extends $tea.Model {
1112
- subSceneUuid?: string;
1113
- type?: string;
1114
- static names(): {
1115
- [key: string]: string;
1116
- };
1117
- static types(): {
1118
- [key: string]: any;
1119
- };
1120
- constructor(map?: {
1121
- [key: string]: any;
1122
- });
1123
- }
1124
- export declare class GetPolicyResponseBody extends $tea.Model {
1125
- data?: {
1126
- [key: string]: any;
1127
- };
1128
- errMessage?: string;
1129
- objectString?: string;
1130
- requestId?: string;
1131
- success?: boolean;
1132
- static names(): {
1133
- [key: string]: string;
1134
- };
1135
- static types(): {
1136
- [key: string]: any;
1137
- };
1138
- constructor(map?: {
1139
- [key: string]: any;
1140
- });
1141
- }
1142
- export declare class GetPolicyResponse extends $tea.Model {
1143
- headers: {
1144
- [key: string]: string;
1145
- };
1146
- body: GetPolicyResponseBody;
1147
- static names(): {
1148
- [key: string]: string;
1149
- };
1150
- static types(): {
1151
- [key: string]: any;
1152
- };
1153
- constructor(map?: {
1154
- [key: string]: any;
1155
- });
1156
- }
1157
914
  export declare class GetRectifyImageRequest extends $tea.Model {
1158
915
  subSceneId?: string;
1159
916
  static names(): {
@@ -1701,49 +1458,6 @@ export declare class ListSceneResponse extends $tea.Model {
1701
1458
  [key: string]: any;
1702
1459
  });
1703
1460
  }
1704
- export declare class ListScenesRequest extends $tea.Model {
1705
- isPublishQuery?: boolean;
1706
- projectId?: string;
1707
- static names(): {
1708
- [key: string]: string;
1709
- };
1710
- static types(): {
1711
- [key: string]: any;
1712
- };
1713
- constructor(map?: {
1714
- [key: string]: any;
1715
- });
1716
- }
1717
- export declare class ListScenesResponseBody extends $tea.Model {
1718
- data?: ListScenesResponseBodyData[];
1719
- errMessage?: string;
1720
- requestId?: string;
1721
- success?: boolean;
1722
- static names(): {
1723
- [key: string]: string;
1724
- };
1725
- static types(): {
1726
- [key: string]: any;
1727
- };
1728
- constructor(map?: {
1729
- [key: string]: any;
1730
- });
1731
- }
1732
- export declare class ListScenesResponse extends $tea.Model {
1733
- headers: {
1734
- [key: string]: string;
1735
- };
1736
- body: ListScenesResponseBody;
1737
- static names(): {
1738
- [key: string]: string;
1739
- };
1740
- static types(): {
1741
- [key: string]: any;
1742
- };
1743
- constructor(map?: {
1744
- [key: string]: any;
1745
- });
1746
- }
1747
1461
  export declare class ListSubSceneRequest extends $tea.Model {
1748
1462
  pageNum?: number;
1749
1463
  pageSize?: number;
@@ -2919,18 +2633,6 @@ export declare class ListSceneResponseBodyList extends $tea.Model {
2919
2633
  [key: string]: any;
2920
2634
  });
2921
2635
  }
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
2636
  export declare class ListSubSceneResponseBodyList extends $tea.Model {
2935
2637
  baseImageUrl?: string;
2936
2638
  coverUrl?: string;
@@ -2974,16 +2676,8 @@ export default class Client extends OpenApi {
2974
2676
  addScene(request: AddSceneRequest): Promise<AddSceneResponse>;
2975
2677
  addSubSceneWithOptions(request: AddSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSubSceneResponse>;
2976
2678
  addSubScene(request: AddSubSceneRequest): Promise<AddSubSceneResponse>;
2977
- checkResourceWithOptions(request: CheckResourceRequest, runtime: $Util.RuntimeOptions): Promise<CheckResourceResponse>;
2978
- checkResource(request: CheckResourceRequest): Promise<CheckResourceResponse>;
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>;
2679
+ checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse>;
2680
+ checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse>;
2987
2681
  detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse>;
2988
2682
  detailProject(request: DetailProjectRequest): Promise<DetailProjectResponse>;
2989
2683
  detailSceneWithOptions(request: DetailSceneRequest, runtime: $Util.RuntimeOptions): Promise<DetailSceneResponse>;
@@ -3010,8 +2704,6 @@ export default class Client extends OpenApi {
3010
2704
  getOriginLayoutData(request: GetOriginLayoutDataRequest): Promise<GetOriginLayoutDataResponse>;
3011
2705
  getOssPolicyWithOptions(request: GetOssPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetOssPolicyResponse>;
3012
2706
  getOssPolicy(request: GetOssPolicyRequest): Promise<GetOssPolicyResponse>;
3013
- getPolicyWithOptions(request: GetPolicyRequest, runtime: $Util.RuntimeOptions): Promise<GetPolicyResponse>;
3014
- getPolicy(request: GetPolicyRequest): Promise<GetPolicyResponse>;
3015
2707
  getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse>;
3016
2708
  getRectifyImage(request: GetRectifyImageRequest): Promise<GetRectifyImageResponse>;
3017
2709
  getSceneBuildTaskStatusWithOptions(request: GetSceneBuildTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSceneBuildTaskStatusResponse>;
@@ -3036,8 +2728,6 @@ export default class Client extends OpenApi {
3036
2728
  listProject(request: ListProjectRequest): Promise<ListProjectResponse>;
3037
2729
  listSceneWithOptions(request: ListSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSceneResponse>;
3038
2730
  listScene(request: ListSceneRequest): Promise<ListSceneResponse>;
3039
- listScenesWithOptions(request: ListScenesRequest, runtime: $Util.RuntimeOptions): Promise<ListScenesResponse>;
3040
- listScenes(request: ListScenesRequest): Promise<ListScenesResponse>;
3041
2731
  listSubSceneWithOptions(request: ListSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSubSceneResponse>;
3042
2732
  listSubScene(request: ListSubSceneRequest): Promise<ListSubSceneResponse>;
3043
2733
  optimizeRightAngleWithOptions(request: OptimizeRightAngleRequest, runtime: $Util.RuntimeOptions): Promise<OptimizeRightAngleResponse>;