gdc-sdk-node-ts 0.2.0 → 0.2.1
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 +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -110,6 +110,16 @@ The canonical API contract should live in JSDoc on exported code. The README is
|
|
|
110
110
|
- Freezes the draft into a transport-oriented outbox job.
|
|
111
111
|
- [`updateOutboxJobStatus(...)`](../gdc-sdk-core-ts/src/communication-draft.ts)
|
|
112
112
|
- Updates the outbox job status and transport result metadata.
|
|
113
|
+
- [`groupConsentsForControllerView(...)`](../gdc-sdk-core-ts/src/consent-access.ts)
|
|
114
|
+
- Aggregates all active consent rules for one subject and groups them by actor-specific, organization, jurisdiction, and phone-extension target.
|
|
115
|
+
- [`evaluateRequestedAccess(...)`](../gdc-sdk-core-ts/src/consent-access.ts)
|
|
116
|
+
- Evaluates effective permission coverage with first-tier precedence for concrete email matches, then organization and jurisdiction coverage.
|
|
117
|
+
- [`getMissingPermissions(...)`](../gdc-sdk-core-ts/src/consent-access.ts)
|
|
118
|
+
- Extracts deterministic missing section/resource-type coverage for a SMART request.
|
|
119
|
+
- [`buildPermissionRequestCommunication(...)`](../gdc-sdk-core-ts/src/consent-access.ts)
|
|
120
|
+
- Builds the canonical `Communication` payload used to request additional subject-controlled access.
|
|
121
|
+
- [`buildPermissionRequestCommunicationLookupQuery(...)`](../gdc-sdk-core-ts/src/consent-access.ts)
|
|
122
|
+
- Builds a subject-scoped lookup query for recovering the permission request by `Communication.identifier`, `thid`, or `DocumentReference.contenthash`.
|
|
113
123
|
- [`IOutboxRepository`](../gdc-sdk-core-ts/src/communication-outbox.ts)
|
|
114
124
|
- [`OutboxRepositoryMemory`](../gdc-sdk-core-ts/src/communication-outbox.ts)
|
|
115
125
|
- [`createHeartRateObservation(...)`](../gdc-sdk-core-ts/src/vital-signs.ts)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-sdk-node-ts",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Next-generation Node runtime package for the GDC SDK family",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Antifraud Services Inc.",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test:e2e:live-gw": "npm run build && RUN_LIVE_GW_E2E=1 node --test tests/live-gw-node-runtime.e2e.test.mjs"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"gdc-common-utils-ts": "^1.5.
|
|
20
|
+
"gdc-common-utils-ts": "^1.5.1"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/node": "^20.14.10",
|