@truenine/memory-sync-cli 2026.10327.10010 → 2026.10328.106
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.d.mts +9 -4
- package/dist/index.mjs +56 -56
- package/dist/plugin-runtime.mjs +126 -126
- package/package.json +17 -15
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import * as node_fs0 from "node:fs";
|
|
3
|
-
import * as node_path0 from "node:path";
|
|
2
|
+
import * as _$node_fs0 from "node:fs";
|
|
3
|
+
import * as _$node_path0 from "node:path";
|
|
4
4
|
import * as fs from "fs";
|
|
5
5
|
import { Buffer } from "node:buffer";
|
|
6
6
|
import { z } from "zod/v3";
|
|
@@ -3379,6 +3379,10 @@ declare module 'hast' {
|
|
|
3379
3379
|
* Metadata source type
|
|
3380
3380
|
*/
|
|
3381
3381
|
//#endregion
|
|
3382
|
+
//#region src/plugins/plugin-core/AindexTypes.d.ts
|
|
3383
|
+
declare const AINDEX_PROJECT_SERIES_NAMES: readonly ["app", "ext", "arch"];
|
|
3384
|
+
type AindexProjectSeriesName = (typeof AINDEX_PROJECT_SERIES_NAMES)[number];
|
|
3385
|
+
//#endregion
|
|
3382
3386
|
//#region src/plugins/plugin-core/ConfigTypes.schema.d.ts
|
|
3383
3387
|
/**
|
|
3384
3388
|
* Zod schema for the aindex configuration.
|
|
@@ -4343,6 +4347,7 @@ interface Project {
|
|
|
4343
4347
|
readonly isPromptSourceProject?: boolean;
|
|
4344
4348
|
readonly isWorkspaceRootProject?: boolean;
|
|
4345
4349
|
readonly projectConfig?: ProjectConfig;
|
|
4350
|
+
readonly promptSeries?: AindexProjectSeriesName;
|
|
4346
4351
|
}
|
|
4347
4352
|
interface Workspace {
|
|
4348
4353
|
readonly directory: Path;
|
|
@@ -4892,8 +4897,8 @@ interface Plugin<T extends PluginKind = PluginKind> extends DependencyNode {
|
|
|
4892
4897
|
}
|
|
4893
4898
|
interface PluginContext {
|
|
4894
4899
|
logger: ILogger;
|
|
4895
|
-
fs: typeof node_fs0;
|
|
4896
|
-
path: typeof node_path0;
|
|
4900
|
+
fs: typeof _$node_fs0;
|
|
4901
|
+
path: typeof _$node_path0;
|
|
4897
4902
|
glob: FastGlobType;
|
|
4898
4903
|
}
|
|
4899
4904
|
interface InputCapabilityContext extends PluginContext {
|