Skip to content

Commit 6512c92

Browse files
authored
timeBuzzer - fix variable name (#19355)
1 parent 4037eb4 commit 6512c92

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

components/timebuzzer/actions/list-activities/list-activities.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "timebuzzer-list-activities",
66
name: "List Activities",
77
description: "Retrieves a list of all activities in Timebuzzer. [See the documentation](https://my.timebuzzer.com/doc/#api-Activities-GetFilteredActivities)",
8-
version: "0.0.2",
8+
version: "0.0.3",
99
annotations: {
1010
destructiveHint: false,
1111
openWorldHint: true,
@@ -21,23 +21,23 @@ export default {
2121
],
2222
type: "integer[]",
2323
label: "User IDs",
24-
description: "Filter by User Ids",
24+
description: "Filter by User IDs",
2525
optional: true,
2626
},
2727
startDate: {
2828
propDefinition: [
2929
timebuzzer,
3030
"startDate",
3131
],
32-
description: "Returns Activities which starts after this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
32+
description: "Returns Activities which start after this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
3333
optional: true,
3434
},
3535
endDate: {
3636
propDefinition: [
3737
timebuzzer,
3838
"endDate",
3939
],
40-
description: "Returns Activities which ends before this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
40+
description: "Returns Activities which end before this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
4141
optional: true,
4242
},
4343
note: {
@@ -47,9 +47,9 @@ export default {
4747
],
4848
optional: true,
4949
},
50-
runnintActivities: {
50+
runningActivities: {
5151
type: "boolean",
52-
label: "Runnint Activities",
52+
label: "Running Activities",
5353
description: "If `true`, activities without an end date will be found",
5454
optional: true,
5555
},

components/timebuzzer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/timebuzzer",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream timeBuzzer Components",
55
"main": "timebuzzer.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)