From 6c0ab1bb2cdea3b7a72465e7a8fda9037ae1a069 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Mon, 12 May 2025 12:35:09 -0400 Subject: [PATCH 1/2] use prod baseUrl --- components/krispcall/actions/add-contact/add-contact.mjs | 2 +- .../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 +- components/krispcall/krispcall.app.mjs | 4 ++-- components/krispcall/package.json | 2 +- .../krispcall/sources/new-call-instant/new-call-instant.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 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/components/krispcall/actions/add-contact/add-contact.mjs b/components/krispcall/actions/add-contact/add-contact.mjs index 51cb46159bd87..66cd7fdac227c 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.3", + version: "0.0.4", 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 76dab4bfa12b7..d8f0a193bf907 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.3", + version: "0.0.4", 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 7ec6ab109c6a0..93849eccd43c7 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.3", + version: "0.0.4", 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 e06f529ba67de..fca726ad81cda 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.3", + version: "0.0.4", type: "action", props: { krispcall, diff --git a/components/krispcall/krispcall.app.mjs b/components/krispcall/krispcall.app.mjs index 448ca5764e691..9c8b2f09b67a6 100644 --- a/components/krispcall/krispcall.app.mjs +++ b/components/krispcall/krispcall.app.mjs @@ -75,10 +75,10 @@ export default { methods: { _baseUrl() { // Base URL for Production - // return https://automationapi.krispcall.com/api/v1/platform/pipedream + return "https://automationapi.krispcall.com/api/v1/platform/pipedream"; // Base URL for Development - return "https://automationqaapi.safefamilyapp.com/api/v1/platform/pipedream"; + // return "https://automationqaapi.safefamilyapp.com/api/v1/platform/pipedream"; }, _headers() { return { diff --git a/components/krispcall/package.json b/components/krispcall/package.json index d08444abeeb3a..74dc536ed5802 100644 --- a/components/krispcall/package.json +++ b/components/krispcall/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/krispcall", - "version": "0.2.0", + "version": "0.2.1", "description": "Pipedream KrispCall Components", "main": "krispcall.app.mjs", "keywords": [ diff --git a/components/krispcall/sources/new-call-instant/new-call-instant.mjs b/components/krispcall/sources/new-call-instant/new-call-instant.mjs index 994b46c8daf44..109508a72f343 100644 --- a/components/krispcall/sources/new-call-instant/new-call-instant.mjs +++ b/components/krispcall/sources/new-call-instant/new-call-instant.mjs @@ -6,7 +6,7 @@ export default { key: "krispcall-new-call-instant", name: "New Call (Instant)", description: "Emit new event when a new call is created.", - version: "0.0.1", + version: "0.0.2", type: "source", dedupe: "unique", methods: { 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 4cb2914f2ab80..d630c630b94ba 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.3", + version: "0.0.4", 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 ba0076d08e5a7..6a31a0afdc5d0 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.3", + version: "0.0.4", 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 74e42ed016258..a1be6c9c00daf 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.3", + version: "0.0.4", type: "source", dedupe: "unique", methods: { From 30a4b03a5f42f469ef4142a67225a737d961e183 Mon Sep 17 00:00:00 2001 From: Michelle Bergeron Date: Mon, 12 May 2025 12:35:47 -0400 Subject: [PATCH 2/2] pnpm-lock.yaml --- pnpm-lock.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7e34e33e8f9b6..d4ad9792dfbfe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12886,8 +12886,7 @@ importers: components/systeme_io: {} - components/szybkisms: - specifiers: {} + components/szybkisms: {} components/t2m_url_shortener: {}