airbyte-source-github 1.7.3__py3-none-any.whl → 1.7.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-github
3
- Version: 1.7.3
3
+ Version: 1.7.4
4
4
  Summary: Source implementation for GitHub.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -52,11 +52,11 @@ source_github/schemas/users.json,sha256=by1CEx3MW740S5F54KZfUDc2N1_UZ98Bb3fWlgCt
52
52
  source_github/schemas/workflow_jobs.json,sha256=Kk3N3FcCYBqOdR7FYvz2nAAFtLZBuVfR8Lxg-ORD39U,3934
53
53
  source_github/schemas/workflow_runs.json,sha256=XDmIsjtzka-ItEonImD3ZATZjxRNkbFo5-MPTtZDARA,19453
54
54
  source_github/schemas/workflows.json,sha256=gSNw8WZaVKbX4AL97PbjZHzvxcOltXqv9Ao1RNQOFXM,1470
55
- source_github/source.py,sha256=jOGHJLL6ys4NRAjGs-Lw1RJxK25NxA5XS8n-uH2Gico,13879
55
+ source_github/source.py,sha256=s0boSIeMc6PgW50ivX7022a_V5ZBI9uMQ25w00war2s,13895
56
56
  source_github/spec.json,sha256=eOOBUWU0X2cRPM8ik07R0v_Y_rss1PfcutD60DJpNb4,7073
57
57
  source_github/streams.py,sha256=vcP2P0vCvShaa3z8M9dnmbY6awKR8vAIw3XgR8PlZtk,77006
58
58
  source_github/utils.py,sha256=DfAHFjsF8hzDXeSCR6qtfs7W_av6o2BkkEVhtHpWbis,5462
59
- airbyte_source_github-1.7.3.dist-info/METADATA,sha256=AxJHALSYSLNqCQfzyytx3NMPERZs59qNfLKOwHWE01E,5240
60
- airbyte_source_github-1.7.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
61
- airbyte_source_github-1.7.3.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
62
- airbyte_source_github-1.7.3.dist-info/RECORD,,
59
+ airbyte_source_github-1.7.4.dist-info/METADATA,sha256=NGogPzehjURdkHEym3G_Vzj5Aiyx0buuw-5i6-2cGNs,5240
60
+ airbyte_source_github-1.7.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
61
+ airbyte_source_github-1.7.4.dist-info/entry_points.txt,sha256=gYhqVrTAZvMwuYByg0b_-o115yUFLLcfNxMrLZmiW9k,55
62
+ airbyte_source_github-1.7.4.dist-info/RECORD,,
source_github/source.py CHANGED
@@ -10,7 +10,7 @@ from airbyte_cdk import AirbyteLogger
10
10
  from airbyte_cdk.models import FailureType, SyncMode
11
11
  from airbyte_cdk.sources import AbstractSource
12
12
  from airbyte_cdk.sources.streams import Stream
13
- from airbyte_cdk.sources.streams.http.auth import MultipleTokenAuthenticator
13
+ from airbyte_cdk.sources.streams.http.requests_native_auth import MultipleTokenAuthenticator
14
14
  from airbyte_cdk.utils.traced_exception import AirbyteTracedException
15
15
  from source_github.utils import MultipleTokenAuthenticatorWithRateLimiter
16
16