@pipedream/trello 0.3.7 → 0.3.9
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 +1 -1
- package/sources/card-archived/card-archived.mjs +1 -1
- package/sources/card-due-date-reminder/card-due-date-reminder.mjs +1 -1
- package/sources/card-moved/card-moved.mjs +1 -1
- package/sources/card-updates/card-updates.mjs +1 -1
- package/sources/common/common-board-based.mjs +1 -1
- package/sources/common/common-polling.mjs +2 -1
- package/sources/custom-webhook-events/custom-webhook-events.mjs +1 -1
- package/sources/new-activity/new-activity.mjs +1 -1
- package/sources/new-attachment/new-attachment.mjs +1 -1
- package/sources/new-board/new-board.mjs +1 -1
- package/sources/new-card/new-card.mjs +1 -1
- package/sources/new-checklist/new-checklist.mjs +1 -1
- package/sources/new-comment-added-to-card/new-comment-added-to-card.mjs +1 -1
- package/sources/new-label/new-label.mjs +1 -1
- package/sources/new-label-added-to-card/new-label-added-to-card.mjs +1 -1
- package/sources/new-list/new-list.mjs +1 -1
- package/sources/new-member-on-card/new-member-on-card.mjs +1 -1
- package/sources/new-notification/new-notification.mjs +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
/* eslint-disable pipedream/required-properties-key, pipedream/required-properties-name,
|
2
2
|
pipedream/required-properties-version, pipedream/required-properties-description,
|
3
3
|
pipedream/required-properties-type */
|
4
|
-
import base from "./common
|
4
|
+
import base from "./common-webhook.mjs";
|
5
5
|
|
6
6
|
export default {
|
7
7
|
...base,
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import common from "./common.js";
|
2
|
+
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
|
2
3
|
|
3
4
|
export default {
|
4
5
|
...common,
|
@@ -9,7 +10,7 @@ export default {
|
|
9
10
|
description: "Pipedream will poll the Trello API on this schedule",
|
10
11
|
type: "$.interface.timer",
|
11
12
|
default: {
|
12
|
-
intervalSeconds:
|
13
|
+
intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
|
13
14
|
},
|
14
15
|
},
|
15
16
|
},
|
@@ -5,7 +5,7 @@ export default {
|
|
5
5
|
key: "trello-custom-webhook-events",
|
6
6
|
name: "Custom Webhook Events (Instant)",
|
7
7
|
description: "Emit new events for activity matching a board, event types, lists and/or cards.",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.9",
|
9
9
|
type: "source",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -5,7 +5,7 @@ export default {
|
|
5
5
|
key: "trello-new-comment-added-to-card",
|
6
6
|
name: "New Comment Added to Card (Instant)",
|
7
7
|
description: "Emit new event for each new comment added to a card.",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.10",
|
9
9
|
type: "source",
|
10
10
|
dedupe: "unique",
|
11
11
|
props: {
|