@pipedream/dropbox 1.1.1 → 1.1.3

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
  name: "Search files and folders",
7
7
  description: "Searches for files and folders by name. [See the documentation](https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesSearchV2__anchor)",
8
8
  key: "dropbox-search-files-folders",
9
- version: "0.0.13",
9
+ version: "0.0.14",
10
10
  annotations: {
11
11
  destructiveHint: false,
12
12
  openWorldHint: true,
@@ -91,7 +91,7 @@ export default {
91
91
  } = this;
92
92
  const res = await this.dropbox.searchFilesFolders({
93
93
  query,
94
- match_field_options: !isNil(includeHighlights)
94
+ match_field_options: isNil(includeHighlights)
95
95
  ? undefined
96
96
  : {
97
97
  include_highlights: includeHighlights,
@@ -6,7 +6,7 @@ export default {
6
6
  name: "Upload a File",
7
7
  description: "Uploads a file to a selected folder. [See the documentation](https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUpload__anchor)",
8
8
  key: "dropbox-upload-file",
9
- version: "1.0.3",
9
+ version: "1.0.4",
10
10
  annotations: {
11
11
  destructiveHint: false,
12
12
  openWorldHint: true,
@@ -34,6 +34,7 @@ export default {
34
34
  type: "string",
35
35
  label: "File Path or URL",
36
36
  description: "Provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.pdf).",
37
+ format: "file-ref",
37
38
  },
38
39
  autorename: {
39
40
  type: "boolean",
@@ -8,7 +8,7 @@ export default {
8
8
  name: "Upload Multiple Files",
9
9
  description: "Uploads multiple file to a selected folder. [See the documentation](https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUpload__anchor)",
10
10
  key: "dropbox-upload-multiple-files",
11
- version: "1.0.3",
11
+ version: "1.0.4",
12
12
  annotations: {
13
13
  destructiveHint: false,
14
14
  openWorldHint: true,
@@ -31,6 +31,7 @@ export default {
31
31
  type: "string[]",
32
32
  label: "File Paths or URLs",
33
33
  description: "Provide an array of either file URLs or paths to a files in the /tmp directory (for example, /tmp/myFile.pdf).",
34
+ format: "file-ref",
34
35
  },
35
36
  filenames: {
36
37
  type: "string[]",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/dropbox",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Pipedream Dropbox Components",
5
5
  "main": "dropbox.app.mjs",
6
6
  "keywords": [
@@ -10,12 +10,12 @@
10
10
  "homepage": "https://pipedream.com/apps/dropbox",
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
12
  "dependencies": {
13
- "@pipedream/platform": "^3.1.1",
13
+ "@pipedream/platform": "^3.2.5",
14
14
  "@types/node-fetch": "^2.5.7",
15
15
  "dropbox": "^10.34.0",
16
16
  "got": "^13.0.0",
17
17
  "isomorphic-fetch": "^3.0.0",
18
- "lodash": "^4.17.21",
18
+ "lodash": "^4.17.23",
19
19
  "stream": "^0.0.3",
20
20
  "tmp-promise": "^3.0.3",
21
21
  "util": "^0.12.5"