@medplum/ccda 4.0.1 → 4.0.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/dist/cjs/index.cjs +2 -2
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +18 -0
- package/dist/esm/index.d.ts +18 -0
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +5 -5
package/dist/cjs/index.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ export declare interface CcdaEvent {
|
|
|
183
183
|
export declare interface CcdaId {
|
|
184
184
|
'@_root'?: string;
|
|
185
185
|
'@_extension'?: string;
|
|
186
|
+
'@_assigningAuthorityName'?: string;
|
|
186
187
|
}
|
|
187
188
|
|
|
188
189
|
export declare interface CcdaInnerComponent {
|
|
@@ -286,6 +287,8 @@ export declare interface CcdaParticipantRole {
|
|
|
286
287
|
addr?: CcdaAddr[];
|
|
287
288
|
telecom?: CcdaTelecom[];
|
|
288
289
|
playingEntity?: CcdaPlayingEntity;
|
|
290
|
+
playingDevice?: CcdaPlayingDevice;
|
|
291
|
+
scopingEntity?: CcdaScopingEntity;
|
|
289
292
|
}
|
|
290
293
|
|
|
291
294
|
export declare interface CcdaPatient {
|
|
@@ -316,6 +319,13 @@ export declare interface CcdaPeriod {
|
|
|
316
319
|
'@_unit'?: 's' | 'min' | 'h' | 'd' | 'wk' | 'mo' | 'a';
|
|
317
320
|
}
|
|
318
321
|
|
|
322
|
+
export declare interface CcdaPlayingDevice {
|
|
323
|
+
'@_classCode'?: string;
|
|
324
|
+
'@_typeCode'?: string;
|
|
325
|
+
code?: CcdaCode;
|
|
326
|
+
name?: string[];
|
|
327
|
+
}
|
|
328
|
+
|
|
319
329
|
export declare interface CcdaPlayingEntity {
|
|
320
330
|
'@_classCode'?: string;
|
|
321
331
|
'@_typeCode'?: string;
|
|
@@ -375,6 +385,14 @@ export declare interface CcdaRepresentedOrganization {
|
|
|
375
385
|
addr?: CcdaAddr[];
|
|
376
386
|
}
|
|
377
387
|
|
|
388
|
+
export declare interface CcdaScopingEntity {
|
|
389
|
+
'@_classCode'?: string;
|
|
390
|
+
'@_typeCode'?: string;
|
|
391
|
+
id?: CcdaId[];
|
|
392
|
+
code?: CcdaCode;
|
|
393
|
+
name?: string[];
|
|
394
|
+
}
|
|
395
|
+
|
|
378
396
|
export declare interface CcdaSection {
|
|
379
397
|
'@_nullFlavor'?: 'NI';
|
|
380
398
|
templateId: CcdaTemplateId[];
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -183,6 +183,7 @@ export declare interface CcdaEvent {
|
|
|
183
183
|
export declare interface CcdaId {
|
|
184
184
|
'@_root'?: string;
|
|
185
185
|
'@_extension'?: string;
|
|
186
|
+
'@_assigningAuthorityName'?: string;
|
|
186
187
|
}
|
|
187
188
|
|
|
188
189
|
export declare interface CcdaInnerComponent {
|
|
@@ -286,6 +287,8 @@ export declare interface CcdaParticipantRole {
|
|
|
286
287
|
addr?: CcdaAddr[];
|
|
287
288
|
telecom?: CcdaTelecom[];
|
|
288
289
|
playingEntity?: CcdaPlayingEntity;
|
|
290
|
+
playingDevice?: CcdaPlayingDevice;
|
|
291
|
+
scopingEntity?: CcdaScopingEntity;
|
|
289
292
|
}
|
|
290
293
|
|
|
291
294
|
export declare interface CcdaPatient {
|
|
@@ -316,6 +319,13 @@ export declare interface CcdaPeriod {
|
|
|
316
319
|
'@_unit'?: 's' | 'min' | 'h' | 'd' | 'wk' | 'mo' | 'a';
|
|
317
320
|
}
|
|
318
321
|
|
|
322
|
+
export declare interface CcdaPlayingDevice {
|
|
323
|
+
'@_classCode'?: string;
|
|
324
|
+
'@_typeCode'?: string;
|
|
325
|
+
code?: CcdaCode;
|
|
326
|
+
name?: string[];
|
|
327
|
+
}
|
|
328
|
+
|
|
319
329
|
export declare interface CcdaPlayingEntity {
|
|
320
330
|
'@_classCode'?: string;
|
|
321
331
|
'@_typeCode'?: string;
|
|
@@ -375,6 +385,14 @@ export declare interface CcdaRepresentedOrganization {
|
|
|
375
385
|
addr?: CcdaAddr[];
|
|
376
386
|
}
|
|
377
387
|
|
|
388
|
+
export declare interface CcdaScopingEntity {
|
|
389
|
+
'@_classCode'?: string;
|
|
390
|
+
'@_typeCode'?: string;
|
|
391
|
+
id?: CcdaId[];
|
|
392
|
+
code?: CcdaCode;
|
|
393
|
+
name?: string[];
|
|
394
|
+
}
|
|
395
|
+
|
|
378
396
|
export declare interface CcdaSection {
|
|
379
397
|
'@_nullFlavor'?: 'NI';
|
|
380
398
|
templateId: CcdaTemplateId[];
|