conductor-node 7.3.1 → 7.3.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 +2 -2
- package/dist/package.json +1 -1
- package/dist/src/Client.d.ts +2 -2
- package/dist/src/Client.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,8 +46,8 @@ const newQbdConnection = await conductor.createIntegrationConnection({
|
|
|
46
46
|
// will be sent. Must be distinct from your other connections for the
|
|
47
47
|
// same `integrationKey`.
|
|
48
48
|
endUserEmail: "danny@constructionco.com",
|
|
49
|
-
// Your end-user's name that will be shown elsewhere in Conductor.
|
|
50
|
-
|
|
49
|
+
// Your end-user's company name that will be shown elsewhere in Conductor.
|
|
50
|
+
endUserCompanyName: "Construction Corp",
|
|
51
51
|
});
|
|
52
52
|
```
|
|
53
53
|
|
package/dist/package.json
CHANGED
package/dist/src/Client.d.ts
CHANGED
|
@@ -25,8 +25,8 @@ export default class Client {
|
|
|
25
25
|
* @param input.endUserEmail Your end-user's email address for identification
|
|
26
26
|
* only. No emails will be sent. Must be distinct from your other connections
|
|
27
27
|
* for the same integration.
|
|
28
|
-
* @param input.endUserCompanyName Your end-user's name that will be
|
|
29
|
-
* in Conductor.
|
|
28
|
+
* @param input.endUserCompanyName Your end-user's company name that will be
|
|
29
|
+
* shown elsewhere in Conductor.
|
|
30
30
|
* @returns The newly created integration connection.
|
|
31
31
|
*/
|
|
32
32
|
createIntegrationConnection(input: {
|
package/dist/src/Client.js
CHANGED
|
@@ -56,8 +56,8 @@ class Client {
|
|
|
56
56
|
* @param input.endUserEmail Your end-user's email address for identification
|
|
57
57
|
* only. No emails will be sent. Must be distinct from your other connections
|
|
58
58
|
* for the same integration.
|
|
59
|
-
* @param input.endUserCompanyName Your end-user's name that will be
|
|
60
|
-
* in Conductor.
|
|
59
|
+
* @param input.endUserCompanyName Your end-user's company name that will be
|
|
60
|
+
* shown elsewhere in Conductor.
|
|
61
61
|
* @returns The newly created integration connection.
|
|
62
62
|
*/
|
|
63
63
|
async createIntegrationConnection(input) {
|
package/package.json
CHANGED