@gscdump/sdk 1.4.5 → 1.4.7

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.
@@ -43,6 +43,10 @@ const issueDetails = {
43
43
  description: "Google decided these pages duplicate another URL and picked the canonical itself, because the page declared no preference. You did not choose which URL ranks — Google did.",
44
44
  fix: "Add a canonical link to every page. Point it at itself for pages that should rank, or at the preferred URL for genuine duplicates. Leaving it unset hands the decision to Google."
45
45
  },
46
+ indexed_consider_canonical: {
47
+ description: "These pages are indexed, and Google is telling you it found duplicates it thinks should point here. Nothing is broken; Google is naming the canonical it would honour if you declared it.",
48
+ fix: "Add a self-referencing canonical to each of these pages, and point the duplicate versions at them. This makes explicit the choice Google is already making, so it survives future recrawls instead of being re-decided each time."
49
+ },
46
50
  page_removed: {
47
51
  description: "These URLs are suppressed by a request in Search Console's Removals tool. The block is temporary — roughly six months — and then they become eligible again.",
48
52
  fix: "If the removal was intentional, back it with a real signal: a noindex tag, a 404/410, or authentication. The removal tool alone does not keep a page out of Search permanently."
@@ -110,6 +114,7 @@ const issueGroups = [
110
114
  "blocked_robots",
111
115
  "canonical_mismatch",
112
116
  "duplicate_no_canonical",
117
+ "indexed_consider_canonical",
113
118
  "sitemap_redirect"
114
119
  ]
115
120
  },
@@ -1,6 +1,6 @@
1
1
  import { RealtimeV1Cursor, RealtimeV1Event, RealtimeV1StreamHead, RealtimeV1StreamId } from "@gscdump/contracts/v1/realtime";
2
2
  type MaybePromise<T> = T | Promise<T>;
3
- declare const GSCDUMP_REALTIME_V1_SDK_VERSION: "1.4.5";
3
+ declare const GSCDUMP_REALTIME_V1_SDK_VERSION: "1.4.7";
4
4
  type GscdumpRealtimeV1TransportState = 'idle' | 'ticketing' | 'connecting' | 'handshaking' | 'replaying' | 'live' | 'waiting' | 'stopped' | 'terminal';
5
5
  type GscdumpRealtimeV1Freshness = 'unknown' | 'stale' | 'applying' | 'fresh' | 'resyncing' | 'degraded';
6
6
  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';
@@ -1,6 +1,6 @@
1
1
  import { utf8Size } from "../utf8.mjs";
2
2
  import { GSCDUMP_REALTIME_ACK_POLICY, GSCDUMP_REALTIME_CLOSE_CODES, GSCDUMP_REALTIME_CONNECTION_POLICY, GSCDUMP_REALTIME_LIMITS, GSCDUMP_REALTIME_PING, GSCDUMP_REALTIME_PONG, GSCDUMP_REALTIME_PROTOCOL_VERSION, GSCDUMP_REALTIME_SUBPROTOCOL, REALTIME_V1_EVENT_NAMES, REALTIME_V1_RESOURCE_TYPES, createRealtimeV1Schemas } from "@gscdump/contracts/v1/realtime";
3
- const GSCDUMP_REALTIME_V1_SDK_VERSION = "1.4.5";
3
+ const GSCDUMP_REALTIME_V1_SDK_VERSION = "1.4.7";
4
4
  var GscdumpRealtimeV1Error = class extends Error {
5
5
  tag = "GscdumpRealtimeV1Error";
6
6
  code;
@@ -87,7 +87,7 @@ function createGscdumpRealtimeV1Client(options) {
87
87
  const schemas = createRealtimeV1Schemas();
88
88
  const runtime = options.runtime ?? defaultRuntime();
89
89
  const cursorStore = options.cursorStore ?? createMemoryCursorStore();
90
- const sdkVersion = options.sdkVersion ?? "1.4.5";
90
+ const sdkVersion = options.sdkVersion ?? "1.4.7";
91
91
  if (!sdkVersion) throw new TypeError("sdkVersion cannot be empty.");
92
92
  let running = false;
93
93
  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.4.5",
4
+ "version": "1.4.7",
5
5
  "description": "Consumer SDK for hosted gscdump.com integrations.",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -158,10 +158,10 @@
158
158
  "dependencies": {
159
159
  "ofetch": "^1.5.1",
160
160
  "zod": "^4.4.3",
161
- "@gscdump/analysis": "^1.4.5",
162
- "@gscdump/contracts": "^1.4.5",
163
- "@gscdump/engine": "^1.4.5",
164
- "gscdump": "^1.4.5"
161
+ "@gscdump/analysis": "^1.4.7",
162
+ "@gscdump/contracts": "^1.4.7",
163
+ "@gscdump/engine": "^1.4.7",
164
+ "gscdump": "^1.4.7"
165
165
  },
166
166
  "devDependencies": {
167
167
  "typescript": "^7.0.2",