@cristian-israel/giganet_lib_conecta 1.0.72 → 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 +5 -1
- package/dist/index.d.ts +5 -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 {
|
|
@@ -37103,6 +37102,10 @@ interface RoutinesTasksSyncJobsResponse {
|
|
|
37103
37102
|
orphanJobsRemoved: string[];
|
|
37104
37103
|
}
|
|
37105
37104
|
|
|
37105
|
+
interface TaskMetadata {
|
|
37106
|
+
start_date?: string;
|
|
37107
|
+
[key: string]: any;
|
|
37108
|
+
}
|
|
37106
37109
|
declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
37107
37110
|
timestamps: true;
|
|
37108
37111
|
}, {
|
|
@@ -37171,6 +37174,7 @@ declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any
|
|
|
37171
37174
|
__v: number;
|
|
37172
37175
|
}>;
|
|
37173
37176
|
interface RoutinesTasksResponse extends HydratedDocument<InferSchemaType<typeof RoutinesTasksSchema>> {
|
|
37177
|
+
metadata?: TaskMetadata | null;
|
|
37174
37178
|
}
|
|
37175
37179
|
|
|
37176
37180
|
declare class RoutinesTasksResource {
|
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 {
|
|
@@ -37103,6 +37102,10 @@ interface RoutinesTasksSyncJobsResponse {
|
|
|
37103
37102
|
orphanJobsRemoved: string[];
|
|
37104
37103
|
}
|
|
37105
37104
|
|
|
37105
|
+
interface TaskMetadata {
|
|
37106
|
+
start_date?: string;
|
|
37107
|
+
[key: string]: any;
|
|
37108
|
+
}
|
|
37106
37109
|
declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
37107
37110
|
timestamps: true;
|
|
37108
37111
|
}, {
|
|
@@ -37171,6 +37174,7 @@ declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any
|
|
|
37171
37174
|
__v: number;
|
|
37172
37175
|
}>;
|
|
37173
37176
|
interface RoutinesTasksResponse extends HydratedDocument<InferSchemaType<typeof RoutinesTasksSchema>> {
|
|
37177
|
+
metadata?: TaskMetadata | null;
|
|
37174
37178
|
}
|
|
37175
37179
|
|
|
37176
37180
|
declare class RoutinesTasksResource {
|
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));
|