airbyte-source-microsoft-dataverse 0.1.21__py3-none-any.whl → 0.1.22__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {airbyte_source_microsoft_dataverse-0.1.21.dist-info → airbyte_source_microsoft_dataverse-0.1.22.dist-info}/METADATA +3 -3
- airbyte_source_microsoft_dataverse-0.1.22.dist-info/RECORD +10 -0
- {airbyte_source_microsoft_dataverse-0.1.21.dist-info → airbyte_source_microsoft_dataverse-0.1.22.dist-info}/WHEEL +1 -1
- source_microsoft_dataverse/dataverse.py +1 -2
- source_microsoft_dataverse/streams.py +1 -2
- airbyte_source_microsoft_dataverse-0.1.21.dist-info/RECORD +0 -10
- {airbyte_source_microsoft_dataverse-0.1.21.dist-info → airbyte_source_microsoft_dataverse-0.1.22.dist-info}/entry_points.txt +0 -0
@@ -1,8 +1,7 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.3
|
2
2
|
Name: airbyte-source-microsoft-dataverse
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.22
|
4
4
|
Summary: Source implementation for Microsoft Dataverse.
|
5
|
-
Home-page: https://airbyte.com
|
6
5
|
License: MIT
|
7
6
|
Author: Airbyte
|
8
7
|
Author-email: contact@airbyte.io
|
@@ -14,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.11
|
15
14
|
Requires-Dist: airbyte-cdk (==0.80.0)
|
16
15
|
Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/microsoft-dataverse
|
16
|
+
Project-URL: Homepage, https://airbyte.com
|
17
17
|
Project-URL: Repository, https://github.com/airbytehq/airbyte
|
18
18
|
Description-Content-Type: text/markdown
|
19
19
|
|
@@ -0,0 +1,10 @@
|
|
1
|
+
source_microsoft_dataverse/__init__.py,sha256=xy7FvZqZBBL0_I7mMd5ex5llLWTllG3HRt836ktTD7Q,148
|
2
|
+
source_microsoft_dataverse/dataverse.py,sha256=kLkELTvct6vTHPwmf43E927vr4T7Y3HdbejTP7fEtLY,2520
|
3
|
+
source_microsoft_dataverse/run.py,sha256=hPGT5kR0LB6ZdKtLmwfLHymdF4EsDaFM2EC4J5ZAr3A,267
|
4
|
+
source_microsoft_dataverse/source.py,sha256=7Z6f-FE9P2ycZlgdo5fVNYTlVKjKBiKqll3CMjp8IW4,4435
|
5
|
+
source_microsoft_dataverse/spec.yaml,sha256=GmPlzh34HTII0aUW9XUbLxUk3VPEdvQ6E4iIKz4YMiA,1147
|
6
|
+
source_microsoft_dataverse/streams.py,sha256=R9m7L-mM2Q0FoUYMXgG_gSXyGb_2c1oQ3kYrVvp-xtw,6167
|
7
|
+
airbyte_source_microsoft_dataverse-0.1.22.dist-info/METADATA,sha256=16FR95G1dXg70utis5v4gC8mIJKYUCpKZa5_cscJbNw,5486
|
8
|
+
airbyte_source_microsoft_dataverse-0.1.22.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
9
|
+
airbyte_source_microsoft_dataverse-0.1.22.dist-info/entry_points.txt,sha256=CFEv3NkGV7JlqCcJeXMac5pLipIzJg6omte8L0pV7ns,81
|
10
|
+
airbyte_source_microsoft_dataverse-0.1.22.dist-info/RECORD,,
|
@@ -6,6 +6,7 @@ from enum import Enum
|
|
6
6
|
from typing import Any, Mapping, MutableMapping, Optional
|
7
7
|
|
8
8
|
import requests
|
9
|
+
|
9
10
|
from airbyte_cdk.sources.streams.http.requests_native_auth.oauth import Oauth2Authenticator
|
10
11
|
|
11
12
|
|
@@ -25,7 +26,6 @@ class MicrosoftOauth2Authenticator(Oauth2Authenticator):
|
|
25
26
|
|
26
27
|
|
27
28
|
class AirbyteType(Enum):
|
28
|
-
|
29
29
|
String = {"type": ["null", "string"]}
|
30
30
|
Boolean = {"type": ["null", "boolean"]}
|
31
31
|
Timestamp = {"type": ["null", "string"], "format": "date-time", "airbyte_type": "timestamp_with_timezone"}
|
@@ -34,7 +34,6 @@ class AirbyteType(Enum):
|
|
34
34
|
|
35
35
|
|
36
36
|
class DataverseType(Enum):
|
37
|
-
|
38
37
|
String = AirbyteType.String
|
39
38
|
Uniqueidentifier = AirbyteType.String
|
40
39
|
DateTime = AirbyteType.Timestamp
|
@@ -8,13 +8,13 @@ from typing import Any, Iterable, Mapping, MutableMapping, Optional
|
|
8
8
|
from urllib import parse
|
9
9
|
|
10
10
|
import requests
|
11
|
+
|
11
12
|
from airbyte_cdk.sources.streams import IncrementalMixin
|
12
13
|
from airbyte_cdk.sources.streams.http import HttpStream
|
13
14
|
|
14
15
|
|
15
16
|
# Basic full refresh stream
|
16
17
|
class MicrosoftDataverseStream(HttpStream, ABC):
|
17
|
-
|
18
18
|
# Base url will be set by init(), using information provided by the user through config input
|
19
19
|
url_base = ""
|
20
20
|
primary_key = ""
|
@@ -97,7 +97,6 @@ class MicrosoftDataverseStream(HttpStream, ABC):
|
|
97
97
|
|
98
98
|
# Basic incremental stream
|
99
99
|
class IncrementalMicrosoftDataverseStream(MicrosoftDataverseStream, IncrementalMixin, ABC):
|
100
|
-
|
101
100
|
delta_token_field = "$deltatoken"
|
102
101
|
state_checkpoint_interval = None # For now we just use the change tracking as state, and it is only emitted on last page
|
103
102
|
|
@@ -1,10 +0,0 @@
|
|
1
|
-
source_microsoft_dataverse/__init__.py,sha256=xy7FvZqZBBL0_I7mMd5ex5llLWTllG3HRt836ktTD7Q,148
|
2
|
-
source_microsoft_dataverse/dataverse.py,sha256=HOQoA571fpy0Bxk4W9l3DttxX34sKkOjTWYeuwZ0uUA,2521
|
3
|
-
source_microsoft_dataverse/run.py,sha256=hPGT5kR0LB6ZdKtLmwfLHymdF4EsDaFM2EC4J5ZAr3A,267
|
4
|
-
source_microsoft_dataverse/source.py,sha256=7Z6f-FE9P2ycZlgdo5fVNYTlVKjKBiKqll3CMjp8IW4,4435
|
5
|
-
source_microsoft_dataverse/spec.yaml,sha256=GmPlzh34HTII0aUW9XUbLxUk3VPEdvQ6E4iIKz4YMiA,1147
|
6
|
-
source_microsoft_dataverse/streams.py,sha256=3PhAYr4kM2GjW4jPd-XGIwg0jqiECUyKUK9AJB9JQiw,6168
|
7
|
-
airbyte_source_microsoft_dataverse-0.1.21.dist-info/METADATA,sha256=yk8zd2UIDnJAWMG0x4NQ6ACcb0QepjtHBioeKs_mv0g,5474
|
8
|
-
airbyte_source_microsoft_dataverse-0.1.21.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
9
|
-
airbyte_source_microsoft_dataverse-0.1.21.dist-info/entry_points.txt,sha256=CFEv3NkGV7JlqCcJeXMac5pLipIzJg6omte8L0pV7ns,81
|
10
|
-
airbyte_source_microsoft_dataverse-0.1.21.dist-info/RECORD,,
|