wirejs-resources 0.1.136-llm → 0.1.138-llm

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.
@@ -3,7 +3,6 @@ import { DistributedTable, PassThruParser } from './distributed-table.js';
3
3
  import { overrides } from '../overrides.js';
4
4
  const defineTable = (kvStore) => {
5
5
  const ctor = overrides.DistributedTable || DistributedTable;
6
- console.log('Creating key value store', ctor, ctor === DistributedTable);
7
6
  return new ctor(kvStore, 'table', {
8
7
  parse: (PassThruParser),
9
8
  key: { partition: { field: "key", type: 'string' } },
@@ -11,7 +11,6 @@ export class Setting extends Resource {
11
11
  this.details = (details || { private: false });
12
12
  settings = settings || new (overrides.KeyValueStore || KeyValueStore)('wirejs', 'settings');
13
13
  allSettings.set(this.absoluteId, this);
14
- console.log('constructing settings', allSettings);
15
14
  }
16
15
  get isPrivate() {
17
16
  return this.details.private;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-resources",
3
- "version": "0.1.136-llm",
3
+ "version": "0.1.138-llm",
4
4
  "description": "Basic services and server-side resources for wirejs apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",