@doist/todoist-api-typescript 5.0.1 → 5.0.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/dist/types/entities.d.ts
CHANGED
|
@@ -463,7 +463,7 @@ export declare const WorkspaceProjectSchema: z.ZodEffects<z.ZodObject<z.objectUt
|
|
|
463
463
|
isShared: z.ZodBoolean;
|
|
464
464
|
}, {
|
|
465
465
|
collaboratorRoleDefault: z.ZodString;
|
|
466
|
-
folderId: z.ZodNullable<z.
|
|
466
|
+
folderId: z.ZodNullable<z.ZodString>;
|
|
467
467
|
isInviteOnly: z.ZodNullable<z.ZodBoolean>;
|
|
468
468
|
isLinkSharingEnabled: z.ZodBoolean;
|
|
469
469
|
role: z.ZodNullable<z.ZodString>;
|
|
@@ -488,7 +488,7 @@ export declare const WorkspaceProjectSchema: z.ZodEffects<z.ZodObject<z.objectUt
|
|
|
488
488
|
defaultOrder: number;
|
|
489
489
|
isShared: boolean;
|
|
490
490
|
collaboratorRoleDefault: string;
|
|
491
|
-
folderId:
|
|
491
|
+
folderId: string | null;
|
|
492
492
|
isInviteOnly: boolean | null;
|
|
493
493
|
isLinkSharingEnabled: boolean;
|
|
494
494
|
role: string | null;
|
|
@@ -512,7 +512,7 @@ export declare const WorkspaceProjectSchema: z.ZodEffects<z.ZodObject<z.objectUt
|
|
|
512
512
|
defaultOrder: number;
|
|
513
513
|
isShared: boolean;
|
|
514
514
|
collaboratorRoleDefault: string;
|
|
515
|
-
folderId:
|
|
515
|
+
folderId: string | null;
|
|
516
516
|
isInviteOnly: boolean | null;
|
|
517
517
|
isLinkSharingEnabled: boolean;
|
|
518
518
|
role: string | null;
|
|
@@ -537,7 +537,7 @@ export declare const WorkspaceProjectSchema: z.ZodEffects<z.ZodObject<z.objectUt
|
|
|
537
537
|
defaultOrder: number;
|
|
538
538
|
isShared: boolean;
|
|
539
539
|
collaboratorRoleDefault: string;
|
|
540
|
-
folderId:
|
|
540
|
+
folderId: string | null;
|
|
541
541
|
isInviteOnly: boolean | null;
|
|
542
542
|
isLinkSharingEnabled: boolean;
|
|
543
543
|
role: string | null;
|
|
@@ -561,7 +561,7 @@ export declare const WorkspaceProjectSchema: z.ZodEffects<z.ZodObject<z.objectUt
|
|
|
561
561
|
defaultOrder: number;
|
|
562
562
|
isShared: boolean;
|
|
563
563
|
collaboratorRoleDefault: string;
|
|
564
|
-
folderId:
|
|
564
|
+
folderId: string | null;
|
|
565
565
|
isInviteOnly: boolean | null;
|
|
566
566
|
isLinkSharingEnabled: boolean;
|
|
567
567
|
role: string | null;
|
package/dist/types/entities.js
CHANGED
|
@@ -110,7 +110,7 @@ exports.PersonalProjectSchema = exports.BaseProjectSchema.extend({
|
|
|
110
110
|
*/
|
|
111
111
|
exports.WorkspaceProjectSchema = exports.BaseProjectSchema.extend({
|
|
112
112
|
collaboratorRoleDefault: zod_1.z.string(),
|
|
113
|
-
folderId: zod_1.z.
|
|
113
|
+
folderId: zod_1.z.string().nullable(),
|
|
114
114
|
isInviteOnly: zod_1.z.boolean().nullable(),
|
|
115
115
|
isLinkSharingEnabled: zod_1.z.boolean(),
|
|
116
116
|
role: zod_1.z.string().nullable(),
|
package/package.json
CHANGED