@readerseye2/cr_type 1.0.189 → 1.0.190

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,12 +80,12 @@ export interface ClientToServerEvents {
80
80
  }) => void;
81
81
  /**
82
82
  * WebRTC 진단 정보 (부모→서버, 단방향)
83
- * - iceCandidateType: 부모 selected candidate pair의 local candidate type
83
+ * - connectTimeMs: offer 전송 connectionState=connected 까지 걸린 시간 (ms). 실패 시 null.
84
84
  * - endReason: 비정상 종료 시에만 동봉 (정상 종료는 'webrtc:hangup' 사용)
85
85
  */
86
86
  'webrtc:diag': (payload: {
87
87
  targetChildIdx: number;
88
- iceCandidateType: 'host' | 'srflx' | 'relay' | null;
88
+ connectTimeMs: number | null;
89
89
  endReason?: 'ice-failed' | 'connection-failed';
90
90
  }) => void;
91
91
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readerseye2/cr_type",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "description": "CheckReading shared TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",