From 077bfdfa82120c8edfc5aee333224cb68ab32af2 Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Thu, 19 Sep 2024 20:39:17 -0700 Subject: [PATCH 1/2] removing custom field base url --- components/krispcall/krispcall.app.mjs | 2 +- components/krispcall/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/krispcall/krispcall.app.mjs b/components/krispcall/krispcall.app.mjs index d4e0ed0005cea..6c6955f01ff2c 100644 --- a/components/krispcall/krispcall.app.mjs +++ b/components/krispcall/krispcall.app.mjs @@ -74,7 +74,7 @@ export default { }, methods: { _baseUrl() { - return `${this.$auth.url}/api/v1/platform/pipedream`; + return "https://automationapi.krispcall.com/api/v1/platform/pipedream"; }, _headers() { return { diff --git a/components/krispcall/package.json b/components/krispcall/package.json index bc63d757e60ce..c5445a15121cc 100644 --- a/components/krispcall/package.json +++ b/components/krispcall/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/krispcall", - "version": "0.1.0", + "version": "0.1.1", "description": "Pipedream KrispCall Components", "main": "krispcall.app.mjs", "keywords": [ From 518bfe9f52db7b5381767de8c15b4f4d03a0bb1b Mon Sep 17 00:00:00 2001 From: Danny Roosevelt Date: Thu, 19 Sep 2024 20:41:59 -0700 Subject: [PATCH 2/2] Bumping versions --- components/krispcall/actions/add-contact/add-contact.mjs | 2 +- components/krispcall/actions/delete-contact/delete-contact.mjs | 2 +- components/krispcall/actions/new-mms/new-mms.mjs | 2 +- components/krispcall/actions/new-sms/new-sms.mjs | 2 +- .../sources/new-contact-instant/new-contact-instant.mjs | 2 +- .../sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs | 2 +- .../sources/new-voicemail-instant/new-voicemail-instant.mjs | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/components/krispcall/actions/add-contact/add-contact.mjs b/components/krispcall/actions/add-contact/add-contact.mjs index 3c866770d7420..2d1d299d6669a 100644 --- a/components/krispcall/actions/add-contact/add-contact.mjs +++ b/components/krispcall/actions/add-contact/add-contact.mjs @@ -4,7 +4,7 @@ export default { key: "krispcall-add-contact", name: "Add Contact", description: "Creates a new contact. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { krispcall, diff --git a/components/krispcall/actions/delete-contact/delete-contact.mjs b/components/krispcall/actions/delete-contact/delete-contact.mjs index f7f4617694d10..45488f064fe4f 100644 --- a/components/krispcall/actions/delete-contact/delete-contact.mjs +++ b/components/krispcall/actions/delete-contact/delete-contact.mjs @@ -5,7 +5,7 @@ export default { key: "krispcall-delete-contact", name: "Delete Contact", description: "Deletes a list of contacts. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { krispcall, diff --git a/components/krispcall/actions/new-mms/new-mms.mjs b/components/krispcall/actions/new-mms/new-mms.mjs index f2800b02fb13d..b7b9fd0b0d36c 100644 --- a/components/krispcall/actions/new-mms/new-mms.mjs +++ b/components/krispcall/actions/new-mms/new-mms.mjs @@ -4,7 +4,7 @@ export default { key: "krispcall-new-mms", name: "Send New MMS", description: "Send a new MMS to a contact. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { krispcall, diff --git a/components/krispcall/actions/new-sms/new-sms.mjs b/components/krispcall/actions/new-sms/new-sms.mjs index 7a2c988cbc9e9..a7d1c936f62e8 100644 --- a/components/krispcall/actions/new-sms/new-sms.mjs +++ b/components/krispcall/actions/new-sms/new-sms.mjs @@ -4,7 +4,7 @@ export default { key: "krispcall-new-sms", name: "Send New SMS", description: "Send a new SMS to a number. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)", - version: "0.0.1", + version: "0.0.2", type: "action", props: { krispcall, diff --git a/components/krispcall/sources/new-contact-instant/new-contact-instant.mjs b/components/krispcall/sources/new-contact-instant/new-contact-instant.mjs index a2349e46fb7e2..dfeebfe8eb48d 100644 --- a/components/krispcall/sources/new-contact-instant/new-contact-instant.mjs +++ b/components/krispcall/sources/new-contact-instant/new-contact-instant.mjs @@ -6,7 +6,7 @@ export default { key: "krispcall-new-contact-instant", name: "New Contact (Instant)", description: "Emit new event when a new contact is created.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/krispcall/sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs b/components/krispcall/sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs index caeaf992c9d32..ed8e6da7bbebb 100644 --- a/components/krispcall/sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs +++ b/components/krispcall/sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs @@ -6,7 +6,7 @@ export default { key: "krispcall-new-sms-or-mms-instant", name: "New SMS or MMS Sent (Instant)", description: "Emit new event when a new SMS or MMS is sent.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { diff --git a/components/krispcall/sources/new-voicemail-instant/new-voicemail-instant.mjs b/components/krispcall/sources/new-voicemail-instant/new-voicemail-instant.mjs index f9186fd6923e6..6f64c51b47d4d 100644 --- a/components/krispcall/sources/new-voicemail-instant/new-voicemail-instant.mjs +++ b/components/krispcall/sources/new-voicemail-instant/new-voicemail-instant.mjs @@ -6,7 +6,7 @@ export default { key: "krispcall-new-voicemail-instant", name: "New Voicemail (Instant)", description: "Emit new event when a new voicemail is sent.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: {