@cristian-israel/giganet_lib_conecta 1.0.71 → 1.0.73
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 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -37103,6 +37103,10 @@ interface RoutinesTasksSyncJobsResponse {
|
|
|
37103
37103
|
orphanJobsRemoved: string[];
|
|
37104
37104
|
}
|
|
37105
37105
|
|
|
37106
|
+
interface TaskMetadata {
|
|
37107
|
+
start_date?: string;
|
|
37108
|
+
[key: string]: any;
|
|
37109
|
+
}
|
|
37106
37110
|
declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
37107
37111
|
timestamps: true;
|
|
37108
37112
|
}, {
|
|
@@ -37171,6 +37175,7 @@ declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any
|
|
|
37171
37175
|
__v: number;
|
|
37172
37176
|
}>;
|
|
37173
37177
|
interface RoutinesTasksResponse extends HydratedDocument<InferSchemaType<typeof RoutinesTasksSchema>> {
|
|
37178
|
+
metadata?: TaskMetadata | null;
|
|
37174
37179
|
}
|
|
37175
37180
|
|
|
37176
37181
|
declare class RoutinesTasksResource {
|
package/dist/index.d.ts
CHANGED
|
@@ -37103,6 +37103,10 @@ interface RoutinesTasksSyncJobsResponse {
|
|
|
37103
37103
|
orphanJobsRemoved: string[];
|
|
37104
37104
|
}
|
|
37105
37105
|
|
|
37106
|
+
interface TaskMetadata {
|
|
37107
|
+
start_date?: string;
|
|
37108
|
+
[key: string]: any;
|
|
37109
|
+
}
|
|
37106
37110
|
declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any, any, any, any>, {}, {}, {}, {}, {
|
|
37107
37111
|
timestamps: true;
|
|
37108
37112
|
}, {
|
|
@@ -37171,6 +37175,7 @@ declare const RoutinesTasksSchema: Schema<any, mongoose.Model<any, any, any, any
|
|
|
37171
37175
|
__v: number;
|
|
37172
37176
|
}>;
|
|
37173
37177
|
interface RoutinesTasksResponse extends HydratedDocument<InferSchemaType<typeof RoutinesTasksSchema>> {
|
|
37178
|
+
metadata?: TaskMetadata | null;
|
|
37174
37179
|
}
|
|
37175
37180
|
|
|
37176
37181
|
declare class RoutinesTasksResource {
|
package/dist/index.js
CHANGED
|
@@ -91481,7 +91481,7 @@ var RoutinesTasksSchema = new import_mongoose9.Schema(
|
|
|
91481
91481
|
next_execution_at: { type: Date, default: null },
|
|
91482
91482
|
execution_count: { type: Number, default: 0 },
|
|
91483
91483
|
last_execution_time_ms: { type: Number, default: null },
|
|
91484
|
-
metadata: { type:
|
|
91484
|
+
metadata: { type: Object, default: null }
|
|
91485
91485
|
},
|
|
91486
91486
|
{
|
|
91487
91487
|
timestamps: true
|
package/dist/index.mjs
CHANGED
|
@@ -91437,7 +91437,7 @@ var RoutinesTasksSchema = new Schema8(
|
|
|
91437
91437
|
next_execution_at: { type: Date, default: null },
|
|
91438
91438
|
execution_count: { type: Number, default: 0 },
|
|
91439
91439
|
last_execution_time_ms: { type: Number, default: null },
|
|
91440
|
-
metadata: { type:
|
|
91440
|
+
metadata: { type: Object, default: null }
|
|
91441
91441
|
},
|
|
91442
91442
|
{
|
|
91443
91443
|
timestamps: true
|