chore(server): remove unused property (#9521)

This commit is contained in:
Jason Rasmussen 2024-05-15 15:17:48 -04:00 committed by GitHub
parent 581b467b4b
commit 73bf8f343a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 19 additions and 131 deletions

View file

@ -442,7 +442,6 @@ export type LibraryResponseDto = {
export type CreateLibraryDto = {
exclusionPatterns?: string[];
importPaths?: string[];
isVisible?: boolean;
name?: string;
ownerId: string;
"type": LibraryType;
@ -450,7 +449,6 @@ export type CreateLibraryDto = {
export type UpdateLibraryDto = {
exclusionPatterns?: string[];
importPaths?: string[];
isVisible?: boolean;
name?: string;
};
export type ScanLibraryDto = {