File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1+ // 모든 상세 타입의 정보는 해당 문서 페이지에서 확인하실 수 있습니다.
2+ // Sentry AI 왈 내용이 문서와 실제 전송되는 값들이 조금씩 다를 수 있다고 하는데, 전체적인 구조와 각 값의 타입은 동일하다고 하네요
3+ // 참고: https://docs.sentry.io/organization/integrations/integration-platform/webhooks/issues/#statusdetails
4+
15export type SentryIssueStatus = 'resolved' | 'unresolved' | 'ignored' ;
26export 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/
6769export interface SentryWebhookData {
6870 action : 'created' ;
6971 installation : { uuid : string } ;
You can’t perform that action at this time.
0 commit comments