conductor-node 6.2.0 → 6.2.1
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.
- package/README.md +12 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,18 @@ const newAccount = await conductor.qbd.account.add(qbdConnections[0].id, {
|
|
|
54
54
|
});
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
### `createIntegrationConnection(qbwcUsername: string)`
|
|
58
|
+
|
|
59
|
+
🚧 Not yet enabled.
|
|
60
|
+
|
|
61
|
+
Create a new integration connection.
|
|
62
|
+
|
|
63
|
+
```ts
|
|
64
|
+
const newQbdConnection = await conductor.createIntegrationConnection(
|
|
65
|
+
"qbwc_username"
|
|
66
|
+
);
|
|
67
|
+
```
|
|
68
|
+
|
|
57
69
|
### `getIntegrationConnectionById(id: string)`
|
|
58
70
|
|
|
59
71
|
Fetch a single integration connection by id.
|
package/dist/package.json
CHANGED