mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-09-19 21:45:42 +09:00
패키지 버전 업데이트
This commit is contained in:
@@ -153,7 +153,7 @@ export const uploadBlob = async (
|
||||
try {
|
||||
await uploadEncryptedChunk(uploadId, item.index, item.data, onChunkProgress);
|
||||
} finally {
|
||||
// @ts-ignore
|
||||
// @ts-expect-error
|
||||
item.data = null;
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Kysely, PostgresDialect, Migrator } from "kysely";
|
||||
import { Kysely, PostgresDialect } from "kysely";
|
||||
import { Migrator } from "kysely/migration";
|
||||
import pg from "pg";
|
||||
import env from "$lib/server/loadenv";
|
||||
import migrations from "./migrations";
|
||||
|
||||
@@ -14,11 +14,7 @@ export interface ClientSession extends Session {
|
||||
}
|
||||
|
||||
export type SessionPermission =
|
||||
| "any"
|
||||
| "notClient"
|
||||
| "anyClient"
|
||||
| "pendingClient"
|
||||
| "activeClient";
|
||||
"any" | "notClient" | "anyClient" | "pendingClient" | "activeClient";
|
||||
|
||||
export class AuthenticationError extends Error {
|
||||
constructor(
|
||||
|
||||
Reference in New Issue
Block a user