fountain-life-service-clients 3.29.0__py3-none-any.whl → 3.29.2__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.
- fountain_life_service_clients/account_service.py +0 -2
- fountain_life_service_clients/account_service_policy_attributes.py +0 -2
- fountain_life_service_clients/agents_api_service.py +0 -2
- fountain_life_service_clients/ai_template_service.py +97 -18
- fountain_life_service_clients/claimed_domains_service.py +0 -2
- fountain_life_service_clients/cohorts_service.py +0 -2
- fountain_life_service_clients/ehr_ingestion_wearables_api.py +0 -2
- fountain_life_service_clients/ehr_service.py +0 -2
- fountain_life_service_clients/email_service_email.py +0 -2
- fountain_life_service_clients/email_service_sms.py +0 -2
- fountain_life_service_clients/fhir_post_processor_service.py +3 -5
- fountain_life_service_clients/fhir_search_service.py +18 -20
- fountain_life_service_clients/file_service.py +0 -2
- fountain_life_service_clients/invitation_service.py +0 -2
- fountain_life_service_clients/medical_results_service_results.py +14 -16
- fountain_life_service_clients/member_notification_service.py +5 -7
- fountain_life_service_clients/member_operations_service_members.py +0 -2
- fountain_life_service_clients/member_scheduling_service_scheduling_prompts.py +0 -2
- fountain_life_service_clients/oauth_apps_service.py +0 -2
- fountain_life_service_clients/patient_service.py +2 -4
- fountain_life_service_clients/rules_service.py +4 -6
- fountain_life_service_clients/scheduler_service.py +0 -2
- fountain_life_service_clients/survey_service.py +0 -2
- fountain_life_service_clients/user_service.py +0 -2
- {fountain_life_service_clients-3.29.0.dist-info → fountain_life_service_clients-3.29.2.dist-info}/METADATA +1 -1
- fountain_life_service_clients-3.29.2.dist-info/RECORD +29 -0
- fountain_life_service_clients-3.29.0.dist-info/RECORD +0 -29
- {fountain_life_service_clients-3.29.0.dist-info → fountain_life_service_clients-3.29.2.dist-info}/WHEEL +0 -0
@@ -1,7 +1,5 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
|
3
|
-
# filename: ai-template-service.json
|
4
|
-
from typing import List, NotRequired, TypedDict, Union, Unpack, cast
|
2
|
+
from typing import List, Literal, NotRequired, TypedDict, Union, Unpack, cast
|
5
3
|
from urllib.parse import quote
|
6
4
|
|
7
5
|
from fountain_life_service_clients._base_client import (
|
@@ -18,12 +16,37 @@ class ListTemplatesParams(TypedDict):
|
|
18
16
|
|
19
17
|
|
20
18
|
class Items(TypedDict):
|
21
|
-
type:
|
19
|
+
type: Literal["folder"]
|
22
20
|
path: str
|
23
21
|
|
24
22
|
|
25
23
|
class items(TypedDict):
|
26
|
-
type:
|
24
|
+
type: Literal["template"]
|
25
|
+
path: str
|
26
|
+
description: NotRequired[str]
|
27
|
+
id: str
|
28
|
+
accountId: str
|
29
|
+
createdAt: str
|
30
|
+
updatedAt: str
|
31
|
+
impressionType: NotRequired[
|
32
|
+
Literal[
|
33
|
+
"brain",
|
34
|
+
"cancer",
|
35
|
+
"heart",
|
36
|
+
"metabolic",
|
37
|
+
"musculoskeletal",
|
38
|
+
"nutrition",
|
39
|
+
"overview",
|
40
|
+
"synopsis",
|
41
|
+
"supplements",
|
42
|
+
"general",
|
43
|
+
]
|
44
|
+
]
|
45
|
+
lastUpdatedBy: str
|
46
|
+
|
47
|
+
|
48
|
+
class Items2(TypedDict):
|
49
|
+
type: Literal["compositeReportDefinition"]
|
27
50
|
path: str
|
28
51
|
description: NotRequired[str]
|
29
52
|
id: str
|
@@ -38,12 +61,12 @@ class Links(TypedDict):
|
|
38
61
|
|
39
62
|
|
40
63
|
class ListTemplatesResponse(TypedDict):
|
41
|
-
items: List[Union[Items, items]]
|
64
|
+
items: List[Union[Items, items, Items2]]
|
42
65
|
links: Links
|
43
66
|
|
44
67
|
|
45
68
|
class CreateTemplateRequest1(TypedDict):
|
46
|
-
type:
|
69
|
+
type: Literal["template"]
|
47
70
|
path: str
|
48
71
|
description: NotRequired[str]
|
49
72
|
content: str
|
@@ -54,7 +77,7 @@ class Section(TypedDict):
|
|
54
77
|
|
55
78
|
|
56
79
|
class CreateTemplateRequest2(TypedDict):
|
57
|
-
type:
|
80
|
+
type: Literal["compositeReportDefinition"]
|
58
81
|
path: str
|
59
82
|
description: NotRequired[str]
|
60
83
|
sections: List[Section]
|
@@ -64,7 +87,7 @@ CreateTemplateRequest = Union[CreateTemplateRequest1, CreateTemplateRequest2]
|
|
64
87
|
|
65
88
|
|
66
89
|
class Template(TypedDict):
|
67
|
-
type:
|
90
|
+
type: Literal["template"]
|
68
91
|
path: str
|
69
92
|
description: NotRequired[str]
|
70
93
|
content: str
|
@@ -72,11 +95,25 @@ class Template(TypedDict):
|
|
72
95
|
accountId: str
|
73
96
|
createdAt: str
|
74
97
|
updatedAt: str
|
98
|
+
impressionType: NotRequired[
|
99
|
+
Literal[
|
100
|
+
"brain",
|
101
|
+
"cancer",
|
102
|
+
"heart",
|
103
|
+
"metabolic",
|
104
|
+
"musculoskeletal",
|
105
|
+
"nutrition",
|
106
|
+
"overview",
|
107
|
+
"synopsis",
|
108
|
+
"supplements",
|
109
|
+
"general",
|
110
|
+
]
|
111
|
+
]
|
75
112
|
lastUpdatedBy: str
|
76
113
|
|
77
114
|
|
78
115
|
class template(TypedDict):
|
79
|
-
type:
|
116
|
+
type: Literal["compositeReportDefinition"]
|
80
117
|
path: str
|
81
118
|
description: NotRequired[str]
|
82
119
|
sections: List[Section]
|
@@ -96,7 +133,7 @@ class Template2(TypedDict):
|
|
96
133
|
The template or composite report definition
|
97
134
|
"""
|
98
135
|
|
99
|
-
type:
|
136
|
+
type: Literal["template"]
|
100
137
|
path: str
|
101
138
|
description: NotRequired[str]
|
102
139
|
content: str
|
@@ -104,6 +141,20 @@ class Template2(TypedDict):
|
|
104
141
|
accountId: str
|
105
142
|
createdAt: str
|
106
143
|
updatedAt: str
|
144
|
+
impressionType: NotRequired[
|
145
|
+
Literal[
|
146
|
+
"brain",
|
147
|
+
"cancer",
|
148
|
+
"heart",
|
149
|
+
"metabolic",
|
150
|
+
"musculoskeletal",
|
151
|
+
"nutrition",
|
152
|
+
"overview",
|
153
|
+
"synopsis",
|
154
|
+
"supplements",
|
155
|
+
"general",
|
156
|
+
]
|
157
|
+
]
|
107
158
|
lastUpdatedBy: str
|
108
159
|
|
109
160
|
|
@@ -112,7 +163,7 @@ class Template3(TypedDict):
|
|
112
163
|
The template or composite report definition
|
113
164
|
"""
|
114
165
|
|
115
|
-
type:
|
166
|
+
type: Literal["compositeReportDefinition"]
|
116
167
|
path: str
|
117
168
|
description: NotRequired[str]
|
118
169
|
sections: List[Section]
|
@@ -128,14 +179,14 @@ class GetTemplateResponse(TypedDict):
|
|
128
179
|
|
129
180
|
|
130
181
|
class PatchTemplateRequest1(TypedDict):
|
131
|
-
type:
|
182
|
+
type: Literal["template"]
|
132
183
|
path: NotRequired[str]
|
133
184
|
description: NotRequired[str]
|
134
185
|
content: NotRequired[str]
|
135
186
|
|
136
187
|
|
137
188
|
class PatchTemplateRequest2(TypedDict):
|
138
|
-
type:
|
189
|
+
type: Literal["compositeReportDefinition"]
|
139
190
|
path: NotRequired[str]
|
140
191
|
description: NotRequired[str]
|
141
192
|
sections: NotRequired[List[Section]]
|
@@ -145,7 +196,7 @@ PatchTemplateRequest = Union[PatchTemplateRequest1, PatchTemplateRequest2]
|
|
145
196
|
|
146
197
|
|
147
198
|
class Template4(TypedDict):
|
148
|
-
type:
|
199
|
+
type: Literal["template"]
|
149
200
|
path: str
|
150
201
|
description: NotRequired[str]
|
151
202
|
content: str
|
@@ -153,11 +204,25 @@ class Template4(TypedDict):
|
|
153
204
|
accountId: str
|
154
205
|
createdAt: str
|
155
206
|
updatedAt: str
|
207
|
+
impressionType: NotRequired[
|
208
|
+
Literal[
|
209
|
+
"brain",
|
210
|
+
"cancer",
|
211
|
+
"heart",
|
212
|
+
"metabolic",
|
213
|
+
"musculoskeletal",
|
214
|
+
"nutrition",
|
215
|
+
"overview",
|
216
|
+
"synopsis",
|
217
|
+
"supplements",
|
218
|
+
"general",
|
219
|
+
]
|
220
|
+
]
|
156
221
|
lastUpdatedBy: str
|
157
222
|
|
158
223
|
|
159
224
|
class Template5(TypedDict):
|
160
|
-
type:
|
225
|
+
type: Literal["compositeReportDefinition"]
|
161
226
|
path: str
|
162
227
|
description: NotRequired[str]
|
163
228
|
sections: List[Section]
|
@@ -181,7 +246,7 @@ class CopyTemplateRequest(TypedDict):
|
|
181
246
|
|
182
247
|
|
183
248
|
class Template6(TypedDict):
|
184
|
-
type:
|
249
|
+
type: Literal["template"]
|
185
250
|
path: str
|
186
251
|
description: NotRequired[str]
|
187
252
|
content: str
|
@@ -189,11 +254,25 @@ class Template6(TypedDict):
|
|
189
254
|
accountId: str
|
190
255
|
createdAt: str
|
191
256
|
updatedAt: str
|
257
|
+
impressionType: NotRequired[
|
258
|
+
Literal[
|
259
|
+
"brain",
|
260
|
+
"cancer",
|
261
|
+
"heart",
|
262
|
+
"metabolic",
|
263
|
+
"musculoskeletal",
|
264
|
+
"nutrition",
|
265
|
+
"overview",
|
266
|
+
"synopsis",
|
267
|
+
"supplements",
|
268
|
+
"general",
|
269
|
+
]
|
270
|
+
]
|
192
271
|
lastUpdatedBy: str
|
193
272
|
|
194
273
|
|
195
274
|
class Template7(TypedDict):
|
196
|
-
type:
|
275
|
+
type: Literal["compositeReportDefinition"]
|
197
276
|
path: str
|
198
277
|
description: NotRequired[str]
|
199
278
|
sections: List[Section]
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: claimed-domains-service.json
|
4
2
|
from typing import List, Literal, NotRequired, TypedDict, Unpack, cast
|
5
3
|
|
6
4
|
from fountain_life_service_clients._base_client import (
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: ehr-ingestion-wearables-api.json
|
4
2
|
from typing import List, Literal, NotRequired, TypedDict, Unpack, cast
|
5
3
|
|
6
4
|
from fountain_life_service_clients._base_client import (
|
@@ -1,7 +1,5 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
|
3
|
-
# filename: fhir-post-processor-service.json
|
4
|
-
from typing import Any, NotRequired, TypedDict, Union, Unpack, cast
|
2
|
+
from typing import Any, Literal, NotRequired, TypedDict, Union, Unpack, cast
|
5
3
|
from urllib.parse import quote
|
6
4
|
|
7
5
|
from fountain_life_service_clients._base_client import (
|
@@ -21,7 +19,7 @@ class Partial(TypedDict):
|
|
21
19
|
|
22
20
|
class GetPartialFhirResourceResponse1(TypedDict):
|
23
21
|
id: str
|
24
|
-
resourceType:
|
22
|
+
resourceType: Literal["DocumentReference"]
|
25
23
|
partial: Partial
|
26
24
|
|
27
25
|
|
@@ -31,7 +29,7 @@ class partial(TypedDict):
|
|
31
29
|
|
32
30
|
class GetPartialFhirResourceResponse2(TypedDict):
|
33
31
|
id: str
|
34
|
-
resourceType:
|
32
|
+
resourceType: Literal["Patient"]
|
35
33
|
partial: partial
|
36
34
|
|
37
35
|
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: fhir-search-service.json
|
4
2
|
from typing import Any, Dict, List, Literal, NotRequired, TypedDict, Union, Unpack, cast
|
5
3
|
from urllib.parse import quote
|
6
4
|
|
@@ -12,7 +10,7 @@ from fountain_life_service_clients._base_client import (
|
|
12
10
|
|
13
11
|
|
14
12
|
class Expr(TypedDict):
|
15
|
-
type:
|
13
|
+
type: Literal["column_ref"]
|
16
14
|
column: str
|
17
15
|
table: NotRequired[str]
|
18
16
|
|
@@ -22,7 +20,7 @@ class Columns(TypedDict):
|
|
22
20
|
|
23
21
|
|
24
22
|
class columns(TypedDict):
|
25
|
-
type:
|
23
|
+
type: Literal["elasticsearch"]
|
26
24
|
aggregations: Dict[str, Any]
|
27
25
|
|
28
26
|
|
@@ -31,7 +29,7 @@ class FromItem(TypedDict):
|
|
31
29
|
|
32
30
|
|
33
31
|
class Where(TypedDict):
|
34
|
-
type:
|
32
|
+
type: Literal["elasticsearch"]
|
35
33
|
query: Dict[str, Any]
|
36
34
|
highlight: NotRequired[Dict[str, Any]]
|
37
35
|
|
@@ -41,7 +39,7 @@ class Limit(TypedDict):
|
|
41
39
|
A Response Offset
|
42
40
|
"""
|
43
41
|
|
44
|
-
type:
|
42
|
+
type: Literal["number"]
|
45
43
|
value: float
|
46
44
|
|
47
45
|
|
@@ -50,7 +48,7 @@ class limit(TypedDict):
|
|
50
48
|
An Elasticsearch Search-After Clause
|
51
49
|
"""
|
52
50
|
|
53
|
-
type:
|
51
|
+
type: Literal["elasticsearch"]
|
54
52
|
search_after: List
|
55
53
|
|
56
54
|
|
@@ -59,7 +57,7 @@ class LimitItem(TypedDict):
|
|
59
57
|
A Response Limit
|
60
58
|
"""
|
61
59
|
|
62
|
-
type:
|
60
|
+
type: Literal["number"]
|
63
61
|
value: float
|
64
62
|
|
65
63
|
|
@@ -71,8 +69,8 @@ class OrderbyItem(TypedDict):
|
|
71
69
|
SearchProjectRequest = TypedDict(
|
72
70
|
"SearchProjectRequest",
|
73
71
|
{
|
74
|
-
"type":
|
75
|
-
"columns": Union[
|
72
|
+
"type": Literal["select"],
|
73
|
+
"columns": Union[Literal["*"], List[Union[Columns, columns]]],
|
76
74
|
"from": List[FromItem],
|
77
75
|
"where": NotRequired[Where],
|
78
76
|
"limit": NotRequired[List[Union[Union[Limit, limit], LimitItem]]],
|
@@ -103,7 +101,7 @@ class Columns2(TypedDict):
|
|
103
101
|
|
104
102
|
|
105
103
|
class Columns3(TypedDict):
|
106
|
-
type:
|
104
|
+
type: Literal["elasticsearch"]
|
107
105
|
aggregations: Dict[str, Any]
|
108
106
|
|
109
107
|
|
@@ -112,7 +110,7 @@ class Limit2(TypedDict):
|
|
112
110
|
A Response Offset
|
113
111
|
"""
|
114
112
|
|
115
|
-
type:
|
113
|
+
type: Literal["number"]
|
116
114
|
value: float
|
117
115
|
|
118
116
|
|
@@ -121,7 +119,7 @@ class Limit3(TypedDict):
|
|
121
119
|
An Elasticsearch Search-After Clause
|
122
120
|
"""
|
123
121
|
|
124
|
-
type:
|
122
|
+
type: Literal["elasticsearch"]
|
125
123
|
search_after: List
|
126
124
|
|
127
125
|
|
@@ -133,8 +131,8 @@ class orderbyItem(TypedDict):
|
|
133
131
|
SearchPatientRequest = TypedDict(
|
134
132
|
"SearchPatientRequest",
|
135
133
|
{
|
136
|
-
"type":
|
137
|
-
"columns": Union[
|
134
|
+
"type": Literal["select"],
|
135
|
+
"columns": Union[Literal["*"], List[Union[Columns2, Columns3]]],
|
138
136
|
"from": List[FromItem],
|
139
137
|
"where": NotRequired[Where],
|
140
138
|
"limit": NotRequired[List[Union[Union[Limit2, Limit3], LimitItem]]],
|
@@ -159,7 +157,7 @@ class Columns4(TypedDict):
|
|
159
157
|
|
160
158
|
|
161
159
|
class Columns5(TypedDict):
|
162
|
-
type:
|
160
|
+
type: Literal["elasticsearch"]
|
163
161
|
aggregations: Dict[str, Any]
|
164
162
|
|
165
163
|
|
@@ -168,7 +166,7 @@ class Limit4(TypedDict):
|
|
168
166
|
A Response Offset
|
169
167
|
"""
|
170
168
|
|
171
|
-
type:
|
169
|
+
type: Literal["number"]
|
172
170
|
value: float
|
173
171
|
|
174
172
|
|
@@ -177,7 +175,7 @@ class Limit5(TypedDict):
|
|
177
175
|
An Elasticsearch Search-After Clause
|
178
176
|
"""
|
179
177
|
|
180
|
-
type:
|
178
|
+
type: Literal["elasticsearch"]
|
181
179
|
search_after: List
|
182
180
|
|
183
181
|
|
@@ -189,8 +187,8 @@ class OrderbyItem2(TypedDict):
|
|
189
187
|
SearchCohortRequest = TypedDict(
|
190
188
|
"SearchCohortRequest",
|
191
189
|
{
|
192
|
-
"type":
|
193
|
-
"columns": Union[
|
190
|
+
"type": Literal["select"],
|
191
|
+
"columns": Union[Literal["*"], List[Union[Columns4, Columns5]]],
|
194
192
|
"from": List[FromItem],
|
195
193
|
"where": NotRequired[Where],
|
196
194
|
"limit": NotRequired[List[Union[Union[Limit4, Limit5], LimitItem]]],
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: medical-results-service-results.json
|
4
2
|
from typing import (
|
5
3
|
Any,
|
6
4
|
List,
|
@@ -54,8 +52,8 @@ class SubSystem(TypedDict):
|
|
54
52
|
|
55
53
|
|
56
54
|
class Results(TypedDict):
|
57
|
-
type:
|
58
|
-
status:
|
55
|
+
type: Literal["withoutRange"]
|
56
|
+
status: Literal["default"]
|
59
57
|
resource: NotRequired[Any]
|
60
58
|
|
61
59
|
|
@@ -63,7 +61,7 @@ class InRange(TypedDict):
|
|
63
61
|
lower: NotRequired[float]
|
64
62
|
upper: NotRequired[float]
|
65
63
|
label: str
|
66
|
-
status:
|
64
|
+
status: Literal["in-range"]
|
67
65
|
|
68
66
|
|
69
67
|
class Optimal(TypedDict):
|
@@ -74,7 +72,7 @@ class Optimal(TypedDict):
|
|
74
72
|
lower: NotRequired[float]
|
75
73
|
upper: NotRequired[float]
|
76
74
|
label: str
|
77
|
-
status:
|
75
|
+
status: Literal["optimal"]
|
78
76
|
|
79
77
|
|
80
78
|
"""
|
@@ -90,15 +88,15 @@ Ranges = TypedDict(
|
|
90
88
|
|
91
89
|
|
92
90
|
class results(TypedDict):
|
93
|
-
type:
|
91
|
+
type: Literal["withRange"]
|
94
92
|
status: Literal["in-range", "attention", "optimal"]
|
95
93
|
resource: NotRequired[Any]
|
96
94
|
ranges: Ranges
|
97
95
|
|
98
96
|
|
99
97
|
class Results2(TypedDict):
|
100
|
-
type:
|
101
|
-
status:
|
98
|
+
type: Literal["pending"]
|
99
|
+
status: Literal["pending"]
|
102
100
|
resource: NotRequired[Any]
|
103
101
|
|
104
102
|
|
@@ -134,14 +132,14 @@ class Attention(TypedDict):
|
|
134
132
|
lower: NotRequired[float]
|
135
133
|
upper: NotRequired[float]
|
136
134
|
label: str
|
137
|
-
status:
|
135
|
+
status: Literal["attention"]
|
138
136
|
|
139
137
|
|
140
138
|
class optimal(TypedDict):
|
141
139
|
lower: NotRequired[float]
|
142
140
|
upper: NotRequired[float]
|
143
141
|
label: str
|
144
|
-
status:
|
142
|
+
status: Literal["optimal"]
|
145
143
|
|
146
144
|
|
147
145
|
ranges = TypedDict(
|
@@ -161,7 +159,7 @@ class Result(TypedDict):
|
|
161
159
|
|
162
160
|
|
163
161
|
class Items(TypedDict):
|
164
|
-
type:
|
162
|
+
type: Literal["withRange"]
|
165
163
|
ranges: ranges
|
166
164
|
result: Result
|
167
165
|
coding: Coding
|
@@ -172,13 +170,13 @@ class Items(TypedDict):
|
|
172
170
|
|
173
171
|
|
174
172
|
class result(TypedDict):
|
175
|
-
status:
|
173
|
+
status: Literal["default"]
|
176
174
|
text: str
|
177
175
|
interpretationText: str
|
178
176
|
|
179
177
|
|
180
178
|
class items(TypedDict):
|
181
|
-
type:
|
179
|
+
type: Literal["withoutRange"]
|
182
180
|
result: result
|
183
181
|
coding: Coding
|
184
182
|
resource: NotRequired[Any]
|
@@ -188,11 +186,11 @@ class items(TypedDict):
|
|
188
186
|
|
189
187
|
|
190
188
|
class Result2(TypedDict):
|
191
|
-
status:
|
189
|
+
status: Literal["pending"]
|
192
190
|
|
193
191
|
|
194
192
|
class Items2(TypedDict):
|
195
|
-
type:
|
193
|
+
type: Literal["pending"]
|
196
194
|
result: Result2
|
197
195
|
coding: Coding
|
198
196
|
resource: NotRequired[Any]
|
@@ -1,7 +1,5 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
|
3
|
-
# filename: member-notification-service.json
|
4
|
-
from typing import List, NotRequired, TypedDict, Union, Unpack, cast
|
2
|
+
from typing import List, Literal, NotRequired, TypedDict, Union, Unpack, cast
|
5
3
|
|
6
4
|
from fountain_life_service_clients._base_client import (
|
7
5
|
AlphaConfig,
|
@@ -11,28 +9,28 @@ from fountain_life_service_clients._base_client import (
|
|
11
9
|
|
12
10
|
|
13
11
|
class SendTemplatedNotificationRequest1(TypedDict):
|
14
|
-
name:
|
12
|
+
name: Literal["appointment-reminder"]
|
15
13
|
appointmentId: str
|
16
14
|
patientId: str
|
17
15
|
messageId: str
|
18
16
|
|
19
17
|
|
20
18
|
class SendTemplatedNotificationRequest2(TypedDict):
|
21
|
-
name:
|
19
|
+
name: Literal["results-available"]
|
22
20
|
type: str
|
23
21
|
patientId: str
|
24
22
|
messageId: str
|
25
23
|
|
26
24
|
|
27
25
|
class SendTemplatedNotificationRequest3(TypedDict):
|
28
|
-
name:
|
26
|
+
name: Literal["blood-work-scheduling-prompt"]
|
29
27
|
procedureRequestId: str
|
30
28
|
patientId: str
|
31
29
|
messageId: str
|
32
30
|
|
33
31
|
|
34
32
|
class SendTemplatedNotificationRequest4(TypedDict):
|
35
|
-
name:
|
33
|
+
name: Literal["survey-reminder"]
|
36
34
|
surveyNames: List[str]
|
37
35
|
patientId: str
|
38
36
|
messageId: str
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: member-operations-service-members.json
|
4
2
|
from typing import Literal, NotRequired, TypedDict, Unpack, cast
|
5
3
|
|
6
4
|
from fountain_life_service_clients._base_client import (
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: member-scheduling-service-scheduling-prompts.json
|
4
2
|
from typing import List, NotRequired, TypedDict, Unpack, cast
|
5
3
|
|
6
4
|
from fountain_life_service_clients._base_client import (
|
@@ -1,7 +1,5 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
|
3
|
-
# filename: patient-service.json
|
4
|
-
from typing import Any, Dict, List, NotRequired, TypedDict, Unpack, cast
|
2
|
+
from typing import Any, Dict, List, Literal, NotRequired, TypedDict, Unpack, cast
|
5
3
|
from urllib.parse import quote
|
6
4
|
|
7
5
|
from fountain_life_service_clients._base_client import (
|
@@ -62,7 +60,7 @@ class UpdateFileResponse(TypedDict):
|
|
62
60
|
|
63
61
|
class GetFileByIdParams(TypedDict):
|
64
62
|
subject: NotRequired[str]
|
65
|
-
include: NotRequired[
|
63
|
+
include: NotRequired[Literal["downloadUrl"]]
|
66
64
|
includeContentDisposition: NotRequired[bool]
|
67
65
|
|
68
66
|
|
@@ -1,6 +1,4 @@
|
|
1
1
|
# This file was generated automatically. Do not edit it directly.
|
2
|
-
# generated by datamodel-codegen:
|
3
|
-
# filename: rules-service.json
|
4
2
|
from typing import Any, Dict, List, Literal, NotRequired, TypedDict, Unpack, cast
|
5
3
|
from urllib.parse import quote
|
6
4
|
|
@@ -105,7 +103,7 @@ class GetRuleJobsResponseItem(TypedDict):
|
|
105
103
|
datasetId: str
|
106
104
|
state: Literal["RUNNING", "COMPLETE", "CANCELED"]
|
107
105
|
steps: List
|
108
|
-
resourceType:
|
106
|
+
resourceType: Literal["Patient"]
|
109
107
|
execution: str
|
110
108
|
successes: float
|
111
109
|
failures: float
|
@@ -118,7 +116,7 @@ GetRuleJobsResponse = List[GetRuleJobsResponseItem]
|
|
118
116
|
class CreateRuleJobRequest(TypedDict):
|
119
117
|
datasetId: str
|
120
118
|
steps: List
|
121
|
-
resourceType:
|
119
|
+
resourceType: Literal["Patient"]
|
122
120
|
resourceIds: List[str]
|
123
121
|
|
124
122
|
|
@@ -132,7 +130,7 @@ class CreateRuleJobResponse(TypedDict):
|
|
132
130
|
datasetId: str
|
133
131
|
state: Literal["RUNNING", "COMPLETE", "CANCELED"]
|
134
132
|
steps: List
|
135
|
-
resourceType:
|
133
|
+
resourceType: Literal["Patient"]
|
136
134
|
execution: str
|
137
135
|
successes: float
|
138
136
|
failures: float
|
@@ -149,7 +147,7 @@ class GetRuleJobResponse(TypedDict):
|
|
149
147
|
datasetId: str
|
150
148
|
state: Literal["RUNNING", "COMPLETE", "CANCELED"]
|
151
149
|
steps: List
|
152
|
-
resourceType:
|
150
|
+
resourceType: Literal["Patient"]
|
153
151
|
execution: str
|
154
152
|
successes: float
|
155
153
|
failures: float
|
@@ -0,0 +1,29 @@
|
|
1
|
+
fountain_life_service_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
fountain_life_service_clients/_base_client.py,sha256=19AeJmz3H0d4tRdJ-fBcIXhw78hPniyGDfclfr4LC9g,781
|
3
|
+
fountain_life_service_clients/account_service.py,sha256=LI1w20YRz19JpC-8CEdoCpix4zKWSVl6iJ15k0Xc5Vo,3665
|
4
|
+
fountain_life_service_clients/account_service_policy_attributes.py,sha256=yq8JyDtFVhP5QzYvnAyIZGBhRK9Ds8SrMcG6EazPjxs,1523
|
5
|
+
fountain_life_service_clients/agents_api_service.py,sha256=oHegCFfTXwsrXoRz7VIRXOhOzj6D27tDXPWFnUz95VU,5876
|
6
|
+
fountain_life_service_clients/ai_template_service.py,sha256=7nACXK8WZ2TfMW34DRMj0eWchTok3Q9MoideWtj8MR4,8132
|
7
|
+
fountain_life_service_clients/claimed_domains_service.py,sha256=qW-7jCdDcB7qz6u5sv9_TESwYPbjWYwSGNnqfcrvyeM,1659
|
8
|
+
fountain_life_service_clients/cohorts_service.py,sha256=B0atrAnVGFG2TWMMORyNlJK0ffKUfI084mISFXZjAtI,4633
|
9
|
+
fountain_life_service_clients/ehr_ingestion_wearables_api.py,sha256=7X15qJr0m2ZXRb4inog3vUtVZJLxn10oVLBEU63iRt0,5591
|
10
|
+
fountain_life_service_clients/ehr_service.py,sha256=i4-JRdJXAtnB6Fsgv1qzaGJ55kpdbHh8X-gqlTgPvRc,9522
|
11
|
+
fountain_life_service_clients/email_service_email.py,sha256=dh1En-ChG5DVWQatikcjy9WR26kP4znab_TPnt96DlI,2013
|
12
|
+
fountain_life_service_clients/email_service_sms.py,sha256=6W9Ba0Qj8oRtPMOrMx2HPkjPps2bXQLCH7Sw3ZQrjUQ,875
|
13
|
+
fountain_life_service_clients/fhir_post_processor_service.py,sha256=4IsyyRoCIzSNIBMvJFi1QyFuekikmtoY7ahQCh8Oncw,1355
|
14
|
+
fountain_life_service_clients/fhir_search_service.py,sha256=O_y8YrOjvKj_Tfs5Pj4MM4X6RvV1E2s762lRH5U8ji8,6014
|
15
|
+
fountain_life_service_clients/file_service.py,sha256=CY36fpvCAi17npAKAWkFDDaNhwbvTC5hx-sGZmPfyBM,4046
|
16
|
+
fountain_life_service_clients/invitation_service.py,sha256=tKWgb-bGIwT4x3MWSLiVChQRaZURj43S6Uyrg3Lt7HA,2596
|
17
|
+
fountain_life_service_clients/medical_results_service_results.py,sha256=L0clTifU4LWWKgBsIzEfelmkaICxG1_q8sHyrdA5es4,4876
|
18
|
+
fountain_life_service_clients/member_notification_service.py,sha256=wRkgmUqAV59BV81c3Iwz7JxSTuOLagHrcJcXvMbdBco,1814
|
19
|
+
fountain_life_service_clients/member_operations_service_members.py,sha256=b7-e_ubZm-7EQ94nzH1VXZyy73kxidyMBS_ykYet_24,1200
|
20
|
+
fountain_life_service_clients/member_scheduling_service_scheduling_prompts.py,sha256=rhPvbj37kZm2KGl5JYtFHFaWNj7Sfcq7KOKotBK3xtg,1580
|
21
|
+
fountain_life_service_clients/oauth_apps_service.py,sha256=7TvU83CUFE9GTR9zVDRNwX6t1C0_uJXE6cO2ANUNqVE,7599
|
22
|
+
fountain_life_service_clients/patient_service.py,sha256=gApsPYlCzzklf2ha4TgNBRo2FffECL3-nc8_C7RppIs,4862
|
23
|
+
fountain_life_service_clients/rules_service.py,sha256=VxPYboYQmw--6Kn78RKu6_9as1KgpL_1rz9eyDXUWCo,6912
|
24
|
+
fountain_life_service_clients/scheduler_service.py,sha256=IkwRns_QHh6fx1IZWEXZ35DeRiW7OHaROM5wjWubZm4,4440
|
25
|
+
fountain_life_service_clients/survey_service.py,sha256=hxOl3gBDxEdjrsKcMCoPl9RxumQzRT-e4zTbEAA0Iq4,13343
|
26
|
+
fountain_life_service_clients/user_service.py,sha256=rM9xcF-VzdLp9aDOhg1UbecX2VPPMxH9PlgpNpGdC18,4253
|
27
|
+
fountain_life_service_clients-3.29.2.dist-info/METADATA,sha256=4j6AR8b4dKHLWkYtLa2ILgselpofQYK_hhJ_VaArjKo,1405
|
28
|
+
fountain_life_service_clients-3.29.2.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
29
|
+
fountain_life_service_clients-3.29.2.dist-info/RECORD,,
|
@@ -1,29 +0,0 @@
|
|
1
|
-
fountain_life_service_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
fountain_life_service_clients/_base_client.py,sha256=19AeJmz3H0d4tRdJ-fBcIXhw78hPniyGDfclfr4LC9g,781
|
3
|
-
fountain_life_service_clients/account_service.py,sha256=rqM_nuPmUuwMWudreF2kW42y57FL9u4YJ_T0sVEfNbY,3735
|
4
|
-
fountain_life_service_clients/account_service_policy_attributes.py,sha256=fgwgqzWGwoekc0yCr55qoPiuI2B5fd778rpTvZhmrN0,1611
|
5
|
-
fountain_life_service_clients/agents_api_service.py,sha256=wzZBzTpIrQafRjYL3gP5B9euHU0YS3NqgDhHV3QMoD8,5949
|
6
|
-
fountain_life_service_clients/ai_template_service.py,sha256=V9jr0yI42xCV6BRmJI6v8cyQPFZx7zR03OzTvp3PrwQ,6288
|
7
|
-
fountain_life_service_clients/claimed_domains_service.py,sha256=FMTyXZO_dm23jqYBXx-wE3bo1dwnJ4OwvcmkMyHWBok,1737
|
8
|
-
fountain_life_service_clients/cohorts_service.py,sha256=FPI_0Nn8BXhJfLwDJY2S3XIetSmGAYN0rjhESg4YYpI,4703
|
9
|
-
fountain_life_service_clients/ehr_ingestion_wearables_api.py,sha256=VnFd22BFqNhDzeRaDvaJU98xHiptfy0r1sE9pBrwI74,5673
|
10
|
-
fountain_life_service_clients/ehr_service.py,sha256=1lm8pKL_11aX11woGzlWyL_OJq-Hwj6ElD38O0Zxdgw,9588
|
11
|
-
fountain_life_service_clients/email_service_email.py,sha256=jNaLCZFaoNOdVzFKVrbLBAyxssVY9eH87SeQLyySxJM,2087
|
12
|
-
fountain_life_service_clients/email_service_sms.py,sha256=xJEGYCyXBSitvgQoQJBtMZAhimXbLl3HZSyq1ShSDH4,947
|
13
|
-
fountain_life_service_clients/fhir_post_processor_service.py,sha256=vSwBLVW9I67u6-yR-qsSJxSPJySYIvEs8VNT_77MGEc,1414
|
14
|
-
fountain_life_service_clients/fhir_search_service.py,sha256=vnrR2737U9PZPOPuqAYqXdpW9P0dw5vRkx5BXyBx-tw,5993
|
15
|
-
fountain_life_service_clients/file_service.py,sha256=VsGELX7ANAqt2ps0UxEIThR1PkU3_YpCPYm1EKT6_eA,4113
|
16
|
-
fountain_life_service_clients/invitation_service.py,sha256=ju1hTdfKJNH0oTljdSBTUd5hrs6PLyl-XnzG92i3onk,2669
|
17
|
-
fountain_life_service_clients/medical_results_service_results.py,sha256=6i4nCs_L0GaAbzGbI3E4IWMDfCyYDE-cciuAie5Bn0A,4917
|
18
|
-
fountain_life_service_clients/member_notification_service.py,sha256=-iuaWAFRLA4U1sSSm1vywO7fh4lmlfrFJXa2jdXioYw,1827
|
19
|
-
fountain_life_service_clients/member_operations_service_members.py,sha256=pQ8lv0JAUYequqsaGP00uSsNvszQaZmIqexN_4Jd-n8,1288
|
20
|
-
fountain_life_service_clients/member_scheduling_service_scheduling_prompts.py,sha256=3vQuqvUXpjaN5WhljamwyRwXdc4TS-rzzHY40ADYIW0,1679
|
21
|
-
fountain_life_service_clients/oauth_apps_service.py,sha256=A-rIzQ5pKkaTX6OAId6X5ssd2EA4HlddD8WKIpguvXI,7672
|
22
|
-
fountain_life_service_clients/patient_service.py,sha256=7oOI9v8JVOR1hzh2yA19X-qoAvCe27K0OiExb6tWWmo,4904
|
23
|
-
fountain_life_service_clients/rules_service.py,sha256=ncZWRy_C9mt-nkIqJnbV0cGyyqU2qFCt0hKQxRUuW8o,6972
|
24
|
-
fountain_life_service_clients/scheduler_service.py,sha256=iyDfesqgfLaRWUzESdIIp9-nlxdY4YWez57PqI3GVk4,4512
|
25
|
-
fountain_life_service_clients/survey_service.py,sha256=mN4NX7y5RShuofN1-VH3tqr-9g8pcppIuEo8Mxf6p5g,13412
|
26
|
-
fountain_life_service_clients/user_service.py,sha256=O8G80UyWGKEQEktwy4mBhO2Dh6MnMSewbSgcCHogQXw,4320
|
27
|
-
fountain_life_service_clients-3.29.0.dist-info/METADATA,sha256=tDsQNOjGJwl4t40YeCJgaOXPOjEpGPN0K0JhRZ3LEek,1405
|
28
|
-
fountain_life_service_clients-3.29.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
29
|
-
fountain_life_service_clients-3.29.0.dist-info/RECORD,,
|
File without changes
|