Skip to content

Commit 6abb535

Browse files
committed
Update SDK.
1 parent f905b6d commit 6abb535

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

ciomarketpop-20250709/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-12-03 Version: 1.1.1
2+
- Update SDK.
3+
14
2025-08-04 Version: 1.1.0
25
- Support API PushEveryOneSellMsg.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.1.1'

ciomarketpop-20250709/alibabacloud_ciomarketpop20250709/client.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def __init__(
2121
config: open_api_models.Config,
2222
):
2323
super().__init__(config)
24-
self._signature_algorithm = 'v2'
2524
self._endpoint_rule = ''
2625
self.check_config(config)
2726
self._endpoint = self.get_endpoint('ciomarketpop', self._region_id, self._endpoint_rule, self._network, self._suffix, self._endpoint_map, self._endpoint)
@@ -72,7 +71,7 @@ def get_every_one_sells_form_list_with_options(
7271
)
7372
return TeaCore.from_map(
7473
cio_market_pop_20250709_models.GetEveryOneSellsFormListResponse(),
75-
self.call_api(params, req, runtime)
74+
self.do_rpcrequest(params.action, params.version, params.protocol, params.method, params.auth_type, params.body_type, req, runtime)
7675
)
7776

7877
async def get_every_one_sells_form_list_with_options_async(
@@ -105,7 +104,7 @@ async def get_every_one_sells_form_list_with_options_async(
105104
)
106105
return TeaCore.from_map(
107106
cio_market_pop_20250709_models.GetEveryOneSellsFormListResponse(),
108-
await self.call_api_async(params, req, runtime)
107+
await self.do_rpcrequest_async(params.action, params.version, params.protocol, params.method, params.auth_type, params.body_type, req, runtime)
109108
)
110109

111110
def get_every_one_sells_form_list(
@@ -174,7 +173,7 @@ def push_every_one_sell_msg_with_options(
174173
)
175174
return TeaCore.from_map(
176175
cio_market_pop_20250709_models.PushEveryOneSellMsgResponse(),
177-
self.call_api(params, req, runtime)
176+
self.do_rpcrequest(params.action, params.version, params.protocol, params.method, params.auth_type, params.body_type, req, runtime)
178177
)
179178

180179
async def push_every_one_sell_msg_with_options_async(
@@ -217,7 +216,7 @@ async def push_every_one_sell_msg_with_options_async(
217216
)
218217
return TeaCore.from_map(
219218
cio_market_pop_20250709_models.PushEveryOneSellMsgResponse(),
220-
await self.call_api_async(params, req, runtime)
219+
await self.do_rpcrequest_async(params.action, params.version, params.protocol, params.method, params.auth_type, params.body_type, req, runtime)
221220
)
222221

223222
def push_every_one_sell_msg(

ciomarketpop-20250709/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_ciomarketpop20250709.
2626
27-
Created on 04/08/2025
27+
Created on 03/12/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""
@@ -38,7 +38,7 @@
3838
VERSION = __import__(PACKAGE).__version__
3939
REQUIRES = [
4040
"alibabacloud_tea_util>=0.3.13, <1.0.0",
41-
"alibabacloud_tea_openapi>=0.3.15, <1.0.0",
41+
"alibabacloud_tea_openapi>=0.3.16, <1.0.0",
4242
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
4343
"alibabacloud_endpoint_util>=0.0.4, <1.0.0"
4444
]

0 commit comments

Comments
 (0)