conductor-node 11.4.1 → 11.4.2

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
@@ -1,7 +1,7 @@
1
1
  <!-- markdownlint-disable MD033 MD041 -->
2
2
  <div align="center">
3
3
  <h1><a href="https://conductor.is">Conductor</a></h1>
4
- <h3>QuickBooks Desktop API for Node.js and TypeScript</h3>
4
+ <h3>QuickBooks Desktop API for Node.js, TypeScript, and REST</h3>
5
5
  <a href="https://npmjs.com/package/conductor-node"><img src="https://img.shields.io/npm/dm/conductor-node.svg?logo=npm" alt="NPM download count"></a>
6
6
  <a href="https://npmjs.org/package/conductor-node"><img src="https://img.shields.io/npm/v/conductor-node.svg?logo=npm" alt="Package version"></a>
7
7
  <img src="https://img.shields.io/badge/coverage-100%25-brightgreen" alt="Code coverage">
@@ -24,6 +24,8 @@
24
24
 
25
25
  Conductor is a TypeScript-first Node.js API for **QuickBooks Desktop** (also known as QuickBooks Enterprise). In just a few lines, get real-time access to fetch, create, or update [_any_ QuickBooks Desktop object type](https://docs.conductor.is/qbd/api#supported-object-types) and receive a fully-typed response. Check out [the documentation](https://docs.conductor.is) to get started.
26
26
 
27
+ We also offer a [REST API](https://docs.conductor.is/usage/rest).
28
+
27
29
  Conductor, the company, is building a data integration platform for vertical SaaS companies, starting with QuickBooks Desktop. Our team has spent over a decade building companies, scaling vast software systems, and obsessing over quality.
28
30
 
29
31
  <!-- markdownlint-disable MD033 -->
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.4.1",
3
+ "version": "11.4.2",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -29,7 +29,11 @@ export interface AuthSession {
29
29
  * after they complete the authentication flow. If `null`, their browser tab
30
30
  * will close instead.
31
31
  */
32
- readonly returnUrl: string | undefined;
32
+ readonly redirectUrl: string | undefined;
33
+ /**
34
+ * @deprecated Use `redirectUrl` instead.
35
+ */
36
+ readonly returnUrl?: string | undefined;
33
37
  }
34
38
  export interface AuthSessionCreateInput {
35
39
  /**
@@ -52,6 +56,10 @@ export interface AuthSessionCreateInput {
52
56
  * after they complete the authentication flow. If not provided, their browser
53
57
  * tab will close instead.
54
58
  */
59
+ readonly redirectUrl?: string;
60
+ /**
61
+ * @deprecated Use `redirectUrl` instead.
62
+ */
55
63
  readonly returnUrl?: string;
56
64
  }
57
65
  export default class AuthSessionsResource extends BaseResource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.4.1",
3
+ "version": "11.4.2",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",