This commit is contained in:
2025-12-26 06:37:30 +01:00
parent 98aaa94b80
commit b02399c64d
50 changed files with 112 additions and 105 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ export default async function <
fieldName,
apiConnectionConfig,
grabbedHostnames,
}: Params): Promise<APIResponseObject<T>> {
}: Params): Promise<APIResponseObject> {
const basePath = grabAPIBasePath({ paradigm: "schema" });
const finalPath = path.join(
@@ -43,7 +43,7 @@ export default async function <
fieldName || ""
);
const GET_RES = await queryDSQLAPI<any, T>({
const GET_RES = await queryDSQLAPI<T>({
method: "GET",
path: finalPath,
apiKey,