conductor-node 4.1.10 → 6.0.0

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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "4.1.10",
3
+ "version": "6.0.0",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-typed async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@ export default class Client {
16
16
  private readonly gqlClient;
17
17
  private readonly verbose;
18
18
  constructor(apiKey: string, { verbose, serverEnvironment }?: ClientOptions);
19
- getIntegrationConnection(integrationConnectionId: string): Promise<object>;
19
+ getIntegrationConnectionById(integrationConnectionId: string): Promise<object>;
20
20
  getIntegrationConnections(): Promise<object[]>;
21
21
  logConnectionStatuses(): Promise<void>;
22
22
  integrationRequest(integrationRequestParams: IntegrationRequestParams): Promise<object>;
@@ -27,9 +27,9 @@ class Client {
27
27
  });
28
28
  this.qbd = new QbdIntegration_1.default(this);
29
29
  }
30
- async getIntegrationConnection(integrationConnectionId) {
30
+ async getIntegrationConnectionById(integrationConnectionId) {
31
31
  const data = await this.request(`#graphql
32
- query GetIntegrationConnection($integrationConnectionId: ID!) {
32
+ query GetIntegrationConnectionById($integrationConnectionId: ID!) {
33
33
  integrationConnection(id: $integrationConnectionId) {
34
34
  id
35
35
  integration {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "4.1.10",
3
+ "version": "6.0.0",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-typed async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",