airbyte-agent-asana 0.19.18__tar.gz → 0.19.43__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.

Files changed (112) hide show
  1. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/CHANGELOG.md +126 -1
  2. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/PKG-INFO +52 -29
  3. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/README.md +42 -18
  4. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/REFERENCE.md +67 -63
  5. airbyte_agent_asana-0.19.43/airbyte_agent_asana/__init__.py +279 -0
  6. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/auth_strategies.py +2 -5
  7. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/auth_template.py +1 -1
  8. airbyte_agent_asana-0.19.43/airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  9. airbyte_agent_asana-0.19.43/airbyte_agent_asana/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  10. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/connector_model_loader.py +32 -6
  11. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/constants.py +1 -1
  12. airbyte_agent_asana-0.19.43/airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
  13. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/executor/local_executor.py +163 -34
  14. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/extensions.py +43 -5
  15. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/http/response.py +2 -0
  16. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http_client.py +50 -43
  17. airbyte_agent_asana-0.19.43/airbyte_agent_asana/_vendored/connector_sdk/introspection.py +262 -0
  18. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/logging/logger.py +9 -9
  19. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/logging/types.py +10 -10
  20. airbyte_agent_asana-0.19.43/airbyte_agent_asana/_vendored/connector_sdk/observability/config.py +179 -0
  21. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/observability/models.py +6 -6
  22. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/observability/session.py +41 -32
  23. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/performance/metrics.py +3 -3
  24. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/schema/base.py +18 -17
  25. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/schema/components.py +59 -58
  26. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/schema/connector.py +22 -33
  27. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/schema/extensions.py +9 -9
  28. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/schema/operations.py +32 -32
  29. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/schema/security.py +44 -34
  30. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/secrets.py +2 -2
  31. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/telemetry/config.py +1 -1
  32. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/telemetry/events.py +9 -8
  33. {airbyte_agent_asana-0.19.18/airbyte_ai_asana → airbyte_agent_asana-0.19.43/airbyte_agent_asana}/_vendored/connector_sdk/telemetry/tracker.py +9 -5
  34. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/types.py +9 -3
  35. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/connector.py +102 -19
  36. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/connector_model.py +15 -9
  37. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/models.py +21 -21
  38. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/types.py +1 -1
  39. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/pyproject.toml +11 -12
  40. airbyte_agent_asana-0.19.18/airbyte_agent_asana/__init__.py +0 -145
  41. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/constants.py +0 -78
  42. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/executor/hosted_executor.py +0 -188
  43. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/extensions.py +0 -655
  44. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/http/response.py +0 -102
  45. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/logging/logger.py +0 -264
  46. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/models.py +0 -19
  47. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/observability/session.py +0 -94
  48. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/extensions.py +0 -109
  49. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/schema/operations.py +0 -146
  50. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/events.py +0 -58
  51. airbyte_agent_asana-0.19.18/airbyte_agent_asana/_vendored/connector_sdk/telemetry/tracker.py +0 -151
  52. airbyte_agent_asana-0.19.18/airbyte_ai_asana/__init__.py +0 -145
  53. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/__init__.py +0 -1
  54. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/__init__.py +0 -82
  55. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/auth_strategies.py +0 -1123
  56. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/auth_template.py +0 -135
  57. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/config_loader.py +0 -938
  58. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/exceptions.py +0 -23
  59. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/__init__.py +0 -31
  60. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/hosted_executor.py +0 -188
  61. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/local_executor.py +0 -1493
  62. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/executor/models.py +0 -190
  63. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/__init__.py +0 -37
  64. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/adapters/__init__.py +0 -9
  65. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -251
  66. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/config.py +0 -98
  67. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/exceptions.py +0 -119
  68. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http/protocols.py +0 -114
  69. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/http_client.py +0 -679
  70. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/logging/__init__.py +0 -11
  71. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/logging/types.py +0 -92
  72. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/__init__.py +0 -11
  73. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/observability/redactor.py +0 -81
  74. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/__init__.py +0 -6
  75. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/instrumentation.py +0 -57
  76. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/performance/metrics.py +0 -93
  77. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/__init__.py +0 -75
  78. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/base.py +0 -160
  79. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/components.py +0 -238
  80. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/connector.py +0 -131
  81. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/schema/security.py +0 -213
  82. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/secrets.py +0 -182
  83. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/__init__.py +0 -10
  84. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/telemetry/config.py +0 -32
  85. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/types.py +0 -239
  86. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/utils.py +0 -60
  87. airbyte_agent_asana-0.19.18/airbyte_ai_asana/_vendored/connector_sdk/validation.py +0 -819
  88. airbyte_agent_asana-0.19.18/airbyte_ai_asana/connector.py +0 -1782
  89. airbyte_agent_asana-0.19.18/airbyte_ai_asana/connector.yaml +0 -2088
  90. airbyte_agent_asana-0.19.18/airbyte_ai_asana/models.py +0 -744
  91. airbyte_agent_asana-0.19.18/airbyte_ai_asana/types.py +0 -195
  92. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/.gitignore +0 -0
  93. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/__init__.py +0 -0
  94. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/__init__.py +0 -0
  95. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/exceptions.py +0 -0
  96. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/executor/__init__.py +0 -0
  97. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/executor/models.py +0 -0
  98. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/__init__.py +0 -0
  99. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
  100. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
  101. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/config.py +0 -0
  102. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/exceptions.py +0 -0
  103. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/http/protocols.py +0 -0
  104. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/logging/__init__.py +0 -0
  105. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/observability/__init__.py +0 -0
  106. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/observability/redactor.py +0 -0
  107. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/performance/__init__.py +0 -0
  108. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/performance/instrumentation.py +0 -0
  109. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/schema/__init__.py +0 -0
  110. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/telemetry/__init__.py +0 -0
  111. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/utils.py +0 -0
  112. {airbyte_agent_asana-0.19.18 → airbyte_agent_asana-0.19.43}/airbyte_agent_asana/_vendored/connector_sdk/validation.py +0 -0
@@ -1,4 +1,129 @@
1
- # Changelog
1
+ # Asana changelog
2
+
3
+ ## [0.19.43] - 2026-01-15
4
+ - Updated connector definition (YAML version 0.1.6)
5
+ - Source commit: b7138b41
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.19.42] - 2026-01-15
9
+ - Updated connector definition (YAML version 0.1.6)
10
+ - Source commit: 10173eb1
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.19.41] - 2026-01-15
14
+ - Updated connector definition (YAML version 0.1.6)
15
+ - Source commit: a23d9e7a
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.19.40] - 2026-01-14
19
+ - Updated connector definition (YAML version 0.1.6)
20
+ - Source commit: 7ef09816
21
+ - SDK version: 0.1.0
22
+
23
+ ## [0.19.39] - 2026-01-14
24
+ - Updated connector definition (YAML version 0.1.6)
25
+ - Source commit: e6285db5
26
+ - SDK version: 0.1.0
27
+
28
+ ## [0.19.38] - 2026-01-14
29
+ - Updated connector definition (YAML version 0.1.6)
30
+ - Source commit: 31de238d
31
+ - SDK version: 0.1.0
32
+
33
+ ## [0.19.37] - 2026-01-13
34
+ - Updated connector definition (YAML version 0.1.6)
35
+ - Source commit: e80a226e
36
+ - SDK version: 0.1.0
37
+
38
+ ## [0.19.36] - 2026-01-13
39
+ - Updated connector definition (YAML version 0.1.6)
40
+ - Source commit: 78b1be67
41
+ - SDK version: 0.1.0
42
+
43
+ ## [0.19.35] - 2026-01-11
44
+ - Updated connector definition (YAML version 0.1.6)
45
+ - Source commit: e519b73d
46
+ - SDK version: 0.1.0
47
+
48
+ ## [0.19.34] - 2026-01-09
49
+ - Updated connector definition (YAML version 0.1.6)
50
+ - Source commit: 3c7bfdfd
51
+ - SDK version: 0.1.0
52
+
53
+ ## [0.19.33] - 2026-01-09
54
+ - Updated connector definition (YAML version 0.1.6)
55
+ - Source commit: 3bcb33e8
56
+ - SDK version: 0.1.0
57
+
58
+ ## [0.19.32] - 2026-01-09
59
+ - Updated connector definition (YAML version 0.1.6)
60
+ - Source commit: da9b741b
61
+ - SDK version: 0.1.0
62
+
63
+ ## [0.19.31] - 2026-01-07
64
+ - Updated connector definition (YAML version 0.1.6)
65
+ - Source commit: d023e05f
66
+ - SDK version: 0.1.0
67
+
68
+ ## [0.19.30] - 2026-01-06
69
+ - Updated connector definition (YAML version 0.1.6)
70
+ - Source commit: 0580c727
71
+ - SDK version: 0.1.0
72
+
73
+ ## [0.19.29] - 2026-01-06
74
+ - Updated connector definition (YAML version 0.1.6)
75
+ - Source commit: e0e2f989
76
+ - SDK version: 0.1.0
77
+
78
+ ## [0.19.28] - 2026-01-05
79
+ - Updated connector definition (YAML version 0.1.6)
80
+ - Source commit: 3e274293
81
+ - SDK version: 0.1.0
82
+
83
+ ## [0.19.27] - 2025-12-22
84
+ - Updated connector definition (YAML version 0.1.6)
85
+ - Source commit: 0eb1b1c4
86
+ - SDK version: 0.1.0
87
+
88
+ ## [0.19.26] - 2025-12-19
89
+ - Updated connector definition (YAML version 0.1.5)
90
+ - Source commit: 12f6b994
91
+ - SDK version: 0.1.0
92
+
93
+ ## [0.19.25] - 2025-12-19
94
+ - Updated connector definition (YAML version 0.1.5)
95
+ - Source commit: 5d11bfdf
96
+ - SDK version: 0.1.0
97
+
98
+ ## [0.19.24] - 2025-12-19
99
+ - Updated connector definition (YAML version 0.1.5)
100
+ - Source commit: e996e848
101
+ - SDK version: 0.1.0
102
+
103
+ ## [0.19.23] - 2025-12-19
104
+ - Updated connector definition (YAML version 0.1.5)
105
+ - Source commit: 07f8a58d
106
+ - SDK version: 0.1.0
107
+
108
+ ## [0.19.22] - 2025-12-18
109
+ - Updated connector definition (YAML version 0.1.4)
110
+ - Source commit: f7c55d3e
111
+ - SDK version: 0.1.0
112
+
113
+ ## [0.19.21] - 2025-12-17
114
+ - Updated connector definition (YAML version 0.1.4)
115
+ - Source commit: af456521
116
+ - SDK version: 0.1.0
117
+
118
+ ## [0.19.20] - 2025-12-17
119
+ - Updated connector definition (YAML version 0.1.4)
120
+ - Source commit: 6a6c981e
121
+ - SDK version: 0.1.0
122
+
123
+ ## [0.19.19] - 2025-12-15
124
+ - Updated connector definition (YAML version 0.1.4)
125
+ - Source commit: c4c39c27
126
+ - SDK version: 0.1.0
2
127
 
3
128
  ## [0.19.18] - 2025-12-15
4
129
  - Updated connector definition (YAML version 0.1.4)
@@ -1,25 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: airbyte-agent-asana
3
- Version: 0.19.18
3
+ Version: 0.19.43
4
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
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
9
  Author-email: Airbyte <contact@airbyte.io>
10
10
  License: Elastic-2.0
11
- Keywords: airbyte,api,asana,connector
11
+ Keywords: agent,ai,airbyte,api,asana,connector,data-integration,llm,mcp
12
12
  Classifier: Development Status :: 3 - Alpha
13
13
  Classifier: Intended Audience :: Developers
14
14
  Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
15
16
  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
17
  Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
21
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Requires-Python: >=3.9
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
23
22
  Requires-Dist: httpx>=0.24.0
24
23
  Requires-Dist: jinja2>=3.0.0
25
24
  Requires-Dist: jsonpath-ng>=1.6.1
@@ -32,27 +31,31 @@ Requires-Dist: pyyaml>=6.0
32
31
  Requires-Dist: segment-analytics-python>=2.2.0
33
32
  Description-Content-Type: text/markdown
34
33
 
35
- # Airbyte Asana AI Connector
34
+ # Asana agent connector
36
35
 
37
36
  Asana is a work management platform that helps teams organize, track, and manage
38
37
  projects and tasks. This connector provides access to tasks, projects, workspaces,
39
38
  teams, and users for project tracking, workload analysis, and productivity insights.
40
39
 
41
40
 
42
- ## Example Questions
41
+ ## Example questions
42
+
43
+ The Asana connector is optimized to handle prompts like these.
43
44
 
44
45
  - What tasks are assigned to me this week?
45
46
  - List all projects in my workspace
46
47
  - 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
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
50
51
  - Analyze the most active projects in my workspace last month
51
52
  - Compare task completion rates between my different teams
52
53
  - Identify overdue tasks across all my projects
53
54
  - Show me details of my current workspace and its users
54
55
 
55
- ## Unsupported Questions
56
+ ## Unsupported questions
57
+
58
+ The Asana connector isn't currently able to handle prompts like these.
56
59
 
57
60
  - Create a new task for [TeamMember]
58
61
  - Update the priority of this task
@@ -69,21 +72,43 @@ uv pip install airbyte-agent-asana
69
72
 
70
73
  ## Usage
71
74
 
75
+ This connector supports multiple authentication methods:
76
+
77
+ ### OAuth 2
78
+
72
79
  ```python
73
- from airbyte_agent_asana import AsanaConnector, AsanaAuthConfig
80
+ from airbyte_agent_asana import AsanaConnector
81
+ from airbyte_agent_asana.models import AsanaOauth2AuthConfig
74
82
 
75
83
  connector = AsanaConnector(
76
- auth_config=AsanaAuthConfig(
84
+ auth_config=AsanaOauth2AuthConfig(
77
85
  access_token="...",
78
86
  refresh_token="...",
79
87
  client_id="...",
80
88
  client_secret="..."
81
89
  )
82
90
  )
83
- result = connector.tasks.list()
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()
84
106
  ```
85
107
 
86
- ## Documentation
108
+
109
+ ## Full documentation
110
+
111
+ This connector supports the following entities and actions.
87
112
 
88
113
  | Entity | Actions |
89
114
  |--------|---------|
@@ -111,14 +136,12 @@ result = connector.tasks.list()
111
136
  | Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
112
137
 
113
138
 
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
139
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
119
140
 
120
- **Package Version:** 0.19.18
141
+ For the service's official API docs, see the [Asana API reference](https://developers.asana.com/reference/rest-api-reference).
121
142
 
122
- **Connector Version:** 0.1.4
143
+ ## Version information
123
144
 
124
- **Generated with connector-sdk:** 85f4e6b03728cce87761a48e33f02aab68255baf
145
+ - **Package version:** 0.19.43
146
+ - **Connector version:** 0.1.6
147
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474
@@ -1,24 +1,28 @@
1
- # Airbyte Asana AI Connector
1
+ # Asana agent connector
2
2
 
3
3
  Asana is a work management platform that helps teams organize, track, and manage
4
4
  projects and tasks. This connector provides access to tasks, projects, workspaces,
5
5
  teams, and users for project tracking, workload analysis, and productivity insights.
6
6
 
7
7
 
8
- ## Example Questions
8
+ ## Example questions
9
+
10
+ The Asana connector is optimized to handle prompts like these.
9
11
 
10
12
  - What tasks are assigned to me this week?
11
13
  - List all projects in my workspace
12
14
  - 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
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
16
18
  - Analyze the most active projects in my workspace last month
17
19
  - Compare task completion rates between my different teams
18
20
  - Identify overdue tasks across all my projects
19
21
  - Show me details of my current workspace and its users
20
22
 
21
- ## Unsupported Questions
23
+ ## Unsupported questions
24
+
25
+ The Asana connector isn't currently able to handle prompts like these.
22
26
 
23
27
  - Create a new task for [TeamMember]
24
28
  - Update the priority of this task
@@ -35,21 +39,43 @@ uv pip install airbyte-agent-asana
35
39
 
36
40
  ## Usage
37
41
 
42
+ This connector supports multiple authentication methods:
43
+
44
+ ### OAuth 2
45
+
38
46
  ```python
39
- from airbyte_agent_asana import AsanaConnector, AsanaAuthConfig
47
+ from airbyte_agent_asana import AsanaConnector
48
+ from airbyte_agent_asana.models import AsanaOauth2AuthConfig
40
49
 
41
50
  connector = AsanaConnector(
42
- auth_config=AsanaAuthConfig(
51
+ auth_config=AsanaOauth2AuthConfig(
43
52
  access_token="...",
44
53
  refresh_token="...",
45
54
  client_id="...",
46
55
  client_secret="..."
47
56
  )
48
57
  )
49
- result = connector.tasks.list()
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()
50
73
  ```
51
74
 
52
- ## Documentation
75
+
76
+ ## Full documentation
77
+
78
+ This connector supports the following entities and actions.
53
79
 
54
80
  | Entity | Actions |
55
81
  |--------|---------|
@@ -77,14 +103,12 @@ result = connector.tasks.list()
77
103
  | Task Dependents | [List](./REFERENCE.md#task-dependents-list) |
78
104
 
79
105
 
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
106
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
85
107
 
86
- **Package Version:** 0.19.18
108
+ For the service's official API docs, see the [Asana API reference](https://developers.asana.com/reference/rest-api-reference).
87
109
 
88
- **Connector Version:** 0.1.4
110
+ ## Version information
89
111
 
90
- **Generated with connector-sdk:** 85f4e6b03728cce87761a48e33f02aab68255baf
112
+ - **Package version:** 0.19.43
113
+ - **Connector version:** 0.1.6
114
+ - **Generated with Connector SDK commit SHA:** b7138b411130e18a6ece05c58de092aa28ca0474