2.5.0 • Published 2 weeks ago
@or-sdk/data-hub-svc
Licence
Apache-2.0
Version
2.5.0
Deps
2
Size
79 kB
Vulns
0
Weekly
0
@or-sdk/data-hub-svc
OneReach SDK client for Data Hub Svc.
When to use
- Use this package when integrating with the Data Hub Svc capability on the OneReach platform.
- Use its typed client and exported models instead of hand-writing requests to that service.
When not to use
- Do not use it for a different platform capability; choose the dedicated
@or-sdk/*package instead. - Do not use it for generic third-party HTTP calls.
Installation
$ npm i @or-sdk/data-hub-svc
Usage
import { DataHubSvc } from '@or-sdk/data-hub-svc'
// with direct api url
const dataHubSvc = new DataHubSvc({
token: 'my-account-token-string',
dataHubSvcUrl: 'http://example.data-hub-svc/endpoint'
});
// with service discovery(slower)
const dataHubSvc = new DataHubSvc({
token: 'my-account-token-string',
discoveryUrl: 'http://example.discovery/endpoint'
});
Configuration
- Prefer
dataHubSvcUrlwhen the service URL is known; it avoids a discovery request. - Use
discoveryUrlonly when the service URL is not available. - Provide
tokenas a bearer-token string or getter where supported.
Common pitfalls
- Keep the client token current when it can expire; a token getter is preferable where the constructor accepts one.
- Treat the generated TypeScript types as the authoritative contract for optional parameters and response shapes.
Method map
| Method | Purpose |
|---|---|
checkProgress(...) |
See the exported TypeScript signature for parameters and result. |
More detail
Full signatures and exported types are available in src/ and dist/types/.
Additional API reference
Methods below were missing from the package guide. Signatures and return types are taken directly from the exported source API.
DataHubSvc
| Method | Returns | Purpose |
|---|---|---|
makeRequest(params: CalApiParams) |
Promise<T> |
Make request |