@smile-cdr/fhirts 1.4.0 → 1.4.1

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.
@@ -7,6 +7,9 @@ on:
7
7
  push:
8
8
  branches:
9
9
  - master
10
+ paths-ignore:
11
+ - '**.md'
12
+ - '**.yml'
10
13
 
11
14
  jobs:
12
15
  release:
package/CHANGELOG.md CHANGED
@@ -1,7 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 1.4.0
3
+ ## 1.4.1
4
+
5
+ ### Updates (R3)
4
6
 
7
+ * Added support for nested `QuestionnaireResponseItem` in `QuestionnaireResponse.item` and `QuestionnaireResponse.item.answer`.
8
+
9
+ ## 1.4.0
10
+ ---
5
11
  ### Updates (R3)
6
12
 
7
13
  * The `Participant` class has been re-tooled to only be used in the `Appointment` class
@@ -160,4 +166,4 @@ This release introduces a breaking change for Encounter.If you're using `Encount
160
166
 
161
167
  ### Updates (R4)
162
168
 
163
- * All classes previously created have been replaced with classes generated from swagger
169
+ * All classes previously created have been replaced with classes generated from swagger
package/dist/FHIR-R3.d.ts CHANGED
@@ -236,6 +236,7 @@ export declare class Answer extends BackboneElement {
236
236
  valueQuantity: Quantity;
237
237
  valueBoolean: boolean;
238
238
  valueReference: Reference;
239
+ item: QuestionnaireResponseItem[];
239
240
  }
240
241
  export declare class FHIROption extends BackboneElement {
241
242
  value: any;
@@ -424,6 +425,7 @@ export declare class QuestionnaireResponseItem extends BackboneElement {
424
425
  definition: string;
425
426
  text: string;
426
427
  answer: Answer[];
428
+ item: QuestionnaireResponseItem[];
427
429
  }
428
430
  export declare class Item extends BackboneElement {
429
431
  linkId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smile-cdr/fhirts",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Fhir ts/js library for frontend apps",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,6 @@
10
10
  "build": "tsc"
11
11
  },
12
12
  "devDependencies": {
13
- "@changesets/cli": "^2.21.0",
14
13
  "typescript": "^4.0.2"
15
14
  }
16
15
  }
package/src/FHIR-R3.ts CHANGED
@@ -339,6 +339,7 @@ export class Answer extends BackboneElement {
339
339
  valueQuantity: Quantity;
340
340
  valueBoolean: boolean;
341
341
  valueReference: Reference;
342
+ item: QuestionnaireResponseItem[];
342
343
  }
343
344
 
344
345
 
@@ -566,6 +567,7 @@ export class QuestionnaireResponseItem extends BackboneElement {
566
567
  definition: string;
567
568
  text: string;
568
569
  answer: Answer[];
570
+ item: QuestionnaireResponseItem[];
569
571
  }
570
572
 
571
573
  export class Item extends BackboneElement {
@@ -1,8 +0,0 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
- with multi-package repos, or single-package repos to help you version and publish your code. You can
5
- find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
-
7
- We have a quick list of common questions to get you started engaging with this project in
8
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -1,8 +0,0 @@
1
- ---
2
- "@smile-cdr/fhirts": patch
3
- ---
4
- # 1.3.1
5
- ---
6
- ### Updates (R3)
7
-
8
- - Added class for `ClinicalImpression` resource.
@@ -1,11 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@1.7.0/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "restricted",
8
- "baseBranch": "master",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }