Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions components/krispcall/actions/add-contact/add-contact.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions components/krispcall/actions/new-mms/new-mms.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions components/krispcall/actions/new-sms/new-sms.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions components/krispcall/krispcall.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion components/krispcall/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/krispcall",
"version": "0.2.2",
"version": "0.2.3",
"description": "Pipedream KrispCall Components",
"main": "krispcall.app.mjs",
"keywords": [
Expand Down
5 changes: 5 additions & 0 deletions components/krispcall/sources/common/base.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
customResponse: false,
},
db: "$.service.db",
alert: {

Check warning on line 11 in components/krispcall/sources/common/base.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 11 in components/krispcall/sources/common/base.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props
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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
14 changes: 6 additions & 8 deletions pnpm-lock.yaml

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

Loading