from httpx import Response from owsclient import OwsClient from src.constants import PRODUCT_STATUS def get_products_for_account( client: OwsClient, account_type: str, account_id: int, page_limit: int, offset: int ) -> Response: return client.get( "ows-product", f"{account_type}/{account_id}/products?status={PRODUCT_STATUS}&page_limit={page_limit}&page_offset={offset}", )