feat: some shit
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 36s

This commit is contained in:
max_richter 2024-12-20 12:21:50 +01:00
parent eadd37bfa4
commit a0d420517c
6 changed files with 9 additions and 9 deletions

View File

@ -1,2 +1,2 @@
export * from "../routes/user/user.schema.ts";
export * from "../routes/node/schemas/node.schema.ts";
export * from "../routes/node/node.schema.ts";

View File

@ -8,7 +8,7 @@ import {
varchar,
} from "drizzle-orm/pg-core";
import { relations } from "drizzle-orm/relations";
import { usersTable } from "../../user/user.schema.ts";
import { usersTable } from "../user/user.schema.ts";
const bytea = customType<{
data: ArrayBuffer;

View File

@ -1,9 +1,9 @@
import { db } from "../../db/db.ts";
import { nodeTable } from "./schemas/node.schema.ts";
import { NodeDefinition, NodeDefinitionSchema } from "./schemas/types.ts";
import { nodeTable } from "./node.schema.ts";
import { NodeDefinition, NodeDefinitionSchema } from "./validations/types.ts";
import { and, eq } from "drizzle-orm";
import { createHash } from "node:crypto";
import { WorkerMessage } from "./worker/types.ts";
import { WorkerMessage } from "./worker/messages.ts";
export type CreateNodeDTO = {
id: string;

View File

@ -1,4 +1,4 @@
import { NodeDefinition } from "../schemas/types.ts";
import { NodeDefinition } from "../validations/types.ts";
type ExtractDefinitionMessage = {
action: "extract-definition";

View File

@ -1,7 +1,7 @@
/// <reference lib="webworker" />
import { NodeDefinitionSchema } from "../schemas/types.ts";
import { WorkerMessage } from "./types.ts";
import { NodeDefinitionSchema } from "../validations/types.ts";
import { WorkerMessage } from "./messages.ts";
import { createWasmWrapper } from "./utils.ts";
const workerSelf = self as DedicatedWorkerGlobalScope & {

View File

@ -1,5 +1,5 @@
// @ts-nocheck: Nocheck
import { NodeDefinition } from "../schemas/types.ts";
import { NodeDefinition } from "../validations/types.ts";
const cachedTextDecoder = new TextDecoder("utf-8", {
ignoreBOM: true,