botinabox 2.15.4 → 2.16.1

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 +2 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -3426,6 +3426,7 @@ function defineDomainTables(db, options = {}) {
3426
3426
  description: "TEXT",
3427
3427
  mission: "TEXT",
3428
3428
  website: "TEXT",
3429
+ address: "TEXT",
3429
3430
  created_at: "TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP",
3430
3431
  updated_at: "TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP",
3431
3432
  deleted_at: "TEXT"
@@ -3736,6 +3737,7 @@ ${o.description}` : null,
3736
3737
  o.mission ? `
3737
3738
  **Mission:** ${o.mission}` : null,
3738
3739
  o.website ? `**Website:** ${o.website}` : null,
3740
+ o.address ? `**Address:** ${o.address}` : null,
3739
3741
  ""
3740
3742
  ].filter(Boolean).join("\n");
3741
3743
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botinabox",
3
- "version": "2.15.4",
3
+ "version": "2.16.1",
4
4
  "description": "Bot in a Box — framework for building multi-agent bots",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -60,7 +60,7 @@
60
60
  "@types/uuid": "^10.0.0",
61
61
  "ajv": "^8.17.1",
62
62
  "cron-parser": "^4.9.0",
63
- "latticesql": "^1.13.4",
63
+ "latticesql": "^1.13.5",
64
64
  "uuid": "^13.0.0",
65
65
  "yaml": "^2.7.0"
66
66
  },