@@ -461,6 +461,8 @@ declare type Organization_SzOrganization_Props = {
461461} ;
462462
463463declare type Patient_SzPatient_Props = {
464+ _birthDate ?: any ;
465+ _birthTime ?: any ;
464466 active ?: boolean ;
465467 address ?: builders . Address [ ] ;
466468 birthDate ?: string ;
@@ -676,6 +678,7 @@ declare const cc: (codings: (builders.Coding | [string, string, Omit<builders.Co
676678declare const coding : typeof builders . coding ;
677679declare const composite : ( object : any , key : any , value : any ) => void ;
678680declare const concept : ( codings : ( builders . Coding | [ string , string , Omit < builders . Coding , "system" | "code" > ?] ) | ( builders . Coding | [ string , string , Omit < builders . Coding , "system" | "code" > ?] ) [ ] , extra ?: Omit < builders . CodeableConcept , "coding" > ) => builders . CodeableConcept ;
681+ declare const ensureConceptText : ( concept : any ) => void ;
679682declare const ext : ( url : string , value : any , props ?: Omit < builders . Extension , "url" > ) => {
680683 extension : ( {
681684 url : string ;
@@ -1058,6 +1061,7 @@ declare function organization(props: Organization_SzOrganization_Props): any;
10581061 * @public
10591062 * @function
10601063 * @param {object } props - Properties to apply to the resource (includes common and custom properties).
1064+ * @param { } [props._birthDate] - undefined
10611065 * @param {boolean } [props.active] - Whether this patient's record is in active use
10621066 * @param {Address } [props.address] - An address for the individual
10631067 * @param {date } [props.birthDate] - Date of birth: YYYY-MM-DD
@@ -1239,5 +1243,5 @@ declare function serviceRequest(type: "SzReferral", props: ServiceRequest_SzRefe
12391243declare function specimen ( type : "SzLabSpecimen" , props : Specimen_SzLabSpecimen_Props ) : any ;
12401244declare function specimen ( props : Specimen_SzLabSpecimen_Props ) : any ;
12411245
1242- export { addExtension , appointment , c , cc , coding , composite , concept , condition , encounter , episodeOfCare , ext , extendSystemMap , extendValues , extension , findExtension , id , identifier , location , lookupValue , mapSystems , mapValues , medication , medicationDispense , medicationRequest , observation , organization , patient , practitioner , procedure , ref , reference , serviceRequest , setSystemMap , setValues , specimen , value } ;
1246+ export { addExtension , appointment , c , cc , coding , composite , concept , condition , encounter , ensureConceptText , episodeOfCare , ext , extendSystemMap , extendValues , extension , findExtension , id , identifier , location , lookupValue , mapSystems , mapValues , medication , medicationDispense , medicationRequest , observation , organization , patient , practitioner , procedure , ref , reference , serviceRequest , setSystemMap , setValues , specimen , value } ;
12431247
0 commit comments