airbyte-agent-asana 0.19.27__py3-none-any.whl
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/__init__.py +145 -0
- airbyte_agent_asana/_vendored/__init__.py +1 -0
- airbyte_agent_asana/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_asana/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_asana/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_asana/_vendored/connector_sdk/connector_model_loader.py +957 -0
- airbyte_agent_asana/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_asana/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_asana/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
- airbyte_agent_asana/_vendored/connector_sdk/executor/local_executor.py +1504 -0
- airbyte_agent_asana/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_asana/_vendored/connector_sdk/extensions.py +655 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_asana/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_asana/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_asana/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_asana/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_asana/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_asana/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_asana/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_asana/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_asana/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_asana/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_asana/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_asana/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/base.py +161 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/components.py +238 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_asana/_vendored/connector_sdk/schema/security.py +213 -0
- airbyte_agent_asana/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_asana/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_asana/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_asana/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_asana/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_asana/_vendored/connector_sdk/types.py +241 -0
- airbyte_agent_asana/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_asana/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_asana/connector.py +1770 -0
- airbyte_agent_asana/connector_model.py +1863 -0
- airbyte_agent_asana/models.py +744 -0
- airbyte_agent_asana/types.py +195 -0
- airbyte_agent_asana-0.19.27.dist-info/METADATA +144 -0
- airbyte_agent_asana-0.19.27.dist-info/RECORD +55 -0
- airbyte_agent_asana-0.19.27.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type definitions for asana connector.
|
|
3
|
+
"""
|
|
4
|
+
from __future__ import annotations
|
|
5
|
+
|
|
6
|
+
# Use typing_extensions.TypedDict for Pydantic compatibility on Python < 3.12
|
|
7
|
+
try:
|
|
8
|
+
from typing_extensions import TypedDict, NotRequired
|
|
9
|
+
except ImportError:
|
|
10
|
+
from typing import TypedDict, NotRequired # type: ignore[attr-defined]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# ===== NESTED PARAM TYPE DEFINITIONS =====
|
|
15
|
+
# Nested parameter schemas discovered during parameter extraction
|
|
16
|
+
|
|
17
|
+
# ===== OPERATION PARAMS TYPE DEFINITIONS =====
|
|
18
|
+
|
|
19
|
+
class TasksListParams(TypedDict):
|
|
20
|
+
"""Parameters for tasks.list operation"""
|
|
21
|
+
limit: NotRequired[int]
|
|
22
|
+
offset: NotRequired[str]
|
|
23
|
+
project: NotRequired[str]
|
|
24
|
+
workspace: NotRequired[str]
|
|
25
|
+
section: NotRequired[str]
|
|
26
|
+
assignee: NotRequired[str]
|
|
27
|
+
completed_since: NotRequired[str]
|
|
28
|
+
modified_since: NotRequired[str]
|
|
29
|
+
|
|
30
|
+
class ProjectTasksListParams(TypedDict):
|
|
31
|
+
"""Parameters for project_tasks.list operation"""
|
|
32
|
+
project_gid: str
|
|
33
|
+
limit: NotRequired[int]
|
|
34
|
+
offset: NotRequired[str]
|
|
35
|
+
completed_since: NotRequired[str]
|
|
36
|
+
|
|
37
|
+
class TasksGetParams(TypedDict):
|
|
38
|
+
"""Parameters for tasks.get operation"""
|
|
39
|
+
task_gid: str
|
|
40
|
+
|
|
41
|
+
class WorkspaceTaskSearchListParams(TypedDict):
|
|
42
|
+
"""Parameters for workspace_task_search.list operation"""
|
|
43
|
+
workspace_gid: str
|
|
44
|
+
limit: NotRequired[int]
|
|
45
|
+
offset: NotRequired[str]
|
|
46
|
+
text: NotRequired[str]
|
|
47
|
+
completed: NotRequired[bool]
|
|
48
|
+
assignee_any: NotRequired[str]
|
|
49
|
+
projects_any: NotRequired[str]
|
|
50
|
+
sections_any: NotRequired[str]
|
|
51
|
+
teams_any: NotRequired[str]
|
|
52
|
+
followers_any: NotRequired[str]
|
|
53
|
+
created_at_after: NotRequired[str]
|
|
54
|
+
created_at_before: NotRequired[str]
|
|
55
|
+
modified_at_after: NotRequired[str]
|
|
56
|
+
modified_at_before: NotRequired[str]
|
|
57
|
+
due_on_after: NotRequired[str]
|
|
58
|
+
due_on_before: NotRequired[str]
|
|
59
|
+
resource_subtype: NotRequired[str]
|
|
60
|
+
sort_by: NotRequired[str]
|
|
61
|
+
sort_ascending: NotRequired[bool]
|
|
62
|
+
|
|
63
|
+
class ProjectsListParams(TypedDict):
|
|
64
|
+
"""Parameters for projects.list operation"""
|
|
65
|
+
limit: NotRequired[int]
|
|
66
|
+
offset: NotRequired[str]
|
|
67
|
+
workspace: NotRequired[str]
|
|
68
|
+
team: NotRequired[str]
|
|
69
|
+
archived: NotRequired[bool]
|
|
70
|
+
|
|
71
|
+
class ProjectsGetParams(TypedDict):
|
|
72
|
+
"""Parameters for projects.get operation"""
|
|
73
|
+
project_gid: str
|
|
74
|
+
|
|
75
|
+
class TaskProjectsListParams(TypedDict):
|
|
76
|
+
"""Parameters for task_projects.list operation"""
|
|
77
|
+
task_gid: str
|
|
78
|
+
limit: NotRequired[int]
|
|
79
|
+
offset: NotRequired[str]
|
|
80
|
+
|
|
81
|
+
class TeamProjectsListParams(TypedDict):
|
|
82
|
+
"""Parameters for team_projects.list operation"""
|
|
83
|
+
team_gid: str
|
|
84
|
+
limit: NotRequired[int]
|
|
85
|
+
offset: NotRequired[str]
|
|
86
|
+
archived: NotRequired[bool]
|
|
87
|
+
|
|
88
|
+
class WorkspaceProjectsListParams(TypedDict):
|
|
89
|
+
"""Parameters for workspace_projects.list operation"""
|
|
90
|
+
workspace_gid: str
|
|
91
|
+
limit: NotRequired[int]
|
|
92
|
+
offset: NotRequired[str]
|
|
93
|
+
archived: NotRequired[bool]
|
|
94
|
+
|
|
95
|
+
class WorkspacesListParams(TypedDict):
|
|
96
|
+
"""Parameters for workspaces.list operation"""
|
|
97
|
+
limit: NotRequired[int]
|
|
98
|
+
offset: NotRequired[str]
|
|
99
|
+
|
|
100
|
+
class WorkspacesGetParams(TypedDict):
|
|
101
|
+
"""Parameters for workspaces.get operation"""
|
|
102
|
+
workspace_gid: str
|
|
103
|
+
|
|
104
|
+
class UsersListParams(TypedDict):
|
|
105
|
+
"""Parameters for users.list operation"""
|
|
106
|
+
limit: NotRequired[int]
|
|
107
|
+
offset: NotRequired[str]
|
|
108
|
+
workspace: NotRequired[str]
|
|
109
|
+
team: NotRequired[str]
|
|
110
|
+
|
|
111
|
+
class UsersGetParams(TypedDict):
|
|
112
|
+
"""Parameters for users.get operation"""
|
|
113
|
+
user_gid: str
|
|
114
|
+
|
|
115
|
+
class WorkspaceUsersListParams(TypedDict):
|
|
116
|
+
"""Parameters for workspace_users.list operation"""
|
|
117
|
+
workspace_gid: str
|
|
118
|
+
limit: NotRequired[int]
|
|
119
|
+
offset: NotRequired[str]
|
|
120
|
+
|
|
121
|
+
class TeamUsersListParams(TypedDict):
|
|
122
|
+
"""Parameters for team_users.list operation"""
|
|
123
|
+
team_gid: str
|
|
124
|
+
limit: NotRequired[int]
|
|
125
|
+
offset: NotRequired[str]
|
|
126
|
+
|
|
127
|
+
class TeamsGetParams(TypedDict):
|
|
128
|
+
"""Parameters for teams.get operation"""
|
|
129
|
+
team_gid: str
|
|
130
|
+
|
|
131
|
+
class WorkspaceTeamsListParams(TypedDict):
|
|
132
|
+
"""Parameters for workspace_teams.list operation"""
|
|
133
|
+
workspace_gid: str
|
|
134
|
+
limit: NotRequired[int]
|
|
135
|
+
offset: NotRequired[str]
|
|
136
|
+
|
|
137
|
+
class UserTeamsListParams(TypedDict):
|
|
138
|
+
"""Parameters for user_teams.list operation"""
|
|
139
|
+
user_gid: str
|
|
140
|
+
organization: str
|
|
141
|
+
limit: NotRequired[int]
|
|
142
|
+
offset: NotRequired[str]
|
|
143
|
+
|
|
144
|
+
class AttachmentsListParams(TypedDict):
|
|
145
|
+
"""Parameters for attachments.list operation"""
|
|
146
|
+
parent: str
|
|
147
|
+
limit: NotRequired[int]
|
|
148
|
+
offset: NotRequired[str]
|
|
149
|
+
|
|
150
|
+
class AttachmentsGetParams(TypedDict):
|
|
151
|
+
"""Parameters for attachments.get operation"""
|
|
152
|
+
attachment_gid: str
|
|
153
|
+
|
|
154
|
+
class AttachmentsDownloadParams(TypedDict):
|
|
155
|
+
"""Parameters for attachments.download operation"""
|
|
156
|
+
attachment_gid: str
|
|
157
|
+
range_header: NotRequired[str]
|
|
158
|
+
|
|
159
|
+
class WorkspaceTagsListParams(TypedDict):
|
|
160
|
+
"""Parameters for workspace_tags.list operation"""
|
|
161
|
+
workspace_gid: str
|
|
162
|
+
limit: NotRequired[int]
|
|
163
|
+
offset: NotRequired[str]
|
|
164
|
+
|
|
165
|
+
class TagsGetParams(TypedDict):
|
|
166
|
+
"""Parameters for tags.get operation"""
|
|
167
|
+
tag_gid: str
|
|
168
|
+
|
|
169
|
+
class ProjectSectionsListParams(TypedDict):
|
|
170
|
+
"""Parameters for project_sections.list operation"""
|
|
171
|
+
project_gid: str
|
|
172
|
+
limit: NotRequired[int]
|
|
173
|
+
offset: NotRequired[str]
|
|
174
|
+
|
|
175
|
+
class SectionsGetParams(TypedDict):
|
|
176
|
+
"""Parameters for sections.get operation"""
|
|
177
|
+
section_gid: str
|
|
178
|
+
|
|
179
|
+
class TaskSubtasksListParams(TypedDict):
|
|
180
|
+
"""Parameters for task_subtasks.list operation"""
|
|
181
|
+
task_gid: str
|
|
182
|
+
limit: NotRequired[int]
|
|
183
|
+
offset: NotRequired[str]
|
|
184
|
+
|
|
185
|
+
class TaskDependenciesListParams(TypedDict):
|
|
186
|
+
"""Parameters for task_dependencies.list operation"""
|
|
187
|
+
task_gid: str
|
|
188
|
+
limit: NotRequired[int]
|
|
189
|
+
offset: NotRequired[str]
|
|
190
|
+
|
|
191
|
+
class TaskDependentsListParams(TypedDict):
|
|
192
|
+
"""Parameters for task_dependents.list operation"""
|
|
193
|
+
task_gid: str
|
|
194
|
+
limit: NotRequired[int]
|
|
195
|
+
offset: NotRequired[str]
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-asana
|
|
3
|
+
Version: 0.19.27
|
|
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
|
+
# Asana agent 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 {project_name} project
|
|
48
|
+
- Who are the team members in my {team_name} team?
|
|
49
|
+
- Find all tasks related to {client_name} 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
|
+
This connector supports multiple authentication methods:
|
|
73
|
+
|
|
74
|
+
### OAuth 2
|
|
75
|
+
|
|
76
|
+
```python
|
|
77
|
+
from airbyte_agent_asana import AsanaConnector
|
|
78
|
+
from airbyte_agent_asana.models import AsanaOauth2AuthConfig
|
|
79
|
+
|
|
80
|
+
connector = AsanaConnector(
|
|
81
|
+
auth_config=AsanaOauth2AuthConfig(
|
|
82
|
+
access_token="...",
|
|
83
|
+
refresh_token="...",
|
|
84
|
+
client_id="...",
|
|
85
|
+
client_secret="..."
|
|
86
|
+
)
|
|
87
|
+
)
|
|
88
|
+
result = await connector.tasks.list()
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
### Personal Access Token
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
from airbyte_agent_asana import AsanaConnector
|
|
95
|
+
from airbyte_agent_asana.models import AsanaPersonalAccessTokenAuthConfig
|
|
96
|
+
|
|
97
|
+
connector = AsanaConnector(
|
|
98
|
+
auth_config=AsanaPersonalAccessTokenAuthConfig(
|
|
99
|
+
token="..."
|
|
100
|
+
)
|
|
101
|
+
)
|
|
102
|
+
result = await connector.tasks.list()
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
## Full documentation
|
|
107
|
+
|
|
108
|
+
This connector supports the following entities and actions.
|
|
109
|
+
|
|
110
|
+
| Entity | Actions |
|
|
111
|
+
|--------|---------|
|
|
112
|
+
| Tasks | [List](./REFERENCE.md#tasks-list), [Get](./REFERENCE.md#tasks-get) |
|
|
113
|
+
| Project Tasks | [List](./REFERENCE.md#project-tasks-list) |
|
|
114
|
+
| Workspace Task Search | [List](./REFERENCE.md#workspace-task-search-list) |
|
|
115
|
+
| Projects | [List](./REFERENCE.md#projects-list), [Get](./REFERENCE.md#projects-get) |
|
|
116
|
+
| Task Projects | [List](./REFERENCE.md#task-projects-list) |
|
|
117
|
+
| Team Projects | [List](./REFERENCE.md#team-projects-list) |
|
|
118
|
+
| Workspace Projects | [List](./REFERENCE.md#workspace-projects-list) |
|
|
119
|
+
| Workspaces | [List](./REFERENCE.md#workspaces-list), [Get](./REFERENCE.md#workspaces-get) |
|
|
120
|
+
| Users | [List](./REFERENCE.md#users-list), [Get](./REFERENCE.md#users-get) |
|
|
121
|
+
| Workspace Users | [List](./REFERENCE.md#workspace-users-list) |
|
|
122
|
+
| Team Users | [List](./REFERENCE.md#team-users-list) |
|
|
123
|
+
| Teams | [Get](./REFERENCE.md#teams-get) |
|
|
124
|
+
| Workspace Teams | [List](./REFERENCE.md#workspace-teams-list) |
|
|
125
|
+
| User Teams | [List](./REFERENCE.md#user-teams-list) |
|
|
126
|
+
| Attachments | [List](./REFERENCE.md#attachments-list), [Get](./REFERENCE.md#attachments-get), [Download](./REFERENCE.md#attachments-download) |
|
|
127
|
+
| Workspace Tags | [List](./REFERENCE.md#workspace-tags-list) |
|
|
128
|
+
| Tags | [Get](./REFERENCE.md#tags-get) |
|
|
129
|
+
| Project Sections | [List](./REFERENCE.md#project-sections-list) |
|
|
130
|
+
| Sections | [Get](./REFERENCE.md#sections-get) |
|
|
131
|
+
| Task Subtasks | [List](./REFERENCE.md#task-subtasks-list) |
|
|
132
|
+
| Task Dependencies | [List](./REFERENCE.md#task-dependencies-list) |
|
|
133
|
+
| Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
137
|
+
|
|
138
|
+
For the service's official API docs, see the [Asana API reference](https://developers.asana.com/reference/rest-api-reference).
|
|
139
|
+
|
|
140
|
+
## Version information
|
|
141
|
+
|
|
142
|
+
- **Package version:** 0.19.27
|
|
143
|
+
- **Connector version:** 0.1.6
|
|
144
|
+
- **Generated with Connector SDK commit SHA:** 0eb1b1c4afe2ae6607371288233ef427ccad1b80
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
airbyte_agent_asana/__init__.py,sha256=iV7cTg3LF1huAxZqSpxy4rZ__GJQ2XQct_LhyjVKN5Y,6417
|
|
2
|
+
airbyte_agent_asana/connector.py,sha256=bWP75UdEd7r5E7JYoNmcmuR5Fcp5p-0PA4qdbyU7cto,55082
|
|
3
|
+
airbyte_agent_asana/connector_model.py,sha256=Ya2_Kl8cr5Mlb9b0T16aWaN9W1FSCPwrW0Fs3dsiwl4,95056
|
|
4
|
+
airbyte_agent_asana/models.py,sha256=kxnKrPLFSBsraONaNnb0GSzTw8p8_9IaSx4tbGGTCQc,29807
|
|
5
|
+
airbyte_agent_asana/types.py,sha256=apQcHXEfzQJBhSjsX5S2ZHvlfAkC03NVazylQd8z8us,5707
|
|
6
|
+
airbyte_agent_asana/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
|
+
airbyte_agent_asana/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
|
+
airbyte_agent_asana/_vendored/connector_sdk/auth_strategies.py,sha256=0BfIISVzuvZTAYZjQFOOhKTpw0QuKDlLQBQ1PQo-V2M,39967
|
|
9
|
+
airbyte_agent_asana/_vendored/connector_sdk/auth_template.py,sha256=vKnyA21Jp33EuDjkIUAf1PGicwk4t9kZAPJuAgAZKzU,4458
|
|
10
|
+
airbyte_agent_asana/_vendored/connector_sdk/connector_model_loader.py,sha256=BeX4QykMUQZk5qY--WuwxXClI7FBDxxbGguqcztAd8A,34663
|
|
11
|
+
airbyte_agent_asana/_vendored/connector_sdk/constants.py,sha256=uH4rjBX6WsBP8M0jt7AUJI9w5Adn4wvJwib7Gdfkr1M,2736
|
|
12
|
+
airbyte_agent_asana/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
+
airbyte_agent_asana/_vendored/connector_sdk/extensions.py,sha256=iWA2i0kiiGZY84H8P25A6QmfbuZwu7euMcj4-Vx2DOQ,20185
|
|
14
|
+
airbyte_agent_asana/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
|
+
airbyte_agent_asana/_vendored/connector_sdk/secrets.py,sha256=UWcO9fP-vZwcfkAuvlZahlOCTOwdNN860BIwe8X4jxw,6868
|
|
16
|
+
airbyte_agent_asana/_vendored/connector_sdk/types.py,sha256=sS9olOyT-kVemHmcFll2ePFRhTdGMbWcz7bSgV-MuSw,8114
|
|
17
|
+
airbyte_agent_asana/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
18
|
+
airbyte_agent_asana/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
19
|
+
airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
20
|
+
airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/client.py,sha256=HoDgZuEgGHj78P-BGwUf6HGPVWynbdKjGOmjb-JDk58,7188
|
|
21
|
+
airbyte_agent_asana/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
22
|
+
airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py,sha256=YQ-qfT7PZh9izNFHHe7SAcETiZOKrWjTU-okVb0_VL8,7079
|
|
23
|
+
airbyte_agent_asana/_vendored/connector_sdk/executor/local_executor.py,sha256=hHlBTtvykrUcfypzyW0e61fU4e3vlxc90mypCFzgSl0,61879
|
|
24
|
+
airbyte_agent_asana/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
25
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
26
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
27
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
|
|
28
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
|
|
29
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/response.py,sha256=r7QFYRkw6is-Na7WozAyzZynpCQ90RBUhnX4pBSJ1Yc,3338
|
|
30
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
|
|
31
|
+
airbyte_agent_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
|
|
32
|
+
airbyte_agent_asana/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
|
|
33
|
+
airbyte_agent_asana/_vendored/connector_sdk/logging/logger.py,sha256=Nh0h3C0aO-rAqZhDIyeEXG6Jd7yj1Gk32ECMPth0wl8,8118
|
|
34
|
+
airbyte_agent_asana/_vendored/connector_sdk/logging/types.py,sha256=iI-xLoOg33OUGQOp3CeaxKtHh73WXE-oul6ZCNf3Nzc,3209
|
|
35
|
+
airbyte_agent_asana/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
36
|
+
airbyte_agent_asana/_vendored/connector_sdk/observability/models.py,sha256=rF6-SoAAywqL8bhEv7yCbmr_W_w0vmApO-MCxcHq9RI,473
|
|
37
|
+
airbyte_agent_asana/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
38
|
+
airbyte_agent_asana/_vendored/connector_sdk/observability/session.py,sha256=fLBgb9olATdoC0IMtd8MKe581t1HuK73MiGbghPzUHQ,3083
|
|
39
|
+
airbyte_agent_asana/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
40
|
+
airbyte_agent_asana/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
41
|
+
airbyte_agent_asana/_vendored/connector_sdk/performance/metrics.py,sha256=3-wPwlJyfVLUIG3y7ESxk0avhkILk3z8K7zSrnlZf5U,2833
|
|
42
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
|
|
43
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/base.py,sha256=eN6YfHwsYNz_0CE-S715Me8x3gQWTtaRk1vhFjEZF8I,4799
|
|
44
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/components.py,sha256=2ivMNhUAcovw88qvDkW221ILf1L63eXteztTDZL46us,7989
|
|
45
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/connector.py,sha256=VFBOzIkLgYBR1XUTmyrPGqBkX8PP-zsG8avQcdJUqXs,3864
|
|
46
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/extensions.py,sha256=LdoCuMLNdCj68O47qAL4v8xmqGz5tJgRiNZL5JnL9uw,3311
|
|
47
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/operations.py,sha256=zInMjx9iOEVZo-CCWw06Uk2SFg7HtUAXXpO5kFGUwNk,5825
|
|
48
|
+
airbyte_agent_asana/_vendored/connector_sdk/schema/security.py,sha256=Jtrhb58d1zssN5yR7LhLJi-QK0PsZKT7uIvPqanF0co,8114
|
|
49
|
+
airbyte_agent_asana/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
50
|
+
airbyte_agent_asana/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
51
|
+
airbyte_agent_asana/_vendored/connector_sdk/telemetry/events.py,sha256=NvqjlUbkm6cbGh4ffKxYxtjdwwgzfPF4MKJ2GfgWeFg,1285
|
|
52
|
+
airbyte_agent_asana/_vendored/connector_sdk/telemetry/tracker.py,sha256=KacNdbHatvPPhnNrycp5YUuD5xpkp56AFcHd-zguBgk,5247
|
|
53
|
+
airbyte_agent_asana-0.19.27.dist-info/METADATA,sha256=5r6sM3iOulJ7Uufk27L7Qm3gQvI7NvmkjXP35YB_FYU,5384
|
|
54
|
+
airbyte_agent_asana-0.19.27.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
55
|
+
airbyte_agent_asana-0.19.27.dist-info/RECORD,,
|