arcade-core 2.2.2__py3-none-any.whl → 2.3.0__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.
arcade_core/auth.py
CHANGED
|
@@ -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
|
arcade_core/__init__.py,sha256=1heu3AROAjpistehPzY2H-2nkj_IjQEh-vVlVOCRF1E,88
|
|
2
2
|
arcade_core/annotations.py,sha256=Nst6aejLWXlpTu7GwzWETu1gQCG1XVAUR_qcFbNvyRc,198
|
|
3
|
-
arcade_core/auth.py,sha256
|
|
3
|
+
arcade_core/auth.py,sha256=On9sJPOxvHjKBxgKC1yqp7oijF6KYBsG6fG8KUw-9OY,5882
|
|
4
4
|
arcade_core/catalog.py,sha256=WVSTuJN2euY7PR6FBFADTR79teeetBJPFG06O-ohYjs,39492
|
|
5
5
|
arcade_core/config.py,sha256=e98XQAkYySGW9T_yrJg54BB8Wuq06GPVHp7xqe2d1vU,572
|
|
6
6
|
arcade_core/config_model.py,sha256=GYO37yKi7ih6EYKPpX1Kl-K1XwM2JyEJguyaJ7j9TY8,4260
|
|
@@ -14,6 +14,6 @@ arcade_core/telemetry.py,sha256=qDv8T-wO8nFi0Qh93WKaPH1b6asfoJoyyfA7ZOxPnbA,5566
|
|
|
14
14
|
arcade_core/toolkit.py,sha256=O-e8Pq6AKk78d78c16TPhEjufNuCjM_AWfLknpQvmy0,11108
|
|
15
15
|
arcade_core/utils.py,sha256=anzEqj7Q_3dko-oY8U2QcH62rmQE7Y4fQBm0WjwLlIE,2980
|
|
16
16
|
arcade_core/version.py,sha256=CpXi3jGlx23RvRyU7iytOMZrnspdWw4yofS8lpP1AJU,18
|
|
17
|
-
arcade_core-2.
|
|
18
|
-
arcade_core-2.
|
|
19
|
-
arcade_core-2.
|
|
17
|
+
arcade_core-2.3.0.dist-info/METADATA,sha256=ATPlHUuYQF9nADX0j2AjfiJ000H_HHXhbvsiBJEjtV0,2557
|
|
18
|
+
arcade_core-2.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
19
|
+
arcade_core-2.3.0.dist-info/RECORD,,
|
|
File without changes
|