@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 CHANGED
@@ -7074,6 +7074,35 @@ export declare class ImportRoomGenieScenesRequestSceneListActionsDevice extends
7074
7074
  export declare class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
7075
7075
  attributeValues?: ImportRoomGenieScenesRequestSceneListActionsAttributeValues[];
7076
7076
  device?: ImportRoomGenieScenesRequestSceneListActionsDevice;
7077
+ reply?: string;
7078
+ type?: number;
7079
+ static names(): {
7080
+ [key: string]: string;
7081
+ };
7082
+ static types(): {
7083
+ [key: string]: any;
7084
+ };
7085
+ constructor(map?: {
7086
+ [key: string]: any;
7087
+ });
7088
+ }
7089
+ export declare class ImportRoomGenieScenesRequestSceneListTriggersAttributeValues extends $tea.Model {
7090
+ attributeName?: string;
7091
+ attributeValue?: string;
7092
+ static names(): {
7093
+ [key: string]: string;
7094
+ };
7095
+ static types(): {
7096
+ [key: string]: any;
7097
+ };
7098
+ constructor(map?: {
7099
+ [key: string]: any;
7100
+ });
7101
+ }
7102
+ export declare class ImportRoomGenieScenesRequestSceneListTriggersDevice extends $tea.Model {
7103
+ category?: string;
7104
+ deviceIndex?: string;
7105
+ deviceNumber?: string;
7077
7106
  static names(): {
7078
7107
  [key: string]: string;
7079
7108
  };
@@ -7085,7 +7114,9 @@ export declare class ImportRoomGenieScenesRequestSceneListActions extends $tea.M
7085
7114
  });
7086
7115
  }
7087
7116
  export declare class ImportRoomGenieScenesRequestSceneListTriggers extends $tea.Model {
7117
+ attributeValues?: ImportRoomGenieScenesRequestSceneListTriggersAttributeValues[];
7088
7118
  corpusList?: string[];
7119
+ device?: ImportRoomGenieScenesRequestSceneListTriggersDevice;
7089
7120
  type?: number;
7090
7121
  static names(): {
7091
7122
  [key: string]: string;
package/dist/client.js CHANGED
@@ -9645,29 +9645,75 @@ class ImportRoomGenieScenesRequestSceneListActions extends $tea.Model {
9645
9645
  return {
9646
9646
  attributeValues: 'AttributeValues',
9647
9647
  device: 'Device',
9648
+ reply: 'Reply',
9649
+ type: 'Type',
9648
9650
  };
9649
9651
  }
9650
9652
  static types() {
9651
9653
  return {
9652
9654
  attributeValues: { 'type': 'array', 'itemType': ImportRoomGenieScenesRequestSceneListActionsAttributeValues },
9653
9655
  device: ImportRoomGenieScenesRequestSceneListActionsDevice,
9656
+ reply: 'string',
9657
+ type: 'number',
9654
9658
  };
9655
9659
  }
9656
9660
  }
9657
9661
  exports.ImportRoomGenieScenesRequestSceneListActions = ImportRoomGenieScenesRequestSceneListActions;
9662
+ class ImportRoomGenieScenesRequestSceneListTriggersAttributeValues extends $tea.Model {
9663
+ constructor(map) {
9664
+ super(map);
9665
+ }
9666
+ static names() {
9667
+ return {
9668
+ attributeName: 'AttributeName',
9669
+ attributeValue: 'AttributeValue',
9670
+ };
9671
+ }
9672
+ static types() {
9673
+ return {
9674
+ attributeName: 'string',
9675
+ attributeValue: 'string',
9676
+ };
9677
+ }
9678
+ }
9679
+ exports.ImportRoomGenieScenesRequestSceneListTriggersAttributeValues = ImportRoomGenieScenesRequestSceneListTriggersAttributeValues;
9680
+ class ImportRoomGenieScenesRequestSceneListTriggersDevice extends $tea.Model {
9681
+ constructor(map) {
9682
+ super(map);
9683
+ }
9684
+ static names() {
9685
+ return {
9686
+ category: 'Category',
9687
+ deviceIndex: 'DeviceIndex',
9688
+ deviceNumber: 'DeviceNumber',
9689
+ };
9690
+ }
9691
+ static types() {
9692
+ return {
9693
+ category: 'string',
9694
+ deviceIndex: 'string',
9695
+ deviceNumber: 'string',
9696
+ };
9697
+ }
9698
+ }
9699
+ exports.ImportRoomGenieScenesRequestSceneListTriggersDevice = ImportRoomGenieScenesRequestSceneListTriggersDevice;
9658
9700
  class ImportRoomGenieScenesRequestSceneListTriggers extends $tea.Model {
9659
9701
  constructor(map) {
9660
9702
  super(map);
9661
9703
  }
9662
9704
  static names() {
9663
9705
  return {
9706
+ attributeValues: 'AttributeValues',
9664
9707
  corpusList: 'CorpusList',
9708
+ device: 'Device',
9665
9709
  type: 'Type',
9666
9710
  };
9667
9711
  }
9668
9712
  static types() {
9669
9713
  return {
9714
+ attributeValues: { 'type': 'array', 'itemType': ImportRoomGenieScenesRequestSceneListTriggersAttributeValues },
9670
9715
  corpusList: { 'type': 'array', 'itemType': 'string' },
9716
+ device: ImportRoomGenieScenesRequestSceneListTriggersDevice,
9671
9717
  type: 'number',
9672
9718
  };
9673
9719
  }