latticesql 0.5.3 → 0.5.4

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/cli.js CHANGED
@@ -1172,7 +1172,6 @@ var Lattice = class {
1172
1172
  return this;
1173
1173
  }
1174
1174
  defineEntityContext(table, def) {
1175
- this._assertNotInit("defineEntityContext");
1176
1175
  this._schema.defineEntityContext(table, def);
1177
1176
  return this;
1178
1177
  }
package/dist/index.cjs CHANGED
@@ -1132,7 +1132,6 @@ var Lattice = class {
1132
1132
  return this;
1133
1133
  }
1134
1134
  defineEntityContext(table, def) {
1135
- this._assertNotInit("defineEntityContext");
1136
1135
  this._schema.defineEntityContext(table, def);
1137
1136
  return this;
1138
1137
  }
package/dist/index.js CHANGED
@@ -1083,7 +1083,6 @@ var Lattice = class {
1083
1083
  return this;
1084
1084
  }
1085
1085
  defineEntityContext(table, def) {
1086
- this._assertNotInit("defineEntityContext");
1087
1086
  this._schema.defineEntityContext(table, def);
1088
1087
  return this;
1089
1088
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "latticesql",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Persistent structured memory for AI agent systems — SQLite ↔ LLM context bridge",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",