airbyte-agent-asana 0.19.18__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.
Potentially problematic release.
This version of airbyte-agent-asana might be problematic. Click here for more details.
- airbyte_agent_asana-0.19.18/.gitignore +29 -0
- airbyte_agent_asana-0.19.18/CHANGELOG.md +186 -0
- airbyte_agent_asana-0.19.18/PKG-INFO +124 -0
- airbyte_agent_asana-0.19.18/README.md +90 -0
- airbyte_agent_asana-0.19.18/REFERENCE.md +1738 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/__init__.py +145 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/__init__.py +1 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/connector_model_loader.py +938 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py +188 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/executor/local_executor.py +1504 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/extensions.py +655 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http_client.py +679 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/base.py +160 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/components.py +238 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/security.py +213 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/types.py +239 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/connector.py +1772 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/connector_model.py +1863 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/models.py +744 -0
- airbyte_agent_asana-0.19.18/airbyte_agent_asana/types.py +195 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/__init__.py +145 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/__init__.py +1 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/config_loader.py +938 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/hosted_executor.py +188 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/local_executor.py +1493 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/extensions.py +655 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http_client.py +679 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/base.py +160 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/components.py +238 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/security.py +213 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/types.py +239 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/validation.py +819 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/connector.py +1782 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/connector.yaml +2088 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/models.py +744 -0
- airbyte_agent_asana-0.19.18/airbyte_ai_asana/types.py +195 -0
- airbyte_agent_asana-0.19.18/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,186 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.19.18] - 2025-12-15
|
|
4
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
5
|
+
- Source commit: 85f4e6b0
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.19.17] - 2025-12-15
|
|
9
|
+
- Updated connector definition (YAML version 0.1.4)
|
|
10
|
+
- Source commit: 2a875885
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.19.16] - 2025-12-15
|
|
14
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
15
|
+
- Source commit: 0bfa6500
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.19.15] - 2025-12-15
|
|
19
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
20
|
+
- Source commit: f13dee0a
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.19.14] - 2025-12-15
|
|
24
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
25
|
+
- Source commit: d79da1e7
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.19.13] - 2025-12-15
|
|
29
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
30
|
+
- Source commit: 22888961
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.19.12] - 2025-12-15
|
|
34
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
35
|
+
- Source commit: 114c8114
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.19.11] - 2025-12-15
|
|
39
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
40
|
+
- Source commit: 06e7d5c6
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.19.10] - 2025-12-13
|
|
44
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
45
|
+
- Source commit: 1ab72bd8
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.19.9] - 2025-12-12
|
|
49
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
50
|
+
- Source commit: 4d366cb5
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.19.8] - 2025-12-12
|
|
54
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
55
|
+
- Source commit: dc79dc8b
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.19.7] - 2025-12-12
|
|
59
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
60
|
+
- Source commit: 9f7f8a98
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.19.6] - 2025-12-11
|
|
64
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
65
|
+
- Source commit: 8c06aa10
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.19.5] - 2025-12-11
|
|
69
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
70
|
+
- Source commit: 11427ac3
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
73
|
+
## [0.19.4] - 2025-12-11
|
|
74
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
75
|
+
- Source commit: bdd5df6d
|
|
76
|
+
- SDK version: 0.1.0
|
|
77
|
+
|
|
78
|
+
## [0.19.3] - 2025-12-11
|
|
79
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
80
|
+
- Source commit: f2497f71
|
|
81
|
+
- SDK version: 0.1.0
|
|
82
|
+
|
|
83
|
+
## [0.19.2] - 2025-12-11
|
|
84
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
85
|
+
- Source commit: 7d738be5
|
|
86
|
+
- SDK version: 0.1.0
|
|
87
|
+
|
|
88
|
+
## [0.19.1] - 2025-12-10
|
|
89
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
90
|
+
- Source commit: 76636830
|
|
91
|
+
- SDK version: 0.1.0
|
|
92
|
+
|
|
93
|
+
## [0.19.0] - 2025-12-08
|
|
94
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
95
|
+
- Source commit: f2ad5029
|
|
96
|
+
- SDK version: 0.1.0
|
|
97
|
+
|
|
98
|
+
## [0.18.0] - 2025-12-08
|
|
99
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
100
|
+
- Source commit: 139b0b0d
|
|
101
|
+
- SDK version: 0.1.0
|
|
102
|
+
|
|
103
|
+
## [0.17.0] - 2025-12-05
|
|
104
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
105
|
+
- Source commit: e96bed3d
|
|
106
|
+
- SDK version: 0.1.0
|
|
107
|
+
|
|
108
|
+
## [0.16.0] - 2025-12-05
|
|
109
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
110
|
+
- Source commit: ed697b90
|
|
111
|
+
- SDK version: 0.1.0
|
|
112
|
+
|
|
113
|
+
## [0.15.0] - 2025-12-05
|
|
114
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
115
|
+
- Source commit: 20618410
|
|
116
|
+
- SDK version: 0.1.0
|
|
117
|
+
|
|
118
|
+
## [0.14.0] - 2025-12-04
|
|
119
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
120
|
+
- Source commit: 4a01e446
|
|
121
|
+
- SDK version: 0.1.0
|
|
122
|
+
|
|
123
|
+
## [0.13.0] - 2025-12-04
|
|
124
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
125
|
+
- Source commit: 5ec76dde
|
|
126
|
+
- SDK version: 0.1.0
|
|
127
|
+
|
|
128
|
+
## [0.12.0] - 2025-12-04
|
|
129
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
130
|
+
- Source commit: df32a458
|
|
131
|
+
- SDK version: 0.1.0
|
|
132
|
+
|
|
133
|
+
## [0.11.0] - 2025-12-04
|
|
134
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
135
|
+
- Source commit: a506b369
|
|
136
|
+
- SDK version: 0.1.0
|
|
137
|
+
|
|
138
|
+
## [0.10.0] - 2025-12-03
|
|
139
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
140
|
+
- Source commit: 92a39ab5
|
|
141
|
+
- SDK version: 0.1.0
|
|
142
|
+
|
|
143
|
+
## [0.9.0] - 2025-12-03
|
|
144
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
145
|
+
- Source commit: 0ce38253
|
|
146
|
+
- SDK version: 0.1.0
|
|
147
|
+
|
|
148
|
+
## [0.8.0] - 2025-12-02
|
|
149
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
150
|
+
- Source commit: c8e326d9
|
|
151
|
+
- SDK version: 0.1.0
|
|
152
|
+
|
|
153
|
+
## [0.7.0] - 2025-12-02
|
|
154
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
155
|
+
- Source commit: ad0b961b
|
|
156
|
+
- SDK version: 0.1.0
|
|
157
|
+
|
|
158
|
+
## [0.6.0] - 2025-12-02
|
|
159
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
160
|
+
- Source commit: 7153780a
|
|
161
|
+
- SDK version: 0.1.0
|
|
162
|
+
|
|
163
|
+
## [0.5.0] - 2025-12-02
|
|
164
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
165
|
+
- Source commit: 01f71cad
|
|
166
|
+
- SDK version: 0.1.0
|
|
167
|
+
|
|
168
|
+
## [0.4.0] - 2025-12-02
|
|
169
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
170
|
+
- Source commit: 4c17f060
|
|
171
|
+
- SDK version: 0.1.0
|
|
172
|
+
|
|
173
|
+
## [0.3.0] - 2025-12-02
|
|
174
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
175
|
+
- Source commit: 430a4e68
|
|
176
|
+
- SDK version: 0.1.0
|
|
177
|
+
|
|
178
|
+
## [0.2.0] - 2025-12-02
|
|
179
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
180
|
+
- Source commit: cd499acd
|
|
181
|
+
- SDK version: 0.1.0
|
|
182
|
+
|
|
183
|
+
## [0.1.0] - 2025-12-02
|
|
184
|
+
- Updated connector definition (YAML version 1.0.0)
|
|
185
|
+
- Source commit: b261c3a2
|
|
186
|
+
- SDK version: 0.1.0
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-asana
|
|
3
|
+
Version: 0.19.18
|
|
4
|
+
Summary: Airbyte Asana 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,asana,connector
|
|
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
|
+
# Airbyte Asana AI Connector
|
|
36
|
+
|
|
37
|
+
Asana is a work management platform that helps teams organize, track, and manage
|
|
38
|
+
projects and tasks. This connector provides access to tasks, projects, workspaces,
|
|
39
|
+
teams, and users for project tracking, workload analysis, and productivity insights.
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## Example Questions
|
|
43
|
+
|
|
44
|
+
- What tasks are assigned to me this week?
|
|
45
|
+
- List all projects in my workspace
|
|
46
|
+
- Summarize my team's workload and task completion rates
|
|
47
|
+
- Show me the tasks for the [ProjectName] project
|
|
48
|
+
- Who are the team members in my [TeamName] team?
|
|
49
|
+
- Find all tasks related to [ClientName] across my workspaces
|
|
50
|
+
- Analyze the most active projects in my workspace last month
|
|
51
|
+
- Compare task completion rates between my different teams
|
|
52
|
+
- Identify overdue tasks across all my projects
|
|
53
|
+
- Show me details of my current workspace and its users
|
|
54
|
+
|
|
55
|
+
## Unsupported Questions
|
|
56
|
+
|
|
57
|
+
- Create a new task for [TeamMember]
|
|
58
|
+
- Update the priority of this task
|
|
59
|
+
- Delete the project [ProjectName]
|
|
60
|
+
- Schedule a new team meeting
|
|
61
|
+
- Add a new team member to [Workspace]
|
|
62
|
+
- Move this task to another project
|
|
63
|
+
|
|
64
|
+
## Installation
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
uv pip install airbyte-agent-asana
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Usage
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
from airbyte_agent_asana import AsanaConnector, AsanaAuthConfig
|
|
74
|
+
|
|
75
|
+
connector = AsanaConnector(
|
|
76
|
+
auth_config=AsanaAuthConfig(
|
|
77
|
+
access_token="...",
|
|
78
|
+
refresh_token="...",
|
|
79
|
+
client_id="...",
|
|
80
|
+
client_secret="..."
|
|
81
|
+
)
|
|
82
|
+
)
|
|
83
|
+
result = connector.tasks.list()
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Documentation
|
|
87
|
+
|
|
88
|
+
| Entity | Actions |
|
|
89
|
+
|--------|---------|
|
|
90
|
+
| Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get) |
|
|
91
|
+
| Project Tasks | [List](./REFERENCE.md#project-tasks-list) |
|
|
92
|
+
| Workspace Task Search | [List](./REFERENCE.md#workspace-task-search-list) |
|
|
93
|
+
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
94
|
+
| Task Projects | [List](./REFERENCE.md#task-projects-list) |
|
|
95
|
+
| Team Projects | [List](./REFERENCE.md#team-projects-list) |
|
|
96
|
+
| Workspace Projects | [List](./REFERENCE.md#workspace-projects-list) |
|
|
97
|
+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Get](./REFERENCE.md#workspaces-get) |
|
|
98
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
99
|
+
| Workspace Users | [List](./REFERENCE.md#workspace-users-list) |
|
|
100
|
+
| Team Users | [List](./REFERENCE.md#team-users-list) |
|
|
101
|
+
| Teams | [Get](./REFERENCE.md#teams-get) |
|
|
102
|
+
| Workspace Teams | [List](./REFERENCE.md#workspace-teams-list) |
|
|
103
|
+
| User Teams | [List](./REFERENCE.md#user-teams-list) |
|
|
104
|
+
| Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
105
|
+
| Workspace Tags | [List](./REFERENCE.md#workspace-tags-list) |
|
|
106
|
+
| Tags | [Get](./REFERENCE.md#tags-get) |
|
|
107
|
+
| Project Sections | [List](./REFERENCE.md#project-sections-list) |
|
|
108
|
+
| Sections | [Get](./REFERENCE.md#sections-get) |
|
|
109
|
+
| Task Subtasks | [List](./REFERENCE.md#task-subtasks-list) |
|
|
110
|
+
| Task Dependencies | [List](./REFERENCE.md#task-dependencies-list) |
|
|
111
|
+
| Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
For detailed documentation on available actions and parameters, see [REFERENCE.md](./REFERENCE.md).
|
|
115
|
+
|
|
116
|
+
For the service's official API docs, see [Asana API Reference](https://developers.asana.com/reference/rest-api-reference).
|
|
117
|
+
|
|
118
|
+
## Version Information
|
|
119
|
+
|
|
120
|
+
**Package Version:** 0.19.18
|
|
121
|
+
|
|
122
|
+
**Connector Version:** 0.1.4
|
|
123
|
+
|
|
124
|
+
**Generated with connector-sdk:** 85f4e6b03728cce87761a48e33f02aab68255baf
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# Airbyte Asana AI 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
|
+
- What tasks are assigned to me this week?
|
|
11
|
+
- List all projects in my workspace
|
|
12
|
+
- Summarize my team's workload and task completion rates
|
|
13
|
+
- Show me the tasks for the [ProjectName] project
|
|
14
|
+
- Who are the team members in my [TeamName] team?
|
|
15
|
+
- Find all tasks related to [ClientName] across my workspaces
|
|
16
|
+
- Analyze the most active projects in my workspace last month
|
|
17
|
+
- Compare task completion rates between my different teams
|
|
18
|
+
- Identify overdue tasks across all my projects
|
|
19
|
+
- Show me details of my current workspace and its users
|
|
20
|
+
|
|
21
|
+
## Unsupported Questions
|
|
22
|
+
|
|
23
|
+
- Create a new task for [TeamMember]
|
|
24
|
+
- Update the priority of this task
|
|
25
|
+
- Delete the project [ProjectName]
|
|
26
|
+
- Schedule a new team meeting
|
|
27
|
+
- Add a new team member to [Workspace]
|
|
28
|
+
- Move this task to another project
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
uv pip install airbyte-agent-asana
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Usage
|
|
37
|
+
|
|
38
|
+
```python
|
|
39
|
+
from airbyte_agent_asana import AsanaConnector, AsanaAuthConfig
|
|
40
|
+
|
|
41
|
+
connector = AsanaConnector(
|
|
42
|
+
auth_config=AsanaAuthConfig(
|
|
43
|
+
access_token="...",
|
|
44
|
+
refresh_token="...",
|
|
45
|
+
client_id="...",
|
|
46
|
+
client_secret="..."
|
|
47
|
+
)
|
|
48
|
+
)
|
|
49
|
+
result = connector.tasks.list()
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Documentation
|
|
53
|
+
|
|
54
|
+
| Entity | Actions |
|
|
55
|
+
|--------|---------|
|
|
56
|
+
| Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get) |
|
|
57
|
+
| Project Tasks | [List](./REFERENCE.md#project-tasks-list) |
|
|
58
|
+
| Workspace Task Search | [List](./REFERENCE.md#workspace-task-search-list) |
|
|
59
|
+
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
60
|
+
| Task Projects | [List](./REFERENCE.md#task-projects-list) |
|
|
61
|
+
| Team Projects | [List](./REFERENCE.md#team-projects-list) |
|
|
62
|
+
| Workspace Projects | [List](./REFERENCE.md#workspace-projects-list) |
|
|
63
|
+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Get](./REFERENCE.md#workspaces-get) |
|
|
64
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
65
|
+
| Workspace Users | [List](./REFERENCE.md#workspace-users-list) |
|
|
66
|
+
| Team Users | [List](./REFERENCE.md#team-users-list) |
|
|
67
|
+
| Teams | [Get](./REFERENCE.md#teams-get) |
|
|
68
|
+
| Workspace Teams | [List](./REFERENCE.md#workspace-teams-list) |
|
|
69
|
+
| User Teams | [List](./REFERENCE.md#user-teams-list) |
|
|
70
|
+
| Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
71
|
+
| Workspace Tags | [List](./REFERENCE.md#workspace-tags-list) |
|
|
72
|
+
| Tags | [Get](./REFERENCE.md#tags-get) |
|
|
73
|
+
| Project Sections | [List](./REFERENCE.md#project-sections-list) |
|
|
74
|
+
| Sections | [Get](./REFERENCE.md#sections-get) |
|
|
75
|
+
| Task Subtasks | [List](./REFERENCE.md#task-subtasks-list) |
|
|
76
|
+
| Task Dependencies | [List](./REFERENCE.md#task-dependencies-list) |
|
|
77
|
+
| Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
For detailed documentation on available actions and parameters, see [REFERENCE.md](./REFERENCE.md).
|
|
81
|
+
|
|
82
|
+
For the service's official API docs, see [Asana API Reference](https://developers.asana.com/reference/rest-api-reference).
|
|
83
|
+
|
|
84
|
+
## Version Information
|
|
85
|
+
|
|
86
|
+
**Package Version:** 0.19.18
|
|
87
|
+
|
|
88
|
+
**Connector Version:** 0.1.4
|
|
89
|
+
|
|
90
|
+
**Generated with connector-sdk:** 85f4e6b03728cce87761a48e33f02aab68255baf
|