gdc-sdk-node-ts 2.1.1 → 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.
Files changed (43) hide show
  1. package/README.md +11 -5
  2. package/dist/backend-profile-workspace.d.ts +48 -0
  3. package/dist/backend-profile-workspace.js +91 -0
  4. package/dist/index.d.ts +1 -0
  5. package/dist/index.js +1 -0
  6. package/dist/individual-controller-backend-runtime.d.ts +6 -1
  7. package/dist/individual-controller-backend-runtime.js +7 -0
  8. package/dist/node-runtime-client.d.ts +18 -27
  9. package/dist/node-runtime-client.js +230 -461
  10. package/dist/orchestration/client-port.d.ts +4 -2
  11. package/dist/orchestration/individual-controller-sdk.d.ts +42 -9
  12. package/dist/orchestration/individual-controller-sdk.js +48 -8
  13. package/dist/orchestration/individual-member-sdk.d.ts +25 -0
  14. package/dist/orchestration/individual-member-sdk.js +29 -0
  15. package/dist/orchestration/personal-sdk.d.ts +3 -1
  16. package/dist/orchestration/personal-sdk.js +4 -0
  17. package/dist/orchestration/professional-sdk.d.ts +36 -1
  18. package/dist/orchestration/professional-sdk.js +43 -0
  19. package/dist/professional-backend-runtime.d.ts +6 -1
  20. package/dist/professional-backend-runtime.js +7 -0
  21. package/dist/profile-workspace.d.ts +12 -0
  22. package/dist/profile-workspace.js +15 -0
  23. package/dist/resource-operations.d.ts +82 -25
  24. package/dist/resource-operations.js +190 -3
  25. package/dist/runtime-client-paths.d.ts +81 -0
  26. package/dist/runtime-client-paths.js +95 -0
  27. package/dist/runtime-consent.d.ts +7 -0
  28. package/dist/runtime-consent.js +21 -0
  29. package/dist/runtime-host-submission.d.ts +62 -0
  30. package/dist/runtime-host-submission.js +82 -0
  31. package/dist/runtime-http-trace.d.ts +4 -0
  32. package/dist/runtime-http-trace.js +44 -0
  33. package/dist/runtime-message.d.ts +10 -0
  34. package/dist/runtime-message.js +19 -0
  35. package/dist/runtime-paths.d.ts +12 -0
  36. package/dist/runtime-paths.js +41 -0
  37. package/dist/runtime-route-context.d.ts +20 -0
  38. package/dist/runtime-route-context.js +68 -0
  39. package/dist/runtime-transport.d.ts +22 -0
  40. package/dist/runtime-transport.js +91 -0
  41. package/dist/smart-token.d.ts +8 -29
  42. package/dist/smart-token.js +28 -3
  43. package/package.json +3 -3
package/README.md CHANGED
@@ -7,7 +7,10 @@ execution adapters, or orchestration tests.
7
7
  Short rule:
8
8
 
9
9
  - `101` tests must read like executable tutorials
10
- - shared fixtures/types belong in `gdc-common-utils-ts`, not as local literals
10
+ - `gdc-common-utils-ts` owns the canonical step-by-step editors/readers,
11
+ shared fixtures, and reusable payload examples
12
+ - `gdc-sdk-node-ts` starts after that shared authoring step and at
13
+ `ProfileRuntime -> loadProfile(...) -> workspace/session -> actor facade`
11
14
  in node runtime tests
12
15
 
13
16
  Node runtime package for consuming the shared GDC SDK contracts against real
@@ -69,7 +72,8 @@ If you are integrating this package for the first time, open these in order:
69
72
  2. [docs/101-SDK_INTEGRATION.md](./docs/101-SDK_INTEGRATION.md)
70
73
  Real backend setup plus the public runtime entrypoints:
71
74
  `HostOnboardingSdk`, `OrganizationControllerSdk`,
72
- `IndividualControllerSdk`, `ProfessionalSdk`, and route-context usage.
75
+ `IndividualControllerSdk`, `ProfessionalSdk`, route-context usage, and the
76
+ canonical `ProfileRuntime -> loadProfile(...) -> workspace/session -> actor facade -> submit/poll` shape.
73
77
  3. [tests/101-live-full-cycle-bff-runtime.e2e.test.mjs](./tests/101-live-full-cycle-bff-runtime.e2e.test.mjs)
74
78
  Canonical live backend/BFF walkthrough on a fresh local GW lifecycle:
75
79
  host/tenant activation, employee provisioning, individual bootstrap,
@@ -194,7 +198,8 @@ Current live `101` flow covered by the test suite:
194
198
  2. provision one professional employee through the organization controller
195
199
  3. load the individual-controller profile and bootstrap one hosted individual
196
200
  4. confirm the returned order and verify the invoice bundle projection
197
- 5. ingest one IPS/clinical `Communication` through the individual controller
201
+ 5. ingest one IPS/clinical `Communication` whose attached payload is the
202
+ canonical document `Bundle` with `Composition` first entry
198
203
  6. grant professional consent for one patient-summary section
199
204
  7. load the professional profile and request one SMART token
200
205
  8. read the allowed IPS bundle as the professional actor
@@ -293,8 +298,9 @@ npm run test:e2e:live-gw
293
298
 
294
299
  Implementation note:
295
300
 
296
- - the public runtime contract is still `Bundle/_search`
297
- - `gdc-sdk-node-ts` submits that request as-is
301
+ - the beginner search story stays on FHIR parameters such as
302
+ `Composition.section`
303
+ - `gdc-sdk-node-ts` submits the search request through the runtime facade
298
304
  - GW CORE resolves it internally from indexed subject sections and returns the
299
305
  consolidated IPS bundle document
300
306
 
@@ -0,0 +1,48 @@
1
+ import type { ProfileLoadRequest, SubjectIndexCompositionRequest, SubjectIndexConnectionRequest, TrustedDeviceRegistrationRequest } from 'gdc-sdk-core-ts';
2
+ import type { BackendLoadedActorProfile, BackendProfileRuntimeClient, BackendSubjectIndexCompositionResult, BackendSubjectIndexConnectionResult, BackendTrustedDeviceRegistrationResult } from './backend-profile-runtime.js';
3
+ import { type OrganizationControllerProfileWorkspace, type ProfessionalProfileWorkspace } from './profile-workspace.js';
4
+ import { HostOnboardingSdk } from './orchestration/host-onboarding-sdk.js';
5
+ import { IndividualControllerSdk } from './orchestration/individual-controller-sdk.js';
6
+ import { IndividualMemberSdk } from './orchestration/individual-member-sdk.js';
7
+ import { OrganizationControllerSdk } from './orchestration/organization-controller-sdk.js';
8
+ import { OrganizationEmployeeSdk } from './orchestration/organization-employee-sdk.js';
9
+ import { ProfessionalSdk } from './orchestration/professional-sdk.js';
10
+ /**
11
+ * Backend loaded-profile workspace that keeps the canonical
12
+ * `loadProfile -> workspace/session -> actor facade` story explicit.
13
+ */
14
+ export declare class LoadedProfileWorkspace {
15
+ private readonly profileRuntime;
16
+ readonly profile: BackendLoadedActorProfile;
17
+ constructor(profileRuntime: BackendProfileRuntimeClient, profile: BackendLoadedActorProfile);
18
+ close(): Promise<void>;
19
+ registerTrustedDevice(input: TrustedDeviceRegistrationRequest): Promise<BackendTrustedDeviceRegistrationResult>;
20
+ connectToSubjectIndex(input: SubjectIndexConnectionRequest): Promise<BackendSubjectIndexConnectionResult>;
21
+ getSubjectIndexComposition(input: SubjectIndexCompositionRequest): Promise<BackendSubjectIndexCompositionResult>;
22
+ asHostOnboarding(): HostOnboardingSdk;
23
+ asOrganizationController(): OrganizationControllerSdk;
24
+ asOrganizationEmployee(): OrganizationEmployeeSdk;
25
+ asIndividualController(): IndividualControllerSdk;
26
+ asIndividualMember(): IndividualMemberSdk;
27
+ asProfessional(): ProfessionalSdk;
28
+ createOrganizationControllerWorkspace(): OrganizationControllerProfileWorkspace;
29
+ createProfessionalWorkspace(): ProfessionalProfileWorkspace;
30
+ }
31
+ export declare class ProfileRuntime {
32
+ private readonly profileRuntime;
33
+ constructor(profileRuntime: BackendProfileRuntimeClient);
34
+ loadProfile(input: ProfileLoadRequest): Promise<LoadedProfileWorkspace>;
35
+ }
36
+ export declare function createLoadedProfileWorkspace(profileRuntime: BackendProfileRuntimeClient, profile: BackendLoadedActorProfile): LoadedProfileWorkspace;
37
+ /**
38
+ * @deprecated Prefer `LoadedProfileWorkspace`.
39
+ */
40
+ export { LoadedProfileWorkspace as BackendProfileWorkspace };
41
+ /**
42
+ * @deprecated Prefer `ProfileRuntime`.
43
+ */
44
+ export { ProfileRuntime as BackendProfileWorkspaceRuntime };
45
+ /**
46
+ * @deprecated Prefer `createLoadedProfileWorkspace`.
47
+ */
48
+ export { createLoadedProfileWorkspace as createBackendProfileWorkspace };
@@ -0,0 +1,91 @@
1
+ // Copyright 2026 Antifraud Services Inc. under the Apache License, Version 2.0.
2
+ import { ActorKinds } from 'gdc-common-utils-ts/constants/actor-session';
3
+ import { closeBackendProfile, connectBackendToSubjectIndex, getBackendSubjectIndexComposition, registerBackendTrustedDevice, } from './backend-profile-runtime.js';
4
+ import { createOrganizationControllerProfileWorkspace, createProfessionalProfileWorkspace, } from './profile-workspace.js';
5
+ function requireActorSession(profile, actorKind) {
6
+ const session = profile.actorSessions.find((candidate) => candidate.actorKind === actorKind);
7
+ if (!session) {
8
+ throw new Error(`Loaded backend profile does not expose actor kind '${actorKind}'.`);
9
+ }
10
+ return session;
11
+ }
12
+ /**
13
+ * Backend loaded-profile workspace that keeps the canonical
14
+ * `loadProfile -> workspace/session -> actor facade` story explicit.
15
+ */
16
+ export class LoadedProfileWorkspace {
17
+ constructor(profileRuntime, profile) {
18
+ this.profileRuntime = profileRuntime;
19
+ this.profile = profile;
20
+ }
21
+ close() {
22
+ return closeBackendProfile(this.profileRuntime, String(this.profile.descriptor.profileDid || this.profile.descriptor.profileId));
23
+ }
24
+ registerTrustedDevice(input) {
25
+ return registerBackendTrustedDevice(this.profileRuntime, input);
26
+ }
27
+ connectToSubjectIndex(input) {
28
+ return connectBackendToSubjectIndex(this.profileRuntime, input);
29
+ }
30
+ getSubjectIndexComposition(input) {
31
+ return getBackendSubjectIndexComposition(this.profileRuntime, input);
32
+ }
33
+ asHostOnboarding() {
34
+ return requireActorSession(this.profile, ActorKinds.HostOnboarding).asHostOnboarding();
35
+ }
36
+ asOrganizationController() {
37
+ return requireActorSession(this.profile, ActorKinds.OrganizationController).asOrganizationController();
38
+ }
39
+ asOrganizationEmployee() {
40
+ return requireActorSession(this.profile, ActorKinds.OrganizationEmployee).asOrganizationEmployee();
41
+ }
42
+ asIndividualController() {
43
+ return requireActorSession(this.profile, ActorKinds.IndividualController).asIndividualController();
44
+ }
45
+ asIndividualMember() {
46
+ return requireActorSession(this.profile, ActorKinds.IndividualMember).asIndividualMember();
47
+ }
48
+ asProfessional() {
49
+ return requireActorSession(this.profile, ActorKinds.Professional).asProfessional();
50
+ }
51
+ createOrganizationControllerWorkspace() {
52
+ const session = requireActorSession(this.profile, ActorKinds.OrganizationController);
53
+ return createOrganizationControllerProfileWorkspace({
54
+ profile: this.profile,
55
+ session,
56
+ sdk: this.asOrganizationController(),
57
+ });
58
+ }
59
+ createProfessionalWorkspace() {
60
+ const session = requireActorSession(this.profile, ActorKinds.Professional);
61
+ return createProfessionalProfileWorkspace({
62
+ profile: this.profile,
63
+ session,
64
+ sdk: this.asProfessional(),
65
+ });
66
+ }
67
+ }
68
+ export class ProfileRuntime {
69
+ constructor(profileRuntime) {
70
+ this.profileRuntime = profileRuntime;
71
+ }
72
+ async loadProfile(input) {
73
+ const profile = await this.profileRuntime.loadProfile(input);
74
+ return new LoadedProfileWorkspace(this.profileRuntime, profile);
75
+ }
76
+ }
77
+ export function createLoadedProfileWorkspace(profileRuntime, profile) {
78
+ return new LoadedProfileWorkspace(profileRuntime, profile);
79
+ }
80
+ /**
81
+ * @deprecated Prefer `LoadedProfileWorkspace`.
82
+ */
83
+ export { LoadedProfileWorkspace as BackendProfileWorkspace };
84
+ /**
85
+ * @deprecated Prefer `ProfileRuntime`.
86
+ */
87
+ export { ProfileRuntime as BackendProfileWorkspaceRuntime };
88
+ /**
89
+ * @deprecated Prefer `createLoadedProfileWorkspace`.
90
+ */
91
+ export { createLoadedProfileWorkspace as createBackendProfileWorkspace };
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export * from './runtime-contracts.js';
3
3
  export * from './identity-bootstrap.js';
4
4
  export * from './async-polling.js';
5
5
  export * from './backend-profile-runtime.js';
6
+ export * from './backend-profile-workspace.js';
6
7
  export * from './individual-controller-backend-runtime.js';
7
8
  export * from './organization-controller-backend-runtime.js';
8
9
  export * from './professional-backend-runtime.js';
package/dist/index.js CHANGED
@@ -4,6 +4,7 @@ export * from './runtime-contracts.js';
4
4
  export * from './identity-bootstrap.js';
5
5
  export * from './async-polling.js';
6
6
  export * from './backend-profile-runtime.js';
7
+ export * from './backend-profile-workspace.js';
7
8
  export * from './individual-controller-backend-runtime.js';
8
9
  export * from './organization-controller-backend-runtime.js';
9
10
  export * from './professional-backend-runtime.js';
@@ -4,7 +4,7 @@ import type { IndividualOrganizationConfirmOrderInput, RouteContext } from './in
4
4
  import type { IndividualOrganizationBootstrapInput, IndividualOrganizationStartResult } from './individual-start.js';
5
5
  import type { EnsureFamilyOrganizationRegistrationInput, EnsureFamilyOrganizationRegistrationResult } from './family-organization-registration.js';
6
6
  import type { FamilyOrganizationSearchInput } from './family-organization-search.js';
7
- import type { ClinicalBundleSearchInput } from './resource-operations.js';
7
+ import type { BlockchainArtifactRegistrationInput, ClinicalBundleSearchInput } from './resource-operations.js';
8
8
  import { type BackendIndividualControllerProfile, type BackendProfileRuntimeClient } from './backend-profile-runtime.js';
9
9
  import type { ProfileLoadRequest } from 'gdc-sdk-core-ts';
10
10
  /**
@@ -56,4 +56,9 @@ export declare class IndividualControllerBackendRuntime {
56
56
  * individual-controller facade.
57
57
  */
58
58
  getLatestIps(profile: BackendIndividualControllerProfile, ctx: RouteContext, input: Omit<ClinicalBundleSearchInput, 'includedTypes'>): Promise<SubmitAndPollResult>;
59
+ /**
60
+ * Registers one FHIR resource or raw artifact on blockchain before it is
61
+ * attached to a subject communication.
62
+ */
63
+ registerBlockchainArtifactAndUpdateIndex(profile: BackendIndividualControllerProfile, ctx: RouteContext, input: BlockchainArtifactRegistrationInput): Promise<SubmitAndPollResult>;
59
64
  }
@@ -64,4 +64,11 @@ export class IndividualControllerBackendRuntime {
64
64
  getLatestIps(profile, ctx, input) {
65
65
  return profile.sdk.getLatestIps(ctx, input);
66
66
  }
67
+ /**
68
+ * Registers one FHIR resource or raw artifact on blockchain before it is
69
+ * attached to a subject communication.
70
+ */
71
+ registerBlockchainArtifactAndUpdateIndex(profile, ctx, input) {
72
+ return profile.sdk.registerBlockchainArtifactAndUpdateIndex(ctx, input);
73
+ }
67
74
  }
@@ -1,5 +1,6 @@
1
1
  import type { OrganizationDidBindingInput } from 'gdc-sdk-core-ts';
2
2
  import type { AppInfo } from 'gdc-sdk-core-ts';
3
+ import type { IndividualOrganizationLifecycleInput } from 'gdc-sdk-core-ts';
3
4
  import { type ResolvedAppInfo } from 'gdc-sdk-core-ts';
4
5
  import { type HostRouteContext, type HostedTenantLifecycleInput } from './host-onboarding.js';
5
6
  import type { NodeLegalOrganizationVerificationTransactionInput, NodeOrganizationDidBindingInput, NodeOrganizationActivationInput } from './orchestration/client-port.js';
@@ -9,7 +10,7 @@ import { type FamilyOrganizationSearchInput } from './family-organization-search
9
10
  import { type SmartTokenRequestInput } from './smart-token.js';
10
11
  import { type OrganizationLicenseOrderConfirmInput } from './organization-license-order.js';
11
12
  import { type IndividualOrganizationBootstrapInput, type IndividualOrganizationStartResult } from './individual-start.js';
12
- import { type CommunicationIngestionInput, type CommunicationParticipantRuntimeSearchInput, type ClinicalBundleSearchInput, type GrantProfessionalAccessInput, type GrantProfessionalAccessResult, type IndividualMemberLifecycleInput, type IndividualOrganizationLifecycleInput, type LicenseListRuntimeSearchInput, type LicenseOfferRuntimeSearchInput, type LicenseOrderRuntimeSearchInput, type OrganizationEmployeeCreationInput, type OrganizationEmployeeLifecycleInput, type OrganizationEmployeeSearchInput, type RevokeProfessionalAccessInput, type RevokeProfessionalAccessResult, type RelatedPersonUpsertInput } from './resource-operations.js';
13
+ import { type CommunicationIngestionInput, type BlockchainArtifactRegistrationInput, type VitalSignBatchCommunicationFromSearchResponseInput, type CommunicationParticipantRuntimeSearchInput, type ClinicalBundleSearchInput, type GrantProfessionalAccessInput, type GrantProfessionalAccessResult, type IndividualMemberLifecycleInput, type LicenseListRuntimeSearchInput, type LicenseOfferRuntimeSearchInput, type LicenseOrderRuntimeSearchInput, type OrganizationEmployeeCreationInput, type OrganizationEmployeeLifecycleInput, type OrganizationEmployeeSearchInput, type RevokeProfessionalAccessInput, type RevokeProfessionalAccessResult, type RelatedPersonUpsertInput } from './resource-operations.js';
13
14
  import type { LegalOrganizationOrderInput } from './host-onboarding.js';
14
15
  import type { SmartTokenExchangeResult } from './smart-token.js';
15
16
  import type { NodeRuntimeClient, PollOptions, PollResult, SubmitAndPollResult, SubmitPayload, SubmitResponse } from './orchestration/client-port.js';
@@ -70,7 +71,8 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
70
71
  private readonly requestTimeoutMs;
71
72
  private readonly httpTraceFile?;
72
73
  private readonly tokenCache;
73
- private warnedDefaultHostNetwork;
74
+ private readonly paths;
75
+ private get transportConfig();
74
76
  /**
75
77
  * @param options.baseUrl Gateway base URL without trailing slash.
76
78
  * @param options.interopMode Optional runtime interoperability mode from the SDK config layer (`demo`, `compat`, `strict`).
@@ -339,10 +341,8 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
339
341
  searchIndividualLicenseOrders(ctx: RouteContext, input: LicenseOrderRuntimeSearchInput): Promise<SubmitAndPollResult>;
340
342
  listIndividualLicenseOrders(ctx: RouteContext, input?: LicenseOrderRuntimeSearchInput): Promise<SubmitAndPollResult>;
341
343
  /**
342
- * Placeholder for a future GW CORE member/caregiver lifecycle contract.
343
- *
344
- * Current GW CORE does not yet expose a stable lifecycle route for
345
- * `RelatedPerson` / individual-member purge.
344
+ * Purges one previously disabled `RelatedPerson` membership/contact through
345
+ * the explicit public purge path.
346
346
  */
347
347
  purgeIndividualMember(ctx: RouteContext, input: IndividualMemberLifecycleInput, pollOptions?: PollOptions): Promise<SubmitAndPollResult>;
348
348
  /**
@@ -376,6 +376,16 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
376
376
  * @param input Communication payload plus route/format options.
377
377
  */
378
378
  ingestCommunicationAndUpdateIndex(ctx: RouteContext, input: CommunicationIngestionInput): Promise<SubmitAndPollResult>;
379
+ /**
380
+ * Registers one FHIR resource or raw artifact on blockchain and waits until
381
+ * GW has indexed the resulting DocumentReference projection.
382
+ */
383
+ registerBlockchainArtifactAndUpdateIndex(ctx: RouteContext, input: BlockchainArtifactRegistrationInput): Promise<SubmitAndPollResult>;
384
+ /**
385
+ * Builds and submits a Communication carrying the selected vital-sign day
386
+ * batch artifacts from a paginated search response.
387
+ */
388
+ submitVitalSignBatchCommunicationFromSearchResponse(ctx: RouteContext, input: VitalSignBatchCommunicationFromSearchResponseInput): Promise<SubmitAndPollResult>;
379
389
  /**
380
390
  * Searches communication channel records by subject and participant
381
391
  * identifiers through `Communication/_search`.
@@ -424,28 +434,11 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
424
434
  private buildHeaders;
425
435
  private fetchWithTimeout;
426
436
  private parseResponseBody;
427
- private requireRouteContext;
428
- private routeCtxFromInput;
429
437
  /**
430
438
  * Reuses the shared bundle business contract while keeping attachment
431
439
  * transport fields at the DIDComm/plaintext message layer expected by GW.
432
440
  */
433
441
  private wrapBundleAsGatewayTransactionMessage;
434
- private hostRegistryPath;
435
- /**
436
- * Resolves the host route segment without allowing tenant-route `sector`
437
- * semantics to leak into host onboarding.
438
- *
439
- * Step by step:
440
- * - host routes use `/host/cds-{jurisdiction}/v1/{host-network}`
441
- * - tenant routes use `/{tenantId}/cds-{jurisdiction}/v1/{tenant-sector}`
442
- * - passing the host segment under `sector` is rejected because that name is
443
- * reserved for tenant business sectors such as `health-care`
444
- * - compatibility code may still pass `hostNetworkOrTenantSector`, but the
445
- * value must still be one of the allowed host runtime/network selectors
446
- */
447
- private requireHostRouteContext;
448
- private isSupportedHostNetwork;
449
442
  hostRegistryOrganizationTransactionPath(ctx?: HostRouteContext): string;
450
443
  hostRegistryOrganizationTransactionPollPath(ctx?: HostRouteContext): string;
451
444
  hostRegistryOrganizationIssuePath(ctx?: HostRouteContext): string;
@@ -500,6 +493,8 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
500
493
  individualCommunicationPollPath(ctx: RouteContext, format: 'org.hl7.fhir.api' | 'org.hl7.fhir.r4'): string;
501
494
  individualCommunicationSearchPath(ctx: RouteContext): string;
502
495
  individualCommunicationSearchPollPath(ctx: RouteContext): string;
496
+ individualDocumentReferenceBatchPath(ctx: RouteContext): string;
497
+ individualDocumentReferencePollPath(ctx: RouteContext): string;
503
498
  individualBundleSearchPath(ctx: RouteContext): string;
504
499
  individualBundleSearchPollPath(ctx: RouteContext): string;
505
500
  identityTokenExchangePath(ctx: RouteContext): string;
@@ -508,10 +503,6 @@ export declare class HttpRuntimeClient implements NodeRuntimeClient {
508
503
  identityDeviceDcrPollPath(ctx: RouteContext): string;
509
504
  identityOpenIdSmartTokenPath(ctx: RouteContext): string;
510
505
  identityOpenIdSmartTokenPollPath(ctx: RouteContext): string;
511
- private appendHttpTrace;
512
- private parseTraceBody;
513
- private parseTraceRawText;
514
- private redactTraceValue;
515
506
  }
516
507
  /**
517
508
  * @deprecated Prefer `HttpRuntimeClient`.