airbyte-agent-hubspot 0.15.28__py3-none-any.whl → 0.15.43__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_agent_hubspot/__init__.py +101 -26
- airbyte_agent_hubspot/_vendored/connector_sdk/auth_strategies.py +2 -5
- airbyte_agent_hubspot/_vendored/connector_sdk/auth_template.py +1 -1
- airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/client.py +26 -26
- airbyte_agent_hubspot/_vendored/connector_sdk/connector_model_loader.py +11 -4
- airbyte_agent_hubspot/_vendored/connector_sdk/constants.py +1 -1
- airbyte_agent_hubspot/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
- airbyte_agent_hubspot/_vendored/connector_sdk/executor/local_executor.py +126 -17
- airbyte_agent_hubspot/_vendored/connector_sdk/extensions.py +43 -5
- airbyte_agent_hubspot/_vendored/connector_sdk/http/response.py +2 -0
- airbyte_agent_hubspot/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_hubspot/_vendored/connector_sdk/logging/logger.py +9 -9
- airbyte_agent_hubspot/_vendored/connector_sdk/logging/types.py +10 -10
- airbyte_agent_hubspot/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_hubspot/_vendored/connector_sdk/observability/models.py +6 -6
- airbyte_agent_hubspot/_vendored/connector_sdk/observability/session.py +41 -32
- airbyte_agent_hubspot/_vendored/connector_sdk/performance/metrics.py +3 -3
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/base.py +20 -18
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/components.py +59 -58
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/connector.py +22 -33
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py +103 -10
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/operations.py +32 -32
- airbyte_agent_hubspot/_vendored/connector_sdk/schema/security.py +44 -34
- airbyte_agent_hubspot/_vendored/connector_sdk/secrets.py +2 -2
- airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/events.py +9 -8
- airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/tracker.py +9 -5
- airbyte_agent_hubspot/_vendored/connector_sdk/types.py +7 -3
- airbyte_agent_hubspot/connector.py +182 -87
- airbyte_agent_hubspot/connector_model.py +17 -12
- airbyte_agent_hubspot/models.py +28 -28
- airbyte_agent_hubspot/types.py +45 -45
- {airbyte_agent_hubspot-0.15.28.dist-info → airbyte_agent_hubspot-0.15.43.dist-info}/METADATA +16 -17
- {airbyte_agent_hubspot-0.15.28.dist-info → airbyte_agent_hubspot-0.15.43.dist-info}/RECORD +34 -32
- {airbyte_agent_hubspot-0.15.28.dist-info → airbyte_agent_hubspot-0.15.43.dist-info}/WHEEL +0 -0
airbyte_agent_hubspot/models.py
CHANGED
|
@@ -200,6 +200,13 @@ class SchemaAssociationsItem(BaseModel):
|
|
|
200
200
|
created_at: Union[str | None, Any] = Field(default=None, alias="createdAt")
|
|
201
201
|
updated_at: Union[str | None, Any] = Field(default=None, alias="updatedAt")
|
|
202
202
|
|
|
203
|
+
class SchemaLabels(BaseModel):
|
|
204
|
+
"""Display labels"""
|
|
205
|
+
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
206
|
+
|
|
207
|
+
singular: Union[str, Any] = Field(default=None)
|
|
208
|
+
plural: Union[str, Any] = Field(default=None)
|
|
209
|
+
|
|
203
210
|
class SchemaPropertiesItemModificationmetadata(BaseModel):
|
|
204
211
|
"""Nested schema for SchemaPropertiesItem.modificationMetadata"""
|
|
205
212
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -236,13 +243,6 @@ class SchemaPropertiesItem(BaseModel):
|
|
|
236
243
|
show_currency_symbol: Union[bool, Any] = Field(default=None, alias="showCurrencySymbol")
|
|
237
244
|
modification_metadata: Union[SchemaPropertiesItemModificationmetadata, Any] = Field(default=None, alias="modificationMetadata")
|
|
238
245
|
|
|
239
|
-
class SchemaLabels(BaseModel):
|
|
240
|
-
"""Display labels"""
|
|
241
|
-
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
242
|
-
|
|
243
|
-
singular: Union[str, Any] = Field(default=None)
|
|
244
|
-
plural: Union[str, Any] = Field(default=None)
|
|
245
|
-
|
|
246
246
|
class Schema(BaseModel):
|
|
247
247
|
"""Custom object schema definition"""
|
|
248
248
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
@@ -308,14 +308,14 @@ class ObjectsList(BaseModel):
|
|
|
308
308
|
# Meta types for operations that extract metadata (e.g., pagination info)
|
|
309
309
|
|
|
310
310
|
class ContactsListResultMeta(BaseModel):
|
|
311
|
-
"""Metadata for contacts.
|
|
311
|
+
"""Metadata for contacts.Action.LIST operation"""
|
|
312
312
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
313
313
|
|
|
314
314
|
next_cursor: Union[str, Any] = Field(default=None)
|
|
315
315
|
next_link: Union[str, Any] = Field(default=None)
|
|
316
316
|
|
|
317
|
-
class
|
|
318
|
-
"""Metadata for contacts.
|
|
317
|
+
class ContactsApiSearchResultMeta(BaseModel):
|
|
318
|
+
"""Metadata for contacts.Action.API_SEARCH operation"""
|
|
319
319
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
320
320
|
|
|
321
321
|
total: Union[int, Any] = Field(default=None)
|
|
@@ -323,14 +323,14 @@ class ContactsSearchResultMeta(BaseModel):
|
|
|
323
323
|
next_link: Union[str, Any] = Field(default=None)
|
|
324
324
|
|
|
325
325
|
class CompaniesListResultMeta(BaseModel):
|
|
326
|
-
"""Metadata for companies.
|
|
326
|
+
"""Metadata for companies.Action.LIST operation"""
|
|
327
327
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
328
328
|
|
|
329
329
|
next_cursor: Union[str, Any] = Field(default=None)
|
|
330
330
|
next_link: Union[str, Any] = Field(default=None)
|
|
331
331
|
|
|
332
|
-
class
|
|
333
|
-
"""Metadata for companies.
|
|
332
|
+
class CompaniesApiSearchResultMeta(BaseModel):
|
|
333
|
+
"""Metadata for companies.Action.API_SEARCH operation"""
|
|
334
334
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
335
335
|
|
|
336
336
|
total: Union[int, Any] = Field(default=None)
|
|
@@ -338,14 +338,14 @@ class CompaniesSearchResultMeta(BaseModel):
|
|
|
338
338
|
next_link: Union[str, Any] = Field(default=None)
|
|
339
339
|
|
|
340
340
|
class DealsListResultMeta(BaseModel):
|
|
341
|
-
"""Metadata for deals.
|
|
341
|
+
"""Metadata for deals.Action.LIST operation"""
|
|
342
342
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
343
343
|
|
|
344
344
|
next_cursor: Union[str, Any] = Field(default=None)
|
|
345
345
|
next_link: Union[str, Any] = Field(default=None)
|
|
346
346
|
|
|
347
|
-
class
|
|
348
|
-
"""Metadata for deals.
|
|
347
|
+
class DealsApiSearchResultMeta(BaseModel):
|
|
348
|
+
"""Metadata for deals.Action.API_SEARCH operation"""
|
|
349
349
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
350
350
|
|
|
351
351
|
total: Union[int, Any] = Field(default=None)
|
|
@@ -353,14 +353,14 @@ class DealsSearchResultMeta(BaseModel):
|
|
|
353
353
|
next_link: Union[str, Any] = Field(default=None)
|
|
354
354
|
|
|
355
355
|
class TicketsListResultMeta(BaseModel):
|
|
356
|
-
"""Metadata for tickets.
|
|
356
|
+
"""Metadata for tickets.Action.LIST operation"""
|
|
357
357
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
358
358
|
|
|
359
359
|
next_cursor: Union[str, Any] = Field(default=None)
|
|
360
360
|
next_link: Union[str, Any] = Field(default=None)
|
|
361
361
|
|
|
362
|
-
class
|
|
363
|
-
"""Metadata for tickets.
|
|
362
|
+
class TicketsApiSearchResultMeta(BaseModel):
|
|
363
|
+
"""Metadata for tickets.Action.API_SEARCH operation"""
|
|
364
364
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
365
365
|
|
|
366
366
|
total: Union[int, Any] = Field(default=None)
|
|
@@ -368,7 +368,7 @@ class TicketsSearchResultMeta(BaseModel):
|
|
|
368
368
|
next_link: Union[str, Any] = Field(default=None)
|
|
369
369
|
|
|
370
370
|
class ObjectsListResultMeta(BaseModel):
|
|
371
|
-
"""Metadata for objects.
|
|
371
|
+
"""Metadata for objects.Action.LIST operation"""
|
|
372
372
|
model_config = ConfigDict(extra="allow", populate_by_name=True)
|
|
373
373
|
|
|
374
374
|
next_cursor: Union[str, Any] = Field(default=None)
|
|
@@ -409,26 +409,26 @@ class HubspotExecuteResultWithMeta(HubspotExecuteResult[T], Generic[T, S]):
|
|
|
409
409
|
ContactsListResult = HubspotExecuteResultWithMeta[list[Contact], ContactsListResultMeta]
|
|
410
410
|
"""Result type for contacts.list operation with data and metadata."""
|
|
411
411
|
|
|
412
|
-
|
|
413
|
-
"""Result type for contacts.
|
|
412
|
+
ContactsApiSearchResult = HubspotExecuteResultWithMeta[list[Contact], ContactsApiSearchResultMeta]
|
|
413
|
+
"""Result type for contacts.api_search operation with data and metadata."""
|
|
414
414
|
|
|
415
415
|
CompaniesListResult = HubspotExecuteResultWithMeta[list[Company], CompaniesListResultMeta]
|
|
416
416
|
"""Result type for companies.list operation with data and metadata."""
|
|
417
417
|
|
|
418
|
-
|
|
419
|
-
"""Result type for companies.
|
|
418
|
+
CompaniesApiSearchResult = HubspotExecuteResultWithMeta[list[Company], CompaniesApiSearchResultMeta]
|
|
419
|
+
"""Result type for companies.api_search operation with data and metadata."""
|
|
420
420
|
|
|
421
421
|
DealsListResult = HubspotExecuteResultWithMeta[list[Deal], DealsListResultMeta]
|
|
422
422
|
"""Result type for deals.list operation with data and metadata."""
|
|
423
423
|
|
|
424
|
-
|
|
425
|
-
"""Result type for deals.
|
|
424
|
+
DealsApiSearchResult = HubspotExecuteResultWithMeta[list[Deal], DealsApiSearchResultMeta]
|
|
425
|
+
"""Result type for deals.api_search operation with data and metadata."""
|
|
426
426
|
|
|
427
427
|
TicketsListResult = HubspotExecuteResultWithMeta[list[Ticket], TicketsListResultMeta]
|
|
428
428
|
"""Result type for tickets.list operation with data and metadata."""
|
|
429
429
|
|
|
430
|
-
|
|
431
|
-
"""Result type for tickets.
|
|
430
|
+
TicketsApiSearchResult = HubspotExecuteResultWithMeta[list[Ticket], TicketsApiSearchResultMeta]
|
|
431
|
+
"""Result type for tickets.api_search operation with data and metadata."""
|
|
432
432
|
|
|
433
433
|
SchemasListResult = HubspotExecuteResult[list[Schema]]
|
|
434
434
|
"""Result type for schemas.list operation."""
|
airbyte_agent_hubspot/types.py
CHANGED
|
@@ -3,7 +3,7 @@ Type definitions for hubspot connector.
|
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
|
|
6
|
-
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
6
|
+
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
7
7
|
try:
|
|
8
8
|
from typing_extensions import TypedDict, NotRequired
|
|
9
9
|
except ImportError:
|
|
@@ -14,67 +14,67 @@ except ImportError:
|
|
|
14
14
|
# ===== NESTED PARAM TYPE DEFINITIONS =====
|
|
15
15
|
# Nested parameter schemas discovered during parameter extraction
|
|
16
16
|
|
|
17
|
-
class
|
|
18
|
-
"""Nested schema for
|
|
17
|
+
class ContactsApiSearchParamsFiltergroupsItemFiltersItem(TypedDict):
|
|
18
|
+
"""Nested schema for ContactsApiSearchParamsFiltergroupsItem.filters_item"""
|
|
19
19
|
operator: NotRequired[str]
|
|
20
20
|
propertyName: NotRequired[str]
|
|
21
21
|
value: NotRequired[str]
|
|
22
22
|
values: NotRequired[list[str]]
|
|
23
23
|
|
|
24
|
-
class
|
|
25
|
-
"""Nested schema for
|
|
26
|
-
filters: NotRequired[list[
|
|
24
|
+
class ContactsApiSearchParamsFiltergroupsItem(TypedDict):
|
|
25
|
+
"""Nested schema for ContactsApiSearchParams.filterGroups_item"""
|
|
26
|
+
filters: NotRequired[list[ContactsApiSearchParamsFiltergroupsItemFiltersItem]]
|
|
27
27
|
|
|
28
|
-
class
|
|
29
|
-
"""Nested schema for
|
|
28
|
+
class ContactsApiSearchParamsSortsItem(TypedDict):
|
|
29
|
+
"""Nested schema for ContactsApiSearchParams.sorts_item"""
|
|
30
30
|
propertyName: NotRequired[str]
|
|
31
31
|
direction: NotRequired[str]
|
|
32
32
|
|
|
33
|
-
class
|
|
34
|
-
"""Nested schema for
|
|
33
|
+
class CompaniesApiSearchParamsFiltergroupsItemFiltersItem(TypedDict):
|
|
34
|
+
"""Nested schema for CompaniesApiSearchParamsFiltergroupsItem.filters_item"""
|
|
35
35
|
operator: NotRequired[str]
|
|
36
36
|
propertyName: NotRequired[str]
|
|
37
37
|
value: NotRequired[str]
|
|
38
38
|
values: NotRequired[list[str]]
|
|
39
39
|
|
|
40
|
-
class
|
|
41
|
-
"""Nested schema for
|
|
42
|
-
filters: NotRequired[list[
|
|
40
|
+
class CompaniesApiSearchParamsFiltergroupsItem(TypedDict):
|
|
41
|
+
"""Nested schema for CompaniesApiSearchParams.filterGroups_item"""
|
|
42
|
+
filters: NotRequired[list[CompaniesApiSearchParamsFiltergroupsItemFiltersItem]]
|
|
43
43
|
|
|
44
|
-
class
|
|
45
|
-
"""Nested schema for
|
|
44
|
+
class CompaniesApiSearchParamsSortsItem(TypedDict):
|
|
45
|
+
"""Nested schema for CompaniesApiSearchParams.sorts_item"""
|
|
46
46
|
propertyName: NotRequired[str]
|
|
47
47
|
direction: NotRequired[str]
|
|
48
48
|
|
|
49
|
-
class
|
|
50
|
-
"""Nested schema for
|
|
49
|
+
class DealsApiSearchParamsFiltergroupsItemFiltersItem(TypedDict):
|
|
50
|
+
"""Nested schema for DealsApiSearchParamsFiltergroupsItem.filters_item"""
|
|
51
51
|
operator: NotRequired[str]
|
|
52
52
|
propertyName: NotRequired[str]
|
|
53
53
|
value: NotRequired[str]
|
|
54
54
|
values: NotRequired[list[str]]
|
|
55
55
|
|
|
56
|
-
class
|
|
57
|
-
"""Nested schema for
|
|
58
|
-
filters: NotRequired[list[
|
|
56
|
+
class DealsApiSearchParamsFiltergroupsItem(TypedDict):
|
|
57
|
+
"""Nested schema for DealsApiSearchParams.filterGroups_item"""
|
|
58
|
+
filters: NotRequired[list[DealsApiSearchParamsFiltergroupsItemFiltersItem]]
|
|
59
59
|
|
|
60
|
-
class
|
|
61
|
-
"""Nested schema for
|
|
60
|
+
class DealsApiSearchParamsSortsItem(TypedDict):
|
|
61
|
+
"""Nested schema for DealsApiSearchParams.sorts_item"""
|
|
62
62
|
propertyName: NotRequired[str]
|
|
63
63
|
direction: NotRequired[str]
|
|
64
64
|
|
|
65
|
-
class
|
|
66
|
-
"""Nested schema for
|
|
65
|
+
class TicketsApiSearchParamsFiltergroupsItemFiltersItem(TypedDict):
|
|
66
|
+
"""Nested schema for TicketsApiSearchParamsFiltergroupsItem.filters_item"""
|
|
67
67
|
operator: NotRequired[str]
|
|
68
68
|
propertyName: NotRequired[str]
|
|
69
69
|
value: NotRequired[str]
|
|
70
70
|
values: NotRequired[list[str]]
|
|
71
71
|
|
|
72
|
-
class
|
|
73
|
-
"""Nested schema for
|
|
74
|
-
filters: NotRequired[list[
|
|
72
|
+
class TicketsApiSearchParamsFiltergroupsItem(TypedDict):
|
|
73
|
+
"""Nested schema for TicketsApiSearchParams.filterGroups_item"""
|
|
74
|
+
filters: NotRequired[list[TicketsApiSearchParamsFiltergroupsItemFiltersItem]]
|
|
75
75
|
|
|
76
|
-
class
|
|
77
|
-
"""Nested schema for
|
|
76
|
+
class TicketsApiSearchParamsSortsItem(TypedDict):
|
|
77
|
+
"""Nested schema for TicketsApiSearchParams.sorts_item"""
|
|
78
78
|
propertyName: NotRequired[str]
|
|
79
79
|
direction: NotRequired[str]
|
|
80
80
|
|
|
@@ -98,13 +98,13 @@ class ContactsGetParams(TypedDict):
|
|
|
98
98
|
id_property: NotRequired[str]
|
|
99
99
|
archived: NotRequired[bool]
|
|
100
100
|
|
|
101
|
-
class
|
|
102
|
-
"""Parameters for contacts.
|
|
103
|
-
filter_groups: NotRequired[list[
|
|
101
|
+
class ContactsApiSearchParams(TypedDict):
|
|
102
|
+
"""Parameters for contacts.api_search operation"""
|
|
103
|
+
filter_groups: NotRequired[list[ContactsApiSearchParamsFiltergroupsItem]]
|
|
104
104
|
properties: NotRequired[list[str]]
|
|
105
105
|
limit: NotRequired[int]
|
|
106
106
|
after: NotRequired[str]
|
|
107
|
-
sorts: NotRequired[list[
|
|
107
|
+
sorts: NotRequired[list[ContactsApiSearchParamsSortsItem]]
|
|
108
108
|
query: NotRequired[str]
|
|
109
109
|
|
|
110
110
|
class CompaniesListParams(TypedDict):
|
|
@@ -125,13 +125,13 @@ class CompaniesGetParams(TypedDict):
|
|
|
125
125
|
id_property: NotRequired[str]
|
|
126
126
|
archived: NotRequired[bool]
|
|
127
127
|
|
|
128
|
-
class
|
|
129
|
-
"""Parameters for companies.
|
|
130
|
-
filter_groups: NotRequired[list[
|
|
128
|
+
class CompaniesApiSearchParams(TypedDict):
|
|
129
|
+
"""Parameters for companies.api_search operation"""
|
|
130
|
+
filter_groups: NotRequired[list[CompaniesApiSearchParamsFiltergroupsItem]]
|
|
131
131
|
properties: NotRequired[list[str]]
|
|
132
132
|
limit: NotRequired[int]
|
|
133
133
|
after: NotRequired[str]
|
|
134
|
-
sorts: NotRequired[list[
|
|
134
|
+
sorts: NotRequired[list[CompaniesApiSearchParamsSortsItem]]
|
|
135
135
|
query: NotRequired[str]
|
|
136
136
|
|
|
137
137
|
class DealsListParams(TypedDict):
|
|
@@ -152,13 +152,13 @@ class DealsGetParams(TypedDict):
|
|
|
152
152
|
id_property: NotRequired[str]
|
|
153
153
|
archived: NotRequired[bool]
|
|
154
154
|
|
|
155
|
-
class
|
|
156
|
-
"""Parameters for deals.
|
|
157
|
-
filter_groups: NotRequired[list[
|
|
155
|
+
class DealsApiSearchParams(TypedDict):
|
|
156
|
+
"""Parameters for deals.api_search operation"""
|
|
157
|
+
filter_groups: NotRequired[list[DealsApiSearchParamsFiltergroupsItem]]
|
|
158
158
|
properties: NotRequired[list[str]]
|
|
159
159
|
limit: NotRequired[int]
|
|
160
160
|
after: NotRequired[str]
|
|
161
|
-
sorts: NotRequired[list[
|
|
161
|
+
sorts: NotRequired[list[DealsApiSearchParamsSortsItem]]
|
|
162
162
|
query: NotRequired[str]
|
|
163
163
|
|
|
164
164
|
class TicketsListParams(TypedDict):
|
|
@@ -179,13 +179,13 @@ class TicketsGetParams(TypedDict):
|
|
|
179
179
|
id_property: NotRequired[str]
|
|
180
180
|
archived: NotRequired[bool]
|
|
181
181
|
|
|
182
|
-
class
|
|
183
|
-
"""Parameters for tickets.
|
|
184
|
-
filter_groups: NotRequired[list[
|
|
182
|
+
class TicketsApiSearchParams(TypedDict):
|
|
183
|
+
"""Parameters for tickets.api_search operation"""
|
|
184
|
+
filter_groups: NotRequired[list[TicketsApiSearchParamsFiltergroupsItem]]
|
|
185
185
|
properties: NotRequired[list[str]]
|
|
186
186
|
limit: NotRequired[int]
|
|
187
187
|
after: NotRequired[str]
|
|
188
|
-
sorts: NotRequired[list[
|
|
188
|
+
sorts: NotRequired[list[TicketsApiSearchParamsSortsItem]]
|
|
189
189
|
query: NotRequired[str]
|
|
190
190
|
|
|
191
191
|
class SchemasListParams(TypedDict):
|
{airbyte_agent_hubspot-0.15.28.dist-info → airbyte_agent_hubspot-0.15.43.dist-info}/METADATA
RENAMED
|
@@ -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
|
|
@@ -91,10 +90,10 @@ This connector supports the following entities and actions.
|
|
|
91
90
|
|
|
92
91
|
| Entity | Actions |
|
|
93
92
|
|--------|---------|
|
|
94
|
-
| Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [
|
|
95
|
-
| Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get), [
|
|
96
|
-
| Deals | [List](./REFERENCE.md#deals-list), [Get](./REFERENCE.md#deals-get), [
|
|
97
|
-
| 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) |
|
|
98
97
|
| Schemas | [List](./REFERENCE.md#schemas-list), [Get](./REFERENCE.md#schemas-get) |
|
|
99
98
|
| Objects | [List](./REFERENCE.md#objects-list), [Get](./REFERENCE.md#objects-get) |
|
|
100
99
|
|
|
@@ -105,6 +104,6 @@ For the service's official API docs, see the [Hubspot API reference](https://dev
|
|
|
105
104
|
|
|
106
105
|
## Version information
|
|
107
106
|
|
|
108
|
-
- **Package version:** 0.15.
|
|
107
|
+
- **Package version:** 0.15.43
|
|
109
108
|
- **Connector version:** 0.1.3
|
|
110
|
-
- **Generated with Connector SDK commit SHA:**
|
|
109
|
+
- **Generated with Connector SDK commit SHA:** 3521119342fc2a44fcae909505ffb1e7b75557eb
|
|
@@ -1,55 +1,57 @@
|
|
|
1
|
-
airbyte_agent_hubspot/__init__.py,sha256=
|
|
2
|
-
airbyte_agent_hubspot/connector.py,sha256=
|
|
3
|
-
airbyte_agent_hubspot/connector_model.py,sha256=
|
|
4
|
-
airbyte_agent_hubspot/models.py,sha256=
|
|
5
|
-
airbyte_agent_hubspot/types.py,sha256=
|
|
1
|
+
airbyte_agent_hubspot/__init__.py,sha256=GndOjShbsRRDocjvKQhdPNZY9Yft3fW9rPmfkrs_Uww,4303
|
|
2
|
+
airbyte_agent_hubspot/connector.py,sha256=9s747Ndvz9jOhmETLZlRnHfuSVN_MpY2ztM37wxAwTU,46855
|
|
3
|
+
airbyte_agent_hubspot/connector_model.py,sha256=hNld2wGgt7vDCr5BpjZfL4MK5FTLHoQhrtoxHbsvWS8,148424
|
|
4
|
+
airbyte_agent_hubspot/models.py,sha256=jzguVPnLRxocdkG9sU9w0UdhpSs7wkDaInEdgEi6TT0,20583
|
|
5
|
+
airbyte_agent_hubspot/types.py,sha256=QiXbg83X46LxQh4AOzLJY5fltGRKxYCYv8jbDCRvdfQ,7688
|
|
6
6
|
airbyte_agent_hubspot/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_hubspot/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/auth_strategies.py,sha256=
|
|
9
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/auth_template.py,sha256=
|
|
10
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/connector_model_loader.py,sha256=
|
|
11
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/constants.py,sha256=
|
|
8
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/auth_strategies.py,sha256=BdjAzFRTwXCmLFqYWqZ4Dx9RsqtI7pAkw-8NynSK4sQ,39914
|
|
9
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/auth_template.py,sha256=nju4jqlFC_KI82ILNumNIyiUtRJcy7J94INIZ0QraI4,4454
|
|
10
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/connector_model_loader.py,sha256=Cx9wPhKwWfzkc8i63IevL0EsN3iWUl_OA-_jA9EKNcE,34877
|
|
11
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
12
|
airbyte_agent_hubspot/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/extensions.py,sha256=
|
|
13
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/extensions.py,sha256=XWRRoJOOrwUHSKbuQt5DU7CCu8ePzhd_HuP7c_uD77w,21376
|
|
14
14
|
airbyte_agent_hubspot/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/
|
|
16
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/
|
|
15
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/secrets.py,sha256=J9ezMu4xNnLW11xY5RCre6DHP7YMKZCqwGJfk7ufHAM,6855
|
|
17
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/types.py,sha256=CStkOsLtmZZdXylkdCsbYORDzughxygt1-Ucma0j-qE,8287
|
|
17
18
|
airbyte_agent_hubspot/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
18
19
|
airbyte_agent_hubspot/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
19
20
|
airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
20
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/client.py,sha256=
|
|
21
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/cloud_utils/client.py,sha256=YxdRpQr9XjDzih6csSseBVGn9kfMtaqbOCXP0TPuzFY,7189
|
|
21
22
|
airbyte_agent_hubspot/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
22
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/executor/hosted_executor.py,sha256=
|
|
23
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
23
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/executor/hosted_executor.py,sha256=ydHcG-biRS1ITT5ELwPShdJW-KYpvK--Fos1ipNgHho,6995
|
|
24
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/executor/local_executor.py,sha256=CMuknflYNY6_f83xrxvqewfI52MLYdPin3Rvz6HS3wU,67610
|
|
24
25
|
airbyte_agent_hubspot/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
25
26
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
26
27
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
27
28
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
|
|
28
29
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
|
|
29
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/http/response.py,sha256=
|
|
30
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/http/response.py,sha256=Q-RyM5D0D05ZhmZVJk4hVpmoS8YtyXNOTM5hqBt7rWI,3475
|
|
30
31
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
31
32
|
airbyte_agent_hubspot/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
32
33
|
airbyte_agent_hubspot/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
33
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/logging/logger.py,sha256=
|
|
34
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/logging/types.py,sha256=
|
|
34
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/logging/logger.py,sha256=GKm03UgDMNlvGuuH_c07jNcZmUccC3DISG269Ehj1Uo,8084
|
|
35
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/logging/types.py,sha256=z0UiSdXP_r71mtwWkJydo0InsNpYOMyI7SVutzd2PEo,3172
|
|
35
36
|
airbyte_agent_hubspot/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
36
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/observability/
|
|
37
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/observability/config.py,sha256=uWvRAPHnEusVKviQQncqcpnHKNhoZ4ZoFK6nUOSVClY,5372
|
|
38
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/observability/models.py,sha256=IRGjlJia28_IU7BMSBb5RHWs47yAOLvE20JIIXHazLY,448
|
|
37
39
|
airbyte_agent_hubspot/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
38
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/observability/session.py,sha256=
|
|
40
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/observability/session.py,sha256=WYRIB3bVz9HhpElkUO9CILCRIrWs9p2MR2hmf8uJm3E,3086
|
|
39
41
|
airbyte_agent_hubspot/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
40
42
|
airbyte_agent_hubspot/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
41
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/performance/metrics.py,sha256=
|
|
43
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/performance/metrics.py,sha256=FRff7dKt4iwt_A7pxV5n9kAGBR756PC7q8-weWygPSM,2817
|
|
42
44
|
airbyte_agent_hubspot/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
43
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/base.py,sha256=
|
|
44
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/components.py,sha256=
|
|
45
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/connector.py,sha256=
|
|
46
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py,sha256=
|
|
47
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/operations.py,sha256=
|
|
48
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/schema/security.py,sha256=
|
|
45
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/base.py,sha256=RcsVLrO0L57g4kWfpDWjfc9gelvecplmoy43Zi-7GEY,4944
|
|
46
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/components.py,sha256=x3YCM1p2n_xHi50fMeOX0mXUiPqjGlLHs3Go8jXokb0,7895
|
|
47
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/connector.py,sha256=mSZk1wr2YSdRj9tTRsPAuIlCzd_xZLw-Bzl1sMwE0rE,3731
|
|
48
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/extensions.py,sha256=U2sOTEXVi3DV6bIvbZPA0WUl5_vLuS_IzaDXQAJ4O14,6220
|
|
49
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/operations.py,sha256=RpzGtAI4yvAtMHAfMUMcUwgHv_qJojnKlNb75_agUF8,5729
|
|
50
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/schema/security.py,sha256=zQ9RRuF3LBgLQi_4cItmjXbG_5WKlmCNM3nCil30H90,8470
|
|
49
51
|
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
50
52
|
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
51
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/events.py,sha256=
|
|
52
|
-
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/tracker.py,sha256=
|
|
53
|
-
airbyte_agent_hubspot-0.15.
|
|
54
|
-
airbyte_agent_hubspot-0.15.
|
|
55
|
-
airbyte_agent_hubspot-0.15.
|
|
53
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/events.py,sha256=8Y1NbXiwISX-V_wRofY7PqcwEXD0dLMnntKkY6XFU2s,1328
|
|
54
|
+
airbyte_agent_hubspot/_vendored/connector_sdk/telemetry/tracker.py,sha256=Ftrk0_ddfM7dZG8hF9xBuPwhbc9D6JZ7Q9qs5o3LEyA,5579
|
|
55
|
+
airbyte_agent_hubspot-0.15.43.dist-info/METADATA,sha256=h-bp09RsAQEeYcVX8KMtZB2WWFYulAYcxV_yQvkGUwo,4338
|
|
56
|
+
airbyte_agent_hubspot-0.15.43.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_hubspot-0.15.43.dist-info/RECORD,,
|
|
File without changes
|