gdc-sdk-node-ts 0.12.0 → 2.0.4

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.
Files changed (34) hide show
  1. package/README.md +118 -12
  2. package/dist/backend-profile-runtime.d.ts +262 -0
  3. package/dist/backend-profile-runtime.js +498 -0
  4. package/dist/consent-claim-helpers.d.ts +2 -1
  5. package/dist/family-organization-registration.d.ts +40 -0
  6. package/dist/family-organization-registration.js +54 -0
  7. package/dist/family-organization-search.d.ts +30 -0
  8. package/dist/family-organization-search.js +59 -0
  9. package/dist/index.d.ts +7 -0
  10. package/dist/index.js +7 -0
  11. package/dist/individual-controller-backend-runtime.d.ts +59 -0
  12. package/dist/individual-controller-backend-runtime.js +67 -0
  13. package/dist/legal-organization-onboarding-facade.d.ts +70 -0
  14. package/dist/legal-organization-onboarding-facade.js +169 -0
  15. package/dist/node-runtime-client.d.ts +98 -2
  16. package/dist/node-runtime-client.js +178 -6
  17. package/dist/orchestration/client-port.d.ts +31 -1
  18. package/dist/orchestration/individual-controller-sdk.d.ts +23 -1
  19. package/dist/orchestration/individual-controller-sdk.js +28 -0
  20. package/dist/orchestration/organization-controller-sdk.d.ts +22 -1
  21. package/dist/orchestration/organization-controller-sdk.js +25 -0
  22. package/dist/orchestration/personal-sdk.d.ts +3 -1
  23. package/dist/orchestration/personal-sdk.js +4 -0
  24. package/dist/orchestration/professional-sdk.d.ts +16 -1
  25. package/dist/orchestration/professional-sdk.js +21 -0
  26. package/dist/organization-controller-backend-runtime.d.ts +65 -0
  27. package/dist/organization-controller-backend-runtime.js +83 -0
  28. package/dist/professional-backend-runtime.d.ts +36 -0
  29. package/dist/professional-backend-runtime.js +41 -0
  30. package/dist/profile-workspace.d.ts +82 -0
  31. package/dist/profile-workspace.js +127 -0
  32. package/dist/resource-operations.d.ts +79 -5
  33. package/dist/resource-operations.js +50 -5
  34. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-sdk-node-ts",
3
- "version": "0.12.0",
3
+ "version": "2.0.4",
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.",
@@ -16,6 +16,7 @@
16
16
  "local:close": "PORTS=3000 bash ./scripts/local-close.sh",
17
17
  "docker:close": "PORTS=8000 bash ./scripts/local-close.sh",
18
18
  "test": "npm run build && node --test tests/*.test.mjs",
19
+ "test:e2e:101:live-full-cycle": "npm run build && RUN_LIVE_101_FULL_CYCLE_E2E=1 node --test tests/101-live-full-cycle-bff-runtime.e2e.test.mjs",
19
20
  "test:e2e:live-gw": "npm run build && RUN_LIVE_GW_E2E=1 node --test tests/live-gw-node-runtime.e2e.test.mjs",
20
21
  "test:e2e:live-gw:professional": "npm run build && RUN_LIVE_GW_E2E=1 LIVE_GW_E2E_SUITE=professional node --test tests/live-gw-node-runtime.e2e.test.mjs",
21
22
  "test:e2e:live-gw:individual": "npm run build && RUN_LIVE_GW_E2E=1 LIVE_GW_E2E_SUITE=individual node --test tests/live-gw-node-runtime.e2e.test.mjs",
@@ -23,11 +24,15 @@
23
24
  "test:e2e:live-gw:didcomm-plain": "npm run build && RUN_LIVE_GW_E2E=1 LIVE_GW_E2E_TRANSPORT=didcomm-plain node --test tests/live-gw-node-runtime.e2e.test.mjs",
24
25
  "test:e2e:live-gw:legacy-fhir": "npm run build && RUN_LIVE_GW_E2E=1 LIVE_GW_E2E_TRANSPORT=legacy-fhir node --test tests/live-gw-node-runtime.e2e.test.mjs",
25
26
  "test:e2e:live-gw:all": "npm run build && RUN_LIVE_GW_E2E=1 LIVE_GW_E2E_TRANSPORT=all node --test tests/live-gw-node-runtime.e2e.test.mjs",
27
+ "test:e2e:live-gw:host-transaction:clean": "bash ./scripts/run-live-gw-host-transaction-clean.sh",
28
+ "test:e2e:live-profile-runtime:individual": "npm run build && RUN_LIVE_PROFILE_RUNTIME_E2E=1 node --test tests/live-profile-runtime-individual.e2e.test.mjs",
29
+ "test:e2e:live-profile-runtime:professional": "npm run build && RUN_LIVE_PROFILE_RUNTIME_PROFESSIONAL_E2E=1 node --test tests/live-profile-runtime-professional.e2e.test.mjs",
30
+ "test:e2e:live-dialogue:consent-professional": "npm run build && RUN_LIVE_DIALOGUE_CONSENT_PROFESSIONAL_E2E=1 node --test tests/live-dialogue-consent-professional-access.e2e.test.mjs",
26
31
  "test:e2e:live-gw:clean": "bash ./scripts/run-live-gw-clean.sh"
27
32
  },
28
33
  "dependencies": {
29
- "gdc-common-utils-ts": "^1.24.0",
30
- "gdc-sdk-core-ts": "^0.11.0"
34
+ "gdc-common-utils-ts": "^2.0.6",
35
+ "gdc-sdk-core-ts": "^2.0.4"
31
36
  },
32
37
  "devDependencies": {
33
38
  "@types/node": "^20.14.10",