@truenine/memory-sync-cli 2026.10324.11958 → 2026.10327.10010
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 +2 -2
- package/dist/index.mjs +104 -104
- package/dist/plugin-runtime.mjs +111 -111
- package/package.json +12 -12
package/dist/index.d.mts
CHANGED
|
@@ -4312,6 +4312,7 @@ declare enum FilePathKind {
|
|
|
4312
4312
|
}
|
|
4313
4313
|
declare enum IDEKind {
|
|
4314
4314
|
VSCode = "vscode",
|
|
4315
|
+
Zed = "zed",
|
|
4315
4316
|
IntellijIDEA = "intellijIdea",
|
|
4316
4317
|
Git = "git",
|
|
4317
4318
|
EditorConfig = "editorconfig",
|
|
@@ -4375,6 +4376,7 @@ interface CollectedContextData {
|
|
|
4375
4376
|
readonly globalMemory?: GlobalMemoryPrompt;
|
|
4376
4377
|
/** Other non-prompt fields */
|
|
4377
4378
|
readonly vscodeConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.VSCode>[];
|
|
4379
|
+
readonly zedConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.Zed>[];
|
|
4378
4380
|
readonly jetbrainsConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.IntellijIDEA>[];
|
|
4379
4381
|
readonly editorConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.EditorConfig>[];
|
|
4380
4382
|
readonly aiAgentIgnoreConfigFiles?: readonly AIAgentIgnoreConfigFile[];
|
|
@@ -4996,8 +4998,6 @@ interface OutputFileDeclaration {
|
|
|
4996
4998
|
readonly source: unknown;
|
|
4997
4999
|
/** Optional existing-file policy */
|
|
4998
5000
|
readonly ifExists?: 'overwrite' | 'skip' | 'error';
|
|
4999
|
-
/** Optional symlink target for declarative link creation */
|
|
5000
|
-
readonly symlinkTarget?: string;
|
|
5001
5001
|
/** Optional label for logging */
|
|
5002
5002
|
readonly label?: string;
|
|
5003
5003
|
}
|