@alicloud/tdsr20200101 3.0.1 → 3.0.5

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
@@ -135,6 +135,49 @@ export declare class AddRelativePositionResponse extends $tea.Model {
135
135
  [key: string]: any;
136
136
  });
137
137
  }
138
+ export declare class AddRoomPlanRequest extends $tea.Model {
139
+ sceneId?: string;
140
+ static names(): {
141
+ [key: string]: string;
142
+ };
143
+ static types(): {
144
+ [key: string]: any;
145
+ };
146
+ constructor(map?: {
147
+ [key: string]: any;
148
+ });
149
+ }
150
+ export declare class AddRoomPlanResponseBody extends $tea.Model {
151
+ code?: number;
152
+ data?: AddRoomPlanResponseBodyData;
153
+ message?: string;
154
+ requestId?: string;
155
+ success?: boolean;
156
+ static names(): {
157
+ [key: string]: string;
158
+ };
159
+ static types(): {
160
+ [key: string]: any;
161
+ };
162
+ constructor(map?: {
163
+ [key: string]: any;
164
+ });
165
+ }
166
+ export declare class AddRoomPlanResponse extends $tea.Model {
167
+ headers: {
168
+ [key: string]: string;
169
+ };
170
+ body: AddRoomPlanResponseBody;
171
+ static names(): {
172
+ [key: string]: string;
173
+ };
174
+ static types(): {
175
+ [key: string]: any;
176
+ };
177
+ constructor(map?: {
178
+ [key: string]: any;
179
+ });
180
+ }
138
181
  export declare class AddSceneRequest extends $tea.Model {
139
182
  name?: string;
140
183
  projectId?: string;
@@ -183,6 +226,7 @@ export declare class AddSceneResponse extends $tea.Model {
183
226
  export declare class AddSubSceneRequest extends $tea.Model {
184
227
  name?: string;
185
228
  sceneId?: string;
229
+ uploadType?: string;
186
230
  static names(): {
187
231
  [key: string]: string;
188
232
  };
@@ -583,12 +627,16 @@ export declare class DetailSubSceneResponseBody extends $tea.Model {
583
627
  gmtCreate?: number;
584
628
  gmtModified?: number;
585
629
  id?: string;
630
+ imageUrl?: string;
631
+ layoutData?: string;
586
632
  message?: string;
587
633
  name?: string;
634
+ originUrl?: string;
588
635
  requestId?: string;
589
636
  resourceId?: string;
590
637
  status?: number;
591
638
  success?: boolean;
639
+ type?: string;
592
640
  url?: string;
593
641
  static names(): {
594
642
  [key: string]: string;
@@ -1893,7 +1941,6 @@ export declare class PublishSceneRequest extends $tea.Model {
1893
1941
  }
1894
1942
  export declare class PublishSceneResponseBody extends $tea.Model {
1895
1943
  code?: number;
1896
- instanceId?: string;
1897
1944
  message?: string;
1898
1945
  previewUrl?: string;
1899
1946
  requestId?: string;
@@ -2028,6 +2075,7 @@ export declare class RectVerticalResponseBody extends $tea.Model {
2028
2075
  message?: string;
2029
2076
  requestId?: string;
2030
2077
  success?: boolean;
2078
+ taskId?: string;
2031
2079
  static names(): {
2032
2080
  [key: string]: string;
2033
2081
  };
@@ -2570,6 +2618,24 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
2570
2618
  [key: string]: any;
2571
2619
  });
2572
2620
  }
2621
+ export declare class AddRoomPlanResponseBodyData extends $tea.Model {
2622
+ accessId?: string;
2623
+ callback?: string;
2624
+ dir?: string;
2625
+ expire?: string;
2626
+ host?: string;
2627
+ policy?: string;
2628
+ signature?: string;
2629
+ static names(): {
2630
+ [key: string]: string;
2631
+ };
2632
+ static types(): {
2633
+ [key: string]: any;
2634
+ };
2635
+ constructor(map?: {
2636
+ [key: string]: any;
2637
+ });
2638
+ }
2573
2639
  export declare class GetConnDataResponseBodyList extends $tea.Model {
2574
2640
  id?: string;
2575
2641
  mapId?: string;
@@ -2710,6 +2776,7 @@ export declare class ListSubSceneResponseBodyList extends $tea.Model {
2710
2776
  resourceId?: string;
2711
2777
  resourceName?: string;
2712
2778
  status?: number;
2779
+ type?: string;
2713
2780
  url?: string;
2714
2781
  static names(): {
2715
2782
  [key: string]: string;
@@ -2732,6 +2799,8 @@ export default class Client extends OpenApi {
2732
2799
  addProject(request: AddProjectRequest): Promise<AddProjectResponse>;
2733
2800
  addRelativePositionWithOptions(request: AddRelativePositionRequest, runtime: $Util.RuntimeOptions): Promise<AddRelativePositionResponse>;
2734
2801
  addRelativePosition(request: AddRelativePositionRequest): Promise<AddRelativePositionResponse>;
2802
+ addRoomPlanWithOptions(request: AddRoomPlanRequest, runtime: $Util.RuntimeOptions): Promise<AddRoomPlanResponse>;
2803
+ addRoomPlan(request: AddRoomPlanRequest): Promise<AddRoomPlanResponse>;
2735
2804
  addSceneWithOptions(request: AddSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSceneResponse>;
2736
2805
  addScene(request: AddSceneRequest): Promise<AddSceneResponse>;
2737
2806
  addSubSceneWithOptions(request: AddSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSubSceneResponse>;