conductor-node 2.0.0 → 2.0.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.
@@ -3,5 +3,5 @@ import ClientQBD from "./qbd/ClientQBD";
3
3
  export default class Client {
4
4
  /** QuickBooks Desktop integration. */
5
5
  readonly qbd: ClientQBD;
6
- constructor(apiKey: string, options: BaseClientOptions);
6
+ constructor(apiKey: string, options?: BaseClientOptions);
7
7
  }
@@ -7,7 +7,7 @@ const ClientQBD_1 = __importDefault(require("./qbd/ClientQBD"));
7
7
  class Client {
8
8
  /** QuickBooks Desktop integration. */
9
9
  qbd;
10
- constructor(apiKey, options) {
10
+ constructor(apiKey, options = {}) {
11
11
  this.qbd = new ClientQBD_1.default(apiKey, options);
12
12
  }
13
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Conductor API wrapper",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",