@smile-cdr/fhirts 1.2.10 → 1.2.11

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.2.11
4
+ ---
5
+
6
+ ### Updates (R3)
7
+
8
+ * Fixed an issue where BundleResponse.location was of type `number` instead of type `string`
9
+
3
10
  ## 1.2.10
4
11
  ---
5
12
 
package/dist/FHIR-R3.d.ts CHANGED
@@ -378,7 +378,7 @@ export declare class BundleRequest extends BackboneElement {
378
378
  }
379
379
  export declare class BundleResponse extends BackboneElement {
380
380
  status: string;
381
- location: number;
381
+ location: string;
382
382
  etag: string;
383
383
  lastModified: number;
384
384
  outcome: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smile-cdr/fhirts",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
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
@@ -513,7 +513,7 @@ export class BundleRequest extends BackboneElement {
513
513
 
514
514
  export class BundleResponse extends BackboneElement {
515
515
  status: string;
516
- location: number;
516
+ location: string;
517
517
  etag: string;
518
518
  lastModified: number;
519
519
  outcome: number;