phenoml 0.0.17__py3-none-any.whl → 0.0.19__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.
- phenoml/agent/__init__.py +4 -0
- phenoml/agent/client.py +23 -8
- phenoml/agent/raw_client.py +21 -6
- phenoml/agent/types/__init__.py +4 -0
- phenoml/agent/types/agent_get_chat_messages_request_role.py +5 -0
- phenoml/agent/types/chat_message_template.py +7 -2
- phenoml/agent/types/chat_message_template_role.py +5 -0
- phenoml/construe/types/extract_request_config.py +9 -1
- phenoml/construe/types/extracted_code_result.py +5 -0
- phenoml/core/client_wrapper.py +2 -2
- phenoml/fhir_provider/__init__.py +8 -2
- phenoml/fhir_provider/client.py +66 -21
- phenoml/fhir_provider/raw_client.py +70 -47
- phenoml/fhir_provider/types/__init__.py +8 -2
- phenoml/fhir_provider/types/fhir_provider_auth_config.py +12 -0
- phenoml/fhir_provider/types/fhir_provider_list_response.py +14 -2
- phenoml/fhir_provider/types/fhir_provider_list_response_fhir_providers_item.py +8 -0
- phenoml/fhir_provider/types/fhir_provider_response.py +9 -2
- phenoml/fhir_provider/types/fhir_provider_response_data.py +8 -0
- phenoml/fhir_provider/types/fhir_provider_sandbox_info.py +46 -0
- phenoml/fhir_provider/types/provider.py +3 -1
- phenoml/fhir_provider/types/service_account_metadata.py +41 -0
- phenoml/lang2fhir/__init__.py +2 -0
- phenoml/lang2fhir/client.py +34 -4
- phenoml/lang2fhir/raw_client.py +34 -4
- phenoml/lang2fhir/types/__init__.py +2 -0
- phenoml/lang2fhir/types/search_response.py +7 -4
- phenoml/lang2fhir/types/search_response_resource_type.py +39 -0
- {phenoml-0.0.17.dist-info → phenoml-0.0.19.dist-info}/METADATA +1 -1
- {phenoml-0.0.17.dist-info → phenoml-0.0.19.dist-info}/RECORD +32 -26
- phenoml/fhir_provider/types/fhir_provider_set_active_auth_config_response.py +0 -22
- {phenoml-0.0.17.dist-info → phenoml-0.0.19.dist-info}/LICENSE +0 -0
- {phenoml-0.0.17.dist-info → phenoml-0.0.19.dist-info}/WHEEL +0 -0
|
@@ -6,12 +6,13 @@ import pydantic
|
|
|
6
6
|
import typing_extensions
|
|
7
7
|
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
8
8
|
from ...core.serialization import FieldMetadata
|
|
9
|
+
from .search_response_resource_type import SearchResponseResourceType
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class SearchResponse(UniversalBaseModel):
|
|
12
|
-
resource_type: typing_extensions.Annotated[
|
|
13
|
-
|
|
14
|
-
)
|
|
13
|
+
resource_type: typing_extensions.Annotated[
|
|
14
|
+
typing.Optional[SearchResponseResourceType], FieldMetadata(alias="resourceType")
|
|
15
|
+
] = pydantic.Field(default=None)
|
|
15
16
|
"""
|
|
16
17
|
The FHIR resource type identified for the search
|
|
17
18
|
"""
|
|
@@ -20,7 +21,9 @@ class SearchResponse(UniversalBaseModel):
|
|
|
20
21
|
pydantic.Field(default=None)
|
|
21
22
|
)
|
|
22
23
|
"""
|
|
23
|
-
FHIR search parameters in standard format
|
|
24
|
+
FHIR search parameters in standard query string format.
|
|
25
|
+
Parameters are formatted according to the FHIR specification with appropriate operators.
|
|
26
|
+
Code parameters are resolved to standard terminology codes (SNOMED CT, LOINC, RxNorm, ICD-10-CM).
|
|
24
27
|
"""
|
|
25
28
|
|
|
26
29
|
if IS_PYDANTIC_V2:
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
SearchResponseResourceType = typing.Union[
|
|
6
|
+
typing.Literal[
|
|
7
|
+
"AllergyIntolerance",
|
|
8
|
+
"Appointment",
|
|
9
|
+
"CarePlan",
|
|
10
|
+
"CareTeam",
|
|
11
|
+
"Condition",
|
|
12
|
+
"Coverage",
|
|
13
|
+
"Device",
|
|
14
|
+
"DiagnosticReport",
|
|
15
|
+
"DocumentReference",
|
|
16
|
+
"Encounter",
|
|
17
|
+
"Goal",
|
|
18
|
+
"Immunization",
|
|
19
|
+
"Location",
|
|
20
|
+
"Medication",
|
|
21
|
+
"MedicationRequest",
|
|
22
|
+
"Observation",
|
|
23
|
+
"Organization",
|
|
24
|
+
"Patient",
|
|
25
|
+
"PlanDefinition",
|
|
26
|
+
"Practitioner",
|
|
27
|
+
"PractitionerRole",
|
|
28
|
+
"Procedure",
|
|
29
|
+
"Provenance",
|
|
30
|
+
"Questionnaire",
|
|
31
|
+
"QuestionnaireResponse",
|
|
32
|
+
"RelatedPerson",
|
|
33
|
+
"Schedule",
|
|
34
|
+
"ServiceRequest",
|
|
35
|
+
"Slot",
|
|
36
|
+
"Specimen",
|
|
37
|
+
],
|
|
38
|
+
typing.Any,
|
|
39
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
phenoml/__init__.py,sha256=SeYOCP1ABPA3aB2UDDPr5DOYT4UKKQcw1CHW49I51X8,778
|
|
2
|
-
phenoml/agent/__init__.py,sha256=
|
|
3
|
-
phenoml/agent/client.py,sha256=
|
|
2
|
+
phenoml/agent/__init__.py,sha256=jFtmc8hd6h1luDhG2EzKyPdZ1a59MUAkE0PmLw3FB20,1569
|
|
3
|
+
phenoml/agent/client.py,sha256=dP8xHpu2rpqG76Qs6HVEnP3Y8xPMQ-oUdOxCHULb5A8,28631
|
|
4
4
|
phenoml/agent/errors/__init__.py,sha256=Wnvf4XPELmAIZ-jVxx2t-dBNZ-X9PcDxPSL5EHqJr1Q,434
|
|
5
5
|
phenoml/agent/errors/bad_request_error.py,sha256=nv0bK4gtOnTon6a2NdVxJxHBje_O_7wIoRtXLZHovUQ,339
|
|
6
6
|
phenoml/agent/errors/forbidden_error.py,sha256=ek8-sffTy9gY3F0zyaSkcskDVvq9puXP_YvvB2BJYbA,338
|
|
@@ -13,20 +13,22 @@ phenoml/agent/prompts/raw_client.py,sha256=n2R6TL8Rjix8ewpA3b3J68hy_sqlBOxMYMNcV
|
|
|
13
13
|
phenoml/agent/prompts/types/__init__.py,sha256=N-qiOKtvTg2c7r8DaBddWQDaqjAEve1W-K-yCRLCi84,259
|
|
14
14
|
phenoml/agent/prompts/types/prompts_delete_response.py,sha256=hG7Y3lEyBAF2-cIIicRO5RVoBNOajNR9PHQ-1L2kMK8,599
|
|
15
15
|
phenoml/agent/prompts/types/prompts_list_response.py,sha256=7OzSEUyw2frge0HO7BiZf-I_DJBF0o5e20qsmK1-24s,714
|
|
16
|
-
phenoml/agent/raw_client.py,sha256=
|
|
17
|
-
phenoml/agent/types/__init__.py,sha256=
|
|
16
|
+
phenoml/agent/raw_client.py,sha256=FLH3MpaOxjNMDQOBzsQ-dMd-EaahENmxKqTfweGhO_s,67022
|
|
17
|
+
phenoml/agent/types/__init__.py,sha256=s9haFGiDhJ7C4RJ_uJj4hGtutBR95qD6ggYlxKdgeOE,1782
|
|
18
18
|
phenoml/agent/types/agent_chat_response.py,sha256=GqPcv7lyZlsypeqFwf1ecouik9A-9xDde0sckYOc8lA,862
|
|
19
19
|
phenoml/agent/types/agent_create_request.py,sha256=zHEnDylu2M6ZcgfxwWJvXTdMa70UqJ6tTYhLMRK151E,1411
|
|
20
20
|
phenoml/agent/types/agent_create_request_provider.py,sha256=SsObiEY03YzReBAuvzevB5gwR1SjXtxxdKuXHtYJ6zg,145
|
|
21
21
|
phenoml/agent/types/agent_delete_response.py,sha256=9lZoZdvn6iBzqkC_jAZlPzJ9ZuEe9XX1_zZNII6pJJA,596
|
|
22
22
|
phenoml/agent/types/agent_get_chat_messages_request_order.py,sha256=LUV7Ngo98ZfHUIsC1P1hL5J_OVfEsW9iruvJAQSwGOU,171
|
|
23
|
+
phenoml/agent/types/agent_get_chat_messages_request_role.py,sha256=H4m6oyqwANRCnsASQRrcTE1k1v-RWfk_C4USWG0OVJc,197
|
|
23
24
|
phenoml/agent/types/agent_get_chat_messages_response.py,sha256=R5wS7akcqIfFJ96TYCfvsDTZqOUu_zfsxEmtcMvPev8,731
|
|
24
25
|
phenoml/agent/types/agent_list_response.py,sha256=NuEoSkEo5sd2Wu77TRrJeGB8IdtJbgxVx_uNIcl1qww,699
|
|
25
26
|
phenoml/agent/types/agent_prompts_response.py,sha256=sXkclmfF6FI7q9a35T1CkyYjBnHm0n6QABSOYb4ICBY,690
|
|
26
27
|
phenoml/agent/types/agent_response.py,sha256=bcLl5OAGrcGEgL6AIbVIiEpptoYk7R6Ydxw8t48ZP0U,680
|
|
27
28
|
phenoml/agent/types/agent_template.py,sha256=0hJSVS1hsn2JNiaJNxrgWfTJQCRiLGKd4TPLI0n2yOU,1561
|
|
28
29
|
phenoml/agent/types/agent_template_provider.py,sha256=GSTBqYxeng63IArMCABsTAp__aWd282MMqCcglV6DAw,140
|
|
29
|
-
phenoml/agent/types/chat_message_template.py,sha256=
|
|
30
|
+
phenoml/agent/types/chat_message_template.py,sha256=rpwdaLZjzOF_IBZ3Hr7qQW06QlefbCWQBXM6uFNSPxQ,2062
|
|
31
|
+
phenoml/agent/types/chat_message_template_role.py,sha256=mH-cvjFPO7PtpqvOEjt2WIuIgNL4pe5i0-GWRfOImSE,189
|
|
30
32
|
phenoml/agent/types/chat_session_template.py,sha256=7mdd4KgknpEwRbqSuzQhRcmk-8PAdKPZKJb4eOKe110,1567
|
|
31
33
|
phenoml/agent/types/json_patch.py,sha256=pRf6g-LPfIpIfxhcFaVN7PyZ0eJ33fzTOyeMEGuw_18,178
|
|
32
34
|
phenoml/agent/types/json_patch_operation.py,sha256=8kvQjpK3et2hlPspxUGgWJhLbnI252aI6365BUCqtYk,1288
|
|
@@ -70,15 +72,15 @@ phenoml/construe/raw_client.py,sha256=xXhtTmLzDELw9TEXWSKk9ZK2UXYNKMfp3IAk2EKxzl
|
|
|
70
72
|
phenoml/construe/types/__init__.py,sha256=Id0OJ58ZEQX9Ut-7iMwWEv49MTJLTTmNPH9es1ya8Cw,900
|
|
71
73
|
phenoml/construe/types/construe_upload_code_system_response.py,sha256=s0m5EHpkhkp7hYiC5zLZeIeqQ4mrwXlPI1Msihb-ZGo,566
|
|
72
74
|
phenoml/construe/types/extract_codes_result.py,sha256=DbVDLWqtmt9TyD5MC0q8grgnNXPnXq4eJnLDinTe0uc,701
|
|
73
|
-
phenoml/construe/types/extract_request_config.py,sha256
|
|
75
|
+
phenoml/construe/types/extract_request_config.py,sha256=2A22PNA1Hxq9qz1x89LvbySF-Hw8iB6oA2QqoSIrvg8,2112
|
|
74
76
|
phenoml/construe/types/extract_request_config_chunking_method.py,sha256=AmVPPj0oT5r0pwWUoFxG_K8s5g8xaGYIRsPt3VvqSXQ,209
|
|
75
77
|
phenoml/construe/types/extract_request_config_validation_method.py,sha256=6uUqKn8DXF34EDtNKPa6KLW07DsxgQF2aR5BGdG5Fd4,199
|
|
76
78
|
phenoml/construe/types/extract_request_system.py,sha256=50qkxvinJKS5y1_glr-OFe5tQRyMWLYpeny1NZ9gFzw,1191
|
|
77
|
-
phenoml/construe/types/extracted_code_result.py,sha256=
|
|
79
|
+
phenoml/construe/types/extracted_code_result.py,sha256=3mIHO952KjbMRBY_YvwBt75XOjqdflg9Odc-xBbURac,1321
|
|
78
80
|
phenoml/construe/types/upload_request_format.py,sha256=5mJhMM7R7hn6gGQNDJT9lxPDsRpUkRzqNxtRU0Nnlls,158
|
|
79
81
|
phenoml/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
|
|
80
82
|
phenoml/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
81
|
-
phenoml/core/client_wrapper.py,sha256=
|
|
83
|
+
phenoml/core/client_wrapper.py,sha256=A9qX27YZ-PT5TTQwVrqWWPwUgQ5cTJCtn6ll3KFqwrs,2643
|
|
82
84
|
phenoml/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
83
85
|
phenoml/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
84
86
|
phenoml/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
|
|
@@ -111,41 +113,44 @@ phenoml/fhir/types/fhir_patch_request_body_item_op.py,sha256=qOU6uYuWoscQ876W58a
|
|
|
111
113
|
phenoml/fhir/types/fhir_resource.py,sha256=kZxeWoOMiGqwfwdxgdWg3NUjFFTuVKCAv6Ty80myhuI,1223
|
|
112
114
|
phenoml/fhir/types/fhir_resource_meta.py,sha256=9nXzZ7V7u0x9ehDyjoydmVl7leXzzvIOzxSQJSYmHbk,934
|
|
113
115
|
phenoml/fhir/types/fhir_search_response.py,sha256=rUuRN_iECtOyETTKGx4WNBinrvC0XU4ivsPipI6OyHw,217
|
|
114
|
-
phenoml/fhir_provider/__init__.py,sha256=
|
|
115
|
-
phenoml/fhir_provider/client.py,sha256=
|
|
116
|
+
phenoml/fhir_provider/__init__.py,sha256=W9sfHGKZZIrDyngG0kPAh2GSFmpM1RopbHkPu_py2bY,1326
|
|
117
|
+
phenoml/fhir_provider/client.py,sha256=YcCCv2byazKP3o4gUFjISkANMkEH8YJ9wSPpzh7bgWU,24998
|
|
116
118
|
phenoml/fhir_provider/errors/__init__.py,sha256=Wnvf4XPELmAIZ-jVxx2t-dBNZ-X9PcDxPSL5EHqJr1Q,434
|
|
117
119
|
phenoml/fhir_provider/errors/bad_request_error.py,sha256=nv0bK4gtOnTon6a2NdVxJxHBje_O_7wIoRtXLZHovUQ,339
|
|
118
120
|
phenoml/fhir_provider/errors/forbidden_error.py,sha256=ek8-sffTy9gY3F0zyaSkcskDVvq9puXP_YvvB2BJYbA,338
|
|
119
121
|
phenoml/fhir_provider/errors/internal_server_error.py,sha256=biBHJfSP1_zWF5CJgxY4B8wrL1uC18RSccQ-BCKmYNs,343
|
|
120
122
|
phenoml/fhir_provider/errors/not_found_error.py,sha256=hQ1KdyGQJCBQqo6iLu2-szlKJdzaoV5odq_7kdXAEbc,337
|
|
121
123
|
phenoml/fhir_provider/errors/unauthorized_error.py,sha256=h8T6QhXuTo0GLL9MKfIM5p--wDqlB1-ZkMp3lY-aM3E,341
|
|
122
|
-
phenoml/fhir_provider/raw_client.py,sha256=
|
|
123
|
-
phenoml/fhir_provider/types/__init__.py,sha256=
|
|
124
|
+
phenoml/fhir_provider/raw_client.py,sha256=w2WsePj2RotuP67eInRQIbHFd6nQR78Mi47qyQBCSnQ,60847
|
|
125
|
+
phenoml/fhir_provider/types/__init__.py,sha256=E1QL5c0aMTQQvp7BJ13HLH92ib3mUJlo6dCSSSQt1W0,1646
|
|
124
126
|
phenoml/fhir_provider/types/auth_method.py,sha256=Ox5c5SQo1EHAwkhBNOJHEovgE6U2OoSvgXHLlqgk9-U,230
|
|
125
|
-
phenoml/fhir_provider/types/fhir_provider_auth_config.py,sha256
|
|
127
|
+
phenoml/fhir_provider/types/fhir_provider_auth_config.py,sha256=nwQ4IWlV0DTSm6RuWkzjdmUrwgKQ1JHwen1SlGcGHmI,2090
|
|
126
128
|
phenoml/fhir_provider/types/fhir_provider_delete_response.py,sha256=mye_IDz2hAw7BxuzeRjkPjuFAeeEsdFk0RQrSP4ZzjM,603
|
|
127
|
-
phenoml/fhir_provider/types/fhir_provider_list_response.py,sha256=
|
|
129
|
+
phenoml/fhir_provider/types/fhir_provider_list_response.py,sha256=MvQBIh0ex6j77AHhyXbE2Hkn9iF-jMiQRm5WvrwWAdQ,1231
|
|
130
|
+
phenoml/fhir_provider/types/fhir_provider_list_response_fhir_providers_item.py,sha256=6CNyk4Q4ENpv0fQfPiM2nTR0S4x-7q0ppQW53RPUuOA,306
|
|
128
131
|
phenoml/fhir_provider/types/fhir_provider_remove_auth_config_response.py,sha256=iZcKAKcqjmxzNj3cmUhT0GdQAEfTVTeLcyoN-sAX1-E,725
|
|
129
|
-
phenoml/fhir_provider/types/fhir_provider_response.py,sha256=
|
|
130
|
-
phenoml/fhir_provider/types/
|
|
132
|
+
phenoml/fhir_provider/types/fhir_provider_response.py,sha256=jjNMC4YmF-aDHs4Ry7Mwyv8LIOgLW_OQFzvE7H4JrUs,910
|
|
133
|
+
phenoml/fhir_provider/types/fhir_provider_response_data.py,sha256=53rUcYnWgms6eUV3mTwQ8XX73cz-4SPHsYaojIPq0eM,289
|
|
134
|
+
phenoml/fhir_provider/types/fhir_provider_sandbox_info.py,sha256=mxlTuLiCNHXw2drCIS_OI6p1BkDRj4n4cVc-PPg5-p0,1240
|
|
131
135
|
phenoml/fhir_provider/types/fhir_provider_template.py,sha256=4X86rNs_RhVFLL3-bWzjUIVepnJbluHrjuWRKSLIcq0,1852
|
|
132
136
|
phenoml/fhir_provider/types/fhir_query_response.py,sha256=fOy_oCRexu2iZgDWW6sRIRZm7PtNetsDzc4F2lsM-Pw,842
|
|
133
137
|
phenoml/fhir_provider/types/fhir_query_response_data.py,sha256=TfQ94GSU7NUfkxpy1VNFwOoUmFn4OxZxqFVkQDADsMk,169
|
|
134
138
|
phenoml/fhir_provider/types/json_web_key.py,sha256=ouUPhdvlASdBSJyazqecjQ64A9V9aqvtSt1wt2K3MLg,1615
|
|
135
|
-
phenoml/fhir_provider/types/provider.py,sha256=
|
|
139
|
+
phenoml/fhir_provider/types/provider.py,sha256=H8XvxEvg-4QJFWWLmETINuUQt7GMVMFeTfKiTt9rX-Q,263
|
|
136
140
|
phenoml/fhir_provider/types/role.py,sha256=Igag80s-KaGOc4nWfrGWyT81HU__c6_WJ-1oV7DOVdE,638
|
|
137
141
|
phenoml/fhir_provider/types/service_account_key.py,sha256=uup1Xl0HSc_B3278i0CS-ygCroShLS5_q0KtqXI96HY,1085
|
|
142
|
+
phenoml/fhir_provider/types/service_account_metadata.py,sha256=dNOWoWaAoi3dvoA0vhxKxV9k3pYm5ib_zDM1LVNiAxk,1170
|
|
138
143
|
phenoml/fhir_provider/types/smart_configuration.py,sha256=bG_J1yNFEWWo9kjxF0s2Ik9rXehB1JHcQ2fTn6dht6k,1174
|
|
139
|
-
phenoml/lang2fhir/__init__.py,sha256=
|
|
140
|
-
phenoml/lang2fhir/client.py,sha256=
|
|
144
|
+
phenoml/lang2fhir/__init__.py,sha256=GRHtY2j72etkOw5TeUgFc8KQ-FMfsAS4bzqvdYYVAsM,1132
|
|
145
|
+
phenoml/lang2fhir/client.py,sha256=ck1zFsdNjc-gBHeOxrHeSizeX-WzhGOe0dAd-S2R3iw,18551
|
|
141
146
|
phenoml/lang2fhir/errors/__init__.py,sha256=nIzg981R3USgSar0WuuVrpDVg-H5vIp2AceEzbhphGw,458
|
|
142
147
|
phenoml/lang2fhir/errors/bad_request_error.py,sha256=nv0bK4gtOnTon6a2NdVxJxHBje_O_7wIoRtXLZHovUQ,339
|
|
143
148
|
phenoml/lang2fhir/errors/failed_dependency_error.py,sha256=eXiqG062inkUF7fs2Newhx9uAKReK6fosz29PMD4gVw,345
|
|
144
149
|
phenoml/lang2fhir/errors/forbidden_error.py,sha256=ek8-sffTy9gY3F0zyaSkcskDVvq9puXP_YvvB2BJYbA,338
|
|
145
150
|
phenoml/lang2fhir/errors/internal_server_error.py,sha256=biBHJfSP1_zWF5CJgxY4B8wrL1uC18RSccQ-BCKmYNs,343
|
|
146
151
|
phenoml/lang2fhir/errors/unauthorized_error.py,sha256=h8T6QhXuTo0GLL9MKfIM5p--wDqlB1-ZkMp3lY-aM3E,341
|
|
147
|
-
phenoml/lang2fhir/raw_client.py,sha256=
|
|
148
|
-
phenoml/lang2fhir/types/__init__.py,sha256=
|
|
152
|
+
phenoml/lang2fhir/raw_client.py,sha256=jLdaaUk4fcTYxy1DZei8LYdfkqyXsgi46xYMhAR1zG8,40590
|
|
153
|
+
phenoml/lang2fhir/types/__init__.py,sha256=G9VhbmZptZIvqlfWDwGQodKP07UiaCPPd3hLEMi0RFY,1311
|
|
149
154
|
phenoml/lang2fhir/types/create_multi_response.py,sha256=GrOBnwDp7pSmCRqaaG_4jL0P1lqXYMk5ioTabVaP2zg,1212
|
|
150
155
|
phenoml/lang2fhir/types/create_multi_response_bundle.py,sha256=os13oK7NULRoN647NBfE3QuKe2Gvi2qSa6KJpkWIHsA,994
|
|
151
156
|
phenoml/lang2fhir/types/create_multi_response_bundle_entry_item.py,sha256=1qvcTZuE_WzOzwGs6CrQOaU9cCFdtH2A7EGhMR8aqL4,970
|
|
@@ -156,7 +161,8 @@ phenoml/lang2fhir/types/document_request_file_type.py,sha256=VgPYn7FB-5hgvNsyvQE
|
|
|
156
161
|
phenoml/lang2fhir/types/document_request_resource.py,sha256=keHsMn9UxgHd9VUNT54Atcj4Z4YI9uU0Fj9g1RwGUrg,189
|
|
157
162
|
phenoml/lang2fhir/types/fhir_resource.py,sha256=EprHErQgwP_MkaCrul94OhkOWQcbvUjMeerF2ISh9LU,141
|
|
158
163
|
phenoml/lang2fhir/types/lang2fhir_upload_profile_response.py,sha256=X41WiVztePQtZOcNRzNsder-h3rQTj94Y622HQ1izP8,721
|
|
159
|
-
phenoml/lang2fhir/types/search_response.py,sha256=
|
|
164
|
+
phenoml/lang2fhir/types/search_response.py,sha256=8_UBQ0bPLF-RoNgusLIcdsaoRfs2AAomV9IXOL23mhg,1319
|
|
165
|
+
phenoml/lang2fhir/types/search_response_resource_type.py,sha256=cETF9-PQKk08oLLn3wPstVHT3yCyr0GMlEa1SvKoY9s,861
|
|
160
166
|
phenoml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
167
|
phenoml/summary/__init__.py,sha256=cjy6_yHLxfmek9E-rYGwYhqtBfnrv_URysL3PiSz4tI,1106
|
|
162
168
|
phenoml/summary/client.py,sha256=yxpMWDf055lZ2pCB1ZcuMdo0_j6koDpQd1Dt7R8ISKQ,20518
|
|
@@ -245,7 +251,7 @@ phenoml/workflows/types/workflows_delete_response.py,sha256=izcubUOnSNOgThD9Ozo6
|
|
|
245
251
|
phenoml/workflows/types/workflows_get_response.py,sha256=gfNyUs14JSynprRwT-fuq4IDsGrPZmUSsK3WmgqIEi8,891
|
|
246
252
|
phenoml/workflows/types/workflows_update_response.py,sha256=FEvQpC9ZRk8dV1oaIAwV5bSDD2tkXZ5fG4mozRjibuQ,1046
|
|
247
253
|
phenoml/wrapper_client.py,sha256=JYTdhXgju4tOsata06wQY_ZbMsuMj3qaxkgvDzpY068,5022
|
|
248
|
-
phenoml-0.0.
|
|
249
|
-
phenoml-0.0.
|
|
250
|
-
phenoml-0.0.
|
|
251
|
-
phenoml-0.0.
|
|
254
|
+
phenoml-0.0.19.dist-info/LICENSE,sha256=Am1fNNveR2gcmOloSWQTsnUw2SQEF8HtowFqIvlagfk,1064
|
|
255
|
+
phenoml-0.0.19.dist-info/METADATA,sha256=DKgnWKF7vfWzOUb91cVC1FpX--UgzHRDyPN8f2owrtY,5331
|
|
256
|
+
phenoml-0.0.19.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
257
|
+
phenoml-0.0.19.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
-
from .fhir_provider_template import FhirProviderTemplate
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class FhirProviderSetActiveAuthConfigResponse(UniversalBaseModel):
|
|
11
|
-
success: typing.Optional[bool] = None
|
|
12
|
-
message: typing.Optional[str] = None
|
|
13
|
-
data: typing.Optional[FhirProviderTemplate] = None
|
|
14
|
-
|
|
15
|
-
if IS_PYDANTIC_V2:
|
|
16
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
-
else:
|
|
18
|
-
|
|
19
|
-
class Config:
|
|
20
|
-
frozen = True
|
|
21
|
-
smart_union = True
|
|
22
|
-
extra = pydantic.Extra.allow
|
|
File without changes
|
|
File without changes
|