gdc-sdk-front-ts 2.0.9 → 2.1.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 +7 -11
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -42,25 +42,22 @@ If you are integrating this package for the first time, open these in order:
|
|
|
42
42
|
Real frontend/native setup, imports, `new ClientSDK(...)`,
|
|
43
43
|
`initializeCommunicationIdentity(...)`, `initializeSession(...)`, and the
|
|
44
44
|
public actor entrypoints exposed by `ProfileManager.asXxx()`.
|
|
45
|
-
2. [docs/
|
|
46
|
-
Frontend discovery guide for BFF-first provider/operator discovery, UI card
|
|
47
|
-
mapping, and copy/paste backend DTO consumption.
|
|
48
|
-
3. [gdc-sdk-core-ts/docs/101-SDK_FLOWS.md](https://github.com/Global-DataCare/gdc-sdk-core-ts/blob/main/docs/101-SDK_FLOWS.md)
|
|
45
|
+
2. [gdc-sdk-core-ts/docs/101-SDK_FLOWS.md](https://github.com/Global-DataCare/gdc-sdk-core-ts/blob/main/docs/101-SDK_FLOWS.md)
|
|
49
46
|
Shared business-flow map by actor family.
|
|
50
|
-
|
|
47
|
+
3. [gdc-sdk-node-ts/docs/101-LIVE_GW_LOCAL.md](https://github.com/Global-DataCare/gdc-sdk-node-ts/blob/main/docs/101-LIVE_GW_LOCAL.md)
|
|
51
48
|
Canonical local/TTY/Docker GW reference when the frontend team also needs a
|
|
52
49
|
real local GW running for end-to-end checks.
|
|
53
|
-
|
|
50
|
+
4. [gwtemplate-node-ts/docs/PORTAL_API_TO_GW_CORE.md](https://github.com/Global-DataCare/gwtemplate-node-ts/blob/main/docs/PORTAL_API_TO_GW_CORE.md)
|
|
54
51
|
Canonical portal/BFF functional map over GW CORE, including the separation
|
|
55
52
|
between `related persons`, invited `members`, and effective `consents`.
|
|
56
|
-
|
|
53
|
+
5. [gdc-common-utils-ts/src/examples/frontend-session.ts](https://github.com/Global-DataCare/gdc-common-utils-ts/blob/main/src/examples/frontend-session.ts)
|
|
57
54
|
Shared profile/session payload source of truth.
|
|
58
|
-
|
|
55
|
+
6. [gdc-common-utils-ts/docs/101-LIFECYCLE.md](https://github.com/Global-DataCare/gdc-common-utils-ts/blob/main/docs/101-LIFECYCLE.md)
|
|
59
56
|
Canonical lifecycle semantics and reusable placeholders for UI and portal flows.
|
|
60
|
-
|
|
57
|
+
7. [tests/101-frontend-profile-runtime.test.mjs](./tests/101-frontend-profile-runtime.test.mjs)
|
|
61
58
|
Technical frontend runtime slice for profile/device/session wiring.
|
|
62
59
|
Read this after the public actor-session guides, not before them.
|
|
63
|
-
|
|
60
|
+
8. [tests/101-individual-controller-frontend-runtime.test.mjs](./tests/101-individual-controller-frontend-runtime.test.mjs)
|
|
64
61
|
Technical wrapper slice around the generic runtime for the current
|
|
65
62
|
individual-controller baseline.
|
|
66
63
|
|
|
@@ -469,7 +466,6 @@ Preferred model:
|
|
|
469
466
|
|
|
470
467
|
Primary references:
|
|
471
468
|
|
|
472
|
-
- [docs/DATASPACE_DISCOVERY_FRONTEND_TODO.md](./docs/DATASPACE_DISCOVERY_FRONTEND_TODO.md)
|
|
473
469
|
- [tests/dataspace-discovery-client.test.mjs](tests/dataspace-discovery-client.test.mjs)
|
|
474
470
|
|
|
475
471
|
Copy/paste starting point:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gdc-sdk-front-ts",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Next-generation frontend 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
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@babel/runtime": "^7.28.4",
|
|
20
|
-
"gdc-common-utils-ts": "^2.0
|
|
21
|
-
"gdc-sdk-core-ts": "
|
|
20
|
+
"gdc-common-utils-ts": "^2.1.0",
|
|
21
|
+
"gdc-sdk-core-ts": "^2.1.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/node": "^20.14.10",
|