@pipedream/todoist 0.0.1 → 0.0.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.
- package/README.md +11 -0
- package/package.json +4 -3
- package/sources/common.mjs +2 -1
- package/sources/completed-task/completed-task.mjs +1 -1
- package/sources/incomplete-task/incomplete-task.mjs +1 -1
- package/sources/new-or-modified-project/new-or-modified-project.mjs +1 -1
- package/sources/new-or-modified-task/new-or-modified-task.mjs +1 -1
- package/sources/new-project/new-project.mjs +1 -1
- package/sources/new-section/new-section.mjs +1 -1
- package/sources/new-task/new-task.mjs +1 -1
- package/sources/sync-resources/sync-resources.mjs +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
With the Todoist API, you can build a variety of applications and tools to help
|
|
4
|
+
you manage your to-do lists and tasks. Here are just a few examples of what you
|
|
5
|
+
can build:
|
|
6
|
+
|
|
7
|
+
- A to-do list application that allows you to manage your tasks and to-dos in
|
|
8
|
+
one place.
|
|
9
|
+
- A task management tool that helps you keep track of your tasks and to-dos.
|
|
10
|
+
- A tool that helps you prioritize your tasks and to-dos.
|
|
11
|
+
- A tool that helps you track your progress on your tasks and to-dos.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/todoist",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Pipedream Todoist Components",
|
|
5
5
|
"main": "todoist.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -11,10 +11,11 @@
|
|
|
11
11
|
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"dependencies": {
|
|
14
|
+
"@pipedream/platform": "^1.2.0",
|
|
15
|
+
"json-2-csv": "^3.15.1",
|
|
14
16
|
"querystring": "^0.2.1",
|
|
15
|
-
"uuid": "^8.3.2",
|
|
16
17
|
"tmp-promise": "^3.0.3",
|
|
17
|
-
"
|
|
18
|
+
"uuid": "^8.3.2"
|
|
18
19
|
},
|
|
19
20
|
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",
|
|
20
21
|
"publishConfig": {
|
package/sources/common.mjs
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import todoist from "../todoist.app.mjs";
|
|
2
|
+
import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
|
|
2
3
|
|
|
3
4
|
export default {
|
|
4
5
|
props: {
|
|
@@ -8,7 +9,7 @@ export default {
|
|
|
8
9
|
label: "Polling Interval",
|
|
9
10
|
description: "Pipedream will poll the Todoist API on this schedule",
|
|
10
11
|
default: {
|
|
11
|
-
intervalSeconds:
|
|
12
|
+
intervalSeconds: DEFAULT_POLLING_SOURCE_TIMER_INTERVAL,
|
|
12
13
|
},
|
|
13
14
|
},
|
|
14
15
|
db: "$.service.db",
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-completed-task",
|
|
6
6
|
name: "Completed Task",
|
|
7
7
|
description: "Emit new event for each completed task. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
methods: {
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-incomplete-task",
|
|
6
6
|
name: "Incomplete Task",
|
|
7
7
|
description: "Emit new event for each new incomplete task. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
methods: {
|
|
@@ -5,6 +5,6 @@ export default {
|
|
|
5
5
|
key: "todoist-new-or-modified-project",
|
|
6
6
|
name: "New or Modified Project",
|
|
7
7
|
description: "Emit new event for each new or modified project. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
};
|
|
@@ -5,6 +5,6 @@ export default {
|
|
|
5
5
|
key: "todoist-new-or-modified-task",
|
|
6
6
|
name: "New or Modified Task",
|
|
7
7
|
description: "Emit new event for each new or modified task. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
};
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-new-project",
|
|
6
6
|
name: "New Project",
|
|
7
7
|
description: "Emit new event for each new project. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "greatest",
|
|
11
11
|
};
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-new-section",
|
|
6
6
|
name: "New Section",
|
|
7
7
|
description: "Emit new event for each new section added. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "greatest",
|
|
11
11
|
methods: {
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-new-task",
|
|
6
6
|
name: "New Task",
|
|
7
7
|
description: "Emit new event for each new task. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
dedupe: "greatest",
|
|
11
11
|
};
|
|
@@ -5,7 +5,7 @@ export default {
|
|
|
5
5
|
key: "todoist-sync-resources",
|
|
6
6
|
name: "Sync Resources",
|
|
7
7
|
description: "Emit new updates for your selected resources. [See the docs here](https://developer.todoist.com/sync/v8/#read-resources)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.4",
|
|
9
9
|
type: "source",
|
|
10
10
|
props: {
|
|
11
11
|
...common.props,
|