@pipedream/mapbox 0.2.0 → 0.2.2

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,12 @@ export default {
6
6
  key: "mapbox-create-tileset",
7
7
  name: "Create Tileset",
8
8
  description: "Uploads and creates a new tileset from a data source. [See the documentation](https://docs.mapbox.com/api/maps/mapbox-tiling-service/)",
9
- version: "0.1.0",
9
+ version: "0.1.2",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  mapbox,
@@ -42,6 +47,12 @@ export default {
42
47
  description: "Describes whether the tileset must be used with an access token from your Mapbox account. Default is `true`.",
43
48
  optional: true,
44
49
  },
50
+ syncDir: {
51
+ type: "dir",
52
+ accessMode: "read",
53
+ sync: true,
54
+ optional: true,
55
+ },
45
56
  },
46
57
  async run({ $ }) {
47
58
  // Create Tileset Source
@@ -4,7 +4,12 @@ export default {
4
4
  key: "mapbox-generate-directions",
5
5
  name: "Generate Directions",
6
6
  description: "Generates directions between two or more locations using Mapbox API. [See the documentation](https://docs.mapbox.com/api/navigation/directions/).",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: false,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  mapbox,
@@ -4,7 +4,12 @@ export default {
4
4
  key: "mapbox-geocode-address",
5
5
  name: "Geocode Address",
6
6
  description: "Retrieves the geocoded location for a given address. [See the documentation](https://docs.mapbox.com/api/search/geocoding/)",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: true,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  mapbox,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/mapbox",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Pipedream Mapbox Components",
5
5
  "main": "mapbox.app.mjs",
6
6
  "keywords": [
@@ -14,6 +14,6 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@pipedream/platform": "^3.1.0",
17
- "form-data": "^4.0.1"
17
+ "form-data": "^4.0.4"
18
18
  }
19
19
  }