Merge pull request #542 from linkwarden/dev

Dev
This commit is contained in:
Daniel 2024-03-27 10:58:27 +03:30 committed by GitHub
commit 5503483502
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,10 +7,16 @@ type OptionalExcluding<T, TRequired extends keyof T> = Partial<T> &
export interface LinkIncludingShortenedCollectionAndTags export interface LinkIncludingShortenedCollectionAndTags
extends Omit< extends Omit<
Link, Link,
"id" | "createdAt" | "collectionId" | "updatedAt" | "lastPreserved" | "id"
| "createdAt"
| "collectionId"
| "updatedAt"
| "lastPreserved"
| "importDate"
> { > {
id?: number; id?: number;
createdAt?: string; createdAt?: string;
importDate?: string;
collectionId?: number; collectionId?: number;
tags: Tag[]; tags: Tag[];
pinnedBy?: { pinnedBy?: {