@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1754330797 → 2.0.0-alpha.0-rc.1754488327

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.
Files changed (292) hide show
  1. package/README.md +17 -1
  2. package/dist/__version__.d.ts +1 -1
  3. package/dist/__version__.js +1 -1
  4. package/dist/api/base/connection/connection-manager.d.ts +55 -49
  5. package/dist/api/base/connection/connection-manager.js +3 -0
  6. package/dist/api/base/connection/connection-request.d.ts +15 -1
  7. package/dist/api/base/connection/connection-request.js +8 -0
  8. package/dist/api/base/connection/index.d.ts +1 -2
  9. package/dist/api/base/health-data/health-data-request.d.ts +105 -0
  10. package/dist/api/base/health-data/health-data-request.js +81 -0
  11. package/dist/api/base/health-data/health-manager.d.ts +104 -64
  12. package/dist/api/base/health-data/index.d.ts +1 -1
  13. package/dist/api/base/health-data/lab-knowledge-request.d.ts +9 -0
  14. package/dist/api/base/health-data/lab-knowledge-request.js +3 -0
  15. package/dist/api/base/health-data/medication-knowledge-request.d.ts +9 -0
  16. package/dist/api/base/health-data/medication-knowledge-request.js +3 -0
  17. package/dist/api/base/health-data/medication-pricing-request.d.ts +9 -0
  18. package/dist/api/base/health-data/medication-pricing-request.js +3 -0
  19. package/dist/api/base/health-space/appointments-request.d.ts +9 -0
  20. package/dist/api/base/health-space/appointments-request.js +3 -0
  21. package/dist/api/base/health-space/cancel-appointment-request.d.ts +8 -1
  22. package/dist/api/base/health-space/cancel-appointment-request.js +4 -0
  23. package/dist/api/base/health-space/cancellation-reasons-request.d.ts +28 -0
  24. package/dist/api/base/health-space/{cancelationReasons-request.js → cancellation-reasons-request.js} +10 -4
  25. package/dist/api/base/health-space/health-space-manager.d.ts +33 -24
  26. package/dist/api/base/health-space/index.d.ts +2 -2
  27. package/dist/api/base/health-space/index.js +1 -1
  28. package/dist/api/base/identity/identity-manager.d.ts +97 -10
  29. package/dist/api/base/questionnaire/index.d.ts +1 -1
  30. package/dist/api/base/questionnaire/next-question-request.d.ts +8 -2
  31. package/dist/api/base/questionnaire/next-question-request.js +4 -1
  32. package/dist/api/base/questionnaire/questionnaire-manager.d.ts +16 -9
  33. package/dist/api/base/requests/search-date.d.ts +12 -0
  34. package/dist/api/base/requests/search-string.d.ts +6 -0
  35. package/dist/api/base/requests/search-token.d.ts +18 -0
  36. package/dist/api/base/user/create-consent-request.d.ts +13 -1
  37. package/dist/api/base/user/create-consent-request.js +8 -3
  38. package/dist/api/base/user/create-verification-url-request.d.ts +12 -0
  39. package/dist/api/base/user/create-verification-url-request.js +6 -0
  40. package/dist/api/base/user/get-consents-request.d.ts +19 -1
  41. package/dist/api/base/user/get-consents-request.js +13 -1
  42. package/dist/api/base/user/index.d.ts +1 -2
  43. package/dist/api/base/user/update-profile-request.d.ts +11 -3
  44. package/dist/api/base/user/update-profile-request.js +5 -3
  45. package/dist/api/base/user/user-manager.d.ts +50 -55
  46. package/dist/api/base/user/validators.d.ts +5 -0
  47. package/dist/api/base/user/validators.js +13 -0
  48. package/dist/api/graphql-api/connection/connection-response-factory.d.ts +1 -1
  49. package/dist/api/graphql-api/connection/connection-response-factory.js +1 -4
  50. package/dist/api/graphql-api/connection/graphql-connection-manager.d.ts +7 -6
  51. package/dist/api/graphql-api/connection/graphql-connection-manager.js +6 -3
  52. package/dist/api/graphql-api/errors/errors.js +1 -1
  53. package/dist/api/graphql-api/health-space/cancel-appointment-request-factory.js +1 -2
  54. package/dist/api/graphql-api/health-space/graphql-health-space-manager.d.ts +5 -4
  55. package/dist/api/graphql-api/health-space/graphql-health-space-manager.js +7 -6
  56. package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +13 -12
  57. package/dist/api/graphql-api/identity/graphql-identity-manager.d.ts +2 -1
  58. package/dist/api/graphql-api/identity/graphql-identity-manager.js +4 -2
  59. package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.d.ts +3 -2
  60. package/dist/api/graphql-api/questionnaire/graphql-questionnaire-manager.js +2 -1
  61. package/dist/api/graphql-api/user/graphql-user-manager.d.ts +7 -7
  62. package/dist/api/graphql-api/user/graphql-user-manager.js +7 -4
  63. package/dist/api/graphql-api/user/update-profile-request-factory.js +1 -2
  64. package/dist/auth/auth-code-strategy.d.ts +2 -1
  65. package/dist/auth/auth-strategy.d.ts +1 -1
  66. package/dist/auth/oauth-strategy.d.ts +2 -1
  67. package/dist/auth/username-password-strategy.d.ts +2 -1
  68. package/dist/bwell-sdk/bwell-sdk.d.ts +289 -33
  69. package/dist/bwell-sdk/bwell-sdk.js +294 -30
  70. package/dist/config/bwell-config.d.ts +8 -2
  71. package/dist/config/bwell-config.js +1 -3
  72. package/dist/config/sdk-config.d.ts +1 -1
  73. package/dist/errors/authentication-error.d.ts +7 -0
  74. package/dist/errors/authentication-error.js +7 -0
  75. package/dist/errors/bwell-error.d.ts +12 -2
  76. package/dist/errors/bwell-error.js +5 -2
  77. package/dist/errors/illegal-argument-error.d.ts +7 -0
  78. package/dist/errors/illegal-argument-error.js +7 -0
  79. package/dist/errors/illegal-state-error.d.ts +7 -0
  80. package/dist/errors/illegal-state-error.js +7 -0
  81. package/dist/errors/invalid-client-key-error.d.ts +7 -0
  82. package/dist/errors/invalid-client-key-error.js +7 -0
  83. package/dist/errors/invalid-credentials-type-error.d.ts +7 -0
  84. package/dist/errors/invalid-credentials-type-error.js +7 -0
  85. package/dist/errors/invalid-token-error.d.ts +4 -1
  86. package/dist/errors/invalid-token-error.js +4 -1
  87. package/dist/errors/network-error.d.ts +7 -0
  88. package/dist/errors/network-error.js +7 -0
  89. package/dist/errors/operation-outcome-error.d.ts +8 -1
  90. package/dist/errors/operation-outcome-error.js +7 -0
  91. package/dist/errors/unknown-error.d.ts +7 -0
  92. package/dist/errors/unknown-error.js +7 -0
  93. package/dist/errors/validation-error.d.ts +7 -0
  94. package/dist/errors/validation-error.js +7 -0
  95. package/dist/graphql/operations/index.d.ts +30 -30
  96. package/dist/graphql/operations/index.js +6 -4
  97. package/dist/graphql/operations/types.d.ts +242 -6
  98. package/dist/graphql/schema.d.ts +90 -277
  99. package/dist/graphql/schema.js +1 -369
  100. package/dist/index.d.ts +7 -5
  101. package/dist/index.js +5 -4
  102. package/dist/language/language-manager.d.ts +25 -10
  103. package/dist/language/language-manager.js +5 -0
  104. package/dist/models/common/address.d.ts +41 -0
  105. package/dist/models/common/annotation.d.ts +18 -0
  106. package/dist/models/common/attachment.d.ts +18 -0
  107. package/dist/models/common/bundle.d.ts +59 -0
  108. package/dist/models/common/codeable-concept.d.ts +17 -0
  109. package/dist/models/common/codeable-concept.js +1 -0
  110. package/dist/models/common/coding.d.ts +18 -0
  111. package/dist/models/common/coding.js +1 -0
  112. package/dist/models/common/component.d.ts +23 -0
  113. package/dist/models/common/component.js +1 -0
  114. package/dist/models/common/contact-point.d.ts +28 -0
  115. package/dist/models/common/contact-point.js +1 -0
  116. package/dist/models/common/expression.d.ts +20 -0
  117. package/dist/models/common/expression.js +1 -0
  118. package/dist/models/common/extension.d.ts +47 -0
  119. package/dist/models/common/extension.js +1 -0
  120. package/dist/models/common/fhir-error.d.ts +23 -0
  121. package/dist/models/common/fhir-error.js +1 -0
  122. package/dist/models/common/human-name.d.ts +20 -0
  123. package/dist/models/common/human-name.js +1 -0
  124. package/dist/models/common/identifier.d.ts +19 -0
  125. package/dist/models/common/identifier.js +1 -0
  126. package/dist/models/common/index.d.ts +23 -0
  127. package/dist/models/common/index.js +2 -0
  128. package/dist/models/common/location.d.ts +44 -0
  129. package/dist/models/common/location.js +1 -0
  130. package/dist/models/common/meta.d.ts +21 -0
  131. package/dist/models/common/meta.js +1 -0
  132. package/dist/models/common/narrative.d.ts +14 -0
  133. package/dist/models/common/narrative.js +1 -0
  134. package/dist/models/common/operation-outcome.d.ts +48 -0
  135. package/dist/models/common/operation-outcome.js +1 -0
  136. package/dist/models/common/paging-info.d.ts +18 -0
  137. package/dist/models/common/paging-info.js +1 -0
  138. package/dist/models/common/period.d.ts +14 -0
  139. package/dist/models/common/period.js +1 -0
  140. package/dist/models/common/quantity.d.ts +20 -0
  141. package/dist/models/common/quantity.js +1 -0
  142. package/dist/models/common/range.d.ts +15 -0
  143. package/dist/models/common/range.js +1 -0
  144. package/dist/models/common/ratio.d.ts +15 -0
  145. package/dist/models/common/ratio.js +1 -0
  146. package/dist/models/common/reference-range.d.ts +13 -0
  147. package/dist/models/common/reference-range.js +1 -0
  148. package/dist/models/common/reference.d.ts +26 -0
  149. package/dist/models/common/reference.js +1 -0
  150. package/dist/models/connection/base-connection.d.ts +27 -0
  151. package/dist/models/connection/base-connection.js +1 -0
  152. package/dist/models/connection/connection-status.d.ts +15 -0
  153. package/dist/models/connection/connection-status.js +1 -0
  154. package/dist/models/connection/connection.d.ts +32 -0
  155. package/dist/models/connection/connection.js +1 -0
  156. package/dist/models/connection/data-source.d.ts +27 -0
  157. package/dist/models/connection/data-source.js +1 -0
  158. package/dist/models/connection/index.d.ts +6 -0
  159. package/dist/models/connection/index.js +1 -0
  160. package/dist/models/connection/member-connection.d.ts +25 -0
  161. package/dist/models/connection/member-connection.js +1 -0
  162. package/dist/models/connection/oauth-url.d.ts +12 -0
  163. package/dist/models/connection/oauth-url.js +1 -0
  164. package/dist/models/enums/category-code.d.ts +11 -0
  165. package/dist/models/enums/category-code.js +13 -0
  166. package/dist/models/enums/connection-category.d.ts +9 -0
  167. package/dist/models/enums/connection-category.js +1 -0
  168. package/dist/models/enums/consent-provision-type.d.ts +11 -0
  169. package/dist/models/enums/consent-provision-type.js +2 -0
  170. package/dist/models/enums/consent-status.d.ts +11 -0
  171. package/dist/models/enums/consent-status.js +9 -0
  172. package/dist/models/enums/data-connection-status.d.ts +9 -0
  173. package/dist/models/enums/data-connection-status.js +1 -0
  174. package/dist/models/enums/data-connection-type.d.ts +9 -0
  175. package/dist/models/enums/data-connection-type.js +1 -0
  176. package/dist/models/enums/index.d.ts +9 -0
  177. package/dist/models/enums/index.js +4 -0
  178. package/dist/models/enums/log-level.d.ts +8 -0
  179. package/dist/models/enums/log-level.js +1 -0
  180. package/dist/models/enums/person-gender.d.ts +11 -0
  181. package/dist/models/enums/person-gender.js +7 -0
  182. package/dist/models/enums/sync-status.d.ts +9 -0
  183. package/dist/models/enums/sync-status.js +1 -0
  184. package/dist/models/health-data/allergy-intolerance-bundle.d.ts +11 -0
  185. package/dist/models/health-data/allergy-intolerance-bundle.js +1 -0
  186. package/dist/models/health-data/allergy-intolerance-entry.d.ts +11 -0
  187. package/dist/models/health-data/allergy-intolerance-entry.js +1 -0
  188. package/dist/models/health-data/allergy-intolerance-group.d.ts +36 -0
  189. package/dist/models/health-data/allergy-intolerance-group.js +1 -0
  190. package/dist/models/health-data/allergy-intolerance-reaction.d.ts +23 -0
  191. package/dist/models/health-data/allergy-intolerance-reaction.js +1 -0
  192. package/dist/models/health-data/allergy-intolerance.d.ts +46 -0
  193. package/dist/models/health-data/allergy-intolerance.js +1 -0
  194. package/dist/models/health-data/care-plan-group.d.ts +34 -0
  195. package/dist/models/health-data/care-plan-group.js +1 -0
  196. package/dist/models/health-data/condition-group.d.ts +34 -0
  197. package/dist/models/health-data/condition-group.js +1 -0
  198. package/dist/models/health-data/diagnostic-report-lab-group.d.ts +37 -0
  199. package/dist/models/health-data/diagnostic-report-lab-group.js +1 -0
  200. package/dist/models/health-data/encounter-group.d.ts +40 -0
  201. package/dist/models/health-data/encounter-group.js +1 -0
  202. package/dist/models/health-data/health-summary.d.ts +18 -0
  203. package/dist/models/health-data/health-summary.js +1 -0
  204. package/dist/models/health-data/immunization-group.d.ts +33 -0
  205. package/dist/models/health-data/immunization-group.js +1 -0
  206. package/dist/models/health-data/index.d.ts +15 -0
  207. package/dist/models/health-data/index.js +1 -0
  208. package/dist/models/health-data/lab-group.d.ts +43 -0
  209. package/dist/models/health-data/lab-group.js +1 -0
  210. package/dist/models/health-data/medication-group.d.ts +35 -0
  211. package/dist/models/health-data/medication-group.js +1 -0
  212. package/dist/models/health-data/procedure-group.d.ts +35 -0
  213. package/dist/models/health-data/procedure-group.js +1 -0
  214. package/dist/models/health-data/vital-sign-group.d.ts +43 -0
  215. package/dist/models/health-data/vital-sign-group.js +1 -0
  216. package/dist/models/health-space/appointment-bundle.d.ts +11 -0
  217. package/dist/models/health-space/appointment-bundle.js +1 -0
  218. package/dist/models/health-space/appointment-entry.d.ts +11 -0
  219. package/dist/models/health-space/appointment-entry.js +1 -0
  220. package/dist/models/health-space/appointment-participant.d.ts +17 -0
  221. package/dist/models/health-space/appointment-participant.js +1 -0
  222. package/dist/models/health-space/appointment-update.d.ts +14 -0
  223. package/dist/models/health-space/appointment-update.js +1 -0
  224. package/dist/models/health-space/appointment.d.ts +30 -0
  225. package/dist/models/health-space/appointment.js +1 -0
  226. package/dist/models/health-space/cancellation-reasons.d.ts +32 -0
  227. package/dist/models/health-space/cancellation-reasons.js +1 -0
  228. package/dist/models/health-space/index.d.ts +6 -0
  229. package/dist/models/health-space/index.js +1 -0
  230. package/dist/models/identity/auth-tokens.d.ts +25 -0
  231. package/dist/models/identity/auth-tokens.js +1 -0
  232. package/dist/models/identity/create-guest-access-token-results.d.ts +12 -0
  233. package/dist/models/identity/create-guest-access-token-results.js +1 -0
  234. package/dist/models/identity/index.d.ts +4 -0
  235. package/dist/models/identity/index.js +1 -0
  236. package/dist/models/identity/refresh-token-results.d.ts +8 -0
  237. package/dist/models/identity/refresh-token-results.js +1 -0
  238. package/dist/models/identity/sdk-configuration-result.d.ts +27 -0
  239. package/dist/models/identity/sdk-configuration-result.js +1 -0
  240. package/dist/models/index.d.ts +7 -4
  241. package/dist/models/index.js +7 -4
  242. package/dist/models/questionnaire/index.d.ts +5 -0
  243. package/dist/models/questionnaire/index.js +1 -0
  244. package/dist/models/questionnaire/questionnaire-item.d.ts +38 -0
  245. package/dist/models/questionnaire/questionnaire-item.js +1 -0
  246. package/dist/models/questionnaire/questionnaire-response-answer.d.ts +33 -0
  247. package/dist/models/questionnaire/questionnaire-response-answer.js +1 -0
  248. package/dist/models/questionnaire/questionnaire-response-item.d.ts +19 -0
  249. package/dist/models/questionnaire/questionnaire-response-item.js +1 -0
  250. package/dist/models/questionnaire/questionnaire-response.d.ts +29 -0
  251. package/dist/models/questionnaire/questionnaire-response.js +1 -0
  252. package/dist/models/questionnaire/questionnaire.d.ts +30 -0
  253. package/dist/models/questionnaire/questionnaire.js +1 -0
  254. package/dist/models/user/consent.d.ts +91 -0
  255. package/dist/models/user/consent.js +1 -0
  256. package/dist/models/user/index.d.ts +4 -0
  257. package/dist/models/user/index.js +1 -0
  258. package/dist/models/user/person.d.ts +43 -0
  259. package/dist/models/user/person.js +1 -0
  260. package/dist/models/user/user.d.ts +12 -0
  261. package/dist/models/user/user.js +1 -0
  262. package/dist/models/user/verification-result.d.ts +30 -0
  263. package/dist/models/user/verification-result.js +1 -0
  264. package/dist/requests/paged-request.d.ts +35 -0
  265. package/dist/requests/paged-request.js +22 -0
  266. package/dist/requests/request.d.ts +16 -0
  267. package/dist/requests/request.js +8 -0
  268. package/dist/requests/validator.d.ts +15 -0
  269. package/dist/requests/validator.js +7 -0
  270. package/dist/results/bwell-query-result.d.ts +5 -0
  271. package/dist/results/bwell-query-result.js +5 -0
  272. package/dist/results/bwell-transaction-result.d.ts +17 -3
  273. package/dist/results/bwell-transaction-result.js +15 -1
  274. package/dist/results/index.d.ts +1 -0
  275. package/dist/results/index.js +1 -0
  276. package/dist/tokens/load-auth-tokens.d.ts +1 -1
  277. package/dist/tokens/token-storage.d.ts +4 -0
  278. package/dist/tokens/token-storage.js +2 -0
  279. package/package.json +5 -2
  280. package/dist/api/base/connection/connection.d.ts +0 -19
  281. package/dist/api/base/health-space/cancelationReasons-request.d.ts +0 -16
  282. package/dist/api/base/user/types.d.ts +0 -9
  283. package/dist/api/base/user/types.js +0 -17
  284. package/dist/models/coding.d.ts +0 -5
  285. package/dist/models/fhir-error.d.ts +0 -9
  286. package/dist/models/user.d.ts +0 -4
  287. /package/dist/{api/base/connection/connection.js → models/common/address.js} +0 -0
  288. /package/dist/models/{coding.js → common/annotation.js} +0 -0
  289. /package/dist/models/{fhir-error.js → common/attachment.js} +0 -0
  290. /package/dist/models/{user.js → common/bundle.js} +0 -0
  291. /package/dist/{models → results}/operation-outcome.d.ts +0 -0
  292. /package/dist/{models → results}/operation-outcome.js +0 -0
@@ -14,14 +14,17 @@
14
14
  */
15
15
  import * as Types from '../schema.js';
16
16
  export type CodeableConceptFieldsFragment = {
17
+ id: string | null;
17
18
  text: string | null;
18
19
  coding: Array<{
20
+ id: string | null;
19
21
  system: any | null;
20
22
  code: any | null;
21
23
  display: string | null;
22
24
  } | null> | null;
23
25
  };
24
26
  export type CodingFieldsFragment = {
27
+ id: string | null;
25
28
  system: any | null;
26
29
  code: any | null;
27
30
  display: string | null;
@@ -37,11 +40,13 @@ export type MetaFieldsFragment = {
37
40
  lastUpdated: any | null;
38
41
  source: any | null;
39
42
  security: Array<{
43
+ id: string | null;
40
44
  system: any | null;
41
45
  code: any | null;
42
46
  display: string | null;
43
47
  } | null> | null;
44
48
  tag: Array<{
49
+ id: string | null;
45
50
  system: any | null;
46
51
  code: any | null;
47
52
  display: string | null;
@@ -65,8 +70,10 @@ export type PractitionerFieldsFragment = {
65
70
  system: any | null;
66
71
  value: string | null;
67
72
  type: {
73
+ id: string | null;
68
74
  text: string | null;
69
75
  coding: Array<{
76
+ id: string | null;
70
77
  system: any | null;
71
78
  code: any | null;
72
79
  display: string | null;
@@ -86,8 +93,10 @@ export type IdentifierFieldsFragment = {
86
93
  system: any | null;
87
94
  value: string | null;
88
95
  type: {
96
+ id: string | null;
89
97
  text: string | null;
90
98
  coding: Array<{
99
+ id: string | null;
91
100
  system: any | null;
92
101
  code: any | null;
93
102
  display: string | null;
@@ -100,8 +109,10 @@ export type ReactionFieldsFragment = {
100
109
  severity: any | null;
101
110
  description: string | null;
102
111
  manifestation: Array<{
112
+ id: string | null;
103
113
  text: string | null;
104
114
  coding: Array<{
115
+ id: string | null;
105
116
  system: any | null;
106
117
  code: any | null;
107
118
  display: string | null;
@@ -132,8 +143,10 @@ export type ValueFieldsFragment = {
132
143
  system: any | null;
133
144
  } | null;
134
145
  valueCodeableConcept: {
146
+ id: string | null;
135
147
  text: string | null;
136
148
  coding: Array<{
149
+ id: string | null;
137
150
  system: any | null;
138
151
  code: any | null;
139
152
  display: string | null;
@@ -234,8 +247,10 @@ export type ReferenceRangeFieldsFragment = {
234
247
  };
235
248
  export type ComponentFieldsFragment = {
236
249
  code: {
250
+ id: string | null;
237
251
  text: string | null;
238
252
  coding: Array<{
253
+ id: string | null;
239
254
  system: any | null;
240
255
  code: any | null;
241
256
  display: string | null;
@@ -255,8 +270,10 @@ export type ComponentFieldsFragment = {
255
270
  system: any | null;
256
271
  } | null;
257
272
  valueCodeableConcept: {
273
+ id: string | null;
258
274
  text: string | null;
259
275
  coding: Array<{
276
+ id: string | null;
260
277
  system: any | null;
261
278
  code: any | null;
262
279
  display: string | null;
@@ -317,16 +334,20 @@ export type ComponentFieldsFragment = {
317
334
  } | null;
318
335
  } | null> | null;
319
336
  interpretation: Array<{
337
+ id: string | null;
320
338
  text: string | null;
321
339
  coding: Array<{
340
+ id: string | null;
322
341
  system: any | null;
323
342
  code: any | null;
324
343
  display: string | null;
325
344
  } | null> | null;
326
345
  } | null> | null;
327
346
  dataAbsentReason: {
347
+ id: string | null;
328
348
  text: string | null;
329
349
  coding: Array<{
350
+ id: string | null;
330
351
  system: any | null;
331
352
  code: any | null;
332
353
  display: string | null;
@@ -354,11 +375,13 @@ export type QuestionnaireResponseFieldsFragment = {
354
375
  lastUpdated: any | null;
355
376
  source: any | null;
356
377
  security: Array<{
378
+ id: string | null;
357
379
  system: any | null;
358
380
  code: any | null;
359
381
  display: string | null;
360
382
  } | null> | null;
361
383
  tag: Array<{
384
+ id: string | null;
362
385
  system: any | null;
363
386
  code: any | null;
364
387
  display: string | null;
@@ -369,8 +392,10 @@ export type QuestionnaireResponseFieldsFragment = {
369
392
  system: any | null;
370
393
  value: string | null;
371
394
  type: {
395
+ id: string | null;
372
396
  text: string | null;
373
397
  coding: Array<{
398
+ id: string | null;
374
399
  system: any | null;
375
400
  code: any | null;
376
401
  display: string | null;
@@ -401,6 +426,7 @@ export type QuestionnaireResponseFieldsFragment = {
401
426
  title: string | null;
402
427
  } | null;
403
428
  valueCoding: {
429
+ id: string | null;
404
430
  system: any | null;
405
431
  code: any | null;
406
432
  display: string | null;
@@ -432,8 +458,10 @@ export type QuestionnaireResponseFieldsFragment = {
432
458
  reference: any | null;
433
459
  } | null;
434
460
  valueCodeableConcept: {
461
+ id: string | null;
435
462
  text: string | null;
436
463
  coding: Array<{
464
+ id: string | null;
437
465
  system: any | null;
438
466
  code: any | null;
439
467
  display: string | null;
@@ -463,6 +491,7 @@ export type QuestionnaireResponseFieldsFragment = {
463
491
  title: string | null;
464
492
  } | null;
465
493
  valueCoding: {
494
+ id: string | null;
466
495
  system: any | null;
467
496
  code: any | null;
468
497
  display: string | null;
@@ -494,8 +523,10 @@ export type QuestionnaireResponseFieldsFragment = {
494
523
  reference: any | null;
495
524
  } | null;
496
525
  valueCodeableConcept: {
526
+ id: string | null;
497
527
  text: string | null;
498
528
  coding: Array<{
529
+ id: string | null;
499
530
  system: any | null;
500
531
  code: any | null;
501
532
  display: string | null;
@@ -525,6 +556,7 @@ export type QuestionnaireResponseFieldsFragment = {
525
556
  title: string | null;
526
557
  } | null;
527
558
  valueCoding: {
559
+ id: string | null;
528
560
  system: any | null;
529
561
  code: any | null;
530
562
  display: string | null;
@@ -556,8 +588,10 @@ export type QuestionnaireResponseFieldsFragment = {
556
588
  reference: any | null;
557
589
  } | null;
558
590
  valueCodeableConcept: {
591
+ id: string | null;
559
592
  text: string | null;
560
593
  coding: Array<{
594
+ id: string | null;
561
595
  system: any | null;
562
596
  code: any | null;
563
597
  display: string | null;
@@ -584,11 +618,13 @@ export type QuestionnaireResponseFieldsFragment = {
584
618
  lastUpdated: any | null;
585
619
  source: any | null;
586
620
  security: Array<{
621
+ id: string | null;
587
622
  system: any | null;
588
623
  code: any | null;
589
624
  display: string | null;
590
625
  } | null> | null;
591
626
  tag: Array<{
627
+ id: string | null;
592
628
  system: any | null;
593
629
  code: any | null;
594
630
  display: string | null;
@@ -599,8 +635,10 @@ export type QuestionnaireResponseFieldsFragment = {
599
635
  system: any | null;
600
636
  value: string | null;
601
637
  type: {
638
+ id: string | null;
602
639
  text: string | null;
603
640
  coding: Array<{
641
+ id: string | null;
604
642
  system: any | null;
605
643
  code: any | null;
606
644
  display: string | null;
@@ -653,8 +691,10 @@ export type QuestionnaireResponseFieldsFragment = {
653
691
  reference: any | null;
654
692
  } | null;
655
693
  valueCodeableConcept: {
694
+ id: string | null;
656
695
  text: string | null;
657
696
  coding: Array<{
697
+ id: string | null;
658
698
  system: any | null;
659
699
  code: any | null;
660
700
  display: string | null;
@@ -681,8 +721,10 @@ export type QuestionnaireResponseFieldsFragment = {
681
721
  reference: any | null;
682
722
  } | null;
683
723
  valueCodeableConcept: {
724
+ id: string | null;
684
725
  text: string | null;
685
726
  coding: Array<{
727
+ id: string | null;
686
728
  system: any | null;
687
729
  code: any | null;
688
730
  display: string | null;
@@ -706,6 +748,7 @@ export type QuestionnaireResponseFieldsFragment = {
706
748
  answerTime: any | null;
707
749
  answerString: string | null;
708
750
  answerCoding: {
751
+ id: string | null;
709
752
  system: any | null;
710
753
  code: any | null;
711
754
  display: string | null;
@@ -729,6 +772,7 @@ export type QuestionnaireResponseFieldsFragment = {
729
772
  valueString: string | null;
730
773
  initialSelected: boolean | null;
731
774
  valueCoding: {
775
+ id: string | null;
732
776
  system: any | null;
733
777
  code: any | null;
734
778
  display: string | null;
@@ -753,8 +797,10 @@ export type QuestionnaireResponseFieldsFragment = {
753
797
  reference: any | null;
754
798
  } | null;
755
799
  valueCodeableConcept: {
800
+ id: string | null;
756
801
  text: string | null;
757
802
  coding: Array<{
803
+ id: string | null;
758
804
  system: any | null;
759
805
  code: any | null;
760
806
  display: string | null;
@@ -783,6 +829,7 @@ export type QuestionnaireResponseFieldsFragment = {
783
829
  title: string | null;
784
830
  } | null;
785
831
  valueCoding: {
832
+ id: string | null;
786
833
  system: any | null;
787
834
  code: any | null;
788
835
  display: string | null;
@@ -814,8 +861,10 @@ export type QuestionnaireResponseFieldsFragment = {
814
861
  reference: any | null;
815
862
  } | null;
816
863
  valueCodeableConcept: {
864
+ id: string | null;
817
865
  text: string | null;
818
866
  coding: Array<{
867
+ id: string | null;
819
868
  system: any | null;
820
869
  code: any | null;
821
870
  display: string | null;
@@ -846,8 +895,10 @@ export type QuestionnaireResponseFieldsFragment = {
846
895
  reference: any | null;
847
896
  } | null;
848
897
  valueCodeableConcept: {
898
+ id: string | null;
849
899
  text: string | null;
850
900
  coding: Array<{
901
+ id: string | null;
851
902
  system: any | null;
852
903
  code: any | null;
853
904
  display: string | null;
@@ -874,8 +925,10 @@ export type QuestionnaireResponseFieldsFragment = {
874
925
  reference: any | null;
875
926
  } | null;
876
927
  valueCodeableConcept: {
928
+ id: string | null;
877
929
  text: string | null;
878
930
  coding: Array<{
931
+ id: string | null;
879
932
  system: any | null;
880
933
  code: any | null;
881
934
  display: string | null;
@@ -899,6 +952,7 @@ export type QuestionnaireResponseFieldsFragment = {
899
952
  answerTime: any | null;
900
953
  answerString: string | null;
901
954
  answerCoding: {
955
+ id: string | null;
902
956
  system: any | null;
903
957
  code: any | null;
904
958
  display: string | null;
@@ -922,6 +976,7 @@ export type QuestionnaireResponseFieldsFragment = {
922
976
  valueString: string | null;
923
977
  initialSelected: boolean | null;
924
978
  valueCoding: {
979
+ id: string | null;
925
980
  system: any | null;
926
981
  code: any | null;
927
982
  display: string | null;
@@ -946,8 +1001,10 @@ export type QuestionnaireResponseFieldsFragment = {
946
1001
  reference: any | null;
947
1002
  } | null;
948
1003
  valueCodeableConcept: {
1004
+ id: string | null;
949
1005
  text: string | null;
950
1006
  coding: Array<{
1007
+ id: string | null;
951
1008
  system: any | null;
952
1009
  code: any | null;
953
1010
  display: string | null;
@@ -976,6 +1033,7 @@ export type QuestionnaireResponseFieldsFragment = {
976
1033
  title: string | null;
977
1034
  } | null;
978
1035
  valueCoding: {
1036
+ id: string | null;
979
1037
  system: any | null;
980
1038
  code: any | null;
981
1039
  display: string | null;
@@ -1007,8 +1065,10 @@ export type QuestionnaireResponseFieldsFragment = {
1007
1065
  reference: any | null;
1008
1066
  } | null;
1009
1067
  valueCodeableConcept: {
1068
+ id: string | null;
1010
1069
  text: string | null;
1011
1070
  coding: Array<{
1071
+ id: string | null;
1012
1072
  system: any | null;
1013
1073
  code: any | null;
1014
1074
  display: string | null;
@@ -1039,8 +1099,10 @@ export type QuestionnaireResponseFieldsFragment = {
1039
1099
  reference: any | null;
1040
1100
  } | null;
1041
1101
  valueCodeableConcept: {
1102
+ id: string | null;
1042
1103
  text: string | null;
1043
1104
  coding: Array<{
1105
+ id: string | null;
1044
1106
  system: any | null;
1045
1107
  code: any | null;
1046
1108
  display: string | null;
@@ -1067,8 +1129,10 @@ export type QuestionnaireResponseFieldsFragment = {
1067
1129
  reference: any | null;
1068
1130
  } | null;
1069
1131
  valueCodeableConcept: {
1132
+ id: string | null;
1070
1133
  text: string | null;
1071
1134
  coding: Array<{
1135
+ id: string | null;
1072
1136
  system: any | null;
1073
1137
  code: any | null;
1074
1138
  display: string | null;
@@ -1092,6 +1156,7 @@ export type QuestionnaireResponseFieldsFragment = {
1092
1156
  answerTime: any | null;
1093
1157
  answerString: string | null;
1094
1158
  answerCoding: {
1159
+ id: string | null;
1095
1160
  system: any | null;
1096
1161
  code: any | null;
1097
1162
  display: string | null;
@@ -1115,6 +1180,7 @@ export type QuestionnaireResponseFieldsFragment = {
1115
1180
  valueString: string | null;
1116
1181
  initialSelected: boolean | null;
1117
1182
  valueCoding: {
1183
+ id: string | null;
1118
1184
  system: any | null;
1119
1185
  code: any | null;
1120
1186
  display: string | null;
@@ -1139,8 +1205,10 @@ export type QuestionnaireResponseFieldsFragment = {
1139
1205
  reference: any | null;
1140
1206
  } | null;
1141
1207
  valueCodeableConcept: {
1208
+ id: string | null;
1142
1209
  text: string | null;
1143
1210
  coding: Array<{
1211
+ id: string | null;
1144
1212
  system: any | null;
1145
1213
  code: any | null;
1146
1214
  display: string | null;
@@ -1169,6 +1237,7 @@ export type QuestionnaireResponseFieldsFragment = {
1169
1237
  title: string | null;
1170
1238
  } | null;
1171
1239
  valueCoding: {
1240
+ id: string | null;
1172
1241
  system: any | null;
1173
1242
  code: any | null;
1174
1243
  display: string | null;
@@ -1200,8 +1269,10 @@ export type QuestionnaireResponseFieldsFragment = {
1200
1269
  reference: any | null;
1201
1270
  } | null;
1202
1271
  valueCodeableConcept: {
1272
+ id: string | null;
1203
1273
  text: string | null;
1204
1274
  coding: Array<{
1275
+ id: string | null;
1205
1276
  system: any | null;
1206
1277
  code: any | null;
1207
1278
  display: string | null;
@@ -1236,6 +1307,7 @@ export type QuestionnaireResponseItemFieldsFragment = {
1236
1307
  title: string | null;
1237
1308
  } | null;
1238
1309
  valueCoding: {
1310
+ id: string | null;
1239
1311
  system: any | null;
1240
1312
  code: any | null;
1241
1313
  display: string | null;
@@ -1267,8 +1339,10 @@ export type QuestionnaireResponseItemFieldsFragment = {
1267
1339
  reference: any | null;
1268
1340
  } | null;
1269
1341
  valueCodeableConcept: {
1342
+ id: string | null;
1270
1343
  text: string | null;
1271
1344
  coding: Array<{
1345
+ id: string | null;
1272
1346
  system: any | null;
1273
1347
  code: any | null;
1274
1348
  display: string | null;
@@ -1295,11 +1369,13 @@ export type QuestionnaireFieldsFragment = {
1295
1369
  lastUpdated: any | null;
1296
1370
  source: any | null;
1297
1371
  security: Array<{
1372
+ id: string | null;
1298
1373
  system: any | null;
1299
1374
  code: any | null;
1300
1375
  display: string | null;
1301
1376
  } | null> | null;
1302
1377
  tag: Array<{
1378
+ id: string | null;
1303
1379
  system: any | null;
1304
1380
  code: any | null;
1305
1381
  display: string | null;
@@ -1310,8 +1386,10 @@ export type QuestionnaireFieldsFragment = {
1310
1386
  system: any | null;
1311
1387
  value: string | null;
1312
1388
  type: {
1389
+ id: string | null;
1313
1390
  text: string | null;
1314
1391
  coding: Array<{
1392
+ id: string | null;
1315
1393
  system: any | null;
1316
1394
  code: any | null;
1317
1395
  display: string | null;
@@ -1364,8 +1442,10 @@ export type QuestionnaireFieldsFragment = {
1364
1442
  reference: any | null;
1365
1443
  } | null;
1366
1444
  valueCodeableConcept: {
1445
+ id: string | null;
1367
1446
  text: string | null;
1368
1447
  coding: Array<{
1448
+ id: string | null;
1369
1449
  system: any | null;
1370
1450
  code: any | null;
1371
1451
  display: string | null;
@@ -1392,8 +1472,10 @@ export type QuestionnaireFieldsFragment = {
1392
1472
  reference: any | null;
1393
1473
  } | null;
1394
1474
  valueCodeableConcept: {
1475
+ id: string | null;
1395
1476
  text: string | null;
1396
1477
  coding: Array<{
1478
+ id: string | null;
1397
1479
  system: any | null;
1398
1480
  code: any | null;
1399
1481
  display: string | null;
@@ -1417,6 +1499,7 @@ export type QuestionnaireFieldsFragment = {
1417
1499
  answerTime: any | null;
1418
1500
  answerString: string | null;
1419
1501
  answerCoding: {
1502
+ id: string | null;
1420
1503
  system: any | null;
1421
1504
  code: any | null;
1422
1505
  display: string | null;
@@ -1440,6 +1523,7 @@ export type QuestionnaireFieldsFragment = {
1440
1523
  valueString: string | null;
1441
1524
  initialSelected: boolean | null;
1442
1525
  valueCoding: {
1526
+ id: string | null;
1443
1527
  system: any | null;
1444
1528
  code: any | null;
1445
1529
  display: string | null;
@@ -1464,8 +1548,10 @@ export type QuestionnaireFieldsFragment = {
1464
1548
  reference: any | null;
1465
1549
  } | null;
1466
1550
  valueCodeableConcept: {
1551
+ id: string | null;
1467
1552
  text: string | null;
1468
1553
  coding: Array<{
1554
+ id: string | null;
1469
1555
  system: any | null;
1470
1556
  code: any | null;
1471
1557
  display: string | null;
@@ -1494,6 +1580,7 @@ export type QuestionnaireFieldsFragment = {
1494
1580
  title: string | null;
1495
1581
  } | null;
1496
1582
  valueCoding: {
1583
+ id: string | null;
1497
1584
  system: any | null;
1498
1585
  code: any | null;
1499
1586
  display: string | null;
@@ -1525,8 +1612,10 @@ export type QuestionnaireFieldsFragment = {
1525
1612
  reference: any | null;
1526
1613
  } | null;
1527
1614
  valueCodeableConcept: {
1615
+ id: string | null;
1528
1616
  text: string | null;
1529
1617
  coding: Array<{
1618
+ id: string | null;
1530
1619
  system: any | null;
1531
1620
  code: any | null;
1532
1621
  display: string | null;
@@ -1557,8 +1646,10 @@ export type QuestionnaireFieldsFragment = {
1557
1646
  reference: any | null;
1558
1647
  } | null;
1559
1648
  valueCodeableConcept: {
1649
+ id: string | null;
1560
1650
  text: string | null;
1561
1651
  coding: Array<{
1652
+ id: string | null;
1562
1653
  system: any | null;
1563
1654
  code: any | null;
1564
1655
  display: string | null;
@@ -1585,8 +1676,10 @@ export type QuestionnaireFieldsFragment = {
1585
1676
  reference: any | null;
1586
1677
  } | null;
1587
1678
  valueCodeableConcept: {
1679
+ id: string | null;
1588
1680
  text: string | null;
1589
1681
  coding: Array<{
1682
+ id: string | null;
1590
1683
  system: any | null;
1591
1684
  code: any | null;
1592
1685
  display: string | null;
@@ -1610,6 +1703,7 @@ export type QuestionnaireFieldsFragment = {
1610
1703
  answerTime: any | null;
1611
1704
  answerString: string | null;
1612
1705
  answerCoding: {
1706
+ id: string | null;
1613
1707
  system: any | null;
1614
1708
  code: any | null;
1615
1709
  display: string | null;
@@ -1633,6 +1727,7 @@ export type QuestionnaireFieldsFragment = {
1633
1727
  valueString: string | null;
1634
1728
  initialSelected: boolean | null;
1635
1729
  valueCoding: {
1730
+ id: string | null;
1636
1731
  system: any | null;
1637
1732
  code: any | null;
1638
1733
  display: string | null;
@@ -1657,8 +1752,10 @@ export type QuestionnaireFieldsFragment = {
1657
1752
  reference: any | null;
1658
1753
  } | null;
1659
1754
  valueCodeableConcept: {
1755
+ id: string | null;
1660
1756
  text: string | null;
1661
1757
  coding: Array<{
1758
+ id: string | null;
1662
1759
  system: any | null;
1663
1760
  code: any | null;
1664
1761
  display: string | null;
@@ -1687,6 +1784,7 @@ export type QuestionnaireFieldsFragment = {
1687
1784
  title: string | null;
1688
1785
  } | null;
1689
1786
  valueCoding: {
1787
+ id: string | null;
1690
1788
  system: any | null;
1691
1789
  code: any | null;
1692
1790
  display: string | null;
@@ -1718,8 +1816,10 @@ export type QuestionnaireFieldsFragment = {
1718
1816
  reference: any | null;
1719
1817
  } | null;
1720
1818
  valueCodeableConcept: {
1819
+ id: string | null;
1721
1820
  text: string | null;
1722
1821
  coding: Array<{
1822
+ id: string | null;
1723
1823
  system: any | null;
1724
1824
  code: any | null;
1725
1825
  display: string | null;
@@ -1750,8 +1850,10 @@ export type QuestionnaireFieldsFragment = {
1750
1850
  reference: any | null;
1751
1851
  } | null;
1752
1852
  valueCodeableConcept: {
1853
+ id: string | null;
1753
1854
  text: string | null;
1754
1855
  coding: Array<{
1856
+ id: string | null;
1755
1857
  system: any | null;
1756
1858
  code: any | null;
1757
1859
  display: string | null;
@@ -1778,8 +1880,10 @@ export type QuestionnaireFieldsFragment = {
1778
1880
  reference: any | null;
1779
1881
  } | null;
1780
1882
  valueCodeableConcept: {
1883
+ id: string | null;
1781
1884
  text: string | null;
1782
1885
  coding: Array<{
1886
+ id: string | null;
1783
1887
  system: any | null;
1784
1888
  code: any | null;
1785
1889
  display: string | null;
@@ -1803,6 +1907,7 @@ export type QuestionnaireFieldsFragment = {
1803
1907
  answerTime: any | null;
1804
1908
  answerString: string | null;
1805
1909
  answerCoding: {
1910
+ id: string | null;
1806
1911
  system: any | null;
1807
1912
  code: any | null;
1808
1913
  display: string | null;
@@ -1826,6 +1931,7 @@ export type QuestionnaireFieldsFragment = {
1826
1931
  valueString: string | null;
1827
1932
  initialSelected: boolean | null;
1828
1933
  valueCoding: {
1934
+ id: string | null;
1829
1935
  system: any | null;
1830
1936
  code: any | null;
1831
1937
  display: string | null;
@@ -1850,8 +1956,10 @@ export type QuestionnaireFieldsFragment = {
1850
1956
  reference: any | null;
1851
1957
  } | null;
1852
1958
  valueCodeableConcept: {
1959
+ id: string | null;
1853
1960
  text: string | null;
1854
1961
  coding: Array<{
1962
+ id: string | null;
1855
1963
  system: any | null;
1856
1964
  code: any | null;
1857
1965
  display: string | null;
@@ -1880,6 +1988,7 @@ export type QuestionnaireFieldsFragment = {
1880
1988
  title: string | null;
1881
1989
  } | null;
1882
1990
  valueCoding: {
1991
+ id: string | null;
1883
1992
  system: any | null;
1884
1993
  code: any | null;
1885
1994
  display: string | null;
@@ -1911,8 +2020,10 @@ export type QuestionnaireFieldsFragment = {
1911
2020
  reference: any | null;
1912
2021
  } | null;
1913
2022
  valueCodeableConcept: {
2023
+ id: string | null;
1914
2024
  text: string | null;
1915
2025
  coding: Array<{
2026
+ id: string | null;
1916
2027
  system: any | null;
1917
2028
  code: any | null;
1918
2029
  display: string | null;
@@ -1954,8 +2065,10 @@ export type QuestionnaireItemFieldsFragment = {
1954
2065
  reference: any | null;
1955
2066
  } | null;
1956
2067
  valueCodeableConcept: {
2068
+ id: string | null;
1957
2069
  text: string | null;
1958
2070
  coding: Array<{
2071
+ id: string | null;
1959
2072
  system: any | null;
1960
2073
  code: any | null;
1961
2074
  display: string | null;
@@ -1982,8 +2095,10 @@ export type QuestionnaireItemFieldsFragment = {
1982
2095
  reference: any | null;
1983
2096
  } | null;
1984
2097
  valueCodeableConcept: {
2098
+ id: string | null;
1985
2099
  text: string | null;
1986
2100
  coding: Array<{
2101
+ id: string | null;
1987
2102
  system: any | null;
1988
2103
  code: any | null;
1989
2104
  display: string | null;
@@ -2007,6 +2122,7 @@ export type QuestionnaireItemFieldsFragment = {
2007
2122
  answerTime: any | null;
2008
2123
  answerString: string | null;
2009
2124
  answerCoding: {
2125
+ id: string | null;
2010
2126
  system: any | null;
2011
2127
  code: any | null;
2012
2128
  display: string | null;
@@ -2030,6 +2146,7 @@ export type QuestionnaireItemFieldsFragment = {
2030
2146
  valueString: string | null;
2031
2147
  initialSelected: boolean | null;
2032
2148
  valueCoding: {
2149
+ id: string | null;
2033
2150
  system: any | null;
2034
2151
  code: any | null;
2035
2152
  display: string | null;
@@ -2054,8 +2171,10 @@ export type QuestionnaireItemFieldsFragment = {
2054
2171
  reference: any | null;
2055
2172
  } | null;
2056
2173
  valueCodeableConcept: {
2174
+ id: string | null;
2057
2175
  text: string | null;
2058
2176
  coding: Array<{
2177
+ id: string | null;
2059
2178
  system: any | null;
2060
2179
  code: any | null;
2061
2180
  display: string | null;
@@ -2084,6 +2203,7 @@ export type QuestionnaireItemFieldsFragment = {
2084
2203
  title: string | null;
2085
2204
  } | null;
2086
2205
  valueCoding: {
2206
+ id: string | null;
2087
2207
  system: any | null;
2088
2208
  code: any | null;
2089
2209
  display: string | null;
@@ -2115,8 +2235,10 @@ export type QuestionnaireItemFieldsFragment = {
2115
2235
  reference: any | null;
2116
2236
  } | null;
2117
2237
  valueCodeableConcept: {
2238
+ id: string | null;
2118
2239
  text: string | null;
2119
2240
  coding: Array<{
2241
+ id: string | null;
2120
2242
  system: any | null;
2121
2243
  code: any | null;
2122
2244
  display: string | null;
@@ -2191,8 +2313,10 @@ export type GetMemberConnectionsQueryResults = {
2191
2313
  } | null;
2192
2314
  subscriptionStatus: Array<{
2193
2315
  error: Array<{
2316
+ id: string | null;
2194
2317
  text: string | null;
2195
2318
  coding: Array<{
2319
+ id: string | null;
2196
2320
  system: any | null;
2197
2321
  code: any | null;
2198
2322
  display: string | null;
@@ -2235,6 +2359,7 @@ export type GetAllergyIntoleranceGroupsQueryResults = {
2235
2359
  source: Array<string | null> | null;
2236
2360
  sourceDisplay: Array<string | null> | null;
2237
2361
  coding: {
2362
+ id: string | null;
2238
2363
  system: any | null;
2239
2364
  code: any | null;
2240
2365
  display: string | null;
@@ -2271,11 +2396,13 @@ export type GetAllergyIntolerancesQueryResults = {
2271
2396
  lastUpdated: any | null;
2272
2397
  source: any | null;
2273
2398
  security: Array<{
2399
+ id: string | null;
2274
2400
  system: any | null;
2275
2401
  code: any | null;
2276
2402
  display: string | null;
2277
2403
  } | null> | null;
2278
2404
  tag: Array<{
2405
+ id: string | null;
2279
2406
  system: any | null;
2280
2407
  code: any | null;
2281
2408
  display: string | null;
@@ -2287,8 +2414,8 @@ export type GetAllergyIntolerancesQueryResults = {
2287
2414
  coding: Array<{
2288
2415
  id: string | null;
2289
2416
  system: any | null;
2290
- display: string | null;
2291
2417
  code: any | null;
2418
+ display: string | null;
2292
2419
  } | null> | null;
2293
2420
  } | null;
2294
2421
  onsetPeriod: {
@@ -2317,8 +2444,10 @@ export type GetAllergyIntolerancesQueryResults = {
2317
2444
  system: any | null;
2318
2445
  value: string | null;
2319
2446
  type: {
2447
+ id: string | null;
2320
2448
  text: string | null;
2321
2449
  coding: Array<{
2450
+ id: string | null;
2322
2451
  system: any | null;
2323
2452
  code: any | null;
2324
2453
  display: string | null;
@@ -2333,8 +2462,10 @@ export type GetAllergyIntolerancesQueryResults = {
2333
2462
  severity: any | null;
2334
2463
  description: string | null;
2335
2464
  manifestation: Array<{
2465
+ id: string | null;
2336
2466
  text: string | null;
2337
2467
  coding: Array<{
2468
+ id: string | null;
2338
2469
  system: any | null;
2339
2470
  code: any | null;
2340
2471
  display: string | null;
@@ -2353,16 +2484,20 @@ export type GetAllergyIntolerancesQueryResults = {
2353
2484
  text: any | null;
2354
2485
  } | null> | null;
2355
2486
  verificationStatus: {
2487
+ id: string | null;
2356
2488
  text: string | null;
2357
2489
  coding: Array<{
2490
+ id: string | null;
2358
2491
  system: any | null;
2359
2492
  code: any | null;
2360
2493
  display: string | null;
2361
2494
  } | null> | null;
2362
2495
  } | null;
2363
2496
  clinicalStatus: {
2497
+ id: string | null;
2364
2498
  text: string | null;
2365
2499
  coding: Array<{
2500
+ id: string | null;
2366
2501
  system: any | null;
2367
2502
  code: any | null;
2368
2503
  display: string | null;
@@ -2390,6 +2525,7 @@ export type GetCarePlanGroupsQueryResults = {
2390
2525
  source: Array<string | null> | null;
2391
2526
  sourceDisplay: Array<string | null> | null;
2392
2527
  coding: {
2528
+ id: string | null;
2393
2529
  system: any | null;
2394
2530
  code: any | null;
2395
2531
  display: string | null;
@@ -2420,6 +2556,7 @@ export type GetConditionGroupsQueryResults = {
2420
2556
  source: Array<string | null> | null;
2421
2557
  sourceDisplay: Array<string | null> | null;
2422
2558
  coding: {
2559
+ id: string | null;
2423
2560
  system: any | null;
2424
2561
  code: any | null;
2425
2562
  display: string | null;
@@ -2442,6 +2579,7 @@ export type GetDiagnosticReportLabGroupsQueryResults = {
2442
2579
  source: Array<string | null> | null;
2443
2580
  sourceDisplay: Array<string | null> | null;
2444
2581
  coding: {
2582
+ id: string | null;
2445
2583
  system: any | null;
2446
2584
  code: any | null;
2447
2585
  display: string | null;
@@ -2475,16 +2613,19 @@ export type GetEncountersGroupQueryResults = {
2475
2613
  source: Array<string | null> | null;
2476
2614
  sourceDisplay: Array<string | null> | null;
2477
2615
  class: {
2616
+ id: string | null;
2478
2617
  system: any | null;
2479
2618
  code: any | null;
2480
2619
  display: string | null;
2481
2620
  } | null;
2482
2621
  type: {
2622
+ id: string | null;
2483
2623
  system: any | null;
2484
2624
  code: any | null;
2485
2625
  display: string | null;
2486
2626
  } | null;
2487
2627
  coding: {
2628
+ id: string | null;
2488
2629
  system: any | null;
2489
2630
  code: any | null;
2490
2631
  display: string | null;
@@ -2522,6 +2663,7 @@ export type GetImmunizationGroupsQueryResults = {
2522
2663
  source: Array<string | null> | null;
2523
2664
  sourceDisplay: Array<string | null> | null;
2524
2665
  coding: {
2666
+ id: string | null;
2525
2667
  system: any | null;
2526
2668
  code: any | null;
2527
2669
  display: string | null;
@@ -2549,6 +2691,7 @@ export type GetProcedureGroupsQueryResults = {
2549
2691
  source: Array<string | null> | null;
2550
2692
  sourceDisplay: Array<string | null> | null;
2551
2693
  coding: {
2694
+ id: string | null;
2552
2695
  system: any | null;
2553
2696
  code: any | null;
2554
2697
  display: string | null;
@@ -2575,21 +2718,26 @@ export type GetVitalSignGroupsQueryResults = {
2575
2718
  effectiveDateTime: any | null;
2576
2719
  references: Array<string> | null;
2577
2720
  category: Array<{
2721
+ id: string | null;
2578
2722
  text: string | null;
2579
2723
  coding: Array<{
2724
+ id: string | null;
2580
2725
  system: any | null;
2581
2726
  code: any | null;
2582
2727
  display: string | null;
2583
2728
  } | null> | null;
2584
2729
  } | null> | null;
2585
2730
  coding: {
2731
+ id: string | null;
2586
2732
  system: any | null;
2587
2733
  code: any | null;
2588
2734
  display: string | null;
2589
2735
  } | null;
2590
2736
  interpretation: Array<{
2737
+ id: string | null;
2591
2738
  text: string | null;
2592
2739
  coding: Array<{
2740
+ id: string | null;
2593
2741
  system: any | null;
2594
2742
  code: any | null;
2595
2743
  display: string | null;
@@ -2609,8 +2757,10 @@ export type GetVitalSignGroupsQueryResults = {
2609
2757
  system: any | null;
2610
2758
  } | null;
2611
2759
  valueCodeableConcept: {
2760
+ id: string | null;
2612
2761
  text: string | null;
2613
2762
  coding: Array<{
2763
+ id: string | null;
2614
2764
  system: any | null;
2615
2765
  code: any | null;
2616
2766
  display: string | null;
@@ -2672,8 +2822,10 @@ export type GetVitalSignGroupsQueryResults = {
2672
2822
  } | null> | null;
2673
2823
  component: Array<{
2674
2824
  code: {
2825
+ id: string | null;
2675
2826
  text: string | null;
2676
2827
  coding: Array<{
2828
+ id: string | null;
2677
2829
  system: any | null;
2678
2830
  code: any | null;
2679
2831
  display: string | null;
@@ -2693,8 +2845,10 @@ export type GetVitalSignGroupsQueryResults = {
2693
2845
  system: any | null;
2694
2846
  } | null;
2695
2847
  valueCodeableConcept: {
2848
+ id: string | null;
2696
2849
  text: string | null;
2697
2850
  coding: Array<{
2851
+ id: string | null;
2698
2852
  system: any | null;
2699
2853
  code: any | null;
2700
2854
  display: string | null;
@@ -2755,16 +2909,20 @@ export type GetVitalSignGroupsQueryResults = {
2755
2909
  } | null;
2756
2910
  } | null> | null;
2757
2911
  interpretation: Array<{
2912
+ id: string | null;
2758
2913
  text: string | null;
2759
2914
  coding: Array<{
2915
+ id: string | null;
2760
2916
  system: any | null;
2761
2917
  code: any | null;
2762
2918
  display: string | null;
2763
2919
  } | null> | null;
2764
2920
  } | null> | null;
2765
2921
  dataAbsentReason: {
2922
+ id: string | null;
2766
2923
  text: string | null;
2767
2924
  coding: Array<{
2925
+ id: string | null;
2768
2926
  system: any | null;
2769
2927
  code: any | null;
2770
2928
  display: string | null;
@@ -2793,14 +2951,17 @@ export type GetLabGroupsQueryResults = {
2793
2951
  effectiveDateTime: any | null;
2794
2952
  references: Array<string | null> | null;
2795
2953
  category: Array<{
2954
+ id: string | null;
2796
2955
  text: string | null;
2797
2956
  coding: Array<{
2957
+ id: string | null;
2798
2958
  system: any | null;
2799
2959
  code: any | null;
2800
2960
  display: string | null;
2801
2961
  } | null> | null;
2802
2962
  } | null> | null;
2803
2963
  coding: {
2964
+ id: string | null;
2804
2965
  system: any | null;
2805
2966
  code: any | null;
2806
2967
  display: string | null;
@@ -2836,8 +2997,10 @@ export type GetLabGroupsQueryResults = {
2836
2997
  system: any | null;
2837
2998
  } | null;
2838
2999
  valueCodeableConcept: {
3000
+ id: string | null;
2839
3001
  text: string | null;
2840
3002
  coding: Array<{
3003
+ id: string | null;
2841
3004
  system: any | null;
2842
3005
  code: any | null;
2843
3006
  display: string | null;
@@ -2881,8 +3044,10 @@ export type GetLabGroupsQueryResults = {
2881
3044
  } | null;
2882
3045
  } | null;
2883
3046
  interpretation: Array<{
3047
+ id: string | null;
2884
3048
  text: string | null;
2885
3049
  coding: Array<{
3050
+ id: string | null;
2886
3051
  system: any | null;
2887
3052
  code: any | null;
2888
3053
  display: string | null;
@@ -2890,8 +3055,10 @@ export type GetLabGroupsQueryResults = {
2890
3055
  } | null> | null;
2891
3056
  component: Array<{
2892
3057
  code: {
3058
+ id: string | null;
2893
3059
  text: string | null;
2894
3060
  coding: Array<{
3061
+ id: string | null;
2895
3062
  system: any | null;
2896
3063
  code: any | null;
2897
3064
  display: string | null;
@@ -2911,8 +3078,10 @@ export type GetLabGroupsQueryResults = {
2911
3078
  system: any | null;
2912
3079
  } | null;
2913
3080
  valueCodeableConcept: {
3081
+ id: string | null;
2914
3082
  text: string | null;
2915
3083
  coding: Array<{
3084
+ id: string | null;
2916
3085
  system: any | null;
2917
3086
  code: any | null;
2918
3087
  display: string | null;
@@ -2973,16 +3142,20 @@ export type GetLabGroupsQueryResults = {
2973
3142
  } | null;
2974
3143
  } | null> | null;
2975
3144
  interpretation: Array<{
3145
+ id: string | null;
2976
3146
  text: string | null;
2977
3147
  coding: Array<{
3148
+ id: string | null;
2978
3149
  system: any | null;
2979
3150
  code: any | null;
2980
3151
  display: string | null;
2981
3152
  } | null> | null;
2982
3153
  } | null> | null;
2983
3154
  dataAbsentReason: {
3155
+ id: string | null;
2984
3156
  text: string | null;
2985
3157
  coding: Array<{
3158
+ id: string | null;
2986
3159
  system: any | null;
2987
3160
  code: any | null;
2988
3161
  display: string | null;
@@ -3011,6 +3184,7 @@ export type GetMedicationGroupsQueryResults = {
3011
3184
  references: Array<string | null> | null;
3012
3185
  authoredOn: any | null;
3013
3186
  coding: {
3187
+ id: string | null;
3014
3188
  system: any | null;
3015
3189
  code: any | null;
3016
3190
  display: string | null;
@@ -3041,8 +3215,10 @@ export type AppointmentsQueryResults = {
3041
3215
  start: any | null;
3042
3216
  end: any | null;
3043
3217
  cancelationReason: {
3218
+ id: string | null;
3044
3219
  text: string | null;
3045
3220
  coding: Array<{
3221
+ id: string | null;
3046
3222
  system: any | null;
3047
3223
  code: any | null;
3048
3224
  display: string | null;
@@ -3064,8 +3240,10 @@ export type AppointmentsQueryResults = {
3064
3240
  reference: any | null;
3065
3241
  } | null;
3066
3242
  valueCodeableConcept: {
3243
+ id: string | null;
3067
3244
  text: string | null;
3068
3245
  coding: Array<{
3246
+ id: string | null;
3069
3247
  system: any | null;
3070
3248
  code: any | null;
3071
3249
  display: string | null;
@@ -3078,8 +3256,10 @@ export type AppointmentsQueryResults = {
3078
3256
  } | null;
3079
3257
  } | null> | null;
3080
3258
  serviceType: Array<{
3259
+ id: string | null;
3081
3260
  text: string | null;
3082
3261
  coding: Array<{
3262
+ id: string | null;
3083
3263
  system: any | null;
3084
3264
  code: any | null;
3085
3265
  display: string | null;
@@ -3093,8 +3273,10 @@ export type AppointmentsQueryResults = {
3093
3273
  participant: Array<{
3094
3274
  id: string | null;
3095
3275
  type: Array<{
3276
+ id: string | null;
3096
3277
  text: string | null;
3097
3278
  coding: Array<{
3279
+ id: string | null;
3098
3280
  system: any | null;
3099
3281
  code: any | null;
3100
3282
  display: string | null;
@@ -3111,8 +3293,10 @@ export type AppointmentsQueryResults = {
3111
3293
  system: any | null;
3112
3294
  value: string | null;
3113
3295
  type: {
3296
+ id: string | null;
3114
3297
  text: string | null;
3115
3298
  coding: Array<{
3299
+ id: string | null;
3116
3300
  system: any | null;
3117
3301
  code: any | null;
3118
3302
  display: string | null;
@@ -3158,10 +3342,10 @@ export type CancelAppointmentMutationResults = {
3158
3342
  status: any | null;
3159
3343
  };
3160
3344
  };
3161
- export type CancelationReasonsQueryVariables = Types.Exact<{
3345
+ export type CancellationReasonsQueryVariables = Types.Exact<{
3162
3346
  organization: Types.SearchReference;
3163
3347
  }>;
3164
- export type CancelationReasonsQueryResults = {
3348
+ export type CancellationReasonsQueryResults = {
3165
3349
  cancelationReasons: {
3166
3350
  id: string;
3167
3351
  title: string | null;
@@ -3284,11 +3468,13 @@ export type NextQuestionMutationResults = {
3284
3468
  lastUpdated: any | null;
3285
3469
  source: any | null;
3286
3470
  security: Array<{
3471
+ id: string | null;
3287
3472
  system: any | null;
3288
3473
  code: any | null;
3289
3474
  display: string | null;
3290
3475
  } | null> | null;
3291
3476
  tag: Array<{
3477
+ id: string | null;
3292
3478
  system: any | null;
3293
3479
  code: any | null;
3294
3480
  display: string | null;
@@ -3299,8 +3485,10 @@ export type NextQuestionMutationResults = {
3299
3485
  system: any | null;
3300
3486
  value: string | null;
3301
3487
  type: {
3488
+ id: string | null;
3302
3489
  text: string | null;
3303
3490
  coding: Array<{
3491
+ id: string | null;
3304
3492
  system: any | null;
3305
3493
  code: any | null;
3306
3494
  display: string | null;
@@ -3331,6 +3519,7 @@ export type NextQuestionMutationResults = {
3331
3519
  title: string | null;
3332
3520
  } | null;
3333
3521
  valueCoding: {
3522
+ id: string | null;
3334
3523
  system: any | null;
3335
3524
  code: any | null;
3336
3525
  display: string | null;
@@ -3362,8 +3551,10 @@ export type NextQuestionMutationResults = {
3362
3551
  reference: any | null;
3363
3552
  } | null;
3364
3553
  valueCodeableConcept: {
3554
+ id: string | null;
3365
3555
  text: string | null;
3366
3556
  coding: Array<{
3557
+ id: string | null;
3367
3558
  system: any | null;
3368
3559
  code: any | null;
3369
3560
  display: string | null;
@@ -3393,6 +3584,7 @@ export type NextQuestionMutationResults = {
3393
3584
  title: string | null;
3394
3585
  } | null;
3395
3586
  valueCoding: {
3587
+ id: string | null;
3396
3588
  system: any | null;
3397
3589
  code: any | null;
3398
3590
  display: string | null;
@@ -3424,8 +3616,10 @@ export type NextQuestionMutationResults = {
3424
3616
  reference: any | null;
3425
3617
  } | null;
3426
3618
  valueCodeableConcept: {
3619
+ id: string | null;
3427
3620
  text: string | null;
3428
3621
  coding: Array<{
3622
+ id: string | null;
3429
3623
  system: any | null;
3430
3624
  code: any | null;
3431
3625
  display: string | null;
@@ -3455,6 +3649,7 @@ export type NextQuestionMutationResults = {
3455
3649
  title: string | null;
3456
3650
  } | null;
3457
3651
  valueCoding: {
3652
+ id: string | null;
3458
3653
  system: any | null;
3459
3654
  code: any | null;
3460
3655
  display: string | null;
@@ -3486,8 +3681,10 @@ export type NextQuestionMutationResults = {
3486
3681
  reference: any | null;
3487
3682
  } | null;
3488
3683
  valueCodeableConcept: {
3684
+ id: string | null;
3489
3685
  text: string | null;
3490
3686
  coding: Array<{
3687
+ id: string | null;
3491
3688
  system: any | null;
3492
3689
  code: any | null;
3493
3690
  display: string | null;
@@ -3514,11 +3711,13 @@ export type NextQuestionMutationResults = {
3514
3711
  lastUpdated: any | null;
3515
3712
  source: any | null;
3516
3713
  security: Array<{
3714
+ id: string | null;
3517
3715
  system: any | null;
3518
3716
  code: any | null;
3519
3717
  display: string | null;
3520
3718
  } | null> | null;
3521
3719
  tag: Array<{
3720
+ id: string | null;
3522
3721
  system: any | null;
3523
3722
  code: any | null;
3524
3723
  display: string | null;
@@ -3529,8 +3728,10 @@ export type NextQuestionMutationResults = {
3529
3728
  system: any | null;
3530
3729
  value: string | null;
3531
3730
  type: {
3731
+ id: string | null;
3532
3732
  text: string | null;
3533
3733
  coding: Array<{
3734
+ id: string | null;
3534
3735
  system: any | null;
3535
3736
  code: any | null;
3536
3737
  display: string | null;
@@ -3583,8 +3784,10 @@ export type NextQuestionMutationResults = {
3583
3784
  reference: any | null;
3584
3785
  } | null;
3585
3786
  valueCodeableConcept: {
3787
+ id: string | null;
3586
3788
  text: string | null;
3587
3789
  coding: Array<{
3790
+ id: string | null;
3588
3791
  system: any | null;
3589
3792
  code: any | null;
3590
3793
  display: string | null;
@@ -3611,8 +3814,10 @@ export type NextQuestionMutationResults = {
3611
3814
  reference: any | null;
3612
3815
  } | null;
3613
3816
  valueCodeableConcept: {
3817
+ id: string | null;
3614
3818
  text: string | null;
3615
3819
  coding: Array<{
3820
+ id: string | null;
3616
3821
  system: any | null;
3617
3822
  code: any | null;
3618
3823
  display: string | null;
@@ -3636,6 +3841,7 @@ export type NextQuestionMutationResults = {
3636
3841
  answerTime: any | null;
3637
3842
  answerString: string | null;
3638
3843
  answerCoding: {
3844
+ id: string | null;
3639
3845
  system: any | null;
3640
3846
  code: any | null;
3641
3847
  display: string | null;
@@ -3659,6 +3865,7 @@ export type NextQuestionMutationResults = {
3659
3865
  valueString: string | null;
3660
3866
  initialSelected: boolean | null;
3661
3867
  valueCoding: {
3868
+ id: string | null;
3662
3869
  system: any | null;
3663
3870
  code: any | null;
3664
3871
  display: string | null;
@@ -3683,8 +3890,10 @@ export type NextQuestionMutationResults = {
3683
3890
  reference: any | null;
3684
3891
  } | null;
3685
3892
  valueCodeableConcept: {
3893
+ id: string | null;
3686
3894
  text: string | null;
3687
3895
  coding: Array<{
3896
+ id: string | null;
3688
3897
  system: any | null;
3689
3898
  code: any | null;
3690
3899
  display: string | null;
@@ -3713,6 +3922,7 @@ export type NextQuestionMutationResults = {
3713
3922
  title: string | null;
3714
3923
  } | null;
3715
3924
  valueCoding: {
3925
+ id: string | null;
3716
3926
  system: any | null;
3717
3927
  code: any | null;
3718
3928
  display: string | null;
@@ -3744,8 +3954,10 @@ export type NextQuestionMutationResults = {
3744
3954
  reference: any | null;
3745
3955
  } | null;
3746
3956
  valueCodeableConcept: {
3957
+ id: string | null;
3747
3958
  text: string | null;
3748
3959
  coding: Array<{
3960
+ id: string | null;
3749
3961
  system: any | null;
3750
3962
  code: any | null;
3751
3963
  display: string | null;
@@ -3776,8 +3988,10 @@ export type NextQuestionMutationResults = {
3776
3988
  reference: any | null;
3777
3989
  } | null;
3778
3990
  valueCodeableConcept: {
3991
+ id: string | null;
3779
3992
  text: string | null;
3780
3993
  coding: Array<{
3994
+ id: string | null;
3781
3995
  system: any | null;
3782
3996
  code: any | null;
3783
3997
  display: string | null;
@@ -3804,8 +4018,10 @@ export type NextQuestionMutationResults = {
3804
4018
  reference: any | null;
3805
4019
  } | null;
3806
4020
  valueCodeableConcept: {
4021
+ id: string | null;
3807
4022
  text: string | null;
3808
4023
  coding: Array<{
4024
+ id: string | null;
3809
4025
  system: any | null;
3810
4026
  code: any | null;
3811
4027
  display: string | null;
@@ -3829,6 +4045,7 @@ export type NextQuestionMutationResults = {
3829
4045
  answerTime: any | null;
3830
4046
  answerString: string | null;
3831
4047
  answerCoding: {
4048
+ id: string | null;
3832
4049
  system: any | null;
3833
4050
  code: any | null;
3834
4051
  display: string | null;
@@ -3852,6 +4069,7 @@ export type NextQuestionMutationResults = {
3852
4069
  valueString: string | null;
3853
4070
  initialSelected: boolean | null;
3854
4071
  valueCoding: {
4072
+ id: string | null;
3855
4073
  system: any | null;
3856
4074
  code: any | null;
3857
4075
  display: string | null;
@@ -3876,8 +4094,10 @@ export type NextQuestionMutationResults = {
3876
4094
  reference: any | null;
3877
4095
  } | null;
3878
4096
  valueCodeableConcept: {
4097
+ id: string | null;
3879
4098
  text: string | null;
3880
4099
  coding: Array<{
4100
+ id: string | null;
3881
4101
  system: any | null;
3882
4102
  code: any | null;
3883
4103
  display: string | null;
@@ -3906,6 +4126,7 @@ export type NextQuestionMutationResults = {
3906
4126
  title: string | null;
3907
4127
  } | null;
3908
4128
  valueCoding: {
4129
+ id: string | null;
3909
4130
  system: any | null;
3910
4131
  code: any | null;
3911
4132
  display: string | null;
@@ -3937,8 +4158,10 @@ export type NextQuestionMutationResults = {
3937
4158
  reference: any | null;
3938
4159
  } | null;
3939
4160
  valueCodeableConcept: {
4161
+ id: string | null;
3940
4162
  text: string | null;
3941
4163
  coding: Array<{
4164
+ id: string | null;
3942
4165
  system: any | null;
3943
4166
  code: any | null;
3944
4167
  display: string | null;
@@ -3969,8 +4192,10 @@ export type NextQuestionMutationResults = {
3969
4192
  reference: any | null;
3970
4193
  } | null;
3971
4194
  valueCodeableConcept: {
4195
+ id: string | null;
3972
4196
  text: string | null;
3973
4197
  coding: Array<{
4198
+ id: string | null;
3974
4199
  system: any | null;
3975
4200
  code: any | null;
3976
4201
  display: string | null;
@@ -3997,8 +4222,10 @@ export type NextQuestionMutationResults = {
3997
4222
  reference: any | null;
3998
4223
  } | null;
3999
4224
  valueCodeableConcept: {
4225
+ id: string | null;
4000
4226
  text: string | null;
4001
4227
  coding: Array<{
4228
+ id: string | null;
4002
4229
  system: any | null;
4003
4230
  code: any | null;
4004
4231
  display: string | null;
@@ -4022,6 +4249,7 @@ export type NextQuestionMutationResults = {
4022
4249
  answerTime: any | null;
4023
4250
  answerString: string | null;
4024
4251
  answerCoding: {
4252
+ id: string | null;
4025
4253
  system: any | null;
4026
4254
  code: any | null;
4027
4255
  display: string | null;
@@ -4045,6 +4273,7 @@ export type NextQuestionMutationResults = {
4045
4273
  valueString: string | null;
4046
4274
  initialSelected: boolean | null;
4047
4275
  valueCoding: {
4276
+ id: string | null;
4048
4277
  system: any | null;
4049
4278
  code: any | null;
4050
4279
  display: string | null;
@@ -4069,8 +4298,10 @@ export type NextQuestionMutationResults = {
4069
4298
  reference: any | null;
4070
4299
  } | null;
4071
4300
  valueCodeableConcept: {
4301
+ id: string | null;
4072
4302
  text: string | null;
4073
4303
  coding: Array<{
4304
+ id: string | null;
4074
4305
  system: any | null;
4075
4306
  code: any | null;
4076
4307
  display: string | null;
@@ -4099,6 +4330,7 @@ export type NextQuestionMutationResults = {
4099
4330
  title: string | null;
4100
4331
  } | null;
4101
4332
  valueCoding: {
4333
+ id: string | null;
4102
4334
  system: any | null;
4103
4335
  code: any | null;
4104
4336
  display: string | null;
@@ -4130,8 +4362,10 @@ export type NextQuestionMutationResults = {
4130
4362
  reference: any | null;
4131
4363
  } | null;
4132
4364
  valueCodeableConcept: {
4365
+ id: string | null;
4133
4366
  text: string | null;
4134
4367
  coding: Array<{
4368
+ id: string | null;
4135
4369
  system: any | null;
4136
4370
  code: any | null;
4137
4371
  display: string | null;
@@ -4162,11 +4396,13 @@ export type CreateConsentMutationResults = {
4162
4396
  lastUpdated: any | null;
4163
4397
  source: any | null;
4164
4398
  security: Array<{
4399
+ id: string | null;
4165
4400
  system: any | null;
4166
4401
  code: any | null;
4167
4402
  display: string | null;
4168
4403
  } | null> | null;
4169
4404
  tag: Array<{
4405
+ id: string | null;
4170
4406
  system: any | null;
4171
4407
  code: any | null;
4172
4408
  display: string | null;
@@ -4175,16 +4411,16 @@ export type CreateConsentMutationResults = {
4175
4411
  scope: {
4176
4412
  text: string | null;
4177
4413
  coding: Array<{
4178
- system: any | null;
4179
4414
  code: any | null;
4415
+ system: any | null;
4180
4416
  display: string | null;
4181
4417
  } | null> | null;
4182
4418
  } | null;
4183
4419
  category: Array<{
4184
4420
  text: string | null;
4185
4421
  coding: Array<{
4186
- system: any | null;
4187
4422
  code: any | null;
4423
+ system: any | null;
4188
4424
  display: string | null;
4189
4425
  } | null> | null;
4190
4426
  } | null> | null;
@@ -4225,8 +4461,8 @@ export type CreateConsentMutationResults = {
4225
4461
  policyRule: {
4226
4462
  text: string | null;
4227
4463
  coding: Array<{
4228
- system: any | null;
4229
4464
  code: any | null;
4465
+ system: any | null;
4230
4466
  display: string | null;
4231
4467
  } | null> | null;
4232
4468
  } | null;