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.
- package/dist/package.json +1 -1
- package/dist/src/integrations/BaseIntegration.d.ts +6 -1
- package/dist/src/integrations/BaseIntegration.js +10 -2
- package/dist/src/integrations/qbd/QbdIntegration.d.ts +167 -167
- package/dist/src/integrations/qbd/QbdIntegration.js +176 -169
- package/dist/src/resources/IntegrationConnectionsResource.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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
|
|
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:
|
|
62
|
+
create(input: IntegrationConnectionCreateOldInput): Promise<IntegrationConnection>;
|
|
63
63
|
/**
|
|
64
64
|
* Retrieves the specified integration-connection.
|
|
65
65
|
*/
|