@alicloud/aligenieip_1_0 1.0.25 → 2.1.0
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 +342 -5
- package/dist/client.js +673 -13
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +876 -54
package/dist/client.d.ts
CHANGED
|
@@ -1394,6 +1394,7 @@ export declare class DeleteHotelSceneBookItemHeaders extends $tea.Model {
|
|
|
1394
1394
|
export declare class DeleteHotelSceneBookItemRequest extends $tea.Model {
|
|
1395
1395
|
hotelId?: string;
|
|
1396
1396
|
id?: number;
|
|
1397
|
+
name?: string;
|
|
1397
1398
|
static names(): {
|
|
1398
1399
|
[key: string]: string;
|
|
1399
1400
|
};
|
|
@@ -2456,6 +2457,7 @@ export declare class GetHotelSceneItemDetailHeaders extends $tea.Model {
|
|
|
2456
2457
|
export declare class GetHotelSceneItemDetailRequest extends $tea.Model {
|
|
2457
2458
|
hotelId?: string;
|
|
2458
2459
|
itemId?: number;
|
|
2460
|
+
name?: string;
|
|
2459
2461
|
static names(): {
|
|
2460
2462
|
[key: string]: string;
|
|
2461
2463
|
};
|
|
@@ -2879,7 +2881,7 @@ export declare class ImportHotelConfigHeaders extends $tea.Model {
|
|
|
2879
2881
|
}
|
|
2880
2882
|
export declare class ImportHotelConfigRequest extends $tea.Model {
|
|
2881
2883
|
hotelId?: string;
|
|
2882
|
-
|
|
2884
|
+
importHotelConfig?: ImportHotelConfigRequestImportHotelConfig;
|
|
2883
2885
|
static names(): {
|
|
2884
2886
|
[key: string]: string;
|
|
2885
2887
|
};
|
|
@@ -2892,7 +2894,7 @@ export declare class ImportHotelConfigRequest extends $tea.Model {
|
|
|
2892
2894
|
}
|
|
2893
2895
|
export declare class ImportHotelConfigShrinkRequest extends $tea.Model {
|
|
2894
2896
|
hotelId?: string;
|
|
2895
|
-
|
|
2897
|
+
importHotelConfigShrink?: string;
|
|
2896
2898
|
static names(): {
|
|
2897
2899
|
[key: string]: string;
|
|
2898
2900
|
};
|
|
@@ -2951,6 +2953,7 @@ export declare class ImportRoomControlDevicesHeaders extends $tea.Model {
|
|
|
2951
2953
|
});
|
|
2952
2954
|
}
|
|
2953
2955
|
export declare class ImportRoomControlDevicesRequest extends $tea.Model {
|
|
2956
|
+
enableInfraredDeviceImport?: string;
|
|
2954
2957
|
hotelId?: string;
|
|
2955
2958
|
locationDevices?: ImportRoomControlDevicesRequestLocationDevices[];
|
|
2956
2959
|
roomNo?: string;
|
|
@@ -2965,6 +2968,7 @@ export declare class ImportRoomControlDevicesRequest extends $tea.Model {
|
|
|
2965
2968
|
});
|
|
2966
2969
|
}
|
|
2967
2970
|
export declare class ImportRoomControlDevicesShrinkRequest extends $tea.Model {
|
|
2971
|
+
enableInfraredDeviceImport?: string;
|
|
2968
2972
|
hotelId?: string;
|
|
2969
2973
|
locationDevicesShrink?: string;
|
|
2970
2974
|
roomNo?: string;
|
|
@@ -3146,6 +3150,112 @@ export declare class InvokeRobotPushResponse extends $tea.Model {
|
|
|
3146
3150
|
[key: string]: any;
|
|
3147
3151
|
});
|
|
3148
3152
|
}
|
|
3153
|
+
export declare class ListAllProvincesHeaders extends $tea.Model {
|
|
3154
|
+
commonHeaders?: {
|
|
3155
|
+
[key: string]: string;
|
|
3156
|
+
};
|
|
3157
|
+
xAcsAligenieAccessToken?: string;
|
|
3158
|
+
authorization?: string;
|
|
3159
|
+
static names(): {
|
|
3160
|
+
[key: string]: string;
|
|
3161
|
+
};
|
|
3162
|
+
static types(): {
|
|
3163
|
+
[key: string]: any;
|
|
3164
|
+
};
|
|
3165
|
+
constructor(map?: {
|
|
3166
|
+
[key: string]: any;
|
|
3167
|
+
});
|
|
3168
|
+
}
|
|
3169
|
+
export declare class ListAllProvincesResponseBody extends $tea.Model {
|
|
3170
|
+
message?: string;
|
|
3171
|
+
requestId?: string;
|
|
3172
|
+
result?: string[];
|
|
3173
|
+
statusCode?: number;
|
|
3174
|
+
static names(): {
|
|
3175
|
+
[key: string]: string;
|
|
3176
|
+
};
|
|
3177
|
+
static types(): {
|
|
3178
|
+
[key: string]: any;
|
|
3179
|
+
};
|
|
3180
|
+
constructor(map?: {
|
|
3181
|
+
[key: string]: any;
|
|
3182
|
+
});
|
|
3183
|
+
}
|
|
3184
|
+
export declare class ListAllProvincesResponse extends $tea.Model {
|
|
3185
|
+
headers: {
|
|
3186
|
+
[key: string]: string;
|
|
3187
|
+
};
|
|
3188
|
+
statusCode: number;
|
|
3189
|
+
body: ListAllProvincesResponseBody;
|
|
3190
|
+
static names(): {
|
|
3191
|
+
[key: string]: string;
|
|
3192
|
+
};
|
|
3193
|
+
static types(): {
|
|
3194
|
+
[key: string]: any;
|
|
3195
|
+
};
|
|
3196
|
+
constructor(map?: {
|
|
3197
|
+
[key: string]: any;
|
|
3198
|
+
});
|
|
3199
|
+
}
|
|
3200
|
+
export declare class ListCitiesByProvinceHeaders extends $tea.Model {
|
|
3201
|
+
commonHeaders?: {
|
|
3202
|
+
[key: string]: string;
|
|
3203
|
+
};
|
|
3204
|
+
xAcsAligenieAccessToken?: string;
|
|
3205
|
+
authorization?: string;
|
|
3206
|
+
static names(): {
|
|
3207
|
+
[key: string]: string;
|
|
3208
|
+
};
|
|
3209
|
+
static types(): {
|
|
3210
|
+
[key: string]: any;
|
|
3211
|
+
};
|
|
3212
|
+
constructor(map?: {
|
|
3213
|
+
[key: string]: any;
|
|
3214
|
+
});
|
|
3215
|
+
}
|
|
3216
|
+
export declare class ListCitiesByProvinceRequest extends $tea.Model {
|
|
3217
|
+
province?: string;
|
|
3218
|
+
static names(): {
|
|
3219
|
+
[key: string]: string;
|
|
3220
|
+
};
|
|
3221
|
+
static types(): {
|
|
3222
|
+
[key: string]: any;
|
|
3223
|
+
};
|
|
3224
|
+
constructor(map?: {
|
|
3225
|
+
[key: string]: any;
|
|
3226
|
+
});
|
|
3227
|
+
}
|
|
3228
|
+
export declare class ListCitiesByProvinceResponseBody extends $tea.Model {
|
|
3229
|
+
message?: string;
|
|
3230
|
+
requestId?: string;
|
|
3231
|
+
result?: string[];
|
|
3232
|
+
statusCode?: number;
|
|
3233
|
+
static names(): {
|
|
3234
|
+
[key: string]: string;
|
|
3235
|
+
};
|
|
3236
|
+
static types(): {
|
|
3237
|
+
[key: string]: any;
|
|
3238
|
+
};
|
|
3239
|
+
constructor(map?: {
|
|
3240
|
+
[key: string]: any;
|
|
3241
|
+
});
|
|
3242
|
+
}
|
|
3243
|
+
export declare class ListCitiesByProvinceResponse extends $tea.Model {
|
|
3244
|
+
headers: {
|
|
3245
|
+
[key: string]: string;
|
|
3246
|
+
};
|
|
3247
|
+
statusCode: number;
|
|
3248
|
+
body: ListCitiesByProvinceResponseBody;
|
|
3249
|
+
static names(): {
|
|
3250
|
+
[key: string]: string;
|
|
3251
|
+
};
|
|
3252
|
+
static types(): {
|
|
3253
|
+
[key: string]: any;
|
|
3254
|
+
};
|
|
3255
|
+
constructor(map?: {
|
|
3256
|
+
[key: string]: any;
|
|
3257
|
+
});
|
|
3258
|
+
}
|
|
3149
3259
|
export declare class ListCustomQAHeaders extends $tea.Model {
|
|
3150
3260
|
commonHeaders?: {
|
|
3151
3261
|
[key: string]: string;
|
|
@@ -4026,6 +4136,194 @@ export declare class ListHotelsResponse extends $tea.Model {
|
|
|
4026
4136
|
[key: string]: any;
|
|
4027
4137
|
});
|
|
4028
4138
|
}
|
|
4139
|
+
export declare class ListInfraredDeviceBrandsHeaders extends $tea.Model {
|
|
4140
|
+
commonHeaders?: {
|
|
4141
|
+
[key: string]: string;
|
|
4142
|
+
};
|
|
4143
|
+
xAcsAligenieAccessToken?: string;
|
|
4144
|
+
authorization?: string;
|
|
4145
|
+
static names(): {
|
|
4146
|
+
[key: string]: string;
|
|
4147
|
+
};
|
|
4148
|
+
static types(): {
|
|
4149
|
+
[key: string]: any;
|
|
4150
|
+
};
|
|
4151
|
+
constructor(map?: {
|
|
4152
|
+
[key: string]: any;
|
|
4153
|
+
});
|
|
4154
|
+
}
|
|
4155
|
+
export declare class ListInfraredDeviceBrandsRequest extends $tea.Model {
|
|
4156
|
+
category?: string;
|
|
4157
|
+
serviceProvider?: string;
|
|
4158
|
+
static names(): {
|
|
4159
|
+
[key: string]: string;
|
|
4160
|
+
};
|
|
4161
|
+
static types(): {
|
|
4162
|
+
[key: string]: any;
|
|
4163
|
+
};
|
|
4164
|
+
constructor(map?: {
|
|
4165
|
+
[key: string]: any;
|
|
4166
|
+
});
|
|
4167
|
+
}
|
|
4168
|
+
export declare class ListInfraredDeviceBrandsResponseBody extends $tea.Model {
|
|
4169
|
+
message?: string;
|
|
4170
|
+
requestId?: string;
|
|
4171
|
+
result?: {
|
|
4172
|
+
[key: string]: string[];
|
|
4173
|
+
};
|
|
4174
|
+
statusCode?: number;
|
|
4175
|
+
static names(): {
|
|
4176
|
+
[key: string]: string;
|
|
4177
|
+
};
|
|
4178
|
+
static types(): {
|
|
4179
|
+
[key: string]: any;
|
|
4180
|
+
};
|
|
4181
|
+
constructor(map?: {
|
|
4182
|
+
[key: string]: any;
|
|
4183
|
+
});
|
|
4184
|
+
}
|
|
4185
|
+
export declare class ListInfraredDeviceBrandsResponse extends $tea.Model {
|
|
4186
|
+
headers: {
|
|
4187
|
+
[key: string]: string;
|
|
4188
|
+
};
|
|
4189
|
+
statusCode: number;
|
|
4190
|
+
body: ListInfraredDeviceBrandsResponseBody;
|
|
4191
|
+
static names(): {
|
|
4192
|
+
[key: string]: string;
|
|
4193
|
+
};
|
|
4194
|
+
static types(): {
|
|
4195
|
+
[key: string]: any;
|
|
4196
|
+
};
|
|
4197
|
+
constructor(map?: {
|
|
4198
|
+
[key: string]: any;
|
|
4199
|
+
});
|
|
4200
|
+
}
|
|
4201
|
+
export declare class ListInfraredRemoteControllersHeaders extends $tea.Model {
|
|
4202
|
+
commonHeaders?: {
|
|
4203
|
+
[key: string]: string;
|
|
4204
|
+
};
|
|
4205
|
+
xAcsAligenieAccessToken?: string;
|
|
4206
|
+
authorization?: string;
|
|
4207
|
+
static names(): {
|
|
4208
|
+
[key: string]: string;
|
|
4209
|
+
};
|
|
4210
|
+
static types(): {
|
|
4211
|
+
[key: string]: any;
|
|
4212
|
+
};
|
|
4213
|
+
constructor(map?: {
|
|
4214
|
+
[key: string]: any;
|
|
4215
|
+
});
|
|
4216
|
+
}
|
|
4217
|
+
export declare class ListInfraredRemoteControllersRequest extends $tea.Model {
|
|
4218
|
+
brand?: string;
|
|
4219
|
+
category?: string;
|
|
4220
|
+
city?: string;
|
|
4221
|
+
hotelId?: string;
|
|
4222
|
+
province?: string;
|
|
4223
|
+
serviceProvider?: string;
|
|
4224
|
+
static names(): {
|
|
4225
|
+
[key: string]: string;
|
|
4226
|
+
};
|
|
4227
|
+
static types(): {
|
|
4228
|
+
[key: string]: any;
|
|
4229
|
+
};
|
|
4230
|
+
constructor(map?: {
|
|
4231
|
+
[key: string]: any;
|
|
4232
|
+
});
|
|
4233
|
+
}
|
|
4234
|
+
export declare class ListInfraredRemoteControllersResponseBody extends $tea.Model {
|
|
4235
|
+
message?: string;
|
|
4236
|
+
requestId?: string;
|
|
4237
|
+
result?: ListInfraredRemoteControllersResponseBodyResult[];
|
|
4238
|
+
statusCode?: number;
|
|
4239
|
+
static names(): {
|
|
4240
|
+
[key: string]: string;
|
|
4241
|
+
};
|
|
4242
|
+
static types(): {
|
|
4243
|
+
[key: string]: any;
|
|
4244
|
+
};
|
|
4245
|
+
constructor(map?: {
|
|
4246
|
+
[key: string]: any;
|
|
4247
|
+
});
|
|
4248
|
+
}
|
|
4249
|
+
export declare class ListInfraredRemoteControllersResponse extends $tea.Model {
|
|
4250
|
+
headers: {
|
|
4251
|
+
[key: string]: string;
|
|
4252
|
+
};
|
|
4253
|
+
statusCode: number;
|
|
4254
|
+
body: ListInfraredRemoteControllersResponseBody;
|
|
4255
|
+
static names(): {
|
|
4256
|
+
[key: string]: string;
|
|
4257
|
+
};
|
|
4258
|
+
static types(): {
|
|
4259
|
+
[key: string]: any;
|
|
4260
|
+
};
|
|
4261
|
+
constructor(map?: {
|
|
4262
|
+
[key: string]: any;
|
|
4263
|
+
});
|
|
4264
|
+
}
|
|
4265
|
+
export declare class ListSTBServiceProvidersHeaders extends $tea.Model {
|
|
4266
|
+
commonHeaders?: {
|
|
4267
|
+
[key: string]: string;
|
|
4268
|
+
};
|
|
4269
|
+
xAcsAligenieAccessToken?: string;
|
|
4270
|
+
authorization?: string;
|
|
4271
|
+
static names(): {
|
|
4272
|
+
[key: string]: string;
|
|
4273
|
+
};
|
|
4274
|
+
static types(): {
|
|
4275
|
+
[key: string]: any;
|
|
4276
|
+
};
|
|
4277
|
+
constructor(map?: {
|
|
4278
|
+
[key: string]: any;
|
|
4279
|
+
});
|
|
4280
|
+
}
|
|
4281
|
+
export declare class ListSTBServiceProvidersRequest extends $tea.Model {
|
|
4282
|
+
city?: string;
|
|
4283
|
+
province?: string;
|
|
4284
|
+
static names(): {
|
|
4285
|
+
[key: string]: string;
|
|
4286
|
+
};
|
|
4287
|
+
static types(): {
|
|
4288
|
+
[key: string]: any;
|
|
4289
|
+
};
|
|
4290
|
+
constructor(map?: {
|
|
4291
|
+
[key: string]: any;
|
|
4292
|
+
});
|
|
4293
|
+
}
|
|
4294
|
+
export declare class ListSTBServiceProvidersResponseBody extends $tea.Model {
|
|
4295
|
+
message?: string;
|
|
4296
|
+
requestId?: string;
|
|
4297
|
+
result?: {
|
|
4298
|
+
[key: string]: string[];
|
|
4299
|
+
};
|
|
4300
|
+
statusCode?: number;
|
|
4301
|
+
static names(): {
|
|
4302
|
+
[key: string]: string;
|
|
4303
|
+
};
|
|
4304
|
+
static types(): {
|
|
4305
|
+
[key: string]: any;
|
|
4306
|
+
};
|
|
4307
|
+
constructor(map?: {
|
|
4308
|
+
[key: string]: any;
|
|
4309
|
+
});
|
|
4310
|
+
}
|
|
4311
|
+
export declare class ListSTBServiceProvidersResponse extends $tea.Model {
|
|
4312
|
+
headers: {
|
|
4313
|
+
[key: string]: string;
|
|
4314
|
+
};
|
|
4315
|
+
statusCode: number;
|
|
4316
|
+
body: ListSTBServiceProvidersResponseBody;
|
|
4317
|
+
static names(): {
|
|
4318
|
+
[key: string]: string;
|
|
4319
|
+
};
|
|
4320
|
+
static types(): {
|
|
4321
|
+
[key: string]: any;
|
|
4322
|
+
};
|
|
4323
|
+
constructor(map?: {
|
|
4324
|
+
[key: string]: any;
|
|
4325
|
+
});
|
|
4326
|
+
}
|
|
4029
4327
|
export declare class ListSceneCategoryHeaders extends $tea.Model {
|
|
4030
4328
|
commonHeaders?: {
|
|
4031
4329
|
[key: string]: string;
|
|
@@ -6574,7 +6872,7 @@ export declare class GetWelcomeTextAndMusicResponseBodyResult extends $tea.Model
|
|
|
6574
6872
|
[key: string]: any;
|
|
6575
6873
|
});
|
|
6576
6874
|
}
|
|
6577
|
-
export declare class
|
|
6875
|
+
export declare class ImportHotelConfigRequestImportHotelConfigRcuCustomScenes extends $tea.Model {
|
|
6578
6876
|
corpusList?: string[];
|
|
6579
6877
|
description?: string;
|
|
6580
6878
|
icon?: string;
|
|
@@ -6590,8 +6888,8 @@ export declare class ImportHotelConfigRequestImportHotelConfigRequestRcuCustomSc
|
|
|
6590
6888
|
[key: string]: any;
|
|
6591
6889
|
});
|
|
6592
6890
|
}
|
|
6593
|
-
export declare class
|
|
6594
|
-
rcuCustomScenes?:
|
|
6891
|
+
export declare class ImportHotelConfigRequestImportHotelConfig extends $tea.Model {
|
|
6892
|
+
rcuCustomScenes?: ImportHotelConfigRequestImportHotelConfigRcuCustomScenes[];
|
|
6595
6893
|
static names(): {
|
|
6596
6894
|
[key: string]: string;
|
|
6597
6895
|
};
|
|
@@ -6603,9 +6901,17 @@ export declare class ImportHotelConfigRequestImportHotelConfigRequest extends $t
|
|
|
6603
6901
|
});
|
|
6604
6902
|
}
|
|
6605
6903
|
export declare class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.Model {
|
|
6904
|
+
brand?: string;
|
|
6905
|
+
city?: string;
|
|
6906
|
+
connectType?: string;
|
|
6606
6907
|
deviceName?: string;
|
|
6908
|
+
infraredId?: string;
|
|
6909
|
+
infraredIndex?: string;
|
|
6910
|
+
infraredVersion?: string;
|
|
6607
6911
|
name?: string;
|
|
6608
6912
|
number?: string;
|
|
6913
|
+
province?: string;
|
|
6914
|
+
serviceProvider?: string;
|
|
6609
6915
|
static names(): {
|
|
6610
6916
|
[key: string]: string;
|
|
6611
6917
|
};
|
|
@@ -7149,10 +7455,13 @@ export declare class ListHotelSceneItemsResponseBodyResultPage extends $tea.Mode
|
|
|
7149
7455
|
}
|
|
7150
7456
|
export declare class ListHotelSceneItemsResponseBodyResultSceneItemList extends $tea.Model {
|
|
7151
7457
|
category?: string;
|
|
7458
|
+
deliveryMethod?: string;
|
|
7152
7459
|
icon?: string;
|
|
7153
7460
|
id?: number;
|
|
7154
7461
|
name?: string;
|
|
7462
|
+
paymentMethod?: string;
|
|
7155
7463
|
price?: number;
|
|
7464
|
+
robotName?: string;
|
|
7156
7465
|
status?: string;
|
|
7157
7466
|
type?: string;
|
|
7158
7467
|
updateTime?: number;
|
|
@@ -7270,6 +7579,20 @@ export declare class ListHotelsResponseBodyResult extends $tea.Model {
|
|
|
7270
7579
|
[key: string]: any;
|
|
7271
7580
|
});
|
|
7272
7581
|
}
|
|
7582
|
+
export declare class ListInfraredRemoteControllersResponseBodyResult extends $tea.Model {
|
|
7583
|
+
index?: number;
|
|
7584
|
+
rid?: number;
|
|
7585
|
+
version?: string;
|
|
7586
|
+
static names(): {
|
|
7587
|
+
[key: string]: string;
|
|
7588
|
+
};
|
|
7589
|
+
static types(): {
|
|
7590
|
+
[key: string]: any;
|
|
7591
|
+
};
|
|
7592
|
+
constructor(map?: {
|
|
7593
|
+
[key: string]: any;
|
|
7594
|
+
});
|
|
7595
|
+
}
|
|
7273
7596
|
export declare class ListServiceQARequestPage extends $tea.Model {
|
|
7274
7597
|
pageNumber?: number;
|
|
7275
7598
|
pageSize?: number;
|
|
@@ -7846,10 +8169,14 @@ export declare class UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList
|
|
|
7846
8169
|
});
|
|
7847
8170
|
}
|
|
7848
8171
|
export declare class UpdateHotelSceneItemRequestUpdateHotelSceneReq extends $tea.Model {
|
|
8172
|
+
deliveryMethod?: string;
|
|
7849
8173
|
dialogueList?: UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList[];
|
|
7850
8174
|
icon?: string;
|
|
7851
8175
|
id?: number;
|
|
8176
|
+
name?: string;
|
|
8177
|
+
paymentMethod?: string;
|
|
7852
8178
|
price?: number;
|
|
8179
|
+
robotName?: string;
|
|
7853
8180
|
status?: string;
|
|
7854
8181
|
static names(): {
|
|
7855
8182
|
[key: string]: string;
|
|
@@ -7973,6 +8300,10 @@ export default class Client extends OpenApi {
|
|
|
7973
8300
|
insertHotelSceneBookItem(request: InsertHotelSceneBookItemRequest): Promise<InsertHotelSceneBookItemResponse>;
|
|
7974
8301
|
invokeRobotPushWithOptions(request: InvokeRobotPushRequest, headers: InvokeRobotPushHeaders, runtime: $Util.RuntimeOptions): Promise<InvokeRobotPushResponse>;
|
|
7975
8302
|
invokeRobotPush(request: InvokeRobotPushRequest): Promise<InvokeRobotPushResponse>;
|
|
8303
|
+
listAllProvincesWithOptions(headers: ListAllProvincesHeaders, runtime: $Util.RuntimeOptions): Promise<ListAllProvincesResponse>;
|
|
8304
|
+
listAllProvinces(): Promise<ListAllProvincesResponse>;
|
|
8305
|
+
listCitiesByProvinceWithOptions(request: ListCitiesByProvinceRequest, headers: ListCitiesByProvinceHeaders, runtime: $Util.RuntimeOptions): Promise<ListCitiesByProvinceResponse>;
|
|
8306
|
+
listCitiesByProvince(request: ListCitiesByProvinceRequest): Promise<ListCitiesByProvinceResponse>;
|
|
7976
8307
|
listCustomQAWithOptions(tmpReq: ListCustomQARequest, headers: ListCustomQAHeaders, runtime: $Util.RuntimeOptions): Promise<ListCustomQAResponse>;
|
|
7977
8308
|
listCustomQA(request: ListCustomQARequest): Promise<ListCustomQAResponse>;
|
|
7978
8309
|
listDialogueTemplateWithOptions(request: ListDialogueTemplateRequest, headers: ListDialogueTemplateHeaders, runtime: $Util.RuntimeOptions): Promise<ListDialogueTemplateResponse>;
|
|
@@ -7999,6 +8330,12 @@ export default class Client extends OpenApi {
|
|
|
7999
8330
|
listHotelServiceCategory(request: ListHotelServiceCategoryRequest): Promise<ListHotelServiceCategoryResponse>;
|
|
8000
8331
|
listHotelsWithOptions(tmpReq: ListHotelsRequest, headers: ListHotelsHeaders, runtime: $Util.RuntimeOptions): Promise<ListHotelsResponse>;
|
|
8001
8332
|
listHotels(request: ListHotelsRequest): Promise<ListHotelsResponse>;
|
|
8333
|
+
listInfraredDeviceBrandsWithOptions(request: ListInfraredDeviceBrandsRequest, headers: ListInfraredDeviceBrandsHeaders, runtime: $Util.RuntimeOptions): Promise<ListInfraredDeviceBrandsResponse>;
|
|
8334
|
+
listInfraredDeviceBrands(request: ListInfraredDeviceBrandsRequest): Promise<ListInfraredDeviceBrandsResponse>;
|
|
8335
|
+
listInfraredRemoteControllersWithOptions(request: ListInfraredRemoteControllersRequest, headers: ListInfraredRemoteControllersHeaders, runtime: $Util.RuntimeOptions): Promise<ListInfraredRemoteControllersResponse>;
|
|
8336
|
+
listInfraredRemoteControllers(request: ListInfraredRemoteControllersRequest): Promise<ListInfraredRemoteControllersResponse>;
|
|
8337
|
+
listSTBServiceProvidersWithOptions(request: ListSTBServiceProvidersRequest, headers: ListSTBServiceProvidersHeaders, runtime: $Util.RuntimeOptions): Promise<ListSTBServiceProvidersResponse>;
|
|
8338
|
+
listSTBServiceProviders(request: ListSTBServiceProvidersRequest): Promise<ListSTBServiceProvidersResponse>;
|
|
8002
8339
|
listSceneCategoryWithOptions(request: ListSceneCategoryRequest, headers: ListSceneCategoryHeaders, runtime: $Util.RuntimeOptions): Promise<ListSceneCategoryResponse>;
|
|
8003
8340
|
listSceneCategory(request: ListSceneCategoryRequest): Promise<ListSceneCategoryResponse>;
|
|
8004
8341
|
listServiceQAWithOptions(tmpReq: ListServiceQARequest, headers: ListServiceQAHeaders, runtime: $Util.RuntimeOptions): Promise<ListServiceQAResponse>;
|