add grist record to fullinfo

This commit is contained in:
Darius
2026-02-06 19:49:46 +01:00
parent 27dc6f2b12
commit ec4c9ec492
6 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
import type { AxiosInstance } from "axios";
import { logWarning } from "./logger";
export type ServiceResult<T = unknown> = {
result: T;
@@ -40,6 +41,7 @@ export abstract class BaseService<T> {
}
getErrorResult(error: string): ServiceResult<string> {
logWarning(error);
return {
result: error,
successful: false,