antioch-py 3.0.5__py3-none-any.whl → 3.0.7__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.
Potentially problematic release.
This version of antioch-py might be problematic. Click here for more details.
- {antioch_py-3.0.5.dist-info → antioch_py-3.0.7.dist-info}/METADATA +1 -1
- {antioch_py-3.0.5.dist-info → antioch_py-3.0.7.dist-info}/RECORD +6 -6
- common/constants.py +7 -0
- {antioch_py-3.0.5.dist-info → antioch_py-3.0.7.dist-info}/WHEEL +0 -0
- {antioch_py-3.0.5.dist-info → antioch_py-3.0.7.dist-info}/licenses/LICENSE +0 -0
- {antioch_py-3.0.5.dist-info → antioch_py-3.0.7.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,9 @@ antioch/execution.py,sha256=OtKfwpQLcomeB4ggJULnxPyPnI_saB0Q4x5RQ7ME8OE,7991
|
|
|
4
4
|
antioch/input.py,sha256=KYI6nYRBhZ7hunGV-1LWCikzkLvPqr3KBFWiB555Naw,4291
|
|
5
5
|
antioch/module.py,sha256=C3lW9vLjRdNIo3vJCEdd4Bwz1RYhN0nrREkz25NTBwI,7283
|
|
6
6
|
antioch/node.py,sha256=wL78xzJF2w_bdF5r57QynaC1TsytxgcP2z1JFJyLNAg,14568
|
|
7
|
-
antioch_py-3.0.
|
|
7
|
+
antioch_py-3.0.7.dist-info/licenses/LICENSE,sha256=wR5vy6P03IcUnTO982QeoQxmIhvtE5NjTwza2BFQDmM,1069
|
|
8
8
|
common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
common/constants.py,sha256=
|
|
9
|
+
common/constants.py,sha256=m2or1GjetS7w19UkFr_0GWYvK2BjxAA2X8mRVVE_xsA,4419
|
|
10
10
|
common/ark/__init__.py,sha256=y0quQ-0Uia2b8-ASzLmMKttXlc6b1buo86xZ7Bbw56w,1353
|
|
11
11
|
common/ark/ark.py,sha256=RvyWE-40a_TFABq4EE2ggmPubA5Lsgk8ZlrKqCkhDfc,2186
|
|
12
12
|
common/ark/hardware.py,sha256=WuKRdHo-JYRQqTULMiSLw10jTq5fUTXADvxpgfzD7IE,2241
|
|
@@ -55,7 +55,7 @@ common/utils/__init__.py,sha256=9zRb7XayzCGRs4I94hWKJHyQ1MevlUiTzXsPNBLBX7Y,113
|
|
|
55
55
|
common/utils/comms.py,sha256=plxwjVOIqT5D2jmT1KEnweiGTMAL_mMhYaB2ztSNPy0,18168
|
|
56
56
|
common/utils/logger.py,sha256=m8DaKzTJJ4vp4VM9IpNtqCbhypF-w1Gwh0x5nsL_hv0,4041
|
|
57
57
|
common/utils/time.py,sha256=kGDzObbaqWOep4vT1Y2W-BheunxdjYBI4V3Nfp4Ck3Q,790
|
|
58
|
-
antioch_py-3.0.
|
|
59
|
-
antioch_py-3.0.
|
|
60
|
-
antioch_py-3.0.
|
|
61
|
-
antioch_py-3.0.
|
|
58
|
+
antioch_py-3.0.7.dist-info/METADATA,sha256=kH2GJuS45fqK_u9hIEJjl-jj0aiwJtmRKN-xalvmLE0,3396
|
|
59
|
+
antioch_py-3.0.7.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
60
|
+
antioch_py-3.0.7.dist-info/top_level.txt,sha256=GtzNccsep3YdBt9VXQ7-ZFsFJFffr4hyZvqg0YqRqtw,15
|
|
61
|
+
antioch_py-3.0.7.dist-info/RECORD,,
|
common/constants.py
CHANGED
|
@@ -50,6 +50,13 @@ AUTH_TIMEOUT_SECONDS = 120
|
|
|
50
50
|
# JWT claim names (namespaced for Auth0)
|
|
51
51
|
AUTH_ORG_ID_CLAIM = "https://antioch.com/org_id"
|
|
52
52
|
AUTH_ORG_NAME_CLAIM = "https://antioch.com/org_name"
|
|
53
|
+
AUTH_ORG_ROLE_CLAIM = "https://antioch.com/org_role"
|
|
54
|
+
|
|
55
|
+
# Organization roles (mutually exclusive within an org)
|
|
56
|
+
ORG_ROLE_ADMIN = "team_admin"
|
|
57
|
+
ORG_ROLE_MEMBER = "team_member"
|
|
58
|
+
ORG_ROLE_SUPPORT = "support_staff"
|
|
59
|
+
ORG_ROLES = (ORG_ROLE_ADMIN, ORG_ROLE_MEMBER, ORG_ROLE_SUPPORT)
|
|
53
60
|
|
|
54
61
|
# =============================================================================
|
|
55
62
|
# Telemetry Configuration
|
|
File without changes
|
|
File without changes
|
|
File without changes
|