Skip to content

Commit

Permalink
fix: Change EntityInHierarchy.parentId to string (#157)
Browse files Browse the repository at this point in the history
fix: Change EntityInHierarchy.parentId to string
  • Loading branch information
engfragui committed Oct 11, 2022
1 parent 4a96c98 commit d566c27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@doist/todoist-api-typescript",
"version": "2.0.5",
"version": "2.0.6",
"description": "A typescript wrapper for the Todoist REST API.",
"author": "Doist developers",
"repository": "[email protected]:doist/todoist-api-typescript.git",
Expand Down
2 changes: 1 addition & 1 deletion src/types/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export type OrderedEntity = TodoistEntity & {
}

export type EntityInHierarchy = OrderedEntity & {
parentId?: number
parentId?: string
}

export const DueDate = Record({
Expand Down

0 comments on commit d566c27

Please sign in to comment.