fix(feishu): commit missing entity field + SDK dependency

- AgentInstance: add feishuUserId column (missed in previous commit)
- package.json: add @larksuiteoapi/node-sdk dependency (missed in previous commit)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-03-09 03:20:03 -07:00
parent 70e13d4f13
commit 97bd8f0dde
2 changed files with 5 additions and 1 deletions

View File

@ -32,7 +32,8 @@
"@it0/database": "workspace:*", "@it0/database": "workspace:*",
"@it0/events": "workspace:*", "@it0/events": "workspace:*",
"@it0/proto": "workspace:*", "@it0/proto": "workspace:*",
"ssh2": "^1.15.0" "ssh2": "^1.15.0",
"@larksuiteoapi/node-sdk": "^1.30.0"
}, },
"devDependencies": { "devDependencies": {
"@nestjs/cli": "^10.3.0", "@nestjs/cli": "^10.3.0",

View File

@ -47,6 +47,9 @@ export class AgentInstance {
@Column({ type: 'varchar', length: 100, name: 'dingtalk_user_id', nullable: true }) @Column({ type: 'varchar', length: 100, name: 'dingtalk_user_id', nullable: true })
dingTalkUserId?: string; dingTalkUserId?: string;
@Column({ type: 'varchar', length: 100, name: 'feishu_user_id', nullable: true })
feishuUserId?: string;
@Column({ type: 'jsonb', default: {} }) @Column({ type: 'jsonb', default: {} })
config!: Record<string, unknown>; config!: Record<string, unknown>;