prostgles-server 2.0.101 → 2.0.105

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.
@@ -258,6 +258,7 @@ export default async function isomorphic(db: Partial<DbHandler> | Partial<DBHand
258
258
  hIdx: { $term_highlight: [["name"], term, { returnType: "index" }] },
259
259
  hBool: { $term_highlight: [["name"], term, { returnType: "boolean" }] },
260
260
  hObj: { $term_highlight: [["name"], term, { returnType: "object" }] },
261
+ hObjAll: { $term_highlight: ["*", term, { returnType: "object" }] },
261
262
  },
262
263
  orderBy: { hIdx: -1 }
263
264
  }
@@ -285,6 +286,11 @@ export default async function isomorphic(db: Partial<DbHandler> | Partial<DBHand
285
286
  '', ['abc81'],' here'
286
287
  ]
287
288
  },
289
+ hObjAll: {
290
+ name: [
291
+ '', ['abc81'],' here'
292
+ ]
293
+ },
288
294
  }
289
295
  )
290
296
  });