@gscdump/contracts 0.22.1 → 0.23.0
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.d.mts +2 -0
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1713,7 +1713,9 @@ declare const analyticsRoutes: {
|
|
|
1713
1713
|
readonly indexingInspect: (siteId: string) => string;
|
|
1714
1714
|
readonly countries: (siteId: string) => string;
|
|
1715
1715
|
readonly searchAppearance: (siteId: string) => string;
|
|
1716
|
+
readonly topAssociation: (siteId: string) => string;
|
|
1716
1717
|
};
|
|
1718
|
+
readonly syncProgress: "/api/sync-progress";
|
|
1717
1719
|
};
|
|
1718
1720
|
/**
|
|
1719
1721
|
* GSC search-type slice validator. Mirrors the `GscSearchType` union from
|
package/dist/index.mjs
CHANGED
|
@@ -200,8 +200,10 @@ const analyticsRoutes = {
|
|
|
200
200
|
indexingDiagnostics: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/indexing/diagnostics`,
|
|
201
201
|
indexingInspect: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/indexing/inspect`,
|
|
202
202
|
countries: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/countries`,
|
|
203
|
-
searchAppearance: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/search-appearance
|
|
204
|
-
|
|
203
|
+
searchAppearance: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/search-appearance`,
|
|
204
|
+
topAssociation: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/data/top-association`
|
|
205
|
+
},
|
|
206
|
+
syncProgress: "/api/sync-progress"
|
|
205
207
|
};
|
|
206
208
|
const WEBHOOK_CONTRACT_VERSION = "2026-05-11";
|
|
207
209
|
const WEBHOOK_SIGNATURE_HEADER = "X-GSCDump-Signature";
|