@pipedream/microsoft_outlook_calendar 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,14 +4,14 @@ export default {
|
|
4
4
|
key: "microsoft_outlook_calendar-get-schedule",
|
5
5
|
name: "Get Free/Busy Schedule",
|
6
6
|
description: "Get the free/busy availability information for a collection of users, distributions lists, or resources (rooms or equipment) for a specified time period. [See the documentation](https://learn.microsoft.com/en-us/graph/api/calendar-getschedule)",
|
7
|
-
version: "0.0.
|
7
|
+
version: "0.0.2",
|
8
8
|
type: "action",
|
9
9
|
props: {
|
10
10
|
microsoftOutlook,
|
11
11
|
schedules: {
|
12
12
|
type: "string[]",
|
13
|
-
label: "
|
14
|
-
description: "A
|
13
|
+
label: "Emails",
|
14
|
+
description: "A list of emails of users, distribution lists, or resources. For example: `[ \"adelev@contoso.com\" , \"meganb@contoso.com\" ]`",
|
15
15
|
},
|
16
16
|
start: {
|
17
17
|
propDefinition: [
|
@@ -4,38 +4,21 @@ export default {
|
|
4
4
|
key: "microsoft_outlook_calendar-list-events",
|
5
5
|
name: "List Events",
|
6
6
|
description: "Get a list of event objects in the user's mailbox. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-events)",
|
7
|
-
version: "0.0.
|
7
|
+
version: "0.0.2",
|
8
8
|
type: "action",
|
9
9
|
props: {
|
10
10
|
microsoftOutlook,
|
11
11
|
filter: {
|
12
12
|
type: "string",
|
13
13
|
label: "Filter",
|
14
|
-
description: "
|
14
|
+
description: "Filters results. For example, `contains(subject, 'meet for lunch?')` will include events whose title contains ‘meet for lunch?’. [See documentation](https://learn.microsoft.com/en-us/graph/filter-query-parameter) for the full list of operations.",
|
15
15
|
optional: true,
|
16
16
|
},
|
17
17
|
orderBy: {
|
18
18
|
type: "string",
|
19
19
|
label: "Order By",
|
20
|
-
description: "
|
21
|
-
default: "createdDateTime",
|
22
|
-
optional: true,
|
23
|
-
},
|
24
|
-
sortOrder: {
|
25
|
-
type: "string",
|
26
|
-
label: "Sort Order",
|
27
|
-
description: "Whether to sort the results in ascending or descending order. Default is `descending`.",
|
28
|
-
options: [
|
29
|
-
{
|
30
|
-
label: "ascending",
|
31
|
-
value: "asc",
|
32
|
-
},
|
33
|
-
{
|
34
|
-
label: "descending",
|
35
|
-
value: "desc",
|
36
|
-
},
|
37
|
-
],
|
38
|
-
default: "desc",
|
20
|
+
description: "Orders results. For example, `displayName desc` will sort the results by Display Name in decending order.",
|
21
|
+
default: "createdDateTime desc",
|
39
22
|
optional: true,
|
40
23
|
},
|
41
24
|
maxResults: {
|
@@ -49,7 +32,7 @@ export default {
|
|
49
32
|
const { value = [] } = await this.microsoftOutlook.listCalendarEvents({
|
50
33
|
$,
|
51
34
|
params: {
|
52
|
-
"$orderby":
|
35
|
+
"$orderby": this.orderBy,
|
53
36
|
"$filter": this.filter,
|
54
37
|
"$top": this.maxResults,
|
55
38
|
},
|