@alicloud/aligenieip_1_0 2.2.0 → 2.2.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 +31 -0
- package/dist/client.js +46 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +59 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/aligenieip_1_0",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.7",
|
|
24
24
|
"@alicloud/openapi-client": "^0.4.4",
|
|
25
|
-
"@alicloud/openapi-util": "^0.3.
|
|
25
|
+
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
package/src/client.ts
CHANGED
|
@@ -12128,10 +12128,14 @@ export class ImportRoomGenieScenesRequestSceneListActionsDevice extends $tea.Mod
|
|
|
12128
12128
|
export class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
|
|
12129
12129
|
attributeValues?: ImportRoomGenieScenesRequestSceneListActionsAttributeValues[];
|
|
12130
12130
|
device?: ImportRoomGenieScenesRequestSceneListActionsDevice;
|
|
12131
|
+
reply?: string;
|
|
12132
|
+
type?: number;
|
|
12131
12133
|
static names(): { [key: string]: string } {
|
|
12132
12134
|
return {
|
|
12133
12135
|
attributeValues: 'AttributeValues',
|
|
12134
12136
|
device: 'Device',
|
|
12137
|
+
reply: 'Reply',
|
|
12138
|
+
type: 'Type',
|
|
12135
12139
|
};
|
|
12136
12140
|
}
|
|
12137
12141
|
|
|
@@ -12139,6 +12143,55 @@ export class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
|
|
|
12139
12143
|
return {
|
|
12140
12144
|
attributeValues: { 'type': 'array', 'itemType': ImportRoomGenieScenesRequestSceneListActionsAttributeValues },
|
|
12141
12145
|
device: ImportRoomGenieScenesRequestSceneListActionsDevice,
|
|
12146
|
+
reply: 'string',
|
|
12147
|
+
type: 'number',
|
|
12148
|
+
};
|
|
12149
|
+
}
|
|
12150
|
+
|
|
12151
|
+
constructor(map?: { [key: string]: any }) {
|
|
12152
|
+
super(map);
|
|
12153
|
+
}
|
|
12154
|
+
}
|
|
12155
|
+
|
|
12156
|
+
export class ImportRoomGenieScenesRequestSceneListTriggersAttributeValues extends $tea.Model {
|
|
12157
|
+
attributeName?: string;
|
|
12158
|
+
attributeValue?: string;
|
|
12159
|
+
static names(): { [key: string]: string } {
|
|
12160
|
+
return {
|
|
12161
|
+
attributeName: 'AttributeName',
|
|
12162
|
+
attributeValue: 'AttributeValue',
|
|
12163
|
+
};
|
|
12164
|
+
}
|
|
12165
|
+
|
|
12166
|
+
static types(): { [key: string]: any } {
|
|
12167
|
+
return {
|
|
12168
|
+
attributeName: 'string',
|
|
12169
|
+
attributeValue: 'string',
|
|
12170
|
+
};
|
|
12171
|
+
}
|
|
12172
|
+
|
|
12173
|
+
constructor(map?: { [key: string]: any }) {
|
|
12174
|
+
super(map);
|
|
12175
|
+
}
|
|
12176
|
+
}
|
|
12177
|
+
|
|
12178
|
+
export class ImportRoomGenieScenesRequestSceneListTriggersDevice extends $tea.Model {
|
|
12179
|
+
category?: string;
|
|
12180
|
+
deviceIndex?: string;
|
|
12181
|
+
deviceNumber?: string;
|
|
12182
|
+
static names(): { [key: string]: string } {
|
|
12183
|
+
return {
|
|
12184
|
+
category: 'Category',
|
|
12185
|
+
deviceIndex: 'DeviceIndex',
|
|
12186
|
+
deviceNumber: 'DeviceNumber',
|
|
12187
|
+
};
|
|
12188
|
+
}
|
|
12189
|
+
|
|
12190
|
+
static types(): { [key: string]: any } {
|
|
12191
|
+
return {
|
|
12192
|
+
category: 'string',
|
|
12193
|
+
deviceIndex: 'string',
|
|
12194
|
+
deviceNumber: 'string',
|
|
12142
12195
|
};
|
|
12143
12196
|
}
|
|
12144
12197
|
|
|
@@ -12148,18 +12201,24 @@ export class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
|
|
|
12148
12201
|
}
|
|
12149
12202
|
|
|
12150
12203
|
export class ImportRoomGenieScenesRequestSceneListTriggers extends $tea.Model {
|
|
12204
|
+
attributeValues?: ImportRoomGenieScenesRequestSceneListTriggersAttributeValues[];
|
|
12151
12205
|
corpusList?: string[];
|
|
12206
|
+
device?: ImportRoomGenieScenesRequestSceneListTriggersDevice;
|
|
12152
12207
|
type?: number;
|
|
12153
12208
|
static names(): { [key: string]: string } {
|
|
12154
12209
|
return {
|
|
12210
|
+
attributeValues: 'AttributeValues',
|
|
12155
12211
|
corpusList: 'CorpusList',
|
|
12212
|
+
device: 'Device',
|
|
12156
12213
|
type: 'Type',
|
|
12157
12214
|
};
|
|
12158
12215
|
}
|
|
12159
12216
|
|
|
12160
12217
|
static types(): { [key: string]: any } {
|
|
12161
12218
|
return {
|
|
12219
|
+
attributeValues: { 'type': 'array', 'itemType': ImportRoomGenieScenesRequestSceneListTriggersAttributeValues },
|
|
12162
12220
|
corpusList: { 'type': 'array', 'itemType': 'string' },
|
|
12221
|
+
device: ImportRoomGenieScenesRequestSceneListTriggersDevice,
|
|
12163
12222
|
type: 'number',
|
|
12164
12223
|
};
|
|
12165
12224
|
}
|