Skip to content

Commit

Permalink
Merge pull request #139 from zomars/patch-1
Browse files Browse the repository at this point in the history
Adds edge case where displayName may be an object
  • Loading branch information
natelindev authored Jun 24, 2023
2 parents aac0372 + 645624f commit 28201bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/tsdav.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type DAVCollection = {
objects?: DAVObject[];
ctag?: string;
description?: string;
displayName?: string;
displayName?: string | Record<string, unknown>;
reports?: any;
resourcetype?: any;
syncToken?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/types/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type DAVCollection = {
objects?: DAVObject[];
ctag?: string;
description?: string;
displayName?: string;
displayName?: string | Record<string, unknown>;
reports?: any;
resourcetype?: any;
syncToken?: string;
Expand Down

0 comments on commit 28201bf

Please sign in to comment.