@pipedream/twilio 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/twilio",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Pipedream Twilio Components",
5
5
  "main": "twilio.app.mjs",
6
6
  "keywords": [
@@ -11,6 +11,7 @@
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
+ "@pipedream/platform": "^1.2.0",
14
15
  "phone": "^3.1.29",
15
16
  "twilio": "^3.54.2"
16
17
  },
@@ -1,4 +1,5 @@
1
1
  import twilio from "../twilio.app.mjs";
2
+ import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
2
3
 
3
4
  export default {
4
5
  props: {
@@ -9,7 +10,7 @@ export default {
9
10
  description: "Pipedream polls Twilio for events on this schedule.",
10
11
  type: "$.interface.timer",
11
12
  default: {
12
- intervalSeconds: 60 * 15,
13
+ intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
13
14
  },
14
15
  },
15
16
  },
@@ -6,7 +6,7 @@ export default {
6
6
  key: "twilio-new-call",
7
7
  name: "New Call (Instant)",
8
8
  description: "Emit new event each time a call to the phone number is completed. Configures a webhook in Twilio, tied to a phone number.",
9
- version: "0.1.1",
9
+ version: "0.1.2",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  methods: {
@@ -9,7 +9,7 @@ export default {
9
9
  key: "twilio-new-incoming-sms",
10
10
  name: "New Incoming SMS (Instant)",
11
11
  description: "Emit new event every time an SMS is sent to the phone number set. Configures a webhook in Twilio, tied to an incoming phone number.",
12
- version: "0.1.1",
12
+ version: "0.1.2",
13
13
  type: "source",
14
14
  dedupe: "unique",
15
15
  props: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "twilio-new-phone-number",
6
6
  name: "New Phone Number",
7
7
  description: "Emit new event when you add a new phone number to your account",
8
- version: "0.1.1",
8
+ version: "0.1.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "twilio-new-recording",
6
6
  name: "New Recording",
7
7
  description: "Emit new event when a new call recording is created",
8
- version: "0.1.1",
8
+ version: "0.1.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "twilio-new-transcription",
6
6
  name: "New Transcription",
7
7
  description: "Emit new event when a new call transcription is created",
8
- version: "0.1.1",
8
+ version: "0.1.3",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {