Variable: sessionInfoSchema
ts
const sessionInfoSchema: ZodObject<{
connectedDate: ZodString;
disconnectedDate: ZodOptional<ZodNullable<ZodString>>;
sessionKey: ZodString;
subscribedEvents: ZodArray<ZodObject<{
channelId: ZodString;
eventType: ZodCustom<SubscribedEventType, SubscribedEventType>;
}, $loose>>;
}, $loose>;Defined in: src/types/session.ts:28
세션 목록의 data[] 항목. disconnectedDate는 실측(2026-07-22)상 연결 중에는 필드 자체가 없고 끊긴 뒤에만 존재한다 (api-notes #4).