airbyte-agent-gong 0.19.29__tar.gz → 0.19.55__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.

Potentially problematic release.


This version of airbyte-agent-gong might be problematic. Click here for more details.

Files changed (63) hide show
  1. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/CHANGELOG.md +130 -0
  2. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/PKG-INFO +17 -15
  3. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/README.md +7 -4
  4. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/REFERENCE.md +452 -30
  5. airbyte_agent_gong-0.19.55/airbyte_agent_gong/__init__.py +307 -0
  6. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/auth_strategies.py +2 -5
  7. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/auth_template.py +1 -1
  8. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/cloud_utils/client.py +26 -26
  9. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/connector_model_loader.py +14 -6
  10. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/constants.py +1 -1
  11. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
  12. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/executor/local_executor.py +238 -38
  13. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/extensions.py +43 -5
  14. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/response.py +2 -0
  15. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http_client.py +13 -6
  16. airbyte_agent_gong-0.19.55/airbyte_agent_gong/_vendored/connector_sdk/introspection.py +262 -0
  17. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/logging/logger.py +19 -10
  18. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/logging/types.py +11 -10
  19. airbyte_agent_gong-0.19.55/airbyte_agent_gong/_vendored/connector_sdk/observability/config.py +179 -0
  20. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/observability/models.py +6 -6
  21. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/observability/session.py +41 -32
  22. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/performance/metrics.py +3 -3
  23. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/base.py +21 -18
  24. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/components.py +59 -58
  25. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/connector.py +22 -33
  26. airbyte_agent_gong-0.19.55/airbyte_agent_gong/_vendored/connector_sdk/schema/extensions.py +230 -0
  27. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/operations.py +32 -32
  28. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/security.py +44 -34
  29. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/secrets.py +2 -2
  30. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/telemetry/events.py +9 -8
  31. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/telemetry/tracker.py +9 -5
  32. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/types.py +7 -3
  33. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/validation.py +12 -6
  34. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/connector.py +500 -41
  35. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/connector_model.py +32 -4
  36. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/models.py +270 -63
  37. airbyte_agent_gong-0.19.55/airbyte_agent_gong/types.py +1426 -0
  38. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/pyproject.toml +11 -12
  39. airbyte_agent_gong-0.19.29/airbyte_agent_gong/__init__.py +0 -132
  40. airbyte_agent_gong-0.19.29/airbyte_agent_gong/_vendored/connector_sdk/schema/extensions.py +0 -109
  41. airbyte_agent_gong-0.19.29/airbyte_agent_gong/types.py +0 -205
  42. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/.gitignore +0 -0
  43. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/__init__.py +0 -0
  44. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/__init__.py +0 -0
  45. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
  46. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/exceptions.py +0 -0
  47. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/executor/__init__.py +0 -0
  48. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/executor/models.py +0 -0
  49. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/__init__.py +0 -0
  50. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
  51. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
  52. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/config.py +0 -0
  53. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/exceptions.py +0 -0
  54. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/http/protocols.py +0 -0
  55. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/logging/__init__.py +0 -0
  56. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/observability/__init__.py +0 -0
  57. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/observability/redactor.py +0 -0
  58. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/performance/__init__.py +0 -0
  59. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/performance/instrumentation.py +0 -0
  60. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/schema/__init__.py +0 -0
  61. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/telemetry/__init__.py +0 -0
  62. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/telemetry/config.py +0 -0
  63. {airbyte_agent_gong-0.19.29 → airbyte_agent_gong-0.19.55}/airbyte_agent_gong/_vendored/connector_sdk/utils.py +0 -0
@@ -1,5 +1,135 @@
1
1
  # Gong changelog
2
2
 
3
+ ## [0.19.55] - 2026-01-19
4
+ - Updated connector definition (YAML version 0.1.10)
5
+ - Source commit: 529cebb7
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.19.54] - 2026-01-16
9
+ - Updated connector definition (YAML version 0.1.10)
10
+ - Source commit: c82e3439
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.19.53] - 2026-01-16
14
+ - Updated connector definition (YAML version 0.1.9)
15
+ - Source commit: a50c8f71
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.19.52] - 2026-01-16
19
+ - Updated connector definition (YAML version 0.1.9)
20
+ - Source commit: 49673b7b
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.19.51] - 2026-01-16
24
+ - Updated connector definition (YAML version 0.1.9)
25
+ - Source commit: ca5acdda
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.19.50] - 2026-01-16
29
+ - Updated connector definition (YAML version 0.1.9)
30
+ - Source commit: 3d109674
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.19.49] - 2026-01-15
34
+ - Updated connector definition (YAML version 0.1.8)
35
+ - Source commit: fa9a3b02
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.19.48] - 2026-01-15
39
+ - Updated connector definition (YAML version 0.1.8)
40
+ - Source commit: 61a2e822
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.19.47] - 2026-01-15
44
+ - Updated connector definition (YAML version 0.1.8)
45
+ - Source commit: 69b2cf0a
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.19.46] - 2026-01-15
49
+ - Updated connector definition (YAML version 0.1.7)
50
+ - Source commit: 35211193
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.19.45] - 2026-01-15
54
+ - Updated connector definition (YAML version 0.1.7)
55
+ - Source commit: 20b3afd9
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.19.44] - 2026-01-15
59
+ - Updated connector definition (YAML version 0.1.7)
60
+ - Source commit: b7138b41
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.19.43] - 2026-01-15
64
+ - Updated connector definition (YAML version 0.1.7)
65
+ - Source commit: 10173eb1
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.19.42] - 2026-01-15
69
+ - Updated connector definition (YAML version 0.1.7)
70
+ - Source commit: a23d9e7a
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.19.41] - 2026-01-14
74
+ - Updated connector definition (YAML version 0.1.7)
75
+ - Source commit: 7ef09816
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.19.40] - 2026-01-14
79
+ - Updated connector definition (YAML version 0.1.7)
80
+ - Source commit: e6285db5
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.19.39] - 2026-01-14
84
+ - Updated connector definition (YAML version 0.1.7)
85
+ - Source commit: 31de238d
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.19.38] - 2026-01-13
89
+ - Updated connector definition (YAML version 0.1.7)
90
+ - Source commit: e80a226e
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.19.37] - 2026-01-13
94
+ - Updated connector definition (YAML version 0.1.7)
95
+ - Source commit: 78b1be67
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.19.36] - 2026-01-13
99
+ - Updated connector definition (YAML version 0.1.7)
100
+ - Source commit: 81dd03fc
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.19.35] - 2026-01-11
104
+ - Updated connector definition (YAML version 0.1.6)
105
+ - Source commit: e519b73d
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.19.34] - 2026-01-09
109
+ - Updated connector definition (YAML version 0.1.6)
110
+ - Source commit: 3c7bfdfd
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.19.33] - 2026-01-09
114
+ - Updated connector definition (YAML version 0.1.6)
115
+ - Source commit: 3bcb33e8
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.19.32] - 2026-01-09
119
+ - Updated connector definition (YAML version 0.1.6)
120
+ - Source commit: d1865e58
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.19.31] - 2026-01-09
124
+ - Updated connector definition (YAML version 0.1.5)
125
+ - Source commit: da9b741b
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.19.30] - 2026-01-07
129
+ - Updated connector definition (YAML version 0.1.5)
130
+ - Source commit: d023e05f
131
+ - SDK version: 0.1.0
132
+
3
133
  ## [0.19.29] - 2026-01-06
4
134
  - Updated connector definition (YAML version 0.1.5)
5
135
  - Source commit: 0580c727
@@ -1,25 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-gong
3
- Version: 0.19.29
3
+ Version: 0.19.55
4
4
  Summary: Airbyte Gong Connector for AI platforms
5
- Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
- Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
- Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
- Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
+ Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
9
9
  Author-email: Airbyte <contact@airbyte.io>
10
10
  License: Elastic-2.0
11
- Keywords: airbyte,api,connector,gong
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,gong,llm,mcp
12
12
  Classifier: Development Status :: 3 - Alpha
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
15
16
  Classifier: Programming Language :: Python :: 3
16
- Classifier: Programming Language :: Python :: 3.9
17
- Classifier: Programming Language :: Python :: 3.10
18
- Classifier: Programming Language :: Python :: 3.11
19
- Classifier: Programming Language :: Python :: 3.12
20
17
  Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
21
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Requires-Python: >=3.9
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
23
22
  Requires-Dist: httpx>=0.24.0
24
23
  Requires-Dist: jinja2>=3.0.0
25
24
  Requires-Dist: jsonpath-ng>=1.6.1
@@ -82,7 +81,10 @@ from airbyte_agent_gong.models import GongOauth20AuthenticationAuthConfig
82
81
 
83
82
  connector = GongConnector(
84
83
  auth_config=GongOauth20AuthenticationAuthConfig(
85
- access_token="..."
84
+ access_token="...",
85
+ refresh_token="...",
86
+ client_id="...",
87
+ client_secret="..."
86
88
  )
87
89
  )
88
90
  result = await connector.users.list()
@@ -134,6 +136,6 @@ For the service's official API docs, see the [Gong API reference](https://gong.a
134
136
 
135
137
  ## Version information
136
138
 
137
- - **Package version:** 0.19.29
138
- - **Connector version:** 0.1.5
139
- - **Generated with Connector SDK commit SHA:** 0580c7278394ff52ee3bec5d5192905ac3b15878
139
+ - **Package version:** 0.19.55
140
+ - **Connector version:** 0.1.10
141
+ - **Generated with Connector SDK commit SHA:** c46670b9e4ca5238c0372e143b44088a0d1a68ee
@@ -48,7 +48,10 @@ from airbyte_agent_gong.models import GongOauth20AuthenticationAuthConfig
48
48
 
49
49
  connector = GongConnector(
50
50
  auth_config=GongOauth20AuthenticationAuthConfig(
51
- access_token="..."
51
+ access_token="...",
52
+ refresh_token="...",
53
+ client_id="...",
54
+ client_secret="..."
52
55
  )
53
56
  )
54
57
  result = await connector.users.list()
@@ -100,6 +103,6 @@ For the service's official API docs, see the [Gong API reference](https://gong.a
100
103
 
101
104
  ## Version information
102
105
 
103
- - **Package version:** 0.19.29
104
- - **Connector version:** 0.1.5
105
- - **Generated with Connector SDK commit SHA:** 0580c7278394ff52ee3bec5d5192905ac3b15878
106
+ - **Package version:** 0.19.55
107
+ - **Connector version:** 0.1.10
108
+ - **Generated with Connector SDK commit SHA:** c46670b9e4ca5238c0372e143b44088a0d1a68ee