Updates
This commit is contained in:
parent
a68d1c1d3f
commit
b28b05956b
1
dist/index.d.ts
vendored
1
dist/index.d.ts
vendored
@ -126,7 +126,6 @@ declare const datasquirel: {
|
||||
hashPassword: typeof hashPassword;
|
||||
};
|
||||
parseCookies: typeof parseCookies;
|
||||
httpRequest: any;
|
||||
connDbHandler: typeof connDbHandler;
|
||||
debugLog: typeof debugLog;
|
||||
parseEnv: typeof parseEnv;
|
||||
|
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -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,
|
||||
|
2
dist/package-shared/types/index.d.ts
vendored
2
dist/package-shared/types/index.d.ts
vendored
@ -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 {
|
||||
|
2
index.ts
2
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,
|
||||
|
@ -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;
|
||||
|
@ -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": {
|
||||
|
Loading…
Reference in New Issue
Block a user