@cristian-israel/giganet_lib_conecta 1.0.68 → 1.0.69
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +0 -2
- package/dist/index.mjs +0 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -34245,6 +34245,7 @@ type MysqlConnectionConfig = {
|
|
|
34245
34245
|
port: number;
|
|
34246
34246
|
user: string;
|
|
34247
34247
|
password: string;
|
|
34248
|
+
database: string;
|
|
34248
34249
|
};
|
|
34249
34250
|
|
|
34250
34251
|
declare class IXCSoftMysqlService {
|
package/dist/index.d.ts
CHANGED
|
@@ -34245,6 +34245,7 @@ type MysqlConnectionConfig = {
|
|
|
34245
34245
|
port: number;
|
|
34246
34246
|
user: string;
|
|
34247
34247
|
password: string;
|
|
34248
|
+
database: string;
|
|
34248
34249
|
};
|
|
34249
34250
|
|
|
34250
34251
|
declare class IXCSoftMysqlService {
|
package/dist/index.js
CHANGED
|
@@ -90328,7 +90328,6 @@ function initModels(sequelize) {
|
|
|
90328
90328
|
async function createIXCConnection(config) {
|
|
90329
90329
|
const sequelize = await createMysqlConnection({
|
|
90330
90330
|
...config,
|
|
90331
|
-
database: "ixcprovedor",
|
|
90332
90331
|
context: configIXCSoft.context
|
|
90333
90332
|
});
|
|
90334
90333
|
const models = Object.freeze(initModels(sequelize));
|
|
@@ -90785,7 +90784,6 @@ function initModels2(sequelize) {
|
|
|
90785
90784
|
async function createRoutinesConnection(config) {
|
|
90786
90785
|
const sequelize = await createMysqlConnection({
|
|
90787
90786
|
...config,
|
|
90788
|
-
database: "routines",
|
|
90789
90787
|
context: configRoutines.context
|
|
90790
90788
|
});
|
|
90791
90789
|
const models = Object.freeze(initModels2(sequelize));
|
package/dist/index.mjs
CHANGED
|
@@ -90284,7 +90284,6 @@ function initModels(sequelize) {
|
|
|
90284
90284
|
async function createIXCConnection(config) {
|
|
90285
90285
|
const sequelize = await createMysqlConnection({
|
|
90286
90286
|
...config,
|
|
90287
|
-
database: "ixcprovedor",
|
|
90288
90287
|
context: configIXCSoft.context
|
|
90289
90288
|
});
|
|
90290
90289
|
const models = Object.freeze(initModels(sequelize));
|
|
@@ -90741,7 +90740,6 @@ function initModels2(sequelize) {
|
|
|
90741
90740
|
async function createRoutinesConnection(config) {
|
|
90742
90741
|
const sequelize = await createMysqlConnection({
|
|
90743
90742
|
...config,
|
|
90744
|
-
database: "routines",
|
|
90745
90743
|
context: configRoutines.context
|
|
90746
90744
|
});
|
|
90747
90745
|
const models = Object.freeze(initModels2(sequelize));
|