feat: enhance query execution with response handling and add QueryResponse type
This commit is contained in:
@ -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>;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user