@doist/todoist-api-typescript 2.0.4 → 2.0.6
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/dist/types/entities.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare type OrderedEntity = TodoistEntity & {
|
|
|
7
7
|
order: number;
|
|
8
8
|
};
|
|
9
9
|
export declare type EntityInHierarchy = OrderedEntity & {
|
|
10
|
-
parentId?:
|
|
10
|
+
parentId?: string;
|
|
11
11
|
};
|
|
12
12
|
export declare const DueDate: import("runtypes").Intersect<[Record<{
|
|
13
13
|
isRecurring: Boolean;
|
package/dist/types/requests.d.ts
CHANGED
|
@@ -32,11 +32,11 @@ export declare type UpdateTaskArgs = {
|
|
|
32
32
|
description?: string;
|
|
33
33
|
labels?: string[];
|
|
34
34
|
priority?: number;
|
|
35
|
-
dueString?: string;
|
|
36
|
-
dueLang?: string;
|
|
37
|
-
dueDate?: string;
|
|
38
|
-
dueDatetime?: string;
|
|
39
|
-
assigneeId?: string;
|
|
35
|
+
dueString?: string | null;
|
|
36
|
+
dueLang?: string | null;
|
|
37
|
+
dueDate?: string | null;
|
|
38
|
+
dueDatetime?: string | null;
|
|
39
|
+
assigneeId?: string | null;
|
|
40
40
|
};
|
|
41
41
|
export declare type ProjectViewStyle = 'list' | 'board';
|
|
42
42
|
export declare type AddProjectArgs = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doist/todoist-api-typescript",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "A typescript wrapper for the Todoist REST API.",
|
|
5
5
|
"author": "Doist developers",
|
|
6
6
|
"repository": "git@github.com:doist/todoist-api-typescript.git",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"@types/axios": "0.14.0",
|
|
38
38
|
"@types/jest": "27.5.2",
|
|
39
39
|
"@types/uuid": "8.3.4",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
41
|
-
"@typescript-eslint/parser": "5.
|
|
42
|
-
"eslint": "8.
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "5.39.0",
|
|
41
|
+
"@typescript-eslint/parser": "5.39.0",
|
|
42
|
+
"eslint": "8.24.0",
|
|
43
43
|
"eslint-config-prettier": "8.5.0",
|
|
44
44
|
"eslint-import-resolver-webpack": "0.13.2",
|
|
45
45
|
"eslint-plugin-import": "2.26.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"rimraf": "3.0.2",
|
|
53
53
|
"ts-jest": "28.0.8",
|
|
54
54
|
"ts-node": "10.9.1",
|
|
55
|
-
"typescript": "4.8.
|
|
55
|
+
"typescript": "4.8.4"
|
|
56
56
|
},
|
|
57
57
|
"prettier": "@doist/prettier-config",
|
|
58
58
|
"husky": {
|