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.

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 enums, models
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: enums.UserRole
149
+ user_role: UserRoleName
149
150
 
150
151
 
151
152
  @dataclass(frozen=True)
phoenix/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "10.2.2"
1
+ __version__ = "10.3.0"