antchain-bot 1.12.8__py3-none-any.whl → 1.12.10__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.8.dist-info → antchain_bot-1.12.10.dist-info}/METADATA +1 -1
- antchain_bot-1.12.10.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.8.dist-info/RECORD +0 -8
- {antchain_bot-1.12.8.dist-info → antchain_bot-1.12.10.dist-info}/LICENSE +0 -0
- {antchain_bot-1.12.8.dist-info → antchain_bot-1.12.10.dist-info}/WHEEL +0 -0
- {antchain_bot-1.12.8.dist-info → antchain_bot-1.12.10.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
antchain_sdk_bot/__init__.py,sha256=lEzaJnUHiorhYNRQwcPD3qVs-lrDDvX3GWrlERPJ0sc,23
|
|
2
|
+
antchain_sdk_bot/client.py,sha256=GOPlVArhOOPJtFzhSxOertMpB9Cnix294ZlC9Lu-X_g,623718
|
|
3
|
+
antchain_sdk_bot/models.py,sha256=2Ogv_NqnpOQibtuUxwsN8IHSOWvpRvb4KeMSlGdmafI,1602113
|
|
4
|
+
antchain_bot-1.12.10.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
antchain_bot-1.12.10.dist-info/METADATA,sha256=zZy3O2mydDmKKwjt-eo3LyfxxJC5n3Mm7Vqrd3gv1Yw,1989
|
|
6
|
+
antchain_bot-1.12.10.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
+
antchain_bot-1.12.10.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
+
antchain_bot-1.12.10.dist-info/RECORD,,
|
antchain_sdk_bot/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.12.
|
|
1
|
+
__version__ = '1.12.10'
|
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.10',
|
|
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.10',
|
|
243
243
|
'_prod_code': 'BOT',
|
|
244
244
|
'_prod_channel': 'undefined'
|
|
245
245
|
}
|
antchain_sdk_bot/models.py
CHANGED
|
@@ -5827,6 +5827,7 @@ class EventSpecs(TeaModel):
|
|
|
5827
5827
|
return_hash: bool = None,
|
|
5828
5828
|
biz_type: str = None,
|
|
5829
5829
|
submit_date: str = None,
|
|
5830
|
+
is_repaired: bool = None,
|
|
5830
5831
|
):
|
|
5831
5832
|
# 物模型事件ID
|
|
5832
5833
|
self.event_model_id = event_model_id
|
|
@@ -5836,6 +5837,8 @@ class EventSpecs(TeaModel):
|
|
|
5836
5837
|
self.biz_type = biz_type
|
|
5837
5838
|
# 提交日期
|
|
5838
5839
|
self.submit_date = submit_date
|
|
5840
|
+
# 是否是补数据内容
|
|
5841
|
+
self.is_repaired = is_repaired
|
|
5839
5842
|
|
|
5840
5843
|
def validate(self):
|
|
5841
5844
|
self.validate_required(self.event_model_id, 'event_model_id')
|
|
@@ -5854,6 +5857,8 @@ class EventSpecs(TeaModel):
|
|
|
5854
5857
|
result['biz_type'] = self.biz_type
|
|
5855
5858
|
if self.submit_date is not None:
|
|
5856
5859
|
result['submit_date'] = self.submit_date
|
|
5860
|
+
if self.is_repaired is not None:
|
|
5861
|
+
result['is_repaired'] = self.is_repaired
|
|
5857
5862
|
return result
|
|
5858
5863
|
|
|
5859
5864
|
def from_map(self, m: dict = None):
|
|
@@ -5866,6 +5871,8 @@ class EventSpecs(TeaModel):
|
|
|
5866
5871
|
self.biz_type = m.get('biz_type')
|
|
5867
5872
|
if m.get('submit_date') is not None:
|
|
5868
5873
|
self.submit_date = m.get('submit_date')
|
|
5874
|
+
if m.get('is_repaired') is not None:
|
|
5875
|
+
self.is_repaired = m.get('is_repaired')
|
|
5869
5876
|
return self
|
|
5870
5877
|
|
|
5871
5878
|
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
antchain_sdk_bot/__init__.py,sha256=GulSo1sR7hOOcFk1K_M3xj-oiUjVfjQ6p5u-EV0IuvI,22
|
|
2
|
-
antchain_sdk_bot/client.py,sha256=HvXdspl3OgbByhzDKTRIP2V2XzRA4-hvbGYZFlJYOG8,623716
|
|
3
|
-
antchain_sdk_bot/models.py,sha256=ubewHwZ8Bgmr2iXvNRwZcqeh_3WOdzm9EnhX6VY_avo,1601814
|
|
4
|
-
antchain_bot-1.12.8.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
antchain_bot-1.12.8.dist-info/METADATA,sha256=ZJkAqMiyiel2gkajwrcMaM-5Do68dq30vck6StX4mGE,1988
|
|
6
|
-
antchain_bot-1.12.8.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
7
|
-
antchain_bot-1.12.8.dist-info/top_level.txt,sha256=gpn1OPRhS8ydjW8IxqApJiA6jx285ves96g9kcJN9iA,17
|
|
8
|
-
antchain_bot-1.12.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|