@alicloud/aligenieip_1_0 1.0.21 → 1.0.22
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
package/dist/client.js
CHANGED
|
@@ -5744,6 +5744,7 @@ class QueryHotelRoomDetailRequest extends $tea.Model {
|
|
|
5744
5744
|
hotelId: 'HotelId',
|
|
5745
5745
|
mac: 'Mac',
|
|
5746
5746
|
roomNo: 'RoomNo',
|
|
5747
|
+
sn: 'Sn',
|
|
5747
5748
|
uuid: 'Uuid',
|
|
5748
5749
|
};
|
|
5749
5750
|
}
|
|
@@ -5752,6 +5753,7 @@ class QueryHotelRoomDetailRequest extends $tea.Model {
|
|
|
5752
5753
|
hotelId: 'string',
|
|
5753
5754
|
mac: 'string',
|
|
5754
5755
|
roomNo: 'string',
|
|
5756
|
+
sn: 'string',
|
|
5755
5757
|
uuid: 'string',
|
|
5756
5758
|
};
|
|
5757
5759
|
}
|
|
@@ -12947,6 +12949,9 @@ class Client extends openapi_client_1.default {
|
|
|
12947
12949
|
if (!tea_util_1.default.isUnset(request.roomNo)) {
|
|
12948
12950
|
body["RoomNo"] = request.roomNo;
|
|
12949
12951
|
}
|
|
12952
|
+
if (!tea_util_1.default.isUnset(request.sn)) {
|
|
12953
|
+
body["Sn"] = request.sn;
|
|
12954
|
+
}
|
|
12950
12955
|
if (!tea_util_1.default.isUnset(request.uuid)) {
|
|
12951
12956
|
body["Uuid"] = request.uuid;
|
|
12952
12957
|
}
|