Skip to content

Commit

Permalink
fix changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
josephjclark committed Sep 11, 2024
1 parent 8b2effc commit cff65e6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .changeset/wicked-carrots-whisper.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,15 @@

The `createEncounter` and `createPatient` functions have been removed from the
OpenMRS adaptor. Use the `create` function with the appropriate resource type.

To create a new encounter, you can use the following code:

```js
create('encounter', $.encounter);
```

To create a new patient, you can use the following code:

```js
create('patient', $.patient);
```

0 comments on commit cff65e6

Please sign in to comment.