@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
@@ -2820,18 +2820,7 @@ export type AppointmentSlotReference = {
2820
2820
  resource?: Maybe<Slot>;
2821
2821
  type?: Maybe<Scalars['URI']['output']>;
2822
2822
  };
2823
- export declare enum AppointmentStatus {
2824
- Arrived = "ARRIVED",
2825
- Booked = "BOOKED",
2826
- Cancelled = "CANCELLED",
2827
- CheckedIn = "CHECKED_IN",
2828
- EnteredInError = "ENTERED_IN_ERROR",
2829
- Fulfilled = "FULFILLED",
2830
- Noshow = "NOSHOW",
2831
- Pending = "PENDING",
2832
- Proposed = "PROPOSED",
2833
- Waitlist = "WAITLIST"
2834
- }
2823
+ export type AppointmentStatus = 'ARRIVED' | 'BOOKED' | 'CANCELLED' | 'CHECKED_IN' | 'ENTERED_IN_ERROR' | 'FULFILLED' | 'NOSHOW' | 'PENDING' | 'PROPOSED' | 'WAITLIST';
2835
2824
  /** Reference type for SupportingInformation */
2836
2825
  export type AppointmentSupportingInformationReference = {
2837
2826
  __typename?: 'AppointmentSupportingInformationReference';
@@ -4261,9 +4250,7 @@ export type BootstrapConfiguration = {
4261
4250
  zendesk: Zendesk;
4262
4251
  };
4263
4252
  /** Bootstrap variant options */
4264
- export declare enum BootstrapVariant {
4265
- Guest = "GUEST"
4266
- }
4253
+ export type BootstrapVariant = 'GUEST';
4267
4254
  /**
4268
4255
  * Bundle
4269
4256
  * A container for a collection of resources.
@@ -6742,18 +6729,7 @@ export type CatalogEntryRelatedEntryItemReference = {
6742
6729
  resource?: Maybe<CatalogEntry>;
6743
6730
  type?: Maybe<Scalars['URI']['output']>;
6744
6731
  };
6745
- export declare enum CategoryCode {
6746
- CommunicationPreferencesPhi = "COMMUNICATION_PREFERENCES_PHI",
6747
- DataSharing = "DATA_SHARING",
6748
- HealthCircleAdolescent = "HEALTH_CIRCLE_ADOLESCENT",
6749
- HealthCircleMinor = "HEALTH_CIRCLE_MINOR",
6750
- HealthMatch = "HEALTH_MATCH",
6751
- IasImportRecords = "IAS_IMPORT_RECORDS",
6752
- MobileCommunicationPreferences = "MOBILE_COMMUNICATION_PREFERENCES",
6753
- PersonalizedHealthOffersAndAds = "PERSONALIZED_HEALTH_OFFERS_AND_ADS",
6754
- ProaAttestation = "PROA_ATTESTATION",
6755
- Tos = "TOS"
6756
- }
6732
+ export type CategoryCode = 'COMMUNICATION_PREFERENCES_PHI' | 'DATA_SHARING' | 'HEALTH_CIRCLE_ADOLESCENT' | 'HEALTH_CIRCLE_MINOR' | 'HEALTH_MATCH' | 'IAS_IMPORT_RECORDS' | 'MOBILE_COMMUNICATION_PREFERENCES' | 'PERSONALIZED_HEALTH_OFFERS_AND_ADS' | 'PROA_ATTESTATION' | 'TOS';
6757
6733
  /**
6758
6734
  * ChargeItem
6759
6735
  * The resource ChargeItem describes the provision of healthcare provider
@@ -11131,17 +11107,13 @@ export type Client = {
11131
11107
  id?: InputMaybe<ClientId>;
11132
11108
  name?: InputMaybe<Scalars['String']['input']>;
11133
11109
  };
11134
- export declare enum ClientId {
11135
- Bwell = "bwell"
11136
- }
11110
+ export type ClientId = 'bwell';
11137
11111
  /**
11138
11112
  * ClientId enum
11139
11113
  * New version
11140
11114
  * Unused.
11141
11115
  */
11142
- export declare enum ClientIdEnum {
11143
- Bwell = "BWELL"
11144
- }
11116
+ export type ClientIdEnum = 'BWELL';
11145
11117
  /**
11146
11118
  * Client input
11147
11119
  * New version
@@ -15214,10 +15186,7 @@ export type Connection = {
15214
15186
  type: DataConnectionType;
15215
15187
  };
15216
15188
  /** Defines the type of connection */
15217
- export declare enum ConnectionCategory {
15218
- Basic = "BASIC",
15219
- Oauth = "OAUTH"
15220
- }
15189
+ export type ConnectionCategory = 'BASIC' | 'OAUTH';
15221
15190
  /** Defines connection after making updates */
15222
15191
  export type ConnectionStatusUpdate = {
15223
15192
  __typename?: 'ConnectionStatusUpdate';
@@ -15704,10 +15673,7 @@ export type ConsentProvisionInput = {
15704
15673
  securityLabel?: InputMaybe<Array<InputMaybe<CodingInput>>>;
15705
15674
  type?: InputMaybe<ConsentProvisionType>;
15706
15675
  };
15707
- export declare enum ConsentProvisionType {
15708
- Deny = "DENY",
15709
- Permit = "PERMIT"
15710
- }
15676
+ export type ConsentProvisionType = 'DENY' | 'PERMIT';
15711
15677
  export type ConsentQuestionnaireResponse = {
15712
15678
  __typename?: 'ConsentQuestionnaireResponse';
15713
15679
  data?: Maybe<Scalars['QuestionnaireResponseData']['output']>;
@@ -15734,14 +15700,7 @@ export type ConsentSourceReferenceReference = {
15734
15700
  resource?: Maybe<ConsentSourceReference>;
15735
15701
  type?: Maybe<Scalars['URI']['output']>;
15736
15702
  };
15737
- export declare enum ConsentStatus {
15738
- Active = "ACTIVE",
15739
- Draft = "DRAFT",
15740
- EnteredInError = "ENTERED_IN_ERROR",
15741
- Inactive = "INACTIVE",
15742
- Proposed = "PROPOSED",
15743
- Rejected = "REJECTED"
15744
- }
15703
+ export type ConsentStatus = 'ACTIVE' | 'DRAFT' | 'ENTERED_IN_ERROR' | 'INACTIVE' | 'PROPOSED' | 'REJECTED';
15745
15704
  /**
15746
15705
  * Consent.Verification
15747
15706
  * A record of a healthcare consumer’s choices, which permits or denies
@@ -18741,21 +18700,9 @@ export type CoverageSubscriberReference = {
18741
18700
  type?: Maybe<Scalars['URI']['output']>;
18742
18701
  };
18743
18702
  /** Defines the connection statuses */
18744
- export declare enum DataConnectionStatus {
18745
- Connected = "CONNECTED",
18746
- Deleted = "DELETED",
18747
- Disconnected = "DISCONNECTED",
18748
- Error = "ERROR",
18749
- Expired = "EXPIRED"
18750
- }
18703
+ export type DataConnectionStatus = 'CONNECTED' | 'DELETED' | 'DISCONNECTED' | 'ERROR' | 'EXPIRED';
18751
18704
  /** Defines the source type of connection */
18752
- export declare enum DataConnectionType {
18753
- Clinical = "CLINICAL",
18754
- Insurance = "INSURANCE",
18755
- Lab = "LAB",
18756
- Pharmacy = "PHARMACY",
18757
- Practitioner = "PRACTITIONER"
18758
- }
18705
+ export type DataConnectionType = 'CLINICAL' | 'INSURANCE' | 'LAB' | 'PHARMACY' | 'PRACTITIONER';
18759
18706
  /**
18760
18707
  * DataRequirement
18761
18708
  * Describes a required data item for evaluation in terms of the type of data,
@@ -18957,18 +18904,12 @@ export type DataRequirementSubjectReferenceReference = {
18957
18904
  resource?: Maybe<Group>;
18958
18905
  type?: Maybe<Scalars['URI']['output']>;
18959
18906
  };
18960
- export declare enum DataSets {
18961
- Connecthub = "connecthub",
18962
- Nppes = "nppes"
18963
- }
18907
+ export type DataSets = 'connecthub' | 'nppes';
18964
18908
  /**
18965
18909
  * DataSets enum
18966
18910
  * New version
18967
18911
  */
18968
- export declare enum DataSetsEnum {
18969
- Connecthub = "CONNECTHUB",
18970
- Nppes = "NPPES"
18971
- }
18912
+ export type DataSetsEnum = 'CONNECTHUB' | 'NPPES';
18972
18913
  /** Defines a data source */
18973
18914
  export type DataSource = {
18974
18915
  __typename?: 'DataSource';
@@ -23599,12 +23540,7 @@ export type EmbeddableConfiguration = {
23599
23540
  routeDefinition: Array<RouteDefinition>;
23600
23541
  webSdkVersion: Scalars['String']['output'];
23601
23542
  };
23602
- export declare enum EmpiType {
23603
- BwellPatient = "BWELL_PATIENT",
23604
- BwellPerson = "BWELL_PERSON",
23605
- ClientPatient = "CLIENT_PATIENT",
23606
- ClientPerson = "CLIENT_PERSON"
23607
- }
23543
+ export type EmpiType = 'BWELL_PATIENT' | 'BWELL_PERSON' | 'CLIENT_PATIENT' | 'CLIENT_PERSON';
23608
23544
  /**
23609
23545
  * Encounter
23610
23546
  * An interaction between a patient and healthcare provider(s) for the purpose of
@@ -24432,26 +24368,12 @@ export type EndpointManagingOrganizationReference = {
24432
24368
  resource?: Maybe<Organization>;
24433
24369
  type?: Maybe<Scalars['URI']['output']>;
24434
24370
  };
24435
- export declare enum EndpointStatus {
24436
- Active = "active",
24437
- EnteredInError = "entered_in_error",
24438
- Error = "error",
24439
- Off = "off",
24440
- Suspended = "suspended",
24441
- Test = "test"
24442
- }
24371
+ export type EndpointStatus = 'active' | 'entered_in_error' | 'error' | 'off' | 'suspended' | 'test';
24443
24372
  /**
24444
24373
  * EndpointStatus enum
24445
24374
  * New version
24446
24375
  */
24447
- export declare enum EndpointStatusEnum {
24448
- Active = "ACTIVE",
24449
- EnteredInError = "ENTERED_IN_ERROR",
24450
- Error = "ERROR",
24451
- Off = "OFF",
24452
- Suspended = "SUSPENDED",
24453
- Test = "TEST"
24454
- }
24376
+ export type EndpointStatusEnum = 'ACTIVE' | 'ENTERED_IN_ERROR' | 'ERROR' | 'OFF' | 'SUSPENDED' | 'TEST';
24455
24377
  /**
24456
24378
  * Endpoing type
24457
24379
  * New version
@@ -25398,6 +25320,7 @@ export type EventDefinitionSubjectReferenceReference = {
25398
25320
  resource?: Maybe<Group>;
25399
25321
  type?: Maybe<Scalars['URI']['output']>;
25400
25322
  };
25323
+ export type EventType = 'CUSTOM_EVENT' | 'MOBILE_PUSH_OPEN';
25401
25324
  /**
25402
25325
  * Evidence
25403
25326
  * The Evidence Resource provides a machine-interpretable expression of an
@@ -29318,12 +29241,7 @@ export type ExtensionValueReferenceReference = {
29318
29241
  reference?: Maybe<Scalars['String']['output']>;
29319
29242
  type?: Maybe<Scalars['URI']['output']>;
29320
29243
  };
29321
- export declare enum FhirPersonGender {
29322
- Female = "female",
29323
- Male = "male",
29324
- Other = "other",
29325
- Unknown = "unknown"
29326
- }
29244
+ export type FhirPersonGender = 'female' | 'male' | 'other' | 'unknown';
29327
29245
  export type FhirPersonInput = {
29328
29246
  active?: InputMaybe<Scalars['Boolean']['input']>;
29329
29247
  address?: InputMaybe<Array<InputMaybe<AddressInput>>>;
@@ -29343,9 +29261,7 @@ export type FhirPersonInput = {
29343
29261
  resourceType: FhirPersonResourceType;
29344
29262
  telecom?: InputMaybe<Array<InputMaybe<ContactPointInput>>>;
29345
29263
  };
29346
- export declare enum FhirPersonResourceType {
29347
- Person = "Person"
29348
- }
29264
+ export type FhirPersonResourceType = 'Person';
29349
29265
  /**
29350
29266
  * FamilyMemberHistory
29351
29267
  * Significant health conditions for a person related to the patient relevant in
@@ -29812,22 +29728,12 @@ export type FhirSubscription = DomainResource & Resource & {
29812
29728
  */
29813
29729
  text?: Maybe<Narrative>;
29814
29730
  };
29815
- export declare enum FilterField {
29816
- Characteristic = "characteristic",
29817
- Communication = "communication",
29818
- Gender = "gender",
29819
- Specialty = "specialty"
29820
- }
29731
+ export type FilterField = 'characteristic' | 'communication' | 'gender' | 'specialty';
29821
29732
  /**
29822
29733
  * FilterField enum
29823
29734
  * New version
29824
29735
  */
29825
- export declare enum FilterFieldEnum {
29826
- Characteristic = "CHARACTERISTIC",
29827
- Communication = "COMMUNICATION",
29828
- Gender = "GENDER",
29829
- Specialty = "SPECIALTY"
29830
- }
29736
+ export type FilterFieldEnum = 'CHARACTERISTIC' | 'COMMUNICATION' | 'GENDER' | 'SPECIALTY';
29831
29737
  export type FilterValue = {
29832
29738
  __typename?: 'FilterValue';
29833
29739
  count?: Maybe<Scalars['Int']['output']>;
@@ -30028,25 +29934,16 @@ export type FrontendEnvironment = {
30028
29934
  __typename?: 'FrontendEnvironment';
30029
29935
  analytics: Analytics;
30030
29936
  };
30031
- export declare enum Gender {
30032
- Female = "female",
30033
- /** Follows https://www.hl7.org/fhir/valueset-administrative-gender.html */
30034
- Male = "male",
30035
- Other = "other",
30036
- Unknown = "unknown"
30037
- }
29937
+ export type Gender = 'female'
29938
+ /** Follows https://www.hl7.org/fhir/valueset-administrative-gender.html */
29939
+ | 'male' | 'other' | 'unknown';
30038
29940
  /**
30039
29941
  * Gender enum
30040
29942
  * New version
30041
29943
  *
30042
29944
  * Follows https://www.hl7.org/fhir/valueset-admin
30043
29945
  */
30044
- export declare enum GenderEnum {
30045
- Female = "FEMALE",
30046
- Male = "MALE",
30047
- Other = "OTHER",
30048
- Unknown = "UNKNOWN"
30049
- }
29946
+ export type GenderEnum = 'FEMALE' | 'MALE' | 'OTHER' | 'UNKNOWN';
30050
29947
  /** Generate an oauth url */
30051
29948
  export type GenerateUrl = {
30052
29949
  __typename?: 'GenerateUrl';
@@ -31261,17 +31158,7 @@ export type HealthResourceSearchResult = {
31261
31158
  specialty?: Maybe<Array<Maybe<ProviderCoding>>>;
31262
31159
  type?: Maybe<SearchResultTypeEnum>;
31263
31160
  };
31264
- export declare enum HealthSummaryCategory {
31265
- AllergyIntolerance = "ALLERGY_INTOLERANCE",
31266
- CarePlan = "CARE_PLAN",
31267
- Condition = "CONDITION",
31268
- Encounter = "ENCOUNTER",
31269
- Immunization = "IMMUNIZATION",
31270
- Labs = "LABS",
31271
- Medications = "MEDICATIONS",
31272
- Procedure = "PROCEDURE",
31273
- VitalSigns = "VITAL_SIGNS"
31274
- }
31161
+ export type HealthSummaryCategory = 'ALLERGY_INTOLERANCE' | 'CARE_PLAN' | 'CONDITION' | 'ENCOUNTER' | 'IMMUNIZATION' | 'LABS' | 'MEDICATIONS' | 'PROCEDURE' | 'VITAL_SIGNS';
31275
31162
  export type HealthSummaryQueryResults = {
31276
31163
  __typename?: 'HealthSummaryQueryResults';
31277
31164
  resources: Array<HealthSummaryResource>;
@@ -31781,13 +31668,7 @@ export type IdentifierInput = {
31781
31668
  type?: InputMaybe<CodeableConceptInput>;
31782
31669
  value?: InputMaybe<Scalars['String']['input']>;
31783
31670
  };
31784
- export declare enum IdentifierUseKind {
31785
- Official = "_official",
31786
- Old = "_old",
31787
- Secondary = "_secondary",
31788
- Temp = "_temp",
31789
- Usual = "_usual"
31790
- }
31671
+ export type IdentifierUseKind = '_official' | '_old' | '_secondary' | '_temp' | '_usual';
31791
31672
  /** codeable concept */
31792
31673
  export type IdentityAuthed_CodeableConcept = {
31793
31674
  __typename?: 'IdentityAuthed_CodeableConcept';
@@ -35183,16 +35064,12 @@ export type InsurancePlanSpecificCost = {
35183
35064
  */
35184
35065
  modifierExtension?: Maybe<Array<Maybe<FhirExtension>>>;
35185
35066
  };
35186
- export declare enum InteractionType {
35187
- Clicked = "clicked"
35188
- }
35067
+ export type InteractionType = 'clicked';
35189
35068
  /**
35190
35069
  * InteractionType enum
35191
35070
  * New version
35192
35071
  */
35193
- export declare enum InteractionTypeEnum {
35194
- Clicked = "CLICKED"
35195
- }
35072
+ export type InteractionTypeEnum = 'CLICKED';
35196
35073
  /**
35197
35074
  * Invoice
35198
35075
  * Invoice containing collected ChargeItems from an Account with calculated
@@ -36679,13 +36556,7 @@ export type LogInResponse = {
36679
36556
  idToken: IdTokenBundleGql;
36680
36557
  refreshToken: RefreshTokenGql;
36681
36558
  };
36682
- export declare enum LogLevel {
36683
- Debug = "DEBUG",
36684
- Error = "ERROR",
36685
- Info = "INFO",
36686
- Verbose = "VERBOSE",
36687
- Warn = "WARN"
36688
- }
36559
+ export type LogLevel = 'DEBUG' | 'ERROR' | 'INFO' | 'VERBOSE' | 'WARN';
36689
36560
  export type Logging = {
36690
36561
  __typename?: 'Logging';
36691
36562
  enabled: Scalars['Boolean']['output'];
@@ -43800,8 +43671,10 @@ export type Mutation = {
43800
43671
  * and contains the questionnaire within the QuestionnaireResponse
43801
43672
  */
43802
43673
  nextQuestion?: Maybe<QuestionnaireResponse>;
43674
+ publishEvent?: Maybe<OperationOutcome>;
43803
43675
  requestConnection?: Maybe<RequestConnectionOutput>;
43804
43676
  updateAppointment: Appointment;
43677
+ updateDeviceRegistration?: Maybe<OperationOutcome>;
43805
43678
  updatePersonDetails: Array<UpdatePersonDetailsOutput>;
43806
43679
  updateUserAccountStatus: IdentityAuthed_OperationOutcome;
43807
43680
  updateUserClient: Array<UpdateUserClientOutput>;
@@ -43896,6 +43769,9 @@ export type MutationExchangeAuthCodeArgs = {
43896
43769
  export type MutationNextQuestionArgs = {
43897
43770
  input?: InputMaybe<QuestionnaireResponseInput>;
43898
43771
  };
43772
+ export type MutationPublishEventArgs = {
43773
+ input: PublishEventRequest;
43774
+ };
43899
43775
  export type MutationRequestConnectionArgs = {
43900
43776
  city?: InputMaybe<Scalars['String']['input']>;
43901
43777
  institution?: InputMaybe<Scalars['String']['input']>;
@@ -43905,6 +43781,9 @@ export type MutationRequestConnectionArgs = {
43905
43781
  export type MutationUpdateAppointmentArgs = {
43906
43782
  appointment: UpdateAppointmentInput;
43907
43783
  };
43784
+ export type MutationUpdateDeviceRegistrationArgs = {
43785
+ input: UpdateDeviceRegistrationRequest;
43786
+ };
43908
43787
  export type MutationUpdatePersonDetailsArgs = {
43909
43788
  clientSlug: Scalars['String']['input'];
43910
43789
  email: Scalars['String']['input'];
@@ -46005,13 +45884,7 @@ export type ObservationSubjectReference = {
46005
45884
  resource?: Maybe<ObservationSubject>;
46006
45885
  type?: Maybe<Scalars['URI']['output']>;
46007
45886
  };
46008
- export declare enum Operation {
46009
- CancelDelete = "CANCEL_DELETE",
46010
- ConfirmDelete = "CONFIRM_DELETE",
46011
- DeletionInProgress = "DELETION_IN_PROGRESS",
46012
- ImmediateExecution = "IMMEDIATE_EXECUTION",
46013
- RequestDelete = "REQUEST_DELETE"
46014
- }
45887
+ export type Operation = 'CANCEL_DELETE' | 'CONFIRM_DELETE' | 'DELETION_IN_PROGRESS' | 'IMMEDIATE_EXECUTION' | 'REQUEST_DELETE';
46015
45888
  /**
46016
45889
  * OperationDefinition
46017
45890
  * A formal computable definition of an operation (on the RESTful interface) or a
@@ -46580,6 +46453,11 @@ export type OperationOutcomeBundleEntry = {
46580
46453
  /** Information about the search process that lead to the creation of this entry. */
46581
46454
  search?: Maybe<BundleSearch>;
46582
46455
  };
46456
+ export type OperationOutcomeDetails = {
46457
+ __typename?: 'OperationOutcomeDetails';
46458
+ coding?: Maybe<Array<Coding>>;
46459
+ text?: Maybe<Scalars['String']['output']>;
46460
+ };
46583
46461
  /**
46584
46462
  * OperationOutcome.Issue
46585
46463
  * A collection of error, warning, or information messages that result from a
@@ -47097,50 +46975,12 @@ export type OrganizationPartOfReference = {
47097
46975
  resource?: Maybe<Organization>;
47098
46976
  type?: Maybe<Scalars['URI']['output']>;
47099
46977
  };
47100
- export declare enum OrganizationType {
47101
- C19Vaccine = "C19Vaccine",
47102
- Device = "Device",
47103
- Insurance = "Insurance",
47104
- Laboratory = "Laboratory",
47105
- Pharmacy = "Pharmacy",
47106
- Provider = "Provider",
47107
- Bus = "bus",
47108
- Cg = "cg",
47109
- Crs = "crs",
47110
- Dept = "dept",
47111
- Edu = "edu",
47112
- Govt = "govt",
47113
- Ins = "ins",
47114
- Other = "other",
47115
- Pay = "pay",
47116
- Prov = "prov",
47117
- Reli = "reli",
47118
- Team = "team"
47119
- }
46978
+ export type OrganizationType = 'C19Vaccine' | 'Device' | 'Insurance' | 'Laboratory' | 'Pharmacy' | 'Provider' | 'bus' | 'cg' | 'crs' | 'dept' | 'edu' | 'govt' | 'ins' | 'other' | 'pay' | 'prov' | 'reli' | 'team';
47120
46979
  /**
47121
46980
  * OrganizationType enum
47122
46981
  * New version
47123
46982
  */
47124
- export declare enum OrganizationTypeEnum {
47125
- Bus = "BUS",
47126
- C19Vaccine = "C19VACCINE",
47127
- Cg = "CG",
47128
- Crs = "CRS",
47129
- Dept = "DEPT",
47130
- Device = "DEVICE",
47131
- Edu = "EDU",
47132
- Govt = "GOVT",
47133
- Ins = "INS",
47134
- Insurance = "INSURANCE",
47135
- Laboratory = "LABORATORY",
47136
- Other = "OTHER",
47137
- Pay = "PAY",
47138
- Pharmacy = "PHARMACY",
47139
- Prov = "PROV",
47140
- Provider = "PROVIDER",
47141
- Reli = "RELI",
47142
- Team = "TEAM"
47143
- }
46983
+ export type OrganizationTypeEnum = 'BUS' | 'C19VACCINE' | 'CG' | 'CRS' | 'DEPT' | 'DEVICE' | 'EDU' | 'GOVT' | 'INS' | 'INSURANCE' | 'LABORATORY' | 'OTHER' | 'PAY' | 'PHARMACY' | 'PROV' | 'PROVIDER' | 'RELI' | 'TEAM';
47144
46984
  /**
47145
46985
  * Organization type
47146
46986
  * New version
@@ -47956,14 +47796,7 @@ export type PatchObject = {
47956
47796
  path: Scalars['String']['input'];
47957
47797
  value?: InputMaybe<Scalars['Code']['input']>;
47958
47798
  };
47959
- export declare enum PatchOperationType {
47960
- Add = "add",
47961
- Copy = "copy",
47962
- Move = "move",
47963
- Remove = "remove",
47964
- Replace = "replace",
47965
- Test = "test"
47966
- }
47799
+ export type PatchOperationType = 'add' | 'copy' | 'move' | 'remove' | 'replace' | 'test';
47967
47800
  /**
47968
47801
  * Patient
47969
47802
  * Demographics and other administrative information about an individual or
@@ -49312,10 +49145,7 @@ export type PersonMetadataInput = {
49312
49145
  /** Return statusCode as 200 in case of get and 201 if the resource was created */
49313
49146
  statusCode: Scalars['String']['input'];
49314
49147
  };
49315
- export declare enum PersonPatientResourceType {
49316
- Patient = "Patient",
49317
- Person = "Person"
49318
- }
49148
+ export type PersonPatientResourceType = 'Patient' | 'Person';
49319
49149
  export type PersonResource = {
49320
49150
  __typename?: 'PersonResource';
49321
49151
  resource?: Maybe<Person>;
@@ -51865,18 +51695,29 @@ export type ProviderResults = {
51865
51695
  paging_info?: Maybe<PagingInfo>;
51866
51696
  results?: Maybe<Array<Maybe<ProviderResult>>>;
51867
51697
  };
51868
- export declare enum ProviderType {
51869
- Practice = "practice",
51870
- Practitioner = "practitioner"
51871
- }
51698
+ export type ProviderType = 'practice' | 'practitioner';
51872
51699
  /**
51873
51700
  * Provider Type enum
51874
51701
  * New version
51875
51702
  */
51876
- export declare enum ProviderTypeEnum {
51877
- Practice = "PRACTICE",
51878
- Practitioner = "PRACTITIONER"
51879
- }
51703
+ export type ProviderTypeEnum = 'PRACTICE' | 'PRACTITIONER';
51704
+ export type PublishEventDataField = {
51705
+ key: Scalars['String']['input'];
51706
+ value?: InputMaybe<Scalars['String']['input']>;
51707
+ };
51708
+ export type PublishEventRequest = {
51709
+ bwellPersonId?: InputMaybe<Scalars['String']['input']>;
51710
+ campaignId?: InputMaybe<Scalars['String']['input']>;
51711
+ clientId?: InputMaybe<Scalars['String']['input']>;
51712
+ clientKey?: InputMaybe<Scalars['String']['input']>;
51713
+ clientSlug?: InputMaybe<Scalars['String']['input']>;
51714
+ data?: InputMaybe<Array<InputMaybe<PublishEventDataField>>>;
51715
+ eventName?: InputMaybe<Scalars['String']['input']>;
51716
+ eventType: EventType;
51717
+ id?: InputMaybe<Scalars['String']['input']>;
51718
+ messageId?: InputMaybe<Scalars['String']['input']>;
51719
+ templateId?: InputMaybe<Scalars['String']['input']>;
51720
+ };
51880
51721
  export type Qualification = {
51881
51722
  __typename?: 'Qualification';
51882
51723
  code?: Maybe<ProviderCodeableConcept>;
@@ -52588,6 +52429,7 @@ export type Query = {
52588
52429
  * If the element is present, it must have either a @value, an @id, or extensions
52589
52430
  */
52590
52431
  visionPrescriptions?: Maybe<VisionPrescriptionBundle>;
52432
+ who?: Maybe<Scalars['String']['output']>;
52591
52433
  };
52592
52434
  export type QueryAccountDeletionStatusByClientPersonArgs = {
52593
52435
  clientPersonId: Scalars['String']['input'];
@@ -55778,9 +55620,7 @@ export type QuestionnaireResponse_Input = {
55778
55620
  source?: InputMaybe<Scalars['String']['input']>;
55779
55621
  subject?: InputMaybe<Scalars['String']['input']>;
55780
55622
  };
55781
- export declare enum Questionnaire_Enum_Schema {
55782
- QuestionnaireResponse = "QuestionnaireResponse"
55783
- }
55623
+ export type Questionnaire_Enum_Schema = 'QuestionnaireResponse';
55784
55624
  export type Rum = {
55785
55625
  __typename?: 'RUM';
55786
55626
  configurations: Scalars['String']['output'];
@@ -59322,13 +59162,7 @@ export type SearchReferenceValue = {
59322
59162
  target?: InputMaybe<Scalars['String']['input']>;
59323
59163
  value?: InputMaybe<Scalars['String']['input']>;
59324
59164
  };
59325
- export declare enum SearchResultTypeEnum {
59326
- Insurance = "INSURANCE",
59327
- Laboratory = "LABORATORY",
59328
- Pharmacy = "PHARMACY",
59329
- Practice = "PRACTICE",
59330
- Practitioner = "PRACTITIONER"
59331
- }
59165
+ export type SearchResultTypeEnum = 'INSURANCE' | 'LABORATORY' | 'PHARMACY' | 'PRACTICE' | 'PRACTITIONER';
59332
59166
  export type SearchString = {
59333
59167
  above?: InputMaybe<Scalars['Boolean']['input']>;
59334
59168
  below?: InputMaybe<Scalars['Boolean']['input']>;
@@ -60020,41 +59854,20 @@ export type SlotScheduleReference = {
60020
59854
  resource?: Maybe<Schedule>;
60021
59855
  type?: Maybe<Scalars['URI']['output']>;
60022
59856
  };
60023
- export declare enum SortField {
60024
- Content = "content",
60025
- Distance = "distance",
60026
- Relevance = "relevance"
60027
- }
59857
+ export type SortField = 'content' | 'distance' | 'relevance';
60028
59858
  /**
60029
59859
  * SortField enum
60030
59860
  * New version
60031
59861
  */
60032
- export declare enum SortFieldEnum {
60033
- Content = "CONTENT",
60034
- DataSourceRank = "DATA_SOURCE_RANK",
60035
- Distance = "DISTANCE",
60036
- Relevance = "RELEVANCE"
60037
- }
60038
- export declare enum SortOrder {
60039
- Asc = "asc",
60040
- Desc = "desc"
60041
- }
59862
+ export type SortFieldEnum = 'CONTENT' | 'DATA_SOURCE_RANK' | 'DISTANCE' | 'RELEVANCE';
59863
+ export type SortOrder = 'asc' | 'desc';
60042
59864
  /**
60043
59865
  * SortOrder enum
60044
59866
  * New version
60045
59867
  */
60046
- export declare enum SortOrderEnum {
60047
- Asc = "ASC",
60048
- Desc = "DESC"
60049
- }
59868
+ export type SortOrderEnum = 'ASC' | 'DESC';
60050
59869
  /** Query Source enum */
60051
- export declare enum SourceEnum {
60052
- CareSearch = "CARE_SEARCH",
60053
- Proa = "PROA",
60054
- ProviderDetails = "PROVIDER_DETAILS",
60055
- Sayt = "SAYT",
60056
- Unspecified = "UNSPECIFIED"
60057
- }
59870
+ export type SourceEnum = 'CARE_SEARCH' | 'PROA' | 'PROVIDER_DETAILS' | 'SAYT' | 'UNSPECIFIED';
60058
59871
  /**
60059
59872
  * Specimen
60060
59873
  * A sample to be used for analysis.
@@ -64351,12 +64164,7 @@ export type SyncErrorCoding = {
64351
64164
  system?: Maybe<Scalars['String']['output']>;
64352
64165
  };
64353
64166
  /** Defines the data sync statuses */
64354
- export declare enum SyncStatus {
64355
- Error = "ERROR",
64356
- Pending = "PENDING",
64357
- Retrieved = "RETRIEVED",
64358
- Retrieving = "RETRIEVING"
64359
- }
64167
+ export type SyncStatus = 'ERROR' | 'PENDING' | 'RETRIEVED' | 'RETRIEVING';
64360
64168
  /**
64361
64169
  * Task
64362
64170
  * A task to be performed.
@@ -67480,10 +67288,7 @@ export type TokenPayload = {
67480
67288
  __typename?: 'TokenPayload';
67481
67289
  jwtToken: Scalars['String']['output'];
67482
67290
  };
67483
- export declare enum TotalType {
67484
- Accurate = "accurate",
67485
- Estimate = "estimate"
67486
- }
67291
+ export type TotalType = 'accurate' | 'estimate';
67487
67292
  /**
67488
67293
  * TriggerDefinition
67489
67294
  * A description of a triggering event. Triggering events can be named events,
@@ -67546,6 +67351,15 @@ export type UpdateAppointmentInput = {
67546
67351
  id: Scalars['ID']['input'];
67547
67352
  status: AppointmentStatus;
67548
67353
  };
67354
+ export type UpdateDeviceRegistrationRequest = {
67355
+ applicationName?: InputMaybe<Scalars['String']['input']>;
67356
+ bwellPersonId?: InputMaybe<Scalars['String']['input']>;
67357
+ clientId?: InputMaybe<Scalars['String']['input']>;
67358
+ clientSlug?: InputMaybe<Scalars['String']['input']>;
67359
+ deviceToken: Scalars['String']['input'];
67360
+ notificationPreference: Scalars['Boolean']['input'];
67361
+ platform?: InputMaybe<Scalars['String']['input']>;
67362
+ };
67549
67363
  export type UpdateUserClientOutput = {
67550
67364
  __typename?: 'UpdateUserClientOutput';
67551
67365
  id: Scalars['String']['output'];
@@ -69020,12 +68834,11 @@ export type Zendesk = {
69020
68834
  key?: Maybe<Scalars['String']['output']>;
69021
68835
  uri: Scalars['String']['output'];
69022
68836
  };
69023
- export declare enum Link__Purpose {
69024
- /** `EXECUTION` features provide metadata necessary for operation execution. */
69025
- Execution = "EXECUTION",
69026
- /** `SECURITY` features provide metadata necessary to securely resolve fields. */
69027
- Security = "SECURITY"
69028
- }
68837
+ export type Link__Purpose =
68838
+ /** `EXECUTION` features provide metadata necessary for operation execution. */
68839
+ 'EXECUTION'
68840
+ /** `SECURITY` features provide metadata necessary to securely resolve fields. */
68841
+ | 'SECURITY';
69029
68842
  export type UpdatePersonDetailsOutput = {
69030
68843
  __typename?: 'updatePersonDetailsOutput';
69031
68844
  id: Scalars['String']['output'];