docz-cli 0.3.0 → 0.5.0
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/README.md +94 -8
- package/dist/chunk-EBJ32KUL.js +562 -0
- package/dist/chunk-EBJ32KUL.js.map +1 -0
- package/dist/index.js +4 -210
- package/dist/index.js.map +1 -1
- package/dist/{mcp-LTB2ZUCO.js → mcp-26HFT6SQ.js} +149 -4
- package/dist/mcp-26HFT6SQ.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-N4DS7U4I.js +0 -138
- package/dist/chunk-N4DS7U4I.js.map +0 -1
- package/dist/mcp-LTB2ZUCO.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,221 +1,15 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
getConfigPath,
|
|
6
|
-
getToken,
|
|
7
|
-
saveConfig
|
|
8
|
-
} from "./chunk-N4DS7U4I.js";
|
|
3
|
+
registerCommands
|
|
4
|
+
} from "./chunk-EBJ32KUL.js";
|
|
9
5
|
|
|
10
6
|
// src/index.ts
|
|
11
7
|
import { Command } from "commander";
|
|
12
|
-
|
|
13
|
-
// src/commands.ts
|
|
14
|
-
import { readFileSync } from "fs";
|
|
15
|
-
import { basename, dirname } from "path";
|
|
16
|
-
function getClient() {
|
|
17
|
-
const token = getToken();
|
|
18
|
-
if (!token) {
|
|
19
|
-
console.error(
|
|
20
|
-
"Error: No token configured.\nRun `docz login` or set DOCSYNC_API_TOKEN environment variable."
|
|
21
|
-
);
|
|
22
|
-
process.exit(1);
|
|
23
|
-
}
|
|
24
|
-
return new DocSyncClient(getBaseUrl(), token);
|
|
25
|
-
}
|
|
26
|
-
function parseTarget(args) {
|
|
27
|
-
if (args.length === 0) {
|
|
28
|
-
console.error(
|
|
29
|
-
"Error: space is required. Usage: docz <cmd> <space>[:<path>]"
|
|
30
|
-
);
|
|
31
|
-
process.exit(1);
|
|
32
|
-
}
|
|
33
|
-
const first = args[0];
|
|
34
|
-
if (first.includes(":")) {
|
|
35
|
-
const [space, ...rest] = first.split(":");
|
|
36
|
-
return { space, path: rest.join(":") };
|
|
37
|
-
}
|
|
38
|
-
return { space: first, path: args.slice(1).join(" ") };
|
|
39
|
-
}
|
|
40
|
-
function formatSize(bytes) {
|
|
41
|
-
if (bytes < 1024) return `${bytes} B`;
|
|
42
|
-
if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
43
|
-
return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;
|
|
44
|
-
}
|
|
45
|
-
function registerCommands(program2) {
|
|
46
|
-
program2.command("login").description("Configure DocSync credentials").option("-u, --url <url>", "DocSync server URL").option("-t, --token <token>", "API token").action(async (opts) => {
|
|
47
|
-
const url = opts.url ?? getBaseUrl();
|
|
48
|
-
const token = opts.token;
|
|
49
|
-
if (!token) {
|
|
50
|
-
console.error(
|
|
51
|
-
"Error: --token is required.\nGet one at: " + url + " \u2192 Settings \u2192 API Tokens"
|
|
52
|
-
);
|
|
53
|
-
process.exit(1);
|
|
54
|
-
}
|
|
55
|
-
const client = new DocSyncClient(url, token);
|
|
56
|
-
try {
|
|
57
|
-
const user = await client.me();
|
|
58
|
-
saveConfig(url, token);
|
|
59
|
-
console.log(`Logged in as ${user.name} (${user.email})`);
|
|
60
|
-
console.log(`Config saved to ${getConfigPath()}`);
|
|
61
|
-
} catch (err) {
|
|
62
|
-
console.error(
|
|
63
|
-
`Error: ${err instanceof Error ? err.message : String(err)}`
|
|
64
|
-
);
|
|
65
|
-
process.exit(1);
|
|
66
|
-
}
|
|
67
|
-
});
|
|
68
|
-
program2.command("whoami").description("Show current user").action(async () => {
|
|
69
|
-
const client = getClient();
|
|
70
|
-
const user = await client.me();
|
|
71
|
-
console.log(`${user.name} (${user.email})`);
|
|
72
|
-
});
|
|
73
|
-
program2.command("spaces").description("List all accessible spaces").action(async () => {
|
|
74
|
-
const client = getClient();
|
|
75
|
-
const spaces = await client.listSpaces();
|
|
76
|
-
for (const s of spaces) {
|
|
77
|
-
const tag = s.is_private ? "private" : "team";
|
|
78
|
-
console.log(`${s.name} ${tag} ${s.member_count} members ${s.id}`);
|
|
79
|
-
}
|
|
80
|
-
});
|
|
81
|
-
program2.command("ls").description("List files \u2014 docz ls <space>[:<path>]").argument("<target...>").action(async (args) => {
|
|
82
|
-
const { space, path } = parseTarget(args);
|
|
83
|
-
const client = getClient();
|
|
84
|
-
const s = await client.resolveSpace(space);
|
|
85
|
-
const entries = await client.ls(s.id, path);
|
|
86
|
-
if (entries.length === 0) {
|
|
87
|
-
console.log("(empty)");
|
|
88
|
-
return;
|
|
89
|
-
}
|
|
90
|
-
for (const e of entries) {
|
|
91
|
-
if (e.type === "tree") {
|
|
92
|
-
console.log(`${e.name}/`);
|
|
93
|
-
} else {
|
|
94
|
-
console.log(`${e.name} ${formatSize(e.size)}`);
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
});
|
|
98
|
-
program2.command("cat").description("Read file content \u2014 docz cat <space>:<path>").argument("<target...>").action(async (args) => {
|
|
99
|
-
const { space, path } = parseTarget(args);
|
|
100
|
-
if (!path) {
|
|
101
|
-
console.error(
|
|
102
|
-
"Error: file path is required. Usage: docz cat <space>:<path>"
|
|
103
|
-
);
|
|
104
|
-
process.exit(1);
|
|
105
|
-
}
|
|
106
|
-
const client = getClient();
|
|
107
|
-
const s = await client.resolveSpace(space);
|
|
108
|
-
const content = await client.cat(s.id, path);
|
|
109
|
-
process.stdout.write(content);
|
|
110
|
-
});
|
|
111
|
-
program2.command("upload").description("Upload file \u2014 docz upload <local-file> <space>[:<dir>]").argument("<file>", "Local file to upload").argument("<target...>").action(async (file, args) => {
|
|
112
|
-
const { space, path: dir } = parseTarget(args);
|
|
113
|
-
const client = getClient();
|
|
114
|
-
const s = await client.resolveSpace(space);
|
|
115
|
-
const content = readFileSync(file);
|
|
116
|
-
const filename = basename(file);
|
|
117
|
-
const targetDir = dir || "";
|
|
118
|
-
const result = await client.upload(s.id, targetDir, filename, content);
|
|
119
|
-
console.log(`Uploaded: ${result.path}`);
|
|
120
|
-
});
|
|
121
|
-
program2.command("write").description("Write content to file \u2014 docz write <space>:<path> <content>").argument("<target>", "space:dir/filename.md").argument("<content>", "File content (or - for stdin)").action(async (target, content) => {
|
|
122
|
-
const { space, path } = parseTarget([target]);
|
|
123
|
-
if (!path) {
|
|
124
|
-
console.error(
|
|
125
|
-
"Error: path is required. Usage: docz write <space>:<dir/filename> <content>"
|
|
126
|
-
);
|
|
127
|
-
process.exit(1);
|
|
128
|
-
}
|
|
129
|
-
const client = getClient();
|
|
130
|
-
const s = await client.resolveSpace(space);
|
|
131
|
-
const filename = basename(path);
|
|
132
|
-
const dir = dirname(path);
|
|
133
|
-
let body;
|
|
134
|
-
if (content === "-") {
|
|
135
|
-
const chunks = [];
|
|
136
|
-
for await (const chunk of process.stdin) {
|
|
137
|
-
chunks.push(chunk);
|
|
138
|
-
}
|
|
139
|
-
body = Buffer.concat(chunks).toString("utf-8");
|
|
140
|
-
} else {
|
|
141
|
-
body = content;
|
|
142
|
-
}
|
|
143
|
-
const result = await client.upload(
|
|
144
|
-
s.id,
|
|
145
|
-
dir === "." ? "" : dir,
|
|
146
|
-
filename,
|
|
147
|
-
body
|
|
148
|
-
);
|
|
149
|
-
console.log(`Written: ${result.path}`);
|
|
150
|
-
});
|
|
151
|
-
program2.command("mkdir").description("Create folder \u2014 docz mkdir <space>:<path>").argument("<target...>").action(async (args) => {
|
|
152
|
-
const { space, path } = parseTarget(args);
|
|
153
|
-
if (!path) {
|
|
154
|
-
console.error("Error: path is required.");
|
|
155
|
-
process.exit(1);
|
|
156
|
-
}
|
|
157
|
-
const client = getClient();
|
|
158
|
-
const s = await client.resolveSpace(space);
|
|
159
|
-
await client.mkdir(s.id, path);
|
|
160
|
-
console.log(`Created: ${path}`);
|
|
161
|
-
});
|
|
162
|
-
program2.command("rm").description("Delete file/folder \u2014 docz rm <space>:<path>").argument("<target...>").action(async (args) => {
|
|
163
|
-
const { space, path } = parseTarget(args);
|
|
164
|
-
if (!path) {
|
|
165
|
-
console.error("Error: path is required.");
|
|
166
|
-
process.exit(1);
|
|
167
|
-
}
|
|
168
|
-
const client = getClient();
|
|
169
|
-
const s = await client.resolveSpace(space);
|
|
170
|
-
await client.rm(s.id, path);
|
|
171
|
-
console.log(`Deleted: ${path} (recoverable from trash for 30 days)`);
|
|
172
|
-
});
|
|
173
|
-
program2.command("mv").description("Rename/move \u2014 docz mv <space>:<from> <to>").argument("<target>", "space:old-path").argument("<to>", "new-path").action(async (target, to) => {
|
|
174
|
-
const { space, path: from } = parseTarget([target]);
|
|
175
|
-
if (!from) {
|
|
176
|
-
console.error("Error: source path is required.");
|
|
177
|
-
process.exit(1);
|
|
178
|
-
}
|
|
179
|
-
const client = getClient();
|
|
180
|
-
const s = await client.resolveSpace(space);
|
|
181
|
-
await client.mv(s.id, from, to);
|
|
182
|
-
console.log(`Moved: ${from} \u2192 ${to}`);
|
|
183
|
-
});
|
|
184
|
-
program2.command("log").description("Show change history \u2014 docz log <space>[:<path>]").argument("<target...>").action(async (args) => {
|
|
185
|
-
const { space, path } = parseTarget(args);
|
|
186
|
-
const client = getClient();
|
|
187
|
-
const s = await client.resolveSpace(space);
|
|
188
|
-
const logs = await client.log(s.id, path || void 0);
|
|
189
|
-
if (logs.length === 0) {
|
|
190
|
-
console.log("No history.");
|
|
191
|
-
return;
|
|
192
|
-
}
|
|
193
|
-
for (const l of logs) {
|
|
194
|
-
console.log(`${l.hash.substring(0, 7)} ${l.date} ${l.message}`);
|
|
195
|
-
}
|
|
196
|
-
});
|
|
197
|
-
program2.command("trash").description("Show deleted files \u2014 docz trash <space>").argument("<space>").action(async (spaceName) => {
|
|
198
|
-
const client = getClient();
|
|
199
|
-
const s = await client.resolveSpace(spaceName);
|
|
200
|
-
const items = await client.trash(s.id);
|
|
201
|
-
if (items.length === 0) {
|
|
202
|
-
console.log("Trash is empty.");
|
|
203
|
-
return;
|
|
204
|
-
}
|
|
205
|
-
for (const t of items) {
|
|
206
|
-
console.log(
|
|
207
|
-
`${t.path} deleted ${t.deleted_at} ${t.commit.substring(0, 7)}`
|
|
208
|
-
);
|
|
209
|
-
}
|
|
210
|
-
});
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
// src/index.ts
|
|
214
8
|
var program = new Command();
|
|
215
|
-
program.name("docz").description("DocSync CLI \u2014 read and write company documents").version("0.
|
|
9
|
+
program.name("docz").description("DocSync CLI \u2014 read and write company documents").version("0.5.0");
|
|
216
10
|
registerCommands(program);
|
|
217
11
|
program.command("mcp").description("Start MCP stdio server for AI agent integration").action(async () => {
|
|
218
|
-
const { startMcpServer } = await import("./mcp-
|
|
12
|
+
const { startMcpServer } = await import("./mcp-26HFT6SQ.js");
|
|
219
13
|
await startMcpServer();
|
|
220
14
|
});
|
|
221
15
|
program.parse();
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/commands.ts"],"sourcesContent":["import { Command } from 'commander';\nimport { registerCommands } from './commands.js';\n\nconst program = new Command();\n\nprogram\n .name('docz')\n .description('DocSync CLI — read and write company documents')\n .version('0.1.1');\n\nregisterCommands(program);\n\nprogram\n .command('mcp')\n .description('Start MCP stdio server for AI agent integration')\n .action(async () => {\n const { startMcpServer } = await import('./mcp.js');\n await startMcpServer();\n });\n\nprogram.parse();\n","/**\n * CLI Commands\n */\n\nimport { readFileSync } from 'node:fs';\nimport { basename, dirname } from 'node:path';\nimport type { Command } from 'commander';\nimport { DocSyncClient } from './client.js';\nimport { getBaseUrl, getConfigPath, getToken, saveConfig } from './config.js';\n\n// ---------------------------------------------------------------------------\n// Helpers\n// ---------------------------------------------------------------------------\n\nfunction getClient(): DocSyncClient {\n const token = getToken();\n if (!token) {\n console.error(\n 'Error: No token configured.\\n' +\n 'Run `docz login` or set DOCSYNC_API_TOKEN environment variable.'\n );\n process.exit(1);\n }\n return new DocSyncClient(getBaseUrl(), token);\n}\n\n/** Parse \"space:path\" or \"space path\" format */\nfunction parseTarget(args: string[]): { space: string; path: string } {\n if (args.length === 0) {\n console.error(\n 'Error: space is required. Usage: docz <cmd> <space>[:<path>]'\n );\n process.exit(1);\n }\n const first = args[0];\n if (first.includes(':')) {\n const [space, ...rest] = first.split(':');\n return { space, path: rest.join(':') };\n }\n return { space: first, path: args.slice(1).join(' ') };\n}\n\nfunction formatSize(bytes: number): string {\n if (bytes < 1024) return `${bytes} B`;\n if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;\n return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;\n}\n\n// ---------------------------------------------------------------------------\n// Commands\n// ---------------------------------------------------------------------------\n\nexport function registerCommands(program: Command): void {\n // --- login ---\n program\n .command('login')\n .description('Configure DocSync credentials')\n .option('-u, --url <url>', 'DocSync server URL')\n .option('-t, --token <token>', 'API token')\n .action(async (opts) => {\n const url = opts.url ?? getBaseUrl();\n const token = opts.token;\n if (!token) {\n console.error(\n 'Error: --token is required.\\n' +\n 'Get one at: ' +\n url +\n ' → Settings → API Tokens'\n );\n process.exit(1);\n }\n // Verify token\n const client = new DocSyncClient(url, token);\n try {\n const user = await client.me();\n saveConfig(url, token);\n console.log(`Logged in as ${user.name} (${user.email})`);\n console.log(`Config saved to ${getConfigPath()}`);\n } catch (err) {\n console.error(\n `Error: ${err instanceof Error ? err.message : String(err)}`\n );\n process.exit(1);\n }\n });\n\n // --- whoami ---\n program\n .command('whoami')\n .description('Show current user')\n .action(async () => {\n const client = getClient();\n const user = await client.me();\n console.log(`${user.name} (${user.email})`);\n });\n\n // --- spaces ---\n program\n .command('spaces')\n .description('List all accessible spaces')\n .action(async () => {\n const client = getClient();\n const spaces = await client.listSpaces();\n for (const s of spaces) {\n const tag = s.is_private ? 'private' : 'team';\n console.log(`${s.name}\\t${tag}\\t${s.member_count} members\\t${s.id}`);\n }\n });\n\n // --- ls ---\n program\n .command('ls')\n .description('List files — docz ls <space>[:<path>]')\n .argument('<target...>')\n .action(async (args: string[]) => {\n const { space, path } = parseTarget(args);\n const client = getClient();\n const s = await client.resolveSpace(space);\n const entries = await client.ls(s.id, path);\n if (entries.length === 0) {\n console.log('(empty)');\n return;\n }\n for (const e of entries) {\n if (e.type === 'tree') {\n console.log(`${e.name}/`);\n } else {\n console.log(`${e.name}\\t${formatSize(e.size)}`);\n }\n }\n });\n\n // --- cat ---\n program\n .command('cat')\n .description('Read file content — docz cat <space>:<path>')\n .argument('<target...>')\n .action(async (args: string[]) => {\n const { space, path } = parseTarget(args);\n if (!path) {\n console.error(\n 'Error: file path is required. Usage: docz cat <space>:<path>'\n );\n process.exit(1);\n }\n const client = getClient();\n const s = await client.resolveSpace(space);\n const content = await client.cat(s.id, path);\n process.stdout.write(content);\n });\n\n // --- upload ---\n program\n .command('upload')\n .description('Upload file — docz upload <local-file> <space>[:<dir>]')\n .argument('<file>', 'Local file to upload')\n .argument('<target...>')\n .action(async (file: string, args: string[]) => {\n const { space, path: dir } = parseTarget(args);\n const client = getClient();\n const s = await client.resolveSpace(space);\n const content = readFileSync(file);\n const filename = basename(file);\n const targetDir = dir || '';\n const result = await client.upload(s.id, targetDir, filename, content);\n console.log(`Uploaded: ${result.path}`);\n });\n\n // --- write ---\n program\n .command('write')\n .description('Write content to file — docz write <space>:<path> <content>')\n .argument('<target>', 'space:dir/filename.md')\n .argument('<content>', 'File content (or - for stdin)')\n .action(async (target: string, content: string) => {\n const { space, path } = parseTarget([target]);\n if (!path) {\n console.error(\n 'Error: path is required. Usage: docz write <space>:<dir/filename> <content>'\n );\n process.exit(1);\n }\n const client = getClient();\n const s = await client.resolveSpace(space);\n const filename = basename(path);\n const dir = dirname(path);\n let body: string;\n if (content === '-') {\n // Read from stdin\n const chunks: Buffer[] = [];\n for await (const chunk of process.stdin) {\n chunks.push(chunk as Buffer);\n }\n body = Buffer.concat(chunks).toString('utf-8');\n } else {\n body = content;\n }\n const result = await client.upload(\n s.id,\n dir === '.' ? '' : dir,\n filename,\n body\n );\n console.log(`Written: ${result.path}`);\n });\n\n // --- mkdir ---\n program\n .command('mkdir')\n .description('Create folder — docz mkdir <space>:<path>')\n .argument('<target...>')\n .action(async (args: string[]) => {\n const { space, path } = parseTarget(args);\n if (!path) {\n console.error('Error: path is required.');\n process.exit(1);\n }\n const client = getClient();\n const s = await client.resolveSpace(space);\n await client.mkdir(s.id, path);\n console.log(`Created: ${path}`);\n });\n\n // --- rm ---\n program\n .command('rm')\n .description('Delete file/folder — docz rm <space>:<path>')\n .argument('<target...>')\n .action(async (args: string[]) => {\n const { space, path } = parseTarget(args);\n if (!path) {\n console.error('Error: path is required.');\n process.exit(1);\n }\n const client = getClient();\n const s = await client.resolveSpace(space);\n await client.rm(s.id, path);\n console.log(`Deleted: ${path} (recoverable from trash for 30 days)`);\n });\n\n // --- mv ---\n program\n .command('mv')\n .description('Rename/move — docz mv <space>:<from> <to>')\n .argument('<target>', 'space:old-path')\n .argument('<to>', 'new-path')\n .action(async (target: string, to: string) => {\n const { space, path: from } = parseTarget([target]);\n if (!from) {\n console.error('Error: source path is required.');\n process.exit(1);\n }\n const client = getClient();\n const s = await client.resolveSpace(space);\n await client.mv(s.id, from, to);\n console.log(`Moved: ${from} → ${to}`);\n });\n\n // --- log ---\n program\n .command('log')\n .description('Show change history — docz log <space>[:<path>]')\n .argument('<target...>')\n .action(async (args: string[]) => {\n const { space, path } = parseTarget(args);\n const client = getClient();\n const s = await client.resolveSpace(space);\n const logs = await client.log(s.id, path || undefined);\n if (logs.length === 0) {\n console.log('No history.');\n return;\n }\n for (const l of logs) {\n console.log(`${l.hash.substring(0, 7)} ${l.date} ${l.message}`);\n }\n });\n\n // --- trash ---\n program\n .command('trash')\n .description('Show deleted files — docz trash <space>')\n .argument('<space>')\n .action(async (spaceName: string) => {\n const client = getClient();\n const s = await client.resolveSpace(spaceName);\n const items = await client.trash(s.id);\n if (items.length === 0) {\n console.log('Trash is empty.');\n return;\n }\n for (const t of items) {\n console.log(\n `${t.path}\\tdeleted ${t.deleted_at}\\t${t.commit.substring(0, 7)}`\n );\n }\n });\n}\n"],"mappings":"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","names":["program"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["import { Command } from 'commander';\nimport { registerCommands } from './commands.js';\n\ndeclare const __VERSION__: string;\n\nconst program = new Command();\n\nprogram\n .name('docz')\n .description('DocSync CLI — read and write company documents')\n .version(__VERSION__);\n\nregisterCommands(program);\n\nprogram\n .command('mcp')\n .description('Start MCP stdio server for AI agent integration')\n .action(async () => {\n const { startMcpServer } = await import('./mcp.js');\n await startMcpServer();\n });\n\nprogram.parse();\n"],"mappings":";;;;;;AAAA,SAAS,eAAe;AAKxB,IAAM,UAAU,IAAI,QAAQ;AAE5B,QACG,KAAK,MAAM,EACX,YAAY,qDAAgD,EAC5D,QAAQ,OAAW;AAEtB,iBAAiB,OAAO;AAExB,QACG,QAAQ,KAAK,EACb,YAAY,iDAAiD,EAC7D,OAAO,YAAY;AAClB,QAAM,EAAE,eAAe,IAAI,MAAM,OAAO,mBAAU;AAClD,QAAM,eAAe;AACvB,CAAC;AAEH,QAAQ,MAAM;","names":[]}
|
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
import {
|
|
3
3
|
DocSyncClient,
|
|
4
4
|
getBaseUrl,
|
|
5
|
-
getToken
|
|
6
|
-
|
|
5
|
+
getToken,
|
|
6
|
+
parseExpires
|
|
7
|
+
} from "./chunk-EBJ32KUL.js";
|
|
7
8
|
|
|
8
9
|
// src/mcp.ts
|
|
9
10
|
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
@@ -160,6 +161,93 @@ async function startMcpServer() {
|
|
|
160
161
|
},
|
|
161
162
|
required: ["space"]
|
|
162
163
|
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: "docz_share_create",
|
|
167
|
+
description: "\u521B\u5EFA\u6587\u4EF6\u5206\u4EAB\u94FE\u63A5",
|
|
168
|
+
inputSchema: {
|
|
169
|
+
type: "object",
|
|
170
|
+
properties: {
|
|
171
|
+
space: { type: "string", description: "Space \u540D\u79F0\u6216 ID" },
|
|
172
|
+
path: { type: "string", description: "\u6587\u4EF6\u8DEF\u5F84" },
|
|
173
|
+
expires: { type: "string", description: "\u8FC7\u671F\u65F6\u95F4\uFF0C\u5982 7d, 24h" },
|
|
174
|
+
userIds: { type: "array", items: { type: "string" }, description: "\u53EF\u89C1\u7528\u6237 ID \u5217\u8868" },
|
|
175
|
+
groupIds: { type: "array", items: { type: "string" }, description: "\u53EF\u89C1\u7EC4 ID \u5217\u8868" }
|
|
176
|
+
},
|
|
177
|
+
required: ["space", "path"]
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
name: "docz_share_list",
|
|
182
|
+
description: "\u5217\u51FA\u7A7A\u95F4\u7684\u5206\u4EAB\u94FE\u63A5",
|
|
183
|
+
inputSchema: {
|
|
184
|
+
type: "object",
|
|
185
|
+
properties: {
|
|
186
|
+
space: { type: "string", description: "Space \u540D\u79F0\u6216 ID" },
|
|
187
|
+
filePath: { type: "string", description: "\u6309\u6587\u4EF6\u8DEF\u5F84\u8FC7\u6EE4" }
|
|
188
|
+
},
|
|
189
|
+
required: ["space"]
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
name: "docz_share_read",
|
|
194
|
+
description: "\u901A\u8FC7\u5206\u4EAB token \u8BFB\u53D6\u6587\u4EF6\u5185\u5BB9",
|
|
195
|
+
inputSchema: {
|
|
196
|
+
type: "object",
|
|
197
|
+
properties: {
|
|
198
|
+
token: { type: "string", description: "\u5206\u4EAB\u94FE\u63A5 token" }
|
|
199
|
+
},
|
|
200
|
+
required: ["token"]
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
name: "docz_share_info",
|
|
205
|
+
description: "\u67E5\u770B\u5206\u4EAB\u94FE\u63A5\u4FE1\u606F",
|
|
206
|
+
inputSchema: {
|
|
207
|
+
type: "object",
|
|
208
|
+
properties: {
|
|
209
|
+
token: { type: "string", description: "\u5206\u4EAB\u94FE\u63A5 token" }
|
|
210
|
+
},
|
|
211
|
+
required: ["token"]
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
name: "docz_share_delete",
|
|
216
|
+
description: "\u5220\u9664\u5206\u4EAB\u94FE\u63A5",
|
|
217
|
+
inputSchema: {
|
|
218
|
+
type: "object",
|
|
219
|
+
properties: {
|
|
220
|
+
space: { type: "string", description: "Space \u540D\u79F0\u6216 ID" },
|
|
221
|
+
linkId: { type: "string", description: "\u5206\u4EAB\u94FE\u63A5 ID" }
|
|
222
|
+
},
|
|
223
|
+
required: ["space", "linkId"]
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: "docz_shortlink",
|
|
228
|
+
description: "\u83B7\u53D6\u6587\u4EF6\u7684\u77ED\u94FE\u63A5 URL\uFF0C\u53EF\u76F4\u63A5\u5728\u6D4F\u89C8\u5668\u6253\u5F00",
|
|
229
|
+
inputSchema: {
|
|
230
|
+
type: "object",
|
|
231
|
+
properties: {
|
|
232
|
+
space: { type: "string", description: "Space \u540D\u79F0\u6216 ID" },
|
|
233
|
+
path: { type: "string", description: "\u6587\u4EF6\u8DEF\u5F84" }
|
|
234
|
+
},
|
|
235
|
+
required: ["space", "path"]
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
name: "docz_diff",
|
|
240
|
+
description: "\u67E5\u770B\u6587\u4EF6\u6216 Space \u7684\u53D8\u66F4 diff",
|
|
241
|
+
inputSchema: {
|
|
242
|
+
type: "object",
|
|
243
|
+
properties: {
|
|
244
|
+
space: { type: "string", description: "Space \u540D\u79F0\u6216 ID" },
|
|
245
|
+
path: { type: "string", description: "\u6587\u4EF6\u8DEF\u5F84\uFF08\u7A7A\u5219\u8FD4\u56DE\u53D8\u66F4\u6587\u4EF6\u5217\u8868\uFF09" },
|
|
246
|
+
to: { type: "string", description: "\u76EE\u6807 commit hash" },
|
|
247
|
+
from: { type: "string", description: "\u8D77\u59CB commit hash\uFF08\u9ED8\u8BA4 to^\uFF09" }
|
|
248
|
+
},
|
|
249
|
+
required: ["space", "to"]
|
|
250
|
+
}
|
|
163
251
|
}
|
|
164
252
|
]
|
|
165
253
|
}));
|
|
@@ -219,10 +307,67 @@ async function startMcpServer() {
|
|
|
219
307
|
);
|
|
220
308
|
if (logs.length === 0) return ok("\u6CA1\u6709\u53D8\u66F4\u5386\u53F2\u3002");
|
|
221
309
|
const lines = logs.map(
|
|
222
|
-
(l) => `${l.hash
|
|
310
|
+
(l) => `${l.hash} ${l.date} ${l.message}`
|
|
223
311
|
);
|
|
224
312
|
return ok(lines.join("\n"));
|
|
225
313
|
}
|
|
314
|
+
case "docz_share_create": {
|
|
315
|
+
const sharePath = String(args.path ?? "");
|
|
316
|
+
if (!sharePath) return fail("path is required");
|
|
317
|
+
const sid = await resolveSpaceId(client, String(args.space));
|
|
318
|
+
const opts = {};
|
|
319
|
+
if (args.expires) opts.expiresAt = parseExpires(String(args.expires));
|
|
320
|
+
if (args.userIds) opts.userIds = args.userIds;
|
|
321
|
+
if (args.groupIds) opts.groupIds = args.groupIds;
|
|
322
|
+
const link = await client.createShareLink(sid, sharePath, opts);
|
|
323
|
+
return ok(`\u5DF2\u521B\u5EFA\u5206\u4EAB\u94FE\u63A5:
|
|
324
|
+
token: ${link.token}
|
|
325
|
+
url: ${getBaseUrl()}/share/${link.token}
|
|
326
|
+
\u8FC7\u671F: ${link.expires_at ?? "\u6C38\u4E0D"}`);
|
|
327
|
+
}
|
|
328
|
+
case "docz_share_list": {
|
|
329
|
+
const sid = await resolveSpaceId(client, String(args.space));
|
|
330
|
+
const links = await client.listShareLinks(sid, args.filePath ? String(args.filePath) : void 0);
|
|
331
|
+
if (links.length === 0) return ok("\u6CA1\u6709\u5206\u4EAB\u94FE\u63A5\u3002");
|
|
332
|
+
const lines = links.map(
|
|
333
|
+
(l) => `${l.token} ${l.file_path} \u8FC7\u671F: ${l.expires_at ?? "\u6C38\u4E0D"} \u521B\u5EFA\u8005: ${l.created_by_name ?? l.created_by_email ?? l.created_by}`
|
|
334
|
+
);
|
|
335
|
+
return ok(lines.join("\n"));
|
|
336
|
+
}
|
|
337
|
+
case "docz_share_read": {
|
|
338
|
+
const content = await client.getSharedFile(String(args.token));
|
|
339
|
+
return ok(content);
|
|
340
|
+
}
|
|
341
|
+
case "docz_share_info": {
|
|
342
|
+
const info = await client.getSharedFileInfo(String(args.token));
|
|
343
|
+
return ok(`\u6587\u4EF6: ${info.file_path}
|
|
344
|
+
Space: ${info.space_name}
|
|
345
|
+
\u5206\u4EAB\u8005: ${info.created_by_name}
|
|
346
|
+
\u8FC7\u671F: ${info.expires_at ?? "\u6C38\u4E0D"}`);
|
|
347
|
+
}
|
|
348
|
+
case "docz_share_delete": {
|
|
349
|
+
const sid = await resolveSpaceId(client, String(args.space));
|
|
350
|
+
await client.deleteShareLink(sid, String(args.linkId));
|
|
351
|
+
return ok(`\u5DF2\u5220\u9664\u5206\u4EAB\u94FE\u63A5: ${args.linkId}`);
|
|
352
|
+
}
|
|
353
|
+
case "docz_shortlink": {
|
|
354
|
+
const sid = await resolveSpaceId(client, String(args.space));
|
|
355
|
+
const ref = await client.getFileRef(sid, String(args.path));
|
|
356
|
+
return ok(ref.url);
|
|
357
|
+
}
|
|
358
|
+
case "docz_diff": {
|
|
359
|
+
const sid = await resolveSpaceId(client, String(args.space));
|
|
360
|
+
const path = args.path ? String(args.path) : "";
|
|
361
|
+
const from = args.from ? String(args.from) : void 0;
|
|
362
|
+
if (path) {
|
|
363
|
+
const result2 = await client.diffFile(sid, path, String(args.to), from);
|
|
364
|
+
return ok(result2.diff || "\u6CA1\u6709\u53D8\u66F4\u3002");
|
|
365
|
+
}
|
|
366
|
+
const result = await client.diffSummary(sid, String(args.to), from);
|
|
367
|
+
if (result.files.length === 0) return ok("\u6CA1\u6709\u53D8\u66F4\u3002");
|
|
368
|
+
const lines = result.files.map((f) => `${f.status} ${f.path}`);
|
|
369
|
+
return ok(lines.join("\n"));
|
|
370
|
+
}
|
|
226
371
|
default:
|
|
227
372
|
return fail(`Unknown tool: ${request.params.name}`);
|
|
228
373
|
}
|
|
@@ -236,4 +381,4 @@ async function startMcpServer() {
|
|
|
236
381
|
export {
|
|
237
382
|
startMcpServer
|
|
238
383
|
};
|
|
239
|
-
//# sourceMappingURL=mcp-
|
|
384
|
+
//# sourceMappingURL=mcp-26HFT6SQ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/mcp.ts"],"sourcesContent":["/**\n * DocSync MCP Server (stdio transport)\n *\n * Usage:\n * docz mcp\n *\n * 环境变量:\n * DOCSYNC_API_TOKEN — 必须\n * DOCSYNC_BASE_URL — 可选,默认 https://docz.zhenguanyu.com\n */\n\nimport { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport {\n CallToolRequestSchema,\n ListToolsRequestSchema,\n} from '@modelcontextprotocol/sdk/types.js';\nimport { DocSyncClient } from './client.js';\nimport { parseExpires } from './commands.js';\nimport { getBaseUrl, getToken } from './config.js';\n\nfunction getClient(): DocSyncClient {\n const token = getToken();\n if (!token) {\n throw new Error(\n 'DOCSYNC_API_TOKEN not set. Run `docz login --token <token>` or set the env var.'\n );\n }\n return new DocSyncClient(getBaseUrl(), token);\n}\n\nasync function resolveSpaceId(\n client: DocSyncClient,\n nameOrId: string\n): Promise<string> {\n const space = await client.resolveSpace(nameOrId);\n return space.id;\n}\n\nfunction formatSize(bytes: number): string {\n if (bytes < 1024) return `${bytes} B`;\n if (bytes < 1024 * 1024) return `${(bytes / 1024).toFixed(1)} KB`;\n return `${(bytes / (1024 * 1024)).toFixed(1)} MB`;\n}\n\nfunction ok(text: string) {\n return { content: [{ type: 'text' as const, text }] };\n}\n\nfunction fail(err: unknown) {\n return {\n content: [\n {\n type: 'text' as const,\n text: `Error: ${err instanceof Error ? err.message : String(err)}`,\n },\n ],\n isError: true,\n };\n}\n\nexport async function startMcpServer(): Promise<void> {\n const server = new Server(\n { name: 'docz-mcp', version: '0.5.0' },\n { capabilities: { tools: {} } }\n );\n\n server.setRequestHandler(ListToolsRequestSchema, async () => ({\n tools: [\n {\n name: 'docz_list_spaces',\n description: '列出所有可访问的 DocSync Space(个人空间和团队空间)',\n inputSchema: { type: 'object' as const, properties: {} },\n },\n {\n name: 'docz_list_files',\n description: '列出 DocSync Space 中指定目录的文件和文件夹',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: {\n type: 'string',\n description: '目录路径,空字符串表示根目录',\n default: '',\n },\n },\n required: ['space'],\n },\n },\n {\n name: 'docz_read_file',\n description: '读取 DocSync 文件内容(Markdown、CSV、HTML 等文本文件)',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: { type: 'string', description: '文件路径' },\n },\n required: ['space', 'path'],\n },\n },\n {\n name: 'docz_upload_file',\n description: '上传/创建文件到 DocSync Space',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: {\n type: 'string',\n description: '目标目录路径(如 reports)',\n },\n filename: {\n type: 'string',\n description: '文件名(如 summary.md)',\n },\n content: { type: 'string', description: '文件内容' },\n },\n required: ['space', 'filename', 'content'],\n },\n },\n {\n name: 'docz_mkdir',\n description: '在 DocSync Space 中创建文件夹',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: {\n type: 'string',\n description: '要创建的文件夹路径',\n },\n },\n required: ['space', 'path'],\n },\n },\n {\n name: 'docz_delete',\n description: '删除文件或文件夹(进入回收站,30 天内可恢复)',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: { type: 'string', description: '要删除的路径' },\n },\n required: ['space', 'path'],\n },\n },\n {\n name: 'docz_file_history',\n description: '查看文件的变更历史(基于 Git 版本控制)',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: {\n type: 'string',\n description: 'Space 名称或 ID',\n },\n path: { type: 'string', description: '文件路径' },\n },\n required: ['space'],\n },\n },\n {\n name: 'docz_share_create',\n description: '创建文件分享链接',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: { type: 'string', description: 'Space 名称或 ID' },\n path: { type: 'string', description: '文件路径' },\n expires: { type: 'string', description: '过期时间,如 7d, 24h' },\n userIds: { type: 'array', items: { type: 'string' }, description: '可见用户 ID 列表' },\n groupIds: { type: 'array', items: { type: 'string' }, description: '可见组 ID 列表' },\n },\n required: ['space', 'path'],\n },\n },\n {\n name: 'docz_share_list',\n description: '列出空间的分享链接',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: { type: 'string', description: 'Space 名称或 ID' },\n filePath: { type: 'string', description: '按文件路径过滤' },\n },\n required: ['space'],\n },\n },\n {\n name: 'docz_share_read',\n description: '通过分享 token 读取文件内容',\n inputSchema: {\n type: 'object' as const,\n properties: {\n token: { type: 'string', description: '分享链接 token' },\n },\n required: ['token'],\n },\n },\n {\n name: 'docz_share_info',\n description: '查看分享链接信息',\n inputSchema: {\n type: 'object' as const,\n properties: {\n token: { type: 'string', description: '分享链接 token' },\n },\n required: ['token'],\n },\n },\n {\n name: 'docz_share_delete',\n description: '删除分享链接',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: { type: 'string', description: 'Space 名称或 ID' },\n linkId: { type: 'string', description: '分享链接 ID' },\n },\n required: ['space', 'linkId'],\n },\n },\n {\n name: 'docz_shortlink',\n description: '获取文件的短链接 URL,可直接在浏览器打开',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: { type: 'string', description: 'Space 名称或 ID' },\n path: { type: 'string', description: '文件路径' },\n },\n required: ['space', 'path'],\n },\n },\n {\n name: 'docz_diff',\n description: '查看文件或 Space 的变更 diff',\n inputSchema: {\n type: 'object' as const,\n properties: {\n space: { type: 'string', description: 'Space 名称或 ID' },\n path: { type: 'string', description: '文件路径(空则返回变更文件列表)' },\n to: { type: 'string', description: '目标 commit hash' },\n from: { type: 'string', description: '起始 commit hash(默认 to^)' },\n },\n required: ['space', 'to'],\n },\n },\n ],\n }));\n\n server.setRequestHandler(CallToolRequestSchema, async (request) => {\n const args = (request.params.arguments ?? {}) as Record<string, unknown>;\n\n try {\n const client = getClient();\n\n switch (request.params.name) {\n case 'docz_list_spaces': {\n const spaces = await client.listSpaces();\n const lines = spaces.map(\n (s) =>\n `${s.name} (${s.is_private ? '私有' : '团队'}, ${s.member_count} 人) id=${s.id}`\n );\n return ok(lines.join('\\n'));\n }\n\n case 'docz_list_files': {\n const sid = await resolveSpaceId(client, String(args.space));\n const entries = await client.ls(sid, String(args.path ?? ''));\n if (entries.length === 0) return ok('(空目录)');\n const lines = entries.map((e) => {\n const icon = e.type === 'tree' ? '📁' : '📄';\n const size = e.type === 'blob' ? ` (${formatSize(e.size)})` : '';\n return `${icon} ${e.name}${size}`;\n });\n return ok(lines.join('\\n'));\n }\n\n case 'docz_read_file': {\n const sid = await resolveSpaceId(client, String(args.space));\n const content = await client.cat(sid, String(args.path));\n return ok(content);\n }\n\n case 'docz_upload_file': {\n const sid = await resolveSpaceId(client, String(args.space));\n const result = await client.upload(\n sid,\n String(args.path ?? ''),\n String(args.filename),\n String(args.content)\n );\n return ok(`已上传: ${result.path}`);\n }\n\n case 'docz_mkdir': {\n const sid = await resolveSpaceId(client, String(args.space));\n await client.mkdir(sid, String(args.path));\n return ok(`已创建: ${args.path}`);\n }\n\n case 'docz_delete': {\n const sid = await resolveSpaceId(client, String(args.space));\n await client.rm(sid, String(args.path));\n return ok(`已删除: ${args.path}(30 天内可从回收站恢复)`);\n }\n\n case 'docz_file_history': {\n const sid = await resolveSpaceId(client, String(args.space));\n const logs = await client.log(\n sid,\n args.path ? String(args.path) : undefined\n );\n if (logs.length === 0) return ok('没有变更历史。');\n const lines = logs.map(\n (l) => `${l.hash} ${l.date} ${l.message}`\n );\n return ok(lines.join('\\n'));\n }\n\n case 'docz_share_create': {\n const sharePath = String(args.path ?? '');\n if (!sharePath) return fail('path is required');\n const sid = await resolveSpaceId(client, String(args.space));\n const opts: { expiresAt?: string; userIds?: string[]; groupIds?: string[] } = {};\n if (args.expires) opts.expiresAt = parseExpires(String(args.expires));\n if (args.userIds) opts.userIds = args.userIds as string[];\n if (args.groupIds) opts.groupIds = args.groupIds as string[];\n const link = await client.createShareLink(sid, sharePath, opts);\n return ok(`已创建分享链接:\\ntoken: ${link.token}\\nurl: ${getBaseUrl()}/share/${link.token}\\n过期: ${link.expires_at ?? '永不'}`);\n }\n\n case 'docz_share_list': {\n const sid = await resolveSpaceId(client, String(args.space));\n const links = await client.listShareLinks(sid, args.filePath ? String(args.filePath) : undefined);\n if (links.length === 0) return ok('没有分享链接。');\n const lines = links.map(\n (l) => `${l.token} ${l.file_path} 过期: ${l.expires_at ?? '永不'} 创建者: ${l.created_by_name ?? l.created_by_email ?? l.created_by}`\n );\n return ok(lines.join('\\n'));\n }\n\n case 'docz_share_read': {\n const content = await client.getSharedFile(String(args.token));\n return ok(content);\n }\n\n case 'docz_share_info': {\n const info = await client.getSharedFileInfo(String(args.token));\n return ok(`文件: ${info.file_path}\\nSpace: ${info.space_name}\\n分享者: ${info.created_by_name}\\n过期: ${info.expires_at ?? '永不'}`);\n }\n\n case 'docz_share_delete': {\n const sid = await resolveSpaceId(client, String(args.space));\n await client.deleteShareLink(sid, String(args.linkId));\n return ok(`已删除分享链接: ${args.linkId}`);\n }\n\n case 'docz_shortlink': {\n const sid = await resolveSpaceId(client, String(args.space));\n const ref = await client.getFileRef(sid, String(args.path));\n return ok(ref.url);\n }\n\n case 'docz_diff': {\n const sid = await resolveSpaceId(client, String(args.space));\n const path = args.path ? String(args.path) : '';\n const from = args.from ? String(args.from) : undefined;\n if (path) {\n const result = await client.diffFile(sid, path, String(args.to), from);\n return ok(result.diff || '没有变更。');\n }\n const result = await client.diffSummary(sid, String(args.to), from);\n if (result.files.length === 0) return ok('没有变更。');\n const lines = result.files.map((f) => `${f.status} ${f.path}`);\n return ok(lines.join('\\n'));\n }\n\n default:\n return fail(`Unknown tool: ${request.params.name}`);\n }\n } catch (err) {\n return fail(err);\n }\n });\n\n const transport = new StdioServerTransport();\n await server.connect(transport);\n}\n"],"mappings":";;;;;;;;;AAWA,SAAS,cAAc;AACvB,SAAS,4BAA4B;AACrC;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAKP,SAAS,YAA2B;AAClC,QAAM,QAAQ,SAAS;AACvB,MAAI,CAAC,OAAO;AACV,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AACA,SAAO,IAAI,cAAc,WAAW,GAAG,KAAK;AAC9C;AAEA,eAAe,eACb,QACA,UACiB;AACjB,QAAM,QAAQ,MAAM,OAAO,aAAa,QAAQ;AAChD,SAAO,MAAM;AACf;AAEA,SAAS,WAAW,OAAuB;AACzC,MAAI,QAAQ,KAAM,QAAO,GAAG,KAAK;AACjC,MAAI,QAAQ,OAAO,KAAM,QAAO,IAAI,QAAQ,MAAM,QAAQ,CAAC,CAAC;AAC5D,SAAO,IAAI,SAAS,OAAO,OAAO,QAAQ,CAAC,CAAC;AAC9C;AAEA,SAAS,GAAG,MAAc;AACxB,SAAO,EAAE,SAAS,CAAC,EAAE,MAAM,QAAiB,KAAK,CAAC,EAAE;AACtD;AAEA,SAAS,KAAK,KAAc;AAC1B,SAAO;AAAA,IACL,SAAS;AAAA,MACP;AAAA,QACE,MAAM;AAAA,QACN,MAAM,UAAU,eAAe,QAAQ,IAAI,UAAU,OAAO,GAAG,CAAC;AAAA,MAClE;AAAA,IACF;AAAA,IACA,SAAS;AAAA,EACX;AACF;AAEA,eAAsB,iBAAgC;AACpD,QAAM,SAAS,IAAI;AAAA,IACjB,EAAE,MAAM,YAAY,SAAS,QAAQ;AAAA,IACrC,EAAE,cAAc,EAAE,OAAO,CAAC,EAAE,EAAE;AAAA,EAChC;AAEA,SAAO,kBAAkB,wBAAwB,aAAa;AAAA,IAC5D,OAAO;AAAA,MACL;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa,EAAE,MAAM,UAAmB,YAAY,CAAC,EAAE;AAAA,MACzD;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM;AAAA,cACJ,MAAM;AAAA,cACN,aAAa;AAAA,cACb,SAAS;AAAA,YACX;AAAA,UACF;AAAA,UACA,UAAU,CAAC,OAAO;AAAA,QACpB;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM,EAAE,MAAM,UAAU,aAAa,2BAAO;AAAA,UAC9C;AAAA,UACA,UAAU,CAAC,SAAS,MAAM;AAAA,QAC5B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM;AAAA,cACJ,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,UAAU;AAAA,cACR,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,SAAS,EAAE,MAAM,UAAU,aAAa,2BAAO;AAAA,UACjD;AAAA,UACA,UAAU,CAAC,SAAS,YAAY,SAAS;AAAA,QAC3C;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM;AAAA,cACJ,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,UACF;AAAA,UACA,UAAU,CAAC,SAAS,MAAM;AAAA,QAC5B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM,EAAE,MAAM,UAAU,aAAa,uCAAS;AAAA,UAChD;AAAA,UACA,UAAU,CAAC,SAAS,MAAM;AAAA,QAC5B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO;AAAA,cACL,MAAM;AAAA,cACN,aAAa;AAAA,YACf;AAAA,YACA,MAAM,EAAE,MAAM,UAAU,aAAa,2BAAO;AAAA,UAC9C;AAAA,UACA,UAAU,CAAC,OAAO;AAAA,QACpB;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,8BAAe;AAAA,YACrD,MAAM,EAAE,MAAM,UAAU,aAAa,2BAAO;AAAA,YAC5C,SAAS,EAAE,MAAM,UAAU,aAAa,+CAAiB;AAAA,YACzD,SAAS,EAAE,MAAM,SAAS,OAAO,EAAE,MAAM,SAAS,GAAG,aAAa,2CAAa;AAAA,YAC/E,UAAU,EAAE,MAAM,SAAS,OAAO,EAAE,MAAM,SAAS,GAAG,aAAa,qCAAY;AAAA,UACjF;AAAA,UACA,UAAU,CAAC,SAAS,MAAM;AAAA,QAC5B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,8BAAe;AAAA,YACrD,UAAU,EAAE,MAAM,UAAU,aAAa,6CAAU;AAAA,UACrD;AAAA,UACA,UAAU,CAAC,OAAO;AAAA,QACpB;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,iCAAa;AAAA,UACrD;AAAA,UACA,UAAU,CAAC,OAAO;AAAA,QACpB;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,iCAAa;AAAA,UACrD;AAAA,UACA,UAAU,CAAC,OAAO;AAAA,QACpB;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,8BAAe;AAAA,YACrD,QAAQ,EAAE,MAAM,UAAU,aAAa,8BAAU;AAAA,UACnD;AAAA,UACA,UAAU,CAAC,SAAS,QAAQ;AAAA,QAC9B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,8BAAe;AAAA,YACrD,MAAM,EAAE,MAAM,UAAU,aAAa,2BAAO;AAAA,UAC9C;AAAA,UACA,UAAU,CAAC,SAAS,MAAM;AAAA,QAC5B;AAAA,MACF;AAAA,MACA;AAAA,QACE,MAAM;AAAA,QACN,aAAa;AAAA,QACb,aAAa;AAAA,UACX,MAAM;AAAA,UACN,YAAY;AAAA,YACV,OAAO,EAAE,MAAM,UAAU,aAAa,8BAAe;AAAA,YACrD,MAAM,EAAE,MAAM,UAAU,aAAa,mGAAmB;AAAA,YACxD,IAAI,EAAE,MAAM,UAAU,aAAa,2BAAiB;AAAA,YACpD,MAAM,EAAE,MAAM,UAAU,aAAa,uDAAyB;AAAA,UAChE;AAAA,UACA,UAAU,CAAC,SAAS,IAAI;AAAA,QAC1B;AAAA,MACF;AAAA,IACF;AAAA,EACF,EAAE;AAEF,SAAO,kBAAkB,uBAAuB,OAAO,YAAY;AACjE,UAAM,OAAQ,QAAQ,OAAO,aAAa,CAAC;AAE3C,QAAI;AACF,YAAM,SAAS,UAAU;AAEzB,cAAQ,QAAQ,OAAO,MAAM;AAAA,QAC3B,KAAK,oBAAoB;AACvB,gBAAM,SAAS,MAAM,OAAO,WAAW;AACvC,gBAAM,QAAQ,OAAO;AAAA,YACnB,CAAC,MACC,GAAG,EAAE,IAAI,KAAK,EAAE,aAAa,iBAAO,cAAI,KAAK,EAAE,YAAY,eAAU,EAAE,EAAE;AAAA,UAC7E;AACA,iBAAO,GAAG,MAAM,KAAK,IAAI,CAAC;AAAA,QAC5B;AAAA,QAEA,KAAK,mBAAmB;AACtB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,UAAU,MAAM,OAAO,GAAG,KAAK,OAAO,KAAK,QAAQ,EAAE,CAAC;AAC5D,cAAI,QAAQ,WAAW,EAAG,QAAO,GAAG,gCAAO;AAC3C,gBAAM,QAAQ,QAAQ,IAAI,CAAC,MAAM;AAC/B,kBAAM,OAAO,EAAE,SAAS,SAAS,cAAO;AACxC,kBAAM,OAAO,EAAE,SAAS,SAAS,KAAK,WAAW,EAAE,IAAI,CAAC,MAAM;AAC9D,mBAAO,GAAG,IAAI,IAAI,EAAE,IAAI,GAAG,IAAI;AAAA,UACjC,CAAC;AACD,iBAAO,GAAG,MAAM,KAAK,IAAI,CAAC;AAAA,QAC5B;AAAA,QAEA,KAAK,kBAAkB;AACrB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,UAAU,MAAM,OAAO,IAAI,KAAK,OAAO,KAAK,IAAI,CAAC;AACvD,iBAAO,GAAG,OAAO;AAAA,QACnB;AAAA,QAEA,KAAK,oBAAoB;AACvB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,SAAS,MAAM,OAAO;AAAA,YAC1B;AAAA,YACA,OAAO,KAAK,QAAQ,EAAE;AAAA,YACtB,OAAO,KAAK,QAAQ;AAAA,YACpB,OAAO,KAAK,OAAO;AAAA,UACrB;AACA,iBAAO,GAAG,uBAAQ,OAAO,IAAI,EAAE;AAAA,QACjC;AAAA,QAEA,KAAK,cAAc;AACjB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAO,MAAM,KAAK,OAAO,KAAK,IAAI,CAAC;AACzC,iBAAO,GAAG,uBAAQ,KAAK,IAAI,EAAE;AAAA,QAC/B;AAAA,QAEA,KAAK,eAAe;AAClB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAO,GAAG,KAAK,OAAO,KAAK,IAAI,CAAC;AACtC,iBAAO,GAAG,uBAAQ,KAAK,IAAI,uEAAgB;AAAA,QAC7C;AAAA,QAEA,KAAK,qBAAqB;AACxB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAO,MAAM,OAAO;AAAA,YACxB;AAAA,YACA,KAAK,OAAO,OAAO,KAAK,IAAI,IAAI;AAAA,UAClC;AACA,cAAI,KAAK,WAAW,EAAG,QAAO,GAAG,4CAAS;AAC1C,gBAAM,QAAQ,KAAK;AAAA,YACjB,CAAC,MAAM,GAAG,EAAE,IAAI,KAAK,EAAE,IAAI,KAAK,EAAE,OAAO;AAAA,UAC3C;AACA,iBAAO,GAAG,MAAM,KAAK,IAAI,CAAC;AAAA,QAC5B;AAAA,QAEA,KAAK,qBAAqB;AACxB,gBAAM,YAAY,OAAO,KAAK,QAAQ,EAAE;AACxC,cAAI,CAAC,UAAW,QAAO,KAAK,kBAAkB;AAC9C,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAwE,CAAC;AAC/E,cAAI,KAAK,QAAS,MAAK,YAAY,aAAa,OAAO,KAAK,OAAO,CAAC;AACpE,cAAI,KAAK,QAAS,MAAK,UAAU,KAAK;AACtC,cAAI,KAAK,SAAU,MAAK,WAAW,KAAK;AACxC,gBAAM,OAAO,MAAM,OAAO,gBAAgB,KAAK,WAAW,IAAI;AAC9D,iBAAO,GAAG;AAAA,SAAoB,KAAK,KAAK;AAAA,OAAU,WAAW,CAAC,UAAU,KAAK,KAAK;AAAA,gBAAS,KAAK,cAAc,cAAI,EAAE;AAAA,QACtH;AAAA,QAEA,KAAK,mBAAmB;AACtB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,QAAQ,MAAM,OAAO,eAAe,KAAK,KAAK,WAAW,OAAO,KAAK,QAAQ,IAAI,MAAS;AAChG,cAAI,MAAM,WAAW,EAAG,QAAO,GAAG,4CAAS;AAC3C,gBAAM,QAAQ,MAAM;AAAA,YAClB,CAAC,MAAM,GAAG,EAAE,KAAK,KAAK,EAAE,SAAS,mBAAS,EAAE,cAAc,cAAI,yBAAU,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,UAAU;AAAA,UACjI;AACA,iBAAO,GAAG,MAAM,KAAK,IAAI,CAAC;AAAA,QAC5B;AAAA,QAEA,KAAK,mBAAmB;AACtB,gBAAM,UAAU,MAAM,OAAO,cAAc,OAAO,KAAK,KAAK,CAAC;AAC7D,iBAAO,GAAG,OAAO;AAAA,QACnB;AAAA,QAEA,KAAK,mBAAmB;AACtB,gBAAM,OAAO,MAAM,OAAO,kBAAkB,OAAO,KAAK,KAAK,CAAC;AAC9D,iBAAO,GAAG,iBAAO,KAAK,SAAS;AAAA,SAAY,KAAK,UAAU;AAAA,sBAAU,KAAK,eAAe;AAAA,gBAAS,KAAK,cAAc,cAAI,EAAE;AAAA,QAC5H;AAAA,QAEA,KAAK,qBAAqB;AACxB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAO,gBAAgB,KAAK,OAAO,KAAK,MAAM,CAAC;AACrD,iBAAO,GAAG,+CAAY,KAAK,MAAM,EAAE;AAAA,QACrC;AAAA,QAEA,KAAK,kBAAkB;AACrB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,MAAM,MAAM,OAAO,WAAW,KAAK,OAAO,KAAK,IAAI,CAAC;AAC1D,iBAAO,GAAG,IAAI,GAAG;AAAA,QACnB;AAAA,QAEA,KAAK,aAAa;AAChB,gBAAM,MAAM,MAAM,eAAe,QAAQ,OAAO,KAAK,KAAK,CAAC;AAC3D,gBAAM,OAAO,KAAK,OAAO,OAAO,KAAK,IAAI,IAAI;AAC7C,gBAAM,OAAO,KAAK,OAAO,OAAO,KAAK,IAAI,IAAI;AAC7C,cAAI,MAAM;AACR,kBAAMA,UAAS,MAAM,OAAO,SAAS,KAAK,MAAM,OAAO,KAAK,EAAE,GAAG,IAAI;AACrE,mBAAO,GAAGA,QAAO,QAAQ,gCAAO;AAAA,UAClC;AACA,gBAAM,SAAS,MAAM,OAAO,YAAY,KAAK,OAAO,KAAK,EAAE,GAAG,IAAI;AAClE,cAAI,OAAO,MAAM,WAAW,EAAG,QAAO,GAAG,gCAAO;AAChD,gBAAM,QAAQ,OAAO,MAAM,IAAI,CAAC,MAAM,GAAG,EAAE,MAAM,KAAK,EAAE,IAAI,EAAE;AAC9D,iBAAO,GAAG,MAAM,KAAK,IAAI,CAAC;AAAA,QAC5B;AAAA,QAEA;AACE,iBAAO,KAAK,iBAAiB,QAAQ,OAAO,IAAI,EAAE;AAAA,MACtD;AAAA,IACF,SAAS,KAAK;AACZ,aAAO,KAAK,GAAG;AAAA,IACjB;AAAA,EACF,CAAC;AAED,QAAM,YAAY,IAAI,qBAAqB;AAC3C,QAAM,OAAO,QAAQ,SAAS;AAChC;","names":["result"]}
|
package/package.json
CHANGED
package/dist/chunk-N4DS7U4I.js
DELETED
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
// src/client.ts
|
|
4
|
-
var DocSyncClient = class {
|
|
5
|
-
constructor(baseUrl, token) {
|
|
6
|
-
this.baseUrl = baseUrl;
|
|
7
|
-
this.token = token;
|
|
8
|
-
this.baseUrl = baseUrl.replace(/\/$/, "");
|
|
9
|
-
}
|
|
10
|
-
async request(path, init) {
|
|
11
|
-
const res = await fetch(`${this.baseUrl}${path}`, {
|
|
12
|
-
...init,
|
|
13
|
-
headers: {
|
|
14
|
-
Authorization: `Bearer ${this.token}`,
|
|
15
|
-
...init?.headers
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
if (!res.ok) {
|
|
19
|
-
const body = await res.text().catch(() => "");
|
|
20
|
-
throw new Error(`${res.status} ${res.statusText}: ${body}`.trim());
|
|
21
|
-
}
|
|
22
|
-
const ct = res.headers.get("content-type") ?? "";
|
|
23
|
-
if (ct.includes("application/json")) return res.json();
|
|
24
|
-
return res.text();
|
|
25
|
-
}
|
|
26
|
-
// --- Auth ---
|
|
27
|
-
async me() {
|
|
28
|
-
return this.request("/api/auth/me");
|
|
29
|
-
}
|
|
30
|
-
// --- Spaces ---
|
|
31
|
-
async listSpaces() {
|
|
32
|
-
return this.request("/api/spaces");
|
|
33
|
-
}
|
|
34
|
-
async resolveSpace(nameOrId) {
|
|
35
|
-
const spaces = await this.listSpaces();
|
|
36
|
-
const s = spaces.find(
|
|
37
|
-
(s2) => s2.id === nameOrId || s2.name === nameOrId || s2.name.toLowerCase() === nameOrId.toLowerCase()
|
|
38
|
-
);
|
|
39
|
-
if (!s) {
|
|
40
|
-
const available = spaces.map((s2) => s2.name).join(", ");
|
|
41
|
-
throw new Error(`Space "${nameOrId}" not found. Available: ${available}`);
|
|
42
|
-
}
|
|
43
|
-
return s;
|
|
44
|
-
}
|
|
45
|
-
// --- Tree ---
|
|
46
|
-
async ls(spaceId, path = "") {
|
|
47
|
-
return this.request(
|
|
48
|
-
`/api/spaces/${spaceId}/tree?path=${encodeURIComponent(path)}`
|
|
49
|
-
);
|
|
50
|
-
}
|
|
51
|
-
// --- Blob ---
|
|
52
|
-
async cat(spaceId, filepath) {
|
|
53
|
-
return this.request(
|
|
54
|
-
`/api/spaces/${spaceId}/blob/${encodeURIComponent(filepath)}`
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
|
-
// --- Write ---
|
|
58
|
-
async upload(spaceId, dir, filename, content) {
|
|
59
|
-
const blob = typeof content === "string" ? new Blob([content], { type: "application/octet-stream" }) : new Blob([content], { type: "application/octet-stream" });
|
|
60
|
-
const form = new FormData();
|
|
61
|
-
form.append("file", blob, filename);
|
|
62
|
-
form.append("path", dir);
|
|
63
|
-
return this.request(`/api/spaces/${spaceId}/files/upload`, {
|
|
64
|
-
method: "POST",
|
|
65
|
-
body: form
|
|
66
|
-
});
|
|
67
|
-
}
|
|
68
|
-
async mkdir(spaceId, path) {
|
|
69
|
-
await this.request(`/api/spaces/${spaceId}/files/mkdir`, {
|
|
70
|
-
method: "POST",
|
|
71
|
-
headers: { "Content-Type": "application/json" },
|
|
72
|
-
body: JSON.stringify({ path })
|
|
73
|
-
});
|
|
74
|
-
}
|
|
75
|
-
async rm(spaceId, path) {
|
|
76
|
-
await this.request(`/api/spaces/${spaceId}/files/delete`, {
|
|
77
|
-
method: "POST",
|
|
78
|
-
headers: { "Content-Type": "application/json" },
|
|
79
|
-
body: JSON.stringify({ path })
|
|
80
|
-
});
|
|
81
|
-
}
|
|
82
|
-
async mv(spaceId, from, to) {
|
|
83
|
-
await this.request(`/api/spaces/${spaceId}/files/rename`, {
|
|
84
|
-
method: "POST",
|
|
85
|
-
headers: { "Content-Type": "application/json" },
|
|
86
|
-
body: JSON.stringify({ old_path: from, new_path: to })
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
// --- History ---
|
|
90
|
-
async log(spaceId, filepath) {
|
|
91
|
-
const path = filepath ? `/api/spaces/${spaceId}/log/${encodeURIComponent(filepath)}` : `/api/spaces/${spaceId}/log/`;
|
|
92
|
-
return this.request(path);
|
|
93
|
-
}
|
|
94
|
-
// --- Trash ---
|
|
95
|
-
async trash(spaceId) {
|
|
96
|
-
return this.request(`/api/spaces/${spaceId}/trash`);
|
|
97
|
-
}
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
// src/config.ts
|
|
101
|
-
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
|
102
|
-
import { homedir } from "os";
|
|
103
|
-
import { join } from "path";
|
|
104
|
-
var CONFIG_DIR = join(homedir(), ".docz");
|
|
105
|
-
var CONFIG_FILE = join(CONFIG_DIR, "config.json");
|
|
106
|
-
function readConfig() {
|
|
107
|
-
if (!existsSync(CONFIG_FILE)) return {};
|
|
108
|
-
try {
|
|
109
|
-
return JSON.parse(readFileSync(CONFIG_FILE, "utf-8"));
|
|
110
|
-
} catch {
|
|
111
|
-
return {};
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
function writeConfig(config) {
|
|
115
|
-
mkdirSync(CONFIG_DIR, { recursive: true });
|
|
116
|
-
writeFileSync(CONFIG_FILE, JSON.stringify(config, null, 2) + "\n");
|
|
117
|
-
}
|
|
118
|
-
function getBaseUrl() {
|
|
119
|
-
return process.env.DOCSYNC_BASE_URL ?? readConfig().base_url ?? "https://docz.zhenguanyu.com";
|
|
120
|
-
}
|
|
121
|
-
function getToken() {
|
|
122
|
-
return process.env.DOCSYNC_API_TOKEN ?? readConfig().token;
|
|
123
|
-
}
|
|
124
|
-
function saveConfig(baseUrl, token) {
|
|
125
|
-
writeConfig({ base_url: baseUrl, token });
|
|
126
|
-
}
|
|
127
|
-
function getConfigPath() {
|
|
128
|
-
return CONFIG_FILE;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
export {
|
|
132
|
-
DocSyncClient,
|
|
133
|
-
getBaseUrl,
|
|
134
|
-
getToken,
|
|
135
|
-
saveConfig,
|
|
136
|
-
getConfigPath
|
|
137
|
-
};
|
|
138
|
-
//# sourceMappingURL=chunk-N4DS7U4I.js.map
|