|
111 | 111 | " managingOrganization?: Reference;"
|
112 | 112 | " name?: HumanName[];"
|
113 | 113 | " birthDate?: string;"
|
| 114 | + " _birthDate: Element;" |
114 | 115 | " multipleBirth?: boolean | number;"
|
115 | 116 | " deceased?: string | boolean;"
|
116 | 117 | " photo?: Attachment[];"
|
117 | 118 | " link?: PatientLink[];"
|
118 | 119 | " active?: boolean;"
|
| 120 | + " _active: Element;" |
119 | 121 | " communication?: PatientCommunication[];"
|
120 | 122 | " identifier?: Identifier[];"
|
121 | 123 | " telecom?: ContactPoint[];"
|
122 | 124 | " generalPractitioner?: Reference[];"
|
123 | 125 | " gender?: string;"
|
| 126 | + " _gender: Element;" |
124 | 127 | " maritalStatus?: CodeableConcept;"
|
125 | 128 | " contact?: PatientContact[];"
|
126 | 129 | "};"])
|
|
165 | 168 | " managingOrganization?: Reference;"
|
166 | 169 | " name?: HumanName[];"
|
167 | 170 | " birthDate?: string;"
|
| 171 | + " _birthDate: Element;" |
168 | 172 | " multipleBirth?: boolean | number;"
|
169 | 173 | " deceased?: string | boolean;"
|
170 | 174 | " photo?: Attachment[];"
|
171 | 175 | " link?: PatientLink[];"
|
172 | 176 | " active?: boolean;"
|
| 177 | + " _active: Element;" |
173 | 178 | " communication?: PatientCommunication[];"
|
174 | 179 | " identifier?: Identifier[];"
|
175 | 180 | " telecom?: ContactPoint[];"
|
176 | 181 | " generalPractitioner?: Reference[];"
|
177 | 182 | " gender?: string;"
|
| 183 | + " _gender: Element;" |
178 | 184 | " maritalStatus?: CodeableConcept;"
|
179 | 185 | " contact?: PatientContact[];"
|
180 | 186 | "};"])
|
|
192 | 198 | (is
|
193 | 199 | (= {:path (io/file "hl7-fhir-r4-core/Patient.ts"),
|
194 | 200 | :content
|
195 |
| - "import { Address } from \"./Address\";\nimport { Attachment } from \"./Attachment\";\nimport { Period } from \"./Period\";\nimport { CodeableConcept } from \"./CodeableConcept\";\nimport { ContactPoint } from \"./ContactPoint\";\nimport { HumanName } from \"./HumanName\";\nimport { DomainResource } from \"./DomainResource\";\nimport { Reference } from \"./Reference\";\nimport { Identifier } from \"./Identifier\";\nimport { BackboneElement } from \"./BackboneElement\";\n\nexport type PatientLink = BackboneElement & {\n type: string;\n other: Reference;\n};\n\nexport type PatientCommunication = BackboneElement & {\n language: CodeableConcept;\n preferred?: boolean;\n};\n\nexport type PatientContact = BackboneElement & {\n name?: HumanName;\n gender?: string;\n period?: Period;\n address?: Address;\n telecom?: ContactPoint[];\n organization?: Reference;\n relationship?: CodeableConcept[];\n};\n\nexport type Patient = DomainResource & {\n address?: Address[];\n managingOrganization?: Reference;\n name?: HumanName[];\n birthDate?: string;\n multipleBirth?: boolean | number;\n deceased?: string | boolean;\n photo?: Attachment[];\n link?: PatientLink[];\n active?: boolean;\n communication?: PatientCommunication[];\n identifier?: Identifier[];\n telecom?: ContactPoint[];\n generalPractitioner?: Reference[];\n gender?: string;\n maritalStatus?: CodeableConcept;\n contact?: PatientContact[];\n};"} |
| 201 | + "import { Address } from \"./Address\";\nimport { Attachment } from \"./Attachment\";\nimport { Period } from \"./Period\";\nimport { CodeableConcept } from \"./CodeableConcept\";\nimport { ContactPoint } from \"./ContactPoint\";\nimport { HumanName } from \"./HumanName\";\nimport { DomainResource } from \"./DomainResource\";\nimport { Reference } from \"./Reference\";\nimport { Identifier } from \"./Identifier\";\nimport { BackboneElement } from \"./BackboneElement\";\n\nexport type PatientLink = BackboneElement & {\n type: string;\n other: Reference;\n};\n\nexport type PatientCommunication = BackboneElement & {\n language: CodeableConcept;\n preferred?: boolean;\n};\n\nexport type PatientContact = BackboneElement & {\n name?: HumanName;\n gender?: string;\n period?: Period;\n address?: Address;\n telecom?: ContactPoint[];\n organization?: Reference;\n relationship?: CodeableConcept[];\n};\n\nexport type Patient = DomainResource & {\n address?: Address[];\n managingOrganization?: Reference;\n name?: HumanName[];\n birthDate?: string;\n _birthDate: Element;\n multipleBirth?: boolean | number;\n deceased?: string | boolean;\n photo?: Attachment[];\n link?: PatientLink[];\n active?: boolean;\n _active: Element;\n communication?: PatientCommunication[];\n identifier?: Identifier[];\n telecom?: ContactPoint[];\n generalPractitioner?: Reference[];\n gender?: string;\n _gender: Element;\n maritalStatus?: CodeableConcept;\n contact?: PatientContact[];\n};"} |
196 | 202 | (sut/generate-resource-module generator (fixt/get-data :patient-ir-schema)))))
|
197 | 203 |
|
198 | 204 | #_(deftest test-generate-search-params
|
|
0 commit comments