@smile-cdr/fhirts 2.0.6 → 2.0.7
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
|
@@ -11,10 +11,13 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { BundleEntry } from './bundleEntry';
|
|
13
13
|
import { BundleLink } from './bundleLink';
|
|
14
|
+
import { Code } from './code';
|
|
14
15
|
import { Identifier } from './identifier';
|
|
15
16
|
import { Instant } from './instant';
|
|
17
|
+
import { Meta } from './meta';
|
|
16
18
|
import { Signature } from './signature';
|
|
17
19
|
import { UnsignedInt } from './unsignedInt';
|
|
20
|
+
import { Uri } from './uri';
|
|
18
21
|
/**
|
|
19
22
|
* A container for a collection of resources.
|
|
20
23
|
*/
|
|
@@ -23,6 +26,18 @@ export declare class Bundle {
|
|
|
23
26
|
* The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
|
|
24
27
|
*/
|
|
25
28
|
id?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
|
|
31
|
+
*/
|
|
32
|
+
meta?: Meta;
|
|
33
|
+
/**
|
|
34
|
+
* A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
|
|
35
|
+
*/
|
|
36
|
+
implicitRules?: Uri;
|
|
37
|
+
/**
|
|
38
|
+
* The base language in which the resource is written.
|
|
39
|
+
*/
|
|
40
|
+
language?: Code;
|
|
26
41
|
/**
|
|
27
42
|
* This is a Bundle resource
|
|
28
43
|
*/
|
|
@@ -34,7 +49,7 @@ export declare class Bundle {
|
|
|
34
49
|
/**
|
|
35
50
|
* Indicates the purpose of this bundle - how it is intended to be used.
|
|
36
51
|
*/
|
|
37
|
-
type
|
|
52
|
+
type: Bundle.TypeEnum;
|
|
38
53
|
/**
|
|
39
54
|
* The date/time that the bundle was assembled - i.e. when the resources were placed in the bundle.
|
|
40
55
|
*/
|
package/package.json
CHANGED
|
@@ -11,10 +11,13 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { BundleEntry } from './bundleEntry';
|
|
13
13
|
import { BundleLink } from './bundleLink';
|
|
14
|
+
import { Code } from './code';
|
|
14
15
|
import { Identifier } from './identifier';
|
|
15
16
|
import { Instant } from './instant';
|
|
17
|
+
import { Meta } from './meta';
|
|
16
18
|
import { Signature } from './signature';
|
|
17
19
|
import { UnsignedInt } from './unsignedInt';
|
|
20
|
+
import { Uri } from './uri';
|
|
18
21
|
|
|
19
22
|
|
|
20
23
|
/**
|
|
@@ -25,6 +28,18 @@ export class Bundle {
|
|
|
25
28
|
* The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.
|
|
26
29
|
*/
|
|
27
30
|
id?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
|
|
33
|
+
*/
|
|
34
|
+
meta?: Meta;
|
|
35
|
+
/**
|
|
36
|
+
* A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.
|
|
37
|
+
*/
|
|
38
|
+
implicitRules?: Uri;
|
|
39
|
+
/**
|
|
40
|
+
* The base language in which the resource is written.
|
|
41
|
+
*/
|
|
42
|
+
language?: Code;
|
|
28
43
|
/**
|
|
29
44
|
* This is a Bundle resource
|
|
30
45
|
*/
|
|
@@ -36,7 +51,7 @@ export class Bundle {
|
|
|
36
51
|
/**
|
|
37
52
|
* Indicates the purpose of this bundle - how it is intended to be used.
|
|
38
53
|
*/
|
|
39
|
-
type
|
|
54
|
+
type: Bundle.TypeEnum;
|
|
40
55
|
/**
|
|
41
56
|
* The date/time that the bundle was assembled - i.e. when the resources were placed in the bundle.
|
|
42
57
|
*/
|