Since https://github.com/apify/apify-client-js/pull/761, JS client supports use cases like e.g. ```javascript await client.dataset(datasetId).listItems({ signature: 'someSignature' }); ``` This allows users to access a specific resource they might not have access to otherwise. The Python client doesn't accept the `signature` param in those methods (see e.g. [here](https://github.com/apify/apify-client-python/blob/40cc686c84cbfdad608a3f664e78a532a47edcb5/src/apify_client/clients/resource_clients/dataset.py#L75)), which blocks this use case.