@gscdump/cli 0.26.4 → 0.26.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.
Files changed (2) hide show
  1. package/dist/index.mjs +3 -2
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -6,10 +6,11 @@ import fs, { readFile, readdir, rm } from "node:fs/promises";
6
6
  import path, { join } from "node:path";
7
7
  import { AnalyzerCapabilityError, createEngineQuerySource, runAnalyzerFromSource } from "@gscdump/analysis";
8
8
  import { createGscApiQuerySource } from "@gscdump/engine-gsc-api";
9
- import { addSite, batchInspectUrls, batchRequestIndexing, createAuth, daysAgo, decodeSiteId, deleteSite, discoverSitemap, fetchSitemap, fetchSitemapUrls, fetchSitesWithSitemaps, formatErrorForCli, getDateRange, getIndexingMetadata, getVerificationToken, getVerifiedSite, googleSearchConsole, listVerifiedSites, normalizeSiteUrl, progressBar, requestIndexing, runSequentialBatch, siteUrlToVerificationSite, unverifySite, verificationMethodsFor, verifySite } from "gscdump";
10
9
  import { err, ok, unwrapResult } from "gscdump/result";
10
+ import { decodeSiteId, normalizeSiteUrl } from "gscdump/tenant";
11
11
  import os from "node:os";
12
12
  import { cancel, confirm, isCancel, multiselect, select, text } from "@clack/prompts";
13
+ import { addSite, batchInspectUrls, batchRequestIndexing, createAuth, daysAgo, deleteSite, discoverSitemap, fetchSitemap, fetchSitemapUrls, fetchSitesWithSitemaps, formatErrorForCli, getDateRange, getIndexingMetadata, getVerificationToken, getVerifiedSite, googleSearchConsole, listVerifiedSites, progressBar, requestIndexing, runSequentialBatch, siteUrlToVerificationSite, unverifySite, verificationMethodsFor, verifySite } from "gscdump";
13
14
  import { createServer } from "node:http";
14
15
  import { JWT, OAuth2Client } from "google-auth-library";
15
16
  import { ofetch } from "ofetch";
@@ -125,7 +126,7 @@ function loadEnvFromCwd() {
125
126
  }
126
127
  return applied;
127
128
  }
128
- var version = "0.26.4";
129
+ var version = "0.26.7";
129
130
  const ALL_SEARCH_TYPES$1 = Object.values(SearchTypes);
130
131
  const VERSION = version;
131
132
  function noSubcommandSelected(parent, subNames) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gscdump/cli",
3
3
  "type": "module",
4
- "version": "0.26.4",
4
+ "version": "0.26.7",
5
5
  "description": "CLI for Google Search Console - dump, query, and run MCP server",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -43,10 +43,10 @@
43
43
  "ofetch": "^1.5.1",
44
44
  "open": "^11.0.0",
45
45
  "zod": "^4.4.3",
46
- "@gscdump/analysis": "0.26.4",
47
- "@gscdump/engine": "0.26.4",
48
- "@gscdump/engine-gsc-api": "0.26.4",
49
- "gscdump": "0.26.4"
46
+ "@gscdump/analysis": "0.26.7",
47
+ "@gscdump/engine-gsc-api": "0.26.7",
48
+ "@gscdump/engine": "0.26.7",
49
+ "gscdump": "0.26.7"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@duckdb/node-api": "1.5.1-r.2",