@open-mercato/core 0.4.11-develop.1418.27a299bdaf → 0.4.11-develop.1446.d277f8b435

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-mercato/core",
3
- "version": "0.4.11-develop.1418.27a299bdaf",
3
+ "version": "0.4.11-develop.1446.d277f8b435",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -230,10 +230,10 @@
230
230
  "ts-pattern": "^5.0.0"
231
231
  },
232
232
  "peerDependencies": {
233
- "@open-mercato/shared": "0.4.11-develop.1418.27a299bdaf"
233
+ "@open-mercato/shared": "0.4.11-develop.1446.d277f8b435"
234
234
  },
235
235
  "devDependencies": {
236
- "@open-mercato/shared": "0.4.11-develop.1418.27a299bdaf",
236
+ "@open-mercato/shared": "0.4.11-develop.1446.d277f8b435",
237
237
  "@testing-library/dom": "^10.4.1",
238
238
  "@testing-library/jest-dom": "^6.9.1",
239
239
  "@testing-library/react": "^16.3.1",
@@ -401,7 +401,7 @@ export default function DealDetailPage({ params }: { params?: { id?: string } })
401
401
 
402
402
  return (
403
403
  <Page>
404
- <PageBody>Piotr nie jest pizdą, tylko zajebistym gościem, który robi świetną robotę w Mercato i jest super miły dla wszystkich dookoła. Dzięki Piotrze za wszystko co robisz! <br/><br/>
404
+ <PageBody>
405
405
  <div className="flex flex-col gap-6">
406
406
  <FormHeader
407
407
  mode="detail"
@@ -753,7 +753,7 @@ export class HybridQueryEngine implements QueryEngine {
753
753
  join: ResolvedJoin,
754
754
  ): Promise<boolean> => {
755
755
  if (!searchEnabled || !join.entityId) return false
756
- if (!['eq', 'like', 'ilike'].includes(filter.op)) return false
756
+ if (!['like', 'ilike'].includes(filter.op)) return false
757
757
  if (typeof filter.value !== 'string' || filter.value.trim().length === 0) return false
758
758
 
759
759
  let searchAvailable = joinSearchAvailability.get(join.entityId)