airbyte-agent-asana 0.19.52__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_asana-0.19.52/.gitignore +29 -0
- airbyte_agent_asana-0.19.52/CHANGELOG.md +356 -0
- airbyte_agent_asana-0.19.52/PKG-INFO +147 -0
- airbyte_agent_asana-0.19.52/README.md +114 -0
- airbyte_agent_asana-0.19.52/REFERENCE.md +1744 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/__init__.py +263 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/__init__.py +1 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/auth_strategies.py +1120 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/connector_model_loader.py +965 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/executor/local_executor.py +1724 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/extensions.py +693 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http/response.py +104 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/http_client.py +693 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/logging/logger.py +273 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/logging/types.py +93 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/observability/session.py +103 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/base.py +164 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/components.py +239 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/connector.py +120 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/extensions.py +230 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/schema/security.py +223 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/telemetry/events.py +59 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/telemetry/tracker.py +155 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/types.py +245 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/_vendored/connector_sdk/validation.py +828 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/connector.py +1867 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/connector_model.py +1871 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/models.py +721 -0
- airbyte_agent_asana-0.19.52/airbyte_agent_asana/types.py +196 -0
- airbyte_agent_asana-0.19.52/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,356 @@
|
|
|
1
|
+
# Asana changelog
|
|
2
|
+
|
|
3
|
+
## [0.19.52] - 2026-01-21
|
|
4
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
5
|
+
- Source commit: d1df2c7c
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.19.51] - 2026-01-19
|
|
9
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
10
|
+
- Source commit: 529cebb7
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.19.50] - 2026-01-16
|
|
14
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
15
|
+
- Source commit: a50c8f71
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.19.49] - 2026-01-16
|
|
19
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
20
|
+
- Source commit: 49673b7b
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.19.48] - 2026-01-16
|
|
24
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
25
|
+
- Source commit: ca5acdda
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.19.47] - 2026-01-15
|
|
29
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
30
|
+
- Source commit: fa9a3b02
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.19.46] - 2026-01-15
|
|
34
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
35
|
+
- Source commit: 61a2e822
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.19.45] - 2026-01-15
|
|
39
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
40
|
+
- Source commit: 35211193
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.19.44] - 2026-01-15
|
|
44
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
45
|
+
- Source commit: 20b3afd9
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.19.43] - 2026-01-15
|
|
49
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
50
|
+
- Source commit: b7138b41
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.19.42] - 2026-01-15
|
|
54
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
55
|
+
- Source commit: 10173eb1
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.19.41] - 2026-01-15
|
|
59
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
60
|
+
- Source commit: a23d9e7a
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.19.40] - 2026-01-14
|
|
64
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
65
|
+
- Source commit: 7ef09816
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.19.39] - 2026-01-14
|
|
69
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
70
|
+
- Source commit: e6285db5
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
73
|
+
## [0.19.38] - 2026-01-14
|
|
74
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
75
|
+
- Source commit: 31de238d
|
|
76
|
+
- SDK version: 0.1.0
|
|
77
|
+
|
|
78
|
+
## [0.19.37] - 2026-01-13
|
|
79
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
80
|
+
- Source commit: e80a226e
|
|
81
|
+
- SDK version: 0.1.0
|
|
82
|
+
|
|
83
|
+
## [0.19.36] - 2026-01-13
|
|
84
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
85
|
+
- Source commit: 78b1be67
|
|
86
|
+
- SDK version: 0.1.0
|
|
87
|
+
|
|
88
|
+
## [0.19.35] - 2026-01-11
|
|
89
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
90
|
+
- Source commit: e519b73d
|
|
91
|
+
- SDK version: 0.1.0
|
|
92
|
+
|
|
93
|
+
## [0.19.34] - 2026-01-09
|
|
94
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
95
|
+
- Source commit: 3c7bfdfd
|
|
96
|
+
- SDK version: 0.1.0
|
|
97
|
+
|
|
98
|
+
## [0.19.33] - 2026-01-09
|
|
99
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
100
|
+
- Source commit: 3bcb33e8
|
|
101
|
+
- SDK version: 0.1.0
|
|
102
|
+
|
|
103
|
+
## [0.19.32] - 2026-01-09
|
|
104
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
105
|
+
- Source commit: da9b741b
|
|
106
|
+
- SDK version: 0.1.0
|
|
107
|
+
|
|
108
|
+
## [0.19.31] - 2026-01-07
|
|
109
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
110
|
+
- Source commit: d023e05f
|
|
111
|
+
- SDK version: 0.1.0
|
|
112
|
+
|
|
113
|
+
## [0.19.30] - 2026-01-06
|
|
114
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
115
|
+
- Source commit: 0580c727
|
|
116
|
+
- SDK version: 0.1.0
|
|
117
|
+
|
|
118
|
+
## [0.19.29] - 2026-01-06
|
|
119
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
120
|
+
- Source commit: e0e2f989
|
|
121
|
+
- SDK version: 0.1.0
|
|
122
|
+
|
|
123
|
+
## [0.19.28] - 2026-01-05
|
|
124
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
125
|
+
- Source commit: 3e274293
|
|
126
|
+
- SDK version: 0.1.0
|
|
127
|
+
|
|
128
|
+
## [0.19.27] - 2025-12-22
|
|
129
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
130
|
+
- Source commit: 0eb1b1c4
|
|
131
|
+
- SDK version: 0.1.0
|
|
132
|
+
|
|
133
|
+
## [0.19.26] - 2025-12-19
|
|
134
|
+
- Updated connector definition (YAML version 0.1.5)
|
|
135
|
+
- Source commit: 12f6b994
|
|
136
|
+
- SDK version: 0.1.0
|
|
137
|
+
|
|
138
|
+
## [0.19.25] - 2025-12-19
|
|
139
|
+
- Updated connector definition (YAML version 0.1.5)
|
|
140
|
+
- Source commit: 5d11bfdf
|
|
141
|
+
- SDK version: 0.1.0
|
|
142
|
+
|
|
143
|
+
## [0.19.24] - 2025-12-19
|
|
144
|
+
- Updated connector definition (YAML version 0.1.5)
|
|
145
|
+
- Source commit: e996e848
|
|
146
|
+
- SDK version: 0.1.0
|
|
147
|
+
|
|
148
|
+
## [0.19.23] - 2025-12-19
|
|
149
|
+
- Updated connector definition (YAML version 0.1.5)
|
|
150
|
+
- Source commit: 07f8a58d
|
|
151
|
+
- SDK version: 0.1.0
|
|
152
|
+
|
|
153
|
+
## [0.19.22] - 2025-12-18
|
|
154
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
155
|
+
- Source commit: f7c55d3e
|
|
156
|
+
- SDK version: 0.1.0
|
|
157
|
+
|
|
158
|
+
## [0.19.21] - 2025-12-17
|
|
159
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
160
|
+
- Source commit: af456521
|
|
161
|
+
- SDK version: 0.1.0
|
|
162
|
+
|
|
163
|
+
## [0.19.20] - 2025-12-17
|
|
164
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
165
|
+
- Source commit: 6a6c981e
|
|
166
|
+
- SDK version: 0.1.0
|
|
167
|
+
|
|
168
|
+
## [0.19.19] - 2025-12-15
|
|
169
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
170
|
+
- Source commit: c4c39c27
|
|
171
|
+
- SDK version: 0.1.0
|
|
172
|
+
|
|
173
|
+
## [0.19.18] - 2025-12-15
|
|
174
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
175
|
+
- Source commit: 85f4e6b0
|
|
176
|
+
- SDK version: 0.1.0
|
|
177
|
+
|
|
178
|
+
## [0.19.17] - 2025-12-15
|
|
179
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
180
|
+
- Source commit: 2a875885
|
|
181
|
+
- SDK version: 0.1.0
|
|
182
|
+
|
|
183
|
+
## [0.19.16] - 2025-12-15
|
|
184
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
185
|
+
- Source commit: 0bfa6500
|
|
186
|
+
- SDK version: 0.1.0
|
|
187
|
+
|
|
188
|
+
## [0.19.15] - 2025-12-15
|
|
189
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
190
|
+
- Source commit: f13dee0a
|
|
191
|
+
- SDK version: 0.1.0
|
|
192
|
+
|
|
193
|
+
## [0.19.14] - 2025-12-15
|
|
194
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
195
|
+
- Source commit: d79da1e7
|
|
196
|
+
- SDK version: 0.1.0
|
|
197
|
+
|
|
198
|
+
## [0.19.13] - 2025-12-15
|
|
199
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
200
|
+
- Source commit: 22888961
|
|
201
|
+
- SDK version: 0.1.0
|
|
202
|
+
|
|
203
|
+
## [0.19.12] - 2025-12-15
|
|
204
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
205
|
+
- Source commit: 114c8114
|
|
206
|
+
- SDK version: 0.1.0
|
|
207
|
+
|
|
208
|
+
## [0.19.11] - 2025-12-15
|
|
209
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
210
|
+
- Source commit: 06e7d5c6
|
|
211
|
+
- SDK version: 0.1.0
|
|
212
|
+
|
|
213
|
+
## [0.19.10] - 2025-12-13
|
|
214
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
215
|
+
- Source commit: 1ab72bd8
|
|
216
|
+
- SDK version: 0.1.0
|
|
217
|
+
|
|
218
|
+
## [0.19.9] - 2025-12-12
|
|
219
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
220
|
+
- Source commit: 4d366cb5
|
|
221
|
+
- SDK version: 0.1.0
|
|
222
|
+
|
|
223
|
+
## [0.19.8] - 2025-12-12
|
|
224
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
225
|
+
- Source commit: dc79dc8b
|
|
226
|
+
- SDK version: 0.1.0
|
|
227
|
+
|
|
228
|
+
## [0.19.7] - 2025-12-12
|
|
229
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
230
|
+
- Source commit: 9f7f8a98
|
|
231
|
+
- SDK version: 0.1.0
|
|
232
|
+
|
|
233
|
+
## [0.19.6] - 2025-12-11
|
|
234
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
235
|
+
- Source commit: 8c06aa10
|
|
236
|
+
- SDK version: 0.1.0
|
|
237
|
+
|
|
238
|
+
## [0.19.5] - 2025-12-11
|
|
239
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
240
|
+
- Source commit: 11427ac3
|
|
241
|
+
- SDK version: 0.1.0
|
|
242
|
+
|
|
243
|
+
## [0.19.4] - 2025-12-11
|
|
244
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
245
|
+
- Source commit: bdd5df6d
|
|
246
|
+
- SDK version: 0.1.0
|
|
247
|
+
|
|
248
|
+
## [0.19.3] - 2025-12-11
|
|
249
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
250
|
+
- Source commit: f2497f71
|
|
251
|
+
- SDK version: 0.1.0
|
|
252
|
+
|
|
253
|
+
## [0.19.2] - 2025-12-11
|
|
254
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
255
|
+
- Source commit: 7d738be5
|
|
256
|
+
- SDK version: 0.1.0
|
|
257
|
+
|
|
258
|
+
## [0.19.1] - 2025-12-10
|
|
259
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
260
|
+
- Source commit: 76636830
|
|
261
|
+
- SDK version: 0.1.0
|
|
262
|
+
|
|
263
|
+
## [0.19.0] - 2025-12-08
|
|
264
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
265
|
+
- Source commit: f2ad5029
|
|
266
|
+
- SDK version: 0.1.0
|
|
267
|
+
|
|
268
|
+
## [0.18.0] - 2025-12-08
|
|
269
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
270
|
+
- Source commit: 139b0b0d
|
|
271
|
+
- SDK version: 0.1.0
|
|
272
|
+
|
|
273
|
+
## [0.17.0] - 2025-12-05
|
|
274
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
275
|
+
- Source commit: e96bed3d
|
|
276
|
+
- SDK version: 0.1.0
|
|
277
|
+
|
|
278
|
+
## [0.16.0] - 2025-12-05
|
|
279
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
280
|
+
- Source commit: ed697b90
|
|
281
|
+
- SDK version: 0.1.0
|
|
282
|
+
|
|
283
|
+
## [0.15.0] - 2025-12-05
|
|
284
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
285
|
+
- Source commit: 20618410
|
|
286
|
+
- SDK version: 0.1.0
|
|
287
|
+
|
|
288
|
+
## [0.14.0] - 2025-12-04
|
|
289
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
290
|
+
- Source commit: 4a01e446
|
|
291
|
+
- SDK version: 0.1.0
|
|
292
|
+
|
|
293
|
+
## [0.13.0] - 2025-12-04
|
|
294
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
295
|
+
- Source commit: 5ec76dde
|
|
296
|
+
- SDK version: 0.1.0
|
|
297
|
+
|
|
298
|
+
## [0.12.0] - 2025-12-04
|
|
299
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
300
|
+
- Source commit: df32a458
|
|
301
|
+
- SDK version: 0.1.0
|
|
302
|
+
|
|
303
|
+
## [0.11.0] - 2025-12-04
|
|
304
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
305
|
+
- Source commit: a506b369
|
|
306
|
+
- SDK version: 0.1.0
|
|
307
|
+
|
|
308
|
+
## [0.10.0] - 2025-12-03
|
|
309
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
310
|
+
- Source commit: 92a39ab5
|
|
311
|
+
- SDK version: 0.1.0
|
|
312
|
+
|
|
313
|
+
## [0.9.0] - 2025-12-03
|
|
314
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
315
|
+
- Source commit: 0ce38253
|
|
316
|
+
- SDK version: 0.1.0
|
|
317
|
+
|
|
318
|
+
## [0.8.0] - 2025-12-02
|
|
319
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
320
|
+
- Source commit: c8e326d9
|
|
321
|
+
- SDK version: 0.1.0
|
|
322
|
+
|
|
323
|
+
## [0.7.0] - 2025-12-02
|
|
324
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
325
|
+
- Source commit: ad0b961b
|
|
326
|
+
- SDK version: 0.1.0
|
|
327
|
+
|
|
328
|
+
## [0.6.0] - 2025-12-02
|
|
329
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
330
|
+
- Source commit: 7153780a
|
|
331
|
+
- SDK version: 0.1.0
|
|
332
|
+
|
|
333
|
+
## [0.5.0] - 2025-12-02
|
|
334
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
335
|
+
- Source commit: 01f71cad
|
|
336
|
+
- SDK version: 0.1.0
|
|
337
|
+
|
|
338
|
+
## [0.4.0] - 2025-12-02
|
|
339
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
340
|
+
- Source commit: 4c17f060
|
|
341
|
+
- SDK version: 0.1.0
|
|
342
|
+
|
|
343
|
+
## [0.3.0] - 2025-12-02
|
|
344
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
345
|
+
- Source commit: 430a4e68
|
|
346
|
+
- SDK version: 0.1.0
|
|
347
|
+
|
|
348
|
+
## [0.2.0] - 2025-12-02
|
|
349
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
350
|
+
- Source commit: cd499acd
|
|
351
|
+
- SDK version: 0.1.0
|
|
352
|
+
|
|
353
|
+
## [0.1.0] - 2025-12-02
|
|
354
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
355
|
+
- Source commit: b261c3a2
|
|
356
|
+
- SDK version: 0.1.0
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-asana
|
|
3
|
+
Version: 0.19.52
|
|
4
|
+
Summary: Airbyte Asana 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,asana,connector,data-integration,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
|
+
# Asana agent connector
|
|
35
|
+
|
|
36
|
+
Asana is a work management platform that helps teams organize, track, and manage
|
|
37
|
+
projects and tasks. This connector provides access to tasks, projects, workspaces,
|
|
38
|
+
teams, and users for project tracking, workload analysis, and productivity insights.
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## Example questions
|
|
42
|
+
|
|
43
|
+
The Asana connector is optimized to handle prompts like these.
|
|
44
|
+
|
|
45
|
+
- What tasks are assigned to me this week?
|
|
46
|
+
- List all projects in my workspace
|
|
47
|
+
- Summarize my team's workload and task completion rates
|
|
48
|
+
- Show me the tasks for the \{project_name\} project
|
|
49
|
+
- Who are the team members in my \{team_name\} team?
|
|
50
|
+
- Find all tasks related to \{client_name\} across my workspaces
|
|
51
|
+
- Analyze the most active projects in my workspace last month
|
|
52
|
+
- Compare task completion rates between my different teams
|
|
53
|
+
- Identify overdue tasks across all my projects
|
|
54
|
+
- Show me details of my current workspace and its users
|
|
55
|
+
|
|
56
|
+
## Unsupported questions
|
|
57
|
+
|
|
58
|
+
The Asana connector isn't currently able to handle prompts like these.
|
|
59
|
+
|
|
60
|
+
- Create a new task for [TeamMember]
|
|
61
|
+
- Update the priority of this task
|
|
62
|
+
- Delete the project [ProjectName]
|
|
63
|
+
- Schedule a new team meeting
|
|
64
|
+
- Add a new team member to [Workspace]
|
|
65
|
+
- Move this task to another project
|
|
66
|
+
|
|
67
|
+
## Installation
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
uv pip install airbyte-agent-asana
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Usage
|
|
74
|
+
|
|
75
|
+
This connector supports multiple authentication methods:
|
|
76
|
+
|
|
77
|
+
### OAuth 2
|
|
78
|
+
|
|
79
|
+
```python
|
|
80
|
+
from airbyte_agent_asana import AsanaConnector
|
|
81
|
+
from airbyte_agent_asana.models import AsanaOauth2AuthConfig
|
|
82
|
+
|
|
83
|
+
connector = AsanaConnector(
|
|
84
|
+
auth_config=AsanaOauth2AuthConfig(
|
|
85
|
+
access_token="...",
|
|
86
|
+
refresh_token="...",
|
|
87
|
+
client_id="...",
|
|
88
|
+
client_secret="..."
|
|
89
|
+
)
|
|
90
|
+
)
|
|
91
|
+
result = await connector.tasks.list()
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### Personal Access Token
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
from airbyte_agent_asana import AsanaConnector
|
|
98
|
+
from airbyte_agent_asana.models import AsanaPersonalAccessTokenAuthConfig
|
|
99
|
+
|
|
100
|
+
connector = AsanaConnector(
|
|
101
|
+
auth_config=AsanaPersonalAccessTokenAuthConfig(
|
|
102
|
+
token="..."
|
|
103
|
+
)
|
|
104
|
+
)
|
|
105
|
+
result = await connector.tasks.list()
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
## Full documentation
|
|
110
|
+
|
|
111
|
+
This connector supports the following entities and actions.
|
|
112
|
+
|
|
113
|
+
| Entity | Actions |
|
|
114
|
+
|--------|---------|
|
|
115
|
+
| Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get) |
|
|
116
|
+
| Project Tasks | [List](./REFERENCE.md#project-tasks-list) |
|
|
117
|
+
| Workspace Task Search | [List](./REFERENCE.md#workspace-task-search-list) |
|
|
118
|
+
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
119
|
+
| Task Projects | [List](./REFERENCE.md#task-projects-list) |
|
|
120
|
+
| Team Projects | [List](./REFERENCE.md#team-projects-list) |
|
|
121
|
+
| Workspace Projects | [List](./REFERENCE.md#workspace-projects-list) |
|
|
122
|
+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Get](./REFERENCE.md#workspaces-get) |
|
|
123
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
124
|
+
| Workspace Users | [List](./REFERENCE.md#workspace-users-list) |
|
|
125
|
+
| Team Users | [List](./REFERENCE.md#team-users-list) |
|
|
126
|
+
| Teams | [Get](./REFERENCE.md#teams-get) |
|
|
127
|
+
| Workspace Teams | [List](./REFERENCE.md#workspace-teams-list) |
|
|
128
|
+
| User Teams | [List](./REFERENCE.md#user-teams-list) |
|
|
129
|
+
| Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
130
|
+
| Workspace Tags | [List](./REFERENCE.md#workspace-tags-list) |
|
|
131
|
+
| Tags | [Get](./REFERENCE.md#tags-get) |
|
|
132
|
+
| Project Sections | [List](./REFERENCE.md#project-sections-list) |
|
|
133
|
+
| Sections | [Get](./REFERENCE.md#sections-get) |
|
|
134
|
+
| Task Subtasks | [List](./REFERENCE.md#task-subtasks-list) |
|
|
135
|
+
| Task Dependencies | [List](./REFERENCE.md#task-dependencies-list) |
|
|
136
|
+
| Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
140
|
+
|
|
141
|
+
For the service's official API docs, see the [Asana API reference](https://developers.asana.com/reference/rest-api-reference).
|
|
142
|
+
|
|
143
|
+
## Version information
|
|
144
|
+
|
|
145
|
+
- **Package version:** 0.19.52
|
|
146
|
+
- **Connector version:** 0.1.7
|
|
147
|
+
- **Generated with Connector SDK commit SHA:** d1df2c7c65d88b9c401dc745a27bd3b7e5de9cef
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
# Asana agent connector
|
|
2
|
+
|
|
3
|
+
Asana is a work management platform that helps teams organize, track, and manage
|
|
4
|
+
projects and tasks. This connector provides access to tasks, projects, workspaces,
|
|
5
|
+
teams, and users for project tracking, workload analysis, and productivity insights.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Example questions
|
|
9
|
+
|
|
10
|
+
The Asana connector is optimized to handle prompts like these.
|
|
11
|
+
|
|
12
|
+
- What tasks are assigned to me this week?
|
|
13
|
+
- List all projects in my workspace
|
|
14
|
+
- Summarize my team's workload and task completion rates
|
|
15
|
+
- Show me the tasks for the \{project_name\} project
|
|
16
|
+
- Who are the team members in my \{team_name\} team?
|
|
17
|
+
- Find all tasks related to \{client_name\} across my workspaces
|
|
18
|
+
- Analyze the most active projects in my workspace last month
|
|
19
|
+
- Compare task completion rates between my different teams
|
|
20
|
+
- Identify overdue tasks across all my projects
|
|
21
|
+
- Show me details of my current workspace and its users
|
|
22
|
+
|
|
23
|
+
## Unsupported questions
|
|
24
|
+
|
|
25
|
+
The Asana connector isn't currently able to handle prompts like these.
|
|
26
|
+
|
|
27
|
+
- Create a new task for [TeamMember]
|
|
28
|
+
- Update the priority of this task
|
|
29
|
+
- Delete the project [ProjectName]
|
|
30
|
+
- Schedule a new team meeting
|
|
31
|
+
- Add a new team member to [Workspace]
|
|
32
|
+
- Move this task to another project
|
|
33
|
+
|
|
34
|
+
## Installation
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
uv pip install airbyte-agent-asana
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
This connector supports multiple authentication methods:
|
|
43
|
+
|
|
44
|
+
### OAuth 2
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
from airbyte_agent_asana import AsanaConnector
|
|
48
|
+
from airbyte_agent_asana.models import AsanaOauth2AuthConfig
|
|
49
|
+
|
|
50
|
+
connector = AsanaConnector(
|
|
51
|
+
auth_config=AsanaOauth2AuthConfig(
|
|
52
|
+
access_token="...",
|
|
53
|
+
refresh_token="...",
|
|
54
|
+
client_id="...",
|
|
55
|
+
client_secret="..."
|
|
56
|
+
)
|
|
57
|
+
)
|
|
58
|
+
result = await connector.tasks.list()
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Personal Access Token
|
|
62
|
+
|
|
63
|
+
```python
|
|
64
|
+
from airbyte_agent_asana import AsanaConnector
|
|
65
|
+
from airbyte_agent_asana.models import AsanaPersonalAccessTokenAuthConfig
|
|
66
|
+
|
|
67
|
+
connector = AsanaConnector(
|
|
68
|
+
auth_config=AsanaPersonalAccessTokenAuthConfig(
|
|
69
|
+
token="..."
|
|
70
|
+
)
|
|
71
|
+
)
|
|
72
|
+
result = await connector.tasks.list()
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
## Full documentation
|
|
77
|
+
|
|
78
|
+
This connector supports the following entities and actions.
|
|
79
|
+
|
|
80
|
+
| Entity | Actions |
|
|
81
|
+
|--------|---------|
|
|
82
|
+
| Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get) |
|
|
83
|
+
| Project Tasks | [List](./REFERENCE.md#project-tasks-list) |
|
|
84
|
+
| Workspace Task Search | [List](./REFERENCE.md#workspace-task-search-list) |
|
|
85
|
+
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
86
|
+
| Task Projects | [List](./REFERENCE.md#task-projects-list) |
|
|
87
|
+
| Team Projects | [List](./REFERENCE.md#team-projects-list) |
|
|
88
|
+
| Workspace Projects | [List](./REFERENCE.md#workspace-projects-list) |
|
|
89
|
+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Get](./REFERENCE.md#workspaces-get) |
|
|
90
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
91
|
+
| Workspace Users | [List](./REFERENCE.md#workspace-users-list) |
|
|
92
|
+
| Team Users | [List](./REFERENCE.md#team-users-list) |
|
|
93
|
+
| Teams | [Get](./REFERENCE.md#teams-get) |
|
|
94
|
+
| Workspace Teams | [List](./REFERENCE.md#workspace-teams-list) |
|
|
95
|
+
| User Teams | [List](./REFERENCE.md#user-teams-list) |
|
|
96
|
+
| Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
97
|
+
| Workspace Tags | [List](./REFERENCE.md#workspace-tags-list) |
|
|
98
|
+
| Tags | [Get](./REFERENCE.md#tags-get) |
|
|
99
|
+
| Project Sections | [List](./REFERENCE.md#project-sections-list) |
|
|
100
|
+
| Sections | [Get](./REFERENCE.md#sections-get) |
|
|
101
|
+
| Task Subtasks | [List](./REFERENCE.md#task-subtasks-list) |
|
|
102
|
+
| Task Dependencies | [List](./REFERENCE.md#task-dependencies-list) |
|
|
103
|
+
| Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
107
|
+
|
|
108
|
+
For the service's official API docs, see the [Asana API reference](https://developers.asana.com/reference/rest-api-reference).
|
|
109
|
+
|
|
110
|
+
## Version information
|
|
111
|
+
|
|
112
|
+
- **Package version:** 0.19.52
|
|
113
|
+
- **Connector version:** 0.1.7
|
|
114
|
+
- **Generated with Connector SDK commit SHA:** d1df2c7c65d88b9c401dc745a27bd3b7e5de9cef
|