arcade-core 2.1.0__tar.gz → 2.2.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.1.0
3
+ Version: 2.2.0
4
4
  Summary: Arcade Core - Core library for Arcade platform
5
5
  Author-email: Arcade <dev@arcade.dev>
6
6
  License: MIT
@@ -96,6 +96,15 @@ class Hubspot(OAuth2):
96
96
  super().__init__(id=id, scopes=scopes)
97
97
 
98
98
 
99
+ class Linear(OAuth2):
100
+ """Marks a tool as requiring Linear authorization."""
101
+
102
+ provider_id: str = "linear"
103
+
104
+ def __init__(self, *, id: Optional[str] = None, scopes: Optional[list[str]] = None): # noqa: A002
105
+ super().__init__(id=id, scopes=scopes)
106
+
107
+
99
108
  class LinkedIn(OAuth2):
100
109
  """Marks a tool as requiring LinkedIn authorization."""
101
110
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arcade-core"
3
- version = "2.1.0"
3
+ version = "2.2.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