Skip to content

Commit bc10fe9

Browse files
committed
Source description updates and version bumps
1 parent e884c7d commit bc10fe9

File tree

10 files changed

+62
-29
lines changed

10 files changed

+62
-29
lines changed

components/monday/sources/column-value-updated/column-value-updated.mjs

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,25 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-column-value-updated",
6-
name: "New Column Value Updated (Instant)",
7-
description: "Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.",
6+
name: "Column Value Updated (Instant)",
7+
description: "Emit new event when a column value is updated on a board. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
hooks: {
1212
...common.hooks,
1313
async deploy() {
1414
await this.commonDeploy();
1515
},
1616
},
17+
props: {
18+
...common.props,
19+
alertBox: {
20+
type: "alert",
21+
alertType: "warning",
22+
content: "For changes to `Name`, use the **Name Updated** trigger.",
23+
},
24+
},
1725
methods: {
1826
...common.methods,
1927
getWebhookArgs() {

components/monday/sources/name-updated/name-updated.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-name-updated",
6-
name: "New Name Updated (Instant)",
7-
description: "Emit new event when an item's Name is updated on a board in Monday.",
6+
name: "Name Updated (Instant)",
7+
description: "Emit new event when an item's name is updated. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
hooks: {
1212
...common.hooks,

components/monday/sources/new-board/new-board.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import common from "../common/common-polling.mjs";
33
export default {
44
...common,
55
key: "monday-new-board",
6-
name: "New Board",
7-
description: "Emit new event when a new board is created in Monday.",
6+
name: "New Board Created",
7+
description: "Emit new event when a board is created in Monday. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.8",
9+
version: "0.0.9",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,

components/monday/sources/new-item/new-item.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-new-item",
6-
name: "New Item (Instant)",
7-
description: "Emit new event when a new item is added to a board in Monday.",
6+
name: "New Item Created (Instant)",
7+
description: "Emit new event when a new item is added to a board. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
hooks: {
1212
...common.hooks,

components/monday/sources/new-subitem-update/new-subitem-update.mjs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@ export default {
44
...common,
55
key: "monday-new-subitem-update",
66
name: "New Sub-Item Update (Instant)",
7-
description: "Emit new event when an update is posted in sub-items. To create this trigger, you need to have at least one subitem previously created on your board.",
7+
description: "Emit new event when an update is posted in sub-items. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13+
alertBox: {
14+
type: "alert",
15+
alertType: "warning",
16+
content: "To create this trigger, you need to have at least one subitem previously created on your board.",
17+
},
1318
boardId: {
1419
propDefinition: [
1520
common.props.monday,

components/monday/sources/new-subitem/new-subitem.mjs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-new-subitem",
6-
name: "New Sub-Item (Instant)",
7-
description: "Emit new event when a sub-item is created. To create this trigger, you need to have at least one subitem previously created on your board.",
6+
name: "New Sub-Item Created (Instant)",
7+
description: "Emit new event when a sub-item is created. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13+
alertBox: {
14+
type: "alert",
15+
alertType: "warning",
16+
content: "To create this trigger, you need to have at least one subitem previously created on your board.",
17+
},
1318
boardId: {
1419
propDefinition: [
1520
common.props.monday,

components/monday/sources/new-user/new-user.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import common from "../common/common-polling.mjs";
33
export default {
44
...common,
55
key: "monday-new-user",
6-
name: "New User",
7-
description: "Emit new event when a new user is created in Monday.",
6+
name: "New User Created",
7+
description: "Emit new event when a new user is created in Monday. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.8",
9+
version: "0.0.9",
1010
dedupe: "unique",
1111
methods: {
1212
...common.methods,

components/monday/sources/specific-column-updated/specific-column-updated.mjs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-specific-column-updated",
6-
name: "New Specific Column Updated (Instant)",
7-
description: "Emit new event when a value in the specified column is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.",
6+
name: "Specific Column Updated (Instant)",
7+
description: "Emit new event when a value in the specified column is updated. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
hooks: {
1212
...common.hooks,
@@ -16,6 +16,11 @@ export default {
1616
},
1717
props: {
1818
...common.props,
19+
alertBox: {
20+
type: "alert",
21+
alertType: "warning",
22+
content: "For changes to `Name`, use the **Name Updated** trigger.",
23+
},
1924
column: {
2025
propDefinition: [
2126
common.props.monday,

components/monday/sources/subitem-column-value-updated/subitem-column-value-updated.mjs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-subitem-column-value-updated",
6-
name: "New Sub-Item Column Value Updated (Instant)",
7-
description: "Emit new event when any sub-item column changes. To create this trigger, you need to have at least one subitem previously created on your board.",
6+
name: "Sub-Item Column Value Updated (Instant)",
7+
description: "Emit new event when any sub-item column changes. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13+
alertBox: {
14+
type: "alert",
15+
alertType: "warning",
16+
content: "To create this trigger, you need to have at least one subitem previously created on your board.",
17+
},
1318
boardId: {
1419
propDefinition: [
1520
common.props.monday,

components/monday/sources/subitem-name-updated/subitem-name-updated.mjs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,18 @@ import common from "../common/common-webhook.mjs";
33
export default {
44
...common,
55
key: "monday-subitem-name-updated",
6-
name: "New Sub-Item Name Updated (Instant)",
7-
description: "Emit new event when a sub-item name changes. To create this trigger, you need to have at least one subitem previously created on your board.",
6+
name: "Sub-Item Name Updated (Instant)",
7+
description: "Emit new event when a sub-item name changes. [See the documentation](https://developer.monday.com/api-reference/reference/webhooks#sample-payload-for-webhook-events)",
88
type: "source",
9-
version: "0.0.6",
9+
version: "0.0.7",
1010
dedupe: "unique",
1111
props: {
1212
...common.props,
13+
alertBox: {
14+
type: "alert",
15+
alertType: "warning",
16+
content: "To create this trigger, you need to have at least one subitem previously created on your board.",
17+
},
1318
boardId: {
1419
propDefinition: [
1520
common.props.monday,

0 commit comments

Comments
 (0)