conductor-node 7.3.1 → 7.3.3
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
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
|
|
|
@@ -70,7 +70,7 @@ The response includes the following:
|
|
|
70
70
|
id: '{UUID}',
|
|
71
71
|
integrationKey: 'quickbooks-desktop',
|
|
72
72
|
endUserEmail: 'danny@constructionco.com',
|
|
73
|
-
|
|
73
|
+
endUserCompanyName: 'Construction Corp',
|
|
74
74
|
lastHeartbeatAt: null
|
|
75
75
|
}
|
|
76
76
|
}
|
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) {
|
|
@@ -87,7 +87,7 @@ export type GraphqlIntegrationConnectionFragment = {
|
|
|
87
87
|
id: string;
|
|
88
88
|
integrationKey: string;
|
|
89
89
|
endUserEmail: string;
|
|
90
|
-
|
|
90
|
+
endUserCompanyName: string;
|
|
91
91
|
lastHeartbeatAt: Date | null;
|
|
92
92
|
};
|
|
93
93
|
export type GraphqlGetIntegrationConnectionQueryVariables = Exact<{
|
|
@@ -98,7 +98,7 @@ export type GraphqlGetIntegrationConnectionQuery = {
|
|
|
98
98
|
id: string;
|
|
99
99
|
integrationKey: string;
|
|
100
100
|
endUserEmail: string;
|
|
101
|
-
|
|
101
|
+
endUserCompanyName: string;
|
|
102
102
|
lastHeartbeatAt: Date | null;
|
|
103
103
|
};
|
|
104
104
|
};
|
|
@@ -110,7 +110,7 @@ export type GraphqlGetIntegrationConnectionsQuery = {
|
|
|
110
110
|
id: string;
|
|
111
111
|
integrationKey: string;
|
|
112
112
|
endUserEmail: string;
|
|
113
|
-
|
|
113
|
+
endUserCompanyName: string;
|
|
114
114
|
lastHeartbeatAt: Date | null;
|
|
115
115
|
}>;
|
|
116
116
|
};
|
|
@@ -125,7 +125,7 @@ export type GraphqlCreateIntegrationConnectionMutation = {
|
|
|
125
125
|
id: string;
|
|
126
126
|
integrationKey: string;
|
|
127
127
|
endUserEmail: string;
|
|
128
|
-
|
|
128
|
+
endUserCompanyName: string;
|
|
129
129
|
lastHeartbeatAt: Date | null;
|
|
130
130
|
};
|
|
131
131
|
};
|
|
@@ -157,7 +157,7 @@ export type GraphqlIntegrationRequestQueryVariables = Exact<{
|
|
|
157
157
|
export type GraphqlIntegrationRequestQuery = {
|
|
158
158
|
integrationRequest: object;
|
|
159
159
|
};
|
|
160
|
-
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n
|
|
160
|
+
export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserEmail\n endUserCompanyName\n lastHeartbeatAt\n}\n ";
|
|
161
161
|
export declare const GetIntegrationConnectionDocument: string;
|
|
162
162
|
export declare const GetIntegrationConnectionsDocument: string;
|
|
163
163
|
export declare const CreateIntegrationConnectionDocument: string;
|
package/package.json
CHANGED