Skip to content

Commit fc761ac

Browse files
committed
refactor: 참조 링크 위치 개선
1 parent 4d46adb commit fc761ac

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/types/models/Sentry.type.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// 모든 상세 타입의 정보는 해당 문서 페이지에서 확인하실 수 있습니다.
2+
// Sentry AI 왈 내용이 문서와 실제 전송되는 값들이 조금씩 다를 수 있다고 하는데, 전체적인 구조와 각 값의 타입은 동일하다고 하네요
3+
// 참고: https://docs.sentry.io/organization/integrations/integration-platform/webhooks/issues/#statusdetails
4+
15
export type SentryIssueStatus = 'resolved' | 'unresolved' | 'ignored';
26
export type SentryIssueSubStatus = "archived_until_escalating" | "archived_until_condition_met" | "archived_forever" | "escalating" | "ongoing" | "regressed" | "new"
37

@@ -62,8 +66,6 @@ export interface SentryIssue {
6266
lastSeen: string;
6367
}
6468

65-
// 무조건 오류 생성(created) 메세지만 받도록 해 두었기 때문에, 무조건 해당 타입의 형태로 넘어옵니다
66-
// 참고: https://docs.sentry.io/organization/integrations/integration-platform/webhooks/issues/
6769
export interface SentryWebhookData {
6870
action: 'created';
6971
installation: { uuid: string };

0 commit comments

Comments
 (0)