undo commit

This commit is contained in:
daniel31x13
2024-11-03 03:25:01 -05:00
parent aeafe6e15d
commit 9103f67db5
176 changed files with 9406 additions and 2367 deletions
+4 -1
View File
@@ -22,6 +22,7 @@ export interface LinkIncludingShortenedCollectionAndTags
pinnedBy?: {
id: number;
}[];
updatedAt?: string;
collection: OptionalExcluding<Collection, "name" | "ownerId">;
}
@@ -31,7 +32,7 @@ export interface Member {
canCreate: boolean;
canUpdate: boolean;
canDelete: boolean;
user: OptionalExcluding<User, "username" | "name" | "id">;
user: OptionalExcluding<User, "email" | "username" | "name" | "id">;
}
export interface CollectionIncludingMembersAndLinkCount
@@ -80,6 +81,8 @@ export enum Sort {
DescriptionZA,
}
export type Order = { [key: string]: "asc" | "desc" };
export type LinkRequestQuery = {
sort?: Sort;
cursor?: number;