@gscdump/sdk 1.3.1 → 1.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.
@@ -124,7 +124,7 @@ interface GscdumpV1Client {
124
124
  /** Create one framework-neutral client whose behavior is driven by the v1 registry. */
125
125
  declare function createGscdumpV1Client(options: CreateGscdumpV1ClientOptions): GscdumpV1Client;
126
126
  type MaybePromise<T> = T | Promise<T>;
127
- declare const GSCDUMP_REALTIME_V1_SDK_VERSION: "1.3.1";
127
+ declare const GSCDUMP_REALTIME_V1_SDK_VERSION: "1.3.2";
128
128
  type GscdumpRealtimeV1TransportState = 'idle' | 'ticketing' | 'connecting' | 'handshaking' | 'replaying' | 'live' | 'waiting' | 'stopped' | 'terminal';
129
129
  type GscdumpRealtimeV1Freshness = 'unknown' | 'stale' | 'applying' | 'fresh' | 'resyncing' | 'degraded';
130
130
  type GscdumpRealtimeV1ErrorCode = 'cursor_store_failed' | 'effect_failed' | 'heartbeat_stale' | 'integration_failed' | 'protocol_error' | 'resync_failed' | 'runtime_unavailable' | 'socket_error' | 'ticket_invalid' | 'ticket_provider_failed' | 'upgrade_rejected';
package/dist/v1/index.mjs CHANGED
@@ -428,7 +428,7 @@ function utf8Size(value) {
428
428
  }
429
429
  return bytes;
430
430
  }
431
- const GSCDUMP_REALTIME_V1_SDK_VERSION = "1.3.1";
431
+ const GSCDUMP_REALTIME_V1_SDK_VERSION = "1.3.2";
432
432
  var GscdumpRealtimeV1Error = class extends Error {
433
433
  tag = "GscdumpRealtimeV1Error";
434
434
  code;
@@ -515,7 +515,7 @@ function createGscdumpRealtimeV1Client(options) {
515
515
  const protocol = createGscdumpV1Protocol();
516
516
  const runtime = options.runtime ?? defaultRuntime();
517
517
  const cursorStore = options.cursorStore ?? createMemoryCursorStore();
518
- const sdkVersion = options.sdkVersion ?? "1.3.1";
518
+ const sdkVersion = options.sdkVersion ?? "1.3.2";
519
519
  if (!sdkVersion) throw new TypeError("sdkVersion cannot be empty.");
520
520
  let running = false;
521
521
  let epoch = 0;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/sdk",
3
3
  "type": "module",
4
- "version": "1.3.1",
4
+ "version": "1.3.2",
5
5
  "description": "Consumer SDK for hosted gscdump.com integrations.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -149,10 +149,10 @@
149
149
  "date-fns": "^4.4.0",
150
150
  "ofetch": "^1.5.1",
151
151
  "zod": "^4.4.3",
152
- "@gscdump/analysis": "^1.3.1",
153
- "@gscdump/engine": "^1.3.1",
154
- "gscdump": "^1.3.1",
155
- "@gscdump/contracts": "^1.3.1"
152
+ "@gscdump/analysis": "^1.3.2",
153
+ "@gscdump/contracts": "^1.3.2",
154
+ "@gscdump/engine": "^1.3.2",
155
+ "gscdump": "^1.3.2"
156
156
  },
157
157
  "devDependencies": {
158
158
  "typescript": "^6.0.3",