@pipedream/google_drive 0.6.5 → 0.6.6

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_drive",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Pipedream Google_drive Components",
5
5
  "main": "google_drive.app.mjs",
6
6
  "keywords": [
@@ -1,4 +1,5 @@
1
1
  import cronParser from "cron-parser";
2
+ import sampleEmit from "./test-event.mjs";
2
3
  import includes from "lodash/includes.js";
3
4
  import { v4 as uuid } from "uuid";
4
5
 
@@ -16,7 +17,7 @@ export default {
16
17
  key: "google_drive-changes-to-specific-files",
17
18
  name: "Changes to Specific Files",
18
19
  description: "Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to [shared drive](https://support.google.com/a/users/answer/9310351) files, use the **Changes to Specific Files (Shared Drive)** source instead.",
19
- version: "0.1.1",
20
+ version: "0.1.2",
20
21
  type: "source",
21
22
  // Dedupe events based on the "x-goog-message-number" header for the target channel:
22
23
  // https://developers.google.com/drive/api/v3/push#making-watch-requests
@@ -223,4 +224,5 @@ export default {
223
224
 
224
225
  this.processChange(file, headers);
225
226
  },
227
+ sampleEmit,
226
228
  };
@@ -0,0 +1 @@
1
+ export default JSON.parse("{\n \"file\": {\n \"kind\": \"drive#file\",\n \"id\": \"1LmXTIQ0wqKP7T3-l9r127MaTXn3pVbTmw4Pt\",\n \"name\": \"Pipedream 2213\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n },\n \"change\": {\n \"state\": \"update\",\n \"resourceURI\": \"https://www.googleapis.com/drive/v3/files/1LmXTIQ0wqKP7T3-l9r127MaTXn3pVbTmw4P?alt=json&supportsAllDrives=true\",\n \"changed\": \"properties\"\n }\n}")