-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade sdk libraries to latest versions #2825
Changes from 6 commits
cf94e7f
83a5f79
a004aed
f1232a1
ee98977
a517d48
566dd1c
d822140
757ef9b
3a0640a
0dc0169
316d851
69bf5a6
7ec1fc6
f374de4
1935bc6
ebbcca7
c897765
0f6e4f2
e122456
6b22858
85de386
eaf8ddb
28045bb
a811009
296a946
d7a922a
830545f
df96c15
c43699c
9bafbde
85e9983
a1d5bac
ad8439b
8873049
42cdbf0
34d3860
88f08c0
128413b
95fc382
32ebce6
8b214ea
8ecae07
3d7db34
3a622e3
6a7873a
c08b361
e2ea7e8
82b8b84
0da2e9b
80a5915
e03d395
4c77801
81964bb
366e96f
1e2428a
cc8ea67
e7d1bd7
73efcd9
edc4354
d950aa3
edcde6a
0b97404
b1b5e89
539d971
cbb99ad
236ec90
7217899
2754420
1c0b841
d1ff1ca
f10402a
dc38df3
d2da4b3
b2bad33
3601636
1474afa
2553388
3db27f9
28589a0
990c21c
ac72c54
fcac929
7765ea8
e250377
5166609
6a84dab
c84f13d
c58bc6d
219c77b
b8eade5
ef7722f
2b0a657
af047b0
4c84739
5ba6194
25fcf16
8ce6254
c519e94
e323ad9
2cb4ea9
ce204ce
38786e6
14e98bf
d7bfd18
7d171b9
3e9807f
195fc0e
7d2745a
281f712
704a91d
b50b6bd
220d173
53e242c
7eaadf1
ba3ad77
32f61ce
c92a700
d505c7e
2a68650
822b6af
bf607c8
cb4d76f
0cd50ac
89ac5a4
f75f06b
8da3c4e
ce5d08c
5822652
c0d878f
16229dc
676c881
85cd72c
1417f48
26c551b
ff6f2dd
7893f28
26fae69
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,10 +52,12 @@ suspend fun FhirEngine.loadLibraryAtPath(fhirOperator: FhirOperator, path: Strin | |
runCatching { get<Library>(IdType(path).idPart) }.getOrNull() | ||
?: search<Library> { filter(Library.URL, { value = path }) }.map { it.resource }.firstOrNull() | ||
|
||
library?.let { | ||
// TODO Fix refactored implementation on fhirOperator.loadLib() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should come from the knowledge manager now. Have we added libs there already? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We included the knowledger dependency do we need any others? Feel free to add any other that's relevant for the knowledge manager to work. |
||
/*library?.let { | ||
fhirOperator.loadLib(it) | ||
|
||
it.relatedArtifact.forEach { loadLibraryAtPath(fhirOperator, it) } | ||
} | ||
}*/ | ||
} | ||
|
||
suspend fun FhirEngine.loadLibraryAtPath( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need to add
updateLastUpdated
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that is updated by the calling method here