@icanbwell/bwell-sdk-ts 1.39.0-rc.1758227328 → 1.39.0
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.
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/search/search-health-resources-request.d.ts +2 -6
- package/dist/api/graphql-api/search/search-health-resources-request-factory.js +3 -1
- package/dist/graphql/operations/index.d.ts +19 -24
- package/dist/graphql/operations/index.js +54 -170
- package/dist/graphql/operations/types.d.ts +159 -1743
- package/package.json +1 -1
|
@@ -258,6 +258,55 @@ export const IdentifierFieldsFragmentDoc = `
|
|
|
258
258
|
value
|
|
259
259
|
}
|
|
260
260
|
${CodeableConceptFieldsFragmentDoc}`;
|
|
261
|
+
export const EndpointFieldsFragmentDoc = `
|
|
262
|
+
fragment EndpointFields on Endpoint {
|
|
263
|
+
identifier {
|
|
264
|
+
...IdentifierFields
|
|
265
|
+
}
|
|
266
|
+
name
|
|
267
|
+
status
|
|
268
|
+
connectionType {
|
|
269
|
+
...CodingFields
|
|
270
|
+
}
|
|
271
|
+
address
|
|
272
|
+
}
|
|
273
|
+
${IdentifierFieldsFragmentDoc}
|
|
274
|
+
${CodingFieldsFragmentDoc}`;
|
|
275
|
+
export const AddressFieldsFragmentDoc = `
|
|
276
|
+
fragment AddressFields on Address {
|
|
277
|
+
use
|
|
278
|
+
type
|
|
279
|
+
text
|
|
280
|
+
line
|
|
281
|
+
city
|
|
282
|
+
district
|
|
283
|
+
state
|
|
284
|
+
postalCode
|
|
285
|
+
country
|
|
286
|
+
}
|
|
287
|
+
`;
|
|
288
|
+
export const OrganizationFieldsFragmentDoc = `
|
|
289
|
+
fragment OrganizationFields on Organization {
|
|
290
|
+
resourceType
|
|
291
|
+
identifier {
|
|
292
|
+
...IdentifierFields
|
|
293
|
+
}
|
|
294
|
+
endpoint {
|
|
295
|
+
...EndpointFields
|
|
296
|
+
}
|
|
297
|
+
name
|
|
298
|
+
telecom {
|
|
299
|
+
system
|
|
300
|
+
value
|
|
301
|
+
rank
|
|
302
|
+
}
|
|
303
|
+
address {
|
|
304
|
+
...AddressFields
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
${IdentifierFieldsFragmentDoc}
|
|
308
|
+
${EndpointFieldsFragmentDoc}
|
|
309
|
+
${AddressFieldsFragmentDoc}`;
|
|
261
310
|
export const MedicationReferenceFieldsFragmentDoc = `
|
|
262
311
|
fragment MedicationReferenceFields on USCoreMedicationProfile {
|
|
263
312
|
resourceType
|
|
@@ -637,38 +686,6 @@ export const ComponentFieldsFragmentDoc = `
|
|
|
637
686
|
${CodeableConceptFieldsFragmentDoc}
|
|
638
687
|
${ValueFieldsFragmentDoc}
|
|
639
688
|
${ReferenceRangeFieldsFragmentDoc}`;
|
|
640
|
-
export const AddressFieldsFragmentDoc = `
|
|
641
|
-
fragment AddressFields on Address {
|
|
642
|
-
use
|
|
643
|
-
type
|
|
644
|
-
text
|
|
645
|
-
line
|
|
646
|
-
city
|
|
647
|
-
district
|
|
648
|
-
state
|
|
649
|
-
postalCode
|
|
650
|
-
country
|
|
651
|
-
}
|
|
652
|
-
`;
|
|
653
|
-
export const ContactPointFieldsFragmentDoc = `
|
|
654
|
-
fragment ContactPointFields on ContactPoint {
|
|
655
|
-
id
|
|
656
|
-
system
|
|
657
|
-
value
|
|
658
|
-
use
|
|
659
|
-
rank
|
|
660
|
-
}
|
|
661
|
-
`;
|
|
662
|
-
export const LocationManagingOrganizationReferenceFieldsFragmentDoc = `
|
|
663
|
-
fragment LocationManagingOrganizationReferenceFields on LocationManagingOrganizationReference {
|
|
664
|
-
id
|
|
665
|
-
reference
|
|
666
|
-
identifier {
|
|
667
|
-
...IdentifierFields
|
|
668
|
-
}
|
|
669
|
-
display
|
|
670
|
-
}
|
|
671
|
-
${IdentifierFieldsFragmentDoc}`;
|
|
672
689
|
export const LocationFieldsFragmentDoc = `
|
|
673
690
|
fragment LocationFields on Location {
|
|
674
691
|
name
|
|
@@ -686,21 +703,17 @@ export const LocationFieldsFragmentDoc = `
|
|
|
686
703
|
}
|
|
687
704
|
distanceInMiles
|
|
688
705
|
telecom {
|
|
689
|
-
|
|
706
|
+
system
|
|
707
|
+
value
|
|
708
|
+
rank
|
|
690
709
|
}
|
|
691
710
|
type {
|
|
692
711
|
...CodeableConceptFields
|
|
693
712
|
}
|
|
694
|
-
status
|
|
695
|
-
managingOrganization {
|
|
696
|
-
...LocationManagingOrganizationReferenceFields
|
|
697
|
-
}
|
|
698
713
|
}
|
|
699
714
|
${IdentifierFieldsFragmentDoc}
|
|
700
715
|
${AddressFieldsFragmentDoc}
|
|
701
|
-
${
|
|
702
|
-
${CodeableConceptFieldsFragmentDoc}
|
|
703
|
-
${LocationManagingOrganizationReferenceFieldsFragmentDoc}`;
|
|
716
|
+
${CodeableConceptFieldsFragmentDoc}`;
|
|
704
717
|
export const ParticipantFieldsFragmentDoc = `
|
|
705
718
|
fragment ParticipantFields on Participant {
|
|
706
719
|
individual {
|
|
@@ -1050,125 +1063,6 @@ export const PractitionerFieldsFragmentDoc = `
|
|
|
1050
1063
|
}
|
|
1051
1064
|
${HumanNameFieldsFragmentDoc}
|
|
1052
1065
|
${IdentifierFieldsFragmentDoc}`;
|
|
1053
|
-
export const EndpointFieldsFragmentDoc = `
|
|
1054
|
-
fragment EndpointFields on Endpoint {
|
|
1055
|
-
identifier {
|
|
1056
|
-
...IdentifierFields
|
|
1057
|
-
}
|
|
1058
|
-
name
|
|
1059
|
-
status
|
|
1060
|
-
connectionType {
|
|
1061
|
-
...CodingFields
|
|
1062
|
-
}
|
|
1063
|
-
address
|
|
1064
|
-
}
|
|
1065
|
-
${IdentifierFieldsFragmentDoc}
|
|
1066
|
-
${CodingFieldsFragmentDoc}`;
|
|
1067
|
-
export const OrganizationFieldsFragmentDoc = `
|
|
1068
|
-
fragment OrganizationFields on Organization {
|
|
1069
|
-
resourceType
|
|
1070
|
-
identifier {
|
|
1071
|
-
...IdentifierFields
|
|
1072
|
-
}
|
|
1073
|
-
endpoint {
|
|
1074
|
-
...EndpointFields
|
|
1075
|
-
}
|
|
1076
|
-
name
|
|
1077
|
-
telecom {
|
|
1078
|
-
...ContactPointFields
|
|
1079
|
-
}
|
|
1080
|
-
address {
|
|
1081
|
-
...AddressFields
|
|
1082
|
-
}
|
|
1083
|
-
type {
|
|
1084
|
-
...CodeableConceptFields
|
|
1085
|
-
}
|
|
1086
|
-
active
|
|
1087
|
-
}
|
|
1088
|
-
${IdentifierFieldsFragmentDoc}
|
|
1089
|
-
${EndpointFieldsFragmentDoc}
|
|
1090
|
-
${ContactPointFieldsFragmentDoc}
|
|
1091
|
-
${AddressFieldsFragmentDoc}
|
|
1092
|
-
${CodeableConceptFieldsFragmentDoc}`;
|
|
1093
|
-
export const PractitionerRoleFieldsFragmentDoc = `
|
|
1094
|
-
fragment PractitionerRoleFields on PractitionerRole {
|
|
1095
|
-
resourceType
|
|
1096
|
-
id
|
|
1097
|
-
identifier {
|
|
1098
|
-
...IdentifierFields
|
|
1099
|
-
}
|
|
1100
|
-
practitioner {
|
|
1101
|
-
...PractitionerFields
|
|
1102
|
-
}
|
|
1103
|
-
organization {
|
|
1104
|
-
...OrganizationFields
|
|
1105
|
-
}
|
|
1106
|
-
code {
|
|
1107
|
-
...CodeableConceptFields
|
|
1108
|
-
}
|
|
1109
|
-
specialty {
|
|
1110
|
-
...CodeableConceptFields
|
|
1111
|
-
}
|
|
1112
|
-
location {
|
|
1113
|
-
...LocationFields
|
|
1114
|
-
}
|
|
1115
|
-
endpoint {
|
|
1116
|
-
...EndpointFields
|
|
1117
|
-
}
|
|
1118
|
-
telecom {
|
|
1119
|
-
...ContactPointFields
|
|
1120
|
-
}
|
|
1121
|
-
active
|
|
1122
|
-
period {
|
|
1123
|
-
...PeriodFields
|
|
1124
|
-
}
|
|
1125
|
-
}
|
|
1126
|
-
${IdentifierFieldsFragmentDoc}
|
|
1127
|
-
${PractitionerFieldsFragmentDoc}
|
|
1128
|
-
${OrganizationFieldsFragmentDoc}
|
|
1129
|
-
${CodeableConceptFieldsFragmentDoc}
|
|
1130
|
-
${LocationFieldsFragmentDoc}
|
|
1131
|
-
${EndpointFieldsFragmentDoc}
|
|
1132
|
-
${ContactPointFieldsFragmentDoc}
|
|
1133
|
-
${PeriodFieldsFragmentDoc}`;
|
|
1134
|
-
export const PatientFieldsFragmentDoc = `
|
|
1135
|
-
fragment PatientFields on Patient {
|
|
1136
|
-
id
|
|
1137
|
-
name {
|
|
1138
|
-
...HumanNameFields
|
|
1139
|
-
}
|
|
1140
|
-
}
|
|
1141
|
-
${HumanNameFieldsFragmentDoc}`;
|
|
1142
|
-
export const RelatedPersonFieldsFragmentDoc = `
|
|
1143
|
-
fragment RelatedPersonFields on RelatedPerson {
|
|
1144
|
-
resourceType
|
|
1145
|
-
id
|
|
1146
|
-
active
|
|
1147
|
-
name {
|
|
1148
|
-
...HumanNameFields
|
|
1149
|
-
}
|
|
1150
|
-
identifier {
|
|
1151
|
-
...IdentifierFields
|
|
1152
|
-
}
|
|
1153
|
-
telecom {
|
|
1154
|
-
...ContactPointFields
|
|
1155
|
-
}
|
|
1156
|
-
address {
|
|
1157
|
-
...AddressFields
|
|
1158
|
-
}
|
|
1159
|
-
relationship {
|
|
1160
|
-
...CodeableConceptFields
|
|
1161
|
-
}
|
|
1162
|
-
patient {
|
|
1163
|
-
...PatientFields
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
${HumanNameFieldsFragmentDoc}
|
|
1167
|
-
${IdentifierFieldsFragmentDoc}
|
|
1168
|
-
${ContactPointFieldsFragmentDoc}
|
|
1169
|
-
${AddressFieldsFragmentDoc}
|
|
1170
|
-
${CodeableConceptFieldsFragmentDoc}
|
|
1171
|
-
${PatientFieldsFragmentDoc}`;
|
|
1172
1066
|
export const CareTeamParticipantFieldsFragmentDoc = `
|
|
1173
1067
|
fragment CareTeamParticipantFields on CareTeamParticipant {
|
|
1174
1068
|
role {
|
|
@@ -1187,19 +1081,11 @@ export const CareTeamParticipantFieldsFragmentDoc = `
|
|
|
1187
1081
|
... on Practitioner {
|
|
1188
1082
|
...PractitionerFields
|
|
1189
1083
|
}
|
|
1190
|
-
... on PractitionerRole {
|
|
1191
|
-
...PractitionerRoleFields
|
|
1192
|
-
}
|
|
1193
|
-
... on RelatedPerson {
|
|
1194
|
-
...RelatedPersonFields
|
|
1195
|
-
}
|
|
1196
1084
|
}
|
|
1197
1085
|
}
|
|
1198
1086
|
${CodeableConceptFieldsFragmentDoc}
|
|
1199
1087
|
${MetaFieldsFragmentDoc}
|
|
1200
|
-
${PractitionerFieldsFragmentDoc}
|
|
1201
|
-
${PractitionerRoleFieldsFragmentDoc}
|
|
1202
|
-
${RelatedPersonFieldsFragmentDoc}`;
|
|
1088
|
+
${PractitionerFieldsFragmentDoc}`;
|
|
1203
1089
|
export const AsserterFieldsFragmentDoc = `
|
|
1204
1090
|
fragment AsserterFields on Asserter {
|
|
1205
1091
|
__typename
|
|
@@ -1967,8 +1853,6 @@ export const GetCareTeamsDocument = `
|
|
|
1967
1853
|
participant {
|
|
1968
1854
|
...CareTeamParticipantFields
|
|
1969
1855
|
}
|
|
1970
|
-
resourceType
|
|
1971
|
-
status
|
|
1972
1856
|
}
|
|
1973
1857
|
}
|
|
1974
1858
|
}
|