gdc-common-utils-ts 2.7.5 → 2.7.6
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/constants/Schemas.d.ts +2 -0
- package/dist/constants/Schemas.js +2 -0
- package/dist/constants/composition.d.ts +13 -0
- package/dist/constants/composition.js +15 -0
- package/dist/constants/data-capabilities.d.ts +7 -7
- package/dist/constants/didcomm.d.ts +4 -0
- package/dist/constants/didcomm.js +4 -0
- package/dist/constants/fhir-resource-types.d.ts +55 -0
- package/dist/constants/fhir-resource-types.js +14 -0
- package/dist/constants/gateway-response.d.ts +100 -0
- package/dist/constants/gateway-response.js +104 -0
- package/dist/constants/http.d.ts +14 -0
- package/dist/constants/http.js +14 -0
- package/dist/constants/index.d.ts +3 -0
- package/dist/constants/index.js +3 -0
- package/dist/constants/jsonld.d.ts +5 -0
- package/dist/constants/jsonld.js +5 -0
- package/dist/constants/schemaorg.d.ts +5 -0
- package/dist/constants/schemaorg.js +5 -0
- package/dist/constants/urn.d.ts +2 -0
- package/dist/constants/urn.js +2 -0
- package/dist/examples/index.d.ts +1 -0
- package/dist/examples/index.js +1 -0
- package/dist/examples/researcher-working-selection.d.ts +68 -0
- package/dist/examples/researcher-working-selection.js +59 -0
- package/dist/examples/shared.d.ts +1 -0
- package/dist/examples/shared.js +1 -0
- package/dist/models/bundle-editor-types.d.ts +3 -0
- package/dist/models/bundle-editor-types.js +3 -0
- package/dist/models/interoperable-claims/index.d.ts +1 -0
- package/dist/models/interoperable-claims/index.js +1 -0
- package/dist/models/interoperable-claims/research-subject-claims.d.ts +4 -0
- package/dist/models/interoperable-claims/research-subject-claims.js +4 -0
- package/package.json +1 -1
|
@@ -37,9 +37,12 @@ export const BundleEditableResourceTypes = Object.freeze({
|
|
|
37
37
|
});
|
|
38
38
|
export const BundleTypes = Object.freeze({
|
|
39
39
|
batch: 'batch',
|
|
40
|
+
batchResponse: 'batch-response',
|
|
40
41
|
document: 'document',
|
|
41
42
|
collection: 'collection',
|
|
43
|
+
searchset: 'searchset',
|
|
42
44
|
transaction: 'transaction',
|
|
45
|
+
transactionResponse: 'transaction-response',
|
|
43
46
|
});
|
|
44
47
|
/** Canonical validation issues returned by `BundleEditor.validateDocumentAuthoring()`. */
|
|
45
48
|
export const BundleEditorValidationIssues = Object.freeze({
|
|
@@ -20,6 +20,7 @@ export * from './appointment-claims';
|
|
|
20
20
|
export * from './appointment-response-claims';
|
|
21
21
|
export * from './encounter-claims';
|
|
22
22
|
export * from './related-person-claims';
|
|
23
|
+
export * from './research-subject-claims';
|
|
23
24
|
export * from './coverage-claims';
|
|
24
25
|
export * from './clinical-impression-claims';
|
|
25
26
|
export * from './task-claims';
|
|
@@ -22,6 +22,7 @@ export * from './appointment-claims.js';
|
|
|
22
22
|
export * from './appointment-response-claims.js';
|
|
23
23
|
export * from './encounter-claims.js';
|
|
24
24
|
export * from './related-person-claims.js';
|
|
25
|
+
export * from './research-subject-claims.js';
|
|
25
26
|
export * from './coverage-claims.js';
|
|
26
27
|
export * from './clinical-impression-claims.js';
|
|
27
28
|
export * from './task-claims.js';
|