conductor-node 9.8.0 → 9.8.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 CHANGED
@@ -76,7 +76,6 @@ The response looks like the following:
76
76
  endUserSourceId: "1234-abcd",
77
77
  endUserEmail: 'danny@constructionco.com',
78
78
  endUserCompanyName: 'Construction Corp',
79
- lastHeartbeatAt: null
80
79
  }
81
80
  ```
82
81
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "9.8.0",
3
+ "version": "9.8.1",
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",
@@ -42,7 +42,6 @@ export type GraphqlIntegrationConnectionFragment = {
42
42
  endUserSourceId: string;
43
43
  endUserEmail: string;
44
44
  endUserCompanyName: string;
45
- lastHeartbeatAt: Date | null;
46
45
  };
47
46
  export type GraphqlGetIntegrationConnectionQueryVariables = Exact<{
48
47
  integrationConnectionId: Scalars["ID"];
@@ -54,7 +53,6 @@ export type GraphqlGetIntegrationConnectionQuery = {
54
53
  endUserSourceId: string;
55
54
  endUserEmail: string;
56
55
  endUserCompanyName: string;
57
- lastHeartbeatAt: Date | null;
58
56
  };
59
57
  };
60
58
  export type GraphqlGetIntegrationConnectionsQueryVariables = Exact<{
@@ -67,7 +65,6 @@ export type GraphqlGetIntegrationConnectionsQuery = {
67
65
  endUserSourceId: string;
68
66
  endUserEmail: string;
69
67
  endUserCompanyName: string;
70
- lastHeartbeatAt: Date | null;
71
68
  }>;
72
69
  };
73
70
  export type GraphqlCreateIntegrationConnectionMutationVariables = Exact<{
@@ -81,7 +78,6 @@ export type GraphqlCreateIntegrationConnectionMutation = {
81
78
  endUserSourceId: string;
82
79
  endUserEmail: string;
83
80
  endUserCompanyName: string;
84
- lastHeartbeatAt: Date | null;
85
81
  };
86
82
  };
87
83
  };
@@ -101,7 +97,7 @@ export type GraphqlSendIntegrationRequestMutation = {
101
97
  response: object;
102
98
  };
103
99
  };
104
- export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserSourceId\n endUserEmail\n endUserCompanyName\n lastHeartbeatAt\n}\n ";
100
+ export declare const IntegrationConnectionFragmentDoc = "\n fragment IntegrationConnection on IntegrationConnection {\n id\n integrationKey\n endUserSourceId\n endUserEmail\n endUserCompanyName\n}\n ";
105
101
  export declare const GetIntegrationConnectionDocument: string;
106
102
  export declare const GetIntegrationConnectionsDocument: string;
107
103
  export declare const CreateIntegrationConnectionDocument: string;
@@ -8,7 +8,6 @@ exports.IntegrationConnectionFragmentDoc = `
8
8
  endUserSourceId
9
9
  endUserEmail
10
10
  endUserCompanyName
11
- lastHeartbeatAt
12
11
  }
13
12
  `;
14
13
  exports.GetIntegrationConnectionDocument = `
@@ -12,7 +12,7 @@ function checkForUpdates() {
12
12
  .toString()
13
13
  .trim();
14
14
  if (currentVersion !== latestVersion) {
15
- console.warn(`⚠️ A new version of Conductor is available! You are using "${package_json_1.default.name}" version ${currentVersion} but the latest version is ${latestVersion}. Please run "yarn upgrade ${package_json_1.default.name} --latest" to update.`);
15
+ console.warn(`⚠️ A new release of Conductor is available: ${currentVersion} -> ${latestVersion}. To update, run: yarn upgrade ${package_json_1.default.name} --latest`);
16
16
  }
17
17
  }
18
18
  exports.checkForUpdates = checkForUpdates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "9.8.0",
3
+ "version": "9.8.1",
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",