Skip to content

Commit

Permalink
Merge pull request #132 from nginformatica/fix/sst-integrate-types
Browse files Browse the repository at this point in the history
Fix/sst integrate types
  • Loading branch information
danielamarioti authored Nov 26, 2024
2 parents 262480d + 60e6d59 commit 8437415
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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.143",
"version": "0.0.1-alpha.144",
"description": "A small library to expose the broker types",
"typings": "index.d.ts",
"types": "index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions src/ttalk/schemas/SickNote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export const SickNoteInfo = t.intersection([
/** Nome do Médico */
doctorName: t.string,
/** Código do CRM */
classEntityRegistrationCode: t.string,
classEntityRegistrationCode: t.union([t.string, t.null]),
/** Estado do CRM */
classEntityState: t.string,
classEntityState: t.union([t.string, t.null]),
/** Código CID */
internationalDiseaseClassification: t.string,
internationalDiseaseClassification: t.union([t.string, t.null]),
/** Acidente */
accident: t.string,
/** Observações */
Expand Down

0 comments on commit 8437415

Please sign in to comment.