antchain-bot 1.12.23__tar.gz → 1.12.24__tar.gz
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.
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/PKG-INFO +1 -1
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_bot.egg-info/PKG-INFO +1 -1
- antchain_bot-1.12.24/antchain_sdk_bot/__init__.py +1 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_sdk_bot/client.py +2 -2
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_sdk_bot/models.py +9 -9
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/setup.py +1 -1
- antchain_bot-1.12.23/antchain_sdk_bot/__init__.py +0 -1
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/LICENSE +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/MANIFEST.in +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/README-CN.md +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/README.md +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_bot.egg-info/SOURCES.txt +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_bot.egg-info/dependency_links.txt +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_bot.egg-info/requires.txt +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/antchain_bot.egg-info/top_level.txt +0 -0
- {antchain_bot-1.12.23 → antchain_bot-1.12.24}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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
|
|
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
|
-
#
|
|
28845
|
-
self.
|
|
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.
|
|
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.
|
|
28889
|
-
result['
|
|
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('
|
|
28921
|
-
self.
|
|
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 +0,0 @@
|
|
|
1
|
-
__version__ = '1.12.23'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|