@pipedream/google_calendar 0.3.13 → 0.3.14

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/google_calendar",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "Pipedream Google_calendar Components",
5
5
  "main": "google_calendar.app.mjs",
6
6
  "keywords": [
@@ -1,11 +1,12 @@
1
1
  import common from "../common/common.mjs";
2
+ import sampleEmit from "./test-event.mjs";
2
3
 
3
4
  export default {
4
5
  ...common,
5
6
  key: "google_calendar-event-start",
6
7
  name: "New Event Start",
7
8
  description: "Emit new event when the specified time before the Google Calendar event starts",
8
- version: "0.1.4",
9
+ version: "0.1.5",
9
10
  type: "source",
10
11
  dedupe: "unique",
11
12
  props: {
@@ -37,4 +38,5 @@ export default {
37
38
  return eventStart && msFromStart > 0 && msFromStart < intervalMs;
38
39
  },
39
40
  },
41
+ sampleEmit,
40
42
  };
@@ -0,0 +1,32 @@
1
+ export default {
2
+ "kind": "calendar#meeting",
3
+ "etag": "\"3299999999966000\"",
4
+ "id": "3459g2tr92dbuwecv8m939jplk",
5
+ "status": "upcoming",
6
+ "htmlLink": "https://www.google.com/calendar/event?eid=MzQ1OWcydHI5MmRidXlldm45bTg5MzlwamsgeHhudkBzYW5kYm94LmNvbQ",
7
+ "created": "2025-09-13T08:25:45.000Z",
8
+ "updated": "2025-09-13T08:25:45.983Z",
9
+ "summary": "Sample Event 2005",
10
+ "creator": {
11
+ "email": "xhx.v@sandbox.com",
12
+ "self": true
13
+ },
14
+ "organizer": {
15
+ "email": "xhx.v@sandbox.com",
16
+ "self": true
17
+ },
18
+ "start": {
19
+ "dateTime": "2025-09-13T18:30:00+09:00",
20
+ "timeZone": "Asia/Tokyo"
21
+ },
22
+ "end": {
23
+ "dateTime": "2025-09-13T19:00:00+09:00",
24
+ "timeZone": "Asia/Tokyo"
25
+ },
26
+ "iCalUID": "3459g2tr92dbuwecv8m939jplk@google.com",
27
+ "sequence": 1,
28
+ "reminders": {
29
+ "useDefault": true
30
+ },
31
+ "eventType": "normal"
32
+ }