Feature engineering improvements #376

Merged
LukeGus merged 20 commits from feature-engineering-improvements into dev-1.8.0 2025-10-08 01:06:01 +00:00
4 changed files with 3 additions and 5 deletions
Showing only changes of commit 80b22390c9 - Show all commits
-1
View File
@@ -1,7 +1,6 @@
import { execSync } from "child_process";
import { promises as fs } from "fs";
import path from "path";
import crypto from "crypto";
import { systemLogger } from "./logger.js";
export class AutoSSLSetup {
+2 -2
View File
@@ -127,7 +127,7 @@ class SimpleDBOps {
table: SQLiteTable<any>,
tableName: TableName,
where: any,
userId: string,
_userId: string,
): Promise<any[]> {
const result = await getDb().delete(table).where(where).returning();
@@ -146,7 +146,7 @@ class SimpleDBOps {
static async selectEncrypted(
query: any,
tableName: TableName,
_tableName: TableName,
): Promise<any[]> {
const results = await query;
+1 -1
View File
@@ -1,6 +1,6 @@
import crypto from "crypto";
import { getDb } from "../database/db/index.js";
import { settings, users } from "../database/db/schema.js";
import { settings } from "../database/db/schema.js";
import { eq } from "drizzle-orm";
import { databaseLogger } from "./logger.js";
-1
View File
@@ -12,7 +12,6 @@ import { eq, and } from "drizzle-orm";
import { DataCrypto } from "./data-crypto.js";
import { UserDataExport, type UserExportData } from "./user-data-export.js";
import { databaseLogger } from "./logger.js";
import { nanoid } from "nanoid";
interface ImportOptions {
replaceExisting?: boolean;