Skip to content

Commit 2681af7

Browse files
removing custom field base url for krispcall (#14042)
* removing custom field base url * Bumping versions
1 parent 89b1823 commit 2681af7

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

components/krispcall/actions/add-contact/add-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "krispcall-add-contact",
55
name: "Add Contact",
66
description: "Creates a new contact. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
krispcall,

components/krispcall/actions/delete-contact/delete-contact.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "krispcall-delete-contact",
66
name: "Delete Contact",
77
description: "Deletes a list of contacts. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)",
8-
version: "0.0.1",
8+
version: "0.0.2",
99
type: "action",
1010
props: {
1111
krispcall,

components/krispcall/actions/new-mms/new-mms.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "krispcall-new-mms",
55
name: "Send New MMS",
66
description: "Send a new MMS to a contact. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
krispcall,

components/krispcall/actions/new-sms/new-sms.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "krispcall-new-sms",
55
name: "Send New SMS",
66
description: "Send a new SMS to a number. [See the documentation](https://documenter.getpostman.com/view/32476792/2sA3dxFCaL)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
krispcall,

components/krispcall/krispcall.app.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default {
7474
},
7575
methods: {
7676
_baseUrl() {
77-
return `${this.$auth.url}/api/v1/platform/pipedream`;
77+
return "https://automationapi.krispcall.com/api/v1/platform/pipedream";
7878
},
7979
_headers() {
8080
return {

components/krispcall/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/krispcall",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream KrispCall Components",
55
"main": "krispcall.app.mjs",
66
"keywords": [

components/krispcall/sources/new-contact-instant/new-contact-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "krispcall-new-contact-instant",
77
name: "New Contact (Instant)",
88
description: "Emit new event when a new contact is created.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/krispcall/sources/new-sms-or-mms-instant/new-sms-or-mms-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "krispcall-new-sms-or-mms-instant",
77
name: "New SMS or MMS Sent (Instant)",
88
description: "Emit new event when a new SMS or MMS is sent.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

components/krispcall/sources/new-voicemail-instant/new-voicemail-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "krispcall-new-voicemail-instant",
77
name: "New Voicemail (Instant)",
88
description: "Emit new event when a new voicemail is sent.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
methods: {

0 commit comments

Comments
 (0)