File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/PowerPlatform/Dataverse/data Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919from contextvars import ContextVar
2020
2121from ..core ._http import _HttpClient
22- from ._upload import _ODataFileUpload
22+ from ._upload import _FileUploadMixin
2323from ._relationships import _RelationshipOperationsMixin
2424from ..core .errors import *
2525from ..core ._error_codes import (
@@ -77,7 +77,7 @@ def build(
7777 )
7878
7979
80- class _ODataClient (_ODataFileUpload , _RelationshipOperationsMixin ):
80+ class _ODataClient (_FileUploadMixin , _RelationshipOperationsMixin ):
8181 """Dataverse Web API client: CRUD, SQL-over-API, and table metadata helpers."""
8282
8383 @staticmethod
Original file line number Diff line number Diff line change 88from typing import Optional
99
1010
11- class _ODataFileUpload :
11+ class _FileUploadMixin :
1212 """File upload capabilities (small + chunk) with auto selection."""
1313
1414 def _upload_file (
You can’t perform that action at this time.
0 commit comments