@icanbwell/bwell-sdk-ts 2.0.0-alpha.0-rc.1758311895 → 2.0.0-alpha.0-rc.1758316655

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.
@@ -38,6 +38,70 @@ export const CodeableConceptFieldsFragmentDoc = `
38
38
  }
39
39
  }
40
40
  ${CodingFieldsFragmentDoc}`;
41
+ export const IdentifierFieldsFragmentDoc = `
42
+ fragment IdentifierFields on Identifier {
43
+ id
44
+ type {
45
+ ...CodeableConceptFields
46
+ }
47
+ system
48
+ value
49
+ }
50
+ ${CodeableConceptFieldsFragmentDoc}`;
51
+ export const AddressFieldsFragmentDoc = `
52
+ fragment AddressFields on Address {
53
+ use
54
+ type
55
+ text
56
+ line
57
+ city
58
+ district
59
+ state
60
+ postalCode
61
+ country
62
+ }
63
+ `;
64
+ export const PositionFieldsFragmentDoc = `
65
+ fragment PositionFields on LocationPosition {
66
+ latitude
67
+ longitude
68
+ }
69
+ `;
70
+ export const ContactPointFieldsFragmentDoc = `
71
+ fragment ContactPointFields on ContactPoint {
72
+ id
73
+ system
74
+ value
75
+ use
76
+ rank
77
+ }
78
+ `;
79
+ export const LocationFieldsFragmentDoc = `
80
+ fragment LocationFields on Location {
81
+ name
82
+ identifier {
83
+ ...IdentifierFields
84
+ }
85
+ alias
86
+ description
87
+ address {
88
+ ...AddressFields
89
+ }
90
+ position {
91
+ ...PositionFields
92
+ }
93
+ telecom {
94
+ ...ContactPointFields
95
+ }
96
+ type {
97
+ ...CodeableConceptFields
98
+ }
99
+ }
100
+ ${IdentifierFieldsFragmentDoc}
101
+ ${AddressFieldsFragmentDoc}
102
+ ${PositionFieldsFragmentDoc}
103
+ ${ContactPointFieldsFragmentDoc}
104
+ ${CodeableConceptFieldsFragmentDoc}`;
41
105
  export const ExtensionFieldsFragmentDoc = `
42
106
  fragment ExtensionFields on Extension {
43
107
  id
@@ -234,16 +298,6 @@ export const PatientFieldsFragmentDoc = `
234
298
  }
235
299
  }
236
300
  ${HumanNameFieldsFragmentDoc}`;
237
- export const IdentifierFieldsFragmentDoc = `
238
- fragment IdentifierFields on Identifier {
239
- id
240
- type {
241
- ...CodeableConceptFields
242
- }
243
- system
244
- value
245
- }
246
- ${CodeableConceptFieldsFragmentDoc}`;
247
301
  export const PractitionerFieldsFragmentDoc = `
248
302
  fragment PractitionerFields on Practitioner {
249
303
  id
@@ -332,6 +386,47 @@ export const ObservationPerformerFieldsFragmentDoc = `
332
386
  }
333
387
  ${HumanNameFieldsFragmentDoc}
334
388
  ${IdentifierFieldsFragmentDoc}`;
389
+ export const EndpointFieldsFragmentDoc = `
390
+ fragment EndpointFields on Endpoint {
391
+ identifier {
392
+ ...IdentifierFields
393
+ }
394
+ name
395
+ status
396
+ connectionType {
397
+ ...CodingFields
398
+ }
399
+ address
400
+ }
401
+ ${IdentifierFieldsFragmentDoc}
402
+ ${CodingFieldsFragmentDoc}`;
403
+ export const OrganizationFieldsFragmentDoc = `
404
+ fragment OrganizationFields on Organization {
405
+ resourceType
406
+ identifier {
407
+ ...IdentifierFields
408
+ }
409
+ endpoint {
410
+ id
411
+ reference
412
+ type
413
+ resource {
414
+ ...EndpointFields
415
+ }
416
+ }
417
+ name
418
+ telecom {
419
+ system
420
+ value
421
+ rank
422
+ }
423
+ address {
424
+ ...AddressFields
425
+ }
426
+ }
427
+ ${IdentifierFieldsFragmentDoc}
428
+ ${EndpointFieldsFragmentDoc}
429
+ ${AddressFieldsFragmentDoc}`;
335
430
  export const DocumentReferenceAttachmentFieldsFragmentDoc = `
336
431
  fragment DocumentReferenceAttachmentFields on DocumentReferenceAttachment {
337
432
  contentType
@@ -702,220 +797,6 @@ export const ProcedurePerformerActorFieldsFragmentDoc = `
702
797
  }
703
798
  }
704
799
  ${PractitionerFieldsFragmentDoc}`;
705
- export const EndpointFieldsFragmentDoc = `
706
- fragment EndpointFields on Endpoint {
707
- identifier {
708
- ...IdentifierFields
709
- }
710
- name
711
- status
712
- connectionType {
713
- ...CodingFields
714
- }
715
- address
716
- }
717
- ${IdentifierFieldsFragmentDoc}
718
- ${CodingFieldsFragmentDoc}`;
719
- export const ContactPointFieldsFragmentDoc = `
720
- fragment ContactPointFields on ContactPoint {
721
- id
722
- system
723
- value
724
- use
725
- rank
726
- }
727
- `;
728
- export const AddressFieldsFragmentDoc = `
729
- fragment AddressFields on Address {
730
- use
731
- type
732
- text
733
- line
734
- city
735
- district
736
- state
737
- postalCode
738
- country
739
- }
740
- `;
741
- export const OrganizationFieldsFragmentDoc = `
742
- fragment OrganizationFields on Organization {
743
- resourceType
744
- identifier {
745
- ...IdentifierFields
746
- }
747
- endpoint {
748
- id
749
- reference
750
- type
751
- resource {
752
- ...EndpointFields
753
- }
754
- }
755
- name
756
- telecom {
757
- ...ContactPointFields
758
- }
759
- address {
760
- ...AddressFields
761
- }
762
- active
763
- type {
764
- ...CodeableConceptFields
765
- }
766
- }
767
- ${IdentifierFieldsFragmentDoc}
768
- ${EndpointFieldsFragmentDoc}
769
- ${ContactPointFieldsFragmentDoc}
770
- ${AddressFieldsFragmentDoc}
771
- ${CodeableConceptFieldsFragmentDoc}`;
772
- export const PositionFieldsFragmentDoc = `
773
- fragment PositionFields on LocationPosition {
774
- latitude
775
- longitude
776
- }
777
- `;
778
- export const LocationFieldsFragmentDoc = `
779
- fragment LocationFields on Location {
780
- name
781
- identifier {
782
- ...IdentifierFields
783
- }
784
- alias
785
- description
786
- address {
787
- ...AddressFields
788
- }
789
- position {
790
- ...PositionFields
791
- }
792
- telecom {
793
- ...ContactPointFields
794
- }
795
- status
796
- managingOrganization {
797
- id
798
- reference
799
- identifier {
800
- ...IdentifierFields
801
- }
802
- display
803
- resource {
804
- ...OrganizationFields
805
- }
806
- }
807
- type {
808
- ...CodeableConceptFields
809
- }
810
- }
811
- ${IdentifierFieldsFragmentDoc}
812
- ${AddressFieldsFragmentDoc}
813
- ${PositionFieldsFragmentDoc}
814
- ${ContactPointFieldsFragmentDoc}
815
- ${OrganizationFieldsFragmentDoc}
816
- ${CodeableConceptFieldsFragmentDoc}`;
817
- export const PractitionerRoleFieldsFragmentDoc = `
818
- fragment PractitionerRoleFields on PractitionerRole {
819
- resourceType
820
- identifier {
821
- ...IdentifierFields
822
- }
823
- practitioner {
824
- id
825
- reference
826
- type
827
- resource {
828
- ...PractitionerFields
829
- }
830
- }
831
- organization {
832
- id
833
- reference
834
- type
835
- resource {
836
- ...OrganizationFields
837
- }
838
- }
839
- code {
840
- ...CodeableConceptFields
841
- }
842
- specialty {
843
- ...CodeableConceptFields
844
- }
845
- location {
846
- id
847
- reference
848
- type
849
- resource {
850
- ...LocationFields
851
- }
852
- }
853
- telecom {
854
- ...ContactPointFields
855
- }
856
- active
857
- id
858
- endpoint {
859
- id
860
- reference
861
- identifier {
862
- ...IdentifierFields
863
- }
864
- display
865
- resource {
866
- ...EndpointFields
867
- }
868
- }
869
- period {
870
- ...PeriodFields
871
- }
872
- }
873
- ${IdentifierFieldsFragmentDoc}
874
- ${PractitionerFieldsFragmentDoc}
875
- ${OrganizationFieldsFragmentDoc}
876
- ${CodeableConceptFieldsFragmentDoc}
877
- ${LocationFieldsFragmentDoc}
878
- ${ContactPointFieldsFragmentDoc}
879
- ${EndpointFieldsFragmentDoc}
880
- ${PeriodFieldsFragmentDoc}`;
881
- export const RelatedPersonFieldsFragmentDoc = `
882
- fragment RelatedPersonFields on RelatedPerson {
883
- resourceType
884
- id
885
- active
886
- name {
887
- ...HumanNameFields
888
- }
889
- identifier {
890
- ...IdentifierFields
891
- }
892
- telecom {
893
- ...ContactPointFields
894
- }
895
- address {
896
- ...AddressFields
897
- }
898
- relationship {
899
- ...CodeableConceptFields
900
- }
901
- patient {
902
- id
903
- reference
904
- identifier {
905
- ...IdentifierFields
906
- }
907
- display
908
- resource {
909
- ...PatientFields
910
- }
911
- }
912
- }
913
- ${HumanNameFieldsFragmentDoc}
914
- ${IdentifierFieldsFragmentDoc}
915
- ${ContactPointFieldsFragmentDoc}
916
- ${AddressFieldsFragmentDoc}
917
- ${CodeableConceptFieldsFragmentDoc}
918
- ${PatientFieldsFragmentDoc}`;
919
800
  export const CareTeamParticipantFieldsFragmentDoc = `
920
801
  fragment CareTeamParticipantFields on CareTeamParticipant {
921
802
  role {
@@ -936,16 +817,12 @@ export const CareTeamParticipantFieldsFragmentDoc = `
936
817
  }
937
818
  }
938
819
  ...PractitionerFields
939
- ...PractitionerRoleFields
940
- ...RelatedPersonFields
941
820
  }
942
821
  }
943
822
  }
944
823
  ${CodeableConceptFieldsFragmentDoc}
945
824
  ${MetaFieldsFragmentDoc}
946
- ${PractitionerFieldsFragmentDoc}
947
- ${PractitionerRoleFieldsFragmentDoc}
948
- ${RelatedPersonFieldsFragmentDoc}`;
825
+ ${PractitionerFieldsFragmentDoc}`;
949
826
  export const QuestionnaireResponseItemFieldsFragmentDoc = `
950
827
  fragment QuestionnaireResponseItemFields on QuestionnaireResponseItem {
951
828
  linkId