@smile-cdr/fhirts 1.4.3 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
1
  # Changelog
2
+ ## 1.4.4
3
+
4
+ ### Updates (R3)
5
+
6
+ * Fixed typo in `CommunicationRequest.recipient` (was previously `CommunicationRequest.recipent`)
2
7
 
3
8
  ## 1.4.3
4
9
 
package/dist/FHIR-R3.d.ts CHANGED
@@ -885,7 +885,7 @@ export declare class CommunicationRequest extends Resource {
885
885
  priority: string;
886
886
  medium: CodeableConcept[];
887
887
  subject: Reference;
888
- recipent: Reference[];
888
+ recipient: Reference[];
889
889
  topic: Reference[];
890
890
  context: Reference[];
891
891
  payload: Payload[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smile-cdr/fhirts",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "Fhir ts/js library for frontend apps",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
package/src/FHIR-R3.ts CHANGED
@@ -1053,7 +1053,7 @@ export class CommunicationRequest extends Resource {
1053
1053
  priority: string;
1054
1054
  medium: CodeableConcept[];
1055
1055
  subject: Reference;
1056
- recipent: Reference[];
1056
+ recipient: Reference[];
1057
1057
  topic: Reference[];
1058
1058
  context: Reference[];
1059
1059
  payload: Payload[];