@larksuiteoapi/lark-mcp
Version:
Feishu/Lark OpenAPI MCP
53 lines (52 loc) • 1.54 kB
TypeScript
import { z } from 'zod';
export type momentsV1ToolName = 'moments.v1.post.get';
export declare const momentsV1PostGet: {
project: string;
name: string;
sdkName: string;
path: string;
httpMethod: string;
description: string;
accessTokens: string[];
schema: {
params: z.ZodObject<{
user_id_type: z.ZodOptional<z.ZodEnum<["open_id", "union_id", "user_id"]>>;
}, "strip", z.ZodTypeAny, {
user_id_type?: "user_id" | "union_id" | "open_id" | undefined;
}, {
user_id_type?: "user_id" | "union_id" | "open_id" | undefined;
}>;
path: z.ZodObject<{
post_id: z.ZodString;
}, "strip", z.ZodTypeAny, {
post_id: string;
}, {
post_id: string;
}>;
};
};
export declare const momentsV1Tools: {
project: string;
name: string;
sdkName: string;
path: string;
httpMethod: string;
description: string;
accessTokens: string[];
schema: {
params: z.ZodObject<{
user_id_type: z.ZodOptional<z.ZodEnum<["open_id", "union_id", "user_id"]>>;
}, "strip", z.ZodTypeAny, {
user_id_type?: "user_id" | "union_id" | "open_id" | undefined;
}, {
user_id_type?: "user_id" | "union_id" | "open_id" | undefined;
}>;
path: z.ZodObject<{
post_id: z.ZodString;
}, "strip", z.ZodTypeAny, {
post_id: string;
}, {
post_id: string;
}>;
};
}[];