emilsoftware-utilities 1.3.137 → 1.3.139
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.
|
@@ -57,8 +57,17 @@ let UserService = class UserService {
|
|
|
57
57
|
G.FLGSUPER as flag_super,
|
|
58
58
|
G.PAGDEF as pagina_default,
|
|
59
59
|
G.JSON_METADATA as json_metadata,
|
|
60
|
-
G.RAGSOCCLI as rag_soc_cli
|
|
61
|
-
|
|
60
|
+
G.RAGSOCCLI as rag_soc_cli,
|
|
61
|
+
F.NUMREP AS num_rep,
|
|
62
|
+
F.IDXPERS AS idx_pers,
|
|
63
|
+
F.CODCLISUPER AS cod_cli_super,
|
|
64
|
+
F.CODAGE AS cod_age,
|
|
65
|
+
F.CODCLICOL AS cod_cli_col,
|
|
66
|
+
F.CODCLIENTI AS codice_clienti,
|
|
67
|
+
F.TIPFIL AS tip_fil
|
|
68
|
+
FROM UTENTI U
|
|
69
|
+
INNER JOIN UTENTI_CONFIG G ON U.CODUTE = G.CODUTE
|
|
70
|
+
INNER JOIN FILTRI F ON F.CODUTE = U.CODUTE
|
|
62
71
|
ORDER BY U.CODUTE`;
|
|
63
72
|
let users = yield Orm_1.Orm.query(this.accessiOptions.databaseOptions, query);
|
|
64
73
|
users = users.map(Utilities_1.RestUtilities.convertKeysToCamelCase);
|
package/dist/index.d.ts
CHANGED
|
@@ -18,3 +18,4 @@ export * from "./allegati-module";
|
|
|
18
18
|
export * from "es-node-firebird";
|
|
19
19
|
export { autobind, ExecutionTimeLogger, Logger, LogLevels, Orm, DateUtilities, RestUtilities, DatabaseUtilities, DatabaseUpdater, StatusCode, DocumentGenerator };
|
|
20
20
|
export * from "./swagger/SwaggerConfig";
|
|
21
|
+
export * from "./initEmilsoftwareModule";
|
package/dist/index.js
CHANGED