We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0640c commit 2ff1cd9Copy full SHA for 2ff1cd9
airbyte_cdk/destinations/destination.py
@@ -10,16 +10,18 @@
10
from typing import Any, Iterable, List, Mapping
11
12
import orjson
13
+from airbyte_protocol_dataclasses.models import (
14
+ AirbyteMessage,
15
+ ConfiguredAirbyteCatalog,
16
+ DestinationCatalog,
17
+ Type,
18
+)
19
20
from airbyte_cdk.connector import Connector
21
from airbyte_cdk.exception_handler import init_uncaught_exception_handler
22
from airbyte_cdk.models import (
- AirbyteMessage,
23
AirbyteMessageSerializer,
- ConfiguredAirbyteCatalog,
24
ConfiguredAirbyteCatalogSerializer,
- DestinationCatalog,
- Type,
25
)
26
from airbyte_cdk.sources.utils.schema_helpers import check_config_against_spec_or_exit
27
from airbyte_cdk.utils.traced_exception import AirbyteTracedException
0 commit comments