Skip to content

Commit

Permalink
Merge pull request #121 from nginformatica/fix/migrator-medical-record
Browse files Browse the repository at this point in the history
fix: exam list
  • Loading branch information
danielamarioti authored Sep 23, 2024
2 parents 3f63505 + 9836ee4 commit 3e6abf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quirons-broker",
"version": "0.0.1-alpha.133",
"version": "0.0.1-alpha.134",
"description": "A small library to expose the broker types",
"typings": "index.d.ts",
"types": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/ttalk/schemas/MedicalConsultation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const MedicalConsultationInfo = t.intersection([
/** Observações */
observation: t.string,
/** Lista de Exames */
examList: t.array(ExamInfo),
examList: t.union([t.array(ExamInfo), t.null]),
/** Chave única do registro */
erpId: t.string,
/** Credenciado */
Expand Down

0 comments on commit 3e6abf5

Please sign in to comment.