Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "timebuzzer-list-activities",
name: "List Activities",
description: "Retrieves a list of all activities in Timebuzzer. [See the documentation](https://my.timebuzzer.com/doc/#api-Activities-GetFilteredActivities)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -21,23 +21,23 @@ export default {
],
type: "integer[]",
label: "User IDs",
description: "Filter by User Ids",
description: "Filter by User IDs",
optional: true,
},
startDate: {
propDefinition: [
timebuzzer,
"startDate",
],
description: "Returns Activities which starts after this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
description: "Returns Activities which start after this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
optional: true,
},
endDate: {
propDefinition: [
timebuzzer,
"endDate",
],
description: "Returns Activities which ends before this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
description: "Returns Activities which end before this date in UTC. e.g. `2016-12-10T09:00:00.000Z`",
optional: true,
},
note: {
Expand All @@ -47,9 +47,9 @@ export default {
],
optional: true,
},
runnintActivities: {
runningActivities: {
type: "boolean",
label: "Runnint Activities",
label: "Running Activities",
description: "If `true`, activities without an end date will be found",
optional: true,
},
Expand Down
2 changes: 1 addition & 1 deletion components/timebuzzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/timebuzzer",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream timeBuzzer Components",
"main": "timebuzzer.app.mjs",
"keywords": [
Expand Down
Loading