Skip to content

Commit 65ebf61

Browse files
authored
Quickbooks Sandbox - new components (#17078)
* new components * pnpm-lock.yaml * fix import & package version * update @pipedream/quickbooks version in package.json * pnpm-lock.yaml
1 parent 19261df commit 65ebf61

File tree

9 files changed

+161
-7
lines changed

9 files changed

+161
-7
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/create-estimate/create-estimate.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-create-estimate",
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/create-purchase-order/create-purchase-order.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-create-purchase-order",
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/send-estimate/send-estimate.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-send-estimate",
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/send-invoice/send-invoice.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-send-invoice",
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/update-estimate/update-estimate.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-update-estimate",
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/update-invoice/update-invoice.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-update-invoice",
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/void-invoice/void-invoice.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-void-invoice",
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.1.2",
3+
"version": "0.2.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.5.1"
16+
"@pipedream/quickbooks": "^0.6.1"
1717
}
1818
}

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)