release: WRNexusJS 0.8.0
Quality / quality (ubuntu-latest) (push) Failing after 21s
Quality / quality (windows-latest) (push) Canceled after 0s

This commit is contained in:
2026-08-02 23:18:51 +05:30
parent 87507edf59
commit 586a6db8ff
625 changed files with 243608 additions and 11210 deletions
+21 -2
View File
@@ -31,7 +31,9 @@ export {
status,
scaffoldMigration,
} from "./migrate.ts";
export type { Migration } from "./migrate.ts";
export type { Migration, MigrationRunOptions } from "./migrate.ts";
export { analyzeMigrationSafety, analyzeMigrations } from "./migration-safety.ts";
export type { MigrationSafetyIssue } from "./migration-safety.ts";
export { parseQueries, generateQueriesFile } from "./generate.ts";
export type { QueryDef, QueryKind, ModelRef } from "./generate.ts";
export { paginate, loadRelated } from "./query.ts";
@@ -39,5 +41,22 @@ export type { Paginated, PageOptions, RelationOptions } from "./query.ts";
export { cursorPaginate, optimisticUpdate, tenantScope, softDeleteClause } from "./advanced.ts";
export type { CursorPage, CursorPageOptions } from "./advanced.ts";
export { instrumentDb, queryOperation } from "./performance.ts";
export {
instrumentDb,
queryOperation,
getDbPerformanceSnapshot,
resetDbPerformanceSnapshot,
} from "./performance.ts";
export type { QueryIssue, QueryPolicy, QueryRecord } from "./performance.ts";
export {
RecordNotFoundError,
firstOrThrow,
exists,
countRows,
withTransaction,
retryTransaction,
batch,
databaseHealth,
createRepository,
} from "./helpers.ts";
export type { Repository } from "./helpers.ts";