@truenine/memory-sync-cli 2026.10403.117 → 2026.10406.121
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/globals.d.mts +14 -3
- package/dist/index.d.mts +122 -475
- package/dist/index.mjs +188 -180
- package/dist/plugin-runtime.mjs +173 -153
- package/dist/tnmsc.schema.json +25 -185
- package/package.json +13 -10
package/dist/globals.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region ../libraries/md-compiler/dist/index-
|
|
1
|
+
//#region ../libraries/md-compiler/dist/index-ejiW4WR4.d.mts
|
|
2
2
|
//#region src/globals/index.d.ts
|
|
3
3
|
/**
|
|
4
4
|
* // These types are available to users when writing MDX templates. // Global type declarations for MDX expression scope. // src/globals/index.ts
|
|
@@ -12,6 +12,15 @@ interface UserProfile {
|
|
|
12
12
|
gender?: string;
|
|
13
13
|
birthday?: string;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* User code style preferences
|
|
17
|
+
* @example {codeStyles.indent}, {codeStyles.tabSize}
|
|
18
|
+
*/
|
|
19
|
+
interface CodeStylePreferences {
|
|
20
|
+
[key: string]: unknown;
|
|
21
|
+
indent?: 'tab' | 'space';
|
|
22
|
+
tabSize?: number;
|
|
23
|
+
}
|
|
15
24
|
/**
|
|
16
25
|
* Tool references for AI assistants
|
|
17
26
|
* @example {tool.websearch}, {tool.webfetch}, {tool.readFile}
|
|
@@ -136,6 +145,8 @@ interface MdComponent {
|
|
|
136
145
|
interface MdxGlobalScope {
|
|
137
146
|
/** User profile information */
|
|
138
147
|
profile: UserProfile;
|
|
148
|
+
/** User code style preferences */
|
|
149
|
+
codeStyles: CodeStylePreferences;
|
|
139
150
|
/** Tool name references for AI assistants */
|
|
140
151
|
tool: ToolReferences;
|
|
141
152
|
/** Environment variables context */
|
|
@@ -147,7 +158,7 @@ interface MdxGlobalScope {
|
|
|
147
158
|
}
|
|
148
159
|
declare global {
|
|
149
160
|
/** User profile information */
|
|
150
|
-
const profile: UserProfile, /** Tool name references for AI assistants */tool: ToolReferences, /** Environment variables context */env: EnvironmentContext, /** Operating system information */os: OsInfo, /** Conditional Markdown component with Line sub-component */Md: MdComponent;
|
|
161
|
+
const profile: UserProfile, /** User code style preferences */codeStyles: CodeStylePreferences, /** Tool name references for AI assistants */tool: ToolReferences, /** Environment variables context */env: EnvironmentContext, /** Operating system information */os: OsInfo, /** Conditional Markdown component with Line sub-component */Md: MdComponent;
|
|
151
162
|
namespace JSX {
|
|
152
163
|
interface IntrinsicElements {
|
|
153
164
|
'Md': MdProps;
|
|
@@ -156,4 +167,4 @@ declare global {
|
|
|
156
167
|
}
|
|
157
168
|
} //#endregion
|
|
158
169
|
//#endregion
|
|
159
|
-
export { EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
|
|
170
|
+
export { CodeStylePreferences, EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
|