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.
- package/dist/DboBuilder.js +3 -3
- package/dist/DboBuilder.js.map +1 -1
- package/dist/QueryBuilder.d.ts.map +1 -1
- package/dist/QueryBuilder.js +15 -7
- package/dist/QueryBuilder.js.map +1 -1
- package/lib/DboBuilder.ts +3 -3
- package/lib/QueryBuilder.ts +17 -10
- package/package.json +5 -3
- package/tests/client/PID.txt +1 -1
- package/tests/client/package-lock.json +202 -9
- package/tests/client/package.json +1 -1
- package/tests/isomorphic_queries.js +6 -0
- package/tests/isomorphic_queries.ts +6 -0
- package/tests/server/media/{4f7dc5fd-8b95-4db2-b98c-6d00cc25e9d9.txt → 0eb5e3ea-d260-43af-8732-5b878acdd031.txt} +0 -0
- package/tests/server/media/{95bbe9ea-08ac-4ee4-999b-5a6b0585a79e.txt → 2e1af937-5950-4bf2-b735-658a2e0e7630.txt} +0 -0
- package/tests/server/media/{a42ad1e1-c202-40f8-b3d2-65ec1ceaa5ed.txt → 4a294cf7-b37a-495d-a174-66ec0311abf6.txt} +0 -0
- package/tests/server/media/{be225b00-2d02-40c0-9566-cc386384e763.txt → 62ff4fce-c19c-4d5c-9808-604f68776318.txt} +0 -0
- package/tests/server/package-lock.json +1010 -3
|
@@ -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
|
});
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|