Skip to content

Commit

Permalink
Merge pull request #499 from lifeomic/FLME-453/procedure-request
Browse files Browse the repository at this point in the history
feat: add operations for fhir procedure request resource
  • Loading branch information
jkdowdle authored Dec 12, 2023
2 parents 3059165 + 4b5b3ee commit f00f41d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/types/fhir-api-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
Practitioner,
Questionnaire,
QuestionnaireResponse,
ProcedureRequest,
} from 'fhir/r3';

// These "better" types strongly type the bundle
Expand All @@ -31,6 +32,7 @@ type FhirResourcesByName = {
QuestionnaireResponse: QuestionnaireResponse;
Appointment: Appointment;
Practitioner: Practitioner;
ProcedureRequest: ProcedureRequest;
};

/**
Expand All @@ -54,6 +56,9 @@ type AdditionalSearchParamsByName = {
Observation: {
patient?: string;
};
ProcedureRequest: {
patient?: string;
};
};

type SearchParamsForResourceType<Name extends keyof FhirResourcesByName> =
Expand Down

0 comments on commit f00f41d

Please sign in to comment.