airbyte-internal-ops 0.1.3__tar.gz → 0.1.4__tar.gz
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.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/connector-live-test.yml +16 -4
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/connector-regression-test.yml +31 -11
- airbyte_internal_ops-0.1.4/.github/workflows/pdoc_preview.yml +42 -0
- airbyte_internal_ops-0.1.4/.github/workflows/pdoc_publish.yml +57 -0
- airbyte_internal_ops-0.1.4/.github/workflows/test-connection-retriever.yml +84 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/CONTRIBUTING.md +14 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/PKG-INFO +8 -5
- airbyte_internal_ops-0.1.4/docs/.gitignore +1 -0
- airbyte_internal_ops-0.1.4/docs/generate.py +47 -0
- airbyte_internal_ops-0.1.4/docs/templates/custom.css +268 -0
- airbyte_internal_ops-0.1.4/docs/templates/theme.css +46 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/poe_tasks.toml +3 -3
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/pyproject.toml +13 -4
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/common.py +1 -1
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/cloud.py +309 -38
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/cloud_admin/connection_config.py +131 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/__init__.py +16 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/__init__.py +35 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/audit_logging.py +88 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/consts.py +33 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/db_access.py +82 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/retrieval.py +391 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/_connection_retriever/secrets_resolution.py +130 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/config.py +190 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/connection_fetcher.py +159 -2
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/connection_secret_retriever.py +173 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/evaluation_modes.py +45 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/http_metrics.py +81 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/message_cache/__init__.py +15 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/message_cache/duckdb_cache.py +415 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/obfuscation.py +126 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/regression/__init__.py +29 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/regression/comparators.py +466 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/schema_generation.py +154 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/validation/__init__.py +43 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/validation/catalog_validators.py +389 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/live_tests/validation/record_validators.py +227 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/_mcp_utils.py +3 -0
- airbyte_internal_ops-0.1.4/src/airbyte_ops_mcp/mcp/live_tests.py +500 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/server.py +3 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/uv.lock +1978 -3068
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.env.template +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/copilot-instructions.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/dependabot.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/pr-welcome-message.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/autofix-command.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/format-check.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/lint-check.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/lock-command.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/poe-command.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/pr-welcome.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/publish.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/pytest-fast.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/pytest-matrix.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/release-drafter.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/slash-command-dispatch.yml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.gitignore +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.mcp.json.template +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/bin/test_mcp_tool.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/conftest.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/pytest.ini +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/ruff.toml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_annotations.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/erd_service.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_erd_generator/relationships.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/cli.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/hacks.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/insights.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/pylint_plugins/cdk_deprecation_checkers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/result_backends.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_insights/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/.gitignore +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/base_backend.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/duckdb_backend.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/backends/file_backend.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connection_objects_retrieval.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/connector_runner.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/errors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/evaluation_modes.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/hacks.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/json_schema_helper.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/mitm_addons.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/proxy.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/secret_access.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/segment_tracking.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/commons/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/consts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/poetry.lock +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/pytest.ini +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_check.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_discover.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_read.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/regression_tests/test_spec.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/report.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/stash_keys.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/private_details.html.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/templates/report.html.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_check.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_discover.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_read.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_live_tests/validation_tests/test_spec.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_ops/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/hooks.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/connector/normalization.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/pipx.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/python/poetry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/remote_storage.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/secrets.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/actions/system/docker.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/git.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/internal_tools.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/java.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger/containers/python.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cache_keys.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/cli.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/cdk_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/command.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/dagger_fs.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/format.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/modifed.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/connectors/yaml.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/argument_parsing.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/execution/run_steps.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/git.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/github.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/pip.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/sentry_utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/slack.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/DELETEME-dagger-helpers/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/build_customization.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/normalization.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/build_image/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/consts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/generate_erd/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/list/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/migrate_to_inline_schemas/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/publish/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/publish/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/publish/context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/publish/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/pull_request/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/reports.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/java_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/python_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/test/steps/templates/test_report.html.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/steps.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/up_to_date/templates/up_to_date_pr_body.md.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/connectors/upgrade_cdk/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/metadata/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/publish/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/poetry/publish/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/base_image.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/docker.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/gradle.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/no_op.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/poetry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/pull_request.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/steps/python_registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/test/pipeline.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/airbyte_ci/update/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/airbyte_ci.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/auto_update.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/click_decorators.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/confirm_prompt.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_pipeline_command.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/dagger_run.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/ensure_repo_root.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/lazy_group.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/secrets.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/cli/telemetry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/consts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/hacks.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/artifacts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/ci_requirements.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/pipeline_context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/contexts/python_registry_publish.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/reports.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/secrets.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/singleton.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_pipelines/models/steps.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/assets.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/documentation.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/documentation_headers_check_description.md.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/section_content_description.md.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/documentation/templates/template.md.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/metadata.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/packaging.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/security.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/checks/version.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/cli.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/consts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/templates/qa_checks.md.j2 +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/connector_qa/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/bundle-schemas.js +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/bin/generate-metadata-models.sh +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ActorDefinitionResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AirbyteInternal.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/AllowedHosts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBreakingChanges.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorBuildOptions.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorIPCOptions.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetadataDefinitionV0.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorMetrics.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorPackageInfo.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryDestinationDefinition.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryReleases.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistrySourceDefinition.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorRegistryV0.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorReleases.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ConnectorTestSuiteOptions.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GeneratedFields.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/GitInfo.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/JobType.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/NormalizationDestinationDefinitionConfig.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RegistryOverrides.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ReleaseStage.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RemoteRegistries.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/ResourceRequirements.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/RolloutConfiguration.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/Secret.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SecretStore.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SourceFileInfo.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SuggestedStreams.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/SupportLevel.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/TestConnections.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/generated/airbyte-connector-metadata-schema.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ActorDefinitionResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AirbyteInternal.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/AllowedHosts.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBreakingChanges.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorBuildOptions.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorIPCOptions.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetadataDefinitionV0.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorMetrics.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorPackageInfo.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryDestinationDefinition.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryReleases.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistrySourceDefinition.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorRegistryV0.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorReleases.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ConnectorTestSuiteOptions.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GeneratedFields.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/GitInfo.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/JobType.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/NormalizationDestinationDefinitionConfig.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RegistryOverrides.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ReleaseStage.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RemoteRegistries.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/ResourceRequirements.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/RolloutConfiguration.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/Secret.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SecretStore.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SourceFileInfo.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SuggestedStreams.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/SupportLevel.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/models/TestConnections.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package-lock.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/package.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_models/transform.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/commands.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/constants.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docker_hub.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/docs/external_documentation_urls.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/gcs_upload.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/files.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/gcs.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/object_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/helpers/slack.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/.env.template +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/README.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/dagster_cloud.yaml +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/connector_metrics.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/github.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/metadata.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_entry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/registry_report.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/slack.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/assets/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/config.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/fetcher/connector_cdk_version.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/hacks.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/jobs/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/publish_connector_lifecycle.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/logging/sentry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/ci_report.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/models/metadata.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/ops/slack.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/file_managers/local_file_manager.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/gcp.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/github.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/resources/local.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/gcs.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/github.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/sensors/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/base.html +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/templates/render.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/blob_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/orchestrator/utils/object_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/poetry.lock +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/conftest.py.disabled +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/cloud_registry.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/fixtures/oss_registry.json +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_connector_metrics.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_dagster_helpers.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_debug.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_partition_jobs.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/orchestrator/tests/test_specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_entry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/registry_report.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/sentry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/spec_cache.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/specs_secrets_mask.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/stale_metadata_report.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/base.html +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/connector_registry_locations.html +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/templates/render.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/_legacy/airbyte_ci/metadata_service/validators/metadata_validator.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/airbyte_repo/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/airbyte_repo/bump_version.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/airbyte_repo/list_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/airbyte_repo/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/_base.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/_shared.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/app.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/gh.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cli/repo.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cloud_admin/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cloud_admin/api_client.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cloud_admin/auth.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/cloud_admin/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/constants.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/ci_output.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/commons/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/connector_runner.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/live_tests/models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/_guidance.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/cloud_connector_versions.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/connector_analysis.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/connector_qa.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/github.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/github_repo_ops.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/metadata.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/prerelease.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/prompts.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/registry.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/mcp/server_info.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/src/airbyte_ops_mcp/py.typed +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_erd_generator/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_erd_generator/builder.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_erd_generator/test_dbml_assembler.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_erd_generator/test_relationships.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_live_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_live_tests/backends/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_live_tests/backends/test_file_backend.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_live_tests/test_get_connection_objects_retrieval.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_live_tests/test_json_schema_helper.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/conftest.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-header.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/bad-title.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/extra-header.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/missing-entry.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_migration_files/out-of-order.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_ops/test_utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/conftest.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/integration_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/integration_tests/test_documentation.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/correct.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/incorrect_not_all_structure.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/data/docs/invalid_links.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_assets.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_documentation.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_metadata.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_packaging.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_security.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_checks/test_version.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/connector_qa/unit_tests/test_models.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/conftest.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_actions/test_environments.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_bases.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_build_image/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_build_image/dummy_build_customization.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_manifest_only_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_build_image/test_steps/test_common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/initial_files/valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_newline.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/changelog_header_no_separator.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_version_date_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/dupicate_versions_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/duplicate_entry_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/existing_entries_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/no_changelog_header.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_at_end.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog/result_files/single_insert_valid_changelog_in_middle.md +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_changelog.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_cli/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_cli/test_click_decorators.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_commands/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_commands/test_groups/test_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_dagger/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_dagger/test_actions/test_python/test_common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_gradle.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_argument_parsing.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_execution/test_run_steps.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_pip.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_helpers/test_utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_models/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_models/test_click_pipeline_context.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_models/test_singleton.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_poetry/test_poetry_publish.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_publish.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_steps/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_steps/test_simple_docker_step.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_steps/test_version_check.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_tests/__init__.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_tests/test_common.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_tests/test_python_connectors.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/test_upgrade_java_cdk.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/legacy/airbyte_ci/pipelines/utils.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/test_airbyte_admin_mcp.py +0 -0
- {airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/tests/test_bump_version.py +0 -0
{airbyte_internal_ops-0.1.3 → airbyte_internal_ops-0.1.4}/.github/workflows/connector-live-test.yml
RENAMED
|
@@ -6,8 +6,12 @@ on:
|
|
|
6
6
|
workflow_dispatch:
|
|
7
7
|
inputs:
|
|
8
8
|
connector_image:
|
|
9
|
-
description: "Full connector image name with tag (e.g., airbyte/source-github:1.0.0)"
|
|
10
|
-
required:
|
|
9
|
+
description: "Full connector image name with tag (e.g., airbyte/source-github:1.0.0). Optional if connector_name or connection_id is provided."
|
|
10
|
+
required: false
|
|
11
|
+
type: string
|
|
12
|
+
connector_name:
|
|
13
|
+
description: "Connector name to build from source (e.g., 'source-pokeapi'). If provided, builds the image locally."
|
|
14
|
+
required: false
|
|
11
15
|
type: string
|
|
12
16
|
command:
|
|
13
17
|
description: "Airbyte command to run"
|
|
@@ -20,7 +24,7 @@ on:
|
|
|
20
24
|
- read
|
|
21
25
|
default: check
|
|
22
26
|
connection_id:
|
|
23
|
-
description: "Airbyte Cloud connection ID to fetch config/catalog from"
|
|
27
|
+
description: "Airbyte Cloud connection ID to fetch config/catalog from. If provided, connector_image can be auto-detected."
|
|
24
28
|
required: false
|
|
25
29
|
type: string
|
|
26
30
|
state_path:
|
|
@@ -55,7 +59,15 @@ jobs:
|
|
|
55
59
|
AIRBYTE_CLOUD_CLIENT_ID: ${{ secrets.AIRBYTE_CLOUD_CLIENT_ID }}
|
|
56
60
|
AIRBYTE_CLOUD_CLIENT_SECRET: ${{ secrets.AIRBYTE_CLOUD_CLIENT_SECRET }}
|
|
57
61
|
run: |
|
|
58
|
-
ARGS=(--
|
|
62
|
+
ARGS=(--command "${{ inputs.command }}")
|
|
63
|
+
|
|
64
|
+
if [ -n "${{ inputs.connector_image }}" ]; then
|
|
65
|
+
ARGS+=(--connector-image "${{ inputs.connector_image }}")
|
|
66
|
+
fi
|
|
67
|
+
|
|
68
|
+
if [ -n "${{ inputs.connector_name }}" ]; then
|
|
69
|
+
ARGS+=(--connector-name "${{ inputs.connector_name }}")
|
|
70
|
+
fi
|
|
59
71
|
|
|
60
72
|
if [ -n "${{ inputs.connection_id }}" ]; then
|
|
61
73
|
ARGS+=(--connection-id "${{ inputs.connection_id }}")
|
|
@@ -7,12 +7,16 @@ on:
|
|
|
7
7
|
workflow_dispatch:
|
|
8
8
|
inputs:
|
|
9
9
|
target_image:
|
|
10
|
-
description: "Target connector image (new version) with tag (e.g., airbyte/source-github:2.0.0)"
|
|
11
|
-
required:
|
|
10
|
+
description: "Target connector image (new version) with tag (e.g., airbyte/source-github:2.0.0). Optional if connector_name is provided."
|
|
11
|
+
required: false
|
|
12
12
|
type: string
|
|
13
13
|
control_image:
|
|
14
|
-
description: "Control connector image (baseline version) with tag (e.g., airbyte/source-github:1.0.0)"
|
|
15
|
-
required:
|
|
14
|
+
description: "Control connector image (baseline version) with tag (e.g., airbyte/source-github:1.0.0). Optional if connection_id is provided (auto-detected)."
|
|
15
|
+
required: false
|
|
16
|
+
type: string
|
|
17
|
+
connector_name:
|
|
18
|
+
description: "Connector name to build target image from source (e.g., 'source-pokeapi'). If provided, builds the target image locally."
|
|
19
|
+
required: false
|
|
16
20
|
type: string
|
|
17
21
|
command:
|
|
18
22
|
description: "Airbyte command to run"
|
|
@@ -25,7 +29,7 @@ on:
|
|
|
25
29
|
- read
|
|
26
30
|
default: check
|
|
27
31
|
connection_id:
|
|
28
|
-
description: "Airbyte Cloud connection ID to fetch config/catalog from"
|
|
32
|
+
description: "Airbyte Cloud connection ID to fetch config/catalog from. If provided, control_image can be auto-detected."
|
|
29
33
|
required: false
|
|
30
34
|
type: string
|
|
31
35
|
state_path:
|
|
@@ -36,12 +40,16 @@ on:
|
|
|
36
40
|
workflow_call:
|
|
37
41
|
inputs:
|
|
38
42
|
target_image:
|
|
39
|
-
description: "Target connector image (new version) with tag"
|
|
40
|
-
required:
|
|
43
|
+
description: "Target connector image (new version) with tag. Optional if connector_name is provided."
|
|
44
|
+
required: false
|
|
41
45
|
type: string
|
|
42
46
|
control_image:
|
|
43
|
-
description: "Control connector image (baseline version) with tag"
|
|
44
|
-
required:
|
|
47
|
+
description: "Control connector image (baseline version) with tag. Optional if connection_id is provided."
|
|
48
|
+
required: false
|
|
49
|
+
type: string
|
|
50
|
+
connector_name:
|
|
51
|
+
description: "Connector name to build target image from source (e.g., 'source-pokeapi')."
|
|
52
|
+
required: false
|
|
45
53
|
type: string
|
|
46
54
|
command:
|
|
47
55
|
description: "Airbyte command to run (spec, check, discover, read)"
|
|
@@ -49,7 +57,7 @@ on:
|
|
|
49
57
|
type: string
|
|
50
58
|
default: check
|
|
51
59
|
connection_id:
|
|
52
|
-
description: "Airbyte Cloud connection ID to fetch config/catalog from"
|
|
60
|
+
description: "Airbyte Cloud connection ID to fetch config/catalog from. If provided, control_image can be auto-detected."
|
|
53
61
|
required: false
|
|
54
62
|
type: string
|
|
55
63
|
state_path:
|
|
@@ -103,7 +111,19 @@ jobs:
|
|
|
103
111
|
AIRBYTE_CLOUD_CLIENT_ID: ${{ secrets.AIRBYTE_CLOUD_CLIENT_ID }}
|
|
104
112
|
AIRBYTE_CLOUD_CLIENT_SECRET: ${{ secrets.AIRBYTE_CLOUD_CLIENT_SECRET }}
|
|
105
113
|
run: |
|
|
106
|
-
ARGS=(--
|
|
114
|
+
ARGS=(--command "${{ inputs.command }}")
|
|
115
|
+
|
|
116
|
+
if [ -n "${{ inputs.target_image }}" ]; then
|
|
117
|
+
ARGS+=(--target-image "${{ inputs.target_image }}")
|
|
118
|
+
fi
|
|
119
|
+
|
|
120
|
+
if [ -n "${{ inputs.control_image }}" ]; then
|
|
121
|
+
ARGS+=(--control-image "${{ inputs.control_image }}")
|
|
122
|
+
fi
|
|
123
|
+
|
|
124
|
+
if [ -n "${{ inputs.connector_name }}" ]; then
|
|
125
|
+
ARGS+=(--connector-name "${{ inputs.connector_name }}")
|
|
126
|
+
fi
|
|
107
127
|
|
|
108
128
|
if [ -n "${{ inputs.connection_id }}" ]; then
|
|
109
129
|
ARGS+=(--connection-id "${{ inputs.connection_id }}")
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
name: Generate Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request: {}
|
|
8
|
+
|
|
9
|
+
permissions:
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
preview_docs:
|
|
14
|
+
runs-on: ubuntu-24.04
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout code
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
- name: Set up uv
|
|
20
|
+
uses: astral-sh/setup-uv@v5
|
|
21
|
+
- name: Set up Python
|
|
22
|
+
uses: actions/setup-python@v5
|
|
23
|
+
with:
|
|
24
|
+
python-version: "3.11"
|
|
25
|
+
|
|
26
|
+
- name: Install dependencies
|
|
27
|
+
run: uv sync --group dev
|
|
28
|
+
|
|
29
|
+
- name: Generate documentation
|
|
30
|
+
run: |
|
|
31
|
+
set -e
|
|
32
|
+
uv run poe docs-generate
|
|
33
|
+
if [ ! -d "docs/generated" ]; then
|
|
34
|
+
echo "Error: Documentation generation failed - docs/generated directory not found"
|
|
35
|
+
exit 1
|
|
36
|
+
fi
|
|
37
|
+
|
|
38
|
+
- name: Upload artifact
|
|
39
|
+
uses: actions/upload-pages-artifact@v3
|
|
40
|
+
with:
|
|
41
|
+
# Upload generated documentation
|
|
42
|
+
path: "docs/generated"
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: Publish Docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
9
|
+
workflow_dispatch:
|
|
10
|
+
|
|
11
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
pages: write
|
|
15
|
+
id-token: write
|
|
16
|
+
|
|
17
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
18
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
19
|
+
concurrency:
|
|
20
|
+
group: "pages"
|
|
21
|
+
cancel-in-progress: false
|
|
22
|
+
|
|
23
|
+
jobs:
|
|
24
|
+
publish_docs:
|
|
25
|
+
runs-on: ubuntu-24.04
|
|
26
|
+
environment:
|
|
27
|
+
name: "github-pages"
|
|
28
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
29
|
+
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout code
|
|
32
|
+
uses: actions/checkout@v4
|
|
33
|
+
- name: Set up uv
|
|
34
|
+
uses: astral-sh/setup-uv@v5
|
|
35
|
+
- name: Set up Python
|
|
36
|
+
uses: actions/setup-python@v5
|
|
37
|
+
with:
|
|
38
|
+
python-version: "3.11"
|
|
39
|
+
- name: Setup Pages
|
|
40
|
+
uses: actions/configure-pages@v5
|
|
41
|
+
|
|
42
|
+
- name: Install dependencies
|
|
43
|
+
run: uv sync --group dev
|
|
44
|
+
|
|
45
|
+
- name: Generate documentation
|
|
46
|
+
run: |
|
|
47
|
+
uv run poe docs-generate
|
|
48
|
+
|
|
49
|
+
- name: Upload artifact
|
|
50
|
+
uses: actions/upload-pages-artifact@v3
|
|
51
|
+
with:
|
|
52
|
+
# Upload entire repository
|
|
53
|
+
path: "docs/generated"
|
|
54
|
+
|
|
55
|
+
- name: Deploy to GitHub Pages
|
|
56
|
+
id: deployment
|
|
57
|
+
uses: actions/deploy-pages@v4
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
name: Test Connection Retriever
|
|
2
|
+
|
|
3
|
+
permissions:
|
|
4
|
+
contents: read
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
inputs:
|
|
9
|
+
connection_id:
|
|
10
|
+
description: "Airbyte Cloud connection ID to test retrieval for"
|
|
11
|
+
required: true
|
|
12
|
+
type: string
|
|
13
|
+
|
|
14
|
+
jobs:
|
|
15
|
+
test-retriever:
|
|
16
|
+
name: Test Connection Retriever
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
env:
|
|
19
|
+
CI: "true"
|
|
20
|
+
steps:
|
|
21
|
+
- name: Checkout code
|
|
22
|
+
uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Install uv
|
|
25
|
+
uses: astral-sh/setup-uv@v5
|
|
26
|
+
with:
|
|
27
|
+
version: "latest"
|
|
28
|
+
|
|
29
|
+
- name: Set up Python
|
|
30
|
+
uses: actions/setup-python@v5
|
|
31
|
+
with:
|
|
32
|
+
python-version: "3.11"
|
|
33
|
+
|
|
34
|
+
- name: Install dependencies
|
|
35
|
+
run: uv sync --group dev
|
|
36
|
+
|
|
37
|
+
- name: Set up GCP credentials
|
|
38
|
+
env:
|
|
39
|
+
GCP_PROD_DB_ACCESS_CREDENTIALS: ${{ secrets.GCP_INTEGRATION_TESTER_CREDENTIALS }}
|
|
40
|
+
run: |
|
|
41
|
+
echo "$GCP_PROD_DB_ACCESS_CREDENTIALS" > /tmp/credentials.json
|
|
42
|
+
echo "GOOGLE_APPLICATION_CREDENTIALS=/tmp/credentials.json" >> $GITHUB_ENV
|
|
43
|
+
|
|
44
|
+
- name: Download Cloud SQL Proxy
|
|
45
|
+
run: |
|
|
46
|
+
curl -o cloud-sql-proxy https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy/v2.14.3/cloud-sql-proxy.linux.amd64
|
|
47
|
+
chmod +x cloud-sql-proxy
|
|
48
|
+
|
|
49
|
+
- name: Test Connection Retriever
|
|
50
|
+
env:
|
|
51
|
+
CONNECTION_ID: ${{ inputs.connection_id }}
|
|
52
|
+
run: |
|
|
53
|
+
# Start Cloud SQL Proxy in background
|
|
54
|
+
./cloud-sql-proxy prod-ab-cloud-proj:us-west3:prod-pgsql-replica --credentials-file /tmp/credentials.json &
|
|
55
|
+
proxy_pid=$!
|
|
56
|
+
|
|
57
|
+
# Wait for proxy to be ready
|
|
58
|
+
sleep 5
|
|
59
|
+
|
|
60
|
+
# Run the test
|
|
61
|
+
uv run python -c "
|
|
62
|
+
from airbyte_ops_mcp.live_tests.connection_secret_retriever import retrieve_unmasked_config
|
|
63
|
+
import os
|
|
64
|
+
|
|
65
|
+
connection_id = os.environ['CONNECTION_ID']
|
|
66
|
+
print(f'Testing retrieval for connection: {connection_id}')
|
|
67
|
+
|
|
68
|
+
config = retrieve_unmasked_config(
|
|
69
|
+
connection_id=connection_id,
|
|
70
|
+
retrieval_reason='CI test of connection-retriever integration'
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
# Verify we got a config (don't print it - contains secrets)
|
|
74
|
+
assert config is not None, 'Failed to retrieve config'
|
|
75
|
+
assert isinstance(config, dict), 'Config should be a dict'
|
|
76
|
+
print('Successfully retrieved unmasked config')
|
|
77
|
+
"
|
|
78
|
+
test_exit=$?
|
|
79
|
+
|
|
80
|
+
# Kill the proxy
|
|
81
|
+
kill $proxy_pid
|
|
82
|
+
wait $proxy_pid 2>/dev/null || true
|
|
83
|
+
|
|
84
|
+
exit $test_exit
|
|
@@ -32,3 +32,17 @@ First clone the repo, then use something like the following MCP config.
|
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
|
+
|
|
36
|
+
## Internal Secrets for Live Tests
|
|
37
|
+
|
|
38
|
+
The live tests feature can retrieve unmasked connection secrets from Airbyte Cloud's internal database. This requires:
|
|
39
|
+
|
|
40
|
+
- **GCP_PROD_DB_ACCESS_CREDENTIALS** - Access to prod Cloud SQL and Google Secret Manager for DB connection details
|
|
41
|
+
|
|
42
|
+
To test locally:
|
|
43
|
+
|
|
44
|
+
1. Set up GCP Application Default Credentials: `gcloud auth application-default login`
|
|
45
|
+
2. Ensure you have access to the `prod-ab-cloud-proj` project
|
|
46
|
+
3. Connect to Tailscale (required for private network access)
|
|
47
|
+
|
|
48
|
+
In CI, these secrets are available at the org level and a Cloud SQL Auth Proxy handles connectivity.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-internal-ops
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: MCP and API interfaces that let the agents do the admin work
|
|
5
5
|
Author-email: Aaron Steers <aj@airbyte.io>
|
|
6
6
|
Keywords: admin,airbyte,api,mcp
|
|
@@ -10,18 +10,20 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
-
|
|
14
|
-
Requires-
|
|
15
|
-
Requires-Dist: airbyte-cdk<7.0,>=6.0.0
|
|
13
|
+
Requires-Python: <3.13,>=3.11
|
|
14
|
+
Requires-Dist: airbyte-cdk<8.0,>=7.3.9
|
|
16
15
|
Requires-Dist: airbyte-protocol-models-pdv2>=0.13.0
|
|
17
|
-
Requires-Dist: airbyte>=0.
|
|
16
|
+
Requires-Dist: airbyte>=0.34.0
|
|
18
17
|
Requires-Dist: asyncer<1.0,>=0.0.4
|
|
19
18
|
Requires-Dist: click<9.0,>=8.1.3
|
|
19
|
+
Requires-Dist: cloud-sql-python-connector[pg8000]<2.0,>=1.7.0
|
|
20
20
|
Requires-Dist: cyclopts<5.0,>=4.0.0
|
|
21
21
|
Requires-Dist: docker<7.0,>=6.0
|
|
22
22
|
Requires-Dist: dpath<3.0,>=2.1.5
|
|
23
23
|
Requires-Dist: fastmcp<3.0,>=2.12.1
|
|
24
24
|
Requires-Dist: gitpython<4.0,>=3.1.29
|
|
25
|
+
Requires-Dist: google-cloud-logging<4.0,>=3.9.0
|
|
26
|
+
Requires-Dist: google-cloud-secret-manager<3.0,>=2.18.0
|
|
25
27
|
Requires-Dist: jinja2<4.0,>=3.1.2
|
|
26
28
|
Requires-Dist: pydantic>=2.0.0
|
|
27
29
|
Requires-Dist: python-dotenv<2.0,>=1.0.0
|
|
@@ -30,6 +32,7 @@ Requires-Dist: requests<3.0,>=2.31.0
|
|
|
30
32
|
Requires-Dist: rich<14.0,>=13.0.0
|
|
31
33
|
Requires-Dist: semver<4.0,>=3.0.1
|
|
32
34
|
Requires-Dist: slack-sdk<4.0,>=3.36.0
|
|
35
|
+
Requires-Dist: sqlalchemy<3.0,>=2.0.0
|
|
33
36
|
Requires-Dist: toml<1.0,>=0.10.2
|
|
34
37
|
Description-Content-Type: text/markdown
|
|
35
38
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
generated
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
|
|
3
|
+
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
|
|
4
|
+
"""Generate docs for all public modules in airbyte-ops-mcp and save them to docs/generated.
|
|
5
|
+
|
|
6
|
+
Usage:
|
|
7
|
+
uv run python docs/generate.py
|
|
8
|
+
|
|
9
|
+
Or with Poe-the-Poet:
|
|
10
|
+
poe docs-generate
|
|
11
|
+
poe docs-preview
|
|
12
|
+
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import pathlib
|
|
18
|
+
import shutil
|
|
19
|
+
|
|
20
|
+
import pdoc
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def run() -> None:
|
|
24
|
+
"""Generate docs for all public modules in airbyte-ops-mcp and save them to docs/generated."""
|
|
25
|
+
public_modules = ["airbyte_ops_mcp"]
|
|
26
|
+
|
|
27
|
+
# recursively delete the docs/generated folder if it exists
|
|
28
|
+
if pathlib.Path("docs/generated").exists():
|
|
29
|
+
shutil.rmtree("docs/generated")
|
|
30
|
+
|
|
31
|
+
pdoc.render.configure(
|
|
32
|
+
template_directory=pathlib.Path("docs/templates"),
|
|
33
|
+
show_source=True,
|
|
34
|
+
search=True,
|
|
35
|
+
logo="https://docs.airbyte.com/img/logo-dark.png",
|
|
36
|
+
favicon="https://docs.airbyte.com/img/favicon.png",
|
|
37
|
+
mermaid=True,
|
|
38
|
+
docformat="google",
|
|
39
|
+
)
|
|
40
|
+
pdoc.pdoc(
|
|
41
|
+
*public_modules,
|
|
42
|
+
output_directory=pathlib.Path("docs/generated"),
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
if __name__ == "__main__":
|
|
47
|
+
run()
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Airbyte Ops MCP Documentation - Custom Styling
|
|
3
|
+
*
|
|
4
|
+
* This file applies Airbyte branding and design elements to the API documentation.
|
|
5
|
+
*
|
|
6
|
+
* METHODOLOGY:
|
|
7
|
+
* - Colors and design tokens are sourced from the main Airbyte documentation site
|
|
8
|
+
* - Primary source: https://github.com/airbytehq/airbyte/blob/main/docusaurus/src/css/custom.css
|
|
9
|
+
* - The Airbyte design system uses a purple primary color (#615eff) and Inter font family
|
|
10
|
+
* - This CSS overrides pdoc's default theme variables to match Airbyte branding
|
|
11
|
+
*
|
|
12
|
+
* UPDATING STYLES:
|
|
13
|
+
* When Airbyte brand styles are updated, check the following upstream sources:
|
|
14
|
+
* 1. Main docs CSS: https://github.com/airbytehq/airbyte/blob/main/docusaurus/src/css/custom.css
|
|
15
|
+
* 2. Docusaurus config: https://github.com/airbytehq/airbyte/blob/main/docusaurus/docusaurus.config.js
|
|
16
|
+
* 3. Live site: https://docs.airbyte.com (inspect styles in browser dev tools)
|
|
17
|
+
*
|
|
18
|
+
* Key variables to sync:
|
|
19
|
+
* - --ifm-color-primary and variants (primary brand color)
|
|
20
|
+
* - --ifm-font-family-base (typography)
|
|
21
|
+
* - Color palette variables (grey, green, blue scales)
|
|
22
|
+
*
|
|
23
|
+
* PDOC INTEGRATION:
|
|
24
|
+
* pdoc uses specific CSS variables that we override here:
|
|
25
|
+
* - --link: Link color (set to Airbyte primary)
|
|
26
|
+
* - --link-hover: Link hover color (set to Airbyte primary-dark)
|
|
27
|
+
* - --code: Code background color
|
|
28
|
+
* - --accent: Accent/highlight color
|
|
29
|
+
* - --text: Main text color
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
|
|
33
|
+
|
|
34
|
+
:root {
|
|
35
|
+
/* Airbyte Primary Colors - from docusaurus/src/css/custom.css */
|
|
36
|
+
--airbyte-primary: #615eff;
|
|
37
|
+
--airbyte-primary-dark: #3f3bff;
|
|
38
|
+
--airbyte-primary-darker: #2e2aff;
|
|
39
|
+
--airbyte-primary-darkest: #0500f4;
|
|
40
|
+
--airbyte-primary-light: #8381ff;
|
|
41
|
+
--airbyte-primary-lighter: #9492ff;
|
|
42
|
+
--airbyte-primary-lightest: #c8c7ff;
|
|
43
|
+
|
|
44
|
+
/* Airbyte Color Palette - from docusaurus/src/css/custom.css */
|
|
45
|
+
--color-white: hsl(0, 0%, 100%);
|
|
46
|
+
--color-grey-40: hsl(240, 25%, 98%);
|
|
47
|
+
--color-grey-100: hsl(240, 12%, 92%);
|
|
48
|
+
--color-grey-400: hsl(239, 10%, 59%);
|
|
49
|
+
--color-grey-500: hsl(240, 10%, 49%);
|
|
50
|
+
--color-grey-900: hsl(240, 19%, 18%);
|
|
51
|
+
--color-green-40: hsl(185, 76%, 97%);
|
|
52
|
+
--color-green-50: hsl(184, 67%, 92%);
|
|
53
|
+
--color-green-600: hsl(185, 100%, 35%);
|
|
54
|
+
--color-green-800: hsl(184, 100%, 26%);
|
|
55
|
+
--color-blue-30: hsl(240, 100%, 98%);
|
|
56
|
+
--color-dark-blue-40: hsl(230, 23%, 95%);
|
|
57
|
+
--color-dark-blue-700: hsl(236, 43%, 31%);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/* Override pdoc's default theme variables - must be in .pdoc selector for specificity */
|
|
61
|
+
.pdoc {
|
|
62
|
+
--link: #615eff;
|
|
63
|
+
--link-hover: #3f3bff;
|
|
64
|
+
--code: hsl(240, 100%, 98%);
|
|
65
|
+
--accent: hsl(240, 25%, 98%);
|
|
66
|
+
--text: hsl(240, 19%, 18%);
|
|
67
|
+
--name: #615eff;
|
|
68
|
+
--def: #3f3bff;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Dark mode colors - from docusaurus/src/css/custom.css */
|
|
72
|
+
@media (prefers-color-scheme: dark) {
|
|
73
|
+
:root {
|
|
74
|
+
--airbyte-primary: #7976ff;
|
|
75
|
+
--airbyte-primary-dark: #3f3bff;
|
|
76
|
+
--airbyte-primary-darker: #2e2aff;
|
|
77
|
+
--airbyte-primary-light: #8381ff;
|
|
78
|
+
--airbyte-primary-lighter: #9492ff;
|
|
79
|
+
--airbyte-primary-lightest: #c8c7ff;
|
|
80
|
+
|
|
81
|
+
--color-grey-40: hsl(240, 14%, 14%);
|
|
82
|
+
--color-grey-100: hsl(240, 15%, 15%);
|
|
83
|
+
--color-grey-400: hsl(240, 13%, 72%);
|
|
84
|
+
--color-grey-500: hsl(240, 10%, 70%);
|
|
85
|
+
--color-grey-900: hsl(240, 10%, 90%);
|
|
86
|
+
--color-green-50: hsl(184, 100%, 12%);
|
|
87
|
+
--color-blue-30: hsl(252, 25%, 18%);
|
|
88
|
+
--color-dark-blue-700: hsl(240, 100%, 98%);
|
|
89
|
+
--color-white: hsl(0, 0%, 16%);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Override pdoc's default theme variables for dark mode - must be in .pdoc selector */
|
|
93
|
+
.pdoc {
|
|
94
|
+
--link: #9492ff;
|
|
95
|
+
--link-hover: #c8c7ff;
|
|
96
|
+
--code: hsl(252, 25%, 18%);
|
|
97
|
+
--accent: hsl(240, 14%, 14%);
|
|
98
|
+
--text: hsl(240, 10%, 90%);
|
|
99
|
+
--name: #9492ff;
|
|
100
|
+
--def: #8381ff;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Apply Inter font family - Airbyte's brand font */
|
|
105
|
+
body {
|
|
106
|
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* Logo styling - swap to light logo in dark mode for better visibility */
|
|
110
|
+
@media (prefers-color-scheme: dark) {
|
|
111
|
+
.logo {
|
|
112
|
+
/* Replace the dark logo with the light logo in dark mode */
|
|
113
|
+
content: url("https://docs.airbyte.com/img/logo-light.png");
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* Enhanced heading styles */
|
|
118
|
+
h1, h2, h3, h4, h5, h6 {
|
|
119
|
+
font-weight: 600;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* Enhanced code block styling */
|
|
123
|
+
pre code {
|
|
124
|
+
border-radius: 8px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
/* Style tables with Airbyte theme */
|
|
128
|
+
table {
|
|
129
|
+
border-spacing: 0;
|
|
130
|
+
border-collapse: separate;
|
|
131
|
+
border-radius: 10px;
|
|
132
|
+
overflow: hidden;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
table th {
|
|
136
|
+
background-color: var(--airbyte-primary);
|
|
137
|
+
color: var(--color-white);
|
|
138
|
+
font-weight: 600;
|
|
139
|
+
padding: 12px;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
table th:first-child {
|
|
143
|
+
border-top-left-radius: 10px;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
table th:last-child {
|
|
147
|
+
border-top-right-radius: 10px;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
table td {
|
|
151
|
+
padding: 10px 12px;
|
|
152
|
+
border-bottom: 1px solid var(--color-grey-100);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
table tr:hover {
|
|
156
|
+
background-color: var(--color-grey-40);
|
|
157
|
+
transition: background-color 0.2s ease;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
table tr:last-child td:first-child {
|
|
161
|
+
border-bottom-left-radius: 10px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
table tr:last-child td:last-child {
|
|
165
|
+
border-bottom-right-radius: 10px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/* Style navigation with Airbyte colors - use !important to override pdoc's default nav styles */
|
|
169
|
+
nav a {
|
|
170
|
+
color: var(--link) !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
nav a:hover {
|
|
174
|
+
color: var(--link-hover) !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/* Style badges and labels */
|
|
178
|
+
.badge {
|
|
179
|
+
background-color: var(--color-green-40);
|
|
180
|
+
border: 1px solid var(--color-green-800);
|
|
181
|
+
color: var(--color-green-800);
|
|
182
|
+
font-weight: 500;
|
|
183
|
+
border-radius: 4px;
|
|
184
|
+
padding: 2px 8px;
|
|
185
|
+
font-size: 0.85em;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/* Add rounded corners to images */
|
|
189
|
+
img {
|
|
190
|
+
max-width: 100%;
|
|
191
|
+
border-radius: 10px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/* Style the header/logo area */
|
|
195
|
+
header {
|
|
196
|
+
border-bottom: 2px solid var(--airbyte-primary-lightest);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/* Style buttons and interactive elements */
|
|
200
|
+
button, .button {
|
|
201
|
+
background-color: var(--airbyte-primary);
|
|
202
|
+
color: var(--color-white);
|
|
203
|
+
border: none;
|
|
204
|
+
border-radius: 6px;
|
|
205
|
+
padding: 8px 16px;
|
|
206
|
+
font-weight: 500;
|
|
207
|
+
cursor: pointer;
|
|
208
|
+
transition: background-color 0.2s ease;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
button:hover, .button:hover {
|
|
212
|
+
background-color: var(--airbyte-primary-dark);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/* Improve code syntax highlighting */
|
|
216
|
+
.pdoc-code {
|
|
217
|
+
border-radius: 8px;
|
|
218
|
+
border: 1px solid var(--color-grey-100);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/* Style docstring sections */
|
|
222
|
+
.docstring {
|
|
223
|
+
line-height: 1.6;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* Add subtle shadow to main content area */
|
|
227
|
+
main {
|
|
228
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/* Style search box if present */
|
|
232
|
+
input[type="search"], input[type="text"] {
|
|
233
|
+
border: 1px solid var(--color-grey-100);
|
|
234
|
+
border-radius: 6px;
|
|
235
|
+
padding: 8px 12px;
|
|
236
|
+
font-family: inherit;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
input[type="search"]:focus, input[type="text"]:focus {
|
|
240
|
+
outline: none;
|
|
241
|
+
border-color: var(--airbyte-primary);
|
|
242
|
+
box-shadow: 0 0 0 3px var(--airbyte-primary-lightest);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* Improve spacing and readability */
|
|
246
|
+
.pdoc-module-list {
|
|
247
|
+
line-height: 1.8;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
/* Style admonitions/notes */
|
|
251
|
+
.admonition {
|
|
252
|
+
border-left: 4px solid var(--airbyte-primary);
|
|
253
|
+
background-color: var(--color-blue-30);
|
|
254
|
+
padding: 12px 16px;
|
|
255
|
+
border-radius: 4px;
|
|
256
|
+
margin: 16px 0;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/* Responsive improvements */
|
|
260
|
+
@media (max-width: 768px) {
|
|
261
|
+
body {
|
|
262
|
+
font-size: 14px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
table {
|
|
266
|
+
font-size: 0.9em;
|
|
267
|
+
}
|
|
268
|
+
}
|