Skip to content

Commit 242fba6

Browse files
committed
update endpoints
1 parent 41bc31c commit 242fba6

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

components/zoho_subscriptions/actions/create-customer/create-customer.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
33
export default {
44
key: "zoho_subscriptions-create-customer",
55
name: "Create Customer",
6-
version: "0.0.1",
7-
description: "Create a new customer. [See the documentation](https://www.zoho.com/subscriptions/api/v1/customers/#create-a-customer)",
6+
version: "0.0.2",
7+
description: "Create a new customer. [See the documentation](https://www.zoho.com/billing/api/v1/customers/#create-a-customer)",
88
type: "action",
99
props: {
1010
zohoSubscriptions,

components/zoho_subscriptions/actions/create-subscription/create-subscription.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
44
export default {
55
key: "zoho_subscriptions-create-subscription",
66
name: "Create Subscription",
7-
version: "0.0.1",
8-
description: "Create a new subscription. [See the documentation](https://www.zoho.com/subscriptions/api/v1/subscription/#create-a-subscription)",
7+
version: "0.0.2",
8+
description: "Create a new subscription. [See the documentation](https://www.zoho.com/billing/api/v1/subscription/#create-a-subscription)",
99
type: "action",
1010
props: {
1111
zohoSubscriptions,

components/zoho_subscriptions/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/zoho_subscriptions",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Zoho Subscriptions Components",
55
"main": "zoho_subscriptions.app.mjs",
66
"keywords": [
@@ -13,6 +13,7 @@
1313
"access": "public"
1414
},
1515
"dependencies": {
16+
"@pipedream/platform": "^3.0.3",
1617
"moment": "^2.29.4"
1718
}
1819
}

components/zoho_subscriptions/sources/payment-failure/payment-failure.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
55
export default {
66
key: "zoho_subscriptions-payment-failure",
77
name: "New Payment Failure",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
description: "Emit new event when a payment fails to process.",
1010
type: "source",
1111
dedupe: "unique",

components/zoho_subscriptions/sources/subscription-created/subscription-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import zohoSubscriptions from "../../zoho_subscriptions.app.mjs";
55
export default {
66
key: "zoho_subscriptions-subscription-created",
77
name: "New Subscription Created",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
description: "Emit new event when a new subscription is created.",
1010
type: "source",
1111
dedupe: "unique",

components/zoho_subscriptions/zoho_subscriptions.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export default {
134134
},
135135
methods: {
136136
_apiUrl() {
137-
return `${this.$auth.api_domain}/subscriptions/v1`;
137+
return `${this.$auth.api_domain}/billing/v1`;
138138
},
139139
_getHeaders(organizationId = null) {
140140
const headers = {

0 commit comments

Comments
 (0)