@spooky-sync/core 0.0.1-canary.176 → 0.0.1-canary.177

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.
package/dist/index.js CHANGED
@@ -6892,8 +6892,8 @@ function selfAllowlistedVariant(flag, userId) {
6892
6892
 
6893
6893
  //#endregion
6894
6894
  //#region src/modules/devtools/index.ts
6895
- const CORE_VERSION = "0.0.1-canary.176";
6896
- const WASM_VERSION = "0.0.1-canary.176";
6895
+ const CORE_VERSION = "0.0.1-canary.177";
6896
+ const WASM_VERSION = "0.0.1-canary.177";
6897
6897
  const SURREAL_VERSION = "3.0.3";
6898
6898
  var DevToolsService = class DevToolsService {
6899
6899
  eventsHistory = [];
@@ -11324,7 +11324,7 @@ var Sp00kyClient = class {
11324
11324
  return new TabsCoordinator({
11325
11325
  tabId,
11326
11326
  fingerprint: computeTabsFingerprint({
11327
- coreVersion: "0.0.1-canary.176",
11327
+ coreVersion: "0.0.1-canary.177",
11328
11328
  schemaHash: hash53(this.config.schemaSurql),
11329
11329
  endpoint: this.config.database.endpoint ?? "",
11330
11330
  namespace: this.config.database.namespace,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spooky-sync/core",
3
- "version": "0.0.1-canary.176",
3
+ "version": "0.0.1-canary.177",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -60,8 +60,8 @@
60
60
  }
61
61
  },
62
62
  "dependencies": {
63
- "@spooky-sync/query-builder": "0.0.1-canary.176",
64
- "@spooky-sync/ssp-wasm": "0.0.1-canary.176",
63
+ "@spooky-sync/query-builder": "0.0.1-canary.177",
64
+ "@spooky-sync/ssp-wasm": "0.0.1-canary.177",
65
65
  "@sqlite.org/sqlite-wasm": "3.53.0-build1",
66
66
  "@surrealdb/wasm": "^3.0.3",
67
67
  "fast-json-patch": "^3.1.1",
@@ -33,6 +33,9 @@ export interface HeartbeatSample {
33
33
  export interface HeartbeatInfo {
34
34
  enabled: boolean;
35
35
  stale: boolean;
36
+ /** Nothing to measure right now (e.g. no ready SSPs mid-bootstrap). */
37
+ blocked?: boolean;
38
+ blocked_reason?: string | null;
36
39
  last_e2e_ms: number | null;
37
40
  last_ok_epoch_ms: number | null;
38
41
  consecutive_failures: number;