botinabox 1.8.0 → 1.8.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 +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2682,7 +2682,7 @@ function defineCoreEntityContexts(db) {
2682
2682
  db.defineEntityContext("users", {
2683
2683
  table: "users",
2684
2684
  directory: "users",
2685
- slugColumn: "name",
2685
+ slugColumn: "id",
2686
2686
  protected: true,
2687
2687
  indexFile: "users/USERS.md",
2688
2688
  files: {
@@ -3095,7 +3095,7 @@ function defineDomainEntityContexts(db, options = {}) {
3095
3095
  db.defineEntityContext("org", {
3096
3096
  table: "org",
3097
3097
  directory: "orgs",
3098
- slugColumn: "name",
3098
+ slugColumn: "id",
3099
3099
  indexFile: "orgs/ORGS.md",
3100
3100
  files: {
3101
3101
  "ORG.md": {
@@ -3121,7 +3121,7 @@ ${o.description}` : null,
3121
3121
  db.defineEntityContext("project", {
3122
3122
  table: "project",
3123
3123
  directory: "projects",
3124
- slugColumn: "name",
3124
+ slugColumn: "id",
3125
3125
  indexFile: "projects/PROJECTS.md",
3126
3126
  files: {
3127
3127
  "PROJECT.md": {
@@ -3245,7 +3245,7 @@ ${lines.join("\n")}
3245
3245
  db.defineEntityContext("client", {
3246
3246
  table: "client",
3247
3247
  directory: "clients",
3248
- slugColumn: "name",
3248
+ slugColumn: "id",
3249
3249
  indexFile: "clients/CLIENTS.md",
3250
3250
  files: {
3251
3251
  "CLIENT.md": {
@@ -3332,7 +3332,7 @@ ${lines.join("\n")}
3332
3332
  db.defineEntityContext("file", {
3333
3333
  table: "file",
3334
3334
  directory: "files",
3335
- slugColumn: "name",
3335
+ slugColumn: "id",
3336
3336
  indexFile: "files/FILES.md",
3337
3337
  files: {
3338
3338
  "FILE.md": {
@@ -3359,7 +3359,7 @@ ${f.description}` : null,
3359
3359
  db.defineEntityContext("channel", {
3360
3360
  table: "channel",
3361
3361
  directory: "channels",
3362
- slugColumn: "name",
3362
+ slugColumn: "id",
3363
3363
  indexFile: "channels/CHANNELS.md",
3364
3364
  files: {
3365
3365
  "CHANNEL.md": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botinabox",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Bot in a Box — framework for building multi-agent bots",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",