emilsoftware-utilities 1.3.35 → 1.3.37
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.
|
@@ -339,7 +339,7 @@ var AccessiModel = function () {
|
|
|
339
339
|
switch (_a.label) {
|
|
340
340
|
case 0:
|
|
341
341
|
_a.trys.push([0, 2, , 3]);
|
|
342
|
-
query = " \n SELECT \n U.CODUTE as codice_utente, \n U.USRNAME as username, \n U.FLGGDPR as flag_gdpr, \n U.DATGDPR as data_gdpr, \n U.DATINS as data_inserimento, \n U.DATSCAPWD as data_scadenza_password, \n U.DATLASTLOGIN as data_last_login, \n U.STAREG as stato_registrazione, \n G.COGNOME as cognome, \n G.NOME as nome, \n G.AVATAR as avatar, \n G.FLG2FATT as flag_due_fattori, \n G.CODLINGUA as codice_lingua,\n G.CELLULARE as cellulare,\n G.FLGSUPER as flag_super, \n G.PAGDEF as pagina_default,\n G.JSON_METADATA as json_metadata,\n F.NUMREP as numero_reparto, \n F.IDXPERS as idx_personale, \n F.CODCLISUPER as codice_cliente_super, \n F.CODAGE as codice_agente, \n F.CODCLICOL as codice_cliente_collegato, \n F.CODCLIENTI as codice_clienti, \n F.TIPFIL as tipo_filtro\n \n FROM UTENTI U, UTENTI_CONFIG G, FILTRI F \n WHERE U.CODUTE = G.CODUTE AND F.CODUTE = U.CODUTE \n ORDER BY
|
|
342
|
+
query = " \n SELECT \n U.CODUTE as codice_utente, \n U.USRNAME as username, \n U.FLGGDPR as flag_gdpr, \n U.DATGDPR as data_gdpr, \n U.DATINS as data_inserimento, \n U.DATSCAPWD as data_scadenza_password, \n U.DATLASTLOGIN as data_last_login, \n U.STAREG as stato_registrazione, \n G.COGNOME as cognome, \n G.NOME as nome, \n G.AVATAR as avatar, \n G.FLG2FATT as flag_due_fattori, \n G.CODLINGUA as codice_lingua,\n G.CELLULARE as cellulare,\n G.FLGSUPER as flag_super, \n G.PAGDEF as pagina_default,\n G.JSON_METADATA as json_metadata,\n F.NUMREP as numero_reparto, \n F.IDXPERS as idx_personale, \n F.CODCLISUPER as codice_cliente_super, \n F.CODAGE as codice_agente, \n F.CODCLICOL as codice_cliente_collegato, \n F.CODCLIENTI as codice_clienti, \n F.TIPFIL as tipo_filtro\n \n FROM UTENTI U, UTENTI_CONFIG G, FILTRI F \n WHERE U.CODUTE = G.CODUTE AND F.CODUTE = U.CODUTE \n ORDER BY U.CODUTE\n ";
|
|
343
343
|
params = [];
|
|
344
344
|
return [4 /*yield*/, Orm_1.Orm.query(this.accessiOptions.databaseOptions, query, params)];
|
|
345
345
|
case 1:
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AccessiModule = void 0;
|
|
3
|
+
exports.AccessiModule = exports.StatoRegistrazione = void 0;
|
|
4
|
+
var StatoRegistrazione_1 = require("./models/StatoRegistrazione");
|
|
5
|
+
Object.defineProperty(exports, "StatoRegistrazione", { enumerable: true, get: function () { return StatoRegistrazione_1.StatoRegistrazione; } });
|
|
4
6
|
var AccessiModule_1 = require("./AccessiModule");
|
|
5
7
|
Object.defineProperty(exports, "AccessiModule", { enumerable: true, get: function () { return AccessiModule_1.AccessiModule; } });
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,6 @@ import { LogLevels, Logger } from "./Logger";
|
|
|
4
4
|
import { Orm } from "./Orm";
|
|
5
5
|
import { DateUtilities, RestUtilities, DatabaseUtilities, StatusCode } from "./Utilities";
|
|
6
6
|
import { autobind } from "./autobind";
|
|
7
|
-
export { AccessiModule, LoginRequest, LoginResponse, RegisterRequest } from "./accessi-module";
|
|
7
|
+
export { AccessiModule, StatoRegistrazione, LoginRequest, LoginResponse, RegisterRequest } from "./accessi-module";
|
|
8
8
|
export * from "es-node-firebird";
|
|
9
9
|
export { autobind, ExecutionTimeLogger, Logger, LogLevels, Orm, DateUtilities, RestUtilities, DatabaseUtilities, DatabaseUpdater, StatusCode };
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.StatusCode = exports.DatabaseUpdater = exports.DatabaseUtilities = exports.RestUtilities = exports.DateUtilities = exports.Orm = exports.LogLevels = exports.Logger = exports.ExecutionTimeLogger = exports.autobind = exports.AccessiModule = void 0;
|
|
17
|
+
exports.StatusCode = exports.DatabaseUpdater = exports.DatabaseUtilities = exports.RestUtilities = exports.DateUtilities = exports.Orm = exports.LogLevels = exports.Logger = exports.ExecutionTimeLogger = exports.autobind = exports.StatoRegistrazione = exports.AccessiModule = void 0;
|
|
18
18
|
var DatabaseUpdater_1 = require("./DatabaseUpdater");
|
|
19
19
|
Object.defineProperty(exports, "DatabaseUpdater", { enumerable: true, get: function () { return DatabaseUpdater_1.DatabaseUpdater; } });
|
|
20
20
|
var ExecutionTimeLogger_1 = require("./ExecutionTimeLogger");
|
|
@@ -33,4 +33,5 @@ var autobind_1 = require("./autobind");
|
|
|
33
33
|
Object.defineProperty(exports, "autobind", { enumerable: true, get: function () { return autobind_1.autobind; } });
|
|
34
34
|
var accessi_module_1 = require("./accessi-module");
|
|
35
35
|
Object.defineProperty(exports, "AccessiModule", { enumerable: true, get: function () { return accessi_module_1.AccessiModule; } });
|
|
36
|
+
Object.defineProperty(exports, "StatoRegistrazione", { enumerable: true, get: function () { return accessi_module_1.StatoRegistrazione; } });
|
|
36
37
|
__exportStar(require("es-node-firebird"), exports);
|