airbyte-agent-hubspot 0.15.23__tar.gz → 0.15.43__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.
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/CHANGELOG.md +100 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/PKG-INFO +26 -23
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/README.md +16 -12
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/REFERENCE.md +16 -16
- airbyte_agent_hubspot-0.15.43/airbyte_agent_hubspot/__init__.py +161 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/auth_strategies.py +2 -5
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/auth_template.py +1 -1
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/client.py +26 -26
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/connector_model_loader.py +11 -4
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/constants.py +1 -1
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/executor/local_executor.py +163 -34
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/extensions.py +43 -5
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/response.py +2 -0
- airbyte_agent_hubspot-0.15.43/airbyte_agent_hubspot/_vendored/connector_sdk/introspection.py +262 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/logging/logger.py +9 -9
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/logging/types.py +10 -10
- airbyte_agent_hubspot-0.15.43/airbyte_agent_hubspot/_vendored/connector_sdk/observability/config.py +179 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/observability/models.py +6 -6
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/observability/session.py +41 -32
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/performance/metrics.py +3 -3
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/base.py +20 -18
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/components.py +59 -58
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/connector.py +22 -33
- airbyte_agent_hubspot-0.15.43/airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py +202 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/operations.py +32 -32
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/security.py +44 -34
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/secrets.py +2 -2
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/events.py +9 -8
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/tracker.py +9 -5
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/types.py +7 -3
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/connector.py +183 -88
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/connector_model.py +18 -13
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/models.py +38 -38
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/types.py +45 -45
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/pyproject.toml +11 -12
- airbyte_agent_hubspot-0.15.23/airbyte_agent_hubspot/__init__.py +0 -86
- airbyte_agent_hubspot-0.15.23/airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py +0 -109
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/.gitignore +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/exceptions.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/executor/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/executor/models.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/config.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/exceptions.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http/protocols.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/http_client.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/logging/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/observability/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/observability/redactor.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/performance/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/performance/instrumentation.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/schema/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/__init__.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/config.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/utils.py +0 -0
- {airbyte_agent_hubspot-0.15.23 → airbyte_agent_hubspot-0.15.43}/airbyte_agent_hubspot/_vendored/connector_sdk/validation.py +0 -0
|
@@ -1,5 +1,105 @@
|
|
|
1
1
|
# Hubspot changelog
|
|
2
2
|
|
|
3
|
+
## [0.15.43] - 2026-01-15
|
|
4
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
5
|
+
- Source commit: 35211193
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.15.42] - 2026-01-15
|
|
9
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
10
|
+
- Source commit: 20b3afd9
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.15.41] - 2026-01-15
|
|
14
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
15
|
+
- Source commit: b7138b41
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.15.40] - 2026-01-15
|
|
19
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
20
|
+
- Source commit: 10173eb1
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.15.39] - 2026-01-15
|
|
24
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
25
|
+
- Source commit: a23d9e7a
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.15.38] - 2026-01-14
|
|
29
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
30
|
+
- Source commit: 7ef09816
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.15.37] - 2026-01-14
|
|
34
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
35
|
+
- Source commit: e6285db5
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.15.36] - 2026-01-14
|
|
39
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
40
|
+
- Source commit: 31de238d
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.15.35] - 2026-01-13
|
|
44
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
45
|
+
- Source commit: e80a226e
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.15.34] - 2026-01-13
|
|
49
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
50
|
+
- Source commit: 78b1be67
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.15.33] - 2026-01-11
|
|
54
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
55
|
+
- Source commit: e519b73d
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.15.32] - 2026-01-09
|
|
59
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
60
|
+
- Source commit: 3c7bfdfd
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.15.31] - 2026-01-09
|
|
64
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
65
|
+
- Source commit: 3bcb33e8
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.15.30] - 2026-01-09
|
|
69
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
70
|
+
- Source commit: da9b741b
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
73
|
+
## [0.15.29] - 2026-01-07
|
|
74
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
75
|
+
- Source commit: d023e05f
|
|
76
|
+
- SDK version: 0.1.0
|
|
77
|
+
|
|
78
|
+
## [0.15.28] - 2026-01-06
|
|
79
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
80
|
+
- Source commit: 0580c727
|
|
81
|
+
- SDK version: 0.1.0
|
|
82
|
+
|
|
83
|
+
## [0.15.27] - 2026-01-06
|
|
84
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
85
|
+
- Source commit: e0e2f989
|
|
86
|
+
- SDK version: 0.1.0
|
|
87
|
+
|
|
88
|
+
## [0.15.26] - 2026-01-05
|
|
89
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
90
|
+
- Source commit: 3e274293
|
|
91
|
+
- SDK version: 0.1.0
|
|
92
|
+
|
|
93
|
+
## [0.15.25] - 2025-12-22
|
|
94
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
95
|
+
- Source commit: 0eb1b1c4
|
|
96
|
+
- SDK version: 0.1.0
|
|
97
|
+
|
|
98
|
+
## [0.15.24] - 2025-12-19
|
|
99
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
100
|
+
- Source commit: 12f6b994
|
|
101
|
+
- SDK version: 0.1.0
|
|
102
|
+
|
|
3
103
|
## [0.15.23] - 2025-12-19
|
|
4
104
|
- Updated connector definition (YAML version 0.1.2)
|
|
5
105
|
- Source commit: 5d11bfdf
|
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-hubspot
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.43
|
|
4
4
|
Summary: Airbyte Hubspot Connector for AI platforms
|
|
5
|
-
Project-URL: Homepage, https://github.com/airbytehq/airbyte-
|
|
6
|
-
Project-URL: Documentation, https://
|
|
7
|
-
Project-URL: Repository, https://github.com/airbytehq/airbyte-
|
|
8
|
-
Project-URL: Issues, https://github.com/airbytehq/airbyte-
|
|
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,hubspot
|
|
11
|
+
Keywords: agent,ai,airbyte,api,connector,data-integration,hubspot,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
|
-
|
|
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
|
|
@@ -41,10 +40,12 @@ tickets, and custom objects for customer relationship management and sales analy
|
|
|
41
40
|
|
|
42
41
|
## Example questions
|
|
43
42
|
|
|
44
|
-
|
|
43
|
+
The Hubspot connector is optimized to handle prompts like these.
|
|
44
|
+
|
|
45
|
+
- Show me all deals from \{company\} this quarter
|
|
45
46
|
- What are the top 5 most valuable deals in my pipeline right now?
|
|
46
|
-
- List recent tickets from
|
|
47
|
-
- Search for contacts in the marketing department at
|
|
47
|
+
- List recent tickets from \{customer\} and analyze their support trends
|
|
48
|
+
- Search for contacts in the marketing department at \{company\}
|
|
48
49
|
- Give me an overview of my sales team's deals in the last 30 days
|
|
49
50
|
- Identify the most active companies in our CRM this month
|
|
50
51
|
- Compare the number of deals closed by different sales representatives
|
|
@@ -52,8 +53,10 @@ tickets, and custom objects for customer relationship management and sales analy
|
|
|
52
53
|
|
|
53
54
|
## Unsupported questions
|
|
54
55
|
|
|
55
|
-
|
|
56
|
-
|
|
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\}
|
|
57
60
|
- Delete the ticket from last week's support case
|
|
58
61
|
- Schedule a follow-up task for this deal
|
|
59
62
|
- Send an email to all contacts in the sales pipeline
|
|
@@ -87,10 +90,10 @@ This connector supports the following entities and actions.
|
|
|
87
90
|
|
|
88
91
|
| Entity | Actions |
|
|
89
92
|
|--------|---------|
|
|
90
|
-
| Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [
|
|
91
|
-
| Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get), [
|
|
92
|
-
| Deals | [List](./REFERENCE.md#deals-list), [Get](./REFERENCE.md#deals-get), [
|
|
93
|
-
| Tickets | [List](./REFERENCE.md#tickets-list), [Get](./REFERENCE.md#tickets-get), [
|
|
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) |
|
|
94
97
|
| Schemas | [List](./REFERENCE.md#schemas-list), [Get](./REFERENCE.md#schemas-get) |
|
|
95
98
|
| Objects | [List](./REFERENCE.md#objects-list), [Get](./REFERENCE.md#objects-get) |
|
|
96
99
|
|
|
@@ -101,6 +104,6 @@ For the service's official API docs, see the [Hubspot API reference](https://dev
|
|
|
101
104
|
|
|
102
105
|
## Version information
|
|
103
106
|
|
|
104
|
-
- **Package version:** 0.15.
|
|
105
|
-
- **Connector version:** 0.1.
|
|
106
|
-
- **Generated with Connector SDK commit SHA:**
|
|
107
|
+
- **Package version:** 0.15.43
|
|
108
|
+
- **Connector version:** 0.1.3
|
|
109
|
+
- **Generated with Connector SDK commit SHA:** 3521119342fc2a44fcae909505ffb1e7b75557eb
|
|
@@ -7,10 +7,12 @@ tickets, and custom objects for customer relationship management and sales analy
|
|
|
7
7
|
|
|
8
8
|
## Example questions
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
The Hubspot connector is optimized to handle prompts like these.
|
|
11
|
+
|
|
12
|
+
- Show me all deals from \{company\} this quarter
|
|
11
13
|
- What are the top 5 most valuable deals in my pipeline right now?
|
|
12
|
-
- List recent tickets from
|
|
13
|
-
- Search for contacts in the marketing department at
|
|
14
|
+
- List recent tickets from \{customer\} and analyze their support trends
|
|
15
|
+
- Search for contacts in the marketing department at \{company\}
|
|
14
16
|
- Give me an overview of my sales team's deals in the last 30 days
|
|
15
17
|
- Identify the most active companies in our CRM this month
|
|
16
18
|
- Compare the number of deals closed by different sales representatives
|
|
@@ -18,8 +20,10 @@ tickets, and custom objects for customer relationship management and sales analy
|
|
|
18
20
|
|
|
19
21
|
## Unsupported questions
|
|
20
22
|
|
|
21
|
-
|
|
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\}
|
|
23
27
|
- Delete the ticket from last week's support case
|
|
24
28
|
- Schedule a follow-up task for this deal
|
|
25
29
|
- Send an email to all contacts in the sales pipeline
|
|
@@ -53,10 +57,10 @@ This connector supports the following entities and actions.
|
|
|
53
57
|
|
|
54
58
|
| Entity | Actions |
|
|
55
59
|
|--------|---------|
|
|
56
|
-
| Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [
|
|
57
|
-
| Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get), [
|
|
58
|
-
| Deals | [List](./REFERENCE.md#deals-list), [Get](./REFERENCE.md#deals-get), [
|
|
59
|
-
| Tickets | [List](./REFERENCE.md#tickets-list), [Get](./REFERENCE.md#tickets-get), [
|
|
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) |
|
|
60
64
|
| Schemas | [List](./REFERENCE.md#schemas-list), [Get](./REFERENCE.md#schemas-get) |
|
|
61
65
|
| Objects | [List](./REFERENCE.md#objects-list), [Get](./REFERENCE.md#objects-get) |
|
|
62
66
|
|
|
@@ -67,6 +71,6 @@ For the service's official API docs, see the [Hubspot API reference](https://dev
|
|
|
67
71
|
|
|
68
72
|
## Version information
|
|
69
73
|
|
|
70
|
-
- **Package version:** 0.15.
|
|
71
|
-
- **Connector version:** 0.1.
|
|
72
|
-
- **Generated with Connector SDK commit SHA:**
|
|
74
|
+
- **Package version:** 0.15.43
|
|
75
|
+
- **Connector version:** 0.1.3
|
|
76
|
+
- **Generated with Connector SDK commit SHA:** 3521119342fc2a44fcae909505ffb1e7b75557eb
|
|
@@ -8,10 +8,10 @@ The Hubspot connector supports the following entities and actions.
|
|
|
8
8
|
|
|
9
9
|
| Entity | Actions |
|
|
10
10
|
|--------|---------|
|
|
11
|
-
| Contacts | [List](#contacts-list), [Get](#contacts-get), [
|
|
12
|
-
| Companies | [List](#companies-list), [Get](#companies-get), [
|
|
13
|
-
| Deals | [List](#deals-list), [Get](#deals-get), [
|
|
14
|
-
| Tickets | [List](#tickets-list), [Get](#tickets-get), [
|
|
11
|
+
| Contacts | [List](#contacts-list), [Get](#contacts-get), [Api_search](#contacts-api_search) |
|
|
12
|
+
| Companies | [List](#companies-list), [Get](#companies-get), [Api_search](#companies-api_search) |
|
|
13
|
+
| Deals | [List](#deals-list), [Get](#deals-get), [Api_search](#deals-api_search) |
|
|
14
|
+
| Tickets | [List](#tickets-list), [Get](#tickets-get), [Api_search](#tickets-api_search) |
|
|
15
15
|
| Schemas | [List](#schemas-list), [Get](#schemas-get) |
|
|
16
16
|
| Objects | [List](#objects-list), [Get](#objects-get) |
|
|
17
17
|
|
|
@@ -141,14 +141,14 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
141
141
|
|
|
142
142
|
</details>
|
|
143
143
|
|
|
144
|
-
#### Contacts
|
|
144
|
+
#### Contacts Api_search
|
|
145
145
|
|
|
146
146
|
Search for contacts by filtering on properties, searching through associations, and sorting results.
|
|
147
147
|
|
|
148
148
|
**Python SDK**
|
|
149
149
|
|
|
150
150
|
```python
|
|
151
|
-
await hubspot.contacts.
|
|
151
|
+
await hubspot.contacts.api_search()
|
|
152
152
|
```
|
|
153
153
|
|
|
154
154
|
**API**
|
|
@@ -159,7 +159,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
159
159
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
160
160
|
--data '{
|
|
161
161
|
"entity": "contacts",
|
|
162
|
-
"action": "
|
|
162
|
+
"action": "api_search"
|
|
163
163
|
}'
|
|
164
164
|
```
|
|
165
165
|
|
|
@@ -338,14 +338,14 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
338
338
|
|
|
339
339
|
</details>
|
|
340
340
|
|
|
341
|
-
#### Companies
|
|
341
|
+
#### Companies Api_search
|
|
342
342
|
|
|
343
343
|
Search for companies by filtering on properties, searching through associations, and sorting results.
|
|
344
344
|
|
|
345
345
|
**Python SDK**
|
|
346
346
|
|
|
347
347
|
```python
|
|
348
|
-
await hubspot.companies.
|
|
348
|
+
await hubspot.companies.api_search()
|
|
349
349
|
```
|
|
350
350
|
|
|
351
351
|
**API**
|
|
@@ -356,7 +356,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
356
356
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
357
357
|
--data '{
|
|
358
358
|
"entity": "companies",
|
|
359
|
-
"action": "
|
|
359
|
+
"action": "api_search"
|
|
360
360
|
}'
|
|
361
361
|
```
|
|
362
362
|
|
|
@@ -535,14 +535,14 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
535
535
|
|
|
536
536
|
</details>
|
|
537
537
|
|
|
538
|
-
#### Deals
|
|
538
|
+
#### Deals Api_search
|
|
539
539
|
|
|
540
540
|
Search deals with filters and sorting
|
|
541
541
|
|
|
542
542
|
**Python SDK**
|
|
543
543
|
|
|
544
544
|
```python
|
|
545
|
-
await hubspot.deals.
|
|
545
|
+
await hubspot.deals.api_search()
|
|
546
546
|
```
|
|
547
547
|
|
|
548
548
|
**API**
|
|
@@ -553,7 +553,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
553
553
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
554
554
|
--data '{
|
|
555
555
|
"entity": "deals",
|
|
556
|
-
"action": "
|
|
556
|
+
"action": "api_search"
|
|
557
557
|
}'
|
|
558
558
|
```
|
|
559
559
|
|
|
@@ -732,14 +732,14 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
732
732
|
|
|
733
733
|
</details>
|
|
734
734
|
|
|
735
|
-
#### Tickets
|
|
735
|
+
#### Tickets Api_search
|
|
736
736
|
|
|
737
737
|
Search for tickets by filtering on properties, searching through associations, and sorting results.
|
|
738
738
|
|
|
739
739
|
**Python SDK**
|
|
740
740
|
|
|
741
741
|
```python
|
|
742
|
-
await hubspot.tickets.
|
|
742
|
+
await hubspot.tickets.api_search()
|
|
743
743
|
```
|
|
744
744
|
|
|
745
745
|
**API**
|
|
@@ -750,7 +750,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
750
750
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
751
751
|
--data '{
|
|
752
752
|
"entity": "tickets",
|
|
753
|
-
"action": "
|
|
753
|
+
"action": "api_search"
|
|
754
754
|
}'
|
|
755
755
|
```
|
|
756
756
|
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Blessed Hubspot connector for Airbyte SDK.
|
|
3
|
+
|
|
4
|
+
Auto-generated from OpenAPI specification.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .connector import HubspotConnector
|
|
8
|
+
from .models import (
|
|
9
|
+
HubspotAuthConfig,
|
|
10
|
+
ContactProperties,
|
|
11
|
+
Contact,
|
|
12
|
+
PagingNext,
|
|
13
|
+
Paging,
|
|
14
|
+
ContactsList,
|
|
15
|
+
CompanyProperties,
|
|
16
|
+
Company,
|
|
17
|
+
CompaniesList,
|
|
18
|
+
DealProperties,
|
|
19
|
+
Deal,
|
|
20
|
+
DealsList,
|
|
21
|
+
TicketProperties,
|
|
22
|
+
Ticket,
|
|
23
|
+
TicketsList,
|
|
24
|
+
SchemaAssociationsItem,
|
|
25
|
+
SchemaLabels,
|
|
26
|
+
SchemaPropertiesItemModificationmetadata,
|
|
27
|
+
SchemaPropertiesItem,
|
|
28
|
+
Schema,
|
|
29
|
+
SchemasList,
|
|
30
|
+
CRMObjectProperties,
|
|
31
|
+
CRMObject,
|
|
32
|
+
ObjectsList,
|
|
33
|
+
ContactsListResultMeta,
|
|
34
|
+
ContactsApiSearchResultMeta,
|
|
35
|
+
CompaniesListResultMeta,
|
|
36
|
+
CompaniesApiSearchResultMeta,
|
|
37
|
+
DealsListResultMeta,
|
|
38
|
+
DealsApiSearchResultMeta,
|
|
39
|
+
TicketsListResultMeta,
|
|
40
|
+
TicketsApiSearchResultMeta,
|
|
41
|
+
ObjectsListResultMeta,
|
|
42
|
+
HubspotExecuteResult,
|
|
43
|
+
HubspotExecuteResultWithMeta,
|
|
44
|
+
ContactsListResult,
|
|
45
|
+
ContactsApiSearchResult,
|
|
46
|
+
CompaniesListResult,
|
|
47
|
+
CompaniesApiSearchResult,
|
|
48
|
+
DealsListResult,
|
|
49
|
+
DealsApiSearchResult,
|
|
50
|
+
TicketsListResult,
|
|
51
|
+
TicketsApiSearchResult,
|
|
52
|
+
SchemasListResult,
|
|
53
|
+
ObjectsListResult
|
|
54
|
+
)
|
|
55
|
+
from .types import (
|
|
56
|
+
ContactsApiSearchParamsFiltergroupsItemFiltersItem,
|
|
57
|
+
ContactsApiSearchParamsFiltergroupsItem,
|
|
58
|
+
ContactsApiSearchParamsSortsItem,
|
|
59
|
+
CompaniesApiSearchParamsFiltergroupsItemFiltersItem,
|
|
60
|
+
CompaniesApiSearchParamsFiltergroupsItem,
|
|
61
|
+
CompaniesApiSearchParamsSortsItem,
|
|
62
|
+
DealsApiSearchParamsFiltergroupsItemFiltersItem,
|
|
63
|
+
DealsApiSearchParamsFiltergroupsItem,
|
|
64
|
+
DealsApiSearchParamsSortsItem,
|
|
65
|
+
TicketsApiSearchParamsFiltergroupsItemFiltersItem,
|
|
66
|
+
TicketsApiSearchParamsFiltergroupsItem,
|
|
67
|
+
TicketsApiSearchParamsSortsItem,
|
|
68
|
+
ContactsListParams,
|
|
69
|
+
ContactsGetParams,
|
|
70
|
+
ContactsApiSearchParams,
|
|
71
|
+
CompaniesListParams,
|
|
72
|
+
CompaniesGetParams,
|
|
73
|
+
CompaniesApiSearchParams,
|
|
74
|
+
DealsListParams,
|
|
75
|
+
DealsGetParams,
|
|
76
|
+
DealsApiSearchParams,
|
|
77
|
+
TicketsListParams,
|
|
78
|
+
TicketsGetParams,
|
|
79
|
+
TicketsApiSearchParams,
|
|
80
|
+
SchemasListParams,
|
|
81
|
+
SchemasGetParams,
|
|
82
|
+
ObjectsListParams,
|
|
83
|
+
ObjectsGetParams
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
__all__ = [
|
|
87
|
+
"HubspotConnector",
|
|
88
|
+
"HubspotAuthConfig",
|
|
89
|
+
"ContactProperties",
|
|
90
|
+
"Contact",
|
|
91
|
+
"PagingNext",
|
|
92
|
+
"Paging",
|
|
93
|
+
"ContactsList",
|
|
94
|
+
"CompanyProperties",
|
|
95
|
+
"Company",
|
|
96
|
+
"CompaniesList",
|
|
97
|
+
"DealProperties",
|
|
98
|
+
"Deal",
|
|
99
|
+
"DealsList",
|
|
100
|
+
"TicketProperties",
|
|
101
|
+
"Ticket",
|
|
102
|
+
"TicketsList",
|
|
103
|
+
"SchemaAssociationsItem",
|
|
104
|
+
"SchemaLabels",
|
|
105
|
+
"SchemaPropertiesItemModificationmetadata",
|
|
106
|
+
"SchemaPropertiesItem",
|
|
107
|
+
"Schema",
|
|
108
|
+
"SchemasList",
|
|
109
|
+
"CRMObjectProperties",
|
|
110
|
+
"CRMObject",
|
|
111
|
+
"ObjectsList",
|
|
112
|
+
"ContactsListResultMeta",
|
|
113
|
+
"ContactsApiSearchResultMeta",
|
|
114
|
+
"CompaniesListResultMeta",
|
|
115
|
+
"CompaniesApiSearchResultMeta",
|
|
116
|
+
"DealsListResultMeta",
|
|
117
|
+
"DealsApiSearchResultMeta",
|
|
118
|
+
"TicketsListResultMeta",
|
|
119
|
+
"TicketsApiSearchResultMeta",
|
|
120
|
+
"ObjectsListResultMeta",
|
|
121
|
+
"HubspotExecuteResult",
|
|
122
|
+
"HubspotExecuteResultWithMeta",
|
|
123
|
+
"ContactsListResult",
|
|
124
|
+
"ContactsApiSearchResult",
|
|
125
|
+
"CompaniesListResult",
|
|
126
|
+
"CompaniesApiSearchResult",
|
|
127
|
+
"DealsListResult",
|
|
128
|
+
"DealsApiSearchResult",
|
|
129
|
+
"TicketsListResult",
|
|
130
|
+
"TicketsApiSearchResult",
|
|
131
|
+
"SchemasListResult",
|
|
132
|
+
"ObjectsListResult",
|
|
133
|
+
"ContactsApiSearchParamsFiltergroupsItemFiltersItem",
|
|
134
|
+
"ContactsApiSearchParamsFiltergroupsItem",
|
|
135
|
+
"ContactsApiSearchParamsSortsItem",
|
|
136
|
+
"CompaniesApiSearchParamsFiltergroupsItemFiltersItem",
|
|
137
|
+
"CompaniesApiSearchParamsFiltergroupsItem",
|
|
138
|
+
"CompaniesApiSearchParamsSortsItem",
|
|
139
|
+
"DealsApiSearchParamsFiltergroupsItemFiltersItem",
|
|
140
|
+
"DealsApiSearchParamsFiltergroupsItem",
|
|
141
|
+
"DealsApiSearchParamsSortsItem",
|
|
142
|
+
"TicketsApiSearchParamsFiltergroupsItemFiltersItem",
|
|
143
|
+
"TicketsApiSearchParamsFiltergroupsItem",
|
|
144
|
+
"TicketsApiSearchParamsSortsItem",
|
|
145
|
+
"ContactsListParams",
|
|
146
|
+
"ContactsGetParams",
|
|
147
|
+
"ContactsApiSearchParams",
|
|
148
|
+
"CompaniesListParams",
|
|
149
|
+
"CompaniesGetParams",
|
|
150
|
+
"CompaniesApiSearchParams",
|
|
151
|
+
"DealsListParams",
|
|
152
|
+
"DealsGetParams",
|
|
153
|
+
"DealsApiSearchParams",
|
|
154
|
+
"TicketsListParams",
|
|
155
|
+
"TicketsGetParams",
|
|
156
|
+
"TicketsApiSearchParams",
|
|
157
|
+
"SchemasListParams",
|
|
158
|
+
"SchemasGetParams",
|
|
159
|
+
"ObjectsListParams",
|
|
160
|
+
"ObjectsGetParams",
|
|
161
|
+
]
|
|
@@ -610,9 +610,7 @@ class OAuth2AuthStrategy(AuthStrategy):
|
|
|
610
610
|
has_refresh_token = bool(secrets.get("refresh_token"))
|
|
611
611
|
|
|
612
612
|
if not has_access_token and not has_refresh_token:
|
|
613
|
-
raise AuthenticationError(
|
|
614
|
-
"Missing OAuth2 credentials. Provide either 'access_token' " "or 'refresh_token' (for refresh-token-only mode)."
|
|
615
|
-
)
|
|
613
|
+
raise AuthenticationError("Missing OAuth2 credentials. Provide either 'access_token' or 'refresh_token' (for refresh-token-only mode).")
|
|
616
614
|
|
|
617
615
|
def can_refresh(self, secrets: OAuth2RefreshSecrets) -> bool:
|
|
618
616
|
"""Check if token refresh is possible.
|
|
@@ -1106,8 +1104,7 @@ class AuthStrategyFactory:
|
|
|
1106
1104
|
strategy = cls._strategies.get(auth_type)
|
|
1107
1105
|
if strategy is None:
|
|
1108
1106
|
raise AuthenticationError(
|
|
1109
|
-
f"Authentication type '{auth_type.value}' is not implemented. "
|
|
1110
|
-
f"Supported types: {', '.join(s.value for s in cls._strategies.keys())}"
|
|
1107
|
+
f"Authentication type '{auth_type.value}' is not implemented. Supported types: {', '.join(s.value for s in cls._strategies.keys())}"
|
|
1111
1108
|
)
|
|
1112
1109
|
return strategy
|
|
1113
1110
|
|
|
@@ -17,7 +17,7 @@ class MissingVariableError(ValueError):
|
|
|
17
17
|
def __init__(self, var_name: str, available_fields: list):
|
|
18
18
|
self.var_name = var_name
|
|
19
19
|
self.available_fields = available_fields
|
|
20
|
-
super().__init__(f"Template variable '${{{var_name}}}' not found in config.
|
|
20
|
+
super().__init__(f"Template variable '${{{var_name}}}' not found in config. Available fields: {available_fields}")
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
def apply_template(template: str, values: Dict[str, str]) -> str:
|