feat(webhook): 添加对shoppy平台webhook的支持 #40

Merged
longbot merged 3 commits from zhuotianyuan/API:main into main 2026-01-06 11:03:40 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit f2b1036286 - Show all commits

View File

@ -11,10 +11,10 @@ export class Site {
apiUrl: string; apiUrl: string;
@Column({ name: 'website_url', length: 255, nullable: true }) @Column({ name: 'website_url', length: 255, nullable: true })
websiteUrl: string; websiteUrl?: string;
@Column({ name: 'webhook_url', length: 255, nullable: true }) @Column({ name: 'webhook_url', length: 255, nullable: true })
webhookUrl: string; webhookUrl?: string;
@Column({ length: 255, nullable: true }) @Column({ length: 255, nullable: true })
consumerKey?: string; consumerKey?: string;