@alicloud/aligenieip_1_0 2.0.0 → 2.2.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 +223 -0
- package/dist/client.js +380 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +483 -0
package/dist/client.d.ts
CHANGED
|
@@ -855,6 +855,7 @@ export declare class ControlRoomDeviceHeaders extends $tea.Model {
|
|
|
855
855
|
}
|
|
856
856
|
export declare class ControlRoomDeviceRequest extends $tea.Model {
|
|
857
857
|
cmd?: string;
|
|
858
|
+
deviceIndex?: number;
|
|
858
859
|
deviceNumber?: string;
|
|
859
860
|
hotelId?: string;
|
|
860
861
|
properties?: {
|
|
@@ -873,6 +874,7 @@ export declare class ControlRoomDeviceRequest extends $tea.Model {
|
|
|
873
874
|
}
|
|
874
875
|
export declare class ControlRoomDeviceShrinkRequest extends $tea.Model {
|
|
875
876
|
cmd?: string;
|
|
877
|
+
deviceIndex?: number;
|
|
876
878
|
deviceNumber?: string;
|
|
877
879
|
hotelId?: string;
|
|
878
880
|
propertiesShrink?: string;
|
|
@@ -1394,6 +1396,7 @@ export declare class DeleteHotelSceneBookItemHeaders extends $tea.Model {
|
|
|
1394
1396
|
export declare class DeleteHotelSceneBookItemRequest extends $tea.Model {
|
|
1395
1397
|
hotelId?: string;
|
|
1396
1398
|
id?: number;
|
|
1399
|
+
name?: string;
|
|
1397
1400
|
static names(): {
|
|
1398
1401
|
[key: string]: string;
|
|
1399
1402
|
};
|
|
@@ -2456,6 +2459,7 @@ export declare class GetHotelSceneItemDetailHeaders extends $tea.Model {
|
|
|
2456
2459
|
export declare class GetHotelSceneItemDetailRequest extends $tea.Model {
|
|
2457
2460
|
hotelId?: string;
|
|
2458
2461
|
itemId?: number;
|
|
2462
|
+
name?: string;
|
|
2459
2463
|
static names(): {
|
|
2460
2464
|
[key: string]: string;
|
|
2461
2465
|
};
|
|
@@ -3014,6 +3018,81 @@ export declare class ImportRoomControlDevicesResponse extends $tea.Model {
|
|
|
3014
3018
|
[key: string]: any;
|
|
3015
3019
|
});
|
|
3016
3020
|
}
|
|
3021
|
+
export declare class ImportRoomGenieScenesHeaders extends $tea.Model {
|
|
3022
|
+
commonHeaders?: {
|
|
3023
|
+
[key: string]: string;
|
|
3024
|
+
};
|
|
3025
|
+
xAcsAligenieAccessToken?: string;
|
|
3026
|
+
authorization?: string;
|
|
3027
|
+
static names(): {
|
|
3028
|
+
[key: string]: string;
|
|
3029
|
+
};
|
|
3030
|
+
static types(): {
|
|
3031
|
+
[key: string]: any;
|
|
3032
|
+
};
|
|
3033
|
+
constructor(map?: {
|
|
3034
|
+
[key: string]: any;
|
|
3035
|
+
});
|
|
3036
|
+
}
|
|
3037
|
+
export declare class ImportRoomGenieScenesRequest extends $tea.Model {
|
|
3038
|
+
hotelId?: string;
|
|
3039
|
+
roomNo?: string;
|
|
3040
|
+
sceneList?: ImportRoomGenieScenesRequestSceneList[];
|
|
3041
|
+
static names(): {
|
|
3042
|
+
[key: string]: string;
|
|
3043
|
+
};
|
|
3044
|
+
static types(): {
|
|
3045
|
+
[key: string]: any;
|
|
3046
|
+
};
|
|
3047
|
+
constructor(map?: {
|
|
3048
|
+
[key: string]: any;
|
|
3049
|
+
});
|
|
3050
|
+
}
|
|
3051
|
+
export declare class ImportRoomGenieScenesShrinkRequest extends $tea.Model {
|
|
3052
|
+
hotelId?: string;
|
|
3053
|
+
roomNo?: string;
|
|
3054
|
+
sceneListShrink?: string;
|
|
3055
|
+
static names(): {
|
|
3056
|
+
[key: string]: string;
|
|
3057
|
+
};
|
|
3058
|
+
static types(): {
|
|
3059
|
+
[key: string]: any;
|
|
3060
|
+
};
|
|
3061
|
+
constructor(map?: {
|
|
3062
|
+
[key: string]: any;
|
|
3063
|
+
});
|
|
3064
|
+
}
|
|
3065
|
+
export declare class ImportRoomGenieScenesResponseBody extends $tea.Model {
|
|
3066
|
+
message?: string;
|
|
3067
|
+
requestId?: string;
|
|
3068
|
+
result?: boolean;
|
|
3069
|
+
statusCode?: number;
|
|
3070
|
+
static names(): {
|
|
3071
|
+
[key: string]: string;
|
|
3072
|
+
};
|
|
3073
|
+
static types(): {
|
|
3074
|
+
[key: string]: any;
|
|
3075
|
+
};
|
|
3076
|
+
constructor(map?: {
|
|
3077
|
+
[key: string]: any;
|
|
3078
|
+
});
|
|
3079
|
+
}
|
|
3080
|
+
export declare class ImportRoomGenieScenesResponse extends $tea.Model {
|
|
3081
|
+
headers: {
|
|
3082
|
+
[key: string]: string;
|
|
3083
|
+
};
|
|
3084
|
+
statusCode: number;
|
|
3085
|
+
body: ImportRoomGenieScenesResponseBody;
|
|
3086
|
+
static names(): {
|
|
3087
|
+
[key: string]: string;
|
|
3088
|
+
};
|
|
3089
|
+
static types(): {
|
|
3090
|
+
[key: string]: any;
|
|
3091
|
+
};
|
|
3092
|
+
constructor(map?: {
|
|
3093
|
+
[key: string]: any;
|
|
3094
|
+
});
|
|
3095
|
+
}
|
|
3017
3096
|
export declare class InsertHotelSceneBookItemHeaders extends $tea.Model {
|
|
3018
3097
|
commonHeaders?: {
|
|
3019
3098
|
[key: string]: string;
|
|
@@ -6898,16 +6977,46 @@ export declare class ImportHotelConfigRequestImportHotelConfig extends $tea.Mode
|
|
|
6898
6977
|
[key: string]: any;
|
|
6899
6978
|
});
|
|
6900
6979
|
}
|
|
6980
|
+
export declare class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList extends $tea.Model {
|
|
6981
|
+
category?: string;
|
|
6982
|
+
deviceIndex?: number;
|
|
6983
|
+
deviceName?: string;
|
|
6984
|
+
location?: string;
|
|
6985
|
+
static names(): {
|
|
6986
|
+
[key: string]: string;
|
|
6987
|
+
};
|
|
6988
|
+
static types(): {
|
|
6989
|
+
[key: string]: any;
|
|
6990
|
+
};
|
|
6991
|
+
constructor(map?: {
|
|
6992
|
+
[key: string]: any;
|
|
6993
|
+
});
|
|
6994
|
+
}
|
|
6995
|
+
export declare class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt extends $tea.Model {
|
|
6996
|
+
switchList?: ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList[];
|
|
6997
|
+
static names(): {
|
|
6998
|
+
[key: string]: string;
|
|
6999
|
+
};
|
|
7000
|
+
static types(): {
|
|
7001
|
+
[key: string]: any;
|
|
7002
|
+
};
|
|
7003
|
+
constructor(map?: {
|
|
7004
|
+
[key: string]: any;
|
|
7005
|
+
});
|
|
7006
|
+
}
|
|
6901
7007
|
export declare class ImportRoomControlDevicesRequestLocationDevicesDevices extends $tea.Model {
|
|
6902
7008
|
brand?: string;
|
|
6903
7009
|
city?: string;
|
|
6904
7010
|
connectType?: string;
|
|
6905
7011
|
deviceName?: string;
|
|
7012
|
+
dn?: string;
|
|
6906
7013
|
infraredId?: string;
|
|
6907
7014
|
infraredIndex?: string;
|
|
6908
7015
|
infraredVersion?: string;
|
|
7016
|
+
multiKeySwitchExt?: ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt;
|
|
6909
7017
|
name?: string;
|
|
6910
7018
|
number?: string;
|
|
7019
|
+
pk?: string;
|
|
6911
7020
|
province?: string;
|
|
6912
7021
|
serviceProvider?: string;
|
|
6913
7022
|
static names(): {
|
|
@@ -6934,6 +7043,78 @@ export declare class ImportRoomControlDevicesRequestLocationDevices extends $tea
|
|
|
6934
7043
|
[key: string]: any;
|
|
6935
7044
|
});
|
|
6936
7045
|
}
|
|
7046
|
+
export declare class ImportRoomGenieScenesRequestSceneListActionsAttributeValues extends $tea.Model {
|
|
7047
|
+
attributeName?: string;
|
|
7048
|
+
attributeValue?: string;
|
|
7049
|
+
static names(): {
|
|
7050
|
+
[key: string]: string;
|
|
7051
|
+
};
|
|
7052
|
+
static types(): {
|
|
7053
|
+
[key: string]: any;
|
|
7054
|
+
};
|
|
7055
|
+
constructor(map?: {
|
|
7056
|
+
[key: string]: any;
|
|
7057
|
+
});
|
|
7058
|
+
}
|
|
7059
|
+
export declare class ImportRoomGenieScenesRequestSceneListActionsDevice extends $tea.Model {
|
|
7060
|
+
category?: string;
|
|
7061
|
+
deviceIndex?: number;
|
|
7062
|
+
deviceNumber?: string;
|
|
7063
|
+
type?: number;
|
|
7064
|
+
static names(): {
|
|
7065
|
+
[key: string]: string;
|
|
7066
|
+
};
|
|
7067
|
+
static types(): {
|
|
7068
|
+
[key: string]: any;
|
|
7069
|
+
};
|
|
7070
|
+
constructor(map?: {
|
|
7071
|
+
[key: string]: any;
|
|
7072
|
+
});
|
|
7073
|
+
}
|
|
7074
|
+
export declare class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
|
|
7075
|
+
attributeValues?: ImportRoomGenieScenesRequestSceneListActionsAttributeValues[];
|
|
7076
|
+
device?: ImportRoomGenieScenesRequestSceneListActionsDevice;
|
|
7077
|
+
static names(): {
|
|
7078
|
+
[key: string]: string;
|
|
7079
|
+
};
|
|
7080
|
+
static types(): {
|
|
7081
|
+
[key: string]: any;
|
|
7082
|
+
};
|
|
7083
|
+
constructor(map?: {
|
|
7084
|
+
[key: string]: any;
|
|
7085
|
+
});
|
|
7086
|
+
}
|
|
7087
|
+
export declare class ImportRoomGenieScenesRequestSceneListTriggers extends $tea.Model {
|
|
7088
|
+
corpusList?: string[];
|
|
7089
|
+
type?: number;
|
|
7090
|
+
static names(): {
|
|
7091
|
+
[key: string]: string;
|
|
7092
|
+
};
|
|
7093
|
+
static types(): {
|
|
7094
|
+
[key: string]: any;
|
|
7095
|
+
};
|
|
7096
|
+
constructor(map?: {
|
|
7097
|
+
[key: string]: any;
|
|
7098
|
+
});
|
|
7099
|
+
}
|
|
7100
|
+
export declare class ImportRoomGenieScenesRequestSceneList extends $tea.Model {
|
|
7101
|
+
actions?: ImportRoomGenieScenesRequestSceneListActions[];
|
|
7102
|
+
description?: string;
|
|
7103
|
+
display?: boolean;
|
|
7104
|
+
icon?: string;
|
|
7105
|
+
sceneName?: string;
|
|
7106
|
+
triggerLogical?: number;
|
|
7107
|
+
triggers?: ImportRoomGenieScenesRequestSceneListTriggers[];
|
|
7108
|
+
static names(): {
|
|
7109
|
+
[key: string]: string;
|
|
7110
|
+
};
|
|
7111
|
+
static types(): {
|
|
7112
|
+
[key: string]: any;
|
|
7113
|
+
};
|
|
7114
|
+
constructor(map?: {
|
|
7115
|
+
[key: string]: any;
|
|
7116
|
+
});
|
|
7117
|
+
}
|
|
6937
7118
|
export declare class InsertHotelSceneBookItemRequestAddHotelSceneItemReq extends $tea.Model {
|
|
6938
7119
|
icon?: string;
|
|
6939
7120
|
name?: string;
|
|
@@ -7453,10 +7634,13 @@ export declare class ListHotelSceneItemsResponseBodyResultPage extends $tea.Mode
|
|
|
7453
7634
|
}
|
|
7454
7635
|
export declare class ListHotelSceneItemsResponseBodyResultSceneItemList extends $tea.Model {
|
|
7455
7636
|
category?: string;
|
|
7637
|
+
deliveryMethod?: string;
|
|
7456
7638
|
icon?: string;
|
|
7457
7639
|
id?: number;
|
|
7458
7640
|
name?: string;
|
|
7641
|
+
paymentMethod?: string;
|
|
7459
7642
|
price?: number;
|
|
7643
|
+
robotName?: string;
|
|
7460
7644
|
status?: string;
|
|
7461
7645
|
type?: string;
|
|
7462
7646
|
updateTime?: number;
|
|
@@ -7921,11 +8105,44 @@ export declare class QueryHotelRoomDetailResponseBodyResult extends $tea.Model {
|
|
|
7921
8105
|
[key: string]: any;
|
|
7922
8106
|
});
|
|
7923
8107
|
}
|
|
8108
|
+
export declare class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList extends $tea.Model {
|
|
8109
|
+
category?: string;
|
|
8110
|
+
deviceIndex?: number;
|
|
8111
|
+
deviceName?: string;
|
|
8112
|
+
deviceStatus?: string;
|
|
8113
|
+
elementCode?: string;
|
|
8114
|
+
location?: string;
|
|
8115
|
+
static names(): {
|
|
8116
|
+
[key: string]: string;
|
|
8117
|
+
};
|
|
8118
|
+
static types(): {
|
|
8119
|
+
[key: string]: any;
|
|
8120
|
+
};
|
|
8121
|
+
constructor(map?: {
|
|
8122
|
+
[key: string]: any;
|
|
8123
|
+
});
|
|
8124
|
+
}
|
|
8125
|
+
export declare class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt extends $tea.Model {
|
|
8126
|
+
switchList?: QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList[];
|
|
8127
|
+
static names(): {
|
|
8128
|
+
[key: string]: string;
|
|
8129
|
+
};
|
|
8130
|
+
static types(): {
|
|
8131
|
+
[key: string]: any;
|
|
8132
|
+
};
|
|
8133
|
+
constructor(map?: {
|
|
8134
|
+
[key: string]: any;
|
|
8135
|
+
});
|
|
8136
|
+
}
|
|
7924
8137
|
export declare class QueryRoomControlDevicesResponseBodyResultDevices extends $tea.Model {
|
|
7925
8138
|
connectType?: string;
|
|
8139
|
+
DN?: string;
|
|
7926
8140
|
deviceName?: string;
|
|
8141
|
+
deviceStatus?: string;
|
|
8142
|
+
multiKeySwitchExt?: QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt;
|
|
7927
8143
|
name?: string;
|
|
7928
8144
|
number?: string;
|
|
8145
|
+
PK?: string;
|
|
7929
8146
|
static names(): {
|
|
7930
8147
|
[key: string]: string;
|
|
7931
8148
|
};
|
|
@@ -8164,10 +8381,14 @@ export declare class UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList
|
|
|
8164
8381
|
});
|
|
8165
8382
|
}
|
|
8166
8383
|
export declare class UpdateHotelSceneItemRequestUpdateHotelSceneReq extends $tea.Model {
|
|
8384
|
+
deliveryMethod?: string;
|
|
8167
8385
|
dialogueList?: UpdateHotelSceneItemRequestUpdateHotelSceneReqDialogueList[];
|
|
8168
8386
|
icon?: string;
|
|
8169
8387
|
id?: number;
|
|
8388
|
+
name?: string;
|
|
8389
|
+
paymentMethod?: string;
|
|
8170
8390
|
price?: number;
|
|
8391
|
+
robotName?: string;
|
|
8171
8392
|
status?: string;
|
|
8172
8393
|
static names(): {
|
|
8173
8394
|
[key: string]: string;
|
|
@@ -8287,6 +8508,8 @@ export default class Client extends OpenApi {
|
|
|
8287
8508
|
importHotelConfig(request: ImportHotelConfigRequest): Promise<ImportHotelConfigResponse>;
|
|
8288
8509
|
importRoomControlDevicesWithOptions(tmpReq: ImportRoomControlDevicesRequest, headers: ImportRoomControlDevicesHeaders, runtime: $Util.RuntimeOptions): Promise<ImportRoomControlDevicesResponse>;
|
|
8289
8510
|
importRoomControlDevices(request: ImportRoomControlDevicesRequest): Promise<ImportRoomControlDevicesResponse>;
|
|
8511
|
+
importRoomGenieScenesWithOptions(tmpReq: ImportRoomGenieScenesRequest, headers: ImportRoomGenieScenesHeaders, runtime: $Util.RuntimeOptions): Promise<ImportRoomGenieScenesResponse>;
|
|
8512
|
+
importRoomGenieScenes(request: ImportRoomGenieScenesRequest): Promise<ImportRoomGenieScenesResponse>;
|
|
8290
8513
|
insertHotelSceneBookItemWithOptions(tmpReq: InsertHotelSceneBookItemRequest, headers: InsertHotelSceneBookItemHeaders, runtime: $Util.RuntimeOptions): Promise<InsertHotelSceneBookItemResponse>;
|
|
8291
8514
|
insertHotelSceneBookItem(request: InsertHotelSceneBookItemRequest): Promise<InsertHotelSceneBookItemResponse>;
|
|
8292
8515
|
invokeRobotPushWithOptions(request: InvokeRobotPushRequest, headers: InvokeRobotPushHeaders, runtime: $Util.RuntimeOptions): Promise<InvokeRobotPushResponse>;
|