@gscdump/contracts 0.40.2 → 1.0.1

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.
@@ -1,3 +1,4 @@
1
+ import { GscSearchType } from "./types.mjs";
1
2
  import { z } from "zod";
2
3
  declare const partnerRoutes: {
3
4
  readonly partner: {
@@ -5,10 +6,13 @@ declare const partnerRoutes: {
5
6
  readonly byId: (userId: string) => string;
6
7
  readonly lifecycle: (userId: string) => string;
7
8
  readonly siteTeam: (userId: string, siteId: string) => string;
9
+ readonly siteIntIdCrosswalk: (userId: string) => string;
8
10
  };
9
11
  readonly sites: {
10
12
  readonly register: "/partner/sites/register";
11
13
  readonly bulkRegister: "/partner/sites/bulk-register";
14
+ readonly verificationToken: "/partner/sites/verification-token";
15
+ readonly addAndVerify: "/partner/sites/add-and-verify";
12
16
  };
13
17
  };
14
18
  readonly users: {
@@ -28,9 +32,9 @@ declare const partnerRoutes: {
28
32
  readonly syncStatus: (siteId: string) => string;
29
33
  readonly data: (siteId: string) => string;
30
34
  readonly dataDetail: (siteId: string) => string;
31
- readonly analysis: (siteId: string) => string;
32
35
  readonly sitemaps: (siteId: string) => string;
33
36
  readonly sitemapChanges: (siteId: string) => string;
37
+ readonly sitemapMembership: (siteId: string) => string;
34
38
  readonly indexing: (siteId: string) => string;
35
39
  readonly indexingUrls: (siteId: string) => string;
36
40
  readonly indexingDiagnostics: (siteId: string) => string;
@@ -41,13 +45,7 @@ declare const partnerRoutes: {
41
45
  readonly keywordSparklines: (siteId: string) => string;
42
46
  readonly queryTrend: (siteId: string) => string;
43
47
  readonly pageTrend: (siteId: string) => string;
44
- readonly contentVelocity: (siteId: string) => string;
45
- readonly ctrCurve: (siteId: string) => string;
46
- readonly darkTraffic: (siteId: string) => string;
47
- readonly deviceGap: (siteId: string) => string;
48
48
  readonly indexPercent: (siteId: string) => string;
49
- readonly keywordBreadth: (siteId: string) => string;
50
- readonly positionDistribution: (siteId: string) => string;
51
49
  };
52
50
  readonly settings: {
53
51
  readonly user: "/user/settings";
@@ -55,6 +53,7 @@ declare const partnerRoutes: {
55
53
  readonly teams: {
56
54
  readonly create: "/partner/teams";
57
55
  readonly byId: (teamId: string) => string;
56
+ readonly catalog: (teamId: string) => string;
58
57
  readonly members: (teamId: string) => string;
59
58
  readonly member: (teamId: string, userId: string) => string;
60
59
  };
@@ -66,11 +65,12 @@ declare const partnerRoutes: {
66
65
  declare const analyticsRoutes: {
67
66
  readonly whoami: "/api/__gsc/whoami";
68
67
  readonly sites: "/api/__gsc/sites";
68
+ readonly bulkSources: "/api/__gsc/bulk-sources";
69
69
  readonly site: {
70
70
  readonly sourceInfo: (siteId: string) => string;
71
71
  readonly analysisSources: (siteId: string) => string;
72
+ readonly queryDimSource: (siteId: string) => string;
72
73
  readonly analyze: (siteId: string) => string;
73
- readonly rows: (siteId: string) => string;
74
74
  readonly rollup: (siteId: string, rollupId: string) => string;
75
75
  readonly backfill: (siteId: string) => string;
76
76
  readonly sitemaps: (siteId: string) => string;
@@ -101,6 +101,26 @@ declare const searchTypeSchema: z.ZodEnum<{
101
101
  discover: "discover";
102
102
  googleNews: "googleNews";
103
103
  }>;
104
+ /**
105
+ * Per-slice capability facts, wire-schema-adjacent to {@link searchTypeSchema}.
106
+ * Discover and Google News are surfaced from GSC without the query/position
107
+ * dimensions Web exposes — Discover has no `query`/`position`/`device`/`country`
108
+ * breakdown at all, and Google News only reports clicks/impressions.
109
+ *
110
+ * - `queries`: the slice exposes per-query rows (query/position breakdowns).
111
+ * - `dimensions`: the slice exposes country/device facets (Web-family only).
112
+ *
113
+ * Consumers use this to hide inapplicable metric columns and dimension filters
114
+ * per type instead of re-encoding these domain facts locally.
115
+ */
116
+ declare const SEARCH_TYPE_CAPABILITIES: Record<GscSearchType, {
117
+ queries: boolean;
118
+ dimensions: boolean;
119
+ }>;
120
+ /** Whether the slice exposes per-query rows (query/position breakdowns). */
121
+ declare function searchTypeSupportsQueries(searchType: GscSearchType): boolean;
122
+ /** Whether the slice exposes country/device facets (Web-family slices only). */
123
+ declare function searchTypeSupportsDimensions(searchType: GscSearchType): boolean;
104
124
  declare const builderStateSchema: z.ZodObject<{
105
125
  searchType: z.ZodOptional<z.ZodEnum<{
106
126
  web: "web";
@@ -359,11 +379,6 @@ declare const gscRowQueryResponseSchema: z.ZodObject<{
359
379
  queryMs: z.ZodNumber;
360
380
  }, z.core.$loose>;
361
381
  }, z.core.$loose>;
362
- declare const indexingUrlStatusSchema: z.ZodEnum<{
363
- pending: "pending";
364
- indexed: "indexed";
365
- not_indexed: "not_indexed";
366
- }>;
367
382
  declare const indexingUrlRowSchema: z.ZodObject<{
368
383
  url: z.ZodString;
369
384
  issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1386,6 +1401,28 @@ declare const teamCatalogRefSchema: z.ZodObject<{
1386
1401
  catalogTablesReady: z.ZodBoolean;
1387
1402
  readsEnabled: z.ZodBoolean;
1388
1403
  }, z.core.$loose>;
1404
+ declare const bindPartnerTeamCatalogSchema: z.ZodObject<{
1405
+ catalogUri: z.ZodString;
1406
+ warehouse: z.ZodString;
1407
+ namespace: z.ZodOptional<z.ZodString>;
1408
+ bucket: z.ZodOptional<z.ZodString>;
1409
+ }, z.core.$strip>;
1410
+ declare const bindPartnerTeamCatalogResponseSchema: z.ZodObject<{
1411
+ teamId: z.ZodString;
1412
+ status: z.ZodLiteral<"ready">;
1413
+ catalogUri: z.ZodString;
1414
+ warehouse: z.ZodString;
1415
+ bucket: z.ZodString;
1416
+ namespace: z.ZodString;
1417
+ }, z.core.$loose>;
1418
+ declare const siteIntIdCrosswalkResponseSchema: z.ZodObject<{
1419
+ crosswalk: z.ZodRecord<z.ZodString, z.ZodNumber>;
1420
+ sites: z.ZodArray<z.ZodObject<{
1421
+ siteId: z.ZodString;
1422
+ intId: z.ZodNumber;
1423
+ siteUrl: z.ZodString;
1424
+ }, z.core.$loose>>;
1425
+ }, z.core.$loose>;
1389
1426
  declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
1390
1427
  comparison: z.ZodOptional<z.ZodObject<{
1391
1428
  searchType: z.ZodOptional<z.ZodEnum<{
@@ -1496,38 +1533,6 @@ declare const gscdumpAnalysisParamsSchema: z.ZodObject<{
1496
1533
  "movers-declining": "movers-declining";
1497
1534
  }>;
1498
1535
  }, z.core.$strip>;
1499
- declare const gscdumpAnalysisBundleParamsSchema: z.ZodObject<{
1500
- startDate: z.ZodString;
1501
- endDate: z.ZodString;
1502
- prevStartDate: z.ZodOptional<z.ZodString>;
1503
- prevEndDate: z.ZodOptional<z.ZodString>;
1504
- brandTerms: z.ZodOptional<z.ZodString>;
1505
- limit: z.ZodOptional<z.ZodNumber>;
1506
- offset: z.ZodOptional<z.ZodNumber>;
1507
- search: z.ZodOptional<z.ZodString>;
1508
- minImpressions: z.ZodOptional<z.ZodNumber>;
1509
- minPosition: z.ZodOptional<z.ZodNumber>;
1510
- maxPosition: z.ZodOptional<z.ZodNumber>;
1511
- maxCtr: z.ZodOptional<z.ZodNumber>;
1512
- searchType: z.ZodOptional<z.ZodEnum<{
1513
- web: "web";
1514
- image: "image";
1515
- video: "video";
1516
- news: "news";
1517
- discover: "discover";
1518
- googleNews: "googleNews";
1519
- }>>;
1520
- presets: z.ZodArray<z.ZodEnum<{
1521
- "striking-distance": "striking-distance";
1522
- opportunity: "opportunity";
1523
- decay: "decay";
1524
- "zero-click": "zero-click";
1525
- "non-brand": "non-brand";
1526
- "brand-only": "brand-only";
1527
- "movers-rising": "movers-rising";
1528
- "movers-declining": "movers-declining";
1529
- }>>;
1530
- }, z.core.$strip>;
1531
1536
  declare const gscdumpAnalysisMetaSchema: z.ZodObject<{
1532
1537
  siteUrl: z.ZodString;
1533
1538
  params: z.ZodObject<{
@@ -1639,8 +1644,8 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
1639
1644
  limit: z.ZodOptional<z.ZodNumber>;
1640
1645
  offset: z.ZodOptional<z.ZodNumber>;
1641
1646
  status: z.ZodOptional<z.ZodEnum<{
1642
- pending: "pending";
1643
1647
  indexed: "indexed";
1648
+ pending: "pending";
1644
1649
  not_indexed: "not_indexed";
1645
1650
  }>>;
1646
1651
  issue: z.ZodOptional<z.ZodString>;
@@ -1876,7 +1881,7 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
1876
1881
  sites: z.ZodArray<z.ZodObject<{
1877
1882
  id: z.ZodString;
1878
1883
  userId: z.ZodNumber;
1879
- partnerId: z.ZodNullable<z.ZodNumber>;
1884
+ partnerId: z.ZodNullable<z.ZodString>;
1880
1885
  siteUrl: z.ZodString;
1881
1886
  syncStatus: z.ZodNullable<z.ZodString>;
1882
1887
  lastError: z.ZodNullable<z.ZodString>;
@@ -2073,6 +2078,78 @@ declare const gscdumpAnalysisSourcesResponseSchema: z.ZodObject<{
2073
2078
  maxFiles: z.ZodNumber;
2074
2079
  }, z.core.$strip>;
2075
2080
  }, z.core.$loose>;
2081
+ declare const queryDimSourceResponseSchema: z.ZodObject<{
2082
+ file: z.ZodNullable<z.ZodObject<{
2083
+ url: z.ZodString;
2084
+ bytes: z.ZodNumber;
2085
+ contentHash: z.ZodString;
2086
+ }, z.core.$loose>>;
2087
+ }, z.core.$loose>;
2088
+ declare const bulkFileResolutionResponseSchema: z.ZodObject<{
2089
+ generatedAt: z.ZodString;
2090
+ siteCount: z.ZodNumber;
2091
+ maxSites: z.ZodNumber;
2092
+ results: z.ZodRecord<z.ZodString, z.ZodObject<{
2093
+ siteId: z.ZodString;
2094
+ searchType: z.ZodEnum<{
2095
+ web: "web";
2096
+ image: "image";
2097
+ video: "video";
2098
+ news: "news";
2099
+ discover: "discover";
2100
+ googleNews: "googleNews";
2101
+ }>;
2102
+ range: z.ZodObject<{
2103
+ start: z.ZodString;
2104
+ end: z.ZodString;
2105
+ }, z.core.$strip>;
2106
+ snapshotVersion: z.ZodString;
2107
+ generatedAt: z.ZodString;
2108
+ tables: z.ZodArray<z.ZodObject<{
2109
+ table: z.ZodEnum<{
2110
+ pages: "pages";
2111
+ queries: "queries";
2112
+ countries: "countries";
2113
+ page_queries: "page_queries";
2114
+ dates: "dates";
2115
+ search_appearance: "search_appearance";
2116
+ search_appearance_pages: "search_appearance_pages";
2117
+ search_appearance_queries: "search_appearance_queries";
2118
+ search_appearance_page_queries: "search_appearance_page_queries";
2119
+ }>;
2120
+ mode: z.ZodEnum<{
2121
+ browser: "browser";
2122
+ server: "server";
2123
+ }>;
2124
+ files: z.ZodArray<z.ZodObject<{
2125
+ url: z.ZodString;
2126
+ bytes: z.ZodNumber;
2127
+ contentHash: z.ZodString;
2128
+ rowCount: z.ZodNumber;
2129
+ }, z.core.$loose>>;
2130
+ overlay: z.ZodOptional<z.ZodObject<{
2131
+ url: z.ZodString;
2132
+ bytes: z.ZodNumber;
2133
+ contentHash: z.ZodString;
2134
+ rowCount: z.ZodNumber;
2135
+ }, z.core.$loose>>;
2136
+ totalBytes: z.ZodNumber;
2137
+ totalRows: z.ZodNumber;
2138
+ }, z.core.$loose>>;
2139
+ serverTail: z.ZodOptional<z.ZodObject<{
2140
+ engine: z.ZodEnum<{
2141
+ "r2-sql": "r2-sql";
2142
+ duckdb: "duckdb";
2143
+ }>;
2144
+ endpoint: z.ZodString;
2145
+ }, z.core.$strip>>;
2146
+ eligibilityCeiling: z.ZodObject<{
2147
+ maxBytes: z.ZodNumber;
2148
+ maxRows: z.ZodNumber;
2149
+ maxFiles: z.ZodNumber;
2150
+ }, z.core.$strip>;
2151
+ }, z.core.$loose>>;
2152
+ }, z.core.$loose>;
2076
2153
  declare const gscdumpKeywordSparklinesParamsSchema: z.ZodObject<{
2077
2154
  keywords: z.ZodArray<z.ZodString>;
2078
2155
  startDate: z.ZodString;
@@ -2141,10 +2218,6 @@ declare const gscdumpPageTrendResponseSchema: z.ZodObject<{
2141
2218
  syncStatus: z.ZodNullable<z.ZodString>;
2142
2219
  }, z.core.$loose>;
2143
2220
  }, z.core.$loose>;
2144
- declare const gscdumpDateRangeParamsSchema: z.ZodObject<{
2145
- startDate: z.ZodString;
2146
- endDate: z.ZodString;
2147
- }, z.core.$strip>;
2148
2221
  declare const gscdumpIndexPercentParamsSchema: z.ZodOptional<z.ZodObject<{
2149
2222
  invisibleLimit: z.ZodOptional<z.ZodNumber>;
2150
2223
  invisibleOffset: z.ZodOptional<z.ZodNumber>;
@@ -2251,6 +2324,9 @@ declare const createPartnerTeamSchema: z.ZodObject<{
2251
2324
  name: z.ZodString;
2252
2325
  personalTeam: z.ZodOptional<z.ZodBoolean>;
2253
2326
  }, z.core.$strip>;
2327
+ declare const renamePartnerTeamSchema: z.ZodObject<{
2328
+ name: z.ZodString;
2329
+ }, z.core.$strip>;
2254
2330
  declare const addPartnerTeamMemberSchema: z.ZodObject<{
2255
2331
  userId: z.ZodString;
2256
2332
  role: z.ZodEnum<{
@@ -2262,6 +2338,145 @@ declare const addPartnerTeamMemberSchema: z.ZodObject<{
2262
2338
  declare const bindPartnerSiteTeamSchema: z.ZodObject<{
2263
2339
  teamId: z.ZodNullable<z.ZodString>;
2264
2340
  }, z.core.$strip>;
2341
+ declare const partnerTeamCreatedResponseSchema: z.ZodObject<{
2342
+ team: z.ZodObject<{
2343
+ id: z.ZodString;
2344
+ ownerId: z.ZodNumber;
2345
+ name: z.ZodString;
2346
+ personalTeam: z.ZodBoolean;
2347
+ createdAt: z.ZodNumber;
2348
+ updatedAt: z.ZodNumber;
2349
+ }, z.core.$loose>;
2350
+ }, z.core.$loose>;
2351
+ declare const partnerTeamRenamedResponseSchema: z.ZodObject<{
2352
+ ok: z.ZodLiteral<true>;
2353
+ name: z.ZodString;
2354
+ }, z.core.$loose>;
2355
+ declare const partnerTeamDeletedResponseSchema: z.ZodObject<{
2356
+ ok: z.ZodLiteral<true>;
2357
+ }, z.core.$loose>;
2358
+ declare const partnerTeamMembersResponseSchema: z.ZodObject<{
2359
+ members: z.ZodArray<z.ZodObject<{
2360
+ userId: z.ZodNumber;
2361
+ publicId: z.ZodString;
2362
+ name: z.ZodNullable<z.ZodString>;
2363
+ email: z.ZodEmail;
2364
+ picture: z.ZodNullable<z.ZodString>;
2365
+ role: z.ZodEnum<{
2366
+ admin: "admin";
2367
+ editor: "editor";
2368
+ viewer: "viewer";
2369
+ }>;
2370
+ joinedAt: z.ZodNumber;
2371
+ }, z.core.$loose>>;
2372
+ }, z.core.$loose>;
2373
+ declare const partnerTeamMemberAddedResponseSchema: z.ZodObject<{
2374
+ ok: z.ZodLiteral<true>;
2375
+ role: z.ZodEnum<{
2376
+ admin: "admin";
2377
+ editor: "editor";
2378
+ viewer: "viewer";
2379
+ }>;
2380
+ alreadyExisted: z.ZodOptional<z.ZodBoolean>;
2381
+ }, z.core.$loose>;
2382
+ declare const partnerTeamMemberRoleResponseSchema: z.ZodObject<{
2383
+ ok: z.ZodLiteral<true>;
2384
+ role: z.ZodEnum<{
2385
+ admin: "admin";
2386
+ editor: "editor";
2387
+ viewer: "viewer";
2388
+ }>;
2389
+ }, z.core.$loose>;
2390
+ declare const partnerTeamMemberRemovedResponseSchema: z.ZodObject<{
2391
+ ok: z.ZodLiteral<true>;
2392
+ }, z.core.$loose>;
2393
+ declare const partnerSiteTeamBindingResponseSchema: z.ZodObject<{
2394
+ ok: z.ZodLiteral<true>;
2395
+ teamId: z.ZodNullable<z.ZodString>;
2396
+ }, z.core.$loose>;
2397
+ declare const gscVerificationMethodSchema: z.ZodEnum<{
2398
+ META: "META";
2399
+ FILE: "FILE";
2400
+ DNS_TXT: "DNS_TXT";
2401
+ DNS_CNAME: "DNS_CNAME";
2402
+ ANALYTICS: "ANALYTICS";
2403
+ TAG_MANAGER: "TAG_MANAGER";
2404
+ }>;
2405
+ declare const gscVerificationSiteSchema: z.ZodObject<{
2406
+ type: z.ZodEnum<{
2407
+ SITE: "SITE";
2408
+ INET_DOMAIN: "INET_DOMAIN";
2409
+ }>;
2410
+ identifier: z.ZodString;
2411
+ }, z.core.$strip>;
2412
+ declare const gscVerificationDnsRecordSchema: z.ZodObject<{
2413
+ type: z.ZodEnum<{
2414
+ TXT: "TXT";
2415
+ CNAME: "CNAME";
2416
+ }>;
2417
+ host: z.ZodString;
2418
+ value: z.ZodString;
2419
+ }, z.core.$strip>;
2420
+ declare const gscVerificationRequestSchema: z.ZodObject<{
2421
+ userId: z.ZodOptional<z.ZodString>;
2422
+ siteUrl: z.ZodString;
2423
+ method: z.ZodOptional<z.ZodEnum<{
2424
+ META: "META";
2425
+ FILE: "FILE";
2426
+ DNS_TXT: "DNS_TXT";
2427
+ DNS_CNAME: "DNS_CNAME";
2428
+ ANALYTICS: "ANALYTICS";
2429
+ TAG_MANAGER: "TAG_MANAGER";
2430
+ }>>;
2431
+ }, z.core.$strip>;
2432
+ declare const gscVerificationTokenResponseSchema: z.ZodObject<{
2433
+ siteUrl: z.ZodString;
2434
+ site: z.ZodObject<{
2435
+ type: z.ZodEnum<{
2436
+ SITE: "SITE";
2437
+ INET_DOMAIN: "INET_DOMAIN";
2438
+ }>;
2439
+ identifier: z.ZodString;
2440
+ }, z.core.$strip>;
2441
+ method: z.ZodEnum<{
2442
+ META: "META";
2443
+ FILE: "FILE";
2444
+ DNS_TXT: "DNS_TXT";
2445
+ DNS_CNAME: "DNS_CNAME";
2446
+ ANALYTICS: "ANALYTICS";
2447
+ TAG_MANAGER: "TAG_MANAGER";
2448
+ }>;
2449
+ token: z.ZodString;
2450
+ metaContent: z.ZodNullable<z.ZodString>;
2451
+ dnsRecord: z.ZodNullable<z.ZodObject<{
2452
+ type: z.ZodEnum<{
2453
+ TXT: "TXT";
2454
+ CNAME: "CNAME";
2455
+ }>;
2456
+ host: z.ZodString;
2457
+ value: z.ZodString;
2458
+ }, z.core.$strip>>;
2459
+ }, z.core.$loose>;
2460
+ declare const gscAddAndVerifyResponseSchema: z.ZodObject<{
2461
+ siteUrl: z.ZodString;
2462
+ site: z.ZodObject<{
2463
+ type: z.ZodEnum<{
2464
+ SITE: "SITE";
2465
+ INET_DOMAIN: "INET_DOMAIN";
2466
+ }>;
2467
+ identifier: z.ZodString;
2468
+ }, z.core.$strip>;
2469
+ method: z.ZodEnum<{
2470
+ META: "META";
2471
+ FILE: "FILE";
2472
+ DNS_TXT: "DNS_TXT";
2473
+ DNS_CNAME: "DNS_CNAME";
2474
+ ANALYTICS: "ANALYTICS";
2475
+ TAG_MANAGER: "TAG_MANAGER";
2476
+ }>;
2477
+ verified: z.ZodLiteral<true>;
2478
+ owners: z.ZodArray<z.ZodString>;
2479
+ }, z.core.$loose>;
2265
2480
  declare const partnerRealtimeEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2266
2481
  event: z.ZodLiteral<"sync.progress">;
2267
2482
  siteId: z.ZodString;
@@ -2381,23 +2596,6 @@ declare const canonicalWebhookEventTypeSchema: z.ZodEnum<{
2381
2596
  "site.auth.failed": "site.auth.failed";
2382
2597
  "job.failed": "job.failed";
2383
2598
  }>;
2384
- declare const webhookEventTypeSchema: z.ZodEnum<{
2385
- "user.lifecycle.changed": "user.lifecycle.changed";
2386
- "site.lifecycle.changed": "site.lifecycle.changed";
2387
- "site.analytics.ready": "site.analytics.ready";
2388
- "site.indexing.ready": "site.indexing.ready";
2389
- "site.auth.failed": "site.auth.failed";
2390
- "job.failed": "job.failed";
2391
- }>;
2392
- declare const jobFailedWebhookPayloadSchema: z.ZodObject<{
2393
- event: z.ZodLiteral<"job.failed">;
2394
- siteId: z.ZodString;
2395
- siteUrl: z.ZodString;
2396
- table: z.ZodString;
2397
- date: z.ZodString;
2398
- error: z.ZodString;
2399
- timestamp: z.ZodNumber;
2400
- }, z.core.$loose>;
2401
2599
  declare const partnerWebhookDataSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
2402
2600
  declare const partnerWebhookEnvelopeSchema: z.ZodObject<{
2403
2601
  contractVersion: z.ZodLiteral<"2026-05-11">;
@@ -2574,19 +2772,6 @@ declare const analyticsEndpointSchemas: {
2574
2772
  }, z.core.$loose>>;
2575
2773
  }, z.core.$loose>;
2576
2774
  };
2577
- readonly analyticsRows: {
2578
- readonly response: z.ZodObject<{
2579
- rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2580
- meta: z.ZodObject<{
2581
- sourceName: z.ZodString;
2582
- sourceKind: z.ZodEnum<{
2583
- row: "row";
2584
- sql: "sql";
2585
- }>;
2586
- queryMs: z.ZodNumber;
2587
- }, z.core.$loose>;
2588
- }, z.core.$loose>;
2589
- };
2590
2775
  readonly analyticsRollup: {
2591
2776
  readonly response: z.ZodObject<{
2592
2777
  version: z.ZodLiteral<1>;
@@ -2826,6 +3011,82 @@ declare const analyticsEndpointSchemas: {
2826
3011
  }, z.core.$strip>;
2827
3012
  }, z.core.$loose>;
2828
3013
  };
3014
+ readonly analyticsQueryDimSource: {
3015
+ readonly response: z.ZodObject<{
3016
+ file: z.ZodNullable<z.ZodObject<{
3017
+ url: z.ZodString;
3018
+ bytes: z.ZodNumber;
3019
+ contentHash: z.ZodString;
3020
+ }, z.core.$loose>>;
3021
+ }, z.core.$loose>;
3022
+ };
3023
+ readonly analyticsBulkSources: {
3024
+ readonly response: z.ZodObject<{
3025
+ generatedAt: z.ZodString;
3026
+ siteCount: z.ZodNumber;
3027
+ maxSites: z.ZodNumber;
3028
+ results: z.ZodRecord<z.ZodString, z.ZodObject<{
3029
+ siteId: z.ZodString;
3030
+ searchType: z.ZodEnum<{
3031
+ web: "web";
3032
+ image: "image";
3033
+ video: "video";
3034
+ news: "news";
3035
+ discover: "discover";
3036
+ googleNews: "googleNews";
3037
+ }>;
3038
+ range: z.ZodObject<{
3039
+ start: z.ZodString;
3040
+ end: z.ZodString;
3041
+ }, z.core.$strip>;
3042
+ snapshotVersion: z.ZodString;
3043
+ generatedAt: z.ZodString;
3044
+ tables: z.ZodArray<z.ZodObject<{
3045
+ table: z.ZodEnum<{
3046
+ pages: "pages";
3047
+ queries: "queries";
3048
+ countries: "countries";
3049
+ page_queries: "page_queries";
3050
+ dates: "dates";
3051
+ search_appearance: "search_appearance";
3052
+ search_appearance_pages: "search_appearance_pages";
3053
+ search_appearance_queries: "search_appearance_queries";
3054
+ search_appearance_page_queries: "search_appearance_page_queries";
3055
+ }>;
3056
+ mode: z.ZodEnum<{
3057
+ browser: "browser";
3058
+ server: "server";
3059
+ }>;
3060
+ files: z.ZodArray<z.ZodObject<{
3061
+ url: z.ZodString;
3062
+ bytes: z.ZodNumber;
3063
+ contentHash: z.ZodString;
3064
+ rowCount: z.ZodNumber;
3065
+ }, z.core.$loose>>;
3066
+ overlay: z.ZodOptional<z.ZodObject<{
3067
+ url: z.ZodString;
3068
+ bytes: z.ZodNumber;
3069
+ contentHash: z.ZodString;
3070
+ rowCount: z.ZodNumber;
3071
+ }, z.core.$loose>>;
3072
+ totalBytes: z.ZodNumber;
3073
+ totalRows: z.ZodNumber;
3074
+ }, z.core.$loose>>;
3075
+ serverTail: z.ZodOptional<z.ZodObject<{
3076
+ engine: z.ZodEnum<{
3077
+ "r2-sql": "r2-sql";
3078
+ duckdb: "duckdb";
3079
+ }>;
3080
+ endpoint: z.ZodString;
3081
+ }, z.core.$strip>>;
3082
+ eligibilityCeiling: z.ZodObject<{
3083
+ maxBytes: z.ZodNumber;
3084
+ maxRows: z.ZodNumber;
3085
+ maxFiles: z.ZodNumber;
3086
+ }, z.core.$strip>;
3087
+ }, z.core.$loose>>;
3088
+ }, z.core.$loose>;
3089
+ };
2829
3090
  readonly analyticsSourceInfo: {
2830
3091
  readonly response: z.ZodObject<{
2831
3092
  name: z.ZodString;
@@ -2842,6 +3103,78 @@ declare const analyticsEndpointSchemas: {
2842
3103
  }, z.core.$loose>;
2843
3104
  };
2844
3105
  };
3106
+ /**
3107
+ * Body for `POST /sites/:siteId/sitemaps`. One wire endpoint, three actions:
3108
+ * `submit`/`delete` operate on a specific sitemap URL (feedpath required),
3109
+ * `refresh` re-fetches the GSC sitemap index and records health.
3110
+ */
3111
+ declare const partnerSitemapActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3112
+ action: z.ZodLiteral<"submit">;
3113
+ sitemapUrl: z.ZodString;
3114
+ }, z.core.$strip>, z.ZodObject<{
3115
+ action: z.ZodLiteral<"delete">;
3116
+ sitemapUrl: z.ZodString;
3117
+ }, z.core.$strip>, z.ZodObject<{
3118
+ action: z.ZodLiteral<"refresh">;
3119
+ }, z.core.$strip>, z.ZodObject<{
3120
+ action: z.ZodLiteral<"auto-discover">;
3121
+ }, z.core.$strip>], "action">;
3122
+ declare const partnerSitemapActionResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3123
+ success: z.ZodBoolean;
3124
+ action: z.ZodEnum<{
3125
+ submitted: "submitted";
3126
+ deleted: "deleted";
3127
+ }>;
3128
+ sitemapUrl: z.ZodString;
3129
+ sitemapCount: z.ZodNumber;
3130
+ }, z.core.$loose>, z.ZodObject<{
3131
+ success: z.ZodLiteral<true>;
3132
+ action: z.ZodLiteral<"refreshed">;
3133
+ sitemapCount: z.ZodNumber;
3134
+ changed: z.ZodBoolean;
3135
+ }, z.core.$loose>, z.ZodObject<{
3136
+ success: z.ZodBoolean;
3137
+ action: z.ZodLiteral<"auto-discover">;
3138
+ discovered: z.ZodNullable<z.ZodString>;
3139
+ submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3140
+ sitemapCount: z.ZodNumber;
3141
+ }, z.core.$loose>], "action">;
3142
+ declare const gscdumpSitemapMembershipParamsSchema: z.ZodObject<{
3143
+ urls: z.ZodArray<z.ZodString>;
3144
+ maxAgeDays: z.ZodOptional<z.ZodNumber>;
3145
+ }, z.core.$strip>;
3146
+ declare const gscdumpSitemapMembershipUrlSchema: z.ZodObject<{
3147
+ url: z.ZodString;
3148
+ normalized: z.ZodString;
3149
+ inSitemap: z.ZodBoolean;
3150
+ sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3151
+ lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3152
+ lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3153
+ sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3154
+ }, z.core.$loose>;
3155
+ declare const gscdumpSitemapMembershipResponseSchema: z.ZodObject<{
3156
+ urls: z.ZodArray<z.ZodObject<{
3157
+ url: z.ZodString;
3158
+ normalized: z.ZodString;
3159
+ inSitemap: z.ZodBoolean;
3160
+ sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3161
+ lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3162
+ lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3163
+ sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3164
+ }, z.core.$loose>>;
3165
+ meta: z.ZodObject<{
3166
+ available: z.ZodBoolean;
3167
+ reason: z.ZodNullable<z.ZodEnum<{
3168
+ empty: "empty";
3169
+ site_url_cap_exceeded: "site_url_cap_exceeded";
3170
+ stale_sitemaps: "stale_sitemaps";
3171
+ }>>;
3172
+ requested: z.ZodNumber;
3173
+ checked: z.ZodNumber;
3174
+ matched: z.ZodNumber;
3175
+ newestFetchedAt: z.ZodNullable<z.ZodString>;
3176
+ }, z.core.$loose>;
3177
+ }, z.core.$loose>;
2845
3178
  declare const partnerControlEndpointSchemas: {
2846
3179
  readonly appUser: {
2847
3180
  readonly response: z.ZodObject<{
@@ -2917,7 +3250,7 @@ declare const partnerControlEndpointSchemas: {
2917
3250
  sites: z.ZodArray<z.ZodObject<{
2918
3251
  id: z.ZodString;
2919
3252
  userId: z.ZodNumber;
2920
- partnerId: z.ZodNullable<z.ZodNumber>;
3253
+ partnerId: z.ZodNullable<z.ZodString>;
2921
3254
  siteUrl: z.ZodString;
2922
3255
  syncStatus: z.ZodNullable<z.ZodString>;
2923
3256
  lastError: z.ZodNullable<z.ZodString>;
@@ -3763,66 +4096,6 @@ declare const partnerControlEndpointSchemas: {
3763
4096
  }, z.core.$loose>;
3764
4097
  }, z.core.$strip>;
3765
4098
  };
3766
- readonly getAnalysis: {
3767
- readonly query: z.ZodObject<{
3768
- startDate: z.ZodString;
3769
- endDate: z.ZodString;
3770
- prevStartDate: z.ZodOptional<z.ZodString>;
3771
- prevEndDate: z.ZodOptional<z.ZodString>;
3772
- brandTerms: z.ZodOptional<z.ZodString>;
3773
- limit: z.ZodOptional<z.ZodNumber>;
3774
- offset: z.ZodOptional<z.ZodNumber>;
3775
- search: z.ZodOptional<z.ZodString>;
3776
- minImpressions: z.ZodOptional<z.ZodNumber>;
3777
- minPosition: z.ZodOptional<z.ZodNumber>;
3778
- maxPosition: z.ZodOptional<z.ZodNumber>;
3779
- maxCtr: z.ZodOptional<z.ZodNumber>;
3780
- searchType: z.ZodOptional<z.ZodEnum<{
3781
- web: "web";
3782
- image: "image";
3783
- video: "video";
3784
- news: "news";
3785
- discover: "discover";
3786
- googleNews: "googleNews";
3787
- }>>;
3788
- preset: z.ZodEnum<{
3789
- "striking-distance": "striking-distance";
3790
- opportunity: "opportunity";
3791
- decay: "decay";
3792
- "zero-click": "zero-click";
3793
- "non-brand": "non-brand";
3794
- "brand-only": "brand-only";
3795
- "movers-rising": "movers-rising";
3796
- "movers-declining": "movers-declining";
3797
- }>;
3798
- }, z.core.$strip>;
3799
- readonly response: z.ZodObject<{
3800
- preset: z.ZodEnum<{
3801
- "striking-distance": "striking-distance";
3802
- opportunity: "opportunity";
3803
- decay: "decay";
3804
- "zero-click": "zero-click";
3805
- "non-brand": "non-brand";
3806
- "brand-only": "brand-only";
3807
- "movers-rising": "movers-rising";
3808
- "movers-declining": "movers-declining";
3809
- }>;
3810
- keywords: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3811
- totalCount: z.ZodNumber;
3812
- summary: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
3813
- meta: z.ZodObject<{
3814
- siteUrl: z.ZodString;
3815
- params: z.ZodObject<{
3816
- brandTerms: z.ZodOptional<z.ZodArray<z.ZodString>>;
3817
- startDate: z.ZodOptional<z.ZodString>;
3818
- endDate: z.ZodOptional<z.ZodString>;
3819
- prevStartDate: z.ZodOptional<z.ZodString>;
3820
- prevEndDate: z.ZodOptional<z.ZodString>;
3821
- }, z.core.$strip>;
3822
- presetDescription: z.ZodOptional<z.ZodString>;
3823
- }, z.core.$loose>;
3824
- }, z.core.$loose>;
3825
- };
3826
4099
  readonly getSitemaps: {
3827
4100
  readonly response: z.ZodObject<{
3828
4101
  sitemaps: z.ZodArray<z.ZodObject<{
@@ -3878,6 +4151,68 @@ declare const partnerControlEndpointSchemas: {
3878
4151
  }, z.core.$strip>>;
3879
4152
  }, z.core.$loose>;
3880
4153
  };
4154
+ readonly postSitemaps: {
4155
+ readonly body: z.ZodDiscriminatedUnion<[z.ZodObject<{
4156
+ action: z.ZodLiteral<"submit">;
4157
+ sitemapUrl: z.ZodString;
4158
+ }, z.core.$strip>, z.ZodObject<{
4159
+ action: z.ZodLiteral<"delete">;
4160
+ sitemapUrl: z.ZodString;
4161
+ }, z.core.$strip>, z.ZodObject<{
4162
+ action: z.ZodLiteral<"refresh">;
4163
+ }, z.core.$strip>, z.ZodObject<{
4164
+ action: z.ZodLiteral<"auto-discover">;
4165
+ }, z.core.$strip>], "action">;
4166
+ readonly response: z.ZodDiscriminatedUnion<[z.ZodObject<{
4167
+ success: z.ZodBoolean;
4168
+ action: z.ZodEnum<{
4169
+ submitted: "submitted";
4170
+ deleted: "deleted";
4171
+ }>;
4172
+ sitemapUrl: z.ZodString;
4173
+ sitemapCount: z.ZodNumber;
4174
+ }, z.core.$loose>, z.ZodObject<{
4175
+ success: z.ZodLiteral<true>;
4176
+ action: z.ZodLiteral<"refreshed">;
4177
+ sitemapCount: z.ZodNumber;
4178
+ changed: z.ZodBoolean;
4179
+ }, z.core.$loose>, z.ZodObject<{
4180
+ success: z.ZodBoolean;
4181
+ action: z.ZodLiteral<"auto-discover">;
4182
+ discovered: z.ZodNullable<z.ZodString>;
4183
+ submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4184
+ sitemapCount: z.ZodNumber;
4185
+ }, z.core.$loose>], "action">;
4186
+ };
4187
+ readonly getSitemapMembership: {
4188
+ readonly body: z.ZodObject<{
4189
+ urls: z.ZodArray<z.ZodString>;
4190
+ maxAgeDays: z.ZodOptional<z.ZodNumber>;
4191
+ }, z.core.$strip>;
4192
+ readonly response: z.ZodObject<{
4193
+ urls: z.ZodArray<z.ZodObject<{
4194
+ url: z.ZodString;
4195
+ normalized: z.ZodString;
4196
+ inSitemap: z.ZodBoolean;
4197
+ sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4198
+ lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4199
+ lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4200
+ sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4201
+ }, z.core.$loose>>;
4202
+ meta: z.ZodObject<{
4203
+ available: z.ZodBoolean;
4204
+ reason: z.ZodNullable<z.ZodEnum<{
4205
+ empty: "empty";
4206
+ site_url_cap_exceeded: "site_url_cap_exceeded";
4207
+ stale_sitemaps: "stale_sitemaps";
4208
+ }>>;
4209
+ requested: z.ZodNumber;
4210
+ checked: z.ZodNumber;
4211
+ matched: z.ZodNumber;
4212
+ newestFetchedAt: z.ZodNullable<z.ZodString>;
4213
+ }, z.core.$loose>;
4214
+ }, z.core.$loose>;
4215
+ };
3881
4216
  readonly getIndexing: {
3882
4217
  readonly response: z.ZodObject<{
3883
4218
  trend: z.ZodArray<z.ZodObject<{
@@ -3953,8 +4288,8 @@ declare const partnerControlEndpointSchemas: {
3953
4288
  limit: z.ZodOptional<z.ZodNumber>;
3954
4289
  offset: z.ZodOptional<z.ZodNumber>;
3955
4290
  status: z.ZodOptional<z.ZodEnum<{
3956
- pending: "pending";
3957
4291
  indexed: "indexed";
4292
+ pending: "pending";
3958
4293
  not_indexed: "not_indexed";
3959
4294
  }>>;
3960
4295
  issue: z.ZodOptional<z.ZodString>;
@@ -4047,7 +4382,7 @@ declare const partnerControlEndpointSchemas: {
4047
4382
  }, z.core.$loose>;
4048
4383
  }, z.core.$loose>;
4049
4384
  };
4050
- readonly getIndexingInspect: {
4385
+ readonly requestIndexingInspect: {
4051
4386
  readonly body: z.ZodObject<{
4052
4387
  urls: z.ZodArray<z.ZodString>;
4053
4388
  }, z.core.$strip>;
@@ -4205,13 +4540,6 @@ declare const partnerControlEndpointSchemas: {
4205
4540
  }, z.core.$loose>;
4206
4541
  }, z.core.$loose>;
4207
4542
  };
4208
- readonly getDateRangeInsight: {
4209
- readonly query: z.ZodObject<{
4210
- startDate: z.ZodString;
4211
- endDate: z.ZodString;
4212
- }, z.core.$strip>;
4213
- readonly response: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4214
- };
4215
4543
  readonly getCanonicalMismatches: {
4216
4544
  readonly response: z.ZodObject<{
4217
4545
  mismatches: z.ZodArray<z.ZodObject<{
@@ -4313,6 +4641,20 @@ declare const partnerControlEndpointSchemas: {
4313
4641
  }, z.core.$loose>;
4314
4642
  }, z.core.$loose>;
4315
4643
  };
4644
+ readonly renameTeam: {
4645
+ readonly body: z.ZodObject<{
4646
+ name: z.ZodString;
4647
+ }, z.core.$strip>;
4648
+ readonly response: z.ZodObject<{
4649
+ ok: z.ZodLiteral<true>;
4650
+ name: z.ZodString;
4651
+ }, z.core.$loose>;
4652
+ };
4653
+ readonly deleteTeam: {
4654
+ readonly response: z.ZodObject<{
4655
+ ok: z.ZodLiteral<true>;
4656
+ }, z.core.$loose>;
4657
+ };
4316
4658
  readonly listTeamMembers: {
4317
4659
  readonly response: z.ZodObject<{
4318
4660
  members: z.ZodArray<z.ZodObject<{
@@ -4339,7 +4681,37 @@ declare const partnerControlEndpointSchemas: {
4339
4681
  viewer: "viewer";
4340
4682
  }>;
4341
4683
  }, z.core.$strip>;
4342
- readonly response: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4684
+ readonly response: z.ZodObject<{
4685
+ ok: z.ZodLiteral<true>;
4686
+ role: z.ZodEnum<{
4687
+ admin: "admin";
4688
+ editor: "editor";
4689
+ viewer: "viewer";
4690
+ }>;
4691
+ alreadyExisted: z.ZodOptional<z.ZodBoolean>;
4692
+ }, z.core.$loose>;
4693
+ };
4694
+ readonly updateTeamMemberRole: {
4695
+ readonly body: z.ZodObject<{
4696
+ role: z.ZodEnum<{
4697
+ admin: "admin";
4698
+ editor: "editor";
4699
+ viewer: "viewer";
4700
+ }>;
4701
+ }, z.core.$strip>;
4702
+ readonly response: z.ZodObject<{
4703
+ ok: z.ZodLiteral<true>;
4704
+ role: z.ZodEnum<{
4705
+ admin: "admin";
4706
+ editor: "editor";
4707
+ viewer: "viewer";
4708
+ }>;
4709
+ }, z.core.$loose>;
4710
+ };
4711
+ readonly removeTeamMember: {
4712
+ readonly response: z.ZodObject<{
4713
+ ok: z.ZodLiteral<true>;
4714
+ }, z.core.$loose>;
4343
4715
  };
4344
4716
  readonly bindSiteToTeam: {
4345
4717
  readonly body: z.ZodObject<{
@@ -4350,6 +4722,121 @@ declare const partnerControlEndpointSchemas: {
4350
4722
  teamId: z.ZodNullable<z.ZodString>;
4351
4723
  }, z.core.$loose>;
4352
4724
  };
4725
+ readonly getTeamCatalog: {
4726
+ readonly response: z.ZodObject<{
4727
+ teamId: z.ZodString;
4728
+ catalogUri: z.ZodNullable<z.ZodString>;
4729
+ warehouse: z.ZodNullable<z.ZodString>;
4730
+ bucket: z.ZodNullable<z.ZodString>;
4731
+ namespace: z.ZodNullable<z.ZodString>;
4732
+ provisioningState: z.ZodNullable<z.ZodString>;
4733
+ keyEncoding: z.ZodNullable<z.ZodString>;
4734
+ catalogTablesReady: z.ZodBoolean;
4735
+ readsEnabled: z.ZodBoolean;
4736
+ }, z.core.$loose>;
4737
+ };
4738
+ readonly bindTeamCatalog: {
4739
+ readonly body: z.ZodObject<{
4740
+ catalogUri: z.ZodString;
4741
+ warehouse: z.ZodString;
4742
+ namespace: z.ZodOptional<z.ZodString>;
4743
+ bucket: z.ZodOptional<z.ZodString>;
4744
+ }, z.core.$strip>;
4745
+ readonly response: z.ZodObject<{
4746
+ teamId: z.ZodString;
4747
+ status: z.ZodLiteral<"ready">;
4748
+ catalogUri: z.ZodString;
4749
+ warehouse: z.ZodString;
4750
+ bucket: z.ZodString;
4751
+ namespace: z.ZodString;
4752
+ }, z.core.$loose>;
4753
+ };
4754
+ readonly getUserSiteIntIdCrosswalk: {
4755
+ readonly response: z.ZodObject<{
4756
+ crosswalk: z.ZodRecord<z.ZodString, z.ZodNumber>;
4757
+ sites: z.ZodArray<z.ZodObject<{
4758
+ siteId: z.ZodString;
4759
+ intId: z.ZodNumber;
4760
+ siteUrl: z.ZodString;
4761
+ }, z.core.$loose>>;
4762
+ }, z.core.$loose>;
4763
+ };
4764
+ readonly requestSiteVerificationToken: {
4765
+ readonly body: z.ZodObject<{
4766
+ userId: z.ZodOptional<z.ZodString>;
4767
+ siteUrl: z.ZodString;
4768
+ method: z.ZodOptional<z.ZodEnum<{
4769
+ META: "META";
4770
+ FILE: "FILE";
4771
+ DNS_TXT: "DNS_TXT";
4772
+ DNS_CNAME: "DNS_CNAME";
4773
+ ANALYTICS: "ANALYTICS";
4774
+ TAG_MANAGER: "TAG_MANAGER";
4775
+ }>>;
4776
+ }, z.core.$strip>;
4777
+ readonly response: z.ZodObject<{
4778
+ siteUrl: z.ZodString;
4779
+ site: z.ZodObject<{
4780
+ type: z.ZodEnum<{
4781
+ SITE: "SITE";
4782
+ INET_DOMAIN: "INET_DOMAIN";
4783
+ }>;
4784
+ identifier: z.ZodString;
4785
+ }, z.core.$strip>;
4786
+ method: z.ZodEnum<{
4787
+ META: "META";
4788
+ FILE: "FILE";
4789
+ DNS_TXT: "DNS_TXT";
4790
+ DNS_CNAME: "DNS_CNAME";
4791
+ ANALYTICS: "ANALYTICS";
4792
+ TAG_MANAGER: "TAG_MANAGER";
4793
+ }>;
4794
+ token: z.ZodString;
4795
+ metaContent: z.ZodNullable<z.ZodString>;
4796
+ dnsRecord: z.ZodNullable<z.ZodObject<{
4797
+ type: z.ZodEnum<{
4798
+ TXT: "TXT";
4799
+ CNAME: "CNAME";
4800
+ }>;
4801
+ host: z.ZodString;
4802
+ value: z.ZodString;
4803
+ }, z.core.$strip>>;
4804
+ }, z.core.$loose>;
4805
+ };
4806
+ readonly addAndVerifySite: {
4807
+ readonly body: z.ZodObject<{
4808
+ userId: z.ZodOptional<z.ZodString>;
4809
+ siteUrl: z.ZodString;
4810
+ method: z.ZodOptional<z.ZodEnum<{
4811
+ META: "META";
4812
+ FILE: "FILE";
4813
+ DNS_TXT: "DNS_TXT";
4814
+ DNS_CNAME: "DNS_CNAME";
4815
+ ANALYTICS: "ANALYTICS";
4816
+ TAG_MANAGER: "TAG_MANAGER";
4817
+ }>>;
4818
+ }, z.core.$strip>;
4819
+ readonly response: z.ZodObject<{
4820
+ siteUrl: z.ZodString;
4821
+ site: z.ZodObject<{
4822
+ type: z.ZodEnum<{
4823
+ SITE: "SITE";
4824
+ INET_DOMAIN: "INET_DOMAIN";
4825
+ }>;
4826
+ identifier: z.ZodString;
4827
+ }, z.core.$strip>;
4828
+ method: z.ZodEnum<{
4829
+ META: "META";
4830
+ FILE: "FILE";
4831
+ DNS_TXT: "DNS_TXT";
4832
+ DNS_CNAME: "DNS_CNAME";
4833
+ ANALYTICS: "ANALYTICS";
4834
+ TAG_MANAGER: "TAG_MANAGER";
4835
+ }>;
4836
+ verified: z.ZodLiteral<true>;
4837
+ owners: z.ZodArray<z.ZodString>;
4838
+ }, z.core.$loose>;
4839
+ };
4353
4840
  readonly realtimeEvent: {
4354
4841
  readonly message: z.ZodDiscriminatedUnion<[z.ZodObject<{
4355
4842
  event: z.ZodLiteral<"sync.progress">;
@@ -4561,7 +5048,7 @@ declare const partnerEndpointSchemas: {
4561
5048
  sites: z.ZodArray<z.ZodObject<{
4562
5049
  id: z.ZodString;
4563
5050
  userId: z.ZodNumber;
4564
- partnerId: z.ZodNullable<z.ZodNumber>;
5051
+ partnerId: z.ZodNullable<z.ZodString>;
4565
5052
  siteUrl: z.ZodString;
4566
5053
  syncStatus: z.ZodNullable<z.ZodString>;
4567
5054
  lastError: z.ZodNullable<z.ZodString>;
@@ -5407,66 +5894,6 @@ declare const partnerEndpointSchemas: {
5407
5894
  }, z.core.$loose>;
5408
5895
  }, z.core.$strip>;
5409
5896
  };
5410
- readonly getAnalysis: {
5411
- readonly query: z.ZodObject<{
5412
- startDate: z.ZodString;
5413
- endDate: z.ZodString;
5414
- prevStartDate: z.ZodOptional<z.ZodString>;
5415
- prevEndDate: z.ZodOptional<z.ZodString>;
5416
- brandTerms: z.ZodOptional<z.ZodString>;
5417
- limit: z.ZodOptional<z.ZodNumber>;
5418
- offset: z.ZodOptional<z.ZodNumber>;
5419
- search: z.ZodOptional<z.ZodString>;
5420
- minImpressions: z.ZodOptional<z.ZodNumber>;
5421
- minPosition: z.ZodOptional<z.ZodNumber>;
5422
- maxPosition: z.ZodOptional<z.ZodNumber>;
5423
- maxCtr: z.ZodOptional<z.ZodNumber>;
5424
- searchType: z.ZodOptional<z.ZodEnum<{
5425
- web: "web";
5426
- image: "image";
5427
- video: "video";
5428
- news: "news";
5429
- discover: "discover";
5430
- googleNews: "googleNews";
5431
- }>>;
5432
- preset: z.ZodEnum<{
5433
- "striking-distance": "striking-distance";
5434
- opportunity: "opportunity";
5435
- decay: "decay";
5436
- "zero-click": "zero-click";
5437
- "non-brand": "non-brand";
5438
- "brand-only": "brand-only";
5439
- "movers-rising": "movers-rising";
5440
- "movers-declining": "movers-declining";
5441
- }>;
5442
- }, z.core.$strip>;
5443
- readonly response: z.ZodObject<{
5444
- preset: z.ZodEnum<{
5445
- "striking-distance": "striking-distance";
5446
- opportunity: "opportunity";
5447
- decay: "decay";
5448
- "zero-click": "zero-click";
5449
- "non-brand": "non-brand";
5450
- "brand-only": "brand-only";
5451
- "movers-rising": "movers-rising";
5452
- "movers-declining": "movers-declining";
5453
- }>;
5454
- keywords: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5455
- totalCount: z.ZodNumber;
5456
- summary: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
5457
- meta: z.ZodObject<{
5458
- siteUrl: z.ZodString;
5459
- params: z.ZodObject<{
5460
- brandTerms: z.ZodOptional<z.ZodArray<z.ZodString>>;
5461
- startDate: z.ZodOptional<z.ZodString>;
5462
- endDate: z.ZodOptional<z.ZodString>;
5463
- prevStartDate: z.ZodOptional<z.ZodString>;
5464
- prevEndDate: z.ZodOptional<z.ZodString>;
5465
- }, z.core.$strip>;
5466
- presetDescription: z.ZodOptional<z.ZodString>;
5467
- }, z.core.$loose>;
5468
- }, z.core.$loose>;
5469
- };
5470
5897
  readonly getSitemaps: {
5471
5898
  readonly response: z.ZodObject<{
5472
5899
  sitemaps: z.ZodArray<z.ZodObject<{
@@ -5522,6 +5949,68 @@ declare const partnerEndpointSchemas: {
5522
5949
  }, z.core.$strip>>;
5523
5950
  }, z.core.$loose>;
5524
5951
  };
5952
+ readonly postSitemaps: {
5953
+ readonly body: z.ZodDiscriminatedUnion<[z.ZodObject<{
5954
+ action: z.ZodLiteral<"submit">;
5955
+ sitemapUrl: z.ZodString;
5956
+ }, z.core.$strip>, z.ZodObject<{
5957
+ action: z.ZodLiteral<"delete">;
5958
+ sitemapUrl: z.ZodString;
5959
+ }, z.core.$strip>, z.ZodObject<{
5960
+ action: z.ZodLiteral<"refresh">;
5961
+ }, z.core.$strip>, z.ZodObject<{
5962
+ action: z.ZodLiteral<"auto-discover">;
5963
+ }, z.core.$strip>], "action">;
5964
+ readonly response: z.ZodDiscriminatedUnion<[z.ZodObject<{
5965
+ success: z.ZodBoolean;
5966
+ action: z.ZodEnum<{
5967
+ submitted: "submitted";
5968
+ deleted: "deleted";
5969
+ }>;
5970
+ sitemapUrl: z.ZodString;
5971
+ sitemapCount: z.ZodNumber;
5972
+ }, z.core.$loose>, z.ZodObject<{
5973
+ success: z.ZodLiteral<true>;
5974
+ action: z.ZodLiteral<"refreshed">;
5975
+ sitemapCount: z.ZodNumber;
5976
+ changed: z.ZodBoolean;
5977
+ }, z.core.$loose>, z.ZodObject<{
5978
+ success: z.ZodBoolean;
5979
+ action: z.ZodLiteral<"auto-discover">;
5980
+ discovered: z.ZodNullable<z.ZodString>;
5981
+ submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5982
+ sitemapCount: z.ZodNumber;
5983
+ }, z.core.$loose>], "action">;
5984
+ };
5985
+ readonly getSitemapMembership: {
5986
+ readonly body: z.ZodObject<{
5987
+ urls: z.ZodArray<z.ZodString>;
5988
+ maxAgeDays: z.ZodOptional<z.ZodNumber>;
5989
+ }, z.core.$strip>;
5990
+ readonly response: z.ZodObject<{
5991
+ urls: z.ZodArray<z.ZodObject<{
5992
+ url: z.ZodString;
5993
+ normalized: z.ZodString;
5994
+ inSitemap: z.ZodBoolean;
5995
+ sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5996
+ lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5997
+ lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5998
+ sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5999
+ }, z.core.$loose>>;
6000
+ meta: z.ZodObject<{
6001
+ available: z.ZodBoolean;
6002
+ reason: z.ZodNullable<z.ZodEnum<{
6003
+ empty: "empty";
6004
+ site_url_cap_exceeded: "site_url_cap_exceeded";
6005
+ stale_sitemaps: "stale_sitemaps";
6006
+ }>>;
6007
+ requested: z.ZodNumber;
6008
+ checked: z.ZodNumber;
6009
+ matched: z.ZodNumber;
6010
+ newestFetchedAt: z.ZodNullable<z.ZodString>;
6011
+ }, z.core.$loose>;
6012
+ }, z.core.$loose>;
6013
+ };
5525
6014
  readonly getIndexing: {
5526
6015
  readonly response: z.ZodObject<{
5527
6016
  trend: z.ZodArray<z.ZodObject<{
@@ -5597,8 +6086,8 @@ declare const partnerEndpointSchemas: {
5597
6086
  limit: z.ZodOptional<z.ZodNumber>;
5598
6087
  offset: z.ZodOptional<z.ZodNumber>;
5599
6088
  status: z.ZodOptional<z.ZodEnum<{
5600
- pending: "pending";
5601
6089
  indexed: "indexed";
6090
+ pending: "pending";
5602
6091
  not_indexed: "not_indexed";
5603
6092
  }>>;
5604
6093
  issue: z.ZodOptional<z.ZodString>;
@@ -5691,7 +6180,7 @@ declare const partnerEndpointSchemas: {
5691
6180
  }, z.core.$loose>;
5692
6181
  }, z.core.$loose>;
5693
6182
  };
5694
- readonly getIndexingInspect: {
6183
+ readonly requestIndexingInspect: {
5695
6184
  readonly body: z.ZodObject<{
5696
6185
  urls: z.ZodArray<z.ZodString>;
5697
6186
  }, z.core.$strip>;
@@ -5849,13 +6338,6 @@ declare const partnerEndpointSchemas: {
5849
6338
  }, z.core.$loose>;
5850
6339
  }, z.core.$loose>;
5851
6340
  };
5852
- readonly getDateRangeInsight: {
5853
- readonly query: z.ZodObject<{
5854
- startDate: z.ZodString;
5855
- endDate: z.ZodString;
5856
- }, z.core.$strip>;
5857
- readonly response: z.ZodRecord<z.ZodString, z.ZodUnknown>;
5858
- };
5859
6341
  readonly getCanonicalMismatches: {
5860
6342
  readonly response: z.ZodObject<{
5861
6343
  mismatches: z.ZodArray<z.ZodObject<{
@@ -5957,6 +6439,20 @@ declare const partnerEndpointSchemas: {
5957
6439
  }, z.core.$loose>;
5958
6440
  }, z.core.$loose>;
5959
6441
  };
6442
+ readonly renameTeam: {
6443
+ readonly body: z.ZodObject<{
6444
+ name: z.ZodString;
6445
+ }, z.core.$strip>;
6446
+ readonly response: z.ZodObject<{
6447
+ ok: z.ZodLiteral<true>;
6448
+ name: z.ZodString;
6449
+ }, z.core.$loose>;
6450
+ };
6451
+ readonly deleteTeam: {
6452
+ readonly response: z.ZodObject<{
6453
+ ok: z.ZodLiteral<true>;
6454
+ }, z.core.$loose>;
6455
+ };
5960
6456
  readonly listTeamMembers: {
5961
6457
  readonly response: z.ZodObject<{
5962
6458
  members: z.ZodArray<z.ZodObject<{
@@ -5983,7 +6479,37 @@ declare const partnerEndpointSchemas: {
5983
6479
  viewer: "viewer";
5984
6480
  }>;
5985
6481
  }, z.core.$strip>;
5986
- readonly response: z.ZodRecord<z.ZodString, z.ZodUnknown>;
6482
+ readonly response: z.ZodObject<{
6483
+ ok: z.ZodLiteral<true>;
6484
+ role: z.ZodEnum<{
6485
+ admin: "admin";
6486
+ editor: "editor";
6487
+ viewer: "viewer";
6488
+ }>;
6489
+ alreadyExisted: z.ZodOptional<z.ZodBoolean>;
6490
+ }, z.core.$loose>;
6491
+ };
6492
+ readonly updateTeamMemberRole: {
6493
+ readonly body: z.ZodObject<{
6494
+ role: z.ZodEnum<{
6495
+ admin: "admin";
6496
+ editor: "editor";
6497
+ viewer: "viewer";
6498
+ }>;
6499
+ }, z.core.$strip>;
6500
+ readonly response: z.ZodObject<{
6501
+ ok: z.ZodLiteral<true>;
6502
+ role: z.ZodEnum<{
6503
+ admin: "admin";
6504
+ editor: "editor";
6505
+ viewer: "viewer";
6506
+ }>;
6507
+ }, z.core.$loose>;
6508
+ };
6509
+ readonly removeTeamMember: {
6510
+ readonly response: z.ZodObject<{
6511
+ ok: z.ZodLiteral<true>;
6512
+ }, z.core.$loose>;
5987
6513
  };
5988
6514
  readonly bindSiteToTeam: {
5989
6515
  readonly body: z.ZodObject<{
@@ -5994,6 +6520,121 @@ declare const partnerEndpointSchemas: {
5994
6520
  teamId: z.ZodNullable<z.ZodString>;
5995
6521
  }, z.core.$loose>;
5996
6522
  };
6523
+ readonly getTeamCatalog: {
6524
+ readonly response: z.ZodObject<{
6525
+ teamId: z.ZodString;
6526
+ catalogUri: z.ZodNullable<z.ZodString>;
6527
+ warehouse: z.ZodNullable<z.ZodString>;
6528
+ bucket: z.ZodNullable<z.ZodString>;
6529
+ namespace: z.ZodNullable<z.ZodString>;
6530
+ provisioningState: z.ZodNullable<z.ZodString>;
6531
+ keyEncoding: z.ZodNullable<z.ZodString>;
6532
+ catalogTablesReady: z.ZodBoolean;
6533
+ readsEnabled: z.ZodBoolean;
6534
+ }, z.core.$loose>;
6535
+ };
6536
+ readonly bindTeamCatalog: {
6537
+ readonly body: z.ZodObject<{
6538
+ catalogUri: z.ZodString;
6539
+ warehouse: z.ZodString;
6540
+ namespace: z.ZodOptional<z.ZodString>;
6541
+ bucket: z.ZodOptional<z.ZodString>;
6542
+ }, z.core.$strip>;
6543
+ readonly response: z.ZodObject<{
6544
+ teamId: z.ZodString;
6545
+ status: z.ZodLiteral<"ready">;
6546
+ catalogUri: z.ZodString;
6547
+ warehouse: z.ZodString;
6548
+ bucket: z.ZodString;
6549
+ namespace: z.ZodString;
6550
+ }, z.core.$loose>;
6551
+ };
6552
+ readonly getUserSiteIntIdCrosswalk: {
6553
+ readonly response: z.ZodObject<{
6554
+ crosswalk: z.ZodRecord<z.ZodString, z.ZodNumber>;
6555
+ sites: z.ZodArray<z.ZodObject<{
6556
+ siteId: z.ZodString;
6557
+ intId: z.ZodNumber;
6558
+ siteUrl: z.ZodString;
6559
+ }, z.core.$loose>>;
6560
+ }, z.core.$loose>;
6561
+ };
6562
+ readonly requestSiteVerificationToken: {
6563
+ readonly body: z.ZodObject<{
6564
+ userId: z.ZodOptional<z.ZodString>;
6565
+ siteUrl: z.ZodString;
6566
+ method: z.ZodOptional<z.ZodEnum<{
6567
+ META: "META";
6568
+ FILE: "FILE";
6569
+ DNS_TXT: "DNS_TXT";
6570
+ DNS_CNAME: "DNS_CNAME";
6571
+ ANALYTICS: "ANALYTICS";
6572
+ TAG_MANAGER: "TAG_MANAGER";
6573
+ }>>;
6574
+ }, z.core.$strip>;
6575
+ readonly response: z.ZodObject<{
6576
+ siteUrl: z.ZodString;
6577
+ site: z.ZodObject<{
6578
+ type: z.ZodEnum<{
6579
+ SITE: "SITE";
6580
+ INET_DOMAIN: "INET_DOMAIN";
6581
+ }>;
6582
+ identifier: z.ZodString;
6583
+ }, z.core.$strip>;
6584
+ method: z.ZodEnum<{
6585
+ META: "META";
6586
+ FILE: "FILE";
6587
+ DNS_TXT: "DNS_TXT";
6588
+ DNS_CNAME: "DNS_CNAME";
6589
+ ANALYTICS: "ANALYTICS";
6590
+ TAG_MANAGER: "TAG_MANAGER";
6591
+ }>;
6592
+ token: z.ZodString;
6593
+ metaContent: z.ZodNullable<z.ZodString>;
6594
+ dnsRecord: z.ZodNullable<z.ZodObject<{
6595
+ type: z.ZodEnum<{
6596
+ TXT: "TXT";
6597
+ CNAME: "CNAME";
6598
+ }>;
6599
+ host: z.ZodString;
6600
+ value: z.ZodString;
6601
+ }, z.core.$strip>>;
6602
+ }, z.core.$loose>;
6603
+ };
6604
+ readonly addAndVerifySite: {
6605
+ readonly body: z.ZodObject<{
6606
+ userId: z.ZodOptional<z.ZodString>;
6607
+ siteUrl: z.ZodString;
6608
+ method: z.ZodOptional<z.ZodEnum<{
6609
+ META: "META";
6610
+ FILE: "FILE";
6611
+ DNS_TXT: "DNS_TXT";
6612
+ DNS_CNAME: "DNS_CNAME";
6613
+ ANALYTICS: "ANALYTICS";
6614
+ TAG_MANAGER: "TAG_MANAGER";
6615
+ }>>;
6616
+ }, z.core.$strip>;
6617
+ readonly response: z.ZodObject<{
6618
+ siteUrl: z.ZodString;
6619
+ site: z.ZodObject<{
6620
+ type: z.ZodEnum<{
6621
+ SITE: "SITE";
6622
+ INET_DOMAIN: "INET_DOMAIN";
6623
+ }>;
6624
+ identifier: z.ZodString;
6625
+ }, z.core.$strip>;
6626
+ method: z.ZodEnum<{
6627
+ META: "META";
6628
+ FILE: "FILE";
6629
+ DNS_TXT: "DNS_TXT";
6630
+ DNS_CNAME: "DNS_CNAME";
6631
+ ANALYTICS: "ANALYTICS";
6632
+ TAG_MANAGER: "TAG_MANAGER";
6633
+ }>;
6634
+ verified: z.ZodLiteral<true>;
6635
+ owners: z.ZodArray<z.ZodString>;
6636
+ }, z.core.$loose>;
6637
+ };
5997
6638
  readonly realtimeEvent: {
5998
6639
  readonly message: z.ZodDiscriminatedUnion<[z.ZodObject<{
5999
6640
  event: z.ZodLiteral<"sync.progress">;
@@ -6283,19 +6924,6 @@ declare const partnerEndpointSchemas: {
6283
6924
  }, z.core.$loose>>;
6284
6925
  }, z.core.$loose>;
6285
6926
  };
6286
- readonly analyticsRows: {
6287
- readonly response: z.ZodObject<{
6288
- rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6289
- meta: z.ZodObject<{
6290
- sourceName: z.ZodString;
6291
- sourceKind: z.ZodEnum<{
6292
- row: "row";
6293
- sql: "sql";
6294
- }>;
6295
- queryMs: z.ZodNumber;
6296
- }, z.core.$loose>;
6297
- }, z.core.$loose>;
6298
- };
6299
6927
  readonly analyticsRollup: {
6300
6928
  readonly response: z.ZodObject<{
6301
6929
  version: z.ZodLiteral<1>;
@@ -6535,6 +7163,82 @@ declare const partnerEndpointSchemas: {
6535
7163
  }, z.core.$strip>;
6536
7164
  }, z.core.$loose>;
6537
7165
  };
7166
+ readonly analyticsQueryDimSource: {
7167
+ readonly response: z.ZodObject<{
7168
+ file: z.ZodNullable<z.ZodObject<{
7169
+ url: z.ZodString;
7170
+ bytes: z.ZodNumber;
7171
+ contentHash: z.ZodString;
7172
+ }, z.core.$loose>>;
7173
+ }, z.core.$loose>;
7174
+ };
7175
+ readonly analyticsBulkSources: {
7176
+ readonly response: z.ZodObject<{
7177
+ generatedAt: z.ZodString;
7178
+ siteCount: z.ZodNumber;
7179
+ maxSites: z.ZodNumber;
7180
+ results: z.ZodRecord<z.ZodString, z.ZodObject<{
7181
+ siteId: z.ZodString;
7182
+ searchType: z.ZodEnum<{
7183
+ web: "web";
7184
+ image: "image";
7185
+ video: "video";
7186
+ news: "news";
7187
+ discover: "discover";
7188
+ googleNews: "googleNews";
7189
+ }>;
7190
+ range: z.ZodObject<{
7191
+ start: z.ZodString;
7192
+ end: z.ZodString;
7193
+ }, z.core.$strip>;
7194
+ snapshotVersion: z.ZodString;
7195
+ generatedAt: z.ZodString;
7196
+ tables: z.ZodArray<z.ZodObject<{
7197
+ table: z.ZodEnum<{
7198
+ pages: "pages";
7199
+ queries: "queries";
7200
+ countries: "countries";
7201
+ page_queries: "page_queries";
7202
+ dates: "dates";
7203
+ search_appearance: "search_appearance";
7204
+ search_appearance_pages: "search_appearance_pages";
7205
+ search_appearance_queries: "search_appearance_queries";
7206
+ search_appearance_page_queries: "search_appearance_page_queries";
7207
+ }>;
7208
+ mode: z.ZodEnum<{
7209
+ browser: "browser";
7210
+ server: "server";
7211
+ }>;
7212
+ files: z.ZodArray<z.ZodObject<{
7213
+ url: z.ZodString;
7214
+ bytes: z.ZodNumber;
7215
+ contentHash: z.ZodString;
7216
+ rowCount: z.ZodNumber;
7217
+ }, z.core.$loose>>;
7218
+ overlay: z.ZodOptional<z.ZodObject<{
7219
+ url: z.ZodString;
7220
+ bytes: z.ZodNumber;
7221
+ contentHash: z.ZodString;
7222
+ rowCount: z.ZodNumber;
7223
+ }, z.core.$loose>>;
7224
+ totalBytes: z.ZodNumber;
7225
+ totalRows: z.ZodNumber;
7226
+ }, z.core.$loose>>;
7227
+ serverTail: z.ZodOptional<z.ZodObject<{
7228
+ engine: z.ZodEnum<{
7229
+ "r2-sql": "r2-sql";
7230
+ duckdb: "duckdb";
7231
+ }>;
7232
+ endpoint: z.ZodString;
7233
+ }, z.core.$strip>>;
7234
+ eligibilityCeiling: z.ZodObject<{
7235
+ maxBytes: z.ZodNumber;
7236
+ maxRows: z.ZodNumber;
7237
+ maxFiles: z.ZodNumber;
7238
+ }, z.core.$strip>;
7239
+ }, z.core.$loose>>;
7240
+ }, z.core.$loose>;
7241
+ };
6538
7242
  readonly analyticsSourceInfo: {
6539
7243
  readonly response: z.ZodObject<{
6540
7244
  name: z.ZodString;
@@ -6551,4 +7255,4 @@ declare const partnerEndpointSchemas: {
6551
7255
  }, z.core.$loose>;
6552
7256
  };
6553
7257
  };
6554
- export { addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsRoutes, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisBaseParamsSchema, gscdumpAnalysisBundleParamsSchema, gscdumpAnalysisBundleResponseSchema, gscdumpAnalysisMetaSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, indexingDiagnosticsParamsSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
7258
+ export { SEARCH_TYPE_CAPABILITIES, addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsRoutes, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, bindPartnerTeamCatalogResponseSchema, bindPartnerTeamCatalogSchema, builderStateSchema, bulkFileResolutionResponseSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscAddAndVerifyResponseSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscVerificationDnsRecordSchema, gscVerificationMethodSchema, gscVerificationRequestSchema, gscVerificationSiteSchema, gscVerificationTokenResponseSchema, gscdumpAnalysisBaseParamsSchema, gscdumpAnalysisBundleResponseSchema, gscdumpAnalysisMetaSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapMembershipParamsSchema, gscdumpSitemapMembershipResponseSchema, gscdumpSitemapMembershipUrlSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, indexingDiagnosticsParamsSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerSiteTeamBindingResponseSchema, partnerSitemapActionResponseSchema, partnerSitemapActionSchema, partnerTeamCreatedResponseSchema, partnerTeamDeletedResponseSchema, partnerTeamMemberAddedResponseSchema, partnerTeamMemberRemovedResponseSchema, partnerTeamMemberRoleResponseSchema, partnerTeamMembersResponseSchema, partnerTeamRenamedResponseSchema, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, queryDimSourceResponseSchema, registerPartnerSiteSchema, registerPartnerUserSchema, renamePartnerTeamSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, searchTypeSupportsDimensions, searchTypeSupportsQueries, siteIntIdCrosswalkResponseSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema, whoamiResponseSchema };