Skip to content

Commit f2d854b

Browse files
authored
[Update] Quickbooks Sandbox Components (#19122)
1 parent 2e0875e commit f2d854b

File tree

4 files changed

+126
-244
lines changed

4 files changed

+126
-244
lines changed
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/actions/get-balance-sheet-report/get-balance-sheet-report.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-get-balance-sheet-report",
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/actions/get-cash-flow-report/get-cash-flow-report.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-get-cash-flow-report",
14+
version: "0.0.1",
15+
name,
16+
description,
17+
type,
18+
props: {
19+
quickbooks: app,
20+
...props,
21+
},
22+
};

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.3.1",
3+
"version": "0.4.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.7.1"
16+
"@pipedream/quickbooks": "^0.8.0"
1717
}
1818
}

0 commit comments

Comments
 (0)