@@ -18,7 +18,7 @@ class DataverseClient:
1818
1919 This client provides a simple, stable interface for interacting with Dataverse environments
2020 through the Web API. It handles authentication via Azure Identity and delegates HTTP operations
21- to an internal :class:`~dataverse_sdk .odata.ODataClient`.
21+ to an internal :class:`~PowerPlatform.Dataverse.data .odata.ODataClient`.
2222
2323 Key capabilities:
2424 - OData CRUD operations: create, read, update, delete records
@@ -32,8 +32,8 @@ class DataverseClient:
3232 :param credential: Azure Identity credential for authentication.
3333 :type credential: ~azure.core.credentials.TokenCredential
3434 :param config: Optional configuration for language, timeouts, and retries.
35- If not provided, defaults are loaded from :meth:`~dataverse_sdk .config.DataverseConfig.from_env`.
36- :type config: ~dataverse_sdk .config.DataverseConfig or None
35+ If not provided, defaults are loaded from :meth:`~PowerPlatform.Dataverse.core .config.DataverseConfig.from_env`.
36+ :type config: ~PowerPlatform.Dataverse.core .config.DataverseConfig or None
3737
3838 :raises ValueError: If ``base_url`` is missing or empty after trimming.
3939
@@ -90,7 +90,7 @@ def _get_odata(self) -> ODataClient:
9090 deferring construction until the first API call.
9191
9292 :return: The lazily-initialized low-level client used to perform HTTP requests.
93- :rtype: ~dataverse_sdk .odata.ODataClient
93+ :rtype: ~PowerPlatform.Dataverse.data .odata.ODataClient
9494 """
9595 if self ._odata is None :
9696 self ._odata = ODataClient (
@@ -348,8 +348,8 @@ def query_sql(self, sql: str):
348348 :return: List of result row dictionaries. Returns an empty list if no rows match.
349349 :rtype: list[dict]
350350
351- :raises ~dataverse_sdk .errors.SQLParseError: If the SQL query uses unsupported syntax.
352- :raises ~dataverse_sdk .errors.HttpError: If the Web API returns an error.
351+ :raises ~PowerPlatform.Dataverse.core .errors.SQLParseError: If the SQL query uses unsupported syntax.
352+ :raises ~PowerPlatform.Dataverse.core .errors.HttpError: If the Web API returns an error.
353353
354354 .. note::
355355 The SQL support is limited to read-only queries. Complex joins, subqueries,
@@ -432,7 +432,7 @@ class ItemStatus(IntEnum):
432432 ``entity_set_name``, ``entity_logical_name``, ``metadata_id``, and ``columns_created``.
433433 :rtype: dict
434434
435- :raises ~dataverse_sdk .errors.MetadataError: If table creation fails or the schema is invalid.
435+ :raises ~PowerPlatform.Dataverse.core .errors.MetadataError: If table creation fails or the schema is invalid.
436436
437437 Example:
438438 Create a table with simple columns::
@@ -469,7 +469,7 @@ def delete_table(self, tablename: str) -> None:
469469 (e.g. ``"new_SampleItem"``).
470470 :type tablename: str
471471
472- :raises ~dataverse_sdk .errors.MetadataError: If the table does not exist or deletion fails.
472+ :raises ~PowerPlatform.Dataverse.core .errors.MetadataError: If the table does not exist or deletion fails.
473473
474474 .. warning::
475475 This operation is irreversible and will delete all records in the table along
@@ -594,7 +594,7 @@ def upload_file(
594594 ``If-Match: *``. Used for small and chunk modes only.
595595 :type if_none_match: bool
596596
597- :raises ~dataverse_sdk .errors.HttpError: If the upload fails or the file column is not empty
597+ :raises ~PowerPlatform.Dataverse.core .errors.HttpError: If the upload fails or the file column is not empty
598598 when ``if_none_match=True``.
599599 :raises FileNotFoundError: If the specified file path does not exist.
600600
0 commit comments