forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebhook-delivery.entity.ts
More file actions
42 lines (30 loc) · 919 Bytes
/
Copy pathwebhook-delivery.entity.ts
File metadata and controls
42 lines (30 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Entity, Column, PrimaryGeneratedColumn, CreateDateColumn, ManyToOne, JoinColumn } from 'typeorm';
import { Webhook } from './webhook.entity';
@Entity('webhook_deliveries')
export class WebhookDelivery {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
webhookId: string;
@ManyToOne(() => Webhook)
@JoinColumn({ name: 'webhookId' })
webhook: Webhook;
@Column()
eventType: string; // 'distribution.completed', 'campaign.cap_reached', etc.
@Column({ type: 'jsonb' })
payload: Record<string, any>;
@Column({ nullable: true })
responseStatus: number;
@Column({ nullable: true, type: 'text' })
responseBody: string;
@Column({ nullable: true })
responseTimeMs: number;
@Column({ default: 0 })
attemptCount: number;
@Column({ default: false })
success: boolean;
@Column({ nullable: true })
errorMessage: string;
@CreateDateColumn()
createdAt: Date;
}