arize-phoenix 10.2.2__py3-none-any.whl → 10.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.
Potentially problematic release.
This version of arize-phoenix might be problematic. Click here for more details.
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/METADATA +5 -2
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/RECORD +25 -24
- phoenix/db/enums.py +3 -12
- phoenix/db/facilitator.py +25 -33
- phoenix/db/models.py +6 -1
- phoenix/server/api/mutations/api_key_mutations.py +5 -4
- phoenix/server/api/mutations/user_mutations.py +3 -11
- phoenix/server/api/queries.py +5 -5
- phoenix/server/api/routers/oauth2.py +1 -4
- phoenix/server/api/routers/v1/__init__.py +2 -0
- phoenix/server/api/routers/v1/models.py +7 -0
- phoenix/server/api/routers/v1/projects.py +2 -3
- phoenix/server/api/routers/v1/users.py +346 -0
- phoenix/server/bearer_auth.py +3 -4
- phoenix/server/jwt_store.py +9 -9
- phoenix/server/static/.vite/manifest.json +9 -9
- phoenix/server/static/assets/{components-ClD3sHta.js → components-DVEsaeYg.js} +2 -2
- phoenix/server/static/assets/{index-CXawXHw0.js → index-cY-swWDK.js} +2 -2
- phoenix/server/static/assets/{pages-BFtNRfTL.js → pages-xeDsefDx.js} +389 -389
- phoenix/server/types.py +3 -2
- phoenix/version.py +1 -1
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/WHEEL +0 -0
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/entry_points.txt +0 -0
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/licenses/IP_NOTICE +0 -0
- {arize_phoenix-10.2.2.dist-info → arize_phoenix-10.3.0.dist-info}/licenses/LICENSE +0 -0
phoenix/server/types.py
CHANGED
|
@@ -13,8 +13,9 @@ from cachetools import LRUCache
|
|
|
13
13
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
14
14
|
|
|
15
15
|
from phoenix.auth import CanReadToken, ClaimSet, Token, TokenAttributes
|
|
16
|
-
from phoenix.db import
|
|
16
|
+
from phoenix.db import models
|
|
17
17
|
from phoenix.db.helpers import SupportedSQLDialect
|
|
18
|
+
from phoenix.db.models import UserRoleName
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
class CanSetLastUpdatedAt(Protocol):
|
|
@@ -145,7 +146,7 @@ class ApiKey(Token): ...
|
|
|
145
146
|
|
|
146
147
|
@dataclass(frozen=True)
|
|
147
148
|
class UserTokenAttributes(TokenAttributes):
|
|
148
|
-
user_role:
|
|
149
|
+
user_role: UserRoleName
|
|
149
150
|
|
|
150
151
|
|
|
151
152
|
@dataclass(frozen=True)
|
phoenix/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "10.
|
|
1
|
+
__version__ = "10.3.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|