Skip to content

Commit e3c41f7

Browse files
authored
Merging pull request #17904
* new sources * pnpm-lock.yaml
1 parent 82f523f commit e3c41f7

File tree

4 files changed

+51
-7
lines changed

4 files changed

+51
-7
lines changed

components/quickbooks_sandbox/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/quickbooks_sandbox",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Pipedream Quickbooks Sandbox Components",
55
"main": "quickbooks_sandbox.app.mjs",
66
"keywords": [
@@ -13,6 +13,6 @@
1313
"access": "public"
1414
},
1515
"dependencies": {
16-
"@pipedream/quickbooks": "^0.6.1"
16+
"@pipedream/quickbooks": "^0.7.0"
1717
}
1818
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../quickbooks_sandbox.app.mjs";
2+
import common from "@pipedream/quickbooks/sources/new-purchase-created/new-purchase-created.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "quickbooks_sandbox-new-purchase-created",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
quickbooks: app,
20+
...props,
21+
},
22+
};
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import app from "../../quickbooks_sandbox.app.mjs";
2+
import common from "@pipedream/quickbooks/sources/new-purchase-updated/new-purchase-updated.mjs";
3+
4+
import { adjustPropDefinitions } from "../../common/utils.mjs";
5+
6+
const {
7+
name, description, type, ...others
8+
} = common;
9+
const props = adjustPropDefinitions(others.props, app);
10+
11+
export default {
12+
...others,
13+
key: "quickbooks_sandbox-new-purchase-updated",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
quickbooks: app,
20+
...props,
21+
},
22+
};

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)