airbyte-source-convex 0.4.23__tar.gz → 0.4.24__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/PKG-INFO +1 -1
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/pyproject.toml +1 -1
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/source_convex/source.py +2 -0
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/README.md +0 -0
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/source_convex/__init__.py +0 -0
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/source_convex/run.py +0 -0
- {airbyte_source_convex-0.4.23 → airbyte_source_convex-0.4.24}/source_convex/spec.yaml +0 -0
@@ -8,12 +8,14 @@ from json import JSONDecodeError
|
|
8
8
|
from typing import Any, Dict, Iterable, Iterator, List, Mapping, MutableMapping, Optional, Tuple, TypedDict, cast
|
9
9
|
|
10
10
|
import requests
|
11
|
+
|
11
12
|
from airbyte_cdk.models import SyncMode
|
12
13
|
from airbyte_cdk.sources import AbstractSource
|
13
14
|
from airbyte_cdk.sources.streams import IncrementalMixin, Stream
|
14
15
|
from airbyte_cdk.sources.streams.http import HttpStream
|
15
16
|
from airbyte_cdk.sources.streams.http.requests_native_auth.token import TokenAuthenticator
|
16
17
|
|
18
|
+
|
17
19
|
ConvexConfig = TypedDict(
|
18
20
|
"ConvexConfig",
|
19
21
|
{
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|