@pipedream/google_calendar 0.3.11 → 0.3.12
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.
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
type: "source",
|
|
8
8
|
name: "New or Updated Event (Instant)",
|
|
9
9
|
description: "Emit new calendar events when an event is created or updated (does not emit cancelled events)",
|
|
10
|
-
version: "0.1.
|
|
10
|
+
version: "0.1.7",
|
|
11
11
|
dedupe: "unique",
|
|
12
12
|
props: {
|
|
13
13
|
googleCalendar,
|
|
@@ -18,13 +18,16 @@ export default {
|
|
|
18
18
|
"calendarId",
|
|
19
19
|
],
|
|
20
20
|
type: "string[]",
|
|
21
|
+
default: [
|
|
22
|
+
"primary",
|
|
23
|
+
],
|
|
21
24
|
label: "Calendars",
|
|
22
|
-
description: "Select one or more calendars to watch",
|
|
25
|
+
description: "Select one or more calendars to watch (defaults to the primary calendar)",
|
|
23
26
|
},
|
|
24
27
|
newOnly: {
|
|
25
|
-
label: "
|
|
28
|
+
label: "Emit only for new events",
|
|
26
29
|
type: "boolean",
|
|
27
|
-
description: "Emit new events only, and not updates to existing events",
|
|
30
|
+
description: "Emit new events only, and not updates to existing events (defaults to `false`)",
|
|
28
31
|
optional: true,
|
|
29
32
|
default: false,
|
|
30
33
|
},
|