@icanbwell/bwell-sdk-ts 1.33.0 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/__version__.d.ts +1 -1
- package/dist/__version__.js +1 -1
- package/dist/api/base/health-data/health-manager.d.ts +12 -4
- package/dist/api/graphql-api/healthdata/graphql-get-medication-dispense-bwell-response-factory.d.ts +10 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-dispense-bwell-response-factory.js +35 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-request-bwell-response-factory.d.ts +10 -0
- package/dist/api/graphql-api/healthdata/graphql-get-medication-request-bwell-response-factory.js +35 -0
- package/dist/api/graphql-api/healthdata/graphql-health-manager.d.ts +6 -1
- package/dist/api/graphql-api/healthdata/graphql-health-manager.js +13 -7
- package/dist/graphql/operations/index.d.ts +13 -8
- package/dist/graphql/operations/index.js +129 -77
- package/dist/graphql/operations/types.d.ts +312 -589
- package/dist/graphql/schema.d.ts +16 -2
- package/dist/graphql/schema.js +15 -0
- package/package.json +1 -1
|
@@ -322,6 +322,30 @@ export const MedicationReferenceFieldsFragmentDoc = `
|
|
|
322
322
|
}
|
|
323
323
|
${IdentifierFieldsFragmentDoc}
|
|
324
324
|
${CodeableConceptFieldsFragmentDoc}`;
|
|
325
|
+
export const MedicationIngredientItemReferenceMedicationIngredientFieldsFragmentDoc = `
|
|
326
|
+
fragment MedicationIngredientItemReferenceMedicationIngredientFields on MedicationIngredient {
|
|
327
|
+
itemCodeableConcept {
|
|
328
|
+
...CodeableConceptFields
|
|
329
|
+
}
|
|
330
|
+
strength {
|
|
331
|
+
...RatioFields
|
|
332
|
+
}
|
|
333
|
+
isActive
|
|
334
|
+
}
|
|
335
|
+
${CodeableConceptFieldsFragmentDoc}
|
|
336
|
+
${RatioFieldsFragmentDoc}`;
|
|
337
|
+
export const MedicationIngredientItemReferenceMedicationFieldsFragmentDoc = `
|
|
338
|
+
fragment MedicationIngredientItemReferenceMedicationFields on Medication {
|
|
339
|
+
resourceType
|
|
340
|
+
identifier {
|
|
341
|
+
...IdentifierFields
|
|
342
|
+
}
|
|
343
|
+
code {
|
|
344
|
+
...CodeableConceptFields
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
${IdentifierFieldsFragmentDoc}
|
|
348
|
+
${CodeableConceptFieldsFragmentDoc}`;
|
|
325
349
|
export const NarrativeFieldsFragmentDoc = `
|
|
326
350
|
fragment NarrativeFields on Narrative {
|
|
327
351
|
div
|
|
@@ -340,52 +364,8 @@ export const SubstanceInstanceFieldsFragmentDoc = `
|
|
|
340
364
|
}
|
|
341
365
|
${IdentifierFieldsFragmentDoc}
|
|
342
366
|
${QuantityFieldsFragmentDoc}`;
|
|
343
|
-
export const
|
|
344
|
-
fragment
|
|
345
|
-
resource {
|
|
346
|
-
resourceType
|
|
347
|
-
id
|
|
348
|
-
text {
|
|
349
|
-
...NarrativeFields
|
|
350
|
-
}
|
|
351
|
-
identifier {
|
|
352
|
-
...IdentifierFields
|
|
353
|
-
}
|
|
354
|
-
status
|
|
355
|
-
category {
|
|
356
|
-
...CodeableConceptFields
|
|
357
|
-
}
|
|
358
|
-
code {
|
|
359
|
-
...CodeableConceptFields
|
|
360
|
-
}
|
|
361
|
-
description
|
|
362
|
-
instance {
|
|
363
|
-
...SubstanceInstanceFields
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
${NarrativeFieldsFragmentDoc}
|
|
368
|
-
${IdentifierFieldsFragmentDoc}
|
|
369
|
-
${CodeableConceptFieldsFragmentDoc}
|
|
370
|
-
${SubstanceInstanceFieldsFragmentDoc}`;
|
|
371
|
-
export const SubstanceIngredientFieldsFragmentDoc = `
|
|
372
|
-
fragment SubstanceIngredientFields on SubstanceIngredient {
|
|
373
|
-
id
|
|
374
|
-
quantity {
|
|
375
|
-
...RatioFields
|
|
376
|
-
}
|
|
377
|
-
substanceCodeableConcept {
|
|
378
|
-
...CodeableConceptFields
|
|
379
|
-
}
|
|
380
|
-
substanceReference {
|
|
381
|
-
...SubstanceIngredientSubstanceReferenceFields
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
${RatioFieldsFragmentDoc}
|
|
385
|
-
${CodeableConceptFieldsFragmentDoc}
|
|
386
|
-
${SubstanceIngredientSubstanceReferenceFieldsFragmentDoc}`;
|
|
387
|
-
export const SubstanceFieldsFragmentDoc = `
|
|
388
|
-
fragment SubstanceFields on Substance {
|
|
367
|
+
export const MedicationIngredientItemReferenceSubstanceFieldsFragmentDoc = `
|
|
368
|
+
fragment MedicationIngredientItemReferenceSubstanceFields on Substance {
|
|
389
369
|
resourceType
|
|
390
370
|
id
|
|
391
371
|
text {
|
|
@@ -405,15 +385,45 @@ export const SubstanceFieldsFragmentDoc = `
|
|
|
405
385
|
instance {
|
|
406
386
|
...SubstanceInstanceFields
|
|
407
387
|
}
|
|
408
|
-
ingredient {
|
|
409
|
-
...SubstanceIngredientFields
|
|
410
|
-
}
|
|
411
388
|
}
|
|
412
389
|
${NarrativeFieldsFragmentDoc}
|
|
413
390
|
${IdentifierFieldsFragmentDoc}
|
|
414
391
|
${CodeableConceptFieldsFragmentDoc}
|
|
415
|
-
${SubstanceInstanceFieldsFragmentDoc}
|
|
416
|
-
|
|
392
|
+
${SubstanceInstanceFieldsFragmentDoc}`;
|
|
393
|
+
export const MedicationIngredientItemReferenceFieldsFragmentDoc = `
|
|
394
|
+
fragment MedicationIngredientItemReferenceFields on MedicationIngredientItemReference {
|
|
395
|
+
... on Medication {
|
|
396
|
+
...MedicationIngredientItemReferenceMedicationFields
|
|
397
|
+
}
|
|
398
|
+
... on Substance {
|
|
399
|
+
...MedicationIngredientItemReferenceSubstanceFields
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
${MedicationIngredientItemReferenceMedicationFieldsFragmentDoc}
|
|
403
|
+
${MedicationIngredientItemReferenceSubstanceFieldsFragmentDoc}`;
|
|
404
|
+
export const MedicationIngredientItemReferenceResourceFieldsFragmentDoc = `
|
|
405
|
+
fragment MedicationIngredientItemReferenceResourceFields on MedicationIngredientItemReferenceReference {
|
|
406
|
+
itemReferenceResource: resource {
|
|
407
|
+
...MedicationIngredientItemReferenceFields
|
|
408
|
+
}
|
|
409
|
+
}
|
|
410
|
+
${MedicationIngredientItemReferenceFieldsFragmentDoc}`;
|
|
411
|
+
export const MedicationIngredientFieldsFragmentDoc = `
|
|
412
|
+
fragment MedicationIngredientFields on MedicationIngredient {
|
|
413
|
+
itemCodeableConcept {
|
|
414
|
+
...CodeableConceptFields
|
|
415
|
+
}
|
|
416
|
+
strength {
|
|
417
|
+
...RatioFields
|
|
418
|
+
}
|
|
419
|
+
itemReference {
|
|
420
|
+
...MedicationIngredientItemReferenceResourceFields
|
|
421
|
+
}
|
|
422
|
+
isActive
|
|
423
|
+
}
|
|
424
|
+
${CodeableConceptFieldsFragmentDoc}
|
|
425
|
+
${RatioFieldsFragmentDoc}
|
|
426
|
+
${MedicationIngredientItemReferenceResourceFieldsFragmentDoc}`;
|
|
417
427
|
export const MedicationFieldsFragmentDoc = `
|
|
418
428
|
fragment MedicationFields on Medication {
|
|
419
429
|
resourceType
|
|
@@ -425,30 +435,7 @@ export const MedicationFieldsFragmentDoc = `
|
|
|
425
435
|
...CodeableConceptFields
|
|
426
436
|
}
|
|
427
437
|
ingredient {
|
|
428
|
-
|
|
429
|
-
...CodeableConceptFields
|
|
430
|
-
}
|
|
431
|
-
strength {
|
|
432
|
-
...RatioFields
|
|
433
|
-
}
|
|
434
|
-
itemReference {
|
|
435
|
-
resource {
|
|
436
|
-
__typename
|
|
437
|
-
... on Medication {
|
|
438
|
-
resourceType
|
|
439
|
-
identifier {
|
|
440
|
-
...IdentifierFields
|
|
441
|
-
}
|
|
442
|
-
code {
|
|
443
|
-
...CodeableConceptFields
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
... on Substance {
|
|
447
|
-
...SubstanceFields
|
|
448
|
-
}
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
isActive
|
|
438
|
+
...MedicationIngredientFields
|
|
452
439
|
}
|
|
453
440
|
form {
|
|
454
441
|
...CodeableConceptFields
|
|
@@ -456,8 +443,7 @@ export const MedicationFieldsFragmentDoc = `
|
|
|
456
443
|
}
|
|
457
444
|
${IdentifierFieldsFragmentDoc}
|
|
458
445
|
${CodeableConceptFieldsFragmentDoc}
|
|
459
|
-
${
|
|
460
|
-
${SubstanceFieldsFragmentDoc}`;
|
|
446
|
+
${MedicationIngredientFieldsFragmentDoc}`;
|
|
461
447
|
export const MedicationReferenceResourceFieldsFragmentDoc = `
|
|
462
448
|
fragment MedicationReferenceResourceFields on MedicationReference {
|
|
463
449
|
resource {
|
|
@@ -465,6 +451,48 @@ export const MedicationReferenceResourceFieldsFragmentDoc = `
|
|
|
465
451
|
}
|
|
466
452
|
}
|
|
467
453
|
${MedicationFieldsFragmentDoc}`;
|
|
454
|
+
export const SubstanceIngredientFieldsFragmentDoc = `
|
|
455
|
+
fragment SubstanceIngredientFields on SubstanceIngredient {
|
|
456
|
+
id
|
|
457
|
+
quantity {
|
|
458
|
+
...RatioFields
|
|
459
|
+
}
|
|
460
|
+
substanceCodeableConcept {
|
|
461
|
+
...CodeableConceptFields
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
${RatioFieldsFragmentDoc}
|
|
465
|
+
${CodeableConceptFieldsFragmentDoc}`;
|
|
466
|
+
export const SubstanceFieldsFragmentDoc = `
|
|
467
|
+
fragment SubstanceFields on Substance {
|
|
468
|
+
resourceType
|
|
469
|
+
id
|
|
470
|
+
text {
|
|
471
|
+
...NarrativeFields
|
|
472
|
+
}
|
|
473
|
+
identifier {
|
|
474
|
+
...IdentifierFields
|
|
475
|
+
}
|
|
476
|
+
status
|
|
477
|
+
category {
|
|
478
|
+
...CodeableConceptFields
|
|
479
|
+
}
|
|
480
|
+
code {
|
|
481
|
+
...CodeableConceptFields
|
|
482
|
+
}
|
|
483
|
+
description
|
|
484
|
+
instance {
|
|
485
|
+
...SubstanceInstanceFields
|
|
486
|
+
}
|
|
487
|
+
ingredient {
|
|
488
|
+
...SubstanceIngredientFields
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
${NarrativeFieldsFragmentDoc}
|
|
492
|
+
${IdentifierFieldsFragmentDoc}
|
|
493
|
+
${CodeableConceptFieldsFragmentDoc}
|
|
494
|
+
${SubstanceInstanceFieldsFragmentDoc}
|
|
495
|
+
${SubstanceIngredientFieldsFragmentDoc}`;
|
|
468
496
|
export const MetaFieldsFragmentDoc = `
|
|
469
497
|
fragment MetaFields on Meta {
|
|
470
498
|
versionId
|
|
@@ -2655,6 +2683,30 @@ export const AppointmentsDocument = `
|
|
|
2655
2683
|
cancelationReason {
|
|
2656
2684
|
...CodeableConceptFields
|
|
2657
2685
|
}
|
|
2686
|
+
extension {
|
|
2687
|
+
url
|
|
2688
|
+
valueBoolean
|
|
2689
|
+
valueInteger
|
|
2690
|
+
valueString
|
|
2691
|
+
valueExpression {
|
|
2692
|
+
description
|
|
2693
|
+
name
|
|
2694
|
+
language
|
|
2695
|
+
expression
|
|
2696
|
+
reference
|
|
2697
|
+
}
|
|
2698
|
+
valueCodeableConcept {
|
|
2699
|
+
...CodeableConceptFields
|
|
2700
|
+
}
|
|
2701
|
+
valueDateTime
|
|
2702
|
+
valueCode
|
|
2703
|
+
valueUri
|
|
2704
|
+
valueReference {
|
|
2705
|
+
reference
|
|
2706
|
+
type
|
|
2707
|
+
display
|
|
2708
|
+
}
|
|
2709
|
+
}
|
|
2658
2710
|
serviceType {
|
|
2659
2711
|
...CodeableConceptFields
|
|
2660
2712
|
}
|