@smile-cdr/fhirts 1.4.2 → 1.4.3

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,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.4.3
4
+
5
+ ### Updates (R4)
6
+
7
+ * Updated `_short` property to `short` used in `elementDefinition.ts` for R4.
8
+ * Updated `_abstract` property to `abstract` used in `structureDefinition.ts, valueSetContains.ts and IStructureDefinition.ts` for R4.
9
+
3
10
  ## 1.4.2
4
11
 
5
12
  ### Updates (R3)
package/README.md CHANGED
@@ -1,6 +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
+ ![npm](https://img.shields.io/npm/v/@smile-cdr/fhirts) ![workflow](https://github.com/smilecdr/FHIR.ts/actions/workflows/npm-publish.yml/badge.svg) [![NPM](https://img.shields.io/npm/l/@smile-cdr/fhirts)](./LICENSE)
4
4
 
5
5
  ## About
6
6
 
@@ -33,3 +33,5 @@ Checkout the [Getting Started section](GETTINGSTARTED.md) for how to use the lib
33
33
  4. Push changes & create a Pull Request.
34
34
 
35
35
 
36
+
37
+
@@ -98,7 +98,7 @@ export declare class ElementDefinition {
98
98
  /**
99
99
  * A concise description of what this element means (e.g. for use in autogenerated summaries).
100
100
  */
101
- _short?: string;
101
+ short?: string;
102
102
  /**
103
103
  * Provides a complete explanation of the meaning of the data element for human readability. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. (Note: The text you are reading is specified in ElementDefinition.definition).
104
104
  */
@@ -141,7 +141,7 @@ export declare class StructureDefinition {
141
141
  /**
142
142
  * Whether structure this definition describes is abstract or not - that is, whether the structure is not intended to be instantiated. For Resources and Data types, abstract types will never be exchanged between systems.
143
143
  */
144
- _abstract?: boolean;
144
+ abstract?: boolean;
145
145
  /**
146
146
  * Identifies the types of resource or data type elements to which the extension can be applied.
147
147
  */
@@ -36,7 +36,7 @@ export declare class ValueSetContains {
36
36
  /**
37
37
  * If true, this entry is included in the expansion for navigational purposes, and the user cannot select the code directly as a proper value.
38
38
  */
39
- _abstract?: boolean;
39
+ abstract?: boolean;
40
40
  /**
41
41
  * If the concept is inactive in the code system that defines it. Inactive codes are those that are no longer to be used, but are maintained by the code system for understanding legacy data. It might not be known or specified whether an concept is inactive (and it may depend on the context of use).
42
42
  */
@@ -141,7 +141,7 @@ export interface IStructureDefinition {
141
141
  /**
142
142
  * Whether structure this definition describes is abstract or not - that is, whether the structure is not intended to be instantiated. For Resources and Data types, abstract types will never be exchanged between systems.
143
143
  */
144
- _abstract?: boolean;
144
+ abstract?: boolean;
145
145
  /**
146
146
  * Identifies the types of resource or data type elements to which the extension can be applied.
147
147
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smile-cdr/fhirts",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Fhir ts/js library for frontend apps",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -100,7 +100,7 @@ export class ElementDefinition {
100
100
  /**
101
101
  * A concise description of what this element means (e.g. for use in autogenerated summaries).
102
102
  */
103
- _short?: string;
103
+ short?: string;
104
104
  /**
105
105
  * Provides a complete explanation of the meaning of the data element for human readability. For the case of elements derived from existing elements (e.g. constraints), the definition SHALL be consistent with the base definition, but convey the meaning of the element in the particular context of use of the resource. (Note: The text you are reading is specified in ElementDefinition.definition).
106
106
  */
@@ -144,7 +144,7 @@ export class StructureDefinition {
144
144
  /**
145
145
  * Whether structure this definition describes is abstract or not - that is, whether the structure is not intended to be instantiated. For Resources and Data types, abstract types will never be exchanged between systems.
146
146
  */
147
- _abstract?: boolean;
147
+ abstract?: boolean;
148
148
  /**
149
149
  * Identifies the types of resource or data type elements to which the extension can be applied.
150
150
  */
@@ -38,7 +38,7 @@ export class ValueSetContains {
38
38
  /**
39
39
  * If true, this entry is included in the expansion for navigational purposes, and the user cannot select the code directly as a proper value.
40
40
  */
41
- _abstract?: boolean;
41
+ abstract?: boolean;
42
42
  /**
43
43
  * If the concept is inactive in the code system that defines it. Inactive codes are those that are no longer to be used, but are maintained by the code system for understanding legacy data. It might not be known or specified whether an concept is inactive (and it may depend on the context of use).
44
44
  */
@@ -144,7 +144,7 @@ export interface IStructureDefinition {
144
144
  /**
145
145
  * Whether structure this definition describes is abstract or not - that is, whether the structure is not intended to be instantiated. For Resources and Data types, abstract types will never be exchanged between systems.
146
146
  */
147
- _abstract?: boolean;
147
+ abstract?: boolean;
148
148
  /**
149
149
  * Identifies the types of resource or data type elements to which the extension can be applied.
150
150
  */