@remnic/core 9.6.5 → 9.6.6
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/access-admin-ops-surface.d.ts +2 -2
- package/dist/access-boundary.d.ts +2 -2
- package/dist/access-cli.js +2 -2
- package/dist/access-http.d.ts +2 -2
- package/dist/access-identity-continuity-surface.d.ts +1 -1
- package/dist/access-lcm-surface.d.ts +2 -2
- package/dist/access-mcp.d.ts +2 -2
- package/dist/access-observe-write-surface.d.ts +2 -2
- package/dist/access-operations.d.ts +5 -5
- package/dist/access-recall-surface.d.ts +2 -2
- package/dist/access-schema.d.ts +64 -64
- package/dist/{access-service-BjiJMXBo.d.ts → access-service-DVrdUFNx.d.ts} +1 -1
- package/dist/access-service.d.ts +2 -2
- package/dist/access-surface-catalog.d.ts +2 -2
- package/dist/bootstrap.d.ts +1 -1
- package/dist/{chunk-DTL3OPAJ.js → chunk-BQUE75AB.js} +16 -6
- package/dist/chunk-BQUE75AB.js.map +1 -0
- package/dist/{chunk-IVE2J73I.js → chunk-MVAQLXM2.js} +1 -11
- package/dist/chunk-MVAQLXM2.js.map +1 -0
- package/dist/{cli-BkZQIerV.d.ts → cli-Dzh-d4Y3.d.ts} +32 -14
- package/dist/cli.d.ts +9 -9
- package/dist/cli.js +1 -1
- package/dist/explicit-capture.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/mcp-memory-inspector-app.d.ts +2 -2
- package/dist/{orchestrator-BTbvvmgN.d.ts → orchestrator-DiFog4aM.d.ts} +8 -15
- package/dist/orchestrator.d.ts +1 -1
- package/dist/orchestrator.js +2 -2
- package/dist/schemas.d.ts +74 -74
- package/dist/shared-context/manager.d.ts +8 -8
- package/dist/transfer/types.d.ts +66 -66
- package/package.json +2 -2
- package/src/cli.ts +65 -9
- package/src/orchestration/tier-migration-coordinator.ts +7 -9
- package/src/orchestrator.ts +0 -16
- package/dist/chunk-DTL3OPAJ.js.map +0 -1
- package/dist/chunk-IVE2J73I.js.map +0 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { OperationName } from './access-boundary.js';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import './access-service-
|
|
3
|
+
import './access-service-DVrdUFNx.js';
|
|
4
4
|
import './catalog-9WanSGtt.js';
|
|
5
5
|
import './types-DDUDgd7T.js';
|
|
6
6
|
import './message-parts/index.js';
|
|
7
|
-
import './orchestrator-
|
|
7
|
+
import './orchestrator-DiFog4aM.js';
|
|
8
8
|
import './briefing.js';
|
|
9
9
|
import './storage-DxPDAiU9.js';
|
|
10
10
|
import './page-versioning.js';
|
package/dist/bootstrap.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { P as PluginConfig } from './types-DDUDgd7T.js';
|
|
2
|
-
import { O as Orchestrator } from './orchestrator-
|
|
2
|
+
import { O as Orchestrator } from './orchestrator-DiFog4aM.js';
|
|
3
3
|
import './message-parts/index.js';
|
|
4
4
|
import './briefing.js';
|
|
5
5
|
import './storage-DxPDAiU9.js';
|
|
@@ -2226,11 +2226,21 @@ async function runSessionRepairCliCommand(options) {
|
|
|
2226
2226
|
const applyResult = await applySessionRepair({ plan });
|
|
2227
2227
|
return { report, plan, applyResult };
|
|
2228
2228
|
}
|
|
2229
|
-
async function runTierStatusCliCommand(
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
return
|
|
2229
|
+
async function runTierStatusCliCommand(adapter) {
|
|
2230
|
+
if ("tierMigrationCoordinator" in adapter && typeof adapter.tierMigrationCoordinator.getStatus === "function") {
|
|
2231
|
+
return adapter.tierMigrationCoordinator.getStatus();
|
|
2232
|
+
}
|
|
2233
|
+
return adapter.getTierMigrationStatus();
|
|
2234
|
+
}
|
|
2235
|
+
async function runTierMigrateCliCommand(adapter, options = {}) {
|
|
2236
|
+
if ("tierMigrationCoordinator" in adapter && typeof adapter.tierMigrationCoordinator.runCycle === "function") {
|
|
2237
|
+
return adapter.tierMigrationCoordinator.runCycle(
|
|
2238
|
+
adapter.storage,
|
|
2239
|
+
"manual",
|
|
2240
|
+
{ dryRun: options.dryRun === true, limitOverride: options.limit, force: false }
|
|
2241
|
+
);
|
|
2242
|
+
}
|
|
2243
|
+
return adapter.runTierMigrationNow({
|
|
2234
2244
|
dryRun: options.dryRun === true,
|
|
2235
2245
|
limit: options.limit
|
|
2236
2246
|
});
|
|
@@ -7598,4 +7608,4 @@ export {
|
|
|
7598
7608
|
listMemoryMarkdownFilePaths,
|
|
7599
7609
|
registerCli
|
|
7600
7610
|
};
|
|
7601
|
-
//# sourceMappingURL=chunk-
|
|
7611
|
+
//# sourceMappingURL=chunk-BQUE75AB.js.map
|