rxfoundry.clients.swifty_oauth_api 0.0.864__py3-none-any.whl → 0.0.866__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.
- rxfoundry/clients/swifty_oauth_api/models/user_info_response.py +6 -4
- {rxfoundry_clients_swifty_oauth_api-0.0.864.dist-info → rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info}/METADATA +1 -1
- {rxfoundry_clients_swifty_oauth_api-0.0.864.dist-info → rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info}/RECORD +5 -5
- {rxfoundry_clients_swifty_oauth_api-0.0.864.dist-info → rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info}/WHEEL +0 -0
- {rxfoundry_clients_swifty_oauth_api-0.0.864.dist-info → rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info}/top_level.txt +0 -0
@@ -18,7 +18,7 @@ import pprint
|
|
18
18
|
import re # noqa: F401
|
19
19
|
import json
|
20
20
|
|
21
|
-
from pydantic import BaseModel, ConfigDict, StrictStr
|
21
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
23
23
|
from typing import Optional, Set
|
24
24
|
from typing_extensions import Self
|
@@ -35,8 +35,9 @@ class UserInfoResponse(BaseModel):
|
|
35
35
|
name: Optional[StrictStr] = None
|
36
36
|
permissions: Optional[List[StrictStr]] = None
|
37
37
|
user_groups: Optional[List[StrictStr]] = None
|
38
|
-
|
39
|
-
|
38
|
+
provider_npi: Optional[StrictStr] = Field(default=None, description="The NPI of the provider associated with the Swifty user")
|
39
|
+
provider_uuid: Optional[StrictStr] = Field(default=None, description="The UUID of the provider associated with the Swifty user")
|
40
|
+
__properties: ClassVar[List[str]] = ["sub", "email", "given_name", "family_name", "preferred_username", "name", "permissions", "user_groups", "provider_npi", "provider_uuid"]
|
40
41
|
|
41
42
|
model_config = ConfigDict(
|
42
43
|
populate_by_name=True,
|
@@ -97,7 +98,8 @@ class UserInfoResponse(BaseModel):
|
|
97
98
|
"name": obj.get("name"),
|
98
99
|
"permissions": obj.get("permissions"),
|
99
100
|
"user_groups": obj.get("user_groups"),
|
100
|
-
"
|
101
|
+
"provider_npi": obj.get("provider_npi"),
|
102
|
+
"provider_uuid": obj.get("provider_uuid")
|
101
103
|
})
|
102
104
|
return _obj
|
103
105
|
|
@@ -13,8 +13,8 @@ rxfoundry/clients/swifty_oauth_api/models/__init__.py,sha256=UmSsR9PfgrBKDJCfagG
|
|
13
13
|
rxfoundry/clients/swifty_oauth_api/models/get_token_request.py,sha256=ZESKTNWJXqFTzBmVZnHA2djwX6pPbG-HvRnAE-SrtOg,3097
|
14
14
|
rxfoundry/clients/swifty_oauth_api/models/oauth_token_post_request.py,sha256=ypbefN8F_KWfayTzum3d-k43MaNmw_e-LSLD6NErIGo,3121
|
15
15
|
rxfoundry/clients/swifty_oauth_api/models/token_response.py,sha256=rV8YZYJtzDz62d3xtlSTYBzA5ogN1Dc5GHaH3qBzybg,3035
|
16
|
-
rxfoundry/clients/swifty_oauth_api/models/user_info_response.py,sha256=
|
17
|
-
rxfoundry_clients_swifty_oauth_api-0.0.
|
18
|
-
rxfoundry_clients_swifty_oauth_api-0.0.
|
19
|
-
rxfoundry_clients_swifty_oauth_api-0.0.
|
20
|
-
rxfoundry_clients_swifty_oauth_api-0.0.
|
16
|
+
rxfoundry/clients/swifty_oauth_api/models/user_info_response.py,sha256=hfYA0vKpwtQohpHCGdbD5EaIbyu-xRcH2K4UWRrwknM,3645
|
17
|
+
rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info/METADATA,sha256=Od_dO0MKHRdxQKp6HTa683jztY9SatyaqdWBHKhbmHc,612
|
18
|
+
rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
19
|
+
rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info/top_level.txt,sha256=x7AlWW4imWljpZ91S0V0Pq8YFe0UFn8rBgeIQhJ5q5A,10
|
20
|
+
rxfoundry_clients_swifty_oauth_api-0.0.866.dist-info/RECORD,,
|
File without changes
|