conductor-node 11.3.0 → 11.3.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/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.3.0",
3
+ "version": "11.3.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -14,9 +14,6 @@ export default class Client {
14
14
  readonly authSessions: AuthSessionsResource;
15
15
  /**
16
16
  * Executes any QuickBooks Desktop (QBD) API against the specified end-user.
17
- * See the official [QuickBooks Desktop API
18
- * Reference](https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop)
19
- * for a complete list of available APIs.
20
17
  */
21
18
  readonly qbd: QbdIntegration;
22
19
  private readonly httpClient;
@@ -11,7 +11,6 @@ const AuthSessionsResource_1 = __importDefault(require("./resources/AuthSessions
11
11
  const EndUsersResource_1 = __importDefault(require("./resources/EndUsersResource"));
12
12
  const IntegrationConnectionsResource_1 = __importDefault(require("./resources/IntegrationConnectionsResource"));
13
13
  const checkForUpdates_1 = require("./utils/checkForUpdates");
14
- const http_1 = require("./utils/http");
15
14
  const axios_1 = __importDefault(require("axios"));
16
15
  class Client {
17
16
  endUsers;
@@ -19,9 +18,6 @@ class Client {
19
18
  authSessions;
20
19
  /**
21
20
  * Executes any QuickBooks Desktop (QBD) API against the specified end-user.
22
- * See the official [QuickBooks Desktop API
23
- * Reference](https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop)
24
- * for a complete list of available APIs.
25
21
  */
26
22
  qbd;
27
23
  httpClient;
@@ -34,8 +30,14 @@ class Client {
34
30
  this.qbd = new QbdIntegration_1.default(this.httpClient);
35
31
  }
36
32
  createHttpClient(apiKey, verbose) {
33
+ // Use an environment variable for overriding the server URL for testing and
34
+ // development instead of checking `NODE_ENV` to allow `conductor-node`
35
+ // users to use the production API server when their `NODE_ENV` is set to
36
+ // "development".
37
+ const apiServerUrl = process.env["CONDUCTOR__MOCK_API_SERVER_URL"] ??
38
+ "https://api.conductor.is";
37
39
  const httpClient = axios_1.default.create({
38
- baseURL: `${(0, http_1.getApiServerUrlForEnvironment)()}/v1`,
40
+ baseURL: `${apiServerUrl}/v1`,
39
41
  headers: this.createHeaders(apiKey),
40
42
  timeout: 0, // No timeout (default).
41
43
  });
@@ -2159,13 +2159,13 @@ export default class QbdIntegration extends BaseIntegration {
2159
2159
  /**
2160
2160
  * This report returns information from any of three QuickBooks payroll
2161
2161
  * reports:
2162
- * - Payroll summary report This report shows the total wages, taxes
2162
+ * - Payroll summary report: This report shows the total wages, taxes
2163
2163
  * withheld, deductions from net pay, additions to net pay, and
2164
2164
  * employer-paid taxes and contributions for each employee on the payroll.
2165
- * - Employee earnings summary report This report shows information similar
2165
+ * - Employee earnings summary report: This report shows information similar
2166
2166
  * to the payroll summary report, but in a different layout. The report
2167
2167
  * has a row for each employee and a column for each payroll item.
2168
- * - Payroll liability balances report This report lists the payroll
2168
+ * - Payroll liability balances report: This report lists the payroll
2169
2169
  * liabilities the QuickBooks company owes to various agencies, such as
2170
2170
  * the federal government, your state government, insurance plan
2171
2171
  * administrators, labor unions, etc. The report covers unpaid liabilities
@@ -2164,13 +2164,13 @@ class QbdIntegration extends BaseIntegration_1.default {
2164
2164
  /**
2165
2165
  * This report returns information from any of three QuickBooks payroll
2166
2166
  * reports:
2167
- * - Payroll summary report This report shows the total wages, taxes
2167
+ * - Payroll summary report: This report shows the total wages, taxes
2168
2168
  * withheld, deductions from net pay, additions to net pay, and
2169
2169
  * employer-paid taxes and contributions for each employee on the payroll.
2170
- * - Employee earnings summary report This report shows information similar
2170
+ * - Employee earnings summary report: This report shows information similar
2171
2171
  * to the payroll summary report, but in a different layout. The report
2172
2172
  * has a row for each employee and a column for each payroll item.
2173
- * - Payroll liability balances report This report lists the payroll
2173
+ * - Payroll liability balances report: This report lists the payroll
2174
2174
  * liabilities the QuickBooks company owes to various agencies, such as
2175
2175
  * the federal government, your state government, insurance plan
2176
2176
  * administrators, labor unions, etc. The report covers unpaid liabilities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.3.0",
3
+ "version": "11.3.1",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -1 +0,0 @@
1
- export declare function getApiServerUrlForEnvironment(): string;
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getApiServerUrlForEnvironment = void 0;
4
- function getApiServerUrlForEnvironment() {
5
- // Do not check if `NODE_ENV` is "production" because that requires the
6
- // developer to have set `NODE_ENV` to use `conductor` as expected.
7
- if (["development", "test"].includes(process.env.NODE_ENV)) {
8
- return "http://localhost:4000";
9
- }
10
- return "https://api.conductor.is";
11
- }
12
- exports.getApiServerUrlForEnvironment = getApiServerUrlForEnvironment;