This commit is contained in:
2026-01-25 05:36:26 +01:00
parent cda056311b
commit 7169e467cc
5 changed files with 64 additions and 14 deletions
+16 -4
View File
@@ -14,7 +14,7 @@ import putResult from "./functions/put-result";
import deleteResult from "./functions/delete-result";
export default async function apiCrudHandler<
T extends { [k: string]: any } = { [k: string]: any }
T extends { [k: string]: any } = { [k: string]: any },
>(params: APIPathsParams<T>): Promise<APIResponseObject> {
try {
const { auth, method } = params;
@@ -42,7 +42,7 @@ export default async function apiCrudHandler<
const finalSearchQuery = _.merge(
crudParams.query?.searchQuery,
crudParams.body?.searchQuery
crudParams.body?.searchQuery,
);
if (finalSearchQuery) {
@@ -87,7 +87,7 @@ export default async function apiCrudHandler<
}
}
let result: APIResponseObject | undefined;
let result: APIResponseObject<any> | undefined;
switch (method) {
case "GET":
@@ -107,7 +107,19 @@ export default async function apiCrudHandler<
break;
}
await params.postResultsFn?.({ ...crudParams, res: result });
await params.postResultsFn?.({
..._.omit(crudParams, [
"postResultsFnExtraParameters",
"postResultsFn",
"deleteMiddleware",
"putMiddleware",
"postMiddleware",
"getMiddleware",
"auth",
]),
res: result,
...(params.postResultsFnExtraParameters || {}),
});
if (result) {
return result;