@okf/ootils 1.17.0 → 1.17.1

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/node.js CHANGED
@@ -432,6 +432,7 @@ var init_Annotations = __esm({
432
432
  AnnotationSchema.index({ createdAt: -1 });
433
433
  AnnotationSchema.index({ "annotations.annoKey": 1 });
434
434
  AnnotationSchema.index({ "kp_date_published": -1 });
435
+ AnnotationSchema.index({ "meta.contentType": 1, "meta.valuePath": 1, topicId: 1 });
435
436
  AnnotationSchema.pre("save", function(next) {
436
437
  this.updatedAt = /* @__PURE__ */ new Date();
437
438
  next();
package/dist/node.mjs CHANGED
@@ -437,6 +437,7 @@ var init_Annotations = __esm({
437
437
  AnnotationSchema.index({ createdAt: -1 });
438
438
  AnnotationSchema.index({ "annotations.annoKey": 1 });
439
439
  AnnotationSchema.index({ "kp_date_published": -1 });
440
+ AnnotationSchema.index({ "meta.contentType": 1, "meta.valuePath": 1, topicId: 1 });
440
441
  AnnotationSchema.pre("save", function(next) {
441
442
  this.updatedAt = /* @__PURE__ */ new Date();
442
443
  next();
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.17.0",
6
+ "version": "1.17.1",
7
7
  "description": "Utility functions for both browser and Node.js",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.mjs",