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:
parent
70e13d4f13
commit
97bd8f0dde
|
|
@ -32,7 +32,8 @@
|
|||
"@it0/database": "workspace:*",
|
||||
"@it0/events": "workspace:*",
|
||||
"@it0/proto": "workspace:*",
|
||||
"ssh2": "^1.15.0"
|
||||
"ssh2": "^1.15.0",
|
||||
"@larksuiteoapi/node-sdk": "^1.30.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nestjs/cli": "^10.3.0",
|
||||
|
|
|
|||
|
|
@ -47,6 +47,9 @@ export class AgentInstance {
|
|||
@Column({ type: 'varchar', length: 100, name: 'dingtalk_user_id', nullable: true })
|
||||
dingTalkUserId?: string;
|
||||
|
||||
@Column({ type: 'varchar', length: 100, name: 'feishu_user_id', nullable: true })
|
||||
feishuUserId?: string;
|
||||
|
||||
@Column({ type: 'jsonb', default: {} })
|
||||
config!: Record<string, unknown>;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue