antchain-bot 1.12.23__py3-none-any.whl → 1.12.24__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: antchain-bot
3
- Version: 1.12.23
3
+ Version: 1.12.24
4
4
  Summary: Ant Chain BOT SDK Library for Python
5
5
  Home-page: https://github.com/alipay/antchain-openapi-prod-sdk
6
6
  Author: Ant Chain SDK
@@ -0,0 +1,8 @@
1
+ antchain_sdk_bot/__init__.py,sha256=6AG9hizTQXenshnNzcCT4zK4MGRjv-j5EI0d_rHL9RA,23
2
+ antchain_sdk_bot/client.py,sha256=GaD4sbLTfnFzBUywiWJ445QHTNG_0C_SX_ar2-7LHfw,633000
3
+ antchain_sdk_bot/models.py,sha256=w4chllZjhY9W2bcKGuhmV0j2aMbAi7e29ksfa_Mb_7o,1635685
4
+ antchain_bot-1.12.24.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ antchain_bot-1.12.24.dist-info/METADATA,sha256=35GL7fRnMQge_W833CRezwXsrKG4GyfLomjx-DXPN8U,1989
6
+ antchain_bot-1.12.24.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
7
+ antchain_bot-1.12.24.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
8
+ antchain_bot-1.12.24.dist-info/RECORD,,
@@ -1 +1 @@
1
- __version__ = '1.12.23'
1
+ __version__ = '1.12.24'
@@ -135,7 +135,7 @@ class Client:
135
135
  'req_msg_id': AntchainUtils.get_nonce(),
136
136
  'access_key': self._access_key_id,
137
137
  'base_sdk_version': 'TeaSDK-2.0',
138
- 'sdk_version': '1.12.23',
138
+ 'sdk_version': '1.12.24',
139
139
  '_prod_code': 'BOT',
140
140
  '_prod_channel': 'undefined'
141
141
  }
@@ -239,7 +239,7 @@ class Client:
239
239
  'req_msg_id': AntchainUtils.get_nonce(),
240
240
  'access_key': self._access_key_id,
241
241
  'base_sdk_version': 'TeaSDK-2.0',
242
- 'sdk_version': '1.12.23',
242
+ 'sdk_version': '1.12.24',
243
243
  '_prod_code': 'BOT',
244
244
  '_prod_channel': 'undefined'
245
245
  }
@@ -28806,7 +28806,7 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28806
28806
  protocol_type: str = None,
28807
28807
  key_less: str = None,
28808
28808
  mac: str = None,
28809
- ble_mac: str = None,
28809
+ ble_name: str = None,
28810
28810
  device_sn: str = None,
28811
28811
  access_scene: str = None,
28812
28812
  ):
@@ -28815,7 +28815,7 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28815
28815
  self.product_instance_id = product_instance_id
28816
28816
  # 请求唯一标识Id 调用方生成,需要保证唯一性
28817
28817
  self.request_id = request_id
28818
- # 模式 默认为false,产线申请未true
28818
+ # 模式 默认为false,产线申请为true
28819
28819
  self.online_flag = online_flag
28820
28820
  # 设备类型 默认为4-芯片SE,联系技术配置具体的设备类型
28821
28821
  self.device_type = device_type
@@ -28841,8 +28841,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28841
28841
  self.key_less = key_less
28842
28842
  # mac
28843
28843
  self.mac = mac
28844
- # ble_mac
28845
- self.ble_mac = ble_mac
28844
+ # ble_name
28845
+ self.ble_name = ble_name
28846
28846
  # 设备sn
28847
28847
  self.device_sn = device_sn
28848
28848
  # 接入场景码
@@ -28853,7 +28853,7 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28853
28853
  self.validate_required(self.brand_id, 'brand_id')
28854
28854
  self.validate_required(self.protocol_type, 'protocol_type')
28855
28855
  self.validate_required(self.mac, 'mac')
28856
- self.validate_required(self.ble_mac, 'ble_mac')
28856
+ self.validate_required(self.ble_name, 'ble_name')
28857
28857
  self.validate_required(self.device_sn, 'device_sn')
28858
28858
  self.validate_required(self.access_scene, 'access_scene')
28859
28859
 
@@ -28885,8 +28885,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28885
28885
  result['key_less'] = self.key_less
28886
28886
  if self.mac is not None:
28887
28887
  result['mac'] = self.mac
28888
- if self.ble_mac is not None:
28889
- result['ble_mac'] = self.ble_mac
28888
+ if self.ble_name is not None:
28889
+ result['ble_name'] = self.ble_name
28890
28890
  if self.device_sn is not None:
28891
28891
  result['device_sn'] = self.device_sn
28892
28892
  if self.access_scene is not None:
@@ -28917,8 +28917,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
28917
28917
  self.key_less = m.get('key_less')
28918
28918
  if m.get('mac') is not None:
28919
28919
  self.mac = m.get('mac')
28920
- if m.get('ble_mac') is not None:
28921
- self.ble_mac = m.get('ble_mac')
28920
+ if m.get('ble_name') is not None:
28921
+ self.ble_name = m.get('ble_name')
28922
28922
  if m.get('device_sn') is not None:
28923
28923
  self.device_sn = m.get('device_sn')
28924
28924
  if m.get('access_scene') is not None:
@@ -1,8 +0,0 @@
1
- antchain_sdk_bot/__init__.py,sha256=lBr9CI-2IAeuJMJVM7oaMUh4cSgkBgLF9HZvEk3QRaQ,23
2
- antchain_sdk_bot/client.py,sha256=vv8zzKStU1gqxOmYBN9SZaGcMVt9Mi2HNWlFZhtfVe4,633000
3
- antchain_sdk_bot/models.py,sha256=XECtMVZXrbA_FvHROWvshD84W8kmwvU3zlSziBQx52k,1635673
4
- antchain_bot-1.12.23.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- antchain_bot-1.12.23.dist-info/METADATA,sha256=Ehtr1fk1CJfI06NEh360-YX_pWkIc93gT4hDq9jxhO4,1989
6
- antchain_bot-1.12.23.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
7
- antchain_bot-1.12.23.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
8
- antchain_bot-1.12.23.dist-info/RECORD,,