@alicloud/tdsr20200101 3.0.3 → 3.0.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 +63 -0
- package/dist/client.js +547 -240
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +699 -240
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;
|
|
@@ -2571,6 +2614,24 @@ export declare class UpdateSubSceneResponse extends $tea.Model {
|
|
|
2571
2614
|
[key: string]: any;
|
|
2572
2615
|
});
|
|
2573
2616
|
}
|
|
2617
|
+
export declare class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
2618
|
+
accessId?: string;
|
|
2619
|
+
callback?: string;
|
|
2620
|
+
dir?: string;
|
|
2621
|
+
expire?: string;
|
|
2622
|
+
host?: string;
|
|
2623
|
+
policy?: string;
|
|
2624
|
+
signature?: string;
|
|
2625
|
+
static names(): {
|
|
2626
|
+
[key: string]: string;
|
|
2627
|
+
};
|
|
2628
|
+
static types(): {
|
|
2629
|
+
[key: string]: any;
|
|
2630
|
+
};
|
|
2631
|
+
constructor(map?: {
|
|
2632
|
+
[key: string]: any;
|
|
2633
|
+
});
|
|
2634
|
+
}
|
|
2574
2635
|
export declare class GetConnDataResponseBodyList extends $tea.Model {
|
|
2575
2636
|
id?: string;
|
|
2576
2637
|
mapId?: string;
|
|
@@ -2734,6 +2795,8 @@ export default class Client extends OpenApi {
|
|
|
2734
2795
|
addProject(request: AddProjectRequest): Promise<AddProjectResponse>;
|
|
2735
2796
|
addRelativePositionWithOptions(request: AddRelativePositionRequest, runtime: $Util.RuntimeOptions): Promise<AddRelativePositionResponse>;
|
|
2736
2797
|
addRelativePosition(request: AddRelativePositionRequest): Promise<AddRelativePositionResponse>;
|
|
2798
|
+
addRoomPlanWithOptions(request: AddRoomPlanRequest, runtime: $Util.RuntimeOptions): Promise<AddRoomPlanResponse>;
|
|
2799
|
+
addRoomPlan(request: AddRoomPlanRequest): Promise<AddRoomPlanResponse>;
|
|
2737
2800
|
addSceneWithOptions(request: AddSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSceneResponse>;
|
|
2738
2801
|
addScene(request: AddSceneRequest): Promise<AddSceneResponse>;
|
|
2739
2802
|
addSubSceneWithOptions(request: AddSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSubSceneResponse>;
|