From b28b05956bde3b37722767d7d59e0d8651948d8a Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Sun, 1 Jun 2025 07:06:45 +0100 Subject: [PATCH] Updates --- dist/index.d.ts | 1 - dist/index.js | 2 -- dist/package-shared/types/index.d.ts | 2 +- index.ts | 2 -- package-shared/types/index.ts | 2 +- package.json | 2 +- 6 files changed, 3 insertions(+), 8 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index 51c5d4d..4144ef4 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -126,7 +126,6 @@ declare const datasquirel: { hashPassword: typeof hashPassword; }; parseCookies: typeof parseCookies; - httpRequest: any; connDbHandler: typeof connDbHandler; debugLog: typeof debugLog; parseEnv: typeof parseEnv; diff --git a/dist/index.js b/dist/index.js index 63273b9..72b74f5 100644 --- a/dist/index.js +++ b/dist/index.js @@ -27,7 +27,6 @@ const sql_insert_generator_1 = __importDefault(require("./package-shared/functio const sql_delete_generator_1 = __importDefault(require("./package-shared/functions/dsql/sql/sql-delete-generator")); const trim_sql_1 = __importDefault(require("./package-shared/utils/trim-sql")); const parseCookies_1 = __importDefault(require("./package-shared/utils/backend/parseCookies")); -const httpRequest_1 = __importDefault(require("./package-shared/functions/backend/httpRequest")); const conn_db_handler_1 = __importDefault(require("./package-shared/utils/db/conn-db-handler")); const encrypt_1 = __importDefault(require("./package-shared/functions/dsql/encrypt")); const decrypt_1 = __importDefault(require("./package-shared/functions/dsql/decrypt")); @@ -100,7 +99,6 @@ const datasquirel = { hashPassword: hashPassword_1.default, }, parseCookies: parseCookies_1.default, - httpRequest: httpRequest_1.default, connDbHandler: conn_db_handler_1.default, debugLog: debug_log_1.default, parseEnv: parse_env_1.default, diff --git a/dist/package-shared/types/index.d.ts b/dist/package-shared/types/index.d.ts index 7a3c56c..1f35b56 100644 --- a/dist/package-shared/types/index.d.ts +++ b/dist/package-shared/types/index.d.ts @@ -1,5 +1,5 @@ import type { RequestOptions } from "https"; -import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "@/package-shared/types/dsql"; +import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "./dsql"; import { Editor } from "tinymce"; export type DSQL_DatabaseFullName = string; export interface DSQL_DatabaseSchemaType { diff --git a/index.ts b/index.ts index 01d586a..a0fa618 100644 --- a/index.ts +++ b/index.ts @@ -37,7 +37,6 @@ import sqlInsertGenerator from "./package-shared/functions/dsql/sql/sql-insert-g import sqlDeleteGenerator from "./package-shared/functions/dsql/sql/sql-delete-generator"; import trimSql from "./package-shared/utils/trim-sql"; import parseCookies from "./package-shared/utils/backend/parseCookies"; -import httpRequest from "./package-shared/functions/backend/httpRequest"; import connDbHandler from "./package-shared/utils/db/conn-db-handler"; import encrypt from "./package-shared/functions/dsql/encrypt"; import decrypt from "./package-shared/functions/dsql/decrypt"; @@ -115,7 +114,6 @@ const datasquirel = { hashPassword, }, parseCookies, - httpRequest, connDbHandler, debugLog, parseEnv, diff --git a/package-shared/types/index.ts b/package-shared/types/index.ts index 0ad7590..31afcb8 100644 --- a/package-shared/types/index.ts +++ b/package-shared/types/index.ts @@ -1,5 +1,5 @@ import type { RequestOptions } from "https"; -import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "@/package-shared/types/dsql"; +import { DSQL_DATASQUIREL_PROCESS_QUEUE } from "./dsql"; import { Editor } from "tinymce"; export type DSQL_DatabaseFullName = string; diff --git a/package.json b/package.json index 2a804b7..aa6a4d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@moduletrace/datasquirel", - "version": "4.6.5", + "version": "4.6.6", "description": "Cloud-based SQL data management tool", "main": "dist/index.js", "bin": {