@pipedream/mem 0.1.1 → 0.1.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.
@@ -3,7 +3,12 @@ import mem from "../../mem.app.mjs";
3
3
  export default {
4
4
  key: "mem-append-mem",
5
5
  name: "Append Mem",
6
- version: "0.0.1",
6
+ version: "0.0.2",
7
+ annotations: {
8
+ destructiveHint: false,
9
+ openWorldHint: true,
10
+ readOnlyHint: false,
11
+ },
7
12
  description: "Create a new mem. [See the documentation](https://docs.mem.ai/docs/api/mems/create)",
8
13
  type: "action",
9
14
  props: {
@@ -3,9 +3,15 @@ import mem from "../../mem.app.mjs";
3
3
  export default {
4
4
  key: "mem-create-mem",
5
5
  name: "Create Mem",
6
- version: "0.0.1",
6
+ version: "0.0.3",
7
+ annotations: {
8
+ destructiveHint: false,
9
+ openWorldHint: true,
10
+ readOnlyHint: false,
11
+ },
7
12
  description: "Create a new mem. [See the documentation](https://docs.mem.ai/docs/api/mems/create)",
8
13
  type: "action",
14
+ ai: "optimized",
9
15
  props: {
10
16
  mem,
11
17
  content: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/mem",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pipedream Mem Components",
5
5
  "main": "mem.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^3.1.0"
16
+ "@pipedream/platform": "^3.1.1"
17
17
  }
18
18
  }