feat: enhance query execution with response handling and add QueryResponse type

This commit is contained in:
Boris D
2025-10-06 10:23:46 +03:00
parent efbb9f5c21
commit 1e84297e84
4 changed files with 92 additions and 9 deletions

View File

@ -29,3 +29,9 @@ export const registeredModules = {
squel: "dist/vm/modules/squel.js",
asyncCall: "dist/vm/modules/async.js",
};
export type QueryResponse = {
statusCode: number;
response: Record<string, any>;
headers: Record<string, string>;
};