@cristian-israel/giganet_lib_conecta 1.0.86 → 1.0.87
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -92215,7 +92215,7 @@ var ToolsBranchGroupsSchema = new import_mongoose10.Schema(
|
|
|
92215
92215
|
timestamps: true
|
|
92216
92216
|
}
|
|
92217
92217
|
);
|
|
92218
|
-
ToolsBranchGroupsSchema.index({ id_region: 1,
|
|
92218
|
+
ToolsBranchGroupsSchema.index({ id_region: 1, name: 1 }, { unique: true });
|
|
92219
92219
|
|
|
92220
92220
|
// src/databases/mongo/tools/collections/branch-stores.ts
|
|
92221
92221
|
var import_mongoose11 = require("mongoose");
|
package/dist/index.mjs
CHANGED
|
@@ -92169,7 +92169,7 @@ var ToolsBranchGroupsSchema = new Schema9(
|
|
|
92169
92169
|
timestamps: true
|
|
92170
92170
|
}
|
|
92171
92171
|
);
|
|
92172
|
-
ToolsBranchGroupsSchema.index({ id_region: 1,
|
|
92172
|
+
ToolsBranchGroupsSchema.index({ id_region: 1, name: 1 }, { unique: true });
|
|
92173
92173
|
|
|
92174
92174
|
// src/databases/mongo/tools/collections/branch-stores.ts
|
|
92175
92175
|
import { Schema as Schema10, Types as Types4 } from "mongoose";
|