@pipedream/mem 0.1.0 → 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.
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
The Mem API lets you interact with a unique knowledge base that adapts to your needs. Using Pipedream, you can automate tasks, sync information across apps, and trigger actions based on events in Mem. Think of pulling in tasks, pushing notifications, or archiving ideas - Pipedream serves as a superhighway for your Mem data to connect with over 800 apps.
|
|
4
|
+
|
|
5
|
+
# Example Use Cases
|
|
6
|
+
|
|
7
|
+
- **Sync Mem tasks with Google Calendar**: Create events in Google Calendar whenever a new task is added in Mem. Keep your schedule aligned without manual updates.
|
|
8
|
+
|
|
9
|
+
- **Archive Mem notes to Dropbox**: Every time you mark a note as 'Completed' in Mem, automatically save a backup to a specified Dropbox folder. Ideal for maintaining records and freeing up space.
|
|
10
|
+
|
|
11
|
+
- **Send Slack notifications for Mem reminders**: Set up a workflow that sends a message to your Slack when a reminder is due in Mem. Stay on top of your to-dos without leaving your team's communication hub.
|
|
@@ -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.
|
|
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.
|
|
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.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Pipedream Mem Components",
|
|
5
5
|
"main": "mem.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -11,5 +11,8 @@
|
|
|
11
11
|
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"@pipedream/platform": "^3.1.1"
|
|
14
17
|
}
|
|
15
18
|
}
|