gdc-sdk-node-ts 0.6.4 → 0.6.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/README.md +82 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -77,6 +77,88 @@ Open these tests when you want to see exact method calls and exact inputs:
|
|
|
77
77
|
Portal-style `default-first` discovery with simple `getHosts(...)`,
|
|
78
78
|
`getIndexProviders(...)`, and `getDigitalTwinProviders(...)` calls.
|
|
79
79
|
|
|
80
|
+
## Live GW CORE Flow
|
|
81
|
+
|
|
82
|
+
Use [tests/live-gw-node-runtime.e2e.test.mjs](tests/live-gw-node-runtime.e2e.test.mjs)
|
|
83
|
+
as the canonical runtime flow.
|
|
84
|
+
|
|
85
|
+
Teaching rule:
|
|
86
|
+
|
|
87
|
+
- defaults come from `gdc-common-utils-ts/examples`
|
|
88
|
+
- override with env vars only when your tenant, bearer, or route is different
|
|
89
|
+
- local GW default is `http://127.0.0.1:3000`
|
|
90
|
+
- Docker-exposed GW can be overridden with `BASE_URL=http://127.0.0.1:8000`
|
|
91
|
+
|
|
92
|
+
Current live flow covered by the test suite:
|
|
93
|
+
|
|
94
|
+
1. bootstrap tenant / legal organization
|
|
95
|
+
2. bootstrap doctor or controller employee
|
|
96
|
+
3. bootstrap individual and grant consent for the doctor
|
|
97
|
+
4. ingest two IPS `Communication` bundles, each with one `MedicationStatement`
|
|
98
|
+
5. read the IPS/clinical index and verify both medications are present
|
|
99
|
+
6. persist audit/debug traces in `test-results/*.jsonl`
|
|
100
|
+
|
|
101
|
+
Shared example source of truth:
|
|
102
|
+
|
|
103
|
+
- tenant/route/controller/professional defaults:
|
|
104
|
+
[gdc-common-utils-ts/src/examples/shared.ts](https://github.com/Global-DataCare/gdc-common-utils-ts/blob/main/src/examples/shared.ts)
|
|
105
|
+
- live employee defaults:
|
|
106
|
+
[gdc-common-utils-ts/src/examples/organization-controller.ts](https://github.com/Global-DataCare/gdc-common-utils-ts/blob/main/src/examples/organization-controller.ts)
|
|
107
|
+
- live consent defaults:
|
|
108
|
+
[gdc-common-utils-ts/src/examples/individual-controller.ts](https://github.com/Global-DataCare/gdc-common-utils-ts/blob/main/src/examples/individual-controller.ts)
|
|
109
|
+
|
|
110
|
+
The two medication defaults used by the live test are intentionally reusable:
|
|
111
|
+
|
|
112
|
+
- `Ibuprofen 400 mg`
|
|
113
|
+
- `Paracetamol 600 mg`
|
|
114
|
+
- both every `8` hours
|
|
115
|
+
- both `PRN` / `dosage-asneeded = true`
|
|
116
|
+
- note text keeps the `4` hour gap in English
|
|
117
|
+
|
|
118
|
+
Run the full live runtime baseline:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
npm run test:e2e:live-gw
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
Run the IPS ingestion/search branch as well:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
RUN_LIVE_GW_E2E_IPS_INGESTION=1 \
|
|
128
|
+
npm run test:e2e:live-gw
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Common overrides:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
BASE_URL=http://127.0.0.1:3000 \
|
|
135
|
+
AUTH_BEARER=... \
|
|
136
|
+
TENANT_ID=VATES-B00112233 \
|
|
137
|
+
TENANT_ROUTE_ID=acme-live \
|
|
138
|
+
JURISDICTION=ES \
|
|
139
|
+
SECTOR=health-care \
|
|
140
|
+
SUBJECT_DID=did:web:api.acme.org:individual:123 \
|
|
141
|
+
RUN_LIVE_GW_E2E_IPS_INGESTION=1 \
|
|
142
|
+
LIVE_GW_NODE_E2E_DEBUG=1 \
|
|
143
|
+
npm run test:e2e:live-gw
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
Docker-exposed GW example:
|
|
147
|
+
|
|
148
|
+
```bash
|
|
149
|
+
BASE_URL=http://127.0.0.1:8000 \
|
|
150
|
+
RUN_LIVE_GW_E2E_IPS_INGESTION=1 \
|
|
151
|
+
npm run test:e2e:live-gw
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Documentation consistency rule for this repo family:
|
|
155
|
+
|
|
156
|
+
- scripts, README examples, Swagger examples, and internal tests must reuse the
|
|
157
|
+
same example data and flow order
|
|
158
|
+
- if a new request/response example is added, add it first to
|
|
159
|
+
`gdc-common-utils-ts/examples` and consume it from there instead of
|
|
160
|
+
re-hardcoding values locally
|
|
161
|
+
|
|
80
162
|
## Dataspace Discovery Quick Map
|
|
81
163
|
|
|
82
164
|
Use the Node discovery layer when your backend or BFF needs to:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-sdk-node-ts",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6",
|
|
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,8 +17,8 @@
|
|
|
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": "
|
|
21
|
-
"gdc-sdk-core-ts": "^0.6.
|
|
20
|
+
"gdc-common-utils-ts": "^1.14.10",
|
|
21
|
+
"gdc-sdk-core-ts": "^0.6.9"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^20.14.10",
|