dagster-airbyte 0.25.5__py3-none-any.whl → 0.25.6__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.
Potentially problematic release.
This version of dagster-airbyte might be problematic. Click here for more details.
- dagster_airbyte/resources.py +1 -1
- dagster_airbyte/translator.py +5 -1
- dagster_airbyte/version.py +1 -1
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/METADATA +3 -3
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/RECORD +9 -9
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/LICENSE +0 -0
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/WHEEL +0 -0
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/entry_points.txt +0 -0
- {dagster_airbyte-0.25.5.dist-info → dagster_airbyte-0.25.6.dist-info}/top_level.txt +0 -0
dagster_airbyte/resources.py
CHANGED
|
@@ -1018,7 +1018,7 @@ class AirbyteCloudWorkspace(ConfigurableResource):
|
|
|
1018
1018
|
description="Time (in seconds) after which the requests to Airbyte are declared timed out.",
|
|
1019
1019
|
)
|
|
1020
1020
|
|
|
1021
|
-
_client: AirbyteCloudClient = PrivateAttr(default=None)
|
|
1021
|
+
_client: AirbyteCloudClient = PrivateAttr(default=None) # type: ignore
|
|
1022
1022
|
|
|
1023
1023
|
@cached_method
|
|
1024
1024
|
def get_client(self) -> AirbyteCloudClient:
|
dagster_airbyte/translator.py
CHANGED
|
@@ -19,6 +19,7 @@ class AirbyteConnectionTableProps:
|
|
|
19
19
|
json_schema: Mapping[str, Any]
|
|
20
20
|
connection_id: str
|
|
21
21
|
connection_name: str
|
|
22
|
+
destination_type: str
|
|
22
23
|
database: Optional[str]
|
|
23
24
|
schema: Optional[str]
|
|
24
25
|
|
|
@@ -67,6 +68,7 @@ class AirbyteDestination:
|
|
|
67
68
|
"""Represents an Airbyte destination, based on data as returned from the API."""
|
|
68
69
|
|
|
69
70
|
id: str
|
|
71
|
+
type: str
|
|
70
72
|
database: Optional[str]
|
|
71
73
|
schema: Optional[str]
|
|
72
74
|
|
|
@@ -77,6 +79,7 @@ class AirbyteDestination:
|
|
|
77
79
|
) -> "AirbyteDestination":
|
|
78
80
|
return cls(
|
|
79
81
|
id=destination_details["destinationId"],
|
|
82
|
+
type=destination_details["destinationType"],
|
|
80
83
|
database=destination_details["configuration"].get("database"),
|
|
81
84
|
schema=destination_details["configuration"].get("schema"),
|
|
82
85
|
)
|
|
@@ -138,6 +141,7 @@ class AirbyteWorkspaceData:
|
|
|
138
141
|
json_schema=stream.json_schema,
|
|
139
142
|
connection_id=connection.id,
|
|
140
143
|
connection_name=connection.name,
|
|
144
|
+
destination_type=destination.type,
|
|
141
145
|
database=destination.database,
|
|
142
146
|
schema=destination.schema,
|
|
143
147
|
)
|
|
@@ -186,5 +190,5 @@ class DagsterAirbyteTranslator:
|
|
|
186
190
|
return AssetSpec(
|
|
187
191
|
key=AssetKey(props.table_name),
|
|
188
192
|
metadata=metadata,
|
|
189
|
-
kinds={"airbyte"},
|
|
193
|
+
kinds={"airbyte", props.destination_type},
|
|
190
194
|
)
|
dagster_airbyte/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.25.
|
|
1
|
+
__version__ = "0.25.6"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dagster-airbyte
|
|
3
|
-
Version: 0.25.
|
|
3
|
+
Version: 0.25.6
|
|
4
4
|
Summary: Package for integrating Airbyte with Dagster.
|
|
5
5
|
Home-page: https://github.com/dagster-io/dagster/tree/master/python_modules/libraries/dagster-airbyte
|
|
6
6
|
Author: Dagster Labs
|
|
@@ -14,10 +14,10 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Requires-Python: >=3.9,<3.13
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: dagster ==1.9.
|
|
17
|
+
Requires-Dist: dagster ==1.9.6
|
|
18
18
|
Requires-Dist: requests
|
|
19
19
|
Provides-Extra: managed
|
|
20
|
-
Requires-Dist: dagster-managed-elements ==0.25.
|
|
20
|
+
Requires-Dist: dagster-managed-elements ==0.25.6 ; extra == 'managed'
|
|
21
21
|
Provides-Extra: test
|
|
22
22
|
Requires-Dist: requests-mock ; extra == 'test'
|
|
23
23
|
Requires-Dist: flaky ; extra == 'test'
|
|
@@ -3,20 +3,20 @@ dagster_airbyte/asset_defs.py,sha256=UFzHdNRgFPNU8xqDGcD-ce-J9I82HIj3N2GN5tg8G_Y
|
|
|
3
3
|
dagster_airbyte/cli.py,sha256=HErteP1MjfHozKKSrznh0yAreKETbXp5NDHzXGsdvvE,425
|
|
4
4
|
dagster_airbyte/ops.py,sha256=pq6mp7vN2wXgo3gJMuWaAcxTmfkZ7d1zWzPyL_auSEY,4208
|
|
5
5
|
dagster_airbyte/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
6
|
-
dagster_airbyte/resources.py,sha256=
|
|
7
|
-
dagster_airbyte/translator.py,sha256=
|
|
6
|
+
dagster_airbyte/resources.py,sha256=HG5Cps1WbMLH-iKFOYmIVDQoHMuYhH7OFv4vMVyqqE0,42936
|
|
7
|
+
dagster_airbyte/translator.py,sha256=Pr6N5Btkp83XvB-5Llra_xNqw3LTHrGtP3sxaQjqj3o,6409
|
|
8
8
|
dagster_airbyte/types.py,sha256=w1DyTcXyuzrG3wfkOPYFtwj7snHcgqf-dC7_pRjiE1Q,1544
|
|
9
9
|
dagster_airbyte/utils.py,sha256=hRUURJiVeximSfFP6pWxb0beh9PsOPdW4obX1pqBVt4,2987
|
|
10
|
-
dagster_airbyte/version.py,sha256=
|
|
10
|
+
dagster_airbyte/version.py,sha256=mgi0NAwnQWP7UdrUf2L9Xln12B8NoCQbqDnalCRZMpE,23
|
|
11
11
|
dagster_airbyte/managed/__init__.py,sha256=6SBtyNOMJ9Cu2UIwFExJHpL_ZVFo3rPMvyIxVOsKvWE,469
|
|
12
12
|
dagster_airbyte/managed/reconciliation.py,sha256=HgrLT-Xs8vWY9SfbdBXuorMf60KCn5Qz7bPITW5MxJo,34862
|
|
13
13
|
dagster_airbyte/managed/types.py,sha256=ja056Wm7_ZFw1XGSNmdxmBy2TcOxbnylJCpRA2ng2TE,14596
|
|
14
14
|
dagster_airbyte/managed/generated/__init__.py,sha256=eYq-yfXEeffuKAVFXY8plD0se1wHjFNVqklpbu9gljw,108
|
|
15
15
|
dagster_airbyte/managed/generated/destinations.py,sha256=x1wmWlXvOJHtfaZva3ErdKuVS--sDvfidSXR5ji9G5w,119692
|
|
16
16
|
dagster_airbyte/managed/generated/sources.py,sha256=wyNoGJiNvW8mjRRs6b-_lWFs0Fgy-MZlRaxiN6bP-4s,282691
|
|
17
|
-
dagster_airbyte-0.25.
|
|
18
|
-
dagster_airbyte-0.25.
|
|
19
|
-
dagster_airbyte-0.25.
|
|
20
|
-
dagster_airbyte-0.25.
|
|
21
|
-
dagster_airbyte-0.25.
|
|
22
|
-
dagster_airbyte-0.25.
|
|
17
|
+
dagster_airbyte-0.25.6.dist-info/LICENSE,sha256=TMatHW4_G9ldRdodEAp-l2Xa2WvsdeOh60E3v1R2jis,11349
|
|
18
|
+
dagster_airbyte-0.25.6.dist-info/METADATA,sha256=gNscK29rWFUo3-Z-KmvthzMS9S-N3oxKO-GyVEOBepg,915
|
|
19
|
+
dagster_airbyte-0.25.6.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
20
|
+
dagster_airbyte-0.25.6.dist-info/entry_points.txt,sha256=XrbLOz3LpgPV5fdwMmgdP6Rp1AfSG07KeWIddLqh7Lw,61
|
|
21
|
+
dagster_airbyte-0.25.6.dist-info/top_level.txt,sha256=HLwIRQCzqItn88_KbPP8DNTKKQEBUVKk6NCn4PrCtqY,16
|
|
22
|
+
dagster_airbyte-0.25.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|