gdc-common-utils-ts 2.0.18 → 2.2.2
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 +18 -1
- 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/didcomm.d.ts +22 -0
- package/dist/constants/didcomm.js +22 -0
- package/dist/constants/fhir-resource-types.d.ts +2 -0
- package/dist/constants/fhir-resource-types.js +1 -0
- 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.d.ts +11 -0
- package/dist/examples/bundle-didcomm-payload.js +15 -0
- package/dist/examples/communication-attached-bundle-session.js +28 -27
- package/dist/examples/communication-didcomm-payload.d.ts +39 -0
- package/dist/examples/communication-didcomm-payload.js +44 -0
- 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/index.d.ts +4 -0
- package/dist/examples/index.js +4 -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.d.ts +45 -0
- package/dist/examples/profile-manager-mem.js +30 -0
- package/dist/examples/related-person.d.ts +14 -0
- package/dist/examples/related-person.js +18 -4
- package/dist/examples/shared.d.ts +13 -3
- package/dist/examples/shared.js +14 -4
- package/dist/examples/vital-signs.js +1 -1
- package/dist/examples/wallet-mem.d.ts +38 -0
- package/dist/examples/wallet-mem.js +42 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/interfaces/IProfileOutboxRepository.d.ts +36 -0
- package/dist/interfaces/IProfileOutboxRepository.js +2 -0
- package/dist/interfaces/IWallet.d.ts +74 -0
- package/dist/interfaces/IWallet.js +2 -0
- package/dist/interfaces/IWalletQueue.d.ts +30 -0
- package/dist/interfaces/IWalletQueue.js +2 -0
- package/dist/interfaces/index.d.ts +8 -0
- package/dist/interfaces/index.js +8 -0
- 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 +195 -0
- package/dist/models/communication-attached-bundle-session.js +36 -0
- 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/index.d.ts +5 -0
- package/dist/models/index.js +5 -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 +14 -4
- package/dist/models/interoperable-claims/diagnostic-report-claims.js +13 -3
- 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/profile-manager.d.ts +85 -0
- package/dist/models/profile-manager.js +2 -0
- package/dist/models/wallet.d.ts +59 -0
- package/dist/models/wallet.js +22 -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 +78 -0
- package/dist/utils/backend-message-manager-mem.js +238 -0
- package/dist/utils/bundle-didcomm-payload.d.ts +29 -0
- package/dist/utils/bundle-didcomm-payload.js +49 -0
- package/dist/utils/bundle-document-builder.d.ts +1 -0
- package/dist/utils/bundle-document-builder.js +134 -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/communication-attached-bundle-session-helpers.d.ts +54 -0
- package/dist/utils/communication-attached-bundle-session-helpers.js +519 -0
- package/dist/utils/communication-attached-bundle-session.d.ts +87 -304
- package/dist/utils/communication-attached-bundle-session.js +175 -841
- package/dist/utils/communication-consent-access-editor.d.ts +85 -0
- package/dist/utils/communication-consent-access-editor.js +244 -0
- package/dist/utils/communication-didcomm-payload.d.ts +38 -0
- package/dist/utils/communication-didcomm-payload.js +85 -0
- 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/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 +15 -0
- package/dist/utils/index.js +15 -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/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/profile-manager-mem.d.ts +69 -0
- package/dist/utils/profile-manager-mem.js +79 -0
- package/dist/utils/profile-outbox-memory-repository.d.ts +34 -0
- package/dist/utils/profile-outbox-memory-repository.js +57 -0
- 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/dist/utils/wallet-mem.d.ts +93 -0
- package/dist/utils/wallet-mem.js +277 -0
- package/dist/utils/wallet-memory-queue.d.ts +32 -0
- package/dist/utils/wallet-memory-queue.js +82 -0
- package/package.json +2 -1
|
@@ -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';
|
|
@@ -42,9 +44,13 @@ export * from './communication-participant-search';
|
|
|
42
44
|
export * from './communication-participant-search-test-data';
|
|
43
45
|
export * from './communication-retention-policy';
|
|
44
46
|
export * from './communication-attached-bundle-session';
|
|
47
|
+
export * from './communication-consent-access-editor';
|
|
48
|
+
export * from './bundle-didcomm-payload';
|
|
49
|
+
export * from './communication-didcomm-payload';
|
|
45
50
|
export * from './confidential-storage-persistence';
|
|
46
51
|
export * from './confidential-storage-test-data';
|
|
47
52
|
export * from './permission-templates';
|
|
53
|
+
export * from './client-assertion';
|
|
48
54
|
export * from './professional-smart';
|
|
49
55
|
export * from './related-person-list';
|
|
50
56
|
export * from './clinical-resource-converters';
|
|
@@ -53,6 +59,7 @@ export * from './clinical-resource-view';
|
|
|
53
59
|
export * from './fhir-validator';
|
|
54
60
|
export * from './family-registration-test-data';
|
|
55
61
|
export * from './individual-form-pdf';
|
|
62
|
+
export * from './individual-smart';
|
|
56
63
|
export * from './individual-organization-claims';
|
|
57
64
|
export * from './inter-tenant-access-contract';
|
|
58
65
|
export * from './legal-organization-onboarding-editor';
|
|
@@ -61,6 +68,7 @@ export * from './organization-did-binding';
|
|
|
61
68
|
export * from './organization-authorization-urn';
|
|
62
69
|
export * from './individual-organization-lifecycle';
|
|
63
70
|
export * from './individual-onboarding-editor';
|
|
71
|
+
export * from './individual-onboarding-acceptance-credential';
|
|
64
72
|
export * from './individual-onboarding-document-reference';
|
|
65
73
|
export * from './individual-organization-kyc';
|
|
66
74
|
export * from './individual-bundle-vault';
|
|
@@ -85,9 +93,16 @@ export * from './normalize';
|
|
|
85
93
|
export * from './object-convert';
|
|
86
94
|
export * from './normalize-uuid';
|
|
87
95
|
export * from './object-sanitize';
|
|
96
|
+
export * from './unified-health-id';
|
|
88
97
|
export * from './permission-templates';
|
|
89
98
|
export * from './smart-scope';
|
|
90
99
|
export * from './service-act-reasons';
|
|
91
100
|
export * from './same-as';
|
|
92
101
|
export * from './activation-request';
|
|
93
102
|
export * from './vp-token';
|
|
103
|
+
export * from './vital-sign-day-batch';
|
|
104
|
+
export * from './wallet-mem';
|
|
105
|
+
export * from './wallet-memory-queue';
|
|
106
|
+
export * from './profile-outbox-memory-repository';
|
|
107
|
+
export * from './backend-message-manager-mem';
|
|
108
|
+
export * from './profile-manager-mem';
|
package/dist/utils/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './actor.js';
|
|
2
|
+
export * from './authority-resolution.js';
|
|
2
3
|
export * from './activation-policy.js';
|
|
3
4
|
export * from './base-convert.js';
|
|
4
5
|
export * from './baseN.js';
|
|
@@ -34,6 +35,7 @@ export * from './gw-core-path.js';
|
|
|
34
35
|
export * from './gw-core-commercial-contract.js';
|
|
35
36
|
export * from './legal-organization-verification-result.js';
|
|
36
37
|
export * from './communication-fhir-r4.js';
|
|
38
|
+
export * from './communication-editor.js';
|
|
37
39
|
export * from './communication-document-reference.js';
|
|
38
40
|
export * from './communication-bundle-document-request.js';
|
|
39
41
|
export * from './communication-identity.js';
|
|
@@ -42,9 +44,13 @@ export * from './communication-participant-search.js';
|
|
|
42
44
|
export * from './communication-participant-search-test-data.js';
|
|
43
45
|
export * from './communication-retention-policy.js';
|
|
44
46
|
export * from './communication-attached-bundle-session.js';
|
|
47
|
+
export * from './communication-consent-access-editor.js';
|
|
48
|
+
export * from './bundle-didcomm-payload.js';
|
|
49
|
+
export * from './communication-didcomm-payload.js';
|
|
45
50
|
export * from './confidential-storage-persistence.js';
|
|
46
51
|
export * from './confidential-storage-test-data.js';
|
|
47
52
|
export * from './permission-templates.js';
|
|
53
|
+
export * from './client-assertion.js';
|
|
48
54
|
export * from './professional-smart.js';
|
|
49
55
|
export * from './related-person-list.js';
|
|
50
56
|
export * from './clinical-resource-converters.js';
|
|
@@ -53,6 +59,7 @@ export * from './clinical-resource-view.js';
|
|
|
53
59
|
export * from './fhir-validator.js';
|
|
54
60
|
export * from './family-registration-test-data.js';
|
|
55
61
|
export * from './individual-form-pdf.js';
|
|
62
|
+
export * from './individual-smart.js';
|
|
56
63
|
export * from './individual-organization-claims.js';
|
|
57
64
|
export * from './inter-tenant-access-contract.js';
|
|
58
65
|
export * from './legal-organization-onboarding-editor.js';
|
|
@@ -61,6 +68,7 @@ export * from './organization-did-binding.js';
|
|
|
61
68
|
export * from './organization-authorization-urn.js';
|
|
62
69
|
export * from './individual-organization-lifecycle.js';
|
|
63
70
|
export * from './individual-onboarding-editor.js';
|
|
71
|
+
export * from './individual-onboarding-acceptance-credential.js';
|
|
64
72
|
export * from './individual-onboarding-document-reference.js';
|
|
65
73
|
export * from './individual-organization-kyc.js';
|
|
66
74
|
export * from './individual-bundle-vault.js';
|
|
@@ -85,9 +93,16 @@ export * from './normalize.js';
|
|
|
85
93
|
export * from './object-convert.js';
|
|
86
94
|
export * from './normalize-uuid.js';
|
|
87
95
|
export * from './object-sanitize.js';
|
|
96
|
+
export * from './unified-health-id.js';
|
|
88
97
|
export * from './permission-templates.js';
|
|
89
98
|
export * from './smart-scope.js';
|
|
90
99
|
export * from './service-act-reasons.js';
|
|
91
100
|
export * from './same-as.js';
|
|
92
101
|
export * from './activation-request.js';
|
|
93
102
|
export * from './vp-token.js';
|
|
103
|
+
export * from './vital-sign-day-batch.js';
|
|
104
|
+
export * from './wallet-mem.js';
|
|
105
|
+
export * from './wallet-memory-queue.js';
|
|
106
|
+
export * from './profile-outbox-memory-repository.js';
|
|
107
|
+
export * from './backend-message-manager-mem.js';
|
|
108
|
+
export * from './profile-manager-mem.js';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { VerifiableCredentialV2 } from '../models/verifiable-credential';
|
|
2
|
+
/**
|
|
3
|
+
* Input for the canonical individual-onboarding acceptance credential.
|
|
4
|
+
*
|
|
5
|
+
* This helper builds the evidence object that a frontend/BFF can later sign
|
|
6
|
+
* with the user profile key pair before sending it as an attachment.
|
|
7
|
+
*
|
|
8
|
+
* Canonical semantics:
|
|
9
|
+
* - `credentialSubject.memberOf.taxID` is the organization tax identifier
|
|
10
|
+
* - `credentialSubject.hasOccupation.identifier.value` defaults to `RESPRSN`
|
|
11
|
+
* - `credentialSubject.hasCredential.material` binds the credential to the
|
|
12
|
+
* profile signing material
|
|
13
|
+
*/
|
|
14
|
+
export type IndividualOnboardingAcceptanceCredentialInput = Readonly<{
|
|
15
|
+
issuerDid: string;
|
|
16
|
+
subjectDid: string;
|
|
17
|
+
organizationTaxId: string;
|
|
18
|
+
profileKeyMaterial: string;
|
|
19
|
+
validFrom: string;
|
|
20
|
+
credentialId?: string;
|
|
21
|
+
representativeIdentifier?: string;
|
|
22
|
+
representativeRoleCode?: string;
|
|
23
|
+
sameAs?: string;
|
|
24
|
+
validUntil?: string;
|
|
25
|
+
proof?: VerifiableCredentialV2['proof'];
|
|
26
|
+
}>;
|
|
27
|
+
/**
|
|
28
|
+
* Builds the canonical Verifiable Credential for individual onboarding
|
|
29
|
+
* acceptance.
|
|
30
|
+
*
|
|
31
|
+
* The result is unsigned by design. Callers sign it with the user profile key
|
|
32
|
+
* pair and then attach the signed VC to the `Organization/_transaction`
|
|
33
|
+
* request.
|
|
34
|
+
*/
|
|
35
|
+
export declare function buildIndividualOnboardingAcceptanceCredential(input: IndividualOnboardingAcceptanceCredentialInput): VerifiableCredentialV2;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ActivationCredentialTypes, W3cCredentialContexts, W3cCredentialTypes } from '../constants/verifiable-credentials.js';
|
|
2
|
+
import { ClaimsPersonSchemaorg } from '../constants/schemaorg.js';
|
|
3
|
+
function normalizeText(value) {
|
|
4
|
+
return typeof value === 'string' ? value.trim() : '';
|
|
5
|
+
}
|
|
6
|
+
function requireText(value, fieldName) {
|
|
7
|
+
const normalized = normalizeText(value);
|
|
8
|
+
if (!normalized) {
|
|
9
|
+
throw new Error(`buildIndividualOnboardingAcceptanceCredential requires ${fieldName}.`);
|
|
10
|
+
}
|
|
11
|
+
return normalized;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Builds the canonical Verifiable Credential for individual onboarding
|
|
15
|
+
* acceptance.
|
|
16
|
+
*
|
|
17
|
+
* The result is unsigned by design. Callers sign it with the user profile key
|
|
18
|
+
* pair and then attach the signed VC to the `Organization/_transaction`
|
|
19
|
+
* request.
|
|
20
|
+
*/
|
|
21
|
+
export function buildIndividualOnboardingAcceptanceCredential(input) {
|
|
22
|
+
const issuerDid = requireText(input.issuerDid, 'issuerDid');
|
|
23
|
+
const subjectDid = requireText(input.subjectDid, 'subjectDid');
|
|
24
|
+
const organizationTaxId = requireText(input.organizationTaxId, 'organizationTaxId');
|
|
25
|
+
const profileKeyMaterial = requireText(input.profileKeyMaterial, 'profileKeyMaterial');
|
|
26
|
+
const validFrom = requireText(input.validFrom, 'validFrom');
|
|
27
|
+
const roleCode = normalizeText(input.representativeRoleCode) || 'RESPRSN';
|
|
28
|
+
return {
|
|
29
|
+
'@context': [W3cCredentialContexts.V2, 'https://schema.org'],
|
|
30
|
+
...(normalizeText(input.credentialId) ? { id: normalizeText(input.credentialId) } : {}),
|
|
31
|
+
type: [W3cCredentialTypes.VerifiableCredential, ActivationCredentialTypes.LegalRepresentativeCredential],
|
|
32
|
+
issuer: issuerDid,
|
|
33
|
+
credentialSubject: {
|
|
34
|
+
id: subjectDid,
|
|
35
|
+
memberOf: {
|
|
36
|
+
taxID: organizationTaxId,
|
|
37
|
+
},
|
|
38
|
+
hasOccupation: {
|
|
39
|
+
identifier: {
|
|
40
|
+
value: roleCode,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
hasCredential: {
|
|
44
|
+
material: profileKeyMaterial,
|
|
45
|
+
},
|
|
46
|
+
...(normalizeText(input.representativeIdentifier)
|
|
47
|
+
? { [ClaimsPersonSchemaorg.identifierValue]: normalizeText(input.representativeIdentifier) }
|
|
48
|
+
: {}),
|
|
49
|
+
...(normalizeText(input.sameAs) ? { sameAs: normalizeText(input.sameAs) } : {}),
|
|
50
|
+
},
|
|
51
|
+
validFrom,
|
|
52
|
+
...(normalizeText(input.validUntil) ? { validUntil: normalizeText(input.validUntil) } : {}),
|
|
53
|
+
...(input.proof ? { proof: input.proof } : {}),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export type IndividualActorIdentityCredentialInput = Readonly<{
|
|
2
|
+
actorDid: string;
|
|
3
|
+
subjectDid?: string;
|
|
4
|
+
relationship?: string;
|
|
5
|
+
authorityBasis?: string;
|
|
6
|
+
email?: string;
|
|
7
|
+
sameAs?: string | readonly string[];
|
|
8
|
+
telephone?: string;
|
|
9
|
+
credentialMaterial?: string;
|
|
10
|
+
evidence?: readonly Record<string, unknown>[];
|
|
11
|
+
additionalCredentialSubject?: Record<string, unknown>;
|
|
12
|
+
additionalCredential?: Record<string, unknown>;
|
|
13
|
+
}>;
|
|
14
|
+
export type IndividualActorIdentityVpPayloadInput = Readonly<{
|
|
15
|
+
clientId: string;
|
|
16
|
+
actorDid: string;
|
|
17
|
+
subjectDid?: string;
|
|
18
|
+
relationship?: string;
|
|
19
|
+
authorityBasis?: string;
|
|
20
|
+
email?: string;
|
|
21
|
+
sameAs?: string | readonly string[];
|
|
22
|
+
telephone?: string;
|
|
23
|
+
credentialMaterial?: string;
|
|
24
|
+
evidence?: readonly Record<string, unknown>[];
|
|
25
|
+
verifiableCredential?: string | Record<string, unknown> | ReadonlyArray<string | Record<string, unknown>>;
|
|
26
|
+
additionalVp?: Record<string, unknown>;
|
|
27
|
+
additionalPayload?: Record<string, unknown>;
|
|
28
|
+
}>;
|
|
29
|
+
export type IndividualSubjectCredentialInput = Readonly<{
|
|
30
|
+
subjectDid: string;
|
|
31
|
+
sameAs?: string | readonly string[];
|
|
32
|
+
telephone?: string;
|
|
33
|
+
evidence?: readonly Record<string, unknown>[];
|
|
34
|
+
additionalCredentialSubject?: Record<string, unknown>;
|
|
35
|
+
additionalCredential?: Record<string, unknown>;
|
|
36
|
+
}>;
|
|
37
|
+
export type IndividualControllerCredentialInput = IndividualActorIdentityCredentialInput;
|
|
38
|
+
export type IndividualControllerVpPayloadInput = IndividualActorIdentityVpPayloadInput;
|
|
39
|
+
export type IndividualMemberCredentialInput = IndividualActorIdentityCredentialInput;
|
|
40
|
+
export type IndividualMemberVpPayloadInput = IndividualActorIdentityVpPayloadInput;
|
|
41
|
+
export declare function getIndividualControllerIdentitySameAs(input: Readonly<Pick<IndividualControllerCredentialInput, 'sameAs' | 'email'>>): string[];
|
|
42
|
+
export declare function getIndividualControllerIdentityTelephone(input: Readonly<Pick<IndividualControllerCredentialInput, 'telephone'>>): string | undefined;
|
|
43
|
+
export declare function getIndividualControllerIdentityVC(input: IndividualControllerCredentialInput): Record<string, unknown>;
|
|
44
|
+
export declare function buildIndividualControllerIdentityVpPayload(input: IndividualControllerVpPayloadInput): Record<string, unknown>;
|
|
45
|
+
export declare function buildUnsignedIndividualControllerIdentityVpJwt(input: IndividualControllerVpPayloadInput, options?: Readonly<{
|
|
46
|
+
nowSeconds?: number;
|
|
47
|
+
ttlSeconds?: number;
|
|
48
|
+
nonce?: string;
|
|
49
|
+
}>): string;
|
|
50
|
+
export declare function getIndividualSubjectVC(input: IndividualSubjectCredentialInput): Record<string, unknown>;
|
|
51
|
+
export declare function getIndividualMemberIdentitySameAs(input: Readonly<Pick<IndividualMemberCredentialInput, 'sameAs' | 'email'>>): string[];
|
|
52
|
+
export declare function getIndividualMemberIdentityTelephone(input: Readonly<Pick<IndividualMemberCredentialInput, 'telephone'>>): string | undefined;
|
|
53
|
+
export declare function getIndividualMemberIdentityVC(input: IndividualMemberCredentialInput): Record<string, unknown>;
|
|
54
|
+
export declare function buildIndividualMemberIdentityVpPayload(input: IndividualMemberVpPayloadInput): Record<string, unknown>;
|
|
55
|
+
export declare function buildUnsignedIndividualMemberIdentityVpJwt(input: IndividualMemberVpPayloadInput, options?: Readonly<{
|
|
56
|
+
nowSeconds?: number;
|
|
57
|
+
ttlSeconds?: number;
|
|
58
|
+
nonce?: string;
|
|
59
|
+
}>): string;
|