airbyte-internal-ops 0.6.0__py3-none-any.whl → 0.6.1__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_internal_ops-0.6.0.dist-info → airbyte_internal_ops-0.6.1.dist-info}/METADATA +1 -1
- {airbyte_internal_ops-0.6.0.dist-info → airbyte_internal_ops-0.6.1.dist-info}/RECORD +5 -5
- airbyte_ops_mcp/mcp/cloud_connector_versions.py +4 -1
- {airbyte_internal_ops-0.6.0.dist-info → airbyte_internal_ops-0.6.1.dist-info}/WHEEL +0 -0
- {airbyte_internal_ops-0.6.0.dist-info → airbyte_internal_ops-0.6.1.dist-info}/entry_points.txt +0 -0
|
@@ -261,7 +261,7 @@ airbyte_ops_mcp/gcp_logs/__init__.py,sha256=IqkxclXJnD1U4L2at7aC9GYqPXnuLdYLgmkm
|
|
|
261
261
|
airbyte_ops_mcp/gcp_logs/error_lookup.py,sha256=Ufl1FtNQJKP_yWndVT1Xku1mT-gxW_0atmNMCYMXvOo,12757
|
|
262
262
|
airbyte_ops_mcp/mcp/__init__.py,sha256=Y5K-iKUxSY5KM_2XWrYRJqGpjjTHE_ezriED98ZzalU,538
|
|
263
263
|
airbyte_ops_mcp/mcp/_guidance.py,sha256=48tQSnDnxqXtyGJxxgjz0ZiI814o_7Fj7f6R8jpQ7so,2375
|
|
264
|
-
airbyte_ops_mcp/mcp/cloud_connector_versions.py,sha256=
|
|
264
|
+
airbyte_ops_mcp/mcp/cloud_connector_versions.py,sha256=ZisoDEZMbgUwf3aarz2L5CaJcON3J5-vXH3v7kmM0IY,34741
|
|
265
265
|
airbyte_ops_mcp/mcp/connector_analysis.py,sha256=OC4KrOSkMkKPkOisWnSv96BDDE5TQYHq-Jxa2vtjJpo,298
|
|
266
266
|
airbyte_ops_mcp/mcp/connector_qa.py,sha256=aImpqdnqBPDrz10BS0owsV4kuIU2XdalzgbaGZsbOL0,258
|
|
267
267
|
airbyte_ops_mcp/mcp/gcp_logs.py,sha256=QCDQHmsxQHJ26BB0sxkBgKXr7Ja9wVFkdpY6423H-xo,2677
|
|
@@ -302,7 +302,7 @@ airbyte_ops_mcp/regression_tests/regression/comparators.py,sha256=MJkLZEKHivgrG0
|
|
|
302
302
|
airbyte_ops_mcp/regression_tests/validation/__init__.py,sha256=MBEwGOoNuqT4_oCahtoK62OKWIjUCfWa7vZTxNj_0Ek,1532
|
|
303
303
|
airbyte_ops_mcp/regression_tests/validation/catalog_validators.py,sha256=jqqVAMOk0mtdPgwu4d0hA0ZEjtsNh5gapvGydRv3_qk,12553
|
|
304
304
|
airbyte_ops_mcp/regression_tests/validation/record_validators.py,sha256=RjauAhKWNwxMBTu0eNS2hMFNQVs5CLbQU51kp6FOVDk,7432
|
|
305
|
-
airbyte_internal_ops-0.6.
|
|
306
|
-
airbyte_internal_ops-0.6.
|
|
307
|
-
airbyte_internal_ops-0.6.
|
|
308
|
-
airbyte_internal_ops-0.6.
|
|
305
|
+
airbyte_internal_ops-0.6.1.dist-info/METADATA,sha256=BPnWlT4bx1Ayw9-1n7gvikiutGNwsKI34PtI26rhjSw,5777
|
|
306
|
+
airbyte_internal_ops-0.6.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
307
|
+
airbyte_internal_ops-0.6.1.dist-info/entry_points.txt,sha256=WxP0l7bRFss4Cr5uQqVj9mTEKwnRKouNuphXQF0lotA,171
|
|
308
|
+
airbyte_internal_ops-0.6.1.dist-info/RECORD,,
|
|
@@ -8,7 +8,10 @@ to specific versions for troubleshooting or stability purposes.
|
|
|
8
8
|
Uses direct API client calls with either bearer token or client credentials auth.
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
from __future__ import annotations
|
|
11
|
+
# NOTE: We intentionally do NOT use `from __future__ import annotations` here.
|
|
12
|
+
# FastMCP has issues resolving forward references when PEP 563 deferred annotations
|
|
13
|
+
# are used. See: https://github.com/jlowin/fastmcp/issues/905
|
|
14
|
+
# Python 3.12+ supports modern type hint syntax natively, so this is not needed.
|
|
12
15
|
|
|
13
16
|
from dataclasses import dataclass
|
|
14
17
|
from typing import Annotated, Literal
|
|
File without changes
|
{airbyte_internal_ops-0.6.0.dist-info → airbyte_internal_ops-0.6.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|