@zodic/shared 0.0.276 → 0.0.277
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.
|
@@ -21,7 +21,6 @@ import {
|
|
|
21
21
|
AstrologicalReport,
|
|
22
22
|
AstroReportParams,
|
|
23
23
|
AstroReportRow,
|
|
24
|
-
BackendCtx,
|
|
25
24
|
ChatMessages,
|
|
26
25
|
Concept,
|
|
27
26
|
ControlNetConfig,
|
|
@@ -41,7 +40,7 @@ import { AppContext } from '../base/AppContext';
|
|
|
41
40
|
export class ConceptService {
|
|
42
41
|
constructor(@inject(AppContext) private context: AppContext) {}
|
|
43
42
|
|
|
44
|
-
async getAllConcepts(
|
|
43
|
+
async getAllConcepts() {
|
|
45
44
|
const drizzle = this.context.drizzle();
|
|
46
45
|
const conceptsList = await drizzle
|
|
47
46
|
.select({
|
|
@@ -53,7 +52,7 @@ export class ConceptService {
|
|
|
53
52
|
.from(concepts)
|
|
54
53
|
.execute();
|
|
55
54
|
|
|
56
|
-
return
|
|
55
|
+
return conceptsList;
|
|
57
56
|
}
|
|
58
57
|
|
|
59
58
|
/**
|