@orchesty/connector-wedo
v2.0.0
Published
[](https://www.npmjs.com/package/@orchesty/connector-wedo) [](https://github.com/Orchesty/orchesty-nodejs-connecto
Downloads
151
Readme
Wedo Connector
An Orchesty connector for Wedo (InTime bridge), a Czech logistics and parcel shipment tracking platform.
Application Type
Basic
This connector authenticates using a username and password encoded as a Base64 credential in the Authorization header.
| Field | Description |
|---|---|
| userName | Your Wedo/InTime bridge username |
| password | Your Wedo/InTime bridge password |
Components
| Class | Type | Description |
|---|---|---|
| WedoGetPackageBatch | Batch | Fetches all packages via GET /package and emits each as a batch item |
Setup
Credentials
- Contact your Wedo/InTime account manager to obtain API access credentials.
- In Orchesty, open the Wedo application settings and enter your username and password.
Installation & Usage
Install the package:
npm install @orchesty/connector-wedo @orchesty/nodejs-sdk
# or
pnpm add @orchesty/connector-wedo @orchesty/nodejs-sdkRegister the application and nodes in your Orchesty DI container:
import { container } from '@orchesty/nodejs-sdk';
import WedoApplication from '@orchesty/connector-wedo/dist/WedoApplication';
import WedoGetPackageBatch from '@orchesty/connector-wedo/dist/Batch/WedoGetPackageBatch';
const app = new WedoApplication();
container.setApplication(app);
container.setNode(new WedoGetPackageBatch(), app);License
This connector is released under the Apache License 2.0. See the LICENSE file for the full license text.
Contributing
Contributions are welcome! This connector is part of the open-source Orchesty Node.js Connectors monorepo.
For guidelines on how to create or update connectors — including project setup, coding conventions, and how to write tests — please refer to the Contributing to Connectors guide.
All contributions should include:
- Source code in
src/following the existing connector structure - Tests in
src/**/__tests__/withinput.json,mock.json, andoutput.jsonfixtures - An updated
CHANGELOG.mdentry
