@exulu/backend 0.3.11 → 0.3.12

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/index.cjs CHANGED
@@ -494,7 +494,7 @@ var agentsSchema = {
494
494
  // src/registry/utils/map-types.ts
495
495
  var mapType = (t, type, name, defaultValue) => {
496
496
  if (type === "text") {
497
- t.string(name, 255);
497
+ t.text(name);
498
498
  return;
499
499
  }
500
500
  if (type === "longText") {
@@ -1802,7 +1802,7 @@ var ExuluContext = class {
1802
1802
  table.text("description");
1803
1803
  table.text("tags");
1804
1804
  table.boolean("archived").defaultTo(false);
1805
- table.string("external_id", 255);
1805
+ table.text("external_id");
1806
1806
  table.integer("textLength");
1807
1807
  table.text("source");
1808
1808
  for (const field of this.fields) {
package/dist/index.js CHANGED
@@ -450,7 +450,7 @@ var agentsSchema = {
450
450
  // src/registry/utils/map-types.ts
451
451
  var mapType = (t, type, name, defaultValue) => {
452
452
  if (type === "text") {
453
- t.string(name, 255);
453
+ t.text(name);
454
454
  return;
455
455
  }
456
456
  if (type === "longText") {
@@ -1758,7 +1758,7 @@ var ExuluContext = class {
1758
1758
  table.text("description");
1759
1759
  table.text("tags");
1760
1760
  table.boolean("archived").defaultTo(false);
1761
- table.string("external_id", 255);
1761
+ table.text("external_id");
1762
1762
  table.integer("textLength");
1763
1763
  table.text("source");
1764
1764
  for (const field of this.fields) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exulu/backend",
3
3
  "author": "Qventu Bv.",
4
- "version": "0.3.11",
4
+ "version": "0.3.12",
5
5
  "main": "./dist/index.js",
6
6
  "private": false,
7
7
  "publishConfig": {