airbyte-agent-gong 0.19.28__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.
Files changed (58) hide show
  1. airbyte_agent_gong-0.19.28/.gitignore +29 -0
  2. airbyte_agent_gong-0.19.28/CHANGELOG.md +236 -0
  3. airbyte_agent_gong-0.19.28/PKG-INFO +139 -0
  4. airbyte_agent_gong-0.19.28/README.md +105 -0
  5. airbyte_agent_gong-0.19.28/REFERENCE.md +1255 -0
  6. airbyte_agent_gong-0.19.28/airbyte_agent_gong/__init__.py +132 -0
  7. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/__init__.py +1 -0
  8. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/auth_strategies.py +1123 -0
  10. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/connector_model_loader.py +957 -0
  14. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  18. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/executor/local_executor.py +1533 -0
  19. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/extensions.py +655 -0
  21. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http/response.py +102 -0
  28. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/logging/__init__.py +11 -0
  30. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/logging/logger.py +264 -0
  31. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/logging/types.py +92 -0
  32. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/observability/__init__.py +11 -0
  33. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/observability/models.py +19 -0
  34. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/observability/redactor.py +81 -0
  35. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/observability/session.py +94 -0
  36. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/performance/__init__.py +6 -0
  37. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  38. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/performance/metrics.py +93 -0
  39. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/__init__.py +75 -0
  40. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/base.py +161 -0
  41. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/components.py +238 -0
  42. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/connector.py +131 -0
  43. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/extensions.py +109 -0
  44. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/operations.py +146 -0
  45. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/schema/security.py +213 -0
  46. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/secrets.py +182 -0
  47. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  48. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/telemetry/config.py +32 -0
  49. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/telemetry/events.py +58 -0
  50. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  51. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/types.py +241 -0
  52. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/utils.py +60 -0
  53. airbyte_agent_gong-0.19.28/airbyte_agent_gong/_vendored/connector_sdk/validation.py +822 -0
  54. airbyte_agent_gong-0.19.28/airbyte_agent_gong/connector.py +1195 -0
  55. airbyte_agent_gong-0.19.28/airbyte_agent_gong/connector_model.py +2788 -0
  56. airbyte_agent_gong-0.19.28/airbyte_agent_gong/models.py +806 -0
  57. airbyte_agent_gong-0.19.28/airbyte_agent_gong/types.py +205 -0
  58. airbyte_agent_gong-0.19.28/pyproject.toml +51 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+
10
+ # Testing
11
+ .pytest_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+
24
+ # OS
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ .env
29
+ configured_connectors.yaml
@@ -0,0 +1,236 @@
1
+ # Gong changelog
2
+
3
+ ## [0.19.28] - 2026-01-06
4
+ - Updated connector definition (YAML version 0.1.5)
5
+ - Source commit: e0e2f989
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.19.27] - 2026-01-05
9
+ - Updated connector definition (YAML version 0.1.5)
10
+ - Source commit: 3e274293
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.19.26] - 2025-12-19
14
+ - Updated connector definition (YAML version 0.1.5)
15
+ - Source commit: 12f6b994
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.19.25] - 2025-12-19
19
+ - Updated connector definition (YAML version 0.1.5)
20
+ - Source commit: 5d11bfdf
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.19.24] - 2025-12-19
24
+ - Updated connector definition (YAML version 0.1.5)
25
+ - Source commit: e996e848
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.19.23] - 2025-12-18
29
+ - Updated connector definition (YAML version 0.1.5)
30
+ - Source commit: f7c55d3e
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.19.22] - 2025-12-17
34
+ - Updated connector definition (YAML version 0.1.5)
35
+ - Source commit: af456521
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.19.21] - 2025-12-17
39
+ - Updated connector definition (YAML version 0.1.5)
40
+ - Source commit: 6a6c981e
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.19.20] - 2025-12-17
44
+ - Updated connector definition (YAML version 0.1.5)
45
+ - Source commit: 4fe5029b
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.19.19] - 2025-12-15
49
+ - Updated connector definition (YAML version 0.1.3)
50
+ - Source commit: c4c39c27
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.19.18] - 2025-12-15
54
+ - Updated connector definition (YAML version 0.1.3)
55
+ - Source commit: 85f4e6b0
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.19.17] - 2025-12-15
59
+ - Updated connector definition (YAML version 0.1.3)
60
+ - Source commit: 0bfa6500
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.19.16] - 2025-12-15
64
+ - Updated connector definition (YAML version 0.1.3)
65
+ - Source commit: ea5a02a3
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.19.15] - 2025-12-15
69
+ - Updated connector definition (YAML version 0.1.3)
70
+ - Source commit: f13dee0a
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.19.14] - 2025-12-15
74
+ - Updated connector definition (YAML version 0.1.3)
75
+ - Source commit: d79da1e7
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.19.13] - 2025-12-15
79
+ - Updated connector definition (YAML version 0.1.3)
80
+ - Source commit: 06e7d5c6
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.19.12] - 2025-12-13
84
+ - Updated connector definition (YAML version 0.1.3)
85
+ - Source commit: 1ab72bd8
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.19.11] - 2025-12-12
89
+ - Updated connector definition (YAML version 0.1.3)
90
+ - Source commit: dc79dc8b
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.19.10] - 2025-12-12
94
+ - Updated connector definition (YAML version 0.1.3)
95
+ - Source commit: 87a2243c
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.19.9] - 2025-12-12
99
+ - Updated connector definition (YAML version 0.1.2)
100
+ - Source commit: 9f7f8a98
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.19.8] - 2025-12-12
104
+ - Updated connector definition (YAML version 0.1.2)
105
+ - Source commit: 751920d7
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.19.7] - 2025-12-11
109
+ - Updated connector definition (YAML version 0.1.1)
110
+ - Source commit: 38493f4d
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.19.6] - 2025-12-11
114
+ - Updated connector definition (YAML version 0.1.0)
115
+ - Source commit: 8c06aa10
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.19.5] - 2025-12-11
119
+ - Updated connector definition (YAML version 0.1.0)
120
+ - Source commit: 11427ac3
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.19.4] - 2025-12-11
124
+ - Updated connector definition (YAML version 0.1.0)
125
+ - Source commit: bdd5df6d
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.19.3] - 2025-12-11
129
+ - Updated connector definition (YAML version 0.1.0)
130
+ - Source commit: f2497f71
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.19.2] - 2025-12-11
134
+ - Updated connector definition (YAML version 0.1.0)
135
+ - Source commit: 7d738be5
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.19.1] - 2025-12-10
139
+ - Updated connector definition (YAML version 0.1.0)
140
+ - Source commit: 76636830
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.19.0] - 2025-12-08
144
+ - Updated connector definition (YAML version 0.1.0)
145
+ - Source commit: f2ad5029
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.18.0] - 2025-12-08
149
+ - Updated connector definition (YAML version 0.1.0)
150
+ - Source commit: 139b0b0d
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.17.0] - 2025-12-05
154
+ - Updated connector definition (YAML version 0.1.0)
155
+ - Source commit: e96bed3d
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.16.0] - 2025-12-05
159
+ - Updated connector definition (YAML version 0.1.0)
160
+ - Source commit: ed697b90
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.15.0] - 2025-12-05
164
+ - Updated connector definition (YAML version 1.0.0)
165
+ - Source commit: 20618410
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.14.0] - 2025-12-04
169
+ - Updated connector definition (YAML version 1.0.0)
170
+ - Source commit: 4a01e446
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.13.0] - 2025-12-04
174
+ - Updated connector definition (YAML version 1.0.0)
175
+ - Source commit: 5ec76dde
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.12.0] - 2025-12-04
179
+ - Updated connector definition (YAML version 1.0.0)
180
+ - Source commit: df32a458
181
+ - SDK version: 0.1.0
182
+
183
+ ## [0.11.0] - 2025-12-04
184
+ - Updated connector definition (YAML version 1.0.0)
185
+ - Source commit: a506b369
186
+ - SDK version: 0.1.0
187
+
188
+ ## [0.10.0] - 2025-12-03
189
+ - Updated connector definition (YAML version 1.0.0)
190
+ - Source commit: 92a39ab5
191
+ - SDK version: 0.1.0
192
+
193
+ ## [0.9.0] - 2025-12-03
194
+ - Updated connector definition (YAML version 1.0.0)
195
+ - Source commit: 0ce38253
196
+ - SDK version: 0.1.0
197
+
198
+ ## [0.8.0] - 2025-12-02
199
+ - Updated connector definition (YAML version 1.0.0)
200
+ - Source commit: c8e326d9
201
+ - SDK version: 0.1.0
202
+
203
+ ## [0.7.0] - 2025-12-02
204
+ - Updated connector definition (YAML version 1.0.0)
205
+ - Source commit: ad0b961b
206
+ - SDK version: 0.1.0
207
+
208
+ ## [0.6.0] - 2025-12-02
209
+ - Updated connector definition (YAML version 1.0.0)
210
+ - Source commit: 7153780a
211
+ - SDK version: 0.1.0
212
+
213
+ ## [0.5.0] - 2025-12-02
214
+ - Updated connector definition (YAML version 1.0.0)
215
+ - Source commit: 01f71cad
216
+ - SDK version: 0.1.0
217
+
218
+ ## [0.4.0] - 2025-12-02
219
+ - Updated connector definition (YAML version 1.0.0)
220
+ - Source commit: 4c17f060
221
+ - SDK version: 0.1.0
222
+
223
+ ## [0.3.0] - 2025-12-02
224
+ - Updated connector definition (YAML version 1.0.0)
225
+ - Source commit: 430a4e68
226
+ - SDK version: 0.1.0
227
+
228
+ ## [0.2.0] - 2025-12-02
229
+ - Updated connector definition (YAML version 1.0.0)
230
+ - Source commit: cd499acd
231
+ - SDK version: 0.1.0
232
+
233
+ ## [0.1.0] - 2025-12-02
234
+ - Updated connector definition (YAML version 1.0.0)
235
+ - Source commit: b261c3a2
236
+ - SDK version: 0.1.0
@@ -0,0 +1,139 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-gong
3
+ Version: 0.19.28
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
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: airbyte,api,connector,gong
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ 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
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: httpx>=0.24.0
24
+ Requires-Dist: jinja2>=3.0.0
25
+ Requires-Dist: jsonpath-ng>=1.6.1
26
+ Requires-Dist: jsonref>=1.1.0
27
+ Requires-Dist: opentelemetry-api>=1.37.0
28
+ Requires-Dist: opentelemetry-sdk>=1.37.0
29
+ Requires-Dist: pydantic>=2.0.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: segment-analytics-python>=2.2.0
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Gong agent connector
36
+
37
+ Gong is a revenue intelligence platform that captures and analyzes customer interactions
38
+ across calls, emails, and web conferences. This connector provides access to users,
39
+ recorded calls with transcripts, activity statistics, scorecards, trackers, workspaces,
40
+ coaching metrics, and library content for sales performance analysis and revenue insights.
41
+
42
+
43
+ ## Example questions
44
+
45
+ The Gong connector is optimized to handle prompts like these.
46
+
47
+ - List all users in my Gong account
48
+ - Show me calls from last week
49
+ - Get the transcript for call abc123
50
+ - What are the activity stats for our sales team?
51
+ - List all workspaces in Gong
52
+ - Show me the scorecard configurations
53
+ - What trackers are set up in my account?
54
+ - Get coaching metrics for manager user123
55
+
56
+ ## Unsupported questions
57
+
58
+ The Gong connector isn't currently able to handle prompts like these.
59
+
60
+ - Create a new user in Gong
61
+ - Delete a call recording
62
+ - Update scorecard questions
63
+ - Schedule a new meeting
64
+ - Send feedback to a team member
65
+ - Modify tracker keywords
66
+
67
+ ## Installation
68
+
69
+ ```bash
70
+ uv pip install airbyte-agent-gong
71
+ ```
72
+
73
+ ## Usage
74
+
75
+ This connector supports multiple authentication methods:
76
+
77
+ ### OAuth 2.0 Authentication
78
+
79
+ ```python
80
+ from airbyte_agent_gong import GongConnector
81
+ from airbyte_agent_gong.models import GongOauth20AuthenticationAuthConfig
82
+
83
+ connector = GongConnector(
84
+ auth_config=GongOauth20AuthenticationAuthConfig(
85
+ access_token="..."
86
+ )
87
+ )
88
+ result = await connector.users.list()
89
+ ```
90
+
91
+ ### Access Key Authentication
92
+
93
+ ```python
94
+ from airbyte_agent_gong import GongConnector
95
+ from airbyte_agent_gong.models import GongAccessKeyAuthenticationAuthConfig
96
+
97
+ connector = GongConnector(
98
+ auth_config=GongAccessKeyAuthenticationAuthConfig(
99
+ access_key="...",
100
+ access_key_secret="..."
101
+ )
102
+ )
103
+ result = await connector.users.list()
104
+ ```
105
+
106
+
107
+ ## Full documentation
108
+
109
+ This connector supports the following entities and actions.
110
+
111
+ | Entity | Actions |
112
+ |--------|---------|
113
+ | Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
114
+ | Calls | [List](./REFERENCE.md#calls-list), [Get](./REFERENCE.md#calls-get) |
115
+ | Calls Extensive | [List](./REFERENCE.md#calls-extensive-list) |
116
+ | Call Audio | [Download](./REFERENCE.md#call-audio-download) |
117
+ | Call Video | [Download](./REFERENCE.md#call-video-download) |
118
+ | Workspaces | [List](./REFERENCE.md#workspaces-list) |
119
+ | Call Transcripts | [List](./REFERENCE.md#call-transcripts-list) |
120
+ | Stats Activity Aggregate | [List](./REFERENCE.md#stats-activity-aggregate-list) |
121
+ | Stats Activity Day By Day | [List](./REFERENCE.md#stats-activity-day-by-day-list) |
122
+ | Stats Interaction | [List](./REFERENCE.md#stats-interaction-list) |
123
+ | Settings Scorecards | [List](./REFERENCE.md#settings-scorecards-list) |
124
+ | Settings Trackers | [List](./REFERENCE.md#settings-trackers-list) |
125
+ | Library Folders | [List](./REFERENCE.md#library-folders-list) |
126
+ | Library Folder Content | [List](./REFERENCE.md#library-folder-content-list) |
127
+ | Coaching | [List](./REFERENCE.md#coaching-list) |
128
+ | Stats Activity Scorecards | [List](./REFERENCE.md#stats-activity-scorecards-list) |
129
+
130
+
131
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
132
+
133
+ For the service's official API docs, see the [Gong API reference](https://gong.app.gong.io/settings/api/documentation).
134
+
135
+ ## Version information
136
+
137
+ - **Package version:** 0.19.28
138
+ - **Connector version:** 0.1.5
139
+ - **Generated with Connector SDK commit SHA:** e0e2f9890347de01530666b6ed5ed7bd22452c62
@@ -0,0 +1,105 @@
1
+ # Gong agent connector
2
+
3
+ Gong is a revenue intelligence platform that captures and analyzes customer interactions
4
+ across calls, emails, and web conferences. This connector provides access to users,
5
+ recorded calls with transcripts, activity statistics, scorecards, trackers, workspaces,
6
+ coaching metrics, and library content for sales performance analysis and revenue insights.
7
+
8
+
9
+ ## Example questions
10
+
11
+ The Gong connector is optimized to handle prompts like these.
12
+
13
+ - List all users in my Gong account
14
+ - Show me calls from last week
15
+ - Get the transcript for call abc123
16
+ - What are the activity stats for our sales team?
17
+ - List all workspaces in Gong
18
+ - Show me the scorecard configurations
19
+ - What trackers are set up in my account?
20
+ - Get coaching metrics for manager user123
21
+
22
+ ## Unsupported questions
23
+
24
+ The Gong connector isn't currently able to handle prompts like these.
25
+
26
+ - Create a new user in Gong
27
+ - Delete a call recording
28
+ - Update scorecard questions
29
+ - Schedule a new meeting
30
+ - Send feedback to a team member
31
+ - Modify tracker keywords
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ uv pip install airbyte-agent-gong
37
+ ```
38
+
39
+ ## Usage
40
+
41
+ This connector supports multiple authentication methods:
42
+
43
+ ### OAuth 2.0 Authentication
44
+
45
+ ```python
46
+ from airbyte_agent_gong import GongConnector
47
+ from airbyte_agent_gong.models import GongOauth20AuthenticationAuthConfig
48
+
49
+ connector = GongConnector(
50
+ auth_config=GongOauth20AuthenticationAuthConfig(
51
+ access_token="..."
52
+ )
53
+ )
54
+ result = await connector.users.list()
55
+ ```
56
+
57
+ ### Access Key Authentication
58
+
59
+ ```python
60
+ from airbyte_agent_gong import GongConnector
61
+ from airbyte_agent_gong.models import GongAccessKeyAuthenticationAuthConfig
62
+
63
+ connector = GongConnector(
64
+ auth_config=GongAccessKeyAuthenticationAuthConfig(
65
+ access_key="...",
66
+ access_key_secret="..."
67
+ )
68
+ )
69
+ result = await connector.users.list()
70
+ ```
71
+
72
+
73
+ ## Full documentation
74
+
75
+ This connector supports the following entities and actions.
76
+
77
+ | Entity | Actions |
78
+ |--------|---------|
79
+ | Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
80
+ | Calls | [List](./REFERENCE.md#calls-list), [Get](./REFERENCE.md#calls-get) |
81
+ | Calls Extensive | [List](./REFERENCE.md#calls-extensive-list) |
82
+ | Call Audio | [Download](./REFERENCE.md#call-audio-download) |
83
+ | Call Video | [Download](./REFERENCE.md#call-video-download) |
84
+ | Workspaces | [List](./REFERENCE.md#workspaces-list) |
85
+ | Call Transcripts | [List](./REFERENCE.md#call-transcripts-list) |
86
+ | Stats Activity Aggregate | [List](./REFERENCE.md#stats-activity-aggregate-list) |
87
+ | Stats Activity Day By Day | [List](./REFERENCE.md#stats-activity-day-by-day-list) |
88
+ | Stats Interaction | [List](./REFERENCE.md#stats-interaction-list) |
89
+ | Settings Scorecards | [List](./REFERENCE.md#settings-scorecards-list) |
90
+ | Settings Trackers | [List](./REFERENCE.md#settings-trackers-list) |
91
+ | Library Folders | [List](./REFERENCE.md#library-folders-list) |
92
+ | Library Folder Content | [List](./REFERENCE.md#library-folder-content-list) |
93
+ | Coaching | [List](./REFERENCE.md#coaching-list) |
94
+ | Stats Activity Scorecards | [List](./REFERENCE.md#stats-activity-scorecards-list) |
95
+
96
+
97
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
98
+
99
+ For the service's official API docs, see the [Gong API reference](https://gong.app.gong.io/settings/api/documentation).
100
+
101
+ ## Version information
102
+
103
+ - **Package version:** 0.19.28
104
+ - **Connector version:** 0.1.5
105
+ - **Generated with Connector SDK commit SHA:** e0e2f9890347de01530666b6ed5ed7bd22452c62