@truenine/memory-sync-cli 2026.10406.121 → 2026.10408.12323
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 +19 -19
- package/dist/plugin-runtime.mjs +1 -1
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -7287,7 +7287,7 @@ interface SubAgentsOutputConfig extends ScopedSourceConfig {
|
|
|
7287
7287
|
readonly fieldOrder?: readonly string[];
|
|
7288
7288
|
/** Optional frontmatter transformer */
|
|
7289
7289
|
readonly transformFrontMatter?: (subAgent: SubAgentPrompt, context: {
|
|
7290
|
-
readonly sourceFrontMatter?:
|
|
7290
|
+
readonly sourceFrontMatter?: SubAgentYAMLFrontMatter;
|
|
7291
7291
|
}) => Record<string, unknown>;
|
|
7292
7292
|
}
|
|
7293
7293
|
/**
|
|
@@ -7414,7 +7414,7 @@ declare abstract class AbstractOutputPlugin extends AbstractPlugin implements Ou
|
|
|
7414
7414
|
readonly fieldOrder?: readonly string[];
|
|
7415
7415
|
readonly scopeRemap?: Partial<Record<OutputDeclarationScope, OutputDeclarationScope>>;
|
|
7416
7416
|
readonly transformFrontMatter?: (subAgent: SubAgentPrompt, context: {
|
|
7417
|
-
readonly sourceFrontMatter?:
|
|
7417
|
+
readonly sourceFrontMatter?: SubAgentYAMLFrontMatter;
|
|
7418
7418
|
}) => Record<string, unknown>;
|
|
7419
7419
|
};
|
|
7420
7420
|
protected readonly commandOutputEnabled: boolean;
|