@korajs/devtools 0.3.0 → 0.3.2

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.
@@ -429,6 +429,7 @@ var EVENT_TYPE_CATEGORIES = {
429
429
  "constraint:violated": "merge",
430
430
  "sync:connected": "sync",
431
431
  "sync:disconnected": "sync",
432
+ "sync:auth-failed": "sync",
432
433
  "sync:sent": "sync",
433
434
  "sync:received": "sync",
434
435
  "sync:acknowledged": "sync",
@@ -563,6 +564,8 @@ function timelineLabel(event) {
563
564
  return `sync connected ${event.nodeId}`;
564
565
  case "sync:disconnected":
565
566
  return `sync disconnected`;
567
+ case "sync:auth-failed":
568
+ return `sync auth failed`;
566
569
  case "sync:sent":
567
570
  return `sync sent ${event.batchSize}`;
568
571
  case "sync:received":