@pipedream/todoist 0.2.0 → 0.2.1

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.
@@ -7,7 +7,7 @@ export default {
7
7
  key: "todoist-export-tasks",
8
8
  name: "Export Tasks",
9
9
  description: "Export project task names as comma separated file. Returns path to new file. [See Docs](https://developer.todoist.com/rest/v2/#get-active-tasks)",
10
- version: "0.1.0",
10
+ version: "0.1.1",
11
11
  type: "action",
12
12
  props: {
13
13
  todoist,
@@ -17,6 +17,11 @@ export default {
17
17
  "project",
18
18
  ],
19
19
  },
20
+ syncDir: {
21
+ type: "dir",
22
+ accessMode: "write",
23
+ sync: true,
24
+ },
20
25
  },
21
26
  async run ({ $ }) {
22
27
  const { project } = this;
@@ -6,7 +6,7 @@ export default {
6
6
  key: "todoist-import-tasks",
7
7
  name: "Import Tasks",
8
8
  description: "Import tasks into a selected project. [See Docs](https://developer.todoist.com/sync/v9/#add-an-item)",
9
- version: "0.1.0",
9
+ version: "0.1.1",
10
10
  type: "action",
11
11
  props: {
12
12
  todoist,
@@ -23,6 +23,12 @@ export default {
23
23
  ],
24
24
  description: "Project to import tasks into",
25
25
  },
26
+ syncDir: {
27
+ type: "dir",
28
+ accessMode: "read",
29
+ sync: true,
30
+ optional: true,
31
+ },
26
32
  },
27
33
  methods: {
28
34
  exportSummary($, tasks) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/todoist",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Pipedream Todoist Components",
5
5
  "main": "todoist.app.mjs",
6
6
  "keywords": [