@akanjs/service 0.9.49 → 0.9.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -336,7 +336,7 @@ const DbService = (database, ...libSrvRefs) => {
|
|
|
336
336
|
const query = queryFn(...args);
|
|
337
337
|
return this.__insight(query);
|
|
338
338
|
};
|
|
339
|
-
DbService2.prototype[`query${(0, import_common.capitalize)(queryKey)}`] =
|
|
339
|
+
DbService2.prototype[`query${(0, import_common.capitalize)(queryKey)}`] = function(...args) {
|
|
340
340
|
return queryFn(...args);
|
|
341
341
|
};
|
|
342
342
|
});
|
|
@@ -302,7 +302,7 @@ const DbService = (database, ...libSrvRefs) => {
|
|
|
302
302
|
const query = queryFn(...args);
|
|
303
303
|
return this.__insight(query);
|
|
304
304
|
};
|
|
305
|
-
DbService2.prototype[`query${capitalize(queryKey)}`] =
|
|
305
|
+
DbService2.prototype[`query${capitalize(queryKey)}`] = function(...args) {
|
|
306
306
|
return queryFn(...args);
|
|
307
307
|
};
|
|
308
308
|
});
|