2.4.0 • Published 2 weeks ago
@or-sdk/step-templates
Licence
Apache-2.0
Version
2.4.0
Deps
3
Size
71 kB
Vulns
0
Weekly
0
@or-sdk/step-templates
OneReach SDK client for Step Templates.
When to use
- Use this package when integrating with the Step Templates 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/step-templates
Usage
import { StepTemplates } from '@or-sdk/step-templates'
// with direct api url
const stepTemplates = new StepTemplates({
token: 'my-account-token-string',
dataHubSvcUrl: 'http://example.data-hub-svc/endpoint'
});
// with service discovery(slower)
const stepTemplates = new StepTemplates({
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 |
|---|---|
listStepTemplates(...) |
See the exported TypeScript signature for parameters and result. |
getStepTemplateById(...) |
See the exported TypeScript signature for parameters and result. |
listPopularStepTemplateIds(...) |
See the exported TypeScript signature for parameters and result. |
download(...) |
See the exported TypeScript signature for parameters and result. |
listStepTemplatesByFlowId(...) |
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.
StepTemplates
| Method | Returns | Purpose |
|---|---|---|
getNewStepTemplate(stepId?: string) |
Promise<void> |
Generate new step template |