arcade-core 4.0.0__py3-none-any.whl → 4.1.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
|
@@ -150,6 +150,15 @@ class Notion(OAuth2):
|
|
|
150
150
|
super().__init__(id=id, scopes=scopes)
|
|
151
151
|
|
|
152
152
|
|
|
153
|
+
class PagerDuty(OAuth2):
|
|
154
|
+
"""Marks a tool as requiring PagerDuty authorization."""
|
|
155
|
+
|
|
156
|
+
provider_id: str = "pagerduty"
|
|
157
|
+
|
|
158
|
+
def __init__(self, *, id: Optional[str] = None, scopes: Optional[list[str]] = None): # noqa: A002
|
|
159
|
+
super().__init__(id=id, scopes=scopes)
|
|
160
|
+
|
|
161
|
+
|
|
153
162
|
class Reddit(OAuth2):
|
|
154
163
|
"""Marks a tool as requiring Reddit authorization."""
|
|
155
164
|
|
|
@@ -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=UkIJBcXcsmN2OqEKV2HleIQ5bMaQYuXQTnZeDT2W_d4,6420
|
|
4
4
|
arcade_core/auth_tokens.py,sha256=4VAd634lgGigNHezoy2dBpLztliG4Qd2GH8ZBdZVDNo,3169
|
|
5
5
|
arcade_core/catalog.py,sha256=AA13L-ZG4O0S5rB1Fjc-wpLaa6im-dwIBx7GsE2ZW80,43527
|
|
6
6
|
arcade_core/config.py,sha256=e98XQAkYySGW9T_yrJg54BB8Wuq06GPVHp7xqe2d1vU,572
|
|
@@ -26,6 +26,6 @@ arcade_core/usage/constants.py,sha256=1FQIhkFFMZUhU-H4A7GvMb7KQ3qLFrNAZb2-LEvSF3
|
|
|
26
26
|
arcade_core/usage/identity.py,sha256=egclRR26jGP1vVvoOoaaZdcS4AtSTZ8fLHpBq1HRgHw,8452
|
|
27
27
|
arcade_core/usage/usage_service.py,sha256=xzWWSEktm58liiNYugBHRactSru8V5foriHcsoH0j1A,3407
|
|
28
28
|
arcade_core/usage/utils.py,sha256=FqBOmlhwT68cbnpI5Vx9ZW6vLRYPVg4FJ0GaMEp8qEM,398
|
|
29
|
-
arcade_core-4.
|
|
30
|
-
arcade_core-4.
|
|
31
|
-
arcade_core-4.
|
|
29
|
+
arcade_core-4.1.0.dist-info/METADATA,sha256=LJ8qsm5pS6p17nHRSfnsFiCCzGFtpSDdkmMW4mIXHig,2412
|
|
30
|
+
arcade_core-4.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
31
|
+
arcade_core-4.1.0.dist-info/RECORD,,
|
|
File without changes
|