Format generated graphql types
This commit is contained in:
@@ -6,5 +6,5 @@
|
|||||||
"semi": true,
|
"semi": true,
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "all",
|
"trailingComma": "all",
|
||||||
"ignorePatterns": ["src/lib/graphql/generated/**", ".github/**"]
|
"ignorePatterns": ["src/lib/graphql/generated/apollo-helpers.ts", ".github/**"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,15 +2,15 @@ export type Maybe<T> = T | null;
|
|||||||
export type InputMaybe<T> = Maybe<T>;
|
export type InputMaybe<T> = Maybe<T>;
|
||||||
/** All built-in and custom scalars, mapped to their actual values */
|
/** All built-in and custom scalars, mapped to their actual values */
|
||||||
export type Scalars = {
|
export type Scalars = {
|
||||||
ID: { input: string; output: string; }
|
ID: { input: string; output: string };
|
||||||
String: { input: string; output: string; }
|
String: { input: string; output: string };
|
||||||
Boolean: { input: boolean; output: boolean; }
|
Boolean: { input: boolean; output: boolean };
|
||||||
Int: { input: number; output: number; }
|
Int: { input: number; output: number };
|
||||||
Float: { input: number; output: number; }
|
Float: { input: number; output: number };
|
||||||
Cursor: { input: string; output: string; }
|
Cursor: { input: string; output: string };
|
||||||
Duration: { input: string; output: string; }
|
Duration: { input: string; output: string };
|
||||||
LongString: { input: string; output: string; }
|
LongString: { input: string; output: string };
|
||||||
Upload: { input: unknown; output: unknown; }
|
Upload: { input: unknown; output: unknown };
|
||||||
};
|
};
|
||||||
|
|
||||||
export type AboutServerPayload = {
|
export type AboutServerPayload = {
|
||||||
@@ -36,7 +36,7 @@ export enum AuthMode {
|
|||||||
BasicAuth = 'BASIC_AUTH',
|
BasicAuth = 'BASIC_AUTH',
|
||||||
None = 'NONE',
|
None = 'NONE',
|
||||||
SimpleLogin = 'SIMPLE_LOGIN',
|
SimpleLogin = 'SIMPLE_LOGIN',
|
||||||
UiLogin = 'UI_LOGIN'
|
UiLogin = 'UI_LOGIN',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum BackupRestoreState {
|
export enum BackupRestoreState {
|
||||||
@@ -46,7 +46,7 @@ export enum BackupRestoreState {
|
|||||||
RestoringManga = 'RESTORING_MANGA',
|
RestoringManga = 'RESTORING_MANGA',
|
||||||
RestoringMeta = 'RESTORING_META',
|
RestoringMeta = 'RESTORING_META',
|
||||||
RestoringSettings = 'RESTORING_SETTINGS',
|
RestoringSettings = 'RESTORING_SETTINGS',
|
||||||
Success = 'SUCCESS'
|
Success = 'SUCCESS',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type BackupRestoreStatus = {
|
export type BackupRestoreStatus = {
|
||||||
@@ -114,7 +114,7 @@ export type CategoryFilterInput = {
|
|||||||
|
|
||||||
export enum CategoryJobStatus {
|
export enum CategoryJobStatus {
|
||||||
Skipped = 'SKIPPED',
|
Skipped = 'SKIPPED',
|
||||||
Updating = 'UPDATING'
|
Updating = 'UPDATING',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type CategoryMetaType = MetaType & {
|
export type CategoryMetaType = MetaType & {
|
||||||
@@ -142,7 +142,7 @@ export type CategoryNodeList = NodeList & {
|
|||||||
export enum CategoryOrderBy {
|
export enum CategoryOrderBy {
|
||||||
Id = 'ID',
|
Id = 'ID',
|
||||||
Name = 'NAME',
|
Name = 'NAME',
|
||||||
Order = 'ORDER'
|
Order = 'ORDER',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type CategoryOrderInput = {
|
export type CategoryOrderInput = {
|
||||||
@@ -171,7 +171,7 @@ export type CategoryUpdateType = {
|
|||||||
export enum CbzMediaType {
|
export enum CbzMediaType {
|
||||||
Compatible = 'COMPATIBLE',
|
Compatible = 'COMPATIBLE',
|
||||||
Legacy = 'LEGACY',
|
Legacy = 'LEGACY',
|
||||||
Modern = 'MODERN'
|
Modern = 'MODERN',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ChapterConditionInput = {
|
export type ChapterConditionInput = {
|
||||||
@@ -251,7 +251,7 @@ export enum ChapterOrderBy {
|
|||||||
LastReadAt = 'LAST_READ_AT',
|
LastReadAt = 'LAST_READ_AT',
|
||||||
Name = 'NAME',
|
Name = 'NAME',
|
||||||
SourceOrder = 'SOURCE_ORDER',
|
SourceOrder = 'SOURCE_ORDER',
|
||||||
UploadDate = 'UPLOAD_DATE'
|
UploadDate = 'UPLOAD_DATE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ChapterOrderInput = {
|
export type ChapterOrderInput = {
|
||||||
@@ -365,7 +365,7 @@ export type CreateCategoryPayload = {
|
|||||||
|
|
||||||
export enum DatabaseType {
|
export enum DatabaseType {
|
||||||
H2 = 'H2',
|
H2 = 'H2',
|
||||||
Postgresql = 'POSTGRESQL'
|
Postgresql = 'POSTGRESQL',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DeleteCategoryInput = {
|
export type DeleteCategoryInput = {
|
||||||
@@ -612,7 +612,7 @@ export enum DownloadState {
|
|||||||
Downloading = 'DOWNLOADING',
|
Downloading = 'DOWNLOADING',
|
||||||
Error = 'ERROR',
|
Error = 'ERROR',
|
||||||
Finished = 'FINISHED',
|
Finished = 'FINISHED',
|
||||||
Queued = 'QUEUED'
|
Queued = 'QUEUED',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DownloadStatus = {
|
export type DownloadStatus = {
|
||||||
@@ -645,7 +645,7 @@ export enum DownloadUpdateType {
|
|||||||
Position = 'POSITION',
|
Position = 'POSITION',
|
||||||
Progress = 'PROGRESS',
|
Progress = 'PROGRESS',
|
||||||
Queued = 'QUEUED',
|
Queued = 'QUEUED',
|
||||||
Stopped = 'STOPPED'
|
Stopped = 'STOPPED',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DownloadUpdates = {
|
export type DownloadUpdates = {
|
||||||
@@ -660,7 +660,7 @@ export type DownloadUpdates = {
|
|||||||
|
|
||||||
export enum DownloaderState {
|
export enum DownloaderState {
|
||||||
Started = 'STARTED',
|
Started = 'STARTED',
|
||||||
Stopped = 'STOPPED'
|
Stopped = 'STOPPED',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Edge = {
|
export type Edge = {
|
||||||
@@ -756,7 +756,7 @@ export type ExtensionNodeList = NodeList & {
|
|||||||
export enum ExtensionOrderBy {
|
export enum ExtensionOrderBy {
|
||||||
ApkName = 'APK_NAME',
|
ApkName = 'APK_NAME',
|
||||||
Name = 'NAME',
|
Name = 'NAME',
|
||||||
PkgName = 'PKG_NAME'
|
PkgName = 'PKG_NAME',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ExtensionOrderInput = {
|
export type ExtensionOrderInput = {
|
||||||
@@ -846,7 +846,7 @@ export type FetchSourceMangaPayload = {
|
|||||||
export enum FetchSourceMangaType {
|
export enum FetchSourceMangaType {
|
||||||
Latest = 'LATEST',
|
Latest = 'LATEST',
|
||||||
Popular = 'POPULAR',
|
Popular = 'POPULAR',
|
||||||
Search = 'SEARCH'
|
Search = 'SEARCH',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type FetchTrackInput = {
|
export type FetchTrackInput = {
|
||||||
@@ -860,7 +860,15 @@ export type FetchTrackPayload = {
|
|||||||
trackRecord: TrackRecordType;
|
trackRecord: TrackRecordType;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Filter = CheckBoxFilter | GroupFilter | HeaderFilter | SelectFilter | SeparatorFilter | SortFilter | TextFilter | TriStateFilter;
|
export type Filter =
|
||||||
|
| CheckBoxFilter
|
||||||
|
| GroupFilter
|
||||||
|
| HeaderFilter
|
||||||
|
| SelectFilter
|
||||||
|
| SeparatorFilter
|
||||||
|
| SortFilter
|
||||||
|
| TextFilter
|
||||||
|
| TriStateFilter;
|
||||||
|
|
||||||
export type FilterChangeInput = {
|
export type FilterChangeInput = {
|
||||||
checkBoxState?: InputMaybe<Scalars['Boolean']['input']>;
|
checkBoxState?: InputMaybe<Scalars['Boolean']['input']>;
|
||||||
@@ -905,7 +913,7 @@ export type HeaderFilter = {
|
|||||||
export enum IncludeOrExclude {
|
export enum IncludeOrExclude {
|
||||||
Exclude = 'EXCLUDE',
|
Exclude = 'EXCLUDE',
|
||||||
Include = 'INCLUDE',
|
Include = 'INCLUDE',
|
||||||
Unset = 'UNSET'
|
Unset = 'UNSET',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type InstallExternalExtensionInput = {
|
export type InstallExternalExtensionInput = {
|
||||||
@@ -953,14 +961,14 @@ export type KoSyncStatusPayload = {
|
|||||||
|
|
||||||
export enum KoreaderSyncChecksumMethod {
|
export enum KoreaderSyncChecksumMethod {
|
||||||
Binary = 'BINARY',
|
Binary = 'BINARY',
|
||||||
Filename = 'FILENAME'
|
Filename = 'FILENAME',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum KoreaderSyncConflictStrategy {
|
export enum KoreaderSyncConflictStrategy {
|
||||||
Disabled = 'DISABLED',
|
Disabled = 'DISABLED',
|
||||||
KeepLocal = 'KEEP_LOCAL',
|
KeepLocal = 'KEEP_LOCAL',
|
||||||
KeepRemote = 'KEEP_REMOTE',
|
KeepRemote = 'KEEP_REMOTE',
|
||||||
Prompt = 'PROMPT'
|
Prompt = 'PROMPT',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum KoreaderSyncLegacyStrategy {
|
export enum KoreaderSyncLegacyStrategy {
|
||||||
@@ -968,7 +976,7 @@ export enum KoreaderSyncLegacyStrategy {
|
|||||||
Prompt = 'PROMPT',
|
Prompt = 'PROMPT',
|
||||||
Receive = 'RECEIVE',
|
Receive = 'RECEIVE',
|
||||||
Send = 'SEND',
|
Send = 'SEND',
|
||||||
Silent = 'SILENT'
|
Silent = 'SILENT',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type LastUpdateTimestampPayload = {
|
export type LastUpdateTimestampPayload = {
|
||||||
@@ -1135,7 +1143,7 @@ export enum MangaJobStatus {
|
|||||||
Failed = 'FAILED',
|
Failed = 'FAILED',
|
||||||
Pending = 'PENDING',
|
Pending = 'PENDING',
|
||||||
Running = 'RUNNING',
|
Running = 'RUNNING',
|
||||||
Skipped = 'SKIPPED'
|
Skipped = 'SKIPPED',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MangaMetaType = MetaType & {
|
export type MangaMetaType = MetaType & {
|
||||||
@@ -1164,7 +1172,7 @@ export enum MangaOrderBy {
|
|||||||
Id = 'ID',
|
Id = 'ID',
|
||||||
InLibraryAt = 'IN_LIBRARY_AT',
|
InLibraryAt = 'IN_LIBRARY_AT',
|
||||||
LastFetchedAt = 'LAST_FETCHED_AT',
|
LastFetchedAt = 'LAST_FETCHED_AT',
|
||||||
Title = 'TITLE'
|
Title = 'TITLE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MangaOrderInput = {
|
export type MangaOrderInput = {
|
||||||
@@ -1179,7 +1187,7 @@ export enum MangaStatus {
|
|||||||
Ongoing = 'ONGOING',
|
Ongoing = 'ONGOING',
|
||||||
OnHiatus = 'ON_HIATUS',
|
OnHiatus = 'ON_HIATUS',
|
||||||
PublishingFinished = 'PUBLISHING_FINISHED',
|
PublishingFinished = 'PUBLISHING_FINISHED',
|
||||||
Unknown = 'UNKNOWN'
|
Unknown = 'UNKNOWN',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MangaStatusFilterInput = {
|
export type MangaStatusFilterInput = {
|
||||||
@@ -1271,7 +1279,7 @@ export type MetaInput = {
|
|||||||
|
|
||||||
export enum MetaOrderBy {
|
export enum MetaOrderBy {
|
||||||
Key = 'KEY',
|
Key = 'KEY',
|
||||||
Value = 'VALUE'
|
Value = 'VALUE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MetaOrderInput = {
|
export type MetaOrderInput = {
|
||||||
@@ -1378,377 +1386,319 @@ export type Mutation = {
|
|||||||
updateWebUI?: Maybe<WebUiUpdatePayload>;
|
updateWebUI?: Maybe<WebUiUpdatePayload>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationBindTrackArgs = {
|
export type MutationBindTrackArgs = {
|
||||||
input: BindTrackInput;
|
input: BindTrackInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationClearCachedImagesArgs = {
|
export type MutationClearCachedImagesArgs = {
|
||||||
input: ClearCachedImagesInput;
|
input: ClearCachedImagesInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationClearDownloaderArgs = {
|
export type MutationClearDownloaderArgs = {
|
||||||
input: ClearDownloaderInput;
|
input: ClearDownloaderInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationConnectKoSyncAccountArgs = {
|
export type MutationConnectKoSyncAccountArgs = {
|
||||||
input: ConnectKoSyncAccountInput;
|
input: ConnectKoSyncAccountInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationCreateBackupArgs = {
|
export type MutationCreateBackupArgs = {
|
||||||
input?: InputMaybe<CreateBackupInput>;
|
input?: InputMaybe<CreateBackupInput>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationCreateCategoryArgs = {
|
export type MutationCreateCategoryArgs = {
|
||||||
input: CreateCategoryInput;
|
input: CreateCategoryInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteCategoryArgs = {
|
export type MutationDeleteCategoryArgs = {
|
||||||
input: DeleteCategoryInput;
|
input: DeleteCategoryInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteCategoryMetaArgs = {
|
export type MutationDeleteCategoryMetaArgs = {
|
||||||
input: DeleteCategoryMetaInput;
|
input: DeleteCategoryMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteCategoryMetasArgs = {
|
export type MutationDeleteCategoryMetasArgs = {
|
||||||
input: DeleteCategoryMetasInput;
|
input: DeleteCategoryMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteChapterMetaArgs = {
|
export type MutationDeleteChapterMetaArgs = {
|
||||||
input: DeleteChapterMetaInput;
|
input: DeleteChapterMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteChapterMetasArgs = {
|
export type MutationDeleteChapterMetasArgs = {
|
||||||
input: DeleteChapterMetasInput;
|
input: DeleteChapterMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteDownloadedChapterArgs = {
|
export type MutationDeleteDownloadedChapterArgs = {
|
||||||
input: DeleteDownloadedChapterInput;
|
input: DeleteDownloadedChapterInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteDownloadedChaptersArgs = {
|
export type MutationDeleteDownloadedChaptersArgs = {
|
||||||
input: DeleteDownloadedChaptersInput;
|
input: DeleteDownloadedChaptersInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteGlobalMetaArgs = {
|
export type MutationDeleteGlobalMetaArgs = {
|
||||||
input: DeleteGlobalMetaInput;
|
input: DeleteGlobalMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteGlobalMetasArgs = {
|
export type MutationDeleteGlobalMetasArgs = {
|
||||||
input: DeleteGlobalMetasInput;
|
input: DeleteGlobalMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteMangaMetaArgs = {
|
export type MutationDeleteMangaMetaArgs = {
|
||||||
input: DeleteMangaMetaInput;
|
input: DeleteMangaMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteMangaMetasArgs = {
|
export type MutationDeleteMangaMetasArgs = {
|
||||||
input: DeleteMangaMetasInput;
|
input: DeleteMangaMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteSourceMetaArgs = {
|
export type MutationDeleteSourceMetaArgs = {
|
||||||
input: DeleteSourceMetaInput;
|
input: DeleteSourceMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDeleteSourceMetasArgs = {
|
export type MutationDeleteSourceMetasArgs = {
|
||||||
input: DeleteSourceMetasInput;
|
input: DeleteSourceMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDequeueChapterDownloadArgs = {
|
export type MutationDequeueChapterDownloadArgs = {
|
||||||
input: DequeueChapterDownloadInput;
|
input: DequeueChapterDownloadInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationDequeueChapterDownloadsArgs = {
|
export type MutationDequeueChapterDownloadsArgs = {
|
||||||
input: DequeueChapterDownloadsInput;
|
input: DequeueChapterDownloadsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationEnqueueChapterDownloadArgs = {
|
export type MutationEnqueueChapterDownloadArgs = {
|
||||||
input: EnqueueChapterDownloadInput;
|
input: EnqueueChapterDownloadInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationEnqueueChapterDownloadsArgs = {
|
export type MutationEnqueueChapterDownloadsArgs = {
|
||||||
input: EnqueueChapterDownloadsInput;
|
input: EnqueueChapterDownloadsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchChapterPagesArgs = {
|
export type MutationFetchChapterPagesArgs = {
|
||||||
input: FetchChapterPagesInput;
|
input: FetchChapterPagesInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchChaptersArgs = {
|
export type MutationFetchChaptersArgs = {
|
||||||
input: FetchChaptersInput;
|
input: FetchChaptersInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchExtensionsArgs = {
|
export type MutationFetchExtensionsArgs = {
|
||||||
input: FetchExtensionsInput;
|
input: FetchExtensionsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchMangaArgs = {
|
export type MutationFetchMangaArgs = {
|
||||||
input: FetchMangaInput;
|
input: FetchMangaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchSourceMangaArgs = {
|
export type MutationFetchSourceMangaArgs = {
|
||||||
input: FetchSourceMangaInput;
|
input: FetchSourceMangaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationFetchTrackArgs = {
|
export type MutationFetchTrackArgs = {
|
||||||
input: FetchTrackInput;
|
input: FetchTrackInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationInstallExternalExtensionArgs = {
|
export type MutationInstallExternalExtensionArgs = {
|
||||||
input: InstallExternalExtensionInput;
|
input: InstallExternalExtensionInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationLoginArgs = {
|
export type MutationLoginArgs = {
|
||||||
input: LoginInput;
|
input: LoginInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationLoginTrackerCredentialsArgs = {
|
export type MutationLoginTrackerCredentialsArgs = {
|
||||||
input: LoginTrackerCredentialsInput;
|
input: LoginTrackerCredentialsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationLoginTrackerOAuthArgs = {
|
export type MutationLoginTrackerOAuthArgs = {
|
||||||
input: LoginTrackerOAuthInput;
|
input: LoginTrackerOAuthInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationLogoutKoSyncAccountArgs = {
|
export type MutationLogoutKoSyncAccountArgs = {
|
||||||
input: LogoutKoSyncAccountInput;
|
input: LogoutKoSyncAccountInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationLogoutTrackerArgs = {
|
export type MutationLogoutTrackerArgs = {
|
||||||
input: LogoutTrackerInput;
|
input: LogoutTrackerInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationPullKoSyncProgressArgs = {
|
export type MutationPullKoSyncProgressArgs = {
|
||||||
input: PullKoSyncProgressInput;
|
input: PullKoSyncProgressInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationPushKoSyncProgressArgs = {
|
export type MutationPushKoSyncProgressArgs = {
|
||||||
input: PushKoSyncProgressInput;
|
input: PushKoSyncProgressInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationRefreshTokenArgs = {
|
export type MutationRefreshTokenArgs = {
|
||||||
input: RefreshTokenInput;
|
input: RefreshTokenInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationReorderChapterDownloadArgs = {
|
export type MutationReorderChapterDownloadArgs = {
|
||||||
input: ReorderChapterDownloadInput;
|
input: ReorderChapterDownloadInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationResetSettingsArgs = {
|
export type MutationResetSettingsArgs = {
|
||||||
input: ResetSettingsInput;
|
input: ResetSettingsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationRestoreBackupArgs = {
|
export type MutationRestoreBackupArgs = {
|
||||||
input: RestoreBackupInput;
|
input: RestoreBackupInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetCategoryMetaArgs = {
|
export type MutationSetCategoryMetaArgs = {
|
||||||
input: SetCategoryMetaInput;
|
input: SetCategoryMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetCategoryMetasArgs = {
|
export type MutationSetCategoryMetasArgs = {
|
||||||
input: SetCategoryMetasInput;
|
input: SetCategoryMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetChapterMetaArgs = {
|
export type MutationSetChapterMetaArgs = {
|
||||||
input: SetChapterMetaInput;
|
input: SetChapterMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetChapterMetasArgs = {
|
export type MutationSetChapterMetasArgs = {
|
||||||
input: SetChapterMetasInput;
|
input: SetChapterMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetGlobalMetaArgs = {
|
export type MutationSetGlobalMetaArgs = {
|
||||||
input: SetGlobalMetaInput;
|
input: SetGlobalMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetGlobalMetasArgs = {
|
export type MutationSetGlobalMetasArgs = {
|
||||||
input: SetGlobalMetasInput;
|
input: SetGlobalMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetMangaMetaArgs = {
|
export type MutationSetMangaMetaArgs = {
|
||||||
input: SetMangaMetaInput;
|
input: SetMangaMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetMangaMetasArgs = {
|
export type MutationSetMangaMetasArgs = {
|
||||||
input: SetMangaMetasInput;
|
input: SetMangaMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetSettingsArgs = {
|
export type MutationSetSettingsArgs = {
|
||||||
input: SetSettingsInput;
|
input: SetSettingsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetSourceMetaArgs = {
|
export type MutationSetSourceMetaArgs = {
|
||||||
input: SetSourceMetaInput;
|
input: SetSourceMetaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationSetSourceMetasArgs = {
|
export type MutationSetSourceMetasArgs = {
|
||||||
input: SetSourceMetasInput;
|
input: SetSourceMetasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationStartDownloaderArgs = {
|
export type MutationStartDownloaderArgs = {
|
||||||
input: StartDownloaderInput;
|
input: StartDownloaderInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationStopDownloaderArgs = {
|
export type MutationStopDownloaderArgs = {
|
||||||
input: StopDownloaderInput;
|
input: StopDownloaderInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationTrackProgressArgs = {
|
export type MutationTrackProgressArgs = {
|
||||||
input: TrackProgressInput;
|
input: TrackProgressInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUnbindTrackArgs = {
|
export type MutationUnbindTrackArgs = {
|
||||||
input: UnbindTrackInput;
|
input: UnbindTrackInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateCategoriesArgs = {
|
export type MutationUpdateCategoriesArgs = {
|
||||||
input: UpdateCategoriesInput;
|
input: UpdateCategoriesInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateCategoryArgs = {
|
export type MutationUpdateCategoryArgs = {
|
||||||
input: UpdateCategoryInput;
|
input: UpdateCategoryInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateCategoryMangaArgs = {
|
export type MutationUpdateCategoryMangaArgs = {
|
||||||
input: UpdateCategoryMangaInput;
|
input: UpdateCategoryMangaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateCategoryOrderArgs = {
|
export type MutationUpdateCategoryOrderArgs = {
|
||||||
input: UpdateCategoryOrderInput;
|
input: UpdateCategoryOrderInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateChapterArgs = {
|
export type MutationUpdateChapterArgs = {
|
||||||
input: UpdateChapterInput;
|
input: UpdateChapterInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateChaptersArgs = {
|
export type MutationUpdateChaptersArgs = {
|
||||||
input: UpdateChaptersInput;
|
input: UpdateChaptersInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateExtensionArgs = {
|
export type MutationUpdateExtensionArgs = {
|
||||||
input: UpdateExtensionInput;
|
input: UpdateExtensionInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateExtensionsArgs = {
|
export type MutationUpdateExtensionsArgs = {
|
||||||
input: UpdateExtensionsInput;
|
input: UpdateExtensionsInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateLibraryArgs = {
|
export type MutationUpdateLibraryArgs = {
|
||||||
input: UpdateLibraryInput;
|
input: UpdateLibraryInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateLibraryMangaArgs = {
|
export type MutationUpdateLibraryMangaArgs = {
|
||||||
input: UpdateLibraryMangaInput;
|
input: UpdateLibraryMangaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateMangaArgs = {
|
export type MutationUpdateMangaArgs = {
|
||||||
input: UpdateMangaInput;
|
input: UpdateMangaInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateMangaCategoriesArgs = {
|
export type MutationUpdateMangaCategoriesArgs = {
|
||||||
input: UpdateMangaCategoriesInput;
|
input: UpdateMangaCategoriesInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateMangasArgs = {
|
export type MutationUpdateMangasArgs = {
|
||||||
input: UpdateMangasInput;
|
input: UpdateMangasInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateMangasCategoriesArgs = {
|
export type MutationUpdateMangasCategoriesArgs = {
|
||||||
input: UpdateMangasCategoriesInput;
|
input: UpdateMangasCategoriesInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateSourcePreferenceArgs = {
|
export type MutationUpdateSourcePreferenceArgs = {
|
||||||
input: UpdateSourcePreferenceInput;
|
input: UpdateSourcePreferenceInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateStopArgs = {
|
export type MutationUpdateStopArgs = {
|
||||||
input: UpdateStopInput;
|
input: UpdateStopInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateTrackArgs = {
|
export type MutationUpdateTrackArgs = {
|
||||||
input: UpdateTrackInput;
|
input: UpdateTrackInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type MutationUpdateWebUiArgs = {
|
export type MutationUpdateWebUiArgs = {
|
||||||
input: WebUiUpdateInput;
|
input: WebUiUpdateInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Node = CategoryMetaType | CategoryType | ChapterMetaType | ChapterType | DownloadType | DownloadUpdate | ExtensionType | GlobalMetaType | MangaMetaType | MangaType | PartialSettingsType | SettingsType | SourceMetaType | SourceType | TrackRecordType | TrackerType;
|
export type Node =
|
||||||
|
| CategoryMetaType
|
||||||
|
| CategoryType
|
||||||
|
| ChapterMetaType
|
||||||
|
| ChapterType
|
||||||
|
| DownloadType
|
||||||
|
| DownloadUpdate
|
||||||
|
| ExtensionType
|
||||||
|
| GlobalMetaType
|
||||||
|
| MangaMetaType
|
||||||
|
| MangaType
|
||||||
|
| PartialSettingsType
|
||||||
|
| SettingsType
|
||||||
|
| SourceMetaType
|
||||||
|
| SourceType
|
||||||
|
| TrackRecordType
|
||||||
|
| TrackerType;
|
||||||
|
|
||||||
export type NodeList = {
|
export type NodeList = {
|
||||||
/** A list of edges which contains the [T] and cursor to aid in pagination. */
|
/** A list of edges which contains the [T] and cursor to aid in pagination. */
|
||||||
@@ -1960,7 +1910,12 @@ export type PartialSettingsTypeInput = {
|
|||||||
webUIUpdateCheckInterval?: InputMaybe<Scalars['Float']['input']>;
|
webUIUpdateCheckInterval?: InputMaybe<Scalars['Float']['input']>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type Preference = CheckBoxPreference | EditTextPreference | ListPreference | MultiSelectListPreference | SwitchPreference;
|
export type Preference =
|
||||||
|
| CheckBoxPreference
|
||||||
|
| EditTextPreference
|
||||||
|
| ListPreference
|
||||||
|
| MultiSelectListPreference
|
||||||
|
| SwitchPreference;
|
||||||
|
|
||||||
export type PullKoSyncProgressInput = {
|
export type PullKoSyncProgressInput = {
|
||||||
chapterId: Scalars['Int']['input'];
|
chapterId: Scalars['Int']['input'];
|
||||||
@@ -2021,7 +1976,6 @@ export type Query = {
|
|||||||
validateBackup: ValidateBackupResult;
|
validateBackup: ValidateBackupResult;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryCategoriesArgs = {
|
export type QueryCategoriesArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2033,17 +1987,14 @@ export type QueryCategoriesArgs = {
|
|||||||
order?: InputMaybe<Array<CategoryOrderInput>>;
|
order?: InputMaybe<Array<CategoryOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryCategoryArgs = {
|
export type QueryCategoryArgs = {
|
||||||
id: Scalars['Int']['input'];
|
id: Scalars['Int']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryChapterArgs = {
|
export type QueryChapterArgs = {
|
||||||
id: Scalars['Int']['input'];
|
id: Scalars['Int']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryChaptersArgs = {
|
export type QueryChaptersArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2055,12 +2006,10 @@ export type QueryChaptersArgs = {
|
|||||||
order?: InputMaybe<Array<ChapterOrderInput>>;
|
order?: InputMaybe<Array<ChapterOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryExtensionArgs = {
|
export type QueryExtensionArgs = {
|
||||||
pkgName: Scalars['String']['input'];
|
pkgName: Scalars['String']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryExtensionsArgs = {
|
export type QueryExtensionsArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2072,12 +2021,10 @@ export type QueryExtensionsArgs = {
|
|||||||
order?: InputMaybe<Array<ExtensionOrderInput>>;
|
order?: InputMaybe<Array<ExtensionOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryMangaArgs = {
|
export type QueryMangaArgs = {
|
||||||
id: Scalars['Int']['input'];
|
id: Scalars['Int']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryMangasArgs = {
|
export type QueryMangasArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2089,12 +2036,10 @@ export type QueryMangasArgs = {
|
|||||||
order?: InputMaybe<Array<MangaOrderInput>>;
|
order?: InputMaybe<Array<MangaOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryMetaArgs = {
|
export type QueryMetaArgs = {
|
||||||
key: Scalars['String']['input'];
|
key: Scalars['String']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryMetasArgs = {
|
export type QueryMetasArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2106,22 +2051,18 @@ export type QueryMetasArgs = {
|
|||||||
order?: InputMaybe<Array<MetaOrderInput>>;
|
order?: InputMaybe<Array<MetaOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryRestoreStatusArgs = {
|
export type QueryRestoreStatusArgs = {
|
||||||
id: Scalars['String']['input'];
|
id: Scalars['String']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QuerySearchTrackerArgs = {
|
export type QuerySearchTrackerArgs = {
|
||||||
input: SearchTrackerInput;
|
input: SearchTrackerInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QuerySourceArgs = {
|
export type QuerySourceArgs = {
|
||||||
id: Scalars['LongString']['input'];
|
id: Scalars['LongString']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QuerySourcesArgs = {
|
export type QuerySourcesArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2133,12 +2074,10 @@ export type QuerySourcesArgs = {
|
|||||||
order?: InputMaybe<Array<SourceOrderInput>>;
|
order?: InputMaybe<Array<SourceOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryTrackRecordArgs = {
|
export type QueryTrackRecordArgs = {
|
||||||
id: Scalars['Int']['input'];
|
id: Scalars['Int']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryTrackRecordsArgs = {
|
export type QueryTrackRecordsArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2150,12 +2089,10 @@ export type QueryTrackRecordsArgs = {
|
|||||||
order?: InputMaybe<Array<TrackRecordOrderInput>>;
|
order?: InputMaybe<Array<TrackRecordOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryTrackerArgs = {
|
export type QueryTrackerArgs = {
|
||||||
id: Scalars['Int']['input'];
|
id: Scalars['Int']['input'];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryTrackersArgs = {
|
export type QueryTrackersArgs = {
|
||||||
after?: InputMaybe<Scalars['Cursor']['input']>;
|
after?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
before?: InputMaybe<Scalars['Cursor']['input']>;
|
before?: InputMaybe<Scalars['Cursor']['input']>;
|
||||||
@@ -2166,7 +2103,6 @@ export type QueryTrackersArgs = {
|
|||||||
order?: InputMaybe<Array<TrackerOrderInput>>;
|
order?: InputMaybe<Array<TrackerOrderInput>>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type QueryValidateBackupArgs = {
|
export type QueryValidateBackupArgs = {
|
||||||
input: ValidateBackupInput;
|
input: ValidateBackupInput;
|
||||||
};
|
};
|
||||||
@@ -2638,7 +2574,7 @@ export enum SortOrder {
|
|||||||
AscNullsLast = 'ASC_NULLS_LAST',
|
AscNullsLast = 'ASC_NULLS_LAST',
|
||||||
Desc = 'DESC',
|
Desc = 'DESC',
|
||||||
DescNullsFirst = 'DESC_NULLS_FIRST',
|
DescNullsFirst = 'DESC_NULLS_FIRST',
|
||||||
DescNullsLast = 'DESC_NULLS_LAST'
|
DescNullsLast = 'DESC_NULLS_LAST',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SortSelection = {
|
export type SortSelection = {
|
||||||
@@ -2700,7 +2636,7 @@ export type SourceNodeList = NodeList & {
|
|||||||
export enum SourceOrderBy {
|
export enum SourceOrderBy {
|
||||||
Id = 'ID',
|
Id = 'ID',
|
||||||
Lang = 'LANG',
|
Lang = 'LANG',
|
||||||
Name = 'NAME'
|
Name = 'NAME',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SourceOrderInput = {
|
export type SourceOrderInput = {
|
||||||
@@ -2842,12 +2778,10 @@ export type Subscription = {
|
|||||||
webUIUpdateStatusChange: WebUiUpdateStatus;
|
webUIUpdateStatusChange: WebUiUpdateStatus;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type SubscriptionDownloadStatusChangedArgs = {
|
export type SubscriptionDownloadStatusChangedArgs = {
|
||||||
input: DownloadChangedInput;
|
input: DownloadChangedInput;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
export type SubscriptionLibraryUpdateStatusChangedArgs = {
|
export type SubscriptionLibraryUpdateStatusChangedArgs = {
|
||||||
input: LibraryUpdateStatusChangedInput;
|
input: LibraryUpdateStatusChangedInput;
|
||||||
};
|
};
|
||||||
@@ -2948,7 +2882,7 @@ export enum TrackRecordOrderBy {
|
|||||||
StartDate = 'START_DATE',
|
StartDate = 'START_DATE',
|
||||||
Title = 'TITLE',
|
Title = 'TITLE',
|
||||||
TotalChapters = 'TOTAL_CHAPTERS',
|
TotalChapters = 'TOTAL_CHAPTERS',
|
||||||
TrackerId = 'TRACKER_ID'
|
TrackerId = 'TRACKER_ID',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TrackRecordOrderInput = {
|
export type TrackRecordOrderInput = {
|
||||||
@@ -3031,7 +2965,7 @@ export type TrackerNodeList = NodeList & {
|
|||||||
export enum TrackerOrderBy {
|
export enum TrackerOrderBy {
|
||||||
Id = 'ID',
|
Id = 'ID',
|
||||||
IsLoggedIn = 'IS_LOGGED_IN',
|
IsLoggedIn = 'IS_LOGGED_IN',
|
||||||
Name = 'NAME'
|
Name = 'NAME',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TrackerOrderInput = {
|
export type TrackerOrderInput = {
|
||||||
@@ -3058,7 +2992,7 @@ export type TrackerType = {
|
|||||||
export enum TriState {
|
export enum TriState {
|
||||||
Exclude = 'EXCLUDE',
|
Exclude = 'EXCLUDE',
|
||||||
Ignore = 'IGNORE',
|
Ignore = 'IGNORE',
|
||||||
Include = 'INCLUDE'
|
Include = 'INCLUDE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TriStateFilter = {
|
export type TriStateFilter = {
|
||||||
@@ -3290,7 +3224,7 @@ export enum UpdateState {
|
|||||||
Downloading = 'DOWNLOADING',
|
Downloading = 'DOWNLOADING',
|
||||||
Error = 'ERROR',
|
Error = 'ERROR',
|
||||||
Finished = 'FINISHED',
|
Finished = 'FINISHED',
|
||||||
Idle = 'IDLE'
|
Idle = 'IDLE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UpdateStatus = {
|
export type UpdateStatus = {
|
||||||
@@ -3326,7 +3260,7 @@ export type UpdateStopPayload = {
|
|||||||
|
|
||||||
export enum UpdateStrategy {
|
export enum UpdateStrategy {
|
||||||
AlwaysUpdate = 'ALWAYS_UPDATE',
|
AlwaysUpdate = 'ALWAYS_UPDATE',
|
||||||
OnlyFetchOnce = 'ONLY_FETCH_ONCE'
|
OnlyFetchOnce = 'ONLY_FETCH_ONCE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UpdateTrackInput = {
|
export type UpdateTrackInput = {
|
||||||
@@ -3393,18 +3327,18 @@ export type ValidateBackupTracker = {
|
|||||||
export enum WebUiChannel {
|
export enum WebUiChannel {
|
||||||
Bundled = 'BUNDLED',
|
Bundled = 'BUNDLED',
|
||||||
Preview = 'PREVIEW',
|
Preview = 'PREVIEW',
|
||||||
Stable = 'STABLE'
|
Stable = 'STABLE',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum WebUiFlavor {
|
export enum WebUiFlavor {
|
||||||
Custom = 'CUSTOM',
|
Custom = 'CUSTOM',
|
||||||
Vui = 'VUI',
|
Vui = 'VUI',
|
||||||
Webui = 'WEBUI'
|
Webui = 'WEBUI',
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum WebUiInterface {
|
export enum WebUiInterface {
|
||||||
Browser = 'BROWSER',
|
Browser = 'BROWSER',
|
||||||
Electron = 'ELECTRON'
|
Electron = 'ELECTRON',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type WebUiUpdateCheck = {
|
export type WebUiUpdateCheck = {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user