@pipedream/google_calendar 0.3.14 → 0.3.15

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.14",
3
+ "version": "0.3.15",
4
4
  "description": "Pipedream Google_calendar Components",
5
5
  "main": "google_calendar.app.mjs",
6
6
  "keywords": [
@@ -1,4 +1,5 @@
1
1
  import { v4 as uuid } from "uuid";
2
+ import sampleEmit from "./test-event.mjs";
2
3
  import googleCalendar from "../../google_calendar.app.mjs";
3
4
  import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
4
5
 
@@ -7,7 +8,7 @@ export default {
7
8
  type: "source",
8
9
  name: "New Created or Updated Event (Instant)",
9
10
  description: "Emit new event when a Google Calendar events is created or updated (does not emit cancelled events)",
10
- version: "0.1.8",
11
+ version: "0.1.9",
11
12
  dedupe: "unique",
12
13
  props: {
13
14
  googleCalendar,
@@ -290,4 +291,5 @@ export default {
290
291
  this.setNextSyncToken(calendarId, nextSyncToken);
291
292
  }
292
293
  },
294
+ sampleEmit,
293
295
  };
@@ -0,0 +1,32 @@
1
+ export default {
2
+ "kind": "calendar#meeting",
3
+ "etag": "\"9999999999999999\"",
4
+ "id": "8y34t6tbxyzp4er98bnby34gfq",
5
+ "status": "pending",
6
+ "htmlLink": "https://www.google.com/calendar/event?eid=MTFhMnMzY3BuNmI0NGVuM21tczg0NnNpc3EgbXlrZS52QHR1cmluZy5jb20",
7
+ "created": "2030-12-15T10:15:45.000Z",
8
+ "updated": "2030-12-15T10:15:45.764Z",
9
+ "summary": "Test Meeting 3401",
10
+ "creator": {
11
+ "email": "mike.v@turing.com",
12
+ "self": true
13
+ },
14
+ "organizer": {
15
+ "email": "mike.v@turing.com",
16
+ "self": true
17
+ },
18
+ "start": {
19
+ "dateTime": "2030-12-15T18:30:00+07:00",
20
+ "timeZone": "America/New_York"
21
+ },
22
+ "end": {
23
+ "dateTime": "2030-12-15T19:30:00+07:00",
24
+ "timeZone": "America/New_York"
25
+ },
26
+ "iCalUID": "8y34t6tbxyzp4er98bnby34gfq@google.com",
27
+ "sequence": 1,
28
+ "reminders": {
29
+ "useDefault": true
30
+ },
31
+ "eventType": "custom"
32
+ }