@alicloud/aligenieip_1_0 2.3.0 → 2.3.1
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 +12 -0
- package/dist/client.js +24 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +36 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -9225,12 +9225,14 @@ export class SubmitHotelOrderResponseBody extends $tea.Model {
|
|
|
9225
9225
|
message?: string;
|
|
9226
9226
|
requestId?: string;
|
|
9227
9227
|
result?: string;
|
|
9228
|
+
statusCode?: number;
|
|
9228
9229
|
static names(): { [key: string]: string } {
|
|
9229
9230
|
return {
|
|
9230
9231
|
code: 'Code',
|
|
9231
9232
|
message: 'Message',
|
|
9232
9233
|
requestId: 'RequestId',
|
|
9233
9234
|
result: 'Result',
|
|
9235
|
+
statusCode: 'StatusCode',
|
|
9234
9236
|
};
|
|
9235
9237
|
}
|
|
9236
9238
|
|
|
@@ -9240,6 +9242,7 @@ export class SubmitHotelOrderResponseBody extends $tea.Model {
|
|
|
9240
9242
|
message: 'string',
|
|
9241
9243
|
requestId: 'string',
|
|
9242
9244
|
result: 'string',
|
|
9245
|
+
statusCode: 'number',
|
|
9243
9246
|
};
|
|
9244
9247
|
}
|
|
9245
9248
|
|
|
@@ -12139,12 +12142,14 @@ export class ImportHotelConfigRequestImportHotelConfig extends $tea.Model {
|
|
|
12139
12142
|
}
|
|
12140
12143
|
|
|
12141
12144
|
export class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList extends $tea.Model {
|
|
12145
|
+
aliasList?: string[];
|
|
12142
12146
|
category?: string;
|
|
12143
12147
|
deviceIndex?: number;
|
|
12144
12148
|
deviceName?: string;
|
|
12145
12149
|
location?: string;
|
|
12146
12150
|
static names(): { [key: string]: string } {
|
|
12147
12151
|
return {
|
|
12152
|
+
aliasList: 'AliasList',
|
|
12148
12153
|
category: 'Category',
|
|
12149
12154
|
deviceIndex: 'DeviceIndex',
|
|
12150
12155
|
deviceName: 'DeviceName',
|
|
@@ -12154,6 +12159,7 @@ export class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitch
|
|
|
12154
12159
|
|
|
12155
12160
|
static types(): { [key: string]: any } {
|
|
12156
12161
|
return {
|
|
12162
|
+
aliasList: { 'type': 'array', 'itemType': 'string' },
|
|
12157
12163
|
category: 'string',
|
|
12158
12164
|
deviceIndex: 'number',
|
|
12159
12165
|
deviceName: 'string',
|
|
@@ -12186,6 +12192,7 @@ export class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitch
|
|
|
12186
12192
|
}
|
|
12187
12193
|
|
|
12188
12194
|
export class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.Model {
|
|
12195
|
+
aliasList?: string[];
|
|
12189
12196
|
brand?: string;
|
|
12190
12197
|
city?: string;
|
|
12191
12198
|
connectType?: string;
|
|
@@ -12202,6 +12209,7 @@ export class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.
|
|
|
12202
12209
|
serviceProvider?: string;
|
|
12203
12210
|
static names(): { [key: string]: string } {
|
|
12204
12211
|
return {
|
|
12212
|
+
aliasList: 'AliasList',
|
|
12205
12213
|
brand: 'Brand',
|
|
12206
12214
|
city: 'City',
|
|
12207
12215
|
connectType: 'ConnectType',
|
|
@@ -12221,6 +12229,7 @@ export class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.
|
|
|
12221
12229
|
|
|
12222
12230
|
static types(): { [key: string]: any } {
|
|
12223
12231
|
return {
|
|
12232
|
+
aliasList: { 'type': 'array', 'itemType': 'string' },
|
|
12224
12233
|
brand: 'string',
|
|
12225
12234
|
city: 'string',
|
|
12226
12235
|
connectType: 'string',
|
|
@@ -13258,6 +13267,7 @@ export class ListHotelSceneItemResponseBodyResultSecondCategoryListItemList exte
|
|
|
13258
13267
|
id?: string;
|
|
13259
13268
|
name?: string;
|
|
13260
13269
|
price?: number;
|
|
13270
|
+
residueLimit?: number;
|
|
13261
13271
|
status?: string;
|
|
13262
13272
|
type?: string;
|
|
13263
13273
|
static names(): { [key: string]: string } {
|
|
@@ -13267,6 +13277,7 @@ export class ListHotelSceneItemResponseBodyResultSecondCategoryListItemList exte
|
|
|
13267
13277
|
id: 'Id',
|
|
13268
13278
|
name: 'Name',
|
|
13269
13279
|
price: 'Price',
|
|
13280
|
+
residueLimit: 'ResidueLimit',
|
|
13270
13281
|
status: 'Status',
|
|
13271
13282
|
type: 'Type',
|
|
13272
13283
|
};
|
|
@@ -13279,6 +13290,7 @@ export class ListHotelSceneItemResponseBodyResultSecondCategoryListItemList exte
|
|
|
13279
13290
|
id: 'string',
|
|
13280
13291
|
name: 'string',
|
|
13281
13292
|
price: 'number',
|
|
13293
|
+
residueLimit: 'number',
|
|
13282
13294
|
status: 'string',
|
|
13283
13295
|
type: 'string',
|
|
13284
13296
|
};
|
|
@@ -13415,10 +13427,13 @@ export class ListHotelSceneItemsResponseBodyResultPage extends $tea.Model {
|
|
|
13415
13427
|
}
|
|
13416
13428
|
|
|
13417
13429
|
export class ListHotelSceneItemsResponseBodyResultSceneItemList extends $tea.Model {
|
|
13430
|
+
beyondLimitReply?: string;
|
|
13418
13431
|
category?: string;
|
|
13419
13432
|
deliveryMethod?: string;
|
|
13420
13433
|
icon?: string;
|
|
13421
13434
|
id?: number;
|
|
13435
|
+
limitNumber?: number;
|
|
13436
|
+
limitSwitch?: number;
|
|
13422
13437
|
name?: string;
|
|
13423
13438
|
paymentMethod?: string;
|
|
13424
13439
|
price?: number;
|
|
@@ -13428,10 +13443,13 @@ export class ListHotelSceneItemsResponseBodyResultSceneItemList extends $tea.Mod
|
|
|
13428
13443
|
updateTime?: number;
|
|
13429
13444
|
static names(): { [key: string]: string } {
|
|
13430
13445
|
return {
|
|
13446
|
+
beyondLimitReply: 'BeyondLimitReply',
|
|
13431
13447
|
category: 'Category',
|
|
13432
13448
|
deliveryMethod: 'DeliveryMethod',
|
|
13433
13449
|
icon: 'Icon',
|
|
13434
13450
|
id: 'Id',
|
|
13451
|
+
limitNumber: 'LimitNumber',
|
|
13452
|
+
limitSwitch: 'LimitSwitch',
|
|
13435
13453
|
name: 'Name',
|
|
13436
13454
|
paymentMethod: 'PaymentMethod',
|
|
13437
13455
|
price: 'Price',
|
|
@@ -13444,10 +13462,13 @@ export class ListHotelSceneItemsResponseBodyResultSceneItemList extends $tea.Mod
|
|
|
13444
13462
|
|
|
13445
13463
|
static types(): { [key: string]: any } {
|
|
13446
13464
|
return {
|
|
13465
|
+
beyondLimitReply: 'string',
|
|
13447
13466
|
category: 'string',
|
|
13448
13467
|
deliveryMethod: 'string',
|
|
13449
13468
|
icon: 'string',
|
|
13450
13469
|
id: 'number',
|
|
13470
|
+
limitNumber: 'number',
|
|
13471
|
+
limitSwitch: 'number',
|
|
13451
13472
|
name: 'string',
|
|
13452
13473
|
paymentMethod: 'string',
|
|
13453
13474
|
price: 'number',
|
|
@@ -14323,6 +14344,7 @@ export class QueryHotelRoomDetailResponseBodyResult extends $tea.Model {
|
|
|
14323
14344
|
}
|
|
14324
14345
|
|
|
14325
14346
|
export class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList extends $tea.Model {
|
|
14347
|
+
aliasList?: string[];
|
|
14326
14348
|
category?: string;
|
|
14327
14349
|
deviceIndex?: number;
|
|
14328
14350
|
deviceName?: string;
|
|
@@ -14331,6 +14353,7 @@ export class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSw
|
|
|
14331
14353
|
location?: string;
|
|
14332
14354
|
static names(): { [key: string]: string } {
|
|
14333
14355
|
return {
|
|
14356
|
+
aliasList: 'AliasList',
|
|
14334
14357
|
category: 'Category',
|
|
14335
14358
|
deviceIndex: 'DeviceIndex',
|
|
14336
14359
|
deviceName: 'DeviceName',
|
|
@@ -14342,6 +14365,7 @@ export class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSw
|
|
|
14342
14365
|
|
|
14343
14366
|
static types(): { [key: string]: any } {
|
|
14344
14367
|
return {
|
|
14368
|
+
aliasList: { 'type': 'array', 'itemType': 'string' },
|
|
14345
14369
|
category: 'string',
|
|
14346
14370
|
deviceIndex: 'number',
|
|
14347
14371
|
deviceName: 'string',
|
|
@@ -14376,6 +14400,7 @@ export class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt e
|
|
|
14376
14400
|
}
|
|
14377
14401
|
|
|
14378
14402
|
export class QueryRoomControlDevicesResponseBodyResultDevices extends $tea.Model {
|
|
14403
|
+
aliasList?: string[];
|
|
14379
14404
|
connectType?: string;
|
|
14380
14405
|
DN?: string;
|
|
14381
14406
|
deviceName?: string;
|
|
@@ -14386,6 +14411,7 @@ export class QueryRoomControlDevicesResponseBodyResultDevices extends $tea.Model
|
|
|
14386
14411
|
PK?: string;
|
|
14387
14412
|
static names(): { [key: string]: string } {
|
|
14388
14413
|
return {
|
|
14414
|
+
aliasList: 'AliasList',
|
|
14389
14415
|
connectType: 'ConnectType',
|
|
14390
14416
|
DN: 'DN',
|
|
14391
14417
|
deviceName: 'DeviceName',
|
|
@@ -14399,6 +14425,7 @@ export class QueryRoomControlDevicesResponseBodyResultDevices extends $tea.Model
|
|
|
14399
14425
|
|
|
14400
14426
|
static types(): { [key: string]: any } {
|
|
14401
14427
|
return {
|
|
14428
|
+
aliasList: { 'type': 'array', 'itemType': 'string' },
|
|
14402
14429
|
connectType: 'string',
|
|
14403
14430
|
DN: 'string',
|
|
14404
14431
|
deviceName: 'string',
|
|
@@ -14842,10 +14869,13 @@ export class UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList extends
|
|
|
14842
14869
|
}
|
|
14843
14870
|
|
|
14844
14871
|
export class UpdateHotelSceneItemRequestUpdateHotelSceneReq extends $tea.Model {
|
|
14872
|
+
beyondLimitReply?: string;
|
|
14845
14873
|
deliveryMethod?: string;
|
|
14846
14874
|
dialogueList?: UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList[];
|
|
14847
14875
|
icon?: string;
|
|
14848
14876
|
id?: number;
|
|
14877
|
+
limitNumber?: number;
|
|
14878
|
+
limitSwitch?: number;
|
|
14849
14879
|
name?: string;
|
|
14850
14880
|
paymentMethod?: string;
|
|
14851
14881
|
price?: number;
|
|
@@ -14853,10 +14883,13 @@ export class UpdateHotelSceneItemRequestUpdateHotelSceneReq extends $tea.Model {
|
|
|
14853
14883
|
status?: string;
|
|
14854
14884
|
static names(): { [key: string]: string } {
|
|
14855
14885
|
return {
|
|
14886
|
+
beyondLimitReply: 'BeyondLimitReply',
|
|
14856
14887
|
deliveryMethod: 'DeliveryMethod',
|
|
14857
14888
|
dialogueList: 'DialogueList',
|
|
14858
14889
|
icon: 'Icon',
|
|
14859
14890
|
id: 'Id',
|
|
14891
|
+
limitNumber: 'LimitNumber',
|
|
14892
|
+
limitSwitch: 'LimitSwitch',
|
|
14860
14893
|
name: 'Name',
|
|
14861
14894
|
paymentMethod: 'PaymentMethod',
|
|
14862
14895
|
price: 'Price',
|
|
@@ -14867,10 +14900,13 @@ export class UpdateHotelSceneItemRequestUpdateHotelSceneReq extends $tea.Model {
|
|
|
14867
14900
|
|
|
14868
14901
|
static types(): { [key: string]: any } {
|
|
14869
14902
|
return {
|
|
14903
|
+
beyondLimitReply: 'string',
|
|
14870
14904
|
deliveryMethod: 'string',
|
|
14871
14905
|
dialogueList: { 'type': 'array', 'itemType': UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList },
|
|
14872
14906
|
icon: 'string',
|
|
14873
14907
|
id: 'number',
|
|
14908
|
+
limitNumber: 'number',
|
|
14909
|
+
limitSwitch: 'number',
|
|
14874
14910
|
name: 'string',
|
|
14875
14911
|
paymentMethod: 'string',
|
|
14876
14912
|
price: 'number',
|