diff --git a/components/krispcall/actions/add-contact/add-contact.mjs b/components/krispcall/actions/add-contact/add-contact.mjs index 66cd7fdac227c..51bf9541727fb 100644 --- a/components/krispcall/actions/add-contact/add-contact.mjs +++ b/components/krispcall/actions/add-contact/add-contact.mjs @@ -3,8 +3,8 @@ import krispcall from "../../krispcall.app.mjs"; 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.4", + description: "Creates a new contact. [See the documentation](https://documenter.getpostman.com/view/38507826/2sB2xEA8V5#12ee9977-7639-479c-8931-d92f7d7f9dfe)", + version: "0.0.5", 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 d8f0a193bf907..5f06e1babd4e0 100644 --- a/components/krispcall/actions/delete-contact/delete-contact.mjs +++ b/components/krispcall/actions/delete-contact/delete-contact.mjs @@ -4,8 +4,8 @@ import krispcall from "../../krispcall.app.mjs"; 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.4", + description: "Deletes a list of contacts. [See the documentation](https://documenter.getpostman.com/view/38507826/2sB2xEA8V5#fa88b9ed-84fe-49f7-acc1-a37169fc6cb0)", + version: "0.0.5", 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 93849eccd43c7..2c13de540a8fc 100644 --- a/components/krispcall/actions/new-mms/new-mms.mjs +++ b/components/krispcall/actions/new-mms/new-mms.mjs @@ -3,8 +3,8 @@ import krispcall from "../../krispcall.app.mjs"; 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.4", + description: "Send a new MMS to a contact. [See the documentation](https://documenter.getpostman.com/view/38507826/2sB2xEA8V5#a5e31a96-ff7a-48cf-9f12-e1215e90970a)", + version: "0.0.5", 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 fca726ad81cda..cce27e4bab0e1 100644 --- a/components/krispcall/actions/new-sms/new-sms.mjs +++ b/components/krispcall/actions/new-sms/new-sms.mjs @@ -3,8 +3,8 @@ import krispcall from "../../krispcall.app.mjs"; 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.4", + description: "Send a new SMS to a number. [See the documentation](https://documenter.getpostman.com/view/38507826/2sB2xEA8V5#be2f5790-43b5-482e-9f4e-c9e8cb9fd633)", + version: "0.0.5", type: "action", props: { krispcall, diff --git a/components/krispcall/krispcall.app.mjs b/components/krispcall/krispcall.app.mjs index 9c8b2f09b67a6..be44cbd57eb5e 100644 --- a/components/krispcall/krispcall.app.mjs +++ b/components/krispcall/krispcall.app.mjs @@ -7,7 +7,7 @@ export default { number: { type: "string", label: "Number", - description: "The phone number of the contact", + description: "The phone number of the contact. Example: `+16789296543`", }, name: { type: "string", @@ -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/v3/platform/pipedream"; // Base URL for Development - // return "https://automationqaapi.safefamilyapp.com/api/v1/platform/pipedream"; + // return "https://qa.safefamilyapp.com/api/v3/platform/pipedream"; }, _headers() { return { diff --git a/components/krispcall/package.json b/components/krispcall/package.json index c2f8bd54f8fa4..3410c161fd1f4 100644 --- a/components/krispcall/package.json +++ b/components/krispcall/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/krispcall", - "version": "0.2.2", + "version": "0.2.3", "description": "Pipedream KrispCall Components", "main": "krispcall.app.mjs", "keywords": [ diff --git a/components/krispcall/sources/common/base.mjs b/components/krispcall/sources/common/base.mjs index 13f32ce644f46..15b3b61f85caf 100644 --- a/components/krispcall/sources/common/base.mjs +++ b/components/krispcall/sources/common/base.mjs @@ -8,6 +8,11 @@ export default { customResponse: false, }, db: "$.service.db", + alert: { + type: "alert", + alertType: "info", + content: "Note: Krispcall webhook triggers will emit events for changes made via the KrispCall UI, but not via the API.", + }, }, methods: { _setHookId(hookId) { 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 58e38c6b6ebe9..a88933eea1bb3 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.3", + version: "0.0.4", 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 d630c630b94ba..336a743d22d88 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.4", + version: "0.0.5", 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 6a31a0afdc5d0..62b9731fd40ec 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.4", + version: "0.0.5", 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 a1be6c9c00daf..16cf888d325b5 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.4", + version: "0.0.5", type: "source", dedupe: "unique", methods: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 850abceccefbf..23cd9bb1b14ba 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4158,8 +4158,7 @@ importers: specifier: ^3.0.3 version: 3.0.3 - components/ebay: - specifiers: {} + components/ebay: {} components/echtpost_postcards: dependencies: @@ -9571,8 +9570,7 @@ importers: specifier: ^4.3.2 version: 4.5.0 - components/openum: - specifiers: {} + components/openum: {} components/openweather_api: dependencies: @@ -12833,8 +12831,7 @@ importers: components/sms_magic: {} - components/sms_messages: - specifiers: {} + components/sms_messages: {} components/sms_partner: {} @@ -14904,8 +14901,7 @@ importers: specifier: ^3.0.0 version: 3.0.3 - components/wbiztool: - specifiers: {} + components/wbiztool: {} components/wealthbox: dependencies: @@ -37330,6 +37326,8 @@ snapshots: '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)) '@putout/operator-json': 2.2.0 putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3) + transitivePeerDependencies: + - supports-color '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))': dependencies: