This commit is contained in:
Benjamin Toby 2025-07-05 15:30:37 +01:00
parent 3730e4722e
commit 321683e7c8
5 changed files with 20 additions and 19 deletions

View File

@ -16,9 +16,9 @@ import deserializeQuery from "../package-shared/utils/deserialize-query";
import debugLog from "../package-shared/utils/logging/debug-log"; import debugLog from "../package-shared/utils/logging/debug-log";
const media = { const media = {
imageInputToBase64: imageInputToBase64, imageInputToBase64,
imageInputFileToBase64: imageInputFileToBase64, imageInputFileToBase64,
inputFileToBase64: inputFileToBase64, inputFileToBase64,
}; };
/** /**

View File

@ -15,9 +15,9 @@ import postLogin from "./auth/post-login";
import deserializeQuery from "../package-shared/utils/deserialize-query"; import deserializeQuery from "../package-shared/utils/deserialize-query";
import debugLog from "../package-shared/utils/logging/debug-log"; import debugLog from "../package-shared/utils/logging/debug-log";
const media = { const media = {
imageInputToBase64: imageInputToBase64, imageInputToBase64,
imageInputFileToBase64: imageInputFileToBase64, imageInputFileToBase64,
inputFileToBase64: inputFileToBase64, inputFileToBase64,
}; };
/** /**
* User Auth Object * User Auth Object

View File

@ -1,10 +1,10 @@
import type { RequestOptions } from "https"; import type { RequestOptions } from "https";
import { DSQL_DATASQUIREL_API_KEYS, DSQL_DATASQUIREL_API_KEYS_SCOPED_RESOURCES, DSQL_DATASQUIREL_BACKUPS, DSQL_DATASQUIREL_DELEGATED_RESOURCES, DSQL_DATASQUIREL_DELEGATED_USERS, DSQL_DATASQUIREL_INVITATIONS, DSQL_DATASQUIREL_MARIADB_USERS, DSQL_DATASQUIREL_PROCESS_QUEUE, DSQL_DATASQUIREL_USER_DATABASE_TABLES, DSQL_DATASQUIREL_USER_DATABASES, DSQL_DATASQUIREL_USER_MEDIA, DSQL_DATASQUIREL_USER_PRIVATE_FOLDERS, DSQL_DATASQUIREL_USERS } from "./dsql"; import type { DSQL_DATASQUIREL_API_KEYS, DSQL_DATASQUIREL_API_KEYS_SCOPED_RESOURCES, DSQL_DATASQUIREL_BACKUPS, DSQL_DATASQUIREL_DELEGATED_RESOURCES, DSQL_DATASQUIREL_DELEGATED_USERS, DSQL_DATASQUIREL_INVITATIONS, DSQL_DATASQUIREL_MARIADB_USERS, DSQL_DATASQUIREL_PROCESS_QUEUE, DSQL_DATASQUIREL_USER_DATABASE_TABLES, DSQL_DATASQUIREL_USER_DATABASES, DSQL_DATASQUIREL_USER_MEDIA, DSQL_DATASQUIREL_USER_PRIVATE_FOLDERS, DSQL_DATASQUIREL_USERS } from "./dsql";
import { Editor } from "tinymce"; import type { Editor } from "tinymce";
import sharp from "sharp"; import type sharp from "sharp";
import DataTypes from "../data/data-types"; import type DataTypes from "../data/data-types";
import { IncomingMessage, ServerResponse } from "http"; import type { IncomingMessage, ServerResponse } from "http";
import { CookieNames } from "../dict/cookie-names"; import type { CookieNames } from "../dict/cookie-names";
export type DSQL_DatabaseFullName = string; export type DSQL_DatabaseFullName = string;
export type DSQL_DATASQUIREL_USER_BACKUPS_JOIN = DSQL_DATASQUIREL_BACKUPS & { export type DSQL_DATASQUIREL_USER_BACKUPS_JOIN = DSQL_DATASQUIREL_BACKUPS & {
[k in (typeof UserSelectFields)[number]["alias"]]?: string; [k in (typeof UserSelectFields)[number]["alias"]]?: string;

View File

@ -1,6 +1,6 @@
import type { RequestOptions } from "https"; import type { RequestOptions } from "https";
import { import type {
DSQL_DATASQUIREL_API_KEYS, DSQL_DATASQUIREL_API_KEYS,
DSQL_DATASQUIREL_API_KEYS_SCOPED_RESOURCES, DSQL_DATASQUIREL_API_KEYS_SCOPED_RESOURCES,
DSQL_DATASQUIREL_BACKUPS, DSQL_DATASQUIREL_BACKUPS,
@ -16,11 +16,12 @@ import {
DSQL_DATASQUIREL_USERS, DSQL_DATASQUIREL_USERS,
} from "./dsql"; } from "./dsql";
import { Editor } from "tinymce"; import type { Editor } from "tinymce";
import sharp from "sharp"; import type sharp from "sharp";
import DataTypes from "../data/data-types"; import type DataTypes from "../data/data-types";
import { IncomingMessage, ServerResponse } from "http"; import type { IncomingMessage, ServerResponse } from "http";
import { CookieNames } from "../dict/cookie-names"; import type { CookieNames } from "../dict/cookie-names";
export type DSQL_DatabaseFullName = string; export type DSQL_DatabaseFullName = string;
export type DSQL_DATASQUIREL_USER_BACKUPS_JOIN = DSQL_DATASQUIREL_BACKUPS & { export type DSQL_DATASQUIREL_USER_BACKUPS_JOIN = DSQL_DATASQUIREL_BACKUPS & {

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/datasquirel", "name": "@moduletrace/datasquirel",
"version": "4.7.6", "version": "4.7.7",
"description": "Cloud-based SQL data management tool", "description": "Cloud-based SQL data management tool",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {