airbyte-agent-hubspot 0.15.45__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-hubspot might be problematic. Click here for more details.

Files changed (60) hide show
  1. airbyte_agent_hubspot-0.15.45/.gitignore +29 -0
  2. airbyte_agent_hubspot-0.15.45/CHANGELOG.md +301 -0
  3. airbyte_agent_hubspot-0.15.45/PKG-INFO +109 -0
  4. airbyte_agent_hubspot-0.15.45/README.md +76 -0
  5. airbyte_agent_hubspot-0.15.45/REFERENCE.md +1118 -0
  6. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/__init__.py +161 -0
  7. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/__init__.py +1 -0
  8. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/auth_strategies.py +1120 -0
  10. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/connector_model_loader.py +965 -0
  14. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
  18. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/executor/local_executor.py +1633 -0
  19. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/extensions.py +693 -0
  21. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http/response.py +104 -0
  28. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/introspection.py +262 -0
  30. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/logging/__init__.py +11 -0
  31. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/logging/logger.py +264 -0
  32. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/logging/types.py +92 -0
  33. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/observability/__init__.py +11 -0
  34. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/observability/config.py +179 -0
  35. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/observability/models.py +19 -0
  36. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/observability/redactor.py +81 -0
  37. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/observability/session.py +103 -0
  38. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/performance/__init__.py +6 -0
  39. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  40. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/performance/metrics.py +93 -0
  41. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/__init__.py +75 -0
  42. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/base.py +164 -0
  43. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/components.py +239 -0
  44. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/connector.py +120 -0
  45. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py +230 -0
  46. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/operations.py +146 -0
  47. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/schema/security.py +223 -0
  48. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/secrets.py +182 -0
  49. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  50. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/config.py +32 -0
  51. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/events.py +59 -0
  52. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/tracker.py +155 -0
  53. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/types.py +245 -0
  54. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/utils.py +60 -0
  55. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/_vendored/connector_sdk/validation.py +822 -0
  56. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/connector.py +1199 -0
  57. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/connector_model.py +2666 -0
  58. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/models.py +438 -0
  59. airbyte_agent_hubspot-0.15.45/airbyte_agent_hubspot/types.py +217 -0
  60. airbyte_agent_hubspot-0.15.45/pyproject.toml +50 -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,301 @@
1
+ # Hubspot changelog
2
+
3
+ ## [0.15.45] - 2026-01-15
4
+ - Updated connector definition (YAML version 0.1.4)
5
+ - Source commit: 61a2e822
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.15.44] - 2026-01-15
9
+ - Updated connector definition (YAML version 0.1.4)
10
+ - Source commit: 236c9a8a
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.15.43] - 2026-01-15
14
+ - Updated connector definition (YAML version 0.1.3)
15
+ - Source commit: 35211193
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.15.42] - 2026-01-15
19
+ - Updated connector definition (YAML version 0.1.3)
20
+ - Source commit: 20b3afd9
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.15.41] - 2026-01-15
24
+ - Updated connector definition (YAML version 0.1.3)
25
+ - Source commit: b7138b41
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.15.40] - 2026-01-15
29
+ - Updated connector definition (YAML version 0.1.3)
30
+ - Source commit: 10173eb1
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.15.39] - 2026-01-15
34
+ - Updated connector definition (YAML version 0.1.3)
35
+ - Source commit: a23d9e7a
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.15.38] - 2026-01-14
39
+ - Updated connector definition (YAML version 0.1.3)
40
+ - Source commit: 7ef09816
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.15.37] - 2026-01-14
44
+ - Updated connector definition (YAML version 0.1.3)
45
+ - Source commit: e6285db5
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.15.36] - 2026-01-14
49
+ - Updated connector definition (YAML version 0.1.3)
50
+ - Source commit: 31de238d
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.15.35] - 2026-01-13
54
+ - Updated connector definition (YAML version 0.1.3)
55
+ - Source commit: e80a226e
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.15.34] - 2026-01-13
59
+ - Updated connector definition (YAML version 0.1.3)
60
+ - Source commit: 78b1be67
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.15.33] - 2026-01-11
64
+ - Updated connector definition (YAML version 0.1.3)
65
+ - Source commit: e519b73d
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.15.32] - 2026-01-09
69
+ - Updated connector definition (YAML version 0.1.3)
70
+ - Source commit: 3c7bfdfd
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.15.31] - 2026-01-09
74
+ - Updated connector definition (YAML version 0.1.3)
75
+ - Source commit: 3bcb33e8
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.15.30] - 2026-01-09
79
+ - Updated connector definition (YAML version 0.1.3)
80
+ - Source commit: da9b741b
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.15.29] - 2026-01-07
84
+ - Updated connector definition (YAML version 0.1.3)
85
+ - Source commit: d023e05f
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.15.28] - 2026-01-06
89
+ - Updated connector definition (YAML version 0.1.3)
90
+ - Source commit: 0580c727
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.15.27] - 2026-01-06
94
+ - Updated connector definition (YAML version 0.1.3)
95
+ - Source commit: e0e2f989
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.15.26] - 2026-01-05
99
+ - Updated connector definition (YAML version 0.1.3)
100
+ - Source commit: 3e274293
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.15.25] - 2025-12-22
104
+ - Updated connector definition (YAML version 0.1.3)
105
+ - Source commit: 0eb1b1c4
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.15.24] - 2025-12-19
109
+ - Updated connector definition (YAML version 0.1.2)
110
+ - Source commit: 12f6b994
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.15.23] - 2025-12-19
114
+ - Updated connector definition (YAML version 0.1.2)
115
+ - Source commit: 5d11bfdf
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.15.22] - 2025-12-19
119
+ - Updated connector definition (YAML version 0.1.2)
120
+ - Source commit: e996e848
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.15.21] - 2025-12-18
124
+ - Updated connector definition (YAML version 0.1.2)
125
+ - Source commit: f7c55d3e
126
+ - SDK version: 0.1.0
127
+
128
+ ## [0.15.20] - 2025-12-17
129
+ - Updated connector definition (YAML version 0.1.2)
130
+ - Source commit: af456521
131
+ - SDK version: 0.1.0
132
+
133
+ ## [0.15.19] - 2025-12-17
134
+ - Updated connector definition (YAML version 0.1.2)
135
+ - Source commit: 6a6c981e
136
+ - SDK version: 0.1.0
137
+
138
+ ## [0.15.18] - 2025-12-15
139
+ - Updated connector definition (YAML version 0.1.2)
140
+ - Source commit: c4c39c27
141
+ - SDK version: 0.1.0
142
+
143
+ ## [0.15.17] - 2025-12-15
144
+ - Updated connector definition (YAML version 0.1.2)
145
+ - Source commit: 85f4e6b0
146
+ - SDK version: 0.1.0
147
+
148
+ ## [0.15.16] - 2025-12-15
149
+ - Updated connector definition (YAML version 0.1.2)
150
+ - Source commit: 0bfa6500
151
+ - SDK version: 0.1.0
152
+
153
+ ## [0.15.15] - 2025-12-15
154
+ - Updated connector definition (YAML version 0.1.2)
155
+ - Source commit: ea5a02a3
156
+ - SDK version: 0.1.0
157
+
158
+ ## [0.15.14] - 2025-12-15
159
+ - Updated connector definition (YAML version 0.1.2)
160
+ - Source commit: f13dee0a
161
+ - SDK version: 0.1.0
162
+
163
+ ## [0.15.13] - 2025-12-15
164
+ - Updated connector definition (YAML version 0.1.2)
165
+ - Source commit: d79da1e7
166
+ - SDK version: 0.1.0
167
+
168
+ ## [0.15.12] - 2025-12-15
169
+ - Updated connector definition (YAML version 0.1.2)
170
+ - Source commit: 06e7d5c6
171
+ - SDK version: 0.1.0
172
+
173
+ ## [0.15.11] - 2025-12-13
174
+ - Updated connector definition (YAML version 0.1.2)
175
+ - Source commit: 1ab72bd8
176
+ - SDK version: 0.1.0
177
+
178
+ ## [0.15.10] - 2025-12-12
179
+ - Updated connector definition (YAML version 0.1.2)
180
+ - Source commit: 4d366cb5
181
+ - SDK version: 0.1.0
182
+
183
+ ## [0.15.9] - 2025-12-12
184
+ - Updated connector definition (YAML version 0.1.1)
185
+ - Source commit: dc79dc8b
186
+ - SDK version: 0.1.0
187
+
188
+ ## [0.15.8] - 2025-12-12
189
+ - Updated connector definition (YAML version 0.1.1)
190
+ - Source commit: 9f7f8a98
191
+ - SDK version: 0.1.0
192
+
193
+ ## [0.15.7] - 2025-12-11
194
+ - Updated connector definition (YAML version 0.1.1)
195
+ - Source commit: 8c06aa10
196
+ - SDK version: 0.1.0
197
+
198
+ ## [0.15.6] - 2025-12-11
199
+ - Updated connector definition (YAML version 0.1.1)
200
+ - Source commit: 11427ac3
201
+ - SDK version: 0.1.0
202
+
203
+ ## [0.15.5] - 2025-12-11
204
+ - Updated connector definition (YAML version 0.1.1)
205
+ - Source commit: bdd5df6d
206
+ - SDK version: 0.1.0
207
+
208
+ ## [0.15.4] - 2025-12-11
209
+ - Updated connector definition (YAML version 0.1.1)
210
+ - Source commit: f2497f71
211
+ - SDK version: 0.1.0
212
+
213
+ ## [0.15.3] - 2025-12-11
214
+ - Updated connector definition (YAML version 0.1.1)
215
+ - Source commit: 7d738be5
216
+ - SDK version: 0.1.0
217
+
218
+ ## [0.15.2] - 2025-12-10
219
+ - Updated connector definition (YAML version 0.1.1)
220
+ - Source commit: 76636830
221
+ - SDK version: 0.1.0
222
+
223
+ ## [0.15.1] - 2025-12-10
224
+ - Updated connector definition (YAML version 0.1.1)
225
+ - Source commit: 32ed3114
226
+ - SDK version: 0.1.0
227
+
228
+ ## [0.15.0] - 2025-12-08
229
+ - Updated connector definition (YAML version 0.1.0)
230
+ - Source commit: f2ad5029
231
+ - SDK version: 0.1.0
232
+
233
+ ## [0.14.0] - 2025-12-08
234
+ - Updated connector definition (YAML version 0.1.0)
235
+ - Source commit: 139b0b0d
236
+ - SDK version: 0.1.0
237
+
238
+ ## [0.13.0] - 2025-12-05
239
+ - Updated connector definition (YAML version 0.1.0)
240
+ - Source commit: e96bed3d
241
+ - SDK version: 0.1.0
242
+
243
+ ## [0.12.0] - 2025-12-05
244
+ - Updated connector definition (YAML version 0.1.0)
245
+ - Source commit: ed697b90
246
+ - SDK version: 0.1.0
247
+
248
+ ## [0.11.0] - 2025-12-05
249
+ - Updated connector definition (YAML version 1.0.0)
250
+ - Source commit: 20618410
251
+ - SDK version: 0.1.0
252
+
253
+ ## [0.10.0] - 2025-12-04
254
+ - Updated connector definition (YAML version 1.0.0)
255
+ - Source commit: 4a01e446
256
+ - SDK version: 0.1.0
257
+
258
+ ## [0.9.0] - 2025-12-04
259
+ - Updated connector definition (YAML version 1.0.0)
260
+ - Source commit: 5ec76dde
261
+ - SDK version: 0.1.0
262
+
263
+ ## [0.8.0] - 2025-12-04
264
+ - Updated connector definition (YAML version 1.0.0)
265
+ - Source commit: df32a458
266
+ - SDK version: 0.1.0
267
+
268
+ ## [0.7.0] - 2025-12-04
269
+ - Updated connector definition (YAML version 1.0.0)
270
+ - Source commit: a506b369
271
+ - SDK version: 0.1.0
272
+
273
+ ## [0.6.0] - 2025-12-03
274
+ - Updated connector definition (YAML version 1.0.0)
275
+ - Source commit: 92a39ab5
276
+ - SDK version: 0.1.0
277
+
278
+ ## [0.5.0] - 2025-12-03
279
+ - Updated connector definition (YAML version 1.0.0)
280
+ - Source commit: 0ce38253
281
+ - SDK version: 0.1.0
282
+
283
+ ## [0.4.0] - 2025-12-02
284
+ - Updated connector definition (YAML version 1.0.0)
285
+ - Source commit: c8e326d9
286
+ - SDK version: 0.1.0
287
+
288
+ ## [0.3.0] - 2025-12-02
289
+ - Updated connector definition (YAML version 1.0.0)
290
+ - Source commit: ad0b961b
291
+ - SDK version: 0.1.0
292
+
293
+ ## [0.2.0] - 2025-12-02
294
+ - Updated connector definition (YAML version 1.0.0)
295
+ - Source commit: 7153780a
296
+ - SDK version: 0.1.0
297
+
298
+ ## [0.1.0] - 2025-12-02
299
+ - Updated connector definition (YAML version 1.0.0)
300
+ - Source commit: 01f71cad
301
+ - SDK version: 0.1.0
@@ -0,0 +1,109 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-hubspot
3
+ Version: 0.15.45
4
+ Summary: Airbyte Hubspot Connector for AI platforms
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
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,hubspot,llm,mcp
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
22
+ Requires-Dist: httpx>=0.24.0
23
+ Requires-Dist: jinja2>=3.0.0
24
+ Requires-Dist: jsonpath-ng>=1.6.1
25
+ Requires-Dist: jsonref>=1.1.0
26
+ Requires-Dist: opentelemetry-api>=1.37.0
27
+ Requires-Dist: opentelemetry-sdk>=1.37.0
28
+ Requires-Dist: pydantic>=2.0.0
29
+ Requires-Dist: python-dotenv>=1.0.0
30
+ Requires-Dist: pyyaml>=6.0
31
+ Requires-Dist: segment-analytics-python>=2.2.0
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Hubspot agent connector
35
+
36
+ HubSpot is a CRM platform that provides tools for marketing, sales, customer service,
37
+ and content management. This connector provides access to contacts, companies, deals,
38
+ tickets, and custom objects for customer relationship management and sales analytics.
39
+
40
+
41
+ ## Example questions
42
+
43
+ The Hubspot connector is optimized to handle prompts like these.
44
+
45
+ - Show me all deals from \{company\} this quarter
46
+ - What are the top 5 most valuable deals in my pipeline right now?
47
+ - List recent tickets from \{customer\} and analyze their support trends
48
+ - Search for contacts in the marketing department at \{company\}
49
+ - Give me an overview of my sales team's deals in the last 30 days
50
+ - Identify the most active companies in our CRM this month
51
+ - Compare the number of deals closed by different sales representatives
52
+ - Find all tickets related to a specific product issue and summarize their status
53
+
54
+ ## Unsupported questions
55
+
56
+ The Hubspot connector isn't currently able to handle prompts like these.
57
+
58
+ - Create a new contact record for \{person\}
59
+ - Update the contact information for \{customer\}
60
+ - Delete the ticket from last week's support case
61
+ - Schedule a follow-up task for this deal
62
+ - Send an email to all contacts in the sales pipeline
63
+
64
+ ## Installation
65
+
66
+ ```bash
67
+ uv pip install airbyte-agent-hubspot
68
+ ```
69
+
70
+ ## Usage
71
+
72
+ ```python
73
+ from airbyte_agent_hubspot import HubspotConnector, HubspotAuthConfig
74
+
75
+ connector = HubspotConnector(
76
+ auth_config=HubspotAuthConfig(
77
+ client_id="...",
78
+ client_secret="...",
79
+ refresh_token="...",
80
+ access_token="..."
81
+ )
82
+ )
83
+ result = await connector.contacts.list()
84
+ ```
85
+
86
+
87
+ ## Full documentation
88
+
89
+ This connector supports the following entities and actions.
90
+
91
+ | Entity | Actions |
92
+ |--------|---------|
93
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [Api_search](./REFERENCE.md#contacts-api_search) |
94
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get), [Api_search](./REFERENCE.md#companies-api_search) |
95
+ | Deals | [List](./REFERENCE.md#deals-list), [Get](./REFERENCE.md#deals-get), [Api_search](./REFERENCE.md#deals-api_search) |
96
+ | Tickets | [List](./REFERENCE.md#tickets-list), [Get](./REFERENCE.md#tickets-get), [Api_search](./REFERENCE.md#tickets-api_search) |
97
+ | Schemas | [List](./REFERENCE.md#schemas-list), [Get](./REFERENCE.md#schemas-get) |
98
+ | Objects | [List](./REFERENCE.md#objects-list), [Get](./REFERENCE.md#objects-get) |
99
+
100
+
101
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
102
+
103
+ For the service's official API docs, see the [Hubspot API reference](https://developers.hubspot.com/docs/api/crm/understanding-the-crm).
104
+
105
+ ## Version information
106
+
107
+ - **Package version:** 0.15.45
108
+ - **Connector version:** 0.1.4
109
+ - **Generated with Connector SDK commit SHA:** 61a2e8229a38f13564ef2f85e276dff02f707573
@@ -0,0 +1,76 @@
1
+ # Hubspot agent connector
2
+
3
+ HubSpot is a CRM platform that provides tools for marketing, sales, customer service,
4
+ and content management. This connector provides access to contacts, companies, deals,
5
+ tickets, and custom objects for customer relationship management and sales analytics.
6
+
7
+
8
+ ## Example questions
9
+
10
+ The Hubspot connector is optimized to handle prompts like these.
11
+
12
+ - Show me all deals from \{company\} this quarter
13
+ - What are the top 5 most valuable deals in my pipeline right now?
14
+ - List recent tickets from \{customer\} and analyze their support trends
15
+ - Search for contacts in the marketing department at \{company\}
16
+ - Give me an overview of my sales team's deals in the last 30 days
17
+ - Identify the most active companies in our CRM this month
18
+ - Compare the number of deals closed by different sales representatives
19
+ - Find all tickets related to a specific product issue and summarize their status
20
+
21
+ ## Unsupported questions
22
+
23
+ The Hubspot connector isn't currently able to handle prompts like these.
24
+
25
+ - Create a new contact record for \{person\}
26
+ - Update the contact information for \{customer\}
27
+ - Delete the ticket from last week's support case
28
+ - Schedule a follow-up task for this deal
29
+ - Send an email to all contacts in the sales pipeline
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ uv pip install airbyte-agent-hubspot
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ ```python
40
+ from airbyte_agent_hubspot import HubspotConnector, HubspotAuthConfig
41
+
42
+ connector = HubspotConnector(
43
+ auth_config=HubspotAuthConfig(
44
+ client_id="...",
45
+ client_secret="...",
46
+ refresh_token="...",
47
+ access_token="..."
48
+ )
49
+ )
50
+ result = await connector.contacts.list()
51
+ ```
52
+
53
+
54
+ ## Full documentation
55
+
56
+ This connector supports the following entities and actions.
57
+
58
+ | Entity | Actions |
59
+ |--------|---------|
60
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [Api_search](./REFERENCE.md#contacts-api_search) |
61
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get), [Api_search](./REFERENCE.md#companies-api_search) |
62
+ | Deals | [List](./REFERENCE.md#deals-list), [Get](./REFERENCE.md#deals-get), [Api_search](./REFERENCE.md#deals-api_search) |
63
+ | Tickets | [List](./REFERENCE.md#tickets-list), [Get](./REFERENCE.md#tickets-get), [Api_search](./REFERENCE.md#tickets-api_search) |
64
+ | Schemas | [List](./REFERENCE.md#schemas-list), [Get](./REFERENCE.md#schemas-get) |
65
+ | Objects | [List](./REFERENCE.md#objects-list), [Get](./REFERENCE.md#objects-get) |
66
+
67
+
68
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
69
+
70
+ For the service's official API docs, see the [Hubspot API reference](https://developers.hubspot.com/docs/api/crm/understanding-the-crm).
71
+
72
+ ## Version information
73
+
74
+ - **Package version:** 0.15.45
75
+ - **Connector version:** 0.1.4
76
+ - **Generated with Connector SDK commit SHA:** 61a2e8229a38f13564ef2f85e276dff02f707573