@smile-cdr/fhirts 1.2.8 → 1.2.9

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/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # FHIR TypeScript / JavaScript Library For Front End Applications
2
2
 
3
+ ![npm](https://img.shields.io/npm/v/@smile-cdr/fhirts) ![workflow](https://github.com/smilecdr/FHIR.ts/actions/workflows/npm-publish.yml/badge.svg)
3
4
 
4
5
  ## About
5
6
 
package/dist/FHIR-R3.d.ts CHANGED
@@ -337,7 +337,7 @@ export declare class SampledData extends FHIRElement {
337
337
  }
338
338
  export declare class Restriction extends BackboneElement {
339
339
  repetitions: number;
340
- preiod: Period;
340
+ period: Period;
341
341
  recipient: Reference[];
342
342
  }
343
343
  export declare class AvailableTime extends BackboneElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smile-cdr/fhirts",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
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
@@ -465,7 +465,7 @@ export class SampledData extends FHIRElement {
465
465
  }
466
466
  export class Restriction extends BackboneElement {
467
467
  repetitions: number;
468
- preiod: Period;
468
+ period: Period;
469
469
  recipient: Reference[];
470
470
  }
471
471