@pipedream/vero 0.1.2 → 0.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.
@@ -5,7 +5,12 @@ export default {
5
5
  type: "action",
6
6
  key: "vero-create-or-update-user",
7
7
  name: "Create or Update User",
8
- version: "0.0.2",
8
+ version: "0.0.3",
9
+ annotations: {
10
+ destructiveHint: true,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  description: "This endpoint creates a new user profile if the user doesn't exist yet. Otherwise, the user profile is updated based on the properties provided. [See the documentation](https://developers.getvero.com/track-api-reference/#/operations/identify)",
10
15
  props: {
11
16
  app,
@@ -3,9 +3,15 @@ import app from "../../vero.app.mjs";
3
3
 
4
4
  export default {
5
5
  type: "action",
6
+ ai: "optimized",
6
7
  key: "vero-track-event-for-user",
7
8
  name: "Track Event for User",
8
- version: "0.0.1",
9
+ version: "0.0.3",
10
+ annotations: {
11
+ destructiveHint: false,
12
+ openWorldHint: true,
13
+ readOnlyHint: false,
14
+ },
9
15
  description: "This endpoint tracks an event for a specific user. If the user profile doesn't exist Vero will create it. [See the documentation](https://developers.getvero.com/track-api-reference/#/operations/track)",
10
16
  props: {
11
17
  app,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/vero",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Pipedream Vero Components",
5
5
  "main": "vero.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.0.3"
16
+ "@pipedream/platform": "^3.1.1"
17
17
  }
18
18
  }