arcade-core 2.2.2__tar.gz → 2.3.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arcade-core
3
- Version: 2.2.2
3
+ Version: 2.3.0
4
4
  Summary: Arcade Core - Core library for Arcade platform
5
5
  Author-email: Arcade <dev@arcade.dev>
6
6
  License: MIT
@@ -51,6 +51,15 @@ class Atlassian(OAuth2):
51
51
  super().__init__(id=id, scopes=scopes)
52
52
 
53
53
 
54
+ class ClickUp(OAuth2):
55
+ """Marks a tool as requiring ClickUp authorization."""
56
+
57
+ provider_id: str = "clickup"
58
+
59
+ def __init__(self, *, id: Optional[str] = None, scopes: Optional[list[str]] = None): # noqa: A002
60
+ super().__init__(id=id, scopes=scopes)
61
+
62
+
54
63
  class Discord(OAuth2):
55
64
  """Marks a tool as requiring Discord authorization."""
56
65
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arcade-core"
3
- version = "2.2.2"
3
+ version = "2.3.0"
4
4
  description = "Arcade Core - Core library for Arcade platform"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
File without changes
File without changes