conductor-node 7.1.0 → 7.1.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.
- package/README.md +13 -12
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Create a new integration-connection.
|
|
|
42
42
|
const newQbdConnection = await conductor.createIntegrationConnection({
|
|
43
43
|
integrationKey: "quickbooks-desktop",
|
|
44
44
|
endUserEmail: "danny@constructionco.com",
|
|
45
|
-
endUserName: "Construction Corp
|
|
45
|
+
endUserName: "Construction Corp",
|
|
46
46
|
});
|
|
47
47
|
```
|
|
48
48
|
|
|
@@ -50,21 +50,22 @@ The response includes the following:
|
|
|
50
50
|
|
|
51
51
|
```ts
|
|
52
52
|
{
|
|
53
|
-
// ❗
|
|
54
|
-
// that your end-user must download and open on their computer to
|
|
55
|
-
//
|
|
56
|
-
qwcFileDownloadUrl: 'https://production.api.conductor.is/qwc/
|
|
57
|
-
// ❗
|
|
58
|
-
// that your end-user must enter into QuickBooks Web
|
|
59
|
-
// loading the config file. This value will never be
|
|
60
|
-
|
|
53
|
+
// ❗ Display this URL to your end-user: The URL for the QWC config file
|
|
54
|
+
// that your end-user must download and open on their computer to
|
|
55
|
+
// connect their QBD instance to Conductor.
|
|
56
|
+
qwcFileDownloadUrl: 'https://production.api.conductor.is/qwc/{UUID}'
|
|
57
|
+
// ❗ Display this password/access-code to your end-user: The unique
|
|
58
|
+
// password that your end-user must enter into QuickBooks Web
|
|
59
|
+
// Connector after loading the config file. This value will never be
|
|
60
|
+
// shown again.
|
|
61
|
+
qbwcPassword: '{unique-password}',
|
|
61
62
|
integrationConnection: {
|
|
62
|
-
// ❗
|
|
63
|
+
// ❗ Save this `id` to your database for executing requests to
|
|
63
64
|
// this end-user's integration in the future.
|
|
64
|
-
id: '
|
|
65
|
+
id: '{UUID}',
|
|
65
66
|
integrationKey: 'quickbooks-desktop',
|
|
66
67
|
endUserEmail: 'danny@constructionco.com',
|
|
67
|
-
endUserName: 'Construction Corp
|
|
68
|
+
endUserName: 'Construction Corp',
|
|
68
69
|
lastHeartbeatAt: null
|
|
69
70
|
}
|
|
70
71
|
}
|
package/dist/package.json
CHANGED
package/package.json
CHANGED