You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/timebuzzer/actions/list-activities/list-activities.mjs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ export default {
5
5
key: "timebuzzer-list-activities",
6
6
name: "List Activities",
7
7
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",
9
9
annotations: {
10
10
destructiveHint: false,
11
11
openWorldHint: true,
@@ -21,23 +21,23 @@ export default {
21
21
],
22
22
type: "integer[]",
23
23
label: "User IDs",
24
-
description: "Filter by User Ids",
24
+
description: "Filter by User IDs",
25
25
optional: true,
26
26
},
27
27
startDate: {
28
28
propDefinition: [
29
29
timebuzzer,
30
30
"startDate",
31
31
],
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`",
33
33
optional: true,
34
34
},
35
35
endDate: {
36
36
propDefinition: [
37
37
timebuzzer,
38
38
"endDate",
39
39
],
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`",
41
41
optional: true,
42
42
},
43
43
note: {
@@ -47,9 +47,9 @@ export default {
47
47
],
48
48
optional: true,
49
49
},
50
-
runnintActivities: {
50
+
runningActivities: {
51
51
type: "boolean",
52
-
label: "Runnint Activities",
52
+
label: "Running Activities",
53
53
description: "If `true`, activities without an end date will be found",
0 commit comments