@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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
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.
|
|
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.
|
|
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.
|
|
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.
|
|
1761
|
+
table.text("external_id");
|
|
1762
1762
|
table.integer("textLength");
|
|
1763
1763
|
table.text("source");
|
|
1764
1764
|
for (const field of this.fields) {
|