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
2 changes: 1 addition & 1 deletion components/krispcall/actions/add-contact/add-contact.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/krispcall/actions/new-mms/new-mms.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/krispcall/actions/new-sms/new-sms.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/krispcall/krispcall.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
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.1.0",
"version": "0.1.1",
"description": "Pipedream KrispCall Components",
"main": "krispcall.app.mjs",
"keywords": [
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.1",
version: "0.0.2",
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.1",
version: "0.0.2",
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.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Loading