airbyte-agent-salesforce 0.1.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. airbyte_agent_salesforce-0.1.14/.gitignore +29 -0
  2. airbyte_agent_salesforce-0.1.14/CHANGELOG.md +76 -0
  3. airbyte_agent_salesforce-0.1.14/PKG-INFO +112 -0
  4. airbyte_agent_salesforce-0.1.14/README.md +78 -0
  5. airbyte_agent_salesforce-0.1.14/REFERENCE.md +1977 -0
  6. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/__init__.py +87 -0
  7. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/__init__.py +1 -0
  8. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/auth_strategies.py +1123 -0
  10. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/connector_model_loader.py +957 -0
  14. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  18. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/executor/local_executor.py +1504 -0
  19. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/extensions.py +655 -0
  21. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http/response.py +102 -0
  28. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/http_client.py +686 -0
  29. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/logging/__init__.py +11 -0
  30. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/logging/logger.py +264 -0
  31. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/logging/types.py +92 -0
  32. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/observability/__init__.py +11 -0
  33. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/observability/models.py +19 -0
  34. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/observability/redactor.py +81 -0
  35. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/observability/session.py +94 -0
  36. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/performance/__init__.py +6 -0
  37. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  38. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/performance/metrics.py +93 -0
  39. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/__init__.py +75 -0
  40. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/base.py +161 -0
  41. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/components.py +238 -0
  42. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/connector.py +131 -0
  43. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/extensions.py +109 -0
  44. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/operations.py +146 -0
  45. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/schema/security.py +213 -0
  46. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/secrets.py +182 -0
  47. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  48. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/telemetry/config.py +32 -0
  49. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/telemetry/events.py +58 -0
  50. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  51. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/types.py +241 -0
  52. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/utils.py +60 -0
  53. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/_vendored/connector_sdk/validation.py +822 -0
  54. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/connector.py +1862 -0
  55. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/connector_model.py +1597 -0
  56. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/models.py +365 -0
  57. airbyte_agent_salesforce-0.1.14/airbyte_agent_salesforce/types.py +166 -0
  58. airbyte_agent_salesforce-0.1.14/pyproject.toml +51 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+
10
+ # Testing
11
+ .pytest_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+
24
+ # OS
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ .env
29
+ configured_connectors.yaml
@@ -0,0 +1,76 @@
1
+ # Salesforce changelog
2
+
3
+ ## [0.1.14] - 2025-12-18
4
+ - Updated connector definition (YAML version 1.0.3)
5
+ - Source commit: f7c55d3e
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.13] - 2025-12-17
9
+ - Updated connector definition (YAML version 1.0.3)
10
+ - Source commit: af456521
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.1.12] - 2025-12-17
14
+ - Updated connector definition (YAML version 1.0.3)
15
+ - Source commit: 6a6c981e
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.1.11] - 2025-12-15
19
+ - Updated connector definition (YAML version 1.0.3)
20
+ - Source commit: c4c39c27
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.1.10] - 2025-12-15
24
+ - Updated connector definition (YAML version 1.0.3)
25
+ - Source commit: 85f4e6b0
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.1.9] - 2025-12-15
29
+ - Updated connector definition (YAML version 1.0.3)
30
+ - Source commit: 0bfa6500
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.1.8] - 2025-12-15
34
+ - Updated connector definition (YAML version 1.0.3)
35
+ - Source commit: ea5a02a3
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.1.7] - 2025-12-15
39
+ - Updated connector definition (YAML version 1.0.3)
40
+ - Source commit: f13dee0a
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.1.6] - 2025-12-15
44
+ - Updated connector definition (YAML version 1.0.3)
45
+ - Source commit: d79da1e7
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.1.5] - 2025-12-15
49
+ - Updated connector definition (YAML version 1.0.3)
50
+ - Source commit: 06e7d5c6
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.1.4] - 2025-12-13
54
+ - Updated connector definition (YAML version 1.0.3)
55
+ - Source commit: 1ab72bd8
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.1.3] - 2025-12-12
59
+ - Updated connector definition (YAML version 1.0.3)
60
+ - Source commit: 4d366cb5
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.1.2] - 2025-12-12
64
+ - Updated connector definition (YAML version 1.0.2)
65
+ - Source commit: dc79dc8b
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.1.1] - 2025-12-12
69
+ - Updated connector definition (YAML version 1.0.2)
70
+ - Source commit: 244fd1c6
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.1.0] - 2025-12-12
74
+ - Updated connector definition (YAML version 1.0.1)
75
+ - Source commit: e71241ac
76
+ - SDK version: 0.1.0
@@ -0,0 +1,112 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-salesforce
3
+ Version: 0.1.14
4
+ Summary: Airbyte Salesforce Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
+ Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: airbyte,api,connector,salesforce
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: httpx>=0.24.0
24
+ Requires-Dist: jinja2>=3.0.0
25
+ Requires-Dist: jsonpath-ng>=1.6.1
26
+ Requires-Dist: jsonref>=1.1.0
27
+ Requires-Dist: opentelemetry-api>=1.37.0
28
+ Requires-Dist: opentelemetry-sdk>=1.37.0
29
+ Requires-Dist: pydantic>=2.0.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: segment-analytics-python>=2.2.0
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Salesforce agent connector
36
+
37
+ Salesforce is a cloud-based CRM platform that helps businesses manage customer
38
+ relationships, sales pipelines, and business operations. This connector provides
39
+ access to accounts, contacts, leads, opportunities, tasks, events, campaigns, cases,
40
+ notes, and attachments for sales analytics and customer relationship management.
41
+
42
+
43
+ ## Example questions
44
+
45
+ - Show me my top 5 opportunities this month
46
+ - List all contacts from [Company] in the last quarter
47
+ - Search for leads in the technology sector with revenue over $10M
48
+ - What trends can you identify in my recent sales pipeline?
49
+ - Summarize the open cases for my key accounts
50
+ - Find upcoming events related to my most important opportunities
51
+ - Analyze the performance of my recent marketing campaigns
52
+ - Identify the highest value opportunities I'm currently tracking
53
+ - Show me the notes and attachments for [customerX]'s account
54
+
55
+ ## Unsupported questions
56
+
57
+ - Create a new lead for [personX]
58
+ - Update the status of my sales opportunity
59
+ - Schedule a follow-up meeting with [customerX]
60
+ - Delete this old contact record
61
+ - Send an email to all contacts in this campaign
62
+
63
+ ## Installation
64
+
65
+ ```bash
66
+ uv pip install airbyte-agent-salesforce
67
+ ```
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from airbyte_agent_salesforce import SalesforceConnector, SalesforceAuthConfig
73
+
74
+ connector = SalesforceConnector(
75
+ auth_config=SalesforceAuthConfig(
76
+ refresh_token="...",
77
+ client_id="...",
78
+ client_secret="..."
79
+ )
80
+ )
81
+ result = await connector.accounts.list()
82
+ ```
83
+
84
+ ## Full documentation
85
+
86
+ This connector supports the following entities and actions.
87
+
88
+ | Entity | Actions |
89
+ |--------|---------|
90
+ | Accounts | [List](./REFERENCE.md#accounts-list), [Get](./REFERENCE.md#accounts-get), [Search](./REFERENCE.md#accounts-search) |
91
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [Search](./REFERENCE.md#contacts-search) |
92
+ | Leads | [List](./REFERENCE.md#leads-list), [Get](./REFERENCE.md#leads-get), [Search](./REFERENCE.md#leads-search) |
93
+ | Opportunities | [List](./REFERENCE.md#opportunities-list), [Get](./REFERENCE.md#opportunities-get), [Search](./REFERENCE.md#opportunities-search) |
94
+ | Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get), [Search](./REFERENCE.md#tasks-search) |
95
+ | Events | [List](./REFERENCE.md#events-list), [Get](./REFERENCE.md#events-get), [Search](./REFERENCE.md#events-search) |
96
+ | Campaigns | [List](./REFERENCE.md#campaigns-list), [Get](./REFERENCE.md#campaigns-get), [Search](./REFERENCE.md#campaigns-search) |
97
+ | Cases | [List](./REFERENCE.md#cases-list), [Get](./REFERENCE.md#cases-get), [Search](./REFERENCE.md#cases-search) |
98
+ | Notes | [List](./REFERENCE.md#notes-list), [Get](./REFERENCE.md#notes-get), [Search](./REFERENCE.md#notes-search) |
99
+ | Content Versions | [List](./REFERENCE.md#content-versions-list), [Get](./REFERENCE.md#content-versions-get), [Download](./REFERENCE.md#content-versions-download) |
100
+ | Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
101
+ | Query | [List](./REFERENCE.md#query-list) |
102
+
103
+
104
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
105
+
106
+ For the service's official API docs, see the [Salesforce API reference](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_rest.htm).
107
+
108
+ ## Version information
109
+
110
+ - **Package version:** 0.1.14
111
+ - **Connector version:** 1.0.3
112
+ - **Generated with Connector SDK commit SHA:** f7c55d3e3cdc7568cab2da9d736285eec58f044b
@@ -0,0 +1,78 @@
1
+ # Salesforce agent connector
2
+
3
+ Salesforce is a cloud-based CRM platform that helps businesses manage customer
4
+ relationships, sales pipelines, and business operations. This connector provides
5
+ access to accounts, contacts, leads, opportunities, tasks, events, campaigns, cases,
6
+ notes, and attachments for sales analytics and customer relationship management.
7
+
8
+
9
+ ## Example questions
10
+
11
+ - Show me my top 5 opportunities this month
12
+ - List all contacts from [Company] in the last quarter
13
+ - Search for leads in the technology sector with revenue over $10M
14
+ - What trends can you identify in my recent sales pipeline?
15
+ - Summarize the open cases for my key accounts
16
+ - Find upcoming events related to my most important opportunities
17
+ - Analyze the performance of my recent marketing campaigns
18
+ - Identify the highest value opportunities I'm currently tracking
19
+ - Show me the notes and attachments for [customerX]'s account
20
+
21
+ ## Unsupported questions
22
+
23
+ - Create a new lead for [personX]
24
+ - Update the status of my sales opportunity
25
+ - Schedule a follow-up meeting with [customerX]
26
+ - Delete this old contact record
27
+ - Send an email to all contacts in this campaign
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ uv pip install airbyte-agent-salesforce
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from airbyte_agent_salesforce import SalesforceConnector, SalesforceAuthConfig
39
+
40
+ connector = SalesforceConnector(
41
+ auth_config=SalesforceAuthConfig(
42
+ refresh_token="...",
43
+ client_id="...",
44
+ client_secret="..."
45
+ )
46
+ )
47
+ result = await connector.accounts.list()
48
+ ```
49
+
50
+ ## Full documentation
51
+
52
+ This connector supports the following entities and actions.
53
+
54
+ | Entity | Actions |
55
+ |--------|---------|
56
+ | Accounts | [List](./REFERENCE.md#accounts-list), [Get](./REFERENCE.md#accounts-get), [Search](./REFERENCE.md#accounts-search) |
57
+ | Contacts | [List](./REFERENCE.md#contacts-list), [Get](./REFERENCE.md#contacts-get), [Search](./REFERENCE.md#contacts-search) |
58
+ | Leads | [List](./REFERENCE.md#leads-list), [Get](./REFERENCE.md#leads-get), [Search](./REFERENCE.md#leads-search) |
59
+ | Opportunities | [List](./REFERENCE.md#opportunities-list), [Get](./REFERENCE.md#opportunities-get), [Search](./REFERENCE.md#opportunities-search) |
60
+ | Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get), [Search](./REFERENCE.md#tasks-search) |
61
+ | Events | [List](./REFERENCE.md#events-list), [Get](./REFERENCE.md#events-get), [Search](./REFERENCE.md#events-search) |
62
+ | Campaigns | [List](./REFERENCE.md#campaigns-list), [Get](./REFERENCE.md#campaigns-get), [Search](./REFERENCE.md#campaigns-search) |
63
+ | Cases | [List](./REFERENCE.md#cases-list), [Get](./REFERENCE.md#cases-get), [Search](./REFERENCE.md#cases-search) |
64
+ | Notes | [List](./REFERENCE.md#notes-list), [Get](./REFERENCE.md#notes-get), [Search](./REFERENCE.md#notes-search) |
65
+ | Content Versions | [List](./REFERENCE.md#content-versions-list), [Get](./REFERENCE.md#content-versions-get), [Download](./REFERENCE.md#content-versions-download) |
66
+ | Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
67
+ | Query | [List](./REFERENCE.md#query-list) |
68
+
69
+
70
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
71
+
72
+ For the service's official API docs, see the [Salesforce API reference](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_rest.htm).
73
+
74
+ ## Version information
75
+
76
+ - **Package version:** 0.1.14
77
+ - **Connector version:** 1.0.3
78
+ - **Generated with Connector SDK commit SHA:** f7c55d3e3cdc7568cab2da9d736285eec58f044b