File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/apify_client/clients/resource_clients Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ def create_keys_public_url(
294
294
295
295
request_params = self ._params (
296
296
limit = limit ,
297
- exclusive_start_key = exclusive_start_key ,
297
+ exclusiveStartKey = exclusive_start_key ,
298
298
collection = collection ,
299
299
prefix = prefix ,
300
300
)
@@ -584,7 +584,7 @@ async def create_keys_public_url(
584
584
585
585
request_params = self ._params (
586
586
limit = limit ,
587
- exclusive_start_key = exclusive_start_key ,
587
+ exclusiveStartKey = exclusive_start_key ,
588
588
collection = collection ,
589
589
prefix = prefix ,
590
590
)
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ def list_requests(
396
396
limit: How many requests to retrieve.
397
397
exclusive_start_id: All requests up to this one (including) are skipped from the result.
398
398
"""
399
- request_params = self ._params (limit = limit , exclusive_start_id = exclusive_start_id , clientKey = self .client_key )
399
+ request_params = self ._params (limit = limit , exclusiveStartId = exclusive_start_id , clientKey = self .client_key )
400
400
401
401
response = self .http_client .call (
402
402
url = self ._url ('requests' ),
@@ -824,7 +824,7 @@ async def list_requests(
824
824
limit: How many requests to retrieve.
825
825
exclusive_start_id: All requests up to this one (including) are skipped from the result.
826
826
"""
827
- request_params = self ._params (limit = limit , exclusive_start_id = exclusive_start_id , clientKey = self .client_key )
827
+ request_params = self ._params (limit = limit , exclusiveStartId = exclusive_start_id , clientKey = self .client_key )
828
828
829
829
response = await self .http_client .call (
830
830
url = self ._url ('requests' ),
You can’t perform that action at this time.
0 commit comments