@pipedream/monday 0.3.4 → 0.3.5

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/monday",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Pipedream Monday Components",
5
5
  "main": "monday.app.mjs",
6
6
  "keywords": [
@@ -15,6 +15,7 @@
15
15
  "access": "public"
16
16
  },
17
17
  "dependencies": {
18
+ "@pipedream/platform": "^1.2.0",
18
19
  "lodash.flatmap": "^4.5.0",
19
20
  "lodash.map": "^4.6.0",
20
21
  "lodash.uniqby": "^4.7.0",
@@ -1,4 +1,5 @@
1
1
  import monday from "../../monday.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 will poll the Monday API on this schedule",
10
11
  type: "$.interface.timer",
11
12
  default: {
12
- intervalSeconds: 60 * 15, // every 15 minutes
13
+ intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
13
14
  },
14
15
  },
15
16
  },
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Board",
7
7
  description: "Emit new event when a new board is created in Monday.",
8
8
  type: "source",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
10
  dedupe: "unique",
11
11
  props: {
12
12
  ...common.props,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New User",
7
7
  description: "Emit new event when a new user is created in Monday.",
8
8
  type: "source",
9
- version: "0.0.1",
9
+ version: "0.0.2",
10
10
  dedupe: "unique",
11
11
  methods: {
12
12
  ...common.methods,