check / check (push) Successful in 25s
src/index.ts imports package.json for VERSION and bin/quak.ts passes VERSION to commander, so package.json is the only place the version is written. tsc copies package.json to dist/package.json, so the import resolves from the built output; script/build runs the built CLI with --version to prove it. A test checks VERSION and quak --version against package.json. Model: opus-5-5
108 lines
2.5 KiB
TypeScript
108 lines
2.5 KiB
TypeScript
// package.json is the one place the version is written. tsc copies it to
|
|
// dist/package.json, so this path resolves from source and from dist/src/.
|
|
import pkg from "../package.json" with { type: "json" };
|
|
|
|
export const VERSION: string = pkg.version;
|
|
|
|
export {
|
|
Client,
|
|
type LoginOptions,
|
|
type ClientSnapshot,
|
|
type CollectionsPage,
|
|
type FilesPage,
|
|
} from "./client.js";
|
|
export {
|
|
ApiClient,
|
|
ApiError,
|
|
DEFAULT_DOWNLOAD_TIMEOUT_MS,
|
|
DEFAULT_REQUEST_TIMEOUT_MS,
|
|
type ApiClientOptions,
|
|
type StreamOptions,
|
|
} from "./api/client.js";
|
|
export { TruncatedStreamError } from "./errors.js";
|
|
export {
|
|
DEFAULT_RETRY_OPTIONS,
|
|
isRetryable,
|
|
isSafeToReplay,
|
|
resolveRetryOptions,
|
|
withRetry,
|
|
type ResolvedRetryOptions,
|
|
type RetryOptions,
|
|
type WithRetryOptions,
|
|
} from "./retry.js";
|
|
export { unwrapAuth, type UnwrapResult } from "./auth/unwrap.js";
|
|
export {
|
|
beginLogin,
|
|
submitTOTP,
|
|
requestEmailOTP,
|
|
submitEmailOTP,
|
|
} from "./auth/login.js";
|
|
export {
|
|
Library,
|
|
DEFAULT_REFRESH_INTERVAL_SECONDS,
|
|
Album,
|
|
Photo,
|
|
type LibraryClient,
|
|
type LibraryOptions,
|
|
type LibraryStatus,
|
|
type RefreshEvent,
|
|
type RefreshProgressCallback,
|
|
type AlbumsAPI,
|
|
type PhotosAPI,
|
|
type TimelineAPI,
|
|
type PhotoFilter,
|
|
type TimelineGroup,
|
|
type GroupBy,
|
|
type ContentSource,
|
|
type ContentResult,
|
|
type ContentEvent,
|
|
type ContentOptions,
|
|
type PhotoContent,
|
|
type ThumbnailsAPI,
|
|
type ThumbnailPriority,
|
|
type EnsureOptions,
|
|
type EnsureResult,
|
|
type EnsureEvent,
|
|
runBackup,
|
|
type BackupOptions,
|
|
type BackupResult,
|
|
type BackupError,
|
|
} from "./library/index.js";
|
|
export {
|
|
RequestPools,
|
|
BoundedPool,
|
|
DEFAULT_METADATA_CONCURRENCY,
|
|
DEFAULT_CONTENT_CONCURRENCY,
|
|
DEFAULT_THUMBNAIL_CONCURRENCY,
|
|
type RequestPoolsOptions,
|
|
type Priority,
|
|
type RunOptions,
|
|
} from "./library/pools.js";
|
|
export type {
|
|
AlbumRecord,
|
|
PhotoRecord,
|
|
LibrarySnapshot,
|
|
LibraryChange,
|
|
} from "./library/records.js";
|
|
export { decryptCollection, decryptFile } from "./model/index.js";
|
|
export { downloadFile, downloadThumbnail } from "./download/index.js";
|
|
export type {
|
|
AuthorizationResponse,
|
|
KeyAttributes,
|
|
LoginChallenge,
|
|
SRPAttributes,
|
|
} from "./auth/types.js";
|
|
export type {
|
|
Collection,
|
|
CollectionType,
|
|
EnteFile,
|
|
FileBlob,
|
|
FileMetadata,
|
|
FileType,
|
|
KeyMaterial,
|
|
Microseconds,
|
|
RawCollection,
|
|
RawEnteFile,
|
|
} from "./model/types.js";
|
|
export type { DownloadResult } from "./download/index.js";
|