substrate-ai 0.12.0 → 0.13.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.
- package/dist/adapter-registry-DbLuI3IA.js +4 -0
- package/dist/cli/index.js +25 -15
- package/dist/{decisions-DQZW0h9X.js → decisions-CGNEausW.js} +1 -1
- package/dist/{dist-eNB_v7Iy.js → dist-CLvAwmT7.js} +39 -5
- package/dist/{errors-BvyMlvCX.js → errors-D1LU8CZ9.js} +2 -2
- package/dist/{experimenter-Dos3NsCg.js → experimenter-D0k2wT3I.js} +1 -1
- package/dist/{health-CiDi90gC.js → health-DswaC1q5.js} +2 -2
- package/dist/{health-BvYILeQQ.js → health-GEDGgGan.js} +2 -2
- package/dist/{helpers-DTp3VJ2-.js → helpers-CElYrONe.js} +2 -2
- package/dist/index.js +3 -3
- package/dist/{routing-HaYsjEIS.js → routing-B1aoIz7L.js} +1 -1
- package/dist/run-BV2zNwIC.js +9 -0
- package/dist/{run-CrIc5FY5.js → run-DDUeFC-I.js} +6192 -133
- package/dist/schema.sql +5 -0
- package/dist/{upgrade-B3ohl-EC.js → upgrade-DPdh5w4p.js} +2 -2
- package/dist/{upgrade-DvEXi3Fq.js → upgrade-DT0I_-1E.js} +2 -2
- package/dist/{version-manager-impl-CKv6I1S0.js → version-manager-impl-BHnUB2tl.js} +1 -1
- package/package.json +1 -1
- package/dist/adapter-registry-neBZrkr3.js +0 -4
- package/dist/run-Czm5qS9p.js +0 -9
package/dist/schema.sql
CHANGED
|
@@ -274,6 +274,11 @@ CREATE TABLE IF NOT EXISTS story_dependencies (
|
|
|
274
274
|
PRIMARY KEY (story_key, depends_on)
|
|
275
275
|
);
|
|
276
276
|
|
|
277
|
+
-- Migration: add created_at to story_dependencies (added in v0.12.0)
|
|
278
|
+
SET @_sd_created_at_exists = (SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'story_dependencies' AND COLUMN_NAME = 'created_at');
|
|
279
|
+
SET @_sql = IF(@_sd_created_at_exists = 0, 'ALTER TABLE story_dependencies ADD COLUMN created_at DATETIME DEFAULT NULL', 'SELECT 1');
|
|
280
|
+
PREPARE _add_col FROM @_sql; EXECUTE _add_col; DEALLOCATE PREPARE _add_col;
|
|
281
|
+
|
|
277
282
|
-- ---------------------------------------------------------------------------
|
|
278
283
|
-- ready_stories view (Epic 31-1)
|
|
279
284
|
-- ---------------------------------------------------------------------------
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import "./dist-
|
|
1
|
+
import "./dist-CLvAwmT7.js";
|
|
2
2
|
import "./version-manager-impl-BmOWu8ml.js";
|
|
3
|
-
import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-
|
|
3
|
+
import { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand } from "./upgrade-DT0I_-1E.js";
|
|
4
4
|
|
|
5
5
|
export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createVersionManager } from "./dist-
|
|
1
|
+
import { createVersionManager } from "./dist-CLvAwmT7.js";
|
|
2
2
|
import { execSync, spawn } from "child_process";
|
|
3
3
|
import * as readline from "readline";
|
|
4
4
|
|
|
@@ -123,4 +123,4 @@ function registerUpgradeCommand(program) {
|
|
|
123
123
|
|
|
124
124
|
//#endregion
|
|
125
125
|
export { isGlobalInstall, registerUpgradeCommand, runUpgradeCommand };
|
|
126
|
-
//# sourceMappingURL=upgrade-
|
|
126
|
+
//# sourceMappingURL=upgrade-DT0I_-1E.js.map
|
package/package.json
CHANGED
package/dist/run-Czm5qS9p.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import "./health-CiDi90gC.js";
|
|
2
|
-
import "./logger-KeHncl-f.js";
|
|
3
|
-
import "./helpers-DTp3VJ2-.js";
|
|
4
|
-
import "./dist-eNB_v7Iy.js";
|
|
5
|
-
import { registerRunCommand, runRunAction } from "./run-CrIc5FY5.js";
|
|
6
|
-
import "./routing-CcBOCuC9.js";
|
|
7
|
-
import "./decisions-C0pz9Clx.js";
|
|
8
|
-
|
|
9
|
-
export { runRunAction };
|