@sylphx/lens-solid 2.3.0 → 2.3.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -3
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1,5 +1,3 @@
1
- // ../core/dist/index.js
2
- var {createRequire} = (() => ({}));
3
1
  // ../../node_modules/.bun/@sylphx+reify-core@0.1.2/node_modules/@sylphx/reify-core/dist/builder.js
4
2
  var DSL_MARKER = Symbol("reify");
5
3
  // ../../node_modules/.bun/@sylphx+reify-core@0.1.2/node_modules/@sylphx/reify-core/dist/evaluator.js
@@ -864,7 +862,7 @@ function hasAnySubscription(entities, entityName, select, visited = new Set) {
864
862
  const fieldMode = entityMetadata[fieldName];
865
863
  if (!fieldMode)
866
864
  continue;
867
- if (fieldMode === "subscribe") {
865
+ if (fieldMode === "subscribe" || fieldMode === "live") {
868
866
  return true;
869
867
  }
870
868
  const fieldSelect = select?.[fieldName];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/lens-solid",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "SolidJS bindings for Lens API framework",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,8 +31,8 @@
31
31
  "author": "SylphxAI",
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@sylphx/lens-client": "^2.5.0",
35
- "@sylphx/lens-core": "^2.10.0"
34
+ "@sylphx/lens-client": "^2.5.2",
35
+ "@sylphx/lens-core": "^2.11.1"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "solid-js": ">=1.8.0"