mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 09:49:13 +00:00
chore: add LICENSE GPLv2-or-later (#897)
* chore: add LICENSE * chore: add LICENSE to README
This commit is contained in:
parent
fbdeedc74c
commit
604c7896bd
247 changed files with 1303 additions and 33 deletions
5
web/src/types/API.d.ts
vendored
5
web/src/types/API.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface APIKey {
|
||||
name: string;
|
||||
key: string;
|
||||
|
|
5
web/src/types/Config.d.ts
vendored
5
web/src/types/Config.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
type LogLevel = "DEBUG" | "INFO" | "WARN" | "ERROR" | "TRACE";
|
||||
|
||||
interface Config {
|
||||
|
|
5
web/src/types/Download.d.ts
vendored
5
web/src/types/Download.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
type DownloadClientType =
|
||||
"QBITTORRENT" |
|
||||
"DELUGE_V1" |
|
||||
|
|
5
web/src/types/Feed.d.ts
vendored
5
web/src/types/Feed.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface Feed {
|
||||
id: number;
|
||||
indexer: string;
|
||||
|
|
5
web/src/types/Filter.d.ts
vendored
5
web/src/types/Filter.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface Filter {
|
||||
id: number;
|
||||
name: string;
|
||||
|
|
5
web/src/types/Global.d.ts
vendored
5
web/src/types/Global.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface APP {
|
||||
baseUrl: string;
|
||||
}
|
||||
|
|
5
web/src/types/Indexer.d.ts
vendored
5
web/src/types/Indexer.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface Indexer {
|
||||
id: number;
|
||||
name: string;
|
||||
|
|
5
web/src/types/Irc.d.ts
vendored
5
web/src/types/Irc.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface IrcNetwork {
|
||||
id: number;
|
||||
name: string;
|
||||
|
|
5
web/src/types/Notification.d.ts
vendored
5
web/src/types/Notification.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
type NotificationType = "DISCORD" | "NOTIFIARR" | "TELEGRAM" | "PUSHOVER";
|
||||
type NotificationEvent = "PUSH_APPROVED" | "PUSH_REJECTED" | "PUSH_ERROR" | "IRC_DISCONNECTED" | "IRC_RECONNECTED" | "APP_UPDATE_AVAILABLE";
|
||||
|
||||
|
|
5
web/src/types/Release.d.ts
vendored
5
web/src/types/Release.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface Release {
|
||||
id: number;
|
||||
filter_status: string;
|
||||
|
|
5
web/src/types/Update.d.ts
vendored
5
web/src/types/Update.d.ts
vendored
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* Copyright (c) 2021 - 2023, Ludvig Lundgren and the autobrr contributors.
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
interface UpdateAvailableResponse {
|
||||
id: number;
|
||||
name: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue