gdc-common-utils-ts 2.1.0 → 2.3.0
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/README.md +22 -2
- package/dist/claims/claims-helpers-allergy-intolerance.d.ts +8 -0
- package/dist/claims/claims-helpers-allergy-intolerance.js +30 -12
- package/dist/claims/claims-helpers-condition.d.ts +8 -0
- package/dist/claims/claims-helpers-condition.js +30 -12
- package/dist/claims/claims-helpers-consent.d.ts +4 -0
- package/dist/claims/claims-helpers-consent.js +15 -1
- package/dist/claims/claims-helpers-diagnostic-report.d.ts +4 -0
- package/dist/claims/claims-helpers-diagnostic-report.js +17 -2
- package/dist/claims/claims-helpers-medication-statement.d.ts +10 -2
- package/dist/claims/claims-helpers-medication-statement.js +32 -14
- package/dist/constants/data-collections.js +0 -1
- package/dist/constants/didcomm.d.ts +22 -0
- package/dist/constants/didcomm.js +22 -0
- package/dist/constants/fhir-resource-types.d.ts +16 -0
- package/dist/constants/fhir-resource-types.js +7 -0
- package/dist/constants/healthcare.d.ts +348 -193
- package/dist/constants/healthcare.js +99 -37
- package/dist/constants/hl7-roles.d.ts +38 -4
- package/dist/constants/hl7-roles.js +92 -4
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/lifecycle.d.ts +2 -0
- package/dist/constants/lifecycle.js +2 -0
- package/dist/constants/verifiable-credentials.d.ts +9 -0
- package/dist/constants/verifiable-credentials.js +9 -0
- package/dist/examples/bundle-didcomm-payload.js +4 -2
- package/dist/examples/communication-attached-bundle-session.js +27 -27
- package/dist/examples/communication-didcomm-payload.d.ts +8 -4
- package/dist/examples/communication-didcomm-payload.js +17 -11
- package/dist/examples/consent-access.js +2 -1
- package/dist/examples/employee.d.ts +21 -0
- package/dist/examples/employee.js +21 -0
- package/dist/examples/individual-controller.d.ts +27 -0
- package/dist/examples/individual-controller.js +28 -1
- package/dist/examples/inter-tenant-access-contract.js +3 -2
- package/dist/examples/ips-bundle.js +17 -16
- package/dist/examples/lifecycle.js +13 -11
- package/dist/examples/profile-manager-mem.js +2 -1
- package/dist/examples/related-person.d.ts +14 -0
- package/dist/examples/related-person.js +18 -4
- package/dist/examples/shared.d.ts +12 -3
- package/dist/examples/shared.js +13 -4
- package/dist/examples/vital-signs.js +1 -1
- package/dist/examples/wallet-mem.js +4 -2
- package/dist/i18n/role-codes.i18n.d.ts +9 -1
- package/dist/i18n/role-codes.i18n.js +12 -1
- package/dist/models/authority-resolution.d.ts +56 -0
- package/dist/models/authority-resolution.js +2 -0
- package/dist/models/bundle-editor-types.d.ts +89 -0
- package/dist/models/bundle-editor-types.js +45 -0
- package/dist/models/bundle.d.ts +5 -0
- package/dist/models/communication-attached-bundle-session.d.ts +6 -4
- package/dist/models/communication-attached-bundle-session.js +6 -4
- package/dist/models/confidential-storage.d.ts +2 -1
- package/dist/models/consent-rule.d.ts +11 -1
- package/dist/models/consent-rule.js +9 -1
- package/dist/models/device-license.d.ts +20 -0
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/dist/models/individual-onboarding.d.ts +18 -0
- package/dist/models/interoperable-claims/allergy-intolerance-claims.d.ts +12 -1
- package/dist/models/interoperable-claims/allergy-intolerance-claims.js +12 -1
- package/dist/models/interoperable-claims/condition-claims.d.ts +12 -1
- package/dist/models/interoperable-claims/condition-claims.js +12 -1
- package/dist/models/interoperable-claims/diagnostic-report-claims.d.ts +13 -2
- package/dist/models/interoperable-claims/diagnostic-report-claims.js +12 -1
- package/dist/models/interoperable-claims/document-reference-claims.d.ts +1 -0
- package/dist/models/interoperable-claims/document-reference-claims.js +3 -0
- package/dist/models/interoperable-claims/medication-statement-claims.d.ts +17 -0
- package/dist/models/interoperable-claims/medication-statement-claims.js +17 -0
- package/dist/models/interoperable-claims/related-person-claims.d.ts +13 -0
- package/dist/models/interoperable-claims/related-person-claims.js +16 -0
- package/dist/utils/allergy-intolerance-entry-editor.d.ts +51 -0
- package/dist/utils/allergy-intolerance-entry-editor.js +55 -0
- package/dist/utils/authority-resolution.d.ts +37 -0
- package/dist/utils/authority-resolution.js +112 -0
- package/dist/utils/backend-message-manager-mem.d.ts +11 -0
- package/dist/utils/backend-message-manager-mem.js +11 -0
- package/dist/utils/bundle-didcomm-payload.js +3 -2
- package/dist/utils/bundle-document-builder.d.ts +36 -0
- package/dist/utils/bundle-document-builder.js +310 -14
- package/dist/utils/bundle-editor-core.d.ts +181 -0
- package/dist/utils/bundle-editor-core.js +467 -0
- package/dist/utils/bundle-editor-helpers.d.ts +53 -0
- package/dist/utils/bundle-editor-helpers.js +146 -0
- package/dist/utils/bundle-editor-registry.d.ts +6 -0
- package/dist/utils/bundle-editor-registry.js +14 -0
- package/dist/utils/bundle-editor.d.ts +21 -722
- package/dist/utils/bundle-editor.js +21 -1601
- package/dist/utils/bundle-entry-editor.d.ts +96 -0
- package/dist/utils/bundle-entry-editor.js +305 -0
- package/dist/utils/bundle-query.d.ts +1 -0
- package/dist/utils/bundle-query.js +12 -3
- package/dist/utils/bundle-reader.d.ts +48 -0
- package/dist/utils/bundle-reader.js +175 -1
- package/dist/utils/care-plan-entry-editor.d.ts +43 -0
- package/dist/utils/care-plan-entry-editor.js +47 -0
- package/dist/utils/client-assertion.d.ts +38 -0
- package/dist/utils/client-assertion.js +113 -0
- package/dist/utils/clinical-impression-entry-editor.d.ts +43 -0
- package/dist/utils/clinical-impression-entry-editor.js +47 -0
- package/dist/utils/clinical-resource-entry-editor.d.ts +123 -0
- package/dist/utils/clinical-resource-entry-editor.js +296 -0
- package/dist/utils/clinical-resource-view.d.ts +16 -0
- package/dist/utils/clinical-resource-view.js +267 -33
- package/dist/utils/communication-attached-bundle-session-helpers.js +8 -6
- package/dist/utils/communication-attached-bundle-session.d.ts +29 -3
- package/dist/utils/communication-attached-bundle-session.js +62 -3
- package/dist/utils/communication-consent-access-editor.d.ts +8 -4
- package/dist/utils/communication-consent-access-editor.js +8 -4
- package/dist/utils/communication-didcomm-payload.d.ts +5 -0
- package/dist/utils/communication-didcomm-payload.js +28 -18
- package/dist/utils/communication-document-reference.d.ts +23 -0
- package/dist/utils/communication-document-reference.js +89 -0
- package/dist/utils/communication-editor.d.ts +53 -0
- package/dist/utils/communication-editor.js +97 -0
- package/dist/utils/condition-entry-editor.d.ts +30 -0
- package/dist/utils/condition-entry-editor.js +34 -0
- package/dist/utils/consent-claim-helpers.d.ts +4 -0
- package/dist/utils/consent-claim-helpers.js +15 -1
- package/dist/utils/consent-duplicate-rules.js +1 -1
- package/dist/utils/coverage-entry-editor.d.ts +51 -0
- package/dist/utils/coverage-entry-editor.js +55 -0
- package/dist/utils/device-entry-editor.d.ts +59 -0
- package/dist/utils/device-entry-editor.js +63 -0
- package/dist/utils/device-use-statement-entry-editor.d.ts +43 -0
- package/dist/utils/device-use-statement-entry-editor.js +47 -0
- package/dist/utils/diagnostic-report-entry-editor.d.ts +74 -0
- package/dist/utils/diagnostic-report-entry-editor.js +136 -0
- package/dist/utils/did.d.ts +8 -0
- package/dist/utils/did.js +22 -0
- package/dist/utils/document-reference-entry-editor.d.ts +62 -0
- package/dist/utils/document-reference-entry-editor.js +66 -0
- package/dist/utils/employee-entry-editor.d.ts +36 -0
- package/dist/utils/employee-entry-editor.js +88 -0
- package/dist/utils/employee.d.ts +1 -0
- package/dist/utils/employee.js +2 -1
- package/dist/utils/encounter-entry-editor.d.ts +51 -0
- package/dist/utils/encounter-entry-editor.js +55 -0
- package/dist/utils/flag-entry-editor.d.ts +47 -0
- package/dist/utils/flag-entry-editor.js +51 -0
- package/dist/utils/immunization-entry-editor.d.ts +87 -0
- package/dist/utils/immunization-entry-editor.js +169 -0
- package/dist/utils/index.d.ts +7 -0
- package/dist/utils/index.js +7 -0
- package/dist/utils/individual-onboarding-acceptance-credential.d.ts +35 -0
- package/dist/utils/individual-onboarding-acceptance-credential.js +55 -0
- package/dist/utils/individual-smart.d.ts +59 -0
- package/dist/utils/individual-smart.js +135 -0
- package/dist/utils/license-list-search.d.ts +5 -0
- package/dist/utils/license-list-search.js +9 -0
- package/dist/utils/license.d.ts +45 -1
- package/dist/utils/license.js +86 -2
- package/dist/utils/medication-statement-entry-editor.d.ts +90 -0
- package/dist/utils/medication-statement-entry-editor.js +94 -0
- package/dist/utils/observation-component-entry-editor.d.ts +57 -0
- package/dist/utils/observation-component-entry-editor.js +105 -0
- package/dist/utils/observation-entry-editor.d.ts +29 -0
- package/dist/utils/observation-entry-editor.js +68 -0
- package/dist/utils/procedure-entry-editor.d.ts +71 -0
- package/dist/utils/procedure-entry-editor.js +75 -0
- package/dist/utils/professional-smart.d.ts +87 -0
- package/dist/utils/professional-smart.js +118 -4
- package/dist/utils/related-person-list.d.ts +4 -0
- package/dist/utils/related-person-list.js +26 -6
- package/dist/utils/same-as.d.ts +40 -0
- package/dist/utils/same-as.js +72 -0
- package/dist/utils/unified-health-id.d.ts +51 -0
- package/dist/utils/unified-health-id.js +92 -0
- package/dist/utils/vital-sign-day-batch.d.ts +25 -0
- package/dist/utils/vital-sign-day-batch.js +115 -0
- package/dist/utils/vital-sign-entry-editor.d.ts +61 -0
- package/dist/utils/vital-sign-entry-editor.js +152 -0
- package/package.json +2 -1
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* File discipline note:
|
|
3
|
+
* - Read `ARCHITECTURE.md` and `CONTRIBUTING.md` before changing this module.
|
|
4
|
+
* - Keep exactly one exported class per file.
|
|
5
|
+
* - Keep this file focused on one typed editor surface.
|
|
6
|
+
* - Move shared helpers to reusable helper/base modules instead of duplicating logic here.
|
|
7
|
+
*/
|
|
8
|
+
import { ClaimsPersonSchemaorg } from '../constants/schemaorg.js';
|
|
9
|
+
import { BundleEditableResourceTypes } from '../models/bundle-editor-types.js';
|
|
10
|
+
import { createCanonicalIdentifierUrn, normalizeOptionalIdentifier } from './bundle-editor-helpers.js';
|
|
11
|
+
import { BundleEntryEditor } from './bundle-entry-editor.js';
|
|
12
|
+
import { registerBundleEntryEditor } from './bundle-editor-registry.js';
|
|
13
|
+
/**
|
|
14
|
+
* Typed editor for one staged Employee resource entry.
|
|
15
|
+
*
|
|
16
|
+
* Use this when a caller needs to stage one employee row with claims-first
|
|
17
|
+
* accessors in a bundle authoring flow.
|
|
18
|
+
*/
|
|
19
|
+
export class EmployeeEntryEditor extends BundleEntryEditor {
|
|
20
|
+
/**
|
|
21
|
+
* Writes the canonical employee identifier.
|
|
22
|
+
*
|
|
23
|
+
* The identifier is synchronized across:
|
|
24
|
+
* - `entry.fullUrl`
|
|
25
|
+
* - `resource.id`
|
|
26
|
+
* - `org.schema.Person.identifier`
|
|
27
|
+
*/
|
|
28
|
+
setIdentifier(identifier) {
|
|
29
|
+
const normalized = normalizeOptionalIdentifier(identifier);
|
|
30
|
+
if (!normalized) {
|
|
31
|
+
this.removeClaim(ClaimsPersonSchemaorg.identifier);
|
|
32
|
+
this.setResourceId(undefined);
|
|
33
|
+
this.setFullUrl(undefined);
|
|
34
|
+
return this;
|
|
35
|
+
}
|
|
36
|
+
this.setClaim(ClaimsPersonSchemaorg.identifier, normalized);
|
|
37
|
+
this.setResourceId(normalized);
|
|
38
|
+
this.setFullUrl(normalized);
|
|
39
|
+
return this;
|
|
40
|
+
}
|
|
41
|
+
/** Reads the canonical employee identifier from claims, resource id, or fullUrl. */
|
|
42
|
+
getIdentifier() {
|
|
43
|
+
return normalizeOptionalIdentifier(this.getClaim(ClaimsPersonSchemaorg.identifier)
|
|
44
|
+
|| this.getResourceId()
|
|
45
|
+
|| this.getFullUrl());
|
|
46
|
+
}
|
|
47
|
+
/** Ensures the employee entry carries one canonical `urn:uuid:*` identifier. */
|
|
48
|
+
ensureIdentifier() {
|
|
49
|
+
const existing = this.getIdentifier();
|
|
50
|
+
if (existing) {
|
|
51
|
+
return existing;
|
|
52
|
+
}
|
|
53
|
+
const generated = createCanonicalIdentifierUrn();
|
|
54
|
+
this.setIdentifier(generated);
|
|
55
|
+
return generated;
|
|
56
|
+
}
|
|
57
|
+
/** Writes the canonical employee email claim on this entry. */
|
|
58
|
+
setEmail(email) {
|
|
59
|
+
return this.setClaim(ClaimsPersonSchemaorg.email, String(email).trim());
|
|
60
|
+
}
|
|
61
|
+
/** Reads the canonical employee email claim from this entry. */
|
|
62
|
+
getEmail() {
|
|
63
|
+
const email = this.getClaim(ClaimsPersonSchemaorg.email);
|
|
64
|
+
return typeof email === 'string' && email.trim() ? email.trim() : undefined;
|
|
65
|
+
}
|
|
66
|
+
/** Writes the canonical employee occupational role claim on this entry. */
|
|
67
|
+
setRole(role) {
|
|
68
|
+
return this.setClaim(ClaimsPersonSchemaorg.hasOccupationalRoleValue, String(role).trim());
|
|
69
|
+
}
|
|
70
|
+
/** Reads the canonical employee occupational role claim from this entry. */
|
|
71
|
+
getRole() {
|
|
72
|
+
const role = this.getClaim(ClaimsPersonSchemaorg.hasOccupationalRoleValue);
|
|
73
|
+
return typeof role === 'string' && role.trim() ? role.trim() : undefined;
|
|
74
|
+
}
|
|
75
|
+
/** Writes the canonical employee `worksFor` claim on this entry. */
|
|
76
|
+
setWorksFor(worksFor) {
|
|
77
|
+
return this.setClaim(ClaimsPersonSchemaorg.worksFor, String(worksFor).trim());
|
|
78
|
+
}
|
|
79
|
+
/** Writes the canonical employee `memberOf` claim on this entry. */
|
|
80
|
+
setMemberOf(memberOf) {
|
|
81
|
+
return this.setClaim(ClaimsPersonSchemaorg.memberOf, String(memberOf).trim());
|
|
82
|
+
}
|
|
83
|
+
/** Writes the canonical employee organization tax id claim on this entry. */
|
|
84
|
+
setMemberOfOrgTaxId(taxId) {
|
|
85
|
+
return this.setClaim(ClaimsPersonSchemaorg.memberOfOrgTaxId, String(taxId).trim());
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
registerBundleEntryEditor(BundleEditableResourceTypes.employee, EmployeeEntryEditor);
|
package/dist/utils/employee.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export declare const EmployeeResourceTypes: Readonly<{
|
|
|
68
68
|
export declare const EmployeeBatchEntryTypes: Readonly<{
|
|
69
69
|
readonly create: "Employee-create-request-v1.0";
|
|
70
70
|
readonly disable: "Employee-disable-request-v1.0";
|
|
71
|
+
readonly update: "Employee-update-request-v1.0";
|
|
71
72
|
readonly search: "Employee-search-request-v1.0";
|
|
72
73
|
readonly purge: "Employee-purge-request-v1.0";
|
|
73
74
|
}>;
|
package/dist/utils/employee.js
CHANGED
|
@@ -24,6 +24,7 @@ export const EmployeeResourceTypes = Object.freeze({
|
|
|
24
24
|
export const EmployeeBatchEntryTypes = Object.freeze({
|
|
25
25
|
create: 'Employee-create-request-v1.0',
|
|
26
26
|
disable: 'Employee-disable-request-v1.0',
|
|
27
|
+
update: 'Employee-update-request-v1.0',
|
|
27
28
|
search: 'Employee-search-request-v1.0',
|
|
28
29
|
purge: 'Employee-purge-request-v1.0',
|
|
29
30
|
});
|
|
@@ -57,7 +58,7 @@ function inferEmployeeEntryType(method) {
|
|
|
57
58
|
return EmployeeBatchEntryTypes.disable;
|
|
58
59
|
case 'PUT':
|
|
59
60
|
case 'PATCH':
|
|
60
|
-
return
|
|
61
|
+
return EmployeeBatchEntryTypes.update;
|
|
61
62
|
case 'GET':
|
|
62
63
|
return EmployeeBatchEntryTypes.search;
|
|
63
64
|
case 'POST':
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor';
|
|
2
|
+
/**
|
|
3
|
+
* Typed editor for one staged Encounter resource entry.
|
|
4
|
+
*
|
|
5
|
+
* Use this when a caller needs to stage one encounter row with claims-first
|
|
6
|
+
* accessors in a bundle authoring flow.
|
|
7
|
+
*/
|
|
8
|
+
export declare class EncounterEntryEditor extends ClinicalResourceEntryEditor {
|
|
9
|
+
/** Writes the canonical encounter identifier. */
|
|
10
|
+
setIdentifier(identifier?: string | null): this;
|
|
11
|
+
/** Reads the canonical encounter identifier. */
|
|
12
|
+
getIdentifier(): string | undefined;
|
|
13
|
+
/** Ensures the encounter entry has one canonical `urn:uuid:*` identifier. */
|
|
14
|
+
ensureIdentifier(): string;
|
|
15
|
+
/** Writes the subject/patient reference. */
|
|
16
|
+
setSubject(subject?: string | null): this;
|
|
17
|
+
/** Reads the subject/patient reference. */
|
|
18
|
+
getSubject(): string | undefined;
|
|
19
|
+
/** Writes the encounter status. */
|
|
20
|
+
setStatus(value?: string | null): this;
|
|
21
|
+
/** Reads the encounter status. */
|
|
22
|
+
getStatus(): string | undefined;
|
|
23
|
+
/** Writes the encounter class. */
|
|
24
|
+
setClass(value?: string | null): this;
|
|
25
|
+
/** Reads the encounter class. */
|
|
26
|
+
getClass(): string | undefined;
|
|
27
|
+
/** Writes the encounter type. */
|
|
28
|
+
setType(value?: string | null): this;
|
|
29
|
+
/** Reads the encounter type. */
|
|
30
|
+
getType(): string | undefined;
|
|
31
|
+
/** Writes the participant list. */
|
|
32
|
+
setParticipantList(values: readonly string[]): this;
|
|
33
|
+
/** Reads the participant list. */
|
|
34
|
+
getParticipantList(): string[];
|
|
35
|
+
/** Writes the service-provider reference. */
|
|
36
|
+
setServiceProvider(value?: string | null): this;
|
|
37
|
+
/** Reads the service-provider reference. */
|
|
38
|
+
getServiceProvider(): string | undefined;
|
|
39
|
+
/** Writes the encounter start date/time. */
|
|
40
|
+
setPeriodStart(value?: string | null): this;
|
|
41
|
+
/** Reads the encounter start date/time. */
|
|
42
|
+
getPeriodStart(): string | undefined;
|
|
43
|
+
/** Writes the encounter end date/time. */
|
|
44
|
+
setPeriodEnd(value?: string | null): this;
|
|
45
|
+
/** Reads the encounter end date/time. */
|
|
46
|
+
getPeriodEnd(): string | undefined;
|
|
47
|
+
/** Writes the reason code. */
|
|
48
|
+
setReasonCode(value?: string | null): this;
|
|
49
|
+
/** Reads the reason code. */
|
|
50
|
+
getReasonCode(): string | undefined;
|
|
51
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor.js';
|
|
2
|
+
import { EncounterClaim } from '../models/interoperable-claims/encounter-claims.js';
|
|
3
|
+
import { BundleEditableResourceTypes } from '../models/bundle-editor-types.js';
|
|
4
|
+
import { registerBundleEntryEditor } from './bundle-editor-registry.js';
|
|
5
|
+
/**
|
|
6
|
+
* Typed editor for one staged Encounter resource entry.
|
|
7
|
+
*
|
|
8
|
+
* Use this when a caller needs to stage one encounter row with claims-first
|
|
9
|
+
* accessors in a bundle authoring flow.
|
|
10
|
+
*/
|
|
11
|
+
export class EncounterEntryEditor extends ClinicalResourceEntryEditor {
|
|
12
|
+
/** Writes the canonical encounter identifier. */
|
|
13
|
+
setIdentifier(identifier) { return this.setIdentifierValue(EncounterClaim.Identifier, identifier); }
|
|
14
|
+
/** Reads the canonical encounter identifier. */
|
|
15
|
+
getIdentifier() { return this.getIdentifierValue(EncounterClaim.Identifier); }
|
|
16
|
+
/** Ensures the encounter entry has one canonical `urn:uuid:*` identifier. */
|
|
17
|
+
ensureIdentifier() { return this.ensureIdentifierValue(EncounterClaim.Identifier); }
|
|
18
|
+
/** Writes the subject/patient reference. */
|
|
19
|
+
setSubject(subject) { return this.setSubjectClaims(EncounterClaim.Subject, EncounterClaim.Patient, subject); }
|
|
20
|
+
/** Reads the subject/patient reference. */
|
|
21
|
+
getSubject() { return this.getSubjectClaims(EncounterClaim.Subject, EncounterClaim.Patient); }
|
|
22
|
+
/** Writes the encounter status. */
|
|
23
|
+
setStatus(value) { return this.setScalarClaim(EncounterClaim.Status, value); }
|
|
24
|
+
/** Reads the encounter status. */
|
|
25
|
+
getStatus() { return this.getScalarClaim(EncounterClaim.Status); }
|
|
26
|
+
/** Writes the encounter class. */
|
|
27
|
+
setClass(value) { return this.setScalarClaim(EncounterClaim.Class, value); }
|
|
28
|
+
/** Reads the encounter class. */
|
|
29
|
+
getClass() { return this.getScalarClaim(EncounterClaim.Class); }
|
|
30
|
+
/** Writes the encounter type. */
|
|
31
|
+
setType(value) { return this.setScalarClaim(EncounterClaim.Type, value); }
|
|
32
|
+
/** Reads the encounter type. */
|
|
33
|
+
getType() { return this.getScalarClaim(EncounterClaim.Type); }
|
|
34
|
+
/** Writes the participant list. */
|
|
35
|
+
setParticipantList(values) { return this.setCsvClaimList(EncounterClaim.Participant, values); }
|
|
36
|
+
/** Reads the participant list. */
|
|
37
|
+
getParticipantList() { return this.getCsvClaimList(EncounterClaim.Participant); }
|
|
38
|
+
/** Writes the service-provider reference. */
|
|
39
|
+
setServiceProvider(value) { return this.setScalarClaim(EncounterClaim.ServiceProvider, value); }
|
|
40
|
+
/** Reads the service-provider reference. */
|
|
41
|
+
getServiceProvider() { return this.getScalarClaim(EncounterClaim.ServiceProvider); }
|
|
42
|
+
/** Writes the encounter start date/time. */
|
|
43
|
+
setPeriodStart(value) { return this.setScalarClaim(EncounterClaim.PeriodStart, value); }
|
|
44
|
+
/** Reads the encounter start date/time. */
|
|
45
|
+
getPeriodStart() { return this.getScalarClaim(EncounterClaim.PeriodStart); }
|
|
46
|
+
/** Writes the encounter end date/time. */
|
|
47
|
+
setPeriodEnd(value) { return this.setScalarClaim(EncounterClaim.PeriodEnd, value); }
|
|
48
|
+
/** Reads the encounter end date/time. */
|
|
49
|
+
getPeriodEnd() { return this.getScalarClaim(EncounterClaim.PeriodEnd); }
|
|
50
|
+
/** Writes the reason code. */
|
|
51
|
+
setReasonCode(value) { return this.setScalarClaim(EncounterClaim.ReasonCode, value); }
|
|
52
|
+
/** Reads the reason code. */
|
|
53
|
+
getReasonCode() { return this.getScalarClaim(EncounterClaim.ReasonCode); }
|
|
54
|
+
}
|
|
55
|
+
registerBundleEntryEditor(BundleEditableResourceTypes.encounter, EncounterEntryEditor);
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor';
|
|
2
|
+
/**
|
|
3
|
+
* Typed editor for one staged Flag resource entry.
|
|
4
|
+
*
|
|
5
|
+
* Use this when a caller needs to stage one flag row with claims-first
|
|
6
|
+
* accessors in a bundle authoring flow.
|
|
7
|
+
*/
|
|
8
|
+
export declare class FlagEntryEditor extends ClinicalResourceEntryEditor {
|
|
9
|
+
/** Writes the canonical flag identifier. */
|
|
10
|
+
setIdentifier(identifier?: string | null): this;
|
|
11
|
+
/** Reads the canonical flag identifier. */
|
|
12
|
+
getIdentifier(): string | undefined;
|
|
13
|
+
/** Ensures the flag entry has one canonical `urn:uuid:*` identifier. */
|
|
14
|
+
ensureIdentifier(): string;
|
|
15
|
+
/** Writes the subject/patient reference. */
|
|
16
|
+
setSubject(subject?: string | null): this;
|
|
17
|
+
/** Reads the subject/patient reference. */
|
|
18
|
+
getSubject(): string | undefined;
|
|
19
|
+
/** Writes the flag status. */
|
|
20
|
+
setStatus(value?: string | null): this;
|
|
21
|
+
/** Reads the flag status. */
|
|
22
|
+
getStatus(): string | undefined;
|
|
23
|
+
/** Writes the flag category. */
|
|
24
|
+
setCategory(value?: string | null): this;
|
|
25
|
+
/** Reads the flag category. */
|
|
26
|
+
getCategory(): string | undefined;
|
|
27
|
+
/** Writes the flag code. */
|
|
28
|
+
setCode(value?: string | null): this;
|
|
29
|
+
/** Reads the flag code. */
|
|
30
|
+
getCode(): string | undefined;
|
|
31
|
+
/** Writes the flag date. */
|
|
32
|
+
setDate(value?: string | null): this;
|
|
33
|
+
/** Reads the flag date. */
|
|
34
|
+
getDate(): string | undefined;
|
|
35
|
+
/** Writes the linked encounter reference. */
|
|
36
|
+
setEncounter(value?: string | null): this;
|
|
37
|
+
/** Reads the linked encounter reference. */
|
|
38
|
+
getEncounter(): string | undefined;
|
|
39
|
+
/** Writes the flag period start. */
|
|
40
|
+
setPeriodStart(value?: string | null): this;
|
|
41
|
+
/** Reads the flag period start. */
|
|
42
|
+
getPeriodStart(): string | undefined;
|
|
43
|
+
/** Writes the flag period end. */
|
|
44
|
+
setPeriodEnd(value?: string | null): this;
|
|
45
|
+
/** Reads the flag period end. */
|
|
46
|
+
getPeriodEnd(): string | undefined;
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor.js';
|
|
2
|
+
import { FlagClaim } from '../models/interoperable-claims/flag-claims.js';
|
|
3
|
+
import { BundleEditableResourceTypes } from '../models/bundle-editor-types.js';
|
|
4
|
+
import { registerBundleEntryEditor } from './bundle-editor-registry.js';
|
|
5
|
+
/**
|
|
6
|
+
* Typed editor for one staged Flag resource entry.
|
|
7
|
+
*
|
|
8
|
+
* Use this when a caller needs to stage one flag row with claims-first
|
|
9
|
+
* accessors in a bundle authoring flow.
|
|
10
|
+
*/
|
|
11
|
+
export class FlagEntryEditor extends ClinicalResourceEntryEditor {
|
|
12
|
+
/** Writes the canonical flag identifier. */
|
|
13
|
+
setIdentifier(identifier) { return this.setIdentifierValue(FlagClaim.Identifier, identifier); }
|
|
14
|
+
/** Reads the canonical flag identifier. */
|
|
15
|
+
getIdentifier() { return this.getIdentifierValue(FlagClaim.Identifier); }
|
|
16
|
+
/** Ensures the flag entry has one canonical `urn:uuid:*` identifier. */
|
|
17
|
+
ensureIdentifier() { return this.ensureIdentifierValue(FlagClaim.Identifier); }
|
|
18
|
+
/** Writes the subject/patient reference. */
|
|
19
|
+
setSubject(subject) { return this.setSubjectClaims(FlagClaim.Subject, FlagClaim.Patient, subject); }
|
|
20
|
+
/** Reads the subject/patient reference. */
|
|
21
|
+
getSubject() { return this.getSubjectClaims(FlagClaim.Subject, FlagClaim.Patient); }
|
|
22
|
+
/** Writes the flag status. */
|
|
23
|
+
setStatus(value) { return this.setScalarClaim(FlagClaim.Status, value); }
|
|
24
|
+
/** Reads the flag status. */
|
|
25
|
+
getStatus() { return this.getScalarClaim(FlagClaim.Status); }
|
|
26
|
+
/** Writes the flag category. */
|
|
27
|
+
setCategory(value) { return this.setScalarClaim(FlagClaim.Category, value); }
|
|
28
|
+
/** Reads the flag category. */
|
|
29
|
+
getCategory() { return this.getScalarClaim(FlagClaim.Category); }
|
|
30
|
+
/** Writes the flag code. */
|
|
31
|
+
setCode(value) { return this.setScalarClaim(FlagClaim.Code, value); }
|
|
32
|
+
/** Reads the flag code. */
|
|
33
|
+
getCode() { return this.getScalarClaim(FlagClaim.Code); }
|
|
34
|
+
/** Writes the flag date. */
|
|
35
|
+
setDate(value) { return this.setScalarClaim(FlagClaim.Date, value); }
|
|
36
|
+
/** Reads the flag date. */
|
|
37
|
+
getDate() { return this.getScalarClaim(FlagClaim.Date); }
|
|
38
|
+
/** Writes the linked encounter reference. */
|
|
39
|
+
setEncounter(value) { return this.setScalarClaim(FlagClaim.Encounter, value); }
|
|
40
|
+
/** Reads the linked encounter reference. */
|
|
41
|
+
getEncounter() { return this.getScalarClaim(FlagClaim.Encounter); }
|
|
42
|
+
/** Writes the flag period start. */
|
|
43
|
+
setPeriodStart(value) { return this.setScalarClaim(FlagClaim.PeriodStart, value); }
|
|
44
|
+
/** Reads the flag period start. */
|
|
45
|
+
getPeriodStart() { return this.getScalarClaim(FlagClaim.PeriodStart); }
|
|
46
|
+
/** Writes the flag period end. */
|
|
47
|
+
setPeriodEnd(value) { return this.setScalarClaim(FlagClaim.PeriodEnd, value); }
|
|
48
|
+
/** Reads the flag period end. */
|
|
49
|
+
getPeriodEnd() { return this.getScalarClaim(FlagClaim.PeriodEnd); }
|
|
50
|
+
}
|
|
51
|
+
registerBundleEntryEditor(BundleEditableResourceTypes.flag, FlagEntryEditor);
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor';
|
|
2
|
+
/**
|
|
3
|
+
* Typed editor for one staged Immunization resource entry.
|
|
4
|
+
*
|
|
5
|
+
* Use this when a caller needs to stage one immunization row with claims-first
|
|
6
|
+
* accessors in a bundle authoring flow.
|
|
7
|
+
*/
|
|
8
|
+
export declare class ImmunizationEntryEditor extends ClinicalResourceEntryEditor {
|
|
9
|
+
/** Writes the canonical immunization identifier. */
|
|
10
|
+
setIdentifier(identifier?: string | null): this;
|
|
11
|
+
/** Reads the canonical immunization identifier. */
|
|
12
|
+
getIdentifier(): string | undefined;
|
|
13
|
+
/** Ensures the immunization entry has one canonical `urn:uuid:*` identifier. */
|
|
14
|
+
ensureIdentifier(): string;
|
|
15
|
+
/** Writes the subject/patient reference. */
|
|
16
|
+
setSubject(subject?: string | null): this;
|
|
17
|
+
/** Reads the subject/patient reference. */
|
|
18
|
+
getSubject(): string | undefined;
|
|
19
|
+
/** Writes the immunization status. */
|
|
20
|
+
setStatus(status?: string | null): this;
|
|
21
|
+
/** Reads the immunization status. */
|
|
22
|
+
getStatus(): string | undefined;
|
|
23
|
+
/** Writes the administration date. */
|
|
24
|
+
setDate(date?: string | null): this;
|
|
25
|
+
/** Reads the administration date. */
|
|
26
|
+
getDate(): string | undefined;
|
|
27
|
+
/** Writes the vaccine code. */
|
|
28
|
+
setVaccineCode(code?: string | null): this;
|
|
29
|
+
/** Reads the vaccine code. */
|
|
30
|
+
getVaccineCode(): string | undefined;
|
|
31
|
+
/** Writes the local vaccine code text. */
|
|
32
|
+
setVaccineCodeTextLocal(text?: string | null): this;
|
|
33
|
+
/** Reads the local vaccine code text. */
|
|
34
|
+
getVaccineCodeTextLocal(): string | undefined;
|
|
35
|
+
/** Writes the vaccine display text. */
|
|
36
|
+
setVaccineCodeDisplay(display?: string | null): this;
|
|
37
|
+
/** Reads the vaccine display text. */
|
|
38
|
+
getVaccineCodeDisplay(): string | undefined;
|
|
39
|
+
/** Writes the location reference. */
|
|
40
|
+
setLocation(reference?: string | null): this;
|
|
41
|
+
/** Reads the location reference. */
|
|
42
|
+
getLocation(): string | undefined;
|
|
43
|
+
/** Writes the manufacturer reference. */
|
|
44
|
+
setManufacturer(reference?: string | null): this;
|
|
45
|
+
/** Reads the manufacturer reference. */
|
|
46
|
+
getManufacturer(): string | undefined;
|
|
47
|
+
/** Writes the lot number. */
|
|
48
|
+
setLotNumber(lotNumber?: string | null): this;
|
|
49
|
+
/** Reads the lot number. */
|
|
50
|
+
getLotNumber(): string | undefined;
|
|
51
|
+
/** Writes the performer list. */
|
|
52
|
+
setPerformerList(references: readonly string[]): this;
|
|
53
|
+
/** Reads the performer list. */
|
|
54
|
+
getPerformerList(): string[];
|
|
55
|
+
/** Writes the reason code. */
|
|
56
|
+
setReasonCode(code?: string | null): this;
|
|
57
|
+
/** Reads the reason code. */
|
|
58
|
+
getReasonCode(): string | undefined;
|
|
59
|
+
/** Writes the status reason. */
|
|
60
|
+
setStatusReason(reason?: string | null): this;
|
|
61
|
+
/** Reads the status reason. */
|
|
62
|
+
getStatusReason(): string | undefined;
|
|
63
|
+
/** Writes the target disease. */
|
|
64
|
+
setTargetDisease(code?: string | null): this;
|
|
65
|
+
/** Reads the target disease. */
|
|
66
|
+
getTargetDisease(): string | undefined;
|
|
67
|
+
/** Writes the dose sequence. */
|
|
68
|
+
setDoseSequence(sequence?: string | null): this;
|
|
69
|
+
/** Reads the dose sequence. */
|
|
70
|
+
getDoseSequence(): string | undefined;
|
|
71
|
+
/** Writes the series. */
|
|
72
|
+
setSeries(series?: string | null): this;
|
|
73
|
+
/** Reads the series. */
|
|
74
|
+
getSeries(): string | undefined;
|
|
75
|
+
/** Writes the reaction date. */
|
|
76
|
+
setReactionDate(date?: string | null): this;
|
|
77
|
+
/** Reads the reaction date. */
|
|
78
|
+
getReactionDate(): string | undefined;
|
|
79
|
+
/** Writes the note text. */
|
|
80
|
+
setNote(note?: string | null): this;
|
|
81
|
+
/** Reads the note text. */
|
|
82
|
+
getNote(): string | undefined;
|
|
83
|
+
/** Alias for `setNote(...)` used by callers that expect clinical wording. */
|
|
84
|
+
setClinicalNote(note?: string | null): this;
|
|
85
|
+
/** Alias for `getNote()` used by callers that expect clinical wording. */
|
|
86
|
+
getClinicalNote(): string | undefined;
|
|
87
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
import { ClinicalResourceEntryEditor } from './clinical-resource-entry-editor.js';
|
|
2
|
+
import { ImmunizationClaim } from '../models/interoperable-claims/immunization-claims.js';
|
|
3
|
+
import { BundleEditableResourceTypes } from '../models/bundle-editor-types.js';
|
|
4
|
+
import { registerBundleEntryEditor } from './bundle-editor-registry.js';
|
|
5
|
+
/**
|
|
6
|
+
* Typed editor for one staged Immunization resource entry.
|
|
7
|
+
*
|
|
8
|
+
* Use this when a caller needs to stage one immunization row with claims-first
|
|
9
|
+
* accessors in a bundle authoring flow.
|
|
10
|
+
*/
|
|
11
|
+
export class ImmunizationEntryEditor extends ClinicalResourceEntryEditor {
|
|
12
|
+
/** Writes the canonical immunization identifier. */
|
|
13
|
+
setIdentifier(identifier) {
|
|
14
|
+
return this.setIdentifierValue(ImmunizationClaim.Identifier, identifier);
|
|
15
|
+
}
|
|
16
|
+
/** Reads the canonical immunization identifier. */
|
|
17
|
+
getIdentifier() {
|
|
18
|
+
return this.getIdentifierValue(ImmunizationClaim.Identifier);
|
|
19
|
+
}
|
|
20
|
+
/** Ensures the immunization entry has one canonical `urn:uuid:*` identifier. */
|
|
21
|
+
ensureIdentifier() {
|
|
22
|
+
return this.ensureIdentifierValue(ImmunizationClaim.Identifier);
|
|
23
|
+
}
|
|
24
|
+
/** Writes the subject/patient reference. */
|
|
25
|
+
setSubject(subject) {
|
|
26
|
+
return this.setSubjectClaims(ImmunizationClaim.Subject, ImmunizationClaim.Patient, subject);
|
|
27
|
+
}
|
|
28
|
+
/** Reads the subject/patient reference. */
|
|
29
|
+
getSubject() {
|
|
30
|
+
return this.getSubjectClaims(ImmunizationClaim.Subject, ImmunizationClaim.Patient);
|
|
31
|
+
}
|
|
32
|
+
/** Writes the immunization status. */
|
|
33
|
+
setStatus(status) {
|
|
34
|
+
return this.setScalarClaim(ImmunizationClaim.Status, status);
|
|
35
|
+
}
|
|
36
|
+
/** Reads the immunization status. */
|
|
37
|
+
getStatus() {
|
|
38
|
+
return this.getScalarClaim(ImmunizationClaim.Status);
|
|
39
|
+
}
|
|
40
|
+
/** Writes the administration date. */
|
|
41
|
+
setDate(date) {
|
|
42
|
+
return this.setScalarClaim(ImmunizationClaim.Date, date);
|
|
43
|
+
}
|
|
44
|
+
/** Reads the administration date. */
|
|
45
|
+
getDate() {
|
|
46
|
+
return this.getScalarClaim(ImmunizationClaim.Date);
|
|
47
|
+
}
|
|
48
|
+
/** Writes the vaccine code. */
|
|
49
|
+
setVaccineCode(code) {
|
|
50
|
+
return this.setScalarClaim(ImmunizationClaim.VaccineCode, code);
|
|
51
|
+
}
|
|
52
|
+
/** Reads the vaccine code. */
|
|
53
|
+
getVaccineCode() {
|
|
54
|
+
return this.getScalarClaim(ImmunizationClaim.VaccineCode);
|
|
55
|
+
}
|
|
56
|
+
/** Writes the local vaccine code text. */
|
|
57
|
+
setVaccineCodeTextLocal(text) {
|
|
58
|
+
return this.setScalarClaim(ImmunizationClaim.VaccineCodeText, text);
|
|
59
|
+
}
|
|
60
|
+
/** Reads the local vaccine code text. */
|
|
61
|
+
getVaccineCodeTextLocal() {
|
|
62
|
+
return this.getScalarClaim(ImmunizationClaim.VaccineCodeText);
|
|
63
|
+
}
|
|
64
|
+
/** Writes the vaccine display text. */
|
|
65
|
+
setVaccineCodeDisplay(display) {
|
|
66
|
+
return this.setScalarClaim(ImmunizationClaim.VaccineCodeDisplay, display);
|
|
67
|
+
}
|
|
68
|
+
/** Reads the vaccine display text. */
|
|
69
|
+
getVaccineCodeDisplay() {
|
|
70
|
+
return this.getScalarClaim(ImmunizationClaim.VaccineCodeDisplay);
|
|
71
|
+
}
|
|
72
|
+
/** Writes the location reference. */
|
|
73
|
+
setLocation(reference) {
|
|
74
|
+
return this.setScalarClaim(ImmunizationClaim.Location, reference);
|
|
75
|
+
}
|
|
76
|
+
/** Reads the location reference. */
|
|
77
|
+
getLocation() {
|
|
78
|
+
return this.getScalarClaim(ImmunizationClaim.Location);
|
|
79
|
+
}
|
|
80
|
+
/** Writes the manufacturer reference. */
|
|
81
|
+
setManufacturer(reference) {
|
|
82
|
+
return this.setScalarClaim(ImmunizationClaim.Manufacturer, reference);
|
|
83
|
+
}
|
|
84
|
+
/** Reads the manufacturer reference. */
|
|
85
|
+
getManufacturer() {
|
|
86
|
+
return this.getScalarClaim(ImmunizationClaim.Manufacturer);
|
|
87
|
+
}
|
|
88
|
+
/** Writes the lot number. */
|
|
89
|
+
setLotNumber(lotNumber) {
|
|
90
|
+
return this.setScalarClaim(ImmunizationClaim.LotNumber, lotNumber);
|
|
91
|
+
}
|
|
92
|
+
/** Reads the lot number. */
|
|
93
|
+
getLotNumber() {
|
|
94
|
+
return this.getScalarClaim(ImmunizationClaim.LotNumber);
|
|
95
|
+
}
|
|
96
|
+
/** Writes the performer list. */
|
|
97
|
+
setPerformerList(references) {
|
|
98
|
+
return this.setCsvClaimList(ImmunizationClaim.Performer, references);
|
|
99
|
+
}
|
|
100
|
+
/** Reads the performer list. */
|
|
101
|
+
getPerformerList() {
|
|
102
|
+
return this.getCsvClaimList(ImmunizationClaim.Performer);
|
|
103
|
+
}
|
|
104
|
+
/** Writes the reason code. */
|
|
105
|
+
setReasonCode(code) {
|
|
106
|
+
return this.setScalarClaim(ImmunizationClaim.ReasonCode, code);
|
|
107
|
+
}
|
|
108
|
+
/** Reads the reason code. */
|
|
109
|
+
getReasonCode() {
|
|
110
|
+
return this.getScalarClaim(ImmunizationClaim.ReasonCode);
|
|
111
|
+
}
|
|
112
|
+
/** Writes the status reason. */
|
|
113
|
+
setStatusReason(reason) {
|
|
114
|
+
return this.setScalarClaim(ImmunizationClaim.StatusReason, reason);
|
|
115
|
+
}
|
|
116
|
+
/** Reads the status reason. */
|
|
117
|
+
getStatusReason() {
|
|
118
|
+
return this.getScalarClaim(ImmunizationClaim.StatusReason);
|
|
119
|
+
}
|
|
120
|
+
/** Writes the target disease. */
|
|
121
|
+
setTargetDisease(code) {
|
|
122
|
+
return this.setScalarClaim(ImmunizationClaim.TargetDisease, code);
|
|
123
|
+
}
|
|
124
|
+
/** Reads the target disease. */
|
|
125
|
+
getTargetDisease() {
|
|
126
|
+
return this.getScalarClaim(ImmunizationClaim.TargetDisease);
|
|
127
|
+
}
|
|
128
|
+
/** Writes the dose sequence. */
|
|
129
|
+
setDoseSequence(sequence) {
|
|
130
|
+
return this.setScalarClaim(ImmunizationClaim.DoseSequence, sequence);
|
|
131
|
+
}
|
|
132
|
+
/** Reads the dose sequence. */
|
|
133
|
+
getDoseSequence() {
|
|
134
|
+
return this.getScalarClaim(ImmunizationClaim.DoseSequence);
|
|
135
|
+
}
|
|
136
|
+
/** Writes the series. */
|
|
137
|
+
setSeries(series) {
|
|
138
|
+
return this.setScalarClaim(ImmunizationClaim.Series, series);
|
|
139
|
+
}
|
|
140
|
+
/** Reads the series. */
|
|
141
|
+
getSeries() {
|
|
142
|
+
return this.getScalarClaim(ImmunizationClaim.Series);
|
|
143
|
+
}
|
|
144
|
+
/** Writes the reaction date. */
|
|
145
|
+
setReactionDate(date) {
|
|
146
|
+
return this.setScalarClaim(ImmunizationClaim.ReactionDate, date);
|
|
147
|
+
}
|
|
148
|
+
/** Reads the reaction date. */
|
|
149
|
+
getReactionDate() {
|
|
150
|
+
return this.getScalarClaim(ImmunizationClaim.ReactionDate);
|
|
151
|
+
}
|
|
152
|
+
/** Writes the note text. */
|
|
153
|
+
setNote(note) {
|
|
154
|
+
return this.setScalarClaim(ImmunizationClaim.Note, note);
|
|
155
|
+
}
|
|
156
|
+
/** Reads the note text. */
|
|
157
|
+
getNote() {
|
|
158
|
+
return this.getScalarClaim(ImmunizationClaim.Note);
|
|
159
|
+
}
|
|
160
|
+
/** Alias for `setNote(...)` used by callers that expect clinical wording. */
|
|
161
|
+
setClinicalNote(note) {
|
|
162
|
+
return this.setNote(note);
|
|
163
|
+
}
|
|
164
|
+
/** Alias for `getNote()` used by callers that expect clinical wording. */
|
|
165
|
+
getClinicalNote() {
|
|
166
|
+
return this.getNote();
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
registerBundleEntryEditor(BundleEditableResourceTypes.immunization, ImmunizationEntryEditor);
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './actor';
|
|
2
|
+
export * from './authority-resolution';
|
|
2
3
|
export * from './activation-policy';
|
|
3
4
|
export * from './base-convert';
|
|
4
5
|
export * from './baseN';
|
|
@@ -34,6 +35,7 @@ export * from './gw-core-path';
|
|
|
34
35
|
export * from './gw-core-commercial-contract';
|
|
35
36
|
export * from './legal-organization-verification-result';
|
|
36
37
|
export * from './communication-fhir-r4';
|
|
38
|
+
export * from './communication-editor';
|
|
37
39
|
export * from './communication-document-reference';
|
|
38
40
|
export * from './communication-bundle-document-request';
|
|
39
41
|
export * from './communication-identity';
|
|
@@ -48,6 +50,7 @@ export * from './communication-didcomm-payload';
|
|
|
48
50
|
export * from './confidential-storage-persistence';
|
|
49
51
|
export * from './confidential-storage-test-data';
|
|
50
52
|
export * from './permission-templates';
|
|
53
|
+
export * from './client-assertion';
|
|
51
54
|
export * from './professional-smart';
|
|
52
55
|
export * from './related-person-list';
|
|
53
56
|
export * from './clinical-resource-converters';
|
|
@@ -56,6 +59,7 @@ export * from './clinical-resource-view';
|
|
|
56
59
|
export * from './fhir-validator';
|
|
57
60
|
export * from './family-registration-test-data';
|
|
58
61
|
export * from './individual-form-pdf';
|
|
62
|
+
export * from './individual-smart';
|
|
59
63
|
export * from './individual-organization-claims';
|
|
60
64
|
export * from './inter-tenant-access-contract';
|
|
61
65
|
export * from './legal-organization-onboarding-editor';
|
|
@@ -64,6 +68,7 @@ export * from './organization-did-binding';
|
|
|
64
68
|
export * from './organization-authorization-urn';
|
|
65
69
|
export * from './individual-organization-lifecycle';
|
|
66
70
|
export * from './individual-onboarding-editor';
|
|
71
|
+
export * from './individual-onboarding-acceptance-credential';
|
|
67
72
|
export * from './individual-onboarding-document-reference';
|
|
68
73
|
export * from './individual-organization-kyc';
|
|
69
74
|
export * from './individual-bundle-vault';
|
|
@@ -88,12 +93,14 @@ export * from './normalize';
|
|
|
88
93
|
export * from './object-convert';
|
|
89
94
|
export * from './normalize-uuid';
|
|
90
95
|
export * from './object-sanitize';
|
|
96
|
+
export * from './unified-health-id';
|
|
91
97
|
export * from './permission-templates';
|
|
92
98
|
export * from './smart-scope';
|
|
93
99
|
export * from './service-act-reasons';
|
|
94
100
|
export * from './same-as';
|
|
95
101
|
export * from './activation-request';
|
|
96
102
|
export * from './vp-token';
|
|
103
|
+
export * from './vital-sign-day-batch';
|
|
97
104
|
export * from './wallet-mem';
|
|
98
105
|
export * from './wallet-memory-queue';
|
|
99
106
|
export * from './profile-outbox-memory-repository';
|