@teamclaw/feishu-agent 1.0.6 → 1.0.7
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/cli.js +3 -3
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2770,9 +2770,9 @@ FEISHU_APP_SECRET=${appSecret}
|
|
|
2770
2770
|
// src/cli/commands/auth.ts
|
|
2771
2771
|
import { parseArgs } from "node:util";
|
|
2772
2772
|
import { createServer as createServer2 } from "node:http";
|
|
2773
|
-
async function authCommand(
|
|
2773
|
+
async function authCommand() {
|
|
2774
2774
|
const { values } = parseArgs({
|
|
2775
|
-
args,
|
|
2775
|
+
args: process.argv.slice(3),
|
|
2776
2776
|
strict: false,
|
|
2777
2777
|
options: {
|
|
2778
2778
|
port: { type: "string", default: "3000" }
|
|
@@ -3757,7 +3757,7 @@ async function handleSearch(config, query) {
|
|
|
3757
3757
|
// package.json
|
|
3758
3758
|
var package_default = {
|
|
3759
3759
|
name: "@teamclaw/feishu-agent",
|
|
3760
|
-
version: "1.0.
|
|
3760
|
+
version: "1.0.7",
|
|
3761
3761
|
description: "Feishu Agent CLI for AI assistants",
|
|
3762
3762
|
type: "module",
|
|
3763
3763
|
private: false,
|