From 98def91c61710e8a56f2ad6d986916dd4ff7d379 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 11 Jun 2025 13:53:27 -0400 Subject: [PATCH 1/5] new components --- .../create-estimate/create-estimate.mjs | 22 ++++++++++++++++++ .../create-purchase-order.mjs | 22 ++++++++++++++++++ .../actions/send-estimate/send-estimate.mjs | 22 ++++++++++++++++++ .../actions/send-invoice/send-invoice.mjs | 22 ++++++++++++++++++ .../update-estimate/update-estimate.mjs | 22 ++++++++++++++++++ .../actions/update-invoice/update-invoice.mjs | 23 +++++++++++++++++++ .../actions/void-invoice/void-invoice.mjs | 22 ++++++++++++++++++ components/quickbooks_sandbox/package.json | 4 ++-- 8 files changed, 157 insertions(+), 2 deletions(-) create mode 100644 components/quickbooks_sandbox/actions/create-estimate/create-estimate.mjs create mode 100644 components/quickbooks_sandbox/actions/create-purchase-order/create-purchase-order.mjs create mode 100644 components/quickbooks_sandbox/actions/send-estimate/send-estimate.mjs create mode 100644 components/quickbooks_sandbox/actions/send-invoice/send-invoice.mjs create mode 100644 components/quickbooks_sandbox/actions/update-estimate/update-estimate.mjs create mode 100644 components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs create mode 100644 components/quickbooks_sandbox/actions/void-invoice/void-invoice.mjs diff --git a/components/quickbooks_sandbox/actions/create-estimate/create-estimate.mjs b/components/quickbooks_sandbox/actions/create-estimate/create-estimate.mjs new file mode 100644 index 0000000000000..55b44d13b8db4 --- /dev/null +++ b/components/quickbooks_sandbox/actions/create-estimate/create-estimate.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/create-estimate/create-estimate.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-create-estimate", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/create-purchase-order/create-purchase-order.mjs b/components/quickbooks_sandbox/actions/create-purchase-order/create-purchase-order.mjs new file mode 100644 index 0000000000000..2f07717a91bf3 --- /dev/null +++ b/components/quickbooks_sandbox/actions/create-purchase-order/create-purchase-order.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/create-purchase-order/create-purchase-order.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-create-purchase-order", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/send-estimate/send-estimate.mjs b/components/quickbooks_sandbox/actions/send-estimate/send-estimate.mjs new file mode 100644 index 0000000000000..9b06920142e5d --- /dev/null +++ b/components/quickbooks_sandbox/actions/send-estimate/send-estimate.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/send-estimate/send-estimate.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-send-estimate", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/send-invoice/send-invoice.mjs b/components/quickbooks_sandbox/actions/send-invoice/send-invoice.mjs new file mode 100644 index 0000000000000..17315aaca5428 --- /dev/null +++ b/components/quickbooks_sandbox/actions/send-invoice/send-invoice.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/send-invoice/send-invoice.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-send-invoice", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/update-estimate/update-estimate.mjs b/components/quickbooks_sandbox/actions/update-estimate/update-estimate.mjs new file mode 100644 index 0000000000000..40b0ab7b50e8f --- /dev/null +++ b/components/quickbooks_sandbox/actions/update-estimate/update-estimate.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/update-estimate/update-estimate.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-update-estimate", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs b/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs new file mode 100644 index 0000000000000..a3421b741f83f --- /dev/null +++ b/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs @@ -0,0 +1,23 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +//import common from "@pipedream/quickbooks/actions/update-invoice/update-invoice.mjs"; +import common from "../../../quickbooks/actions/update-invoice/update-invoice.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-update-invoice", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/actions/void-invoice/void-invoice.mjs b/components/quickbooks_sandbox/actions/void-invoice/void-invoice.mjs new file mode 100644 index 0000000000000..374be503f0c29 --- /dev/null +++ b/components/quickbooks_sandbox/actions/void-invoice/void-invoice.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/quickbooks/actions/void-invoice/void-invoice.mjs"; + +import { adjustPropDefinitions } from "../../common/utils.mjs"; + +const { + name, description, type, ...others +} = common; +const props = adjustPropDefinitions(others.props, app); + +export default { + ...others, + key: "quickbooks_sandbox-void-invoice", + version: "0.0.1", + name, + description, + type, + props: { + quickbooks: app, + ...props, + }, +}; diff --git a/components/quickbooks_sandbox/package.json b/components/quickbooks_sandbox/package.json index cd384f3c8652b..e49da59e18a78 100644 --- a/components/quickbooks_sandbox/package.json +++ b/components/quickbooks_sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/quickbooks_sandbox", - "version": "0.1.2", + "version": "0.3.0", "description": "Pipedream Quickbooks Sandbox Components", "main": "quickbooks_sandbox.app.mjs", "keywords": [ @@ -13,6 +13,6 @@ "access": "public" }, "dependencies": { - "@pipedream/quickbooks": "^0.5.1" + "@pipedream/quickbooks": "^0.6.0" } } From f6231aeb182f6be62c69fa05628ca8ec0a3f39df Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 11 Jun 2025 13:54:35 -0400 Subject: [PATCH 2/5] pnpm-lock.yaml --- pnpm-lock.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4d6a3729f6dae..2e86b8b05c823 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10729,8 +10729,8 @@ importers: components/quickbooks_sandbox: dependencies: '@pipedream/quickbooks': - specifier: ^0.5.1 - version: 0.5.1 + specifier: ^0.6.0 + version: 0.6.0 components/quickemailverification: dependencies: @@ -18832,8 +18832,8 @@ packages: '@pipedream/postgresql@2.2.3': resolution: {integrity: sha512-Co9r4UKvvimEPo9T4v+EfVn/Sqqw8+X7PtvsAF7tydq7CHpkmOT9eYAiD0Kuybg5WbuWuqDaXHHmhVtsAxgpBw==} - '@pipedream/quickbooks@0.5.1': - resolution: {integrity: sha512-APqan523zeCY/JVBk6PhoRE5intfoBsK8LTj9xZSOlah0E9/zcVHaGJ9vQhaVjFLuPC9YYt3BemQpsjGFcU0fQ==} + '@pipedream/quickbooks@0.6.0': + resolution: {integrity: sha512-i4EUOJB5UBnOFUKZfPjbJpgL5gDAt8NXwEh/eyEVNDEueS6nufwsFZ1eCevcSj58J54EfkQgadxmKA4//r5yvg==} '@pipedream/ramp@0.1.2': resolution: {integrity: sha512-vYC5OPJo+kxhYYav5y0Mb7WihbLqNdoUO/CnOH1rHfKKNI4E23LLLLICn3VAl0gRc7xbWLHf4Nmcyjw7qf5k7Q==} @@ -35728,7 +35728,7 @@ snapshots: - debug - pg-native - '@pipedream/quickbooks@0.5.1': + '@pipedream/quickbooks@0.6.0': dependencies: '@pipedream/platform': 3.1.0 transitivePeerDependencies: From 08fed95edba2cb5117718edb468c8f796b3494ff Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Wed, 11 Jun 2025 13:57:45 -0400 Subject: [PATCH 3/5] fix import & package version --- .../actions/update-invoice/update-invoice.mjs | 3 +-- components/quickbooks_sandbox/package.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs b/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs index a3421b741f83f..05a9ba2e0ef24 100644 --- a/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs +++ b/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs @@ -1,6 +1,5 @@ import app from "../../quickbooks_sandbox.app.mjs"; -//import common from "@pipedream/quickbooks/actions/update-invoice/update-invoice.mjs"; -import common from "../../../quickbooks/actions/update-invoice/update-invoice.mjs"; +import common from "@pipedream/quickbooks/actions/update-invoice/update-invoice.mjs"; import { adjustPropDefinitions } from "../../common/utils.mjs"; diff --git a/components/quickbooks_sandbox/package.json b/components/quickbooks_sandbox/package.json index e49da59e18a78..37f7480ca68ae 100644 --- a/components/quickbooks_sandbox/package.json +++ b/components/quickbooks_sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/quickbooks_sandbox", - "version": "0.3.0", + "version": "0.2.0", "description": "Pipedream Quickbooks Sandbox Components", "main": "quickbooks_sandbox.app.mjs", "keywords": [ From e33ca7a7dd85e52ffd1f4f4336410ac39b6ce2cc Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Sun, 15 Jun 2025 10:34:51 -0400 Subject: [PATCH 4/5] update @pipedream/quickbooks version in package.json --- components/quickbooks_sandbox/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/quickbooks_sandbox/package.json b/components/quickbooks_sandbox/package.json index 37f7480ca68ae..b45082f443247 100644 --- a/components/quickbooks_sandbox/package.json +++ b/components/quickbooks_sandbox/package.json @@ -13,6 +13,6 @@ "access": "public" }, "dependencies": { - "@pipedream/quickbooks": "^0.6.0" + "@pipedream/quickbooks": "^0.6.1" } } From 1295b661b941d073da8241705850a5b9f961a8af Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Sun, 15 Jun 2025 10:36:14 -0400 Subject: [PATCH 5/5] pnpm-lock.yaml --- pnpm-lock.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2e86b8b05c823..8e3d63e7c2417 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10729,8 +10729,8 @@ importers: components/quickbooks_sandbox: dependencies: '@pipedream/quickbooks': - specifier: ^0.6.0 - version: 0.6.0 + specifier: ^0.6.1 + version: 0.6.1 components/quickemailverification: dependencies: @@ -18832,8 +18832,8 @@ packages: '@pipedream/postgresql@2.2.3': resolution: {integrity: sha512-Co9r4UKvvimEPo9T4v+EfVn/Sqqw8+X7PtvsAF7tydq7CHpkmOT9eYAiD0Kuybg5WbuWuqDaXHHmhVtsAxgpBw==} - '@pipedream/quickbooks@0.6.0': - resolution: {integrity: sha512-i4EUOJB5UBnOFUKZfPjbJpgL5gDAt8NXwEh/eyEVNDEueS6nufwsFZ1eCevcSj58J54EfkQgadxmKA4//r5yvg==} + '@pipedream/quickbooks@0.6.1': + resolution: {integrity: sha512-17uGEBdLTUk7FkyCwuaNT1eQodvnS4xN+w1+kSdtMw2GV8guzQU9/oB/IjECDDyDvO4Ba0ulfm9xb544bKWf/w==} '@pipedream/ramp@0.1.2': resolution: {integrity: sha512-vYC5OPJo+kxhYYav5y0Mb7WihbLqNdoUO/CnOH1rHfKKNI4E23LLLLICn3VAl0gRc7xbWLHf4Nmcyjw7qf5k7Q==} @@ -35728,7 +35728,7 @@ snapshots: - debug - pg-native - '@pipedream/quickbooks@0.6.0': + '@pipedream/quickbooks@0.6.1': dependencies: '@pipedream/platform': 3.1.0 transitivePeerDependencies: