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..05a9ba2e0ef24 --- /dev/null +++ b/components/quickbooks_sandbox/actions/update-invoice/update-invoice.mjs @@ -0,0 +1,22 @@ +import app from "../../quickbooks_sandbox.app.mjs"; +import common from "@pipedream/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..b45082f443247 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.2.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.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4d6a3729f6dae..8e3d63e7c2417 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.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.5.1': - resolution: {integrity: sha512-APqan523zeCY/JVBk6PhoRE5intfoBsK8LTj9xZSOlah0E9/zcVHaGJ9vQhaVjFLuPC9YYt3BemQpsjGFcU0fQ==} + '@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.5.1': + '@pipedream/quickbooks@0.6.1': dependencies: '@pipedream/platform': 3.1.0 transitivePeerDependencies: