Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
export default {
key: "zoho_subscriptions-create-customer",
name: "Create Customer",
version: "0.0.1",
description: "Create a new customer. [See the documentation](https://www.zoho.com/subscriptions/api/v1/customers/#create-a-customer)",
version: "0.0.2",
description: "Create a new customer. [See the documentation](https://www.zoho.com/billing/api/v1/customers/#create-a-customer)",
type: "action",
props: {
zohoSubscriptions,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
export default {
key: "zoho_subscriptions-create-subscription",
name: "Create Subscription",
version: "0.0.1",
description: "Create a new subscription. [See the documentation](https://www.zoho.com/subscriptions/api/v1/subscription/#create-a-subscription)",
version: "0.0.2",
description: "Create a new subscription. [See the documentation](https://www.zoho.com/billing/api/v1/subscription/#create-a-subscription)",
type: "action",
props: {
zohoSubscriptions,
Expand Down
3 changes: 2 additions & 1 deletion components/zoho_subscriptions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/zoho_subscriptions",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Zoho Subscriptions Components",
"main": "zoho_subscriptions.app.mjs",
"keywords": [
Expand All @@ -13,6 +13,7 @@
"access": "public"
},
"dependencies": {
"@pipedream/platform": "^3.0.3",
"moment": "^2.29.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
export default {
key: "zoho_subscriptions-payment-failure",
name: "New Payment Failure",
version: "0.0.1",
version: "0.0.2",
description: "Emit new event when a payment fails to process.",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
export default {
key: "zoho_subscriptions-subscription-created",
name: "New Subscription Created",
version: "0.0.1",
version: "0.0.2",
description: "Emit new event when a new subscription is created.",
type: "source",
dedupe: "unique",
Expand Down
2 changes: 1 addition & 1 deletion components/zoho_subscriptions/zoho_subscriptions.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default {
},
methods: {
_apiUrl() {
return `${this.$auth.api_domain}/subscriptions/v1`;
return `${this.$auth.api_domain}/billing/v1`;
},
_getHeaders(organizationId = null) {
const headers = {
Expand Down
13 changes: 9 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading