@pipedream/google_calendar 0.8.1 → 0.8.2
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.
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
key: "google_calendar-list-events",
|
|
7
7
|
name: "List Events",
|
|
8
8
|
description: "Retrieve a list of event from the Google Calendar. [See the documentation](https://developers.google.com/calendar/api/v3/reference/events/list)",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.12",
|
|
10
10
|
annotations: {
|
|
11
11
|
destructiveHint: false,
|
|
12
12
|
openWorldHint: true,
|
|
@@ -148,6 +148,12 @@ export default {
|
|
|
148
148
|
events.length = this.maxResults;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
for (const event of events) {
|
|
152
|
+
if (!event.summary) {
|
|
153
|
+
event.summary = `Event ID: ${event.id}`;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
151
157
|
$.export("$summary", `Successfully retrieved ${events.length} event${events.length === 1
|
|
152
158
|
? ""
|
|
153
159
|
: "s"}`);
|