airbyte-agent-jira 0.1.13__tar.gz → 0.1.35__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_jira-0.1.35/CHANGELOG.md +181 -0
- airbyte_agent_jira-0.1.35/PKG-INFO +112 -0
- airbyte_agent_jira-0.1.35/README.md +79 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/REFERENCE.md +97 -23
- airbyte_agent_jira-0.1.35/airbyte_agent_jira/__init__.py +179 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/auth_strategies.py +2 -5
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/auth_template.py +1 -1
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/client.py +26 -26
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/connector_model_loader.py +14 -6
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/constants.py +1 -1
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/executor/hosted_executor.py +10 -11
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/executor/local_executor.py +163 -34
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/extensions.py +43 -5
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/response.py +2 -0
- airbyte_agent_jira-0.1.35/airbyte_agent_jira/_vendored/connector_sdk/introspection.py +262 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/logging/logger.py +9 -9
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/logging/types.py +10 -10
- airbyte_agent_jira-0.1.35/airbyte_agent_jira/_vendored/connector_sdk/observability/config.py +179 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/observability/models.py +6 -6
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/observability/session.py +41 -32
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/performance/metrics.py +3 -3
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/base.py +21 -18
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/components.py +59 -58
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/connector.py +22 -33
- airbyte_agent_jira-0.1.35/airbyte_agent_jira/_vendored/connector_sdk/schema/extensions.py +230 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/operations.py +32 -32
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/security.py +44 -34
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/secrets.py +2 -2
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/telemetry/events.py +9 -8
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/telemetry/tracker.py +9 -5
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/types.py +7 -3
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/connector.py +179 -73
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/connector_model.py +22 -17
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/models.py +201 -189
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/types.py +9 -9
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/pyproject.toml +11 -12
- airbyte_agent_jira-0.1.13/CHANGELOG.md +0 -71
- airbyte_agent_jira-0.1.13/PKG-INFO +0 -82
- airbyte_agent_jira-0.1.13/README.md +0 -48
- airbyte_agent_jira-0.1.13/airbyte_agent_jira/__init__.py +0 -91
- airbyte_agent_jira-0.1.13/airbyte_agent_jira/_vendored/connector_sdk/schema/extensions.py +0 -109
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/.gitignore +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/exceptions.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/executor/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/executor/models.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/config.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/exceptions.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http/protocols.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/http_client.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/logging/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/observability/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/observability/redactor.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/performance/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/performance/instrumentation.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/schema/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/telemetry/__init__.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/telemetry/config.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/utils.py +0 -0
- {airbyte_agent_jira-0.1.13 → airbyte_agent_jira-0.1.35}/airbyte_agent_jira/_vendored/connector_sdk/validation.py +0 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Jira changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.35] - 2026-01-15
|
|
4
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
5
|
+
- Source commit: 61a2e822
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.1.34] - 2026-01-15
|
|
9
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
10
|
+
- Source commit: 35211193
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.1.33] - 2026-01-15
|
|
14
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
15
|
+
- Source commit: 20b3afd9
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.1.32] - 2026-01-15
|
|
19
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
20
|
+
- Source commit: b7138b41
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.1.31] - 2026-01-15
|
|
24
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
25
|
+
- Source commit: 10173eb1
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.1.30] - 2026-01-15
|
|
29
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
30
|
+
- Source commit: a23d9e7a
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.1.29] - 2026-01-14
|
|
34
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
35
|
+
- Source commit: 7ef09816
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.1.28] - 2026-01-14
|
|
39
|
+
- Updated connector definition (YAML version 1.0.4)
|
|
40
|
+
- Source commit: 5b228315
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.1.27] - 2026-01-14
|
|
44
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
45
|
+
- Source commit: e6285db5
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.1.26] - 2026-01-14
|
|
49
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
50
|
+
- Source commit: 31de238d
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.1.25] - 2026-01-13
|
|
54
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
55
|
+
- Source commit: e80a226e
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.1.24] - 2026-01-13
|
|
59
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
60
|
+
- Source commit: 78b1be67
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.1.23] - 2026-01-11
|
|
64
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
65
|
+
- Source commit: e519b73d
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.1.22] - 2026-01-09
|
|
69
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
70
|
+
- Source commit: 3c7bfdfd
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
73
|
+
## [0.1.21] - 2026-01-09
|
|
74
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
75
|
+
- Source commit: 3bcb33e8
|
|
76
|
+
- SDK version: 0.1.0
|
|
77
|
+
|
|
78
|
+
## [0.1.20] - 2026-01-09
|
|
79
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
80
|
+
- Source commit: da9b741b
|
|
81
|
+
- SDK version: 0.1.0
|
|
82
|
+
|
|
83
|
+
## [0.1.19] - 2026-01-07
|
|
84
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
85
|
+
- Source commit: d023e05f
|
|
86
|
+
- SDK version: 0.1.0
|
|
87
|
+
|
|
88
|
+
## [0.1.18] - 2026-01-06
|
|
89
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
90
|
+
- Source commit: 0580c727
|
|
91
|
+
- SDK version: 0.1.0
|
|
92
|
+
|
|
93
|
+
## [0.1.17] - 2026-01-06
|
|
94
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
95
|
+
- Source commit: e0e2f989
|
|
96
|
+
- SDK version: 0.1.0
|
|
97
|
+
|
|
98
|
+
## [0.1.16] - 2026-01-05
|
|
99
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
100
|
+
- Source commit: 3e274293
|
|
101
|
+
- SDK version: 0.1.0
|
|
102
|
+
|
|
103
|
+
## [0.1.15] - 2025-12-22
|
|
104
|
+
- Updated connector definition (YAML version 1.0.3)
|
|
105
|
+
- Source commit: 0eb1b1c4
|
|
106
|
+
- SDK version: 0.1.0
|
|
107
|
+
|
|
108
|
+
## [0.1.14] - 2025-12-19
|
|
109
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
110
|
+
- Source commit: 12f6b994
|
|
111
|
+
- SDK version: 0.1.0
|
|
112
|
+
|
|
113
|
+
## [0.1.13] - 2025-12-19
|
|
114
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
115
|
+
- Source commit: 5d11bfdf
|
|
116
|
+
- SDK version: 0.1.0
|
|
117
|
+
|
|
118
|
+
## [0.1.12] - 2025-12-19
|
|
119
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
120
|
+
- Source commit: e996e848
|
|
121
|
+
- SDK version: 0.1.0
|
|
122
|
+
|
|
123
|
+
## [0.1.11] - 2025-12-18
|
|
124
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
125
|
+
- Source commit: f7c55d3e
|
|
126
|
+
- SDK version: 0.1.0
|
|
127
|
+
|
|
128
|
+
## [0.1.10] - 2025-12-17
|
|
129
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
130
|
+
- Source commit: af456521
|
|
131
|
+
- SDK version: 0.1.0
|
|
132
|
+
|
|
133
|
+
## [0.1.9] - 2025-12-17
|
|
134
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
135
|
+
- Source commit: 6a6c981e
|
|
136
|
+
- SDK version: 0.1.0
|
|
137
|
+
|
|
138
|
+
## [0.1.8] - 2025-12-15
|
|
139
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
140
|
+
- Source commit: c4c39c27
|
|
141
|
+
- SDK version: 0.1.0
|
|
142
|
+
|
|
143
|
+
## [0.1.7] - 2025-12-15
|
|
144
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
145
|
+
- Source commit: 85f4e6b0
|
|
146
|
+
- SDK version: 0.1.0
|
|
147
|
+
|
|
148
|
+
## [0.1.6] - 2025-12-15
|
|
149
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
150
|
+
- Source commit: 0bfa6500
|
|
151
|
+
- SDK version: 0.1.0
|
|
152
|
+
|
|
153
|
+
## [0.1.5] - 2025-12-15
|
|
154
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
155
|
+
- Source commit: ea5a02a3
|
|
156
|
+
- SDK version: 0.1.0
|
|
157
|
+
|
|
158
|
+
## [0.1.4] - 2025-12-15
|
|
159
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
160
|
+
- Source commit: f13dee0a
|
|
161
|
+
- SDK version: 0.1.0
|
|
162
|
+
|
|
163
|
+
## [0.1.3] - 2025-12-15
|
|
164
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
165
|
+
- Source commit: d79da1e7
|
|
166
|
+
- SDK version: 0.1.0
|
|
167
|
+
|
|
168
|
+
## [0.1.2] - 2025-12-15
|
|
169
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
170
|
+
- Source commit: 06e7d5c6
|
|
171
|
+
- SDK version: 0.1.0
|
|
172
|
+
|
|
173
|
+
## [0.1.1] - 2025-12-13
|
|
174
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
175
|
+
- Source commit: 1ab72bd8
|
|
176
|
+
- SDK version: 0.1.0
|
|
177
|
+
|
|
178
|
+
## [0.1.0] - 2025-12-12
|
|
179
|
+
- Updated connector definition (YAML version 1.0.2)
|
|
180
|
+
- Source commit: 61d98c0a
|
|
181
|
+
- SDK version: 0.1.0
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-jira
|
|
3
|
+
Version: 0.1.35
|
|
4
|
+
Summary: Airbyte Jira 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,jira,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
|
+
# Jira agent connector
|
|
35
|
+
|
|
36
|
+
Connector for Jira API
|
|
37
|
+
|
|
38
|
+
## Example questions
|
|
39
|
+
|
|
40
|
+
The Jira connector is optimized to handle prompts like these.
|
|
41
|
+
|
|
42
|
+
- Show me all open issues in the \{project_key\} project
|
|
43
|
+
- What issues are assigned to \{team_member\} this week?
|
|
44
|
+
- Find all high priority bugs in our current sprint
|
|
45
|
+
- Get the details of issue \{issue_key\}
|
|
46
|
+
- List all issues created in the last 7 days
|
|
47
|
+
- Show me overdue issues across all projects
|
|
48
|
+
- List all projects in my Jira instance
|
|
49
|
+
- Get details of the \{project_key\} project
|
|
50
|
+
- What projects have the most issues?
|
|
51
|
+
- Who are all the users in my Jira instance?
|
|
52
|
+
- Search for users named \{user_name\}
|
|
53
|
+
- Get details of user \{team_member\}
|
|
54
|
+
- Show me all comments on issue \{issue_key\}
|
|
55
|
+
- How much time has been logged on issue \{issue_key\}?
|
|
56
|
+
- List all worklogs for \{issue_key\} this month
|
|
57
|
+
|
|
58
|
+
## Unsupported questions
|
|
59
|
+
|
|
60
|
+
The Jira connector isn't currently able to handle prompts like these.
|
|
61
|
+
|
|
62
|
+
- Create a new issue in \{project_key\}
|
|
63
|
+
- Update the status of \{issue_key\}
|
|
64
|
+
- Add a comment to \{issue_key\}
|
|
65
|
+
- Log time on \{issue_key\}
|
|
66
|
+
- Delete issue \{issue_key\}
|
|
67
|
+
- Assign \{issue_key\} to \{team_member\}
|
|
68
|
+
|
|
69
|
+
## Installation
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
uv pip install airbyte-agent-jira
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## Usage
|
|
76
|
+
|
|
77
|
+
```python
|
|
78
|
+
from airbyte_agent_jira import JiraConnector, JiraAuthConfig
|
|
79
|
+
|
|
80
|
+
connector = JiraConnector(
|
|
81
|
+
auth_config=JiraAuthConfig(
|
|
82
|
+
username="...",
|
|
83
|
+
password="..."
|
|
84
|
+
)
|
|
85
|
+
)
|
|
86
|
+
result = await connector.issues.api_search()
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## Full documentation
|
|
91
|
+
|
|
92
|
+
This connector supports the following entities and actions.
|
|
93
|
+
|
|
94
|
+
| Entity | Actions |
|
|
95
|
+
|--------|---------|
|
|
96
|
+
| Issues | [Api_search](./REFERENCE.md#issues-api_search), [Get](./REFERENCE.md#issues-get) |
|
|
97
|
+
| Projects | [Api_search](./REFERENCE.md#projects-api_search), [Get](./REFERENCE.md#projects-get) |
|
|
98
|
+
| Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Api_search](./REFERENCE.md#users-api_search) |
|
|
99
|
+
| Issue Fields | [List](./REFERENCE.md#issue-fields-list), [Api_search](./REFERENCE.md#issue-fields-api_search) |
|
|
100
|
+
| Issue Comments | [List](./REFERENCE.md#issue-comments-list), [Get](./REFERENCE.md#issue-comments-get) |
|
|
101
|
+
| Issue Worklogs | [List](./REFERENCE.md#issue-worklogs-list), [Get](./REFERENCE.md#issue-worklogs-get) |
|
|
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 [Jira API reference](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/).
|
|
107
|
+
|
|
108
|
+
## Version information
|
|
109
|
+
|
|
110
|
+
- **Package version:** 0.1.35
|
|
111
|
+
- **Connector version:** 1.0.4
|
|
112
|
+
- **Generated with Connector SDK commit SHA:** 61a2e8229a38f13564ef2f85e276dff02f707573
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Jira agent connector
|
|
2
|
+
|
|
3
|
+
Connector for Jira API
|
|
4
|
+
|
|
5
|
+
## Example questions
|
|
6
|
+
|
|
7
|
+
The Jira connector is optimized to handle prompts like these.
|
|
8
|
+
|
|
9
|
+
- Show me all open issues in the \{project_key\} project
|
|
10
|
+
- What issues are assigned to \{team_member\} this week?
|
|
11
|
+
- Find all high priority bugs in our current sprint
|
|
12
|
+
- Get the details of issue \{issue_key\}
|
|
13
|
+
- List all issues created in the last 7 days
|
|
14
|
+
- Show me overdue issues across all projects
|
|
15
|
+
- List all projects in my Jira instance
|
|
16
|
+
- Get details of the \{project_key\} project
|
|
17
|
+
- What projects have the most issues?
|
|
18
|
+
- Who are all the users in my Jira instance?
|
|
19
|
+
- Search for users named \{user_name\}
|
|
20
|
+
- Get details of user \{team_member\}
|
|
21
|
+
- Show me all comments on issue \{issue_key\}
|
|
22
|
+
- How much time has been logged on issue \{issue_key\}?
|
|
23
|
+
- List all worklogs for \{issue_key\} this month
|
|
24
|
+
|
|
25
|
+
## Unsupported questions
|
|
26
|
+
|
|
27
|
+
The Jira connector isn't currently able to handle prompts like these.
|
|
28
|
+
|
|
29
|
+
- Create a new issue in \{project_key\}
|
|
30
|
+
- Update the status of \{issue_key\}
|
|
31
|
+
- Add a comment to \{issue_key\}
|
|
32
|
+
- Log time on \{issue_key\}
|
|
33
|
+
- Delete issue \{issue_key\}
|
|
34
|
+
- Assign \{issue_key\} to \{team_member\}
|
|
35
|
+
|
|
36
|
+
## Installation
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
uv pip install airbyte-agent-jira
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Usage
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from airbyte_agent_jira import JiraConnector, JiraAuthConfig
|
|
46
|
+
|
|
47
|
+
connector = JiraConnector(
|
|
48
|
+
auth_config=JiraAuthConfig(
|
|
49
|
+
username="...",
|
|
50
|
+
password="..."
|
|
51
|
+
)
|
|
52
|
+
)
|
|
53
|
+
result = await connector.issues.api_search()
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Full documentation
|
|
58
|
+
|
|
59
|
+
This connector supports the following entities and actions.
|
|
60
|
+
|
|
61
|
+
| Entity | Actions |
|
|
62
|
+
|--------|---------|
|
|
63
|
+
| Issues | [Api_search](./REFERENCE.md#issues-api_search), [Get](./REFERENCE.md#issues-get) |
|
|
64
|
+
| Projects | [Api_search](./REFERENCE.md#projects-api_search), [Get](./REFERENCE.md#projects-get) |
|
|
65
|
+
| Users | [Get](./REFERENCE.md#users-get), [List](./REFERENCE.md#users-list), [Api_search](./REFERENCE.md#users-api_search) |
|
|
66
|
+
| Issue Fields | [List](./REFERENCE.md#issue-fields-list), [Api_search](./REFERENCE.md#issue-fields-api_search) |
|
|
67
|
+
| Issue Comments | [List](./REFERENCE.md#issue-comments-list), [Get](./REFERENCE.md#issue-comments-get) |
|
|
68
|
+
| Issue Worklogs | [List](./REFERENCE.md#issue-worklogs-list), [Get](./REFERENCE.md#issue-worklogs-get) |
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
72
|
+
|
|
73
|
+
For the service's official API docs, see the [Jira API reference](https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/).
|
|
74
|
+
|
|
75
|
+
## Version information
|
|
76
|
+
|
|
77
|
+
- **Package version:** 0.1.35
|
|
78
|
+
- **Connector version:** 1.0.4
|
|
79
|
+
- **Generated with Connector SDK commit SHA:** 61a2e8229a38f13564ef2f85e276dff02f707573
|
|
@@ -8,23 +8,23 @@ The Jira connector supports the following entities and actions.
|
|
|
8
8
|
|
|
9
9
|
| Entity | Actions |
|
|
10
10
|
|--------|---------|
|
|
11
|
-
| Issues | [
|
|
12
|
-
| Projects | [
|
|
13
|
-
| Users | [Get](#users-get), [List](#users-list), [
|
|
14
|
-
| Issue Fields | [List](#issue-fields-list), [
|
|
11
|
+
| Issues | [Api_search](#issues-api_search), [Get](#issues-get) |
|
|
12
|
+
| Projects | [Api_search](#projects-api_search), [Get](#projects-get) |
|
|
13
|
+
| Users | [Get](#users-get), [List](#users-list), [Api_search](#users-api_search) |
|
|
14
|
+
| Issue Fields | [List](#issue-fields-list), [Api_search](#issue-fields-api_search) |
|
|
15
15
|
| Issue Comments | [List](#issue-comments-list), [Get](#issue-comments-get) |
|
|
16
16
|
| Issue Worklogs | [List](#issue-worklogs-list), [Get](#issue-worklogs-get) |
|
|
17
17
|
|
|
18
18
|
### Issues
|
|
19
19
|
|
|
20
|
-
#### Issues
|
|
20
|
+
#### Issues Api_search
|
|
21
21
|
|
|
22
22
|
Retrieve issues based on JQL query with pagination support
|
|
23
23
|
|
|
24
24
|
**Python SDK**
|
|
25
25
|
|
|
26
26
|
```python
|
|
27
|
-
await jira.issues.
|
|
27
|
+
await jira.issues.api_search()
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
**API**
|
|
@@ -35,7 +35,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
35
35
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
36
36
|
--data '{
|
|
37
37
|
"entity": "issues",
|
|
38
|
-
"action": "
|
|
38
|
+
"action": "api_search"
|
|
39
39
|
}'
|
|
40
40
|
```
|
|
41
41
|
|
|
@@ -137,14 +137,14 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
137
137
|
|
|
138
138
|
### Projects
|
|
139
139
|
|
|
140
|
-
#### Projects
|
|
140
|
+
#### Projects Api_search
|
|
141
141
|
|
|
142
142
|
Search and filter projects with advanced query parameters
|
|
143
143
|
|
|
144
144
|
**Python SDK**
|
|
145
145
|
|
|
146
146
|
```python
|
|
147
|
-
await jira.projects.
|
|
147
|
+
await jira.projects.api_search()
|
|
148
148
|
```
|
|
149
149
|
|
|
150
150
|
**API**
|
|
@@ -155,7 +155,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
155
155
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
156
156
|
--data '{
|
|
157
157
|
"entity": "projects",
|
|
158
|
-
"action": "
|
|
158
|
+
"action": "api_search"
|
|
159
159
|
}'
|
|
160
160
|
```
|
|
161
161
|
|
|
@@ -379,14 +379,37 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
379
379
|
| `maxResults` | `integer` | No | The maximum number of items to return per page (max 1000) |
|
|
380
380
|
|
|
381
381
|
|
|
382
|
-
|
|
382
|
+
<details>
|
|
383
|
+
<summary><b>Response Schema</b></summary>
|
|
384
|
+
|
|
385
|
+
**Records**
|
|
386
|
+
|
|
387
|
+
| Field Name | Type | Description |
|
|
388
|
+
|------------|------|-------------|
|
|
389
|
+
| `self` | `string` | |
|
|
390
|
+
| `accountId` | `string` | |
|
|
391
|
+
| `accountType` | `string` | |
|
|
392
|
+
| `emailAddress` | `string \| null` | |
|
|
393
|
+
| `avatarUrls` | `object` | |
|
|
394
|
+
| `displayName` | `string` | |
|
|
395
|
+
| `active` | `boolean` | |
|
|
396
|
+
| `timeZone` | `string \| null` | |
|
|
397
|
+
| `locale` | `string \| null` | |
|
|
398
|
+
| `expand` | `string \| null` | |
|
|
399
|
+
| `groups` | `object \| null` | |
|
|
400
|
+
| `applicationRoles` | `object \| null` | |
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
</details>
|
|
404
|
+
|
|
405
|
+
#### Users Api_search
|
|
383
406
|
|
|
384
407
|
Search for users using a query string
|
|
385
408
|
|
|
386
409
|
**Python SDK**
|
|
387
410
|
|
|
388
411
|
```python
|
|
389
|
-
await jira.users.
|
|
412
|
+
await jira.users.api_search()
|
|
390
413
|
```
|
|
391
414
|
|
|
392
415
|
**API**
|
|
@@ -397,7 +420,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
397
420
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
398
421
|
--data '{
|
|
399
422
|
"entity": "users",
|
|
400
|
-
"action": "
|
|
423
|
+
"action": "api_search"
|
|
401
424
|
}'
|
|
402
425
|
```
|
|
403
426
|
|
|
@@ -413,6 +436,29 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
413
436
|
| `property` | `string` | No | Property key to filter users |
|
|
414
437
|
|
|
415
438
|
|
|
439
|
+
<details>
|
|
440
|
+
<summary><b>Response Schema</b></summary>
|
|
441
|
+
|
|
442
|
+
**Records**
|
|
443
|
+
|
|
444
|
+
| Field Name | Type | Description |
|
|
445
|
+
|------------|------|-------------|
|
|
446
|
+
| `self` | `string` | |
|
|
447
|
+
| `accountId` | `string` | |
|
|
448
|
+
| `accountType` | `string` | |
|
|
449
|
+
| `emailAddress` | `string \| null` | |
|
|
450
|
+
| `avatarUrls` | `object` | |
|
|
451
|
+
| `displayName` | `string` | |
|
|
452
|
+
| `active` | `boolean` | |
|
|
453
|
+
| `timeZone` | `string \| null` | |
|
|
454
|
+
| `locale` | `string \| null` | |
|
|
455
|
+
| `expand` | `string \| null` | |
|
|
456
|
+
| `groups` | `object \| null` | |
|
|
457
|
+
| `applicationRoles` | `object \| null` | |
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
</details>
|
|
461
|
+
|
|
416
462
|
### Issue Fields
|
|
417
463
|
|
|
418
464
|
#### Issue Fields List
|
|
@@ -439,14 +485,42 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
439
485
|
|
|
440
486
|
|
|
441
487
|
|
|
442
|
-
|
|
488
|
+
<details>
|
|
489
|
+
<summary><b>Response Schema</b></summary>
|
|
490
|
+
|
|
491
|
+
**Records**
|
|
492
|
+
|
|
493
|
+
| Field Name | Type | Description |
|
|
494
|
+
|------------|------|-------------|
|
|
495
|
+
| `id` | `string` | |
|
|
496
|
+
| `key` | `string \| null` | |
|
|
497
|
+
| `name` | `string` | |
|
|
498
|
+
| `custom` | `boolean \| null` | |
|
|
499
|
+
| `orderable` | `boolean \| null` | |
|
|
500
|
+
| `navigable` | `boolean \| null` | |
|
|
501
|
+
| `searchable` | `boolean \| null` | |
|
|
502
|
+
| `clauseNames` | `array \| null` | |
|
|
503
|
+
| `schema` | `object \| null` | |
|
|
504
|
+
| `untranslatedName` | `string \| null` | |
|
|
505
|
+
| `typeDisplayName` | `string \| null` | |
|
|
506
|
+
| `description` | `string \| null` | |
|
|
507
|
+
| `searcherKey` | `string \| null` | |
|
|
508
|
+
| `screensCount` | `integer \| null` | |
|
|
509
|
+
| `contextsCount` | `integer \| null` | |
|
|
510
|
+
| `isLocked` | `boolean \| null` | |
|
|
511
|
+
| `lastUsed` | `string \| null` | |
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
</details>
|
|
515
|
+
|
|
516
|
+
#### Issue Fields Api_search
|
|
443
517
|
|
|
444
518
|
Search and filter issue fields with query parameters
|
|
445
519
|
|
|
446
520
|
**Python SDK**
|
|
447
521
|
|
|
448
522
|
```python
|
|
449
|
-
await jira.issue_fields.
|
|
523
|
+
await jira.issue_fields.api_search()
|
|
450
524
|
```
|
|
451
525
|
|
|
452
526
|
**API**
|
|
@@ -457,7 +531,7 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances/{your_connec
|
|
|
457
531
|
--header 'Authorization: Bearer {your_auth_token}' \
|
|
458
532
|
--data '{
|
|
459
533
|
"entity": "issue_fields",
|
|
460
|
-
"action": "
|
|
534
|
+
"action": "api_search"
|
|
461
535
|
}'
|
|
462
536
|
```
|
|
463
537
|
|
|
@@ -791,12 +865,12 @@ The Jira connector requires the following configuration variables. These variabl
|
|
|
791
865
|
The Jira connector supports the following authentication methods.
|
|
792
866
|
|
|
793
867
|
|
|
794
|
-
### Authentication
|
|
868
|
+
### Jira API Token Authentication
|
|
795
869
|
|
|
796
870
|
| Field Name | Type | Required | Description |
|
|
797
871
|
|------------|------|----------|-------------|
|
|
798
|
-
| `username` | `str` | Yes |
|
|
799
|
-
| `password` | `str` | Yes |
|
|
872
|
+
| `username` | `str` | Yes | Your Atlassian account email address |
|
|
873
|
+
| `password` | `str` | Yes | Your Jira API token from https://id.atlassian.com/manage-profile/security/api-tokens |
|
|
800
874
|
|
|
801
875
|
#### Example
|
|
802
876
|
|
|
@@ -805,8 +879,8 @@ The Jira connector supports the following authentication methods.
|
|
|
805
879
|
```python
|
|
806
880
|
JiraConnector(
|
|
807
881
|
auth_config=JiraAuthConfig(
|
|
808
|
-
username="<
|
|
809
|
-
password="<
|
|
882
|
+
username="<Your Atlassian account email address>",
|
|
883
|
+
password="<Your Jira API token from https://id.atlassian.com/manage-profile/security/api-tokens>"
|
|
810
884
|
)
|
|
811
885
|
)
|
|
812
886
|
```
|
|
@@ -820,8 +894,8 @@ curl --location 'https://api.airbyte.ai/api/v1/connectors/instances' \
|
|
|
820
894
|
--data '{
|
|
821
895
|
"connector_definition_id": "68e63de2-bb83-4c7e-93fa-a8a9051e3993",
|
|
822
896
|
"auth_config": {
|
|
823
|
-
"username": "<
|
|
824
|
-
"password": "<
|
|
897
|
+
"username": "<Your Atlassian account email address>",
|
|
898
|
+
"password": "<Your Jira API token from https://id.atlassian.com/manage-profile/security/api-tokens>"
|
|
825
899
|
},
|
|
826
900
|
"name": "My Jira Connector"
|
|
827
901
|
}'
|