@doist/todoist-api-typescript 6.4.0 → 6.4.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.
|
@@ -57,6 +57,9 @@ exports.TaskSchema = zod_1.z
|
|
|
57
57
|
childOrder: zod_1.z.number().int(),
|
|
58
58
|
content: zod_1.z.string(),
|
|
59
59
|
description: zod_1.z.string(),
|
|
60
|
+
/**
|
|
61
|
+
* @deprecated This field is deprecated and will always return 0. It will be removed in a future version. Do not use or rely on this field.
|
|
62
|
+
*/
|
|
60
63
|
noteCount: zod_1.z.number().int(),
|
|
61
64
|
dayOrder: zod_1.z.number().int(),
|
|
62
65
|
isCollapsed: zod_1.z.boolean(),
|
|
@@ -54,6 +54,9 @@ export const TaskSchema = z
|
|
|
54
54
|
childOrder: z.number().int(),
|
|
55
55
|
content: z.string(),
|
|
56
56
|
description: z.string(),
|
|
57
|
+
/**
|
|
58
|
+
* @deprecated This field is deprecated and will always return 0. It will be removed in a future version. Do not use or rely on this field.
|
|
59
|
+
*/
|
|
57
60
|
noteCount: z.number().int(),
|
|
58
61
|
dayOrder: z.number().int(),
|
|
59
62
|
isCollapsed: z.boolean(),
|
package/package.json
CHANGED