@cristian-israel/giganet_lib_conecta 1.0.73 → 1.0.74
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.
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -34245,7 +34245,6 @@ type MysqlConnectionConfig = {
|
|
|
34245
34245
|
port: number;
|
|
34246
34246
|
user: string;
|
|
34247
34247
|
password: string;
|
|
34248
|
-
database: string;
|
|
34249
34248
|
};
|
|
34250
34249
|
|
|
34251
34250
|
declare class IXCSoftMysqlService {
|
package/dist/index.d.ts
CHANGED
|
@@ -34245,7 +34245,6 @@ type MysqlConnectionConfig = {
|
|
|
34245
34245
|
port: number;
|
|
34246
34246
|
user: string;
|
|
34247
34247
|
password: string;
|
|
34248
|
-
database: string;
|
|
34249
34248
|
};
|
|
34250
34249
|
|
|
34251
34250
|
declare class IXCSoftMysqlService {
|
package/dist/index.js
CHANGED
|
@@ -90328,6 +90328,7 @@ function initModels(sequelize) {
|
|
|
90328
90328
|
async function createIXCConnection(config) {
|
|
90329
90329
|
const sequelize = await createMysqlConnection({
|
|
90330
90330
|
...config,
|
|
90331
|
+
database: "ixcprovedor",
|
|
90331
90332
|
context: configIXCSoft.context
|
|
90332
90333
|
});
|
|
90333
90334
|
const models = Object.freeze(initModels(sequelize));
|
|
@@ -90796,6 +90797,7 @@ function initModels2(sequelize) {
|
|
|
90796
90797
|
async function createRoutinesConnection(config) {
|
|
90797
90798
|
const sequelize = await createMysqlConnection({
|
|
90798
90799
|
...config,
|
|
90800
|
+
database: "routines",
|
|
90799
90801
|
context: configRoutines.context
|
|
90800
90802
|
});
|
|
90801
90803
|
const models = Object.freeze(initModels2(sequelize));
|
package/dist/index.mjs
CHANGED
|
@@ -90284,6 +90284,7 @@ function initModels(sequelize) {
|
|
|
90284
90284
|
async function createIXCConnection(config) {
|
|
90285
90285
|
const sequelize = await createMysqlConnection({
|
|
90286
90286
|
...config,
|
|
90287
|
+
database: "ixcprovedor",
|
|
90287
90288
|
context: configIXCSoft.context
|
|
90288
90289
|
});
|
|
90289
90290
|
const models = Object.freeze(initModels(sequelize));
|
|
@@ -90752,6 +90753,7 @@ function initModels2(sequelize) {
|
|
|
90752
90753
|
async function createRoutinesConnection(config) {
|
|
90753
90754
|
const sequelize = await createMysqlConnection({
|
|
90754
90755
|
...config,
|
|
90756
|
+
database: "routines",
|
|
90755
90757
|
context: configRoutines.context
|
|
90756
90758
|
});
|
|
90757
90759
|
const models = Object.freeze(initModels2(sequelize));
|