Skip to content

Type Alias: SystemEvent ​

ts
type SystemEvent = 
  | {
  sessionKey: string;
  type: "connected";
}
  | {
  channelId: string;
  eventType: string;
  type: "subscribed" | "unsubscribed" | "revoked";
}
  | {
  data: unknown;
  systemType: string;
  type: "unknown";
};

Defined in: src/types/events.ts:125

공식 OPEN API만 지원 — 비공식 엔드포인트 0건