airbyte-agent-intercom 0.1.12__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 (60) hide show
  1. airbyte_agent_intercom-0.1.12/.gitignore +29 -0
  2. airbyte_agent_intercom-0.1.12/CHANGELOG.md +66 -0
  3. airbyte_agent_intercom-0.1.12/PKG-INFO +113 -0
  4. airbyte_agent_intercom-0.1.12/README.md +80 -0
  5. airbyte_agent_intercom-0.1.12/REFERENCE.md +910 -0
  6. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/__init__.py +169 -0
  7. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/__init__.py +1 -0
  8. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/auth_strategies.py +1120 -0
  10. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/connector_model_loader.py +964 -0
  14. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
  18. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/executor/local_executor.py +1633 -0
  19. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/extensions.py +693 -0
  21. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http/response.py +104 -0
  28. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/introspection.py +262 -0
  30. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/logging/__init__.py +11 -0
  31. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/logging/logger.py +264 -0
  32. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/logging/types.py +92 -0
  33. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/observability/__init__.py +11 -0
  34. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/observability/config.py +179 -0
  35. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/observability/models.py +19 -0
  36. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/observability/redactor.py +81 -0
  37. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/observability/session.py +103 -0
  38. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/performance/__init__.py +6 -0
  39. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  40. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/performance/metrics.py +93 -0
  41. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/__init__.py +75 -0
  42. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/base.py +161 -0
  43. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/components.py +239 -0
  44. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/connector.py +120 -0
  45. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/extensions.py +109 -0
  46. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/operations.py +146 -0
  47. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/schema/security.py +223 -0
  48. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/secrets.py +182 -0
  49. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  50. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/config.py +32 -0
  51. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/events.py +59 -0
  52. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/telemetry/tracker.py +155 -0
  53. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/types.py +245 -0
  54. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/utils.py +60 -0
  55. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/_vendored/connector_sdk/validation.py +822 -0
  56. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/connector.py +877 -0
  57. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/connector_model.py +3658 -0
  58. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/models.py +644 -0
  59. airbyte_agent_intercom-0.1.12/airbyte_agent_intercom/types.py +76 -0
  60. airbyte_agent_intercom-0.1.12/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,66 @@
1
+ # Intercom changelog
2
+
3
+ ## [0.1.12] - 2026-01-15
4
+ - Updated connector definition (YAML version 0.1.1)
5
+ - Source commit: b7138b41
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.11] - 2026-01-15
9
+ - Updated connector definition (YAML version 0.1.1)
10
+ - Source commit: 10173eb1
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.1.10] - 2026-01-15
14
+ - Updated connector definition (YAML version 0.1.1)
15
+ - Source commit: a23d9e7a
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.1.9] - 2026-01-14
19
+ - Updated connector definition (YAML version 0.1.1)
20
+ - Source commit: 7ef09816
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.1.8] - 2026-01-14
24
+ - Updated connector definition (YAML version 0.1.1)
25
+ - Source commit: e6285db5
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.1.7] - 2026-01-14
29
+ - Updated connector definition (YAML version 0.1.1)
30
+ - Source commit: 31de238d
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.1.6] - 2026-01-13
34
+ - Updated connector definition (YAML version 0.1.1)
35
+ - Source commit: e80a226e
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.1.5] - 2026-01-13
39
+ - Updated connector definition (YAML version 0.1.1)
40
+ - Source commit: 78b1be67
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.1.4] - 2026-01-11
44
+ - Updated connector definition (YAML version 0.1.1)
45
+ - Source commit: e519b73d
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.1.3] - 2026-01-09
49
+ - Updated connector definition (YAML version 0.1.1)
50
+ - Source commit: 3c7bfdfd
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.1.2] - 2026-01-09
54
+ - Updated connector definition (YAML version 0.1.1)
55
+ - Source commit: 3bcb33e8
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.1.1] - 2026-01-09
59
+ - Updated connector definition (YAML version 0.1.1)
60
+ - Source commit: da9b741b
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.1.0] - 2026-01-08
64
+ - Updated connector definition (YAML version 0.1.1)
65
+ - Source commit: 463eef2e
66
+ - SDK version: 0.1.0
@@ -0,0 +1,113 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-intercom
3
+ Version: 0.1.12
4
+ Summary: Airbyte Intercom 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,intercom,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
+ # Intercom agent connector
35
+
36
+ Intercom is a customer messaging platform that enables businesses to communicate with
37
+ customers through chat, email, and in-app messaging. This connector provides read-only
38
+ access to core Intercom entities including contacts, conversations, companies, teams,
39
+ admins, tags, and segments for customer support analytics and insights.
40
+
41
+
42
+ ## Example questions
43
+
44
+ The Intercom connector is optimized to handle prompts like these.
45
+
46
+ - List all contacts in my Intercom workspace
47
+ - Show me conversations from the last week
48
+ - List all companies in Intercom
49
+ - What teams are configured in my workspace?
50
+ - Show me all admins in my Intercom account
51
+ - List all tags used in Intercom
52
+ - Get details for contact \{contact_id\}
53
+ - Show me all customer segments
54
+ - Get company details for \{company_id\}
55
+ - List conversations assigned to team \{team_id\}
56
+ - Show me open conversations
57
+ - Get conversation details for \{conversation_id\}
58
+
59
+ ## Unsupported questions
60
+
61
+ The Intercom connector isn't currently able to handle prompts like these.
62
+
63
+ - Create a new contact in Intercom
64
+ - Send a message to a customer
65
+ - Delete a conversation
66
+ - Update company information
67
+ - Assign a conversation to an admin
68
+ - Create a new tag
69
+
70
+ ## Installation
71
+
72
+ ```bash
73
+ uv pip install airbyte-agent-intercom
74
+ ```
75
+
76
+ ## Usage
77
+
78
+ ```python
79
+ from airbyte_agent_intercom import IntercomConnector, IntercomAuthConfig
80
+
81
+ connector = IntercomConnector(
82
+ auth_config=IntercomAuthConfig(
83
+ access_token="..."
84
+ )
85
+ )
86
+ result = await connector.contacts.list()
87
+ ```
88
+
89
+
90
+ ## Full documentation
91
+
92
+ This connector supports the following entities and actions.
93
+
94
+ | Entity | Actions |
95
+ |--------|---------|
96
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get) |
97
+ | Conversations | [List](./REFERENCE.md#conversations-list), [Get](./REFERENCE.md#conversations-get) |
98
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get) |
99
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
100
+ | Admins | [List](./REFERENCE.md#admins-list), [Get](./REFERENCE.md#admins-get) |
101
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
102
+ | Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
103
+
104
+
105
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
106
+
107
+ For the service's official API docs, see the [Intercom API reference](https://developers.intercom.com/docs/references/rest-api/api.intercom.io).
108
+
109
+ ## Version information
110
+
111
+ - **Package version:** 0.1.12
112
+ - **Connector version:** 0.1.1
113
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474
@@ -0,0 +1,80 @@
1
+ # Intercom agent connector
2
+
3
+ Intercom is a customer messaging platform that enables businesses to communicate with
4
+ customers through chat, email, and in-app messaging. This connector provides read-only
5
+ access to core Intercom entities including contacts, conversations, companies, teams,
6
+ admins, tags, and segments for customer support analytics and insights.
7
+
8
+
9
+ ## Example questions
10
+
11
+ The Intercom connector is optimized to handle prompts like these.
12
+
13
+ - List all contacts in my Intercom workspace
14
+ - Show me conversations from the last week
15
+ - List all companies in Intercom
16
+ - What teams are configured in my workspace?
17
+ - Show me all admins in my Intercom account
18
+ - List all tags used in Intercom
19
+ - Get details for contact \{contact_id\}
20
+ - Show me all customer segments
21
+ - Get company details for \{company_id\}
22
+ - List conversations assigned to team \{team_id\}
23
+ - Show me open conversations
24
+ - Get conversation details for \{conversation_id\}
25
+
26
+ ## Unsupported questions
27
+
28
+ The Intercom connector isn't currently able to handle prompts like these.
29
+
30
+ - Create a new contact in Intercom
31
+ - Send a message to a customer
32
+ - Delete a conversation
33
+ - Update company information
34
+ - Assign a conversation to an admin
35
+ - Create a new tag
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ uv pip install airbyte-agent-intercom
41
+ ```
42
+
43
+ ## Usage
44
+
45
+ ```python
46
+ from airbyte_agent_intercom import IntercomConnector, IntercomAuthConfig
47
+
48
+ connector = IntercomConnector(
49
+ auth_config=IntercomAuthConfig(
50
+ access_token="..."
51
+ )
52
+ )
53
+ result = await connector.contacts.list()
54
+ ```
55
+
56
+
57
+ ## Full documentation
58
+
59
+ This connector supports the following entities and actions.
60
+
61
+ | Entity | Actions |
62
+ |--------|---------|
63
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get) |
64
+ | Conversations | [List](./REFERENCE.md#conversations-list), [Get](./REFERENCE.md#conversations-get) |
65
+ | Companies | [List](./REFERENCE.md#companies-list), [Get](./REFERENCE.md#companies-get) |
66
+ | Teams | [List](./REFERENCE.md#teams-list), [Get](./REFERENCE.md#teams-get) |
67
+ | Admins | [List](./REFERENCE.md#admins-list), [Get](./REFERENCE.md#admins-get) |
68
+ | Tags | [List](./REFERENCE.md#tags-list), [Get](./REFERENCE.md#tags-get) |
69
+ | Segments | [List](./REFERENCE.md#segments-list), [Get](./REFERENCE.md#segments-get) |
70
+
71
+
72
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
73
+
74
+ For the service's official API docs, see the [Intercom API reference](https://developers.intercom.com/docs/references/rest-api/api.intercom.io).
75
+
76
+ ## Version information
77
+
78
+ - **Package version:** 0.1.12
79
+ - **Connector version:** 0.1.1
80
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474