antchain-bot 1.12.31__py3-none-any.whl → 1.12.32__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.
- {antchain_bot-1.12.31.dist-info → antchain_bot-1.12.32.dist-info}/METADATA +1 -1
- antchain_bot-1.12.32.dist-info/RECORD +8 -0
- antchain_sdk_bot/__init__.py +1 -1
- antchain_sdk_bot/client.py +2 -2
- antchain_sdk_bot/models.py +7 -0
- antchain_bot-1.12.31.dist-info/RECORD +0 -8
- {antchain_bot-1.12.31.dist-info → antchain_bot-1.12.32.dist-info}/LICENSE +0 -0
- {antchain_bot-1.12.31.dist-info → antchain_bot-1.12.32.dist-info}/WHEEL +0 -0
- {antchain_bot-1.12.31.dist-info → antchain_bot-1.12.32.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
antchain_sdk_bot/__init__.py,sha256=HIQPOfEwloNAiDDtR_KU3frv1cQuZsxBviZ2z_oy560,23
|
|
2
|
+
antchain_sdk_bot/client.py,sha256=73VkQSl-xLSB1Hyd1neqHgm2HqO4QRrp2qLcPkHB1ME,639530
|
|
3
|
+
antchain_sdk_bot/models.py,sha256=z9jSKf7F78wVwaeVDL8XJYC4m0c2wmmDI-Bs8AWgMrQ,1650068
|
|
4
|
+
antchain_bot-1.12.32.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
antchain_bot-1.12.32.dist-info/METADATA,sha256=rCxE6nLqzSUBg6-6FY1OqudM0q49Er5XRFO3gU041U4,1989
|
|
6
|
+
antchain_bot-1.12.32.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
+
antchain_bot-1.12.32.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
+
antchain_bot-1.12.32.dist-info/RECORD,,
|
antchain_sdk_bot/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.12.
|
|
1
|
+
__version__ = '1.12.32'
|
antchain_sdk_bot/client.py
CHANGED
|
@@ -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.32',
|
|
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.32',
|
|
243
243
|
'_prod_code': 'BOT',
|
|
244
244
|
'_prod_channel': 'undefined'
|
|
245
245
|
}
|
antchain_sdk_bot/models.py
CHANGED
|
@@ -28921,6 +28921,7 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
|
|
|
28921
28921
|
ble_name: str = None,
|
|
28922
28922
|
device_sn: str = None,
|
|
28923
28923
|
access_scene: str = None,
|
|
28924
|
+
aliyun_iot_enabled: bool = None,
|
|
28924
28925
|
):
|
|
28925
28926
|
# OAuth模式下的授权token
|
|
28926
28927
|
self.auth_token = auth_token
|
|
@@ -28959,6 +28960,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
|
|
|
28959
28960
|
self.device_sn = device_sn
|
|
28960
28961
|
# 接入场景码
|
|
28961
28962
|
self.access_scene = access_scene
|
|
28963
|
+
# 标识是否启用了阿里云物联网平台
|
|
28964
|
+
self.aliyun_iot_enabled = aliyun_iot_enabled
|
|
28962
28965
|
|
|
28963
28966
|
def validate(self):
|
|
28964
28967
|
self.validate_required(self.request_id, 'request_id')
|
|
@@ -29003,6 +29006,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
|
|
|
29003
29006
|
result['device_sn'] = self.device_sn
|
|
29004
29007
|
if self.access_scene is not None:
|
|
29005
29008
|
result['access_scene'] = self.access_scene
|
|
29009
|
+
if self.aliyun_iot_enabled is not None:
|
|
29010
|
+
result['aliyun_iot_enabled'] = self.aliyun_iot_enabled
|
|
29006
29011
|
return result
|
|
29007
29012
|
|
|
29008
29013
|
def from_map(self, m: dict = None):
|
|
@@ -29035,6 +29040,8 @@ class CreateElectrocarApplycarkeycertificateRequest(TeaModel):
|
|
|
29035
29040
|
self.device_sn = m.get('device_sn')
|
|
29036
29041
|
if m.get('access_scene') is not None:
|
|
29037
29042
|
self.access_scene = m.get('access_scene')
|
|
29043
|
+
if m.get('aliyun_iot_enabled') is not None:
|
|
29044
|
+
self.aliyun_iot_enabled = m.get('aliyun_iot_enabled')
|
|
29038
29045
|
return self
|
|
29039
29046
|
|
|
29040
29047
|
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
antchain_sdk_bot/__init__.py,sha256=BzMPL9cMoWxtezBefMFTH-eQdhgXWcWYQGIuMhthmyw,23
|
|
2
|
-
antchain_sdk_bot/client.py,sha256=tCVYjPVhJr5uC_VUDRYNzR4S_MeUpLBSTD7qWFNaPtU,639530
|
|
3
|
-
antchain_sdk_bot/models.py,sha256=28hHwn44J9LqlUS9j7CWotDjNw5yKfHf2HZtr-4s3zA,1649685
|
|
4
|
-
antchain_bot-1.12.31.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
antchain_bot-1.12.31.dist-info/METADATA,sha256=nKazBvPl2_v-YzFDEL2vdtuQMAfoxaWEXbQDxwvFN8o,1989
|
|
6
|
-
antchain_bot-1.12.31.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
-
antchain_bot-1.12.31.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
-
antchain_bot-1.12.31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|