airbyte-source-convex 0.4.22__tar.gz → 0.4.24__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-convex
3
- Version: 0.4.22
3
+ Version: 0.4.24
4
4
  Summary: Source implementation for Convex.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.4.22"
8
+ version = "0.4.24"
9
9
  name = "airbyte-source-convex"
10
10
  description = "Source implementation for Convex."
11
11
  authors = [
@@ -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
  {