conductor-node 7.3.6 → 7.4.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": "7.3.6",
3
+ "version": "7.4.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",
@@ -17,7 +17,8 @@
17
17
  "postpack": "rm -rf dist",
18
18
  "clean": "rm -rf dist package conductor-node-*.tgz tsconfig.tsbuildinfo",
19
19
  "gen:graphql-types": "yarn graphql-codegen --config ./src/graphql/codegenConfig.ts",
20
- "status": "yarn ts-node ./bin/logConnectionStatuses.ts"
20
+ "status": "yarn ts-node ./bin/logConnectionStatuses.ts",
21
+ "diff": "yarn pack && npm diff --diff=conductor-node@latest --diff=conductor-node-v$(node -p \"require('./package.json').version\").tgz && yarn clean"
21
22
  },
22
23
  "engines": {
23
24
  "node": ">=16"
@@ -55,13 +55,9 @@ export type GraphqlIntegrationConnection = {
55
55
  id: Scalars["ID"];
56
56
  integration: GraphqlIntegration;
57
57
  integrationKey: Scalars["String"];
58
- isActive: Scalars["Boolean"];
59
58
  lastHeartbeatAt: Maybe<Scalars["DateTime"]>;
60
59
  qbwcPassword: Scalars["String"];
61
60
  };
62
- export type GraphqlIntegrationConnectionIsActiveArgs = {
63
- secondsSinceLastActive: Scalars["Int"];
64
- };
65
61
  export type GraphqlMutation = {
66
62
  createIntegrationConnection: GraphqlCreateIntegrationConnectionResult;
67
63
  sendIntegrationRequest: GraphqlSendIntegrationRequestResult;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "7.3.6",
3
+ "version": "7.4.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",
@@ -17,7 +17,8 @@
17
17
  "postpack": "rm -rf dist",
18
18
  "clean": "rm -rf dist package conductor-node-*.tgz tsconfig.tsbuildinfo",
19
19
  "gen:graphql-types": "yarn graphql-codegen --config ./src/graphql/codegenConfig.ts",
20
- "status": "yarn ts-node ./bin/logConnectionStatuses.ts"
20
+ "status": "yarn ts-node ./bin/logConnectionStatuses.ts",
21
+ "diff": "yarn pack && npm diff --diff=conductor-node@latest --diff=conductor-node-v$(node -p \"require('./package.json').version\").tgz && yarn clean"
21
22
  },
22
23
  "engines": {
23
24
  "node": ">=16"