@truenine/memory-sync-cli 2026.10318.12034 → 2026.10322.104

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.
@@ -1,4 +1,4 @@
1
- //#region ../libraries/md-compiler/dist/index-C0N3q7pl.d.mts
1
+ //#region ../libraries/md-compiler/dist/index-CnpERWWo.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
@@ -6,17 +6,19 @@
6
6
  * @example {profile.name}, {profile.username}
7
7
  */
8
8
  interface UserProfile {
9
+ [key: string]: unknown;
9
10
  name?: string;
10
11
  username?: string;
11
12
  gender?: string;
12
13
  birthday?: string;
13
- [key: string]: unknown;
14
14
  }
15
15
  /**
16
16
  * Tool references for AI assistants
17
17
  * @example {tool.websearch}, {tool.webfetch}, {tool.readFile}
18
18
  */
19
19
  interface ToolReferences {
20
+ /** Allow custom tool references */
21
+ [key: string]: string | undefined;
20
22
  /** Web search tool name */
21
23
  websearch?: string;
22
24
  /** Web fetch tool name */
@@ -33,8 +35,6 @@ interface ToolReferences {
33
35
  grep?: string;
34
36
  /** List directory tool name */
35
37
  listDirectory?: string;
36
- /** Allow custom tool references */
37
- [key: string]: string | undefined;
38
38
  }
39
39
  /**
40
40
  * Tool name presets for different AI tools.
@@ -100,6 +100,7 @@ declare enum OsKind {
100
100
  * @example {os.platform}, {os.arch}, {os.shellKind}, {os.kind}
101
101
  */
102
102
  interface OsInfo {
103
+ [key: string]: string | ShellKind | OsKind | undefined;
103
104
  platform?: string;
104
105
  arch?: string;
105
106
  hostname?: string;
@@ -109,7 +110,6 @@ interface OsInfo {
109
110
  release?: string;
110
111
  shellKind?: ShellKind;
111
112
  kind?: OsKind;
112
- [key: string]: string | ShellKind | OsKind | undefined;
113
113
  }
114
114
  interface MdProps {
115
115
  /** Condition for rendering content. If omitted, content always renders. */