@pipedream/mapbox 0.2.1 → 0.2.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,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.1",
9
+ version: "0.1.3",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
10
15
  type: "action",
11
16
  props: {
12
17
  mapbox,
@@ -24,6 +29,7 @@ export default {
24
29
  type: "string",
25
30
  label: "File Path or URL",
26
31
  description: "A tileset source file. Provide either a file URL or a path to a file in the `/tmp` directory (for example, `/tmp/myFile.txt`)",
32
+ format: "file-ref",
27
33
  },
28
34
  recipe: {
29
35
  type: "object",
@@ -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.1",
3
+ "version": "0.2.3",
4
4
  "description": "Pipedream Mapbox Components",
5
5
  "main": "mapbox.app.mjs",
6
6
  "keywords": [
@@ -13,7 +13,7 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.1.0",
17
- "form-data": "^4.0.1"
16
+ "@pipedream/platform": "^3.2.5",
17
+ "form-data": "^4.0.4"
18
18
  }
19
19
  }