conductor-node 10.2.0 → 10.3.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.
@@ -24,7 +24,7 @@ export interface IntegrationConnection {
24
24
  * @deprecated We will soon remove this endpoint as we migrate to the new
25
25
  * end-user + auth-session model.
26
26
  */
27
- export interface IntegrationConnectionCreateInput {
27
+ export interface IntegrationConnectionCreateOldInput {
28
28
  /**
29
29
  * The identifier of the third-party platform to integrate (e.g.,
30
30
  * "quickbooks-desktop").
@@ -59,7 +59,7 @@ export default class IntegrationConnectionsResource extends BaseResource {
59
59
  /**
60
60
  * Creates a new integration-connection.
61
61
  */
62
- create(input: IntegrationConnectionCreateInput): Promise<IntegrationConnection>;
62
+ create(input: IntegrationConnectionCreateOldInput): Promise<IntegrationConnection>;
63
63
  /**
64
64
  * Retrieves the specified integration-connection.
65
65
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "10.2.0",
3
+ "version": "10.3.0",
4
4
  "description": "Easily integrate the entire QuickBooks Desktop API using fully-typed async TypeScript",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",