Skip to content

Commit e10a9ce

Browse files
committed
Source description updates and standardization
1 parent 5bcde2f commit e10a9ce

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

components/basecamp/sources/new-comment-created/new-comment-created.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export default {
44
...common,
55
key: "basecamp-new-comment-created",
66
name: "New Comment Created (Instant)",
7-
description: "Emit new event when a comment is created. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
8-
version: "0.0.7",
7+
description: "Emit new event when a comment is created. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
8+
version: "0.0.8",
99
dedupe: "unique",
1010
type: "source",
1111
methods: {

components/basecamp/sources/new-event-by-webhook-type/new-event-by-webhook-type.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ import common from "../common/webhook.mjs";
44
export default {
55
...common,
66
key: "basecamp-new-event-by-webhook-type",
7-
name: "New Event By Webhook Type (Instant)",
8-
description: "Emit new event based on the selected webhook type. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
9-
version: "0.0.7",
7+
name: "New Webhook Event (Instant)",
8+
description: "Emit events of one or more selected types. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
9+
version: "0.0.8",
1010
dedupe: "unique",
1111
type: "source",
1212
props: {
1313
...common.props,
1414
webhookTypes: {
1515
type: "string[]",
16-
label: "Webhook Types",
17-
description: "Select types of webhook for listening.",
16+
label: "Event Types",
17+
description: "Select the types of events to be emitted. [See the documentation](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks) for more information.",
1818
options: constants.WEBHOOK_TYPE_OPTS,
1919
},
2020
},

components/basecamp/sources/new-message-created/new-message-created.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export default {
44
...common,
55
key: "basecamp-new-message-created",
66
name: "New Message Created (Instant)",
7-
description: "Emit new event when a message is created. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
8-
version: "0.0.7",
7+
description: "Emit new event when a message is created. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
8+
version: "0.0.8",
99
dedupe: "unique",
1010
type: "source",
1111
methods: {

components/basecamp/sources/new-to-do-item-created/new-to-do-item-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
...common,
55
key: "basecamp-new-to-do-item-created",
66
name: "New To-Do Item Created (Instant)",
7-
description: "Emit new event when a to-do item is created. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
7+
description: "Emit new event when a to-do item is created. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
88
version: "0.0.7",
99
dedupe: "unique",
1010
type: "source",

components/basecamp/sources/new-to-do-item-status/new-to-do-item-status.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import common from "../common/webhook.mjs";
33
export default {
44
...common,
55
key: "basecamp-new-to-do-item-status",
6-
name: "New To-Do Item Status (Instant)",
7-
description: "Emit new event when a to-do item status changes. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
8-
version: "0.0.7",
6+
name: "New To-Do Item Completed Or Uncompleted (Instant)",
7+
description: "Emit new event when a to-do item's status changes. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
8+
version: "0.0.8",
99
dedupe: "unique",
1010
type: "source",
1111
methods: {

components/basecamp/sources/new-to-do-list-created/new-to-do-list-created.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export default {
44
...common,
55
key: "basecamp-new-to-do-list-created",
66
name: "New To-Do List Created (Instant)",
7-
description: "Emit new event when a to-do list is created. [See the docs here](https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#create-a-webhook)",
8-
version: "0.0.7",
7+
description: "Emit new event when a to-do list is created. [See the documentation]https://github.com/basecamp/bc3-api/blob/master/sections/webhooks.md#webhooks)",
8+
version: "0.0.8",
99
dedupe: "unique",
1010
type: "source",
1111
methods: {

0 commit comments

Comments
 (0)