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