- company.notifications 테이블 + NotificationType(SUCCESS/REGENERATED/FAILURE) - 백엔드 알림 조회/읽음 API + close_and_decide 결과 분기마다 알림 생성 - 헤더 알림 벨(안읽음 배지) + 알림 페이지(읽음·딥링크) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
847 B
TypeScript
23 lines
847 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { NotificationType } from './notificationType';
|
|
import type { NotificationDataRefQtId } from './notificationDataRefQtId';
|
|
import type { NotificationDataRefSessionId } from './notificationDataRefSessionId';
|
|
import type { NotificationDataData } from './notificationDataData';
|
|
import type { NotificationDataReadAt } from './notificationDataReadAt';
|
|
import type { NotificationDataCreatedAt } from './notificationDataCreatedAt';
|
|
|
|
export interface NotificationData {
|
|
notification_id: string;
|
|
type: NotificationType;
|
|
ref_qt_id?: NotificationDataRefQtId;
|
|
ref_session_id?: NotificationDataRefSessionId;
|
|
data?: NotificationDataData;
|
|
read_at?: NotificationDataReadAt;
|
|
created_at?: NotificationDataCreatedAt;
|
|
}
|