@gscdump/contracts 3.5.0 → 3.6.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/README.md +16 -26
- package/dist/archetypes.d.mts +32 -33
- package/dist/endpoints.d.mts +3 -4
- package/dist/file-resolution.d.mts +11 -12
- package/dist/onboarding.d.mts +38 -39
- package/dist/routes.d.mts +3 -4
- package/dist/schemas.d.mts +139 -140
- package/dist/search-types.d.mts +2 -3
- package/dist/types.d.mts +155 -155
- package/dist/v1/bing-data.d.mts +4 -5
- package/dist/v1/bing.d.mts +4 -5
- package/dist/v1/browser.d.mts +4 -5
- package/dist/v1/documents.d.mts +3 -4
- package/dist/v1/http-core.d.mts +39 -39
- package/dist/v1/http-operation-error.d.mts +2 -3
- package/dist/v1/operations.d.mts +138 -139
- package/dist/v1/paths.d.mts +7 -7
- package/dist/v1/realtime.d.mts +30 -31
- package/dist/v1/route-catalog.d.mts +5 -6
- package/dist/v1/route-surfaces.d.mts +2 -3
- package/dist/v1/version.d.mts +1 -2
- package/dist/webhook-constants.d.mts +8 -9
- package/package.json +4 -4
package/dist/schemas.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { GscSearchType } from "./search-types.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
/** Validates untrusted GSC Search Type input before Engine routing. */
|
|
4
|
-
declare const searchTypeSchema: z.ZodEnum<{
|
|
4
|
+
export declare const searchTypeSchema: z.ZodEnum<{
|
|
5
5
|
readonly WEB: "web";
|
|
6
6
|
readonly IMAGE: "image";
|
|
7
7
|
readonly VIDEO: "video";
|
|
@@ -21,15 +21,15 @@ declare const searchTypeSchema: z.ZodEnum<{
|
|
|
21
21
|
* Consumers use this to hide inapplicable metric columns and dimension filters
|
|
22
22
|
* per type instead of re-encoding these domain facts locally.
|
|
23
23
|
*/
|
|
24
|
-
declare const SEARCH_TYPE_CAPABILITIES: Record<GscSearchType, {
|
|
24
|
+
export declare const SEARCH_TYPE_CAPABILITIES: Record<GscSearchType, {
|
|
25
25
|
queries: boolean;
|
|
26
26
|
dimensions: boolean;
|
|
27
27
|
}>;
|
|
28
28
|
/** Whether the slice exposes per-query rows (query/position breakdowns). */
|
|
29
|
-
declare function searchTypeSupportsQueries(searchType: GscSearchType): boolean;
|
|
29
|
+
export declare function searchTypeSupportsQueries(searchType: GscSearchType): boolean;
|
|
30
30
|
/** Whether the slice exposes country/device facets (Web-family slices only). */
|
|
31
|
-
declare function searchTypeSupportsDimensions(searchType: GscSearchType): boolean;
|
|
32
|
-
declare const builderStateSchema: z.ZodObject<{
|
|
31
|
+
export declare function searchTypeSupportsDimensions(searchType: GscSearchType): boolean;
|
|
32
|
+
export declare const builderStateSchema: z.ZodObject<{
|
|
33
33
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
34
34
|
readonly WEB: "web";
|
|
35
35
|
readonly IMAGE: "image";
|
|
@@ -39,23 +39,23 @@ declare const builderStateSchema: z.ZodObject<{
|
|
|
39
39
|
readonly GOOGLE_NEWS: "googleNews";
|
|
40
40
|
}>>;
|
|
41
41
|
}, z.core.$loose>;
|
|
42
|
-
declare const gscComparisonFilterSchema: z.ZodEnum<{
|
|
42
|
+
export declare const gscComparisonFilterSchema: z.ZodEnum<{
|
|
43
43
|
new: "new";
|
|
44
44
|
lost: "lost";
|
|
45
45
|
improving: "improving";
|
|
46
46
|
declining: "declining";
|
|
47
47
|
}>;
|
|
48
|
-
declare const gscApiRangeSchema: z.ZodObject<{
|
|
48
|
+
export declare const gscApiRangeSchema: z.ZodObject<{
|
|
49
49
|
start: z.ZodString;
|
|
50
50
|
end: z.ZodString;
|
|
51
51
|
}, z.core.$strip>;
|
|
52
|
-
declare const countryRowSchema: z.ZodObject<{
|
|
52
|
+
export declare const countryRowSchema: z.ZodObject<{
|
|
53
53
|
country: z.ZodString;
|
|
54
54
|
clicks: z.ZodNumber;
|
|
55
55
|
impressions: z.ZodNumber;
|
|
56
56
|
sum_position: z.ZodNumber;
|
|
57
57
|
}, z.core.$loose>;
|
|
58
|
-
declare const countriesResponseSchema: z.ZodObject<{
|
|
58
|
+
export declare const countriesResponseSchema: z.ZodObject<{
|
|
59
59
|
rows: z.ZodArray<z.ZodObject<{
|
|
60
60
|
country: z.ZodString;
|
|
61
61
|
clicks: z.ZodNumber;
|
|
@@ -72,13 +72,13 @@ declare const countriesResponseSchema: z.ZodObject<{
|
|
|
72
72
|
engine: "engine";
|
|
73
73
|
}>;
|
|
74
74
|
}, z.core.$loose>;
|
|
75
|
-
declare const searchAppearanceRowSchema: z.ZodObject<{
|
|
75
|
+
export declare const searchAppearanceRowSchema: z.ZodObject<{
|
|
76
76
|
searchAppearance: z.ZodString;
|
|
77
77
|
clicks: z.ZodNumber;
|
|
78
78
|
impressions: z.ZodNumber;
|
|
79
79
|
sum_position: z.ZodNumber;
|
|
80
80
|
}, z.core.$loose>;
|
|
81
|
-
declare const searchAppearanceResponseSchema: z.ZodObject<{
|
|
81
|
+
export declare const searchAppearanceResponseSchema: z.ZodObject<{
|
|
82
82
|
rows: z.ZodArray<z.ZodObject<{
|
|
83
83
|
searchAppearance: z.ZodString;
|
|
84
84
|
clicks: z.ZodNumber;
|
|
@@ -95,7 +95,7 @@ declare const searchAppearanceResponseSchema: z.ZodObject<{
|
|
|
95
95
|
engine: "engine";
|
|
96
96
|
}>;
|
|
97
97
|
}, z.core.$loose>;
|
|
98
|
-
declare const siteListItemSchema: z.ZodObject<{
|
|
98
|
+
export declare const siteListItemSchema: z.ZodObject<{
|
|
99
99
|
id: z.ZodString;
|
|
100
100
|
label: z.ZodString;
|
|
101
101
|
hostname: z.ZodString;
|
|
@@ -109,7 +109,7 @@ declare const siteListItemSchema: z.ZodObject<{
|
|
|
109
109
|
}>>;
|
|
110
110
|
}, z.core.$loose>;
|
|
111
111
|
/** Adaptive recheck schedule shape — must match `ScheduleState` in types.ts. */
|
|
112
|
-
declare const scheduleStateSchema: z.ZodObject<{
|
|
112
|
+
export declare const scheduleStateSchema: z.ZodObject<{
|
|
113
113
|
nextAt: z.ZodNumber;
|
|
114
114
|
consecutiveUnchanged: z.ZodNumber;
|
|
115
115
|
policyVersion: z.ZodNumber;
|
|
@@ -119,7 +119,7 @@ declare const scheduleStateSchema: z.ZodObject<{
|
|
|
119
119
|
* fields surface unchanged from D1; consumers parse on read. `.loose()`
|
|
120
120
|
* preserves forward-compatibility for fields added without a contract bump.
|
|
121
121
|
*/
|
|
122
|
-
declare const inspectionRecordRawSchema: z.ZodObject<{
|
|
122
|
+
export declare const inspectionRecordRawSchema: z.ZodObject<{
|
|
123
123
|
schedule: z.ZodOptional<z.ZodObject<{
|
|
124
124
|
nextAt: z.ZodNumber;
|
|
125
125
|
consecutiveUnchanged: z.ZodNumber;
|
|
@@ -138,7 +138,7 @@ declare const inspectionRecordRawSchema: z.ZodObject<{
|
|
|
138
138
|
richResultsItems: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
139
139
|
inspectionResultLink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
140
140
|
}, z.core.$loose>;
|
|
141
|
-
declare const inspectionHistoryRecordSchema: z.ZodObject<{
|
|
141
|
+
export declare const inspectionHistoryRecordSchema: z.ZodObject<{
|
|
142
142
|
url: z.ZodString;
|
|
143
143
|
inspectedAt: z.ZodString;
|
|
144
144
|
indexStatus: z.ZodOptional<z.ZodString>;
|
|
@@ -171,7 +171,7 @@ declare const inspectionHistoryRecordSchema: z.ZodObject<{
|
|
|
171
171
|
inspectionResultLink: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
172
172
|
}, z.core.$loose>>;
|
|
173
173
|
}, z.core.$loose>;
|
|
174
|
-
declare const inspectionHistoryResponseSchema: z.ZodObject<{
|
|
174
|
+
export declare const inspectionHistoryResponseSchema: z.ZodObject<{
|
|
175
175
|
url: z.ZodNullable<z.ZodString>;
|
|
176
176
|
records: z.ZodArray<z.ZodObject<{
|
|
177
177
|
url: z.ZodString;
|
|
@@ -207,7 +207,7 @@ declare const inspectionHistoryResponseSchema: z.ZodObject<{
|
|
|
207
207
|
}, z.core.$loose>>;
|
|
208
208
|
}, z.core.$loose>>;
|
|
209
209
|
}, z.core.$loose>;
|
|
210
|
-
declare const inspectionIndexSchema: z.ZodObject<{
|
|
210
|
+
export declare const inspectionIndexSchema: z.ZodObject<{
|
|
211
211
|
version: z.ZodLiteral<1>;
|
|
212
212
|
records: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
213
213
|
url: z.ZodString;
|
|
@@ -243,14 +243,14 @@ declare const inspectionIndexSchema: z.ZodObject<{
|
|
|
243
243
|
}, z.core.$loose>>;
|
|
244
244
|
}, z.core.$loose>>;
|
|
245
245
|
}, z.core.$loose>;
|
|
246
|
-
declare const rollupEnvelopeSchema: z.ZodObject<{
|
|
246
|
+
export declare const rollupEnvelopeSchema: z.ZodObject<{
|
|
247
247
|
version: z.ZodLiteral<1>;
|
|
248
248
|
id: z.ZodString;
|
|
249
249
|
builtAt: z.ZodNumber;
|
|
250
250
|
windowDays: z.ZodNullable<z.ZodNumber>;
|
|
251
251
|
payload: z.ZodUnknown;
|
|
252
252
|
}, z.core.$loose>;
|
|
253
|
-
declare const gscRowQueryMetaSchema: z.ZodObject<{
|
|
253
|
+
export declare const gscRowQueryMetaSchema: z.ZodObject<{
|
|
254
254
|
sourceName: z.ZodString;
|
|
255
255
|
sourceKind: z.ZodEnum<{
|
|
256
256
|
row: "row";
|
|
@@ -258,7 +258,7 @@ declare const gscRowQueryMetaSchema: z.ZodObject<{
|
|
|
258
258
|
}>;
|
|
259
259
|
queryMs: z.ZodNumber;
|
|
260
260
|
}, z.core.$loose>;
|
|
261
|
-
declare const gscRowQueryResponseSchema: z.ZodObject<{
|
|
261
|
+
export declare const gscRowQueryResponseSchema: z.ZodObject<{
|
|
262
262
|
rows: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
263
263
|
meta: z.ZodObject<{
|
|
264
264
|
sourceName: z.ZodString;
|
|
@@ -269,13 +269,13 @@ declare const gscRowQueryResponseSchema: z.ZodObject<{
|
|
|
269
269
|
queryMs: z.ZodNumber;
|
|
270
270
|
}, z.core.$loose>;
|
|
271
271
|
}, z.core.$loose>;
|
|
272
|
-
declare const canonicalDifferenceKindSchema: z.ZodEnum<{
|
|
272
|
+
export declare const canonicalDifferenceKindSchema: z.ZodEnum<{
|
|
273
273
|
path: "path";
|
|
274
274
|
none: "none";
|
|
275
275
|
formatting: "formatting";
|
|
276
276
|
cross_domain: "cross_domain";
|
|
277
277
|
}>;
|
|
278
|
-
declare const indexingUrlRowSchema: z.ZodObject<{
|
|
278
|
+
export declare const indexingUrlRowSchema: z.ZodObject<{
|
|
279
279
|
url: z.ZodString;
|
|
280
280
|
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
281
281
|
verdict: z.ZodNullable<z.ZodString>;
|
|
@@ -304,7 +304,7 @@ declare const indexingUrlRowSchema: z.ZodObject<{
|
|
|
304
304
|
lastCheckedAt: z.ZodString;
|
|
305
305
|
checkCount: z.ZodNumber;
|
|
306
306
|
}, z.core.$loose>;
|
|
307
|
-
declare const indexingUrlsResponseSchema: z.ZodObject<{
|
|
307
|
+
export declare const indexingUrlsResponseSchema: z.ZodObject<{
|
|
308
308
|
urls: z.ZodArray<z.ZodObject<{
|
|
309
309
|
url: z.ZodString;
|
|
310
310
|
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -347,8 +347,8 @@ declare const indexingUrlsResponseSchema: z.ZodObject<{
|
|
|
347
347
|
issue: z.ZodNullable<z.ZodString>;
|
|
348
348
|
}, z.core.$loose>;
|
|
349
349
|
}, z.core.$loose>;
|
|
350
|
-
declare const GSCDUMP_INDEXING_TRANSITION_FIELDS: readonly ["indexStatus", "coverageState", "robotsTxtState", "indexingState", "pageFetchState", "googleCanonical"];
|
|
351
|
-
declare const gscdumpIndexingTransitionFieldSchema: z.ZodEnum<{
|
|
350
|
+
export declare const GSCDUMP_INDEXING_TRANSITION_FIELDS: readonly ["indexStatus", "coverageState", "robotsTxtState", "indexingState", "pageFetchState", "googleCanonical"];
|
|
351
|
+
export declare const gscdumpIndexingTransitionFieldSchema: z.ZodEnum<{
|
|
352
352
|
indexStatus: "indexStatus";
|
|
353
353
|
googleCanonical: "googleCanonical";
|
|
354
354
|
coverageState: "coverageState";
|
|
@@ -356,7 +356,7 @@ declare const gscdumpIndexingTransitionFieldSchema: z.ZodEnum<{
|
|
|
356
356
|
indexingState: "indexingState";
|
|
357
357
|
pageFetchState: "pageFetchState";
|
|
358
358
|
}>;
|
|
359
|
-
declare const indexingIssueSchema: z.ZodObject<{
|
|
359
|
+
export declare const indexingIssueSchema: z.ZodObject<{
|
|
360
360
|
type: z.ZodString;
|
|
361
361
|
label: z.ZodString;
|
|
362
362
|
severity: z.ZodEnum<{
|
|
@@ -368,7 +368,7 @@ declare const indexingIssueSchema: z.ZodObject<{
|
|
|
368
368
|
description: z.ZodString;
|
|
369
369
|
fix: z.ZodString;
|
|
370
370
|
}, z.core.$loose>;
|
|
371
|
-
declare const indexingDiagnosticsSchema: z.ZodObject<{
|
|
371
|
+
export declare const indexingDiagnosticsSchema: z.ZodObject<{
|
|
372
372
|
summary: z.ZodObject<{
|
|
373
373
|
totalUrls: z.ZodNumber;
|
|
374
374
|
indexed: z.ZodNumber;
|
|
@@ -419,10 +419,10 @@ declare const indexingDiagnosticsSchema: z.ZodObject<{
|
|
|
419
419
|
siteUrl: z.ZodString;
|
|
420
420
|
}, z.core.$loose>;
|
|
421
421
|
}, z.core.$loose>;
|
|
422
|
-
declare const indexingInspectRequestSchema: z.ZodObject<{
|
|
422
|
+
export declare const indexingInspectRequestSchema: z.ZodObject<{
|
|
423
423
|
urls: z.ZodArray<z.ZodString>;
|
|
424
424
|
}, z.core.$strip>;
|
|
425
|
-
declare const indexingInspectResultSchema: z.ZodObject<{
|
|
425
|
+
export declare const indexingInspectResultSchema: z.ZodObject<{
|
|
426
426
|
url: z.ZodString;
|
|
427
427
|
verdict: z.ZodNullable<z.ZodString>;
|
|
428
428
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
@@ -441,7 +441,7 @@ declare const indexingInspectResultSchema: z.ZodObject<{
|
|
|
441
441
|
richResultsItems: z.ZodNullable<z.ZodString>;
|
|
442
442
|
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
443
443
|
}, z.core.$loose>;
|
|
444
|
-
declare const indexingInspectResponseSchema: z.ZodObject<{
|
|
444
|
+
export declare const indexingInspectResponseSchema: z.ZodObject<{
|
|
445
445
|
siteId: z.ZodString;
|
|
446
446
|
rateLimit: z.ZodObject<{
|
|
447
447
|
reserved: z.ZodNumber;
|
|
@@ -476,7 +476,7 @@ declare const indexingInspectResponseSchema: z.ZodObject<{
|
|
|
476
476
|
reason: z.ZodString;
|
|
477
477
|
}, z.core.$loose>>;
|
|
478
478
|
}, z.core.$loose>;
|
|
479
|
-
declare const indexingInspectRateLimitedSchema: z.ZodObject<{
|
|
479
|
+
export declare const indexingInspectRateLimitedSchema: z.ZodObject<{
|
|
480
480
|
error: z.ZodLiteral<"rate_limited">;
|
|
481
481
|
message: z.ZodString;
|
|
482
482
|
rateLimit: z.ZodObject<{
|
|
@@ -486,7 +486,7 @@ declare const indexingInspectRateLimitedSchema: z.ZodObject<{
|
|
|
486
486
|
}, z.core.$loose>;
|
|
487
487
|
retryAfterSeconds: z.ZodNumber;
|
|
488
488
|
}, z.core.$loose>;
|
|
489
|
-
declare const indexingInspectAnyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
489
|
+
export declare const indexingInspectAnyResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
490
490
|
siteId: z.ZodString;
|
|
491
491
|
rateLimit: z.ZodObject<{
|
|
492
492
|
reserved: z.ZodNumber;
|
|
@@ -530,14 +530,14 @@ declare const indexingInspectAnyResponseSchema: z.ZodUnion<readonly [z.ZodObject
|
|
|
530
530
|
}, z.core.$loose>;
|
|
531
531
|
retryAfterSeconds: z.ZodNumber;
|
|
532
532
|
}, z.core.$loose>]>;
|
|
533
|
-
declare const sitemapChangesTruncationReasonSchema: z.ZodEnum<{
|
|
533
|
+
export declare const sitemapChangesTruncationReasonSchema: z.ZodEnum<{
|
|
534
534
|
scan_limit: "scan_limit";
|
|
535
535
|
added_limit: "added_limit";
|
|
536
536
|
removed_limit: "removed_limit";
|
|
537
537
|
updated_limit: "updated_limit";
|
|
538
538
|
history_unavailable: "history_unavailable";
|
|
539
539
|
}>;
|
|
540
|
-
declare const sitemapChangesCompletenessSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
540
|
+
export declare const sitemapChangesCompletenessSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
541
541
|
_tag: z.ZodLiteral<"complete">;
|
|
542
542
|
scannedUrls: z.ZodNumber;
|
|
543
543
|
}, z.core.$loose>, z.ZodObject<{
|
|
@@ -558,7 +558,7 @@ declare const sitemapChangesCompletenessSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
558
558
|
updated: z.ZodNumber;
|
|
559
559
|
}, z.core.$loose>;
|
|
560
560
|
}, z.core.$loose>], "_tag">;
|
|
561
|
-
declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
561
|
+
export declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
562
562
|
added: z.ZodArray<z.ZodObject<{
|
|
563
563
|
url: z.ZodString;
|
|
564
564
|
sitemap: z.ZodString;
|
|
@@ -599,7 +599,7 @@ declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
|
599
599
|
}, z.core.$loose>;
|
|
600
600
|
}, z.core.$loose>], "_tag">;
|
|
601
601
|
}, z.core.$loose>;
|
|
602
|
-
declare const sourceInfoResponseSchema: z.ZodObject<{
|
|
602
|
+
export declare const sourceInfoResponseSchema: z.ZodObject<{
|
|
603
603
|
name: z.ZodString;
|
|
604
604
|
kind: z.ZodEnum<{
|
|
605
605
|
row: "row";
|
|
@@ -612,26 +612,26 @@ declare const sourceInfoResponseSchema: z.ZodObject<{
|
|
|
612
612
|
browserAttachEligible: z.ZodBoolean;
|
|
613
613
|
identityAttrs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
614
614
|
}, z.core.$loose>;
|
|
615
|
-
declare const whoamiResponseSchema: z.ZodObject<{
|
|
615
|
+
export declare const whoamiResponseSchema: z.ZodObject<{
|
|
616
616
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
617
617
|
plan: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
618
618
|
attrs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
619
619
|
}, z.core.$loose>;
|
|
620
|
-
declare const backfillRangeSchema: z.ZodObject<{
|
|
620
|
+
export declare const backfillRangeSchema: z.ZodObject<{
|
|
621
621
|
startDate: z.ZodString;
|
|
622
622
|
endDate: z.ZodString;
|
|
623
623
|
}, z.core.$loose>;
|
|
624
|
-
declare const backfillResponseSchema: z.ZodObject<{
|
|
624
|
+
export declare const backfillResponseSchema: z.ZodObject<{
|
|
625
625
|
ok: z.ZodOptional<z.ZodBoolean>;
|
|
626
626
|
queued: z.ZodOptional<z.ZodBoolean>;
|
|
627
627
|
}, z.core.$loose>;
|
|
628
|
-
declare const gscdumpTotalsSchema: z.ZodObject<{
|
|
628
|
+
export declare const gscdumpTotalsSchema: z.ZodObject<{
|
|
629
629
|
clicks: z.ZodNumber;
|
|
630
630
|
impressions: z.ZodNumber;
|
|
631
631
|
ctr: z.ZodNumber;
|
|
632
632
|
position: z.ZodNumber;
|
|
633
633
|
}, z.core.$strip>;
|
|
634
|
-
declare const gscdumpMetaSchema: z.ZodObject<{
|
|
634
|
+
export declare const gscdumpMetaSchema: z.ZodObject<{
|
|
635
635
|
siteUrl: z.ZodString;
|
|
636
636
|
syncStatus: z.ZodString;
|
|
637
637
|
newestDateSynced: z.ZodNullable<z.ZodString>;
|
|
@@ -648,13 +648,13 @@ declare const gscdumpMetaSchema: z.ZodObject<{
|
|
|
648
648
|
daysRemaining: z.ZodOptional<z.ZodNumber>;
|
|
649
649
|
}, z.core.$strip>>;
|
|
650
650
|
}, z.core.$loose>;
|
|
651
|
-
declare const gscdumpDataRowSchema: z.ZodObject<{
|
|
651
|
+
export declare const gscdumpDataRowSchema: z.ZodObject<{
|
|
652
652
|
clicks: z.ZodNumber;
|
|
653
653
|
impressions: z.ZodNumber;
|
|
654
654
|
ctr: z.ZodNumber;
|
|
655
655
|
position: z.ZodNumber;
|
|
656
656
|
}, z.core.$loose>;
|
|
657
|
-
declare const gscdumpDataResponseSchema: z.ZodObject<{
|
|
657
|
+
export declare const gscdumpDataResponseSchema: z.ZodObject<{
|
|
658
658
|
rows: z.ZodArray<z.ZodObject<{
|
|
659
659
|
clicks: z.ZodNumber;
|
|
660
660
|
impressions: z.ZodNumber;
|
|
@@ -686,7 +686,7 @@ declare const gscdumpDataResponseSchema: z.ZodObject<{
|
|
|
686
686
|
}, z.core.$strip>>;
|
|
687
687
|
}, z.core.$loose>;
|
|
688
688
|
}, z.core.$strip>;
|
|
689
|
-
declare const gscdumpDataDetailResponseSchema: z.ZodObject<{
|
|
689
|
+
export declare const gscdumpDataDetailResponseSchema: z.ZodObject<{
|
|
690
690
|
daily: z.ZodArray<z.ZodObject<{
|
|
691
691
|
date: z.ZodString;
|
|
692
692
|
clicks: z.ZodNumber;
|
|
@@ -731,7 +731,7 @@ declare const gscdumpDataDetailResponseSchema: z.ZodObject<{
|
|
|
731
731
|
}, z.core.$strip>>;
|
|
732
732
|
}, z.core.$loose>;
|
|
733
733
|
}, z.core.$strip>;
|
|
734
|
-
declare const registerPartnerUserSchema: z.ZodObject<{
|
|
734
|
+
export declare const registerPartnerUserSchema: z.ZodObject<{
|
|
735
735
|
userGoogleId: z.ZodString;
|
|
736
736
|
userEmail: z.ZodEmail;
|
|
737
737
|
userName: z.ZodOptional<z.ZodString>;
|
|
@@ -739,12 +739,12 @@ declare const registerPartnerUserSchema: z.ZodObject<{
|
|
|
739
739
|
refreshToken: z.ZodString;
|
|
740
740
|
tokenExpiresAt: z.ZodOptional<z.ZodNumber>;
|
|
741
741
|
}, z.core.$strip>;
|
|
742
|
-
declare const updatePartnerUserTokensSchema: z.ZodObject<{
|
|
742
|
+
export declare const updatePartnerUserTokensSchema: z.ZodObject<{
|
|
743
743
|
accessToken: z.ZodString;
|
|
744
744
|
refreshToken: z.ZodString;
|
|
745
745
|
tokenExpiresAt: z.ZodOptional<z.ZodNumber>;
|
|
746
746
|
}, z.core.$strip>;
|
|
747
|
-
declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
747
|
+
export declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
748
748
|
userId: z.ZodString;
|
|
749
749
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
750
750
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -753,7 +753,7 @@ declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
|
753
753
|
provisioning: "provisioning";
|
|
754
754
|
}>>;
|
|
755
755
|
}, z.core.$loose>;
|
|
756
|
-
declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
756
|
+
export declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
757
757
|
userId: z.ZodString;
|
|
758
758
|
status: z.ZodEnum<{
|
|
759
759
|
ready: "ready";
|
|
@@ -771,13 +771,13 @@ declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
|
771
771
|
}>>;
|
|
772
772
|
grantedScopes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
773
773
|
}, z.core.$loose>;
|
|
774
|
-
declare const lifecycleProgressSchema: z.ZodObject<{
|
|
774
|
+
export declare const lifecycleProgressSchema: z.ZodObject<{
|
|
775
775
|
completed: z.ZodNumber;
|
|
776
776
|
failed: z.ZodNumber;
|
|
777
777
|
total: z.ZodNumber;
|
|
778
778
|
percent: z.ZodNumber;
|
|
779
779
|
}, z.core.$strip>;
|
|
780
|
-
declare const lifecycleErrorSchema: z.ZodObject<{
|
|
780
|
+
export declare const lifecycleErrorSchema: z.ZodObject<{
|
|
781
781
|
code: z.ZodEnum<{
|
|
782
782
|
missing_refresh_token: "missing_refresh_token";
|
|
783
783
|
missing_analytics_scope: "missing_analytics_scope";
|
|
@@ -795,7 +795,7 @@ declare const lifecycleErrorSchema: z.ZodObject<{
|
|
|
795
795
|
message: z.ZodString;
|
|
796
796
|
retryable: z.ZodBoolean;
|
|
797
797
|
}, z.core.$strip>;
|
|
798
|
-
declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
798
|
+
export declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
799
799
|
status: z.ZodEnum<{
|
|
800
800
|
ready: "ready";
|
|
801
801
|
disconnected: "disconnected";
|
|
@@ -814,7 +814,7 @@ declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
|
814
814
|
none: "none";
|
|
815
815
|
}>;
|
|
816
816
|
}, z.core.$loose>;
|
|
817
|
-
declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
817
|
+
export declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
818
818
|
siteId: z.ZodString;
|
|
819
819
|
intId: z.ZodNullable<z.ZodNumber>;
|
|
820
820
|
catalogSiteId: z.ZodNullable<z.ZodNumber>;
|
|
@@ -943,7 +943,7 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
943
943
|
lifecycleRevision: z.ZodNumber;
|
|
944
944
|
updatedAt: z.ZodString;
|
|
945
945
|
}, z.core.$loose>;
|
|
946
|
-
declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
946
|
+
export declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
947
947
|
contractVersion: z.ZodLiteral<"2026-05-11">;
|
|
948
948
|
userId: z.ZodString;
|
|
949
949
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
@@ -1097,7 +1097,7 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
1097
1097
|
updatedAt: z.ZodString;
|
|
1098
1098
|
}, z.core.$loose>>;
|
|
1099
1099
|
}, z.core.$loose>;
|
|
1100
|
-
declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
1100
|
+
export declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
1101
1101
|
siteUrl: z.ZodString;
|
|
1102
1102
|
permissionLevel: z.ZodString;
|
|
1103
1103
|
registered: z.ZodBoolean;
|
|
@@ -1119,7 +1119,7 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
|
1119
1119
|
newestDateSynced: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1120
1120
|
oldestDateSynced: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1121
1121
|
}, z.core.$loose>;
|
|
1122
|
-
declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
1122
|
+
export declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
1123
1123
|
siteId: z.ZodString;
|
|
1124
1124
|
siteUrl: z.ZodString;
|
|
1125
1125
|
syncStatus: z.ZodEnum<{
|
|
@@ -1133,7 +1133,7 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1133
1133
|
newestDateSynced: z.ZodNullable<z.ZodString>;
|
|
1134
1134
|
oldestDateSynced: z.ZodNullable<z.ZodString>;
|
|
1135
1135
|
}, z.core.$loose>;
|
|
1136
|
-
declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1136
|
+
export declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1137
1137
|
siteId: z.ZodString;
|
|
1138
1138
|
intId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1139
1139
|
catalogSiteId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1284,7 +1284,7 @@ declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
|
1284
1284
|
updatedAt: z.ZodString;
|
|
1285
1285
|
}, z.core.$loose>>>;
|
|
1286
1286
|
}, z.core.$loose>;
|
|
1287
|
-
declare const registerPartnerSiteSchema: z.ZodObject<{
|
|
1287
|
+
export declare const registerPartnerSiteSchema: z.ZodObject<{
|
|
1288
1288
|
userId: z.ZodString;
|
|
1289
1289
|
siteUrl: z.ZodString;
|
|
1290
1290
|
requestedUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -1311,7 +1311,7 @@ declare const registerPartnerSiteSchema: z.ZodObject<{
|
|
|
1311
1311
|
}>>>;
|
|
1312
1312
|
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
1313
1313
|
}, z.core.$strip>;
|
|
1314
|
-
declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
|
|
1314
|
+
export declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
|
|
1315
1315
|
userId: z.ZodOptional<z.ZodString>;
|
|
1316
1316
|
siteUrls: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1317
1317
|
sites: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1339,7 +1339,7 @@ declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
|
|
|
1339
1339
|
}>>>;
|
|
1340
1340
|
}, z.core.$loose>>>;
|
|
1341
1341
|
}, z.core.$strip>;
|
|
1342
|
-
declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
1342
|
+
export declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
1343
1343
|
results: z.ZodArray<z.ZodObject<{
|
|
1344
1344
|
siteUrl: z.ZodString;
|
|
1345
1345
|
siteId: z.ZodOptional<z.ZodString>;
|
|
@@ -1367,7 +1367,7 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1367
1367
|
errors: z.ZodNumber;
|
|
1368
1368
|
}, z.core.$strip>;
|
|
1369
1369
|
}, z.core.$loose>;
|
|
1370
|
-
declare const teamCatalogRefSchema: z.ZodObject<{
|
|
1370
|
+
export declare const teamCatalogRefSchema: z.ZodObject<{
|
|
1371
1371
|
teamId: z.ZodString;
|
|
1372
1372
|
catalogUri: z.ZodNullable<z.ZodString>;
|
|
1373
1373
|
warehouse: z.ZodNullable<z.ZodString>;
|
|
@@ -1378,13 +1378,13 @@ declare const teamCatalogRefSchema: z.ZodObject<{
|
|
|
1378
1378
|
catalogTablesReady: z.ZodBoolean;
|
|
1379
1379
|
readsEnabled: z.ZodBoolean;
|
|
1380
1380
|
}, z.core.$loose>;
|
|
1381
|
-
declare const bindPartnerTeamCatalogSchema: z.ZodObject<{
|
|
1381
|
+
export declare const bindPartnerTeamCatalogSchema: z.ZodObject<{
|
|
1382
1382
|
catalogUri: z.ZodString;
|
|
1383
1383
|
warehouse: z.ZodString;
|
|
1384
1384
|
namespace: z.ZodOptional<z.ZodString>;
|
|
1385
1385
|
bucket: z.ZodOptional<z.ZodString>;
|
|
1386
1386
|
}, z.core.$strip>;
|
|
1387
|
-
declare const bindPartnerTeamCatalogResponseSchema: z.ZodObject<{
|
|
1387
|
+
export declare const bindPartnerTeamCatalogResponseSchema: z.ZodObject<{
|
|
1388
1388
|
teamId: z.ZodString;
|
|
1389
1389
|
status: z.ZodLiteral<"ready">;
|
|
1390
1390
|
catalogUri: z.ZodString;
|
|
@@ -1392,7 +1392,7 @@ declare const bindPartnerTeamCatalogResponseSchema: z.ZodObject<{
|
|
|
1392
1392
|
bucket: z.ZodString;
|
|
1393
1393
|
namespace: z.ZodString;
|
|
1394
1394
|
}, z.core.$loose>;
|
|
1395
|
-
declare const siteIntIdCrosswalkResponseSchema: z.ZodObject<{
|
|
1395
|
+
export declare const siteIntIdCrosswalkResponseSchema: z.ZodObject<{
|
|
1396
1396
|
crosswalk: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1397
1397
|
sites: z.ZodArray<z.ZodObject<{
|
|
1398
1398
|
siteId: z.ZodString;
|
|
@@ -1400,7 +1400,7 @@ declare const siteIntIdCrosswalkResponseSchema: z.ZodObject<{
|
|
|
1400
1400
|
siteUrl: z.ZodString;
|
|
1401
1401
|
}, z.core.$loose>>;
|
|
1402
1402
|
}, z.core.$loose>;
|
|
1403
|
-
declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
1403
|
+
export declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
1404
1404
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
1405
1405
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
1406
1406
|
readonly WEB: "web";
|
|
@@ -1426,7 +1426,7 @@ declare const dataQueryOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1426
1426
|
readonly GOOGLE_NEWS: "googleNews";
|
|
1427
1427
|
}>>;
|
|
1428
1428
|
}, z.core.$strip>>;
|
|
1429
|
-
declare const dataDetailOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
1429
|
+
export declare const dataDetailOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
1430
1430
|
comparison: z.ZodOptional<z.ZodObject<{
|
|
1431
1431
|
searchType: z.ZodOptional<z.ZodEnum<{
|
|
1432
1432
|
readonly WEB: "web";
|
|
@@ -1446,7 +1446,7 @@ declare const dataDetailOptionsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1446
1446
|
readonly GOOGLE_NEWS: "googleNews";
|
|
1447
1447
|
}>>;
|
|
1448
1448
|
}, z.core.$strip>>;
|
|
1449
|
-
declare const gscdumpAnalysisPresetSchema: z.ZodEnum<{
|
|
1449
|
+
export declare const gscdumpAnalysisPresetSchema: z.ZodEnum<{
|
|
1450
1450
|
"striking-distance": "striking-distance";
|
|
1451
1451
|
opportunity: "opportunity";
|
|
1452
1452
|
decay: "decay";
|
|
@@ -1456,7 +1456,7 @@ declare const gscdumpAnalysisPresetSchema: z.ZodEnum<{
|
|
|
1456
1456
|
"movers-rising": "movers-rising";
|
|
1457
1457
|
"movers-declining": "movers-declining";
|
|
1458
1458
|
}>;
|
|
1459
|
-
declare const gscdumpAnalysisBaseParamsSchema: z.ZodObject<{
|
|
1459
|
+
export declare const gscdumpAnalysisBaseParamsSchema: z.ZodObject<{
|
|
1460
1460
|
startDate: z.ZodString;
|
|
1461
1461
|
endDate: z.ZodString;
|
|
1462
1462
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1478,7 +1478,7 @@ declare const gscdumpAnalysisBaseParamsSchema: z.ZodObject<{
|
|
|
1478
1478
|
readonly GOOGLE_NEWS: "googleNews";
|
|
1479
1479
|
}>>;
|
|
1480
1480
|
}, z.core.$strip>;
|
|
1481
|
-
declare const gscdumpAnalysisParamsSchema: z.ZodObject<{
|
|
1481
|
+
export declare const gscdumpAnalysisParamsSchema: z.ZodObject<{
|
|
1482
1482
|
startDate: z.ZodString;
|
|
1483
1483
|
endDate: z.ZodString;
|
|
1484
1484
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
@@ -1510,7 +1510,7 @@ declare const gscdumpAnalysisParamsSchema: z.ZodObject<{
|
|
|
1510
1510
|
"movers-declining": "movers-declining";
|
|
1511
1511
|
}>;
|
|
1512
1512
|
}, z.core.$strip>;
|
|
1513
|
-
declare const gscdumpAnalysisMetaSchema: z.ZodObject<{
|
|
1513
|
+
export declare const gscdumpAnalysisMetaSchema: z.ZodObject<{
|
|
1514
1514
|
siteUrl: z.ZodString;
|
|
1515
1515
|
params: z.ZodObject<{
|
|
1516
1516
|
brandTerms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1521,7 +1521,7 @@ declare const gscdumpAnalysisMetaSchema: z.ZodObject<{
|
|
|
1521
1521
|
}, z.core.$strip>;
|
|
1522
1522
|
presetDescription: z.ZodOptional<z.ZodString>;
|
|
1523
1523
|
}, z.core.$loose>;
|
|
1524
|
-
declare const gscdumpAnalysisResponseSchema: z.ZodObject<{
|
|
1524
|
+
export declare const gscdumpAnalysisResponseSchema: z.ZodObject<{
|
|
1525
1525
|
preset: z.ZodEnum<{
|
|
1526
1526
|
"striking-distance": "striking-distance";
|
|
1527
1527
|
opportunity: "opportunity";
|
|
@@ -1547,7 +1547,7 @@ declare const gscdumpAnalysisResponseSchema: z.ZodObject<{
|
|
|
1547
1547
|
presetDescription: z.ZodOptional<z.ZodString>;
|
|
1548
1548
|
}, z.core.$loose>;
|
|
1549
1549
|
}, z.core.$loose>;
|
|
1550
|
-
declare const gscdumpAnalysisBundleResponseSchema: z.ZodObject<{
|
|
1550
|
+
export declare const gscdumpAnalysisBundleResponseSchema: z.ZodObject<{
|
|
1551
1551
|
bundle: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1552
1552
|
keywords: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1553
1553
|
totalCount: z.ZodNumber;
|
|
@@ -1566,7 +1566,7 @@ declare const gscdumpAnalysisBundleResponseSchema: z.ZodObject<{
|
|
|
1566
1566
|
presetDescription: z.ZodOptional<z.ZodString>;
|
|
1567
1567
|
}, z.core.$loose>;
|
|
1568
1568
|
}, z.core.$loose>;
|
|
1569
|
-
declare const gscdumpSitemapGenerationSchema: z.ZodObject<{
|
|
1569
|
+
export declare const gscdumpSitemapGenerationSchema: z.ZodObject<{
|
|
1570
1570
|
id: z.ZodString;
|
|
1571
1571
|
observedAt: z.ZodNumber;
|
|
1572
1572
|
publishedAt: z.ZodNumber;
|
|
@@ -1583,7 +1583,7 @@ declare const gscdumpSitemapGenerationSchema: z.ZodObject<{
|
|
|
1583
1583
|
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
1584
1584
|
}, z.core.$strict>], "_tag">;
|
|
1585
1585
|
}, z.core.$strict>;
|
|
1586
|
-
declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
1586
|
+
export declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
1587
1587
|
sitemaps: z.ZodArray<z.ZodObject<{
|
|
1588
1588
|
path: z.ZodString;
|
|
1589
1589
|
urlCount: z.ZodNumber;
|
|
@@ -1636,7 +1636,7 @@ declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
|
1636
1636
|
}, z.core.$strict>], "_tag">;
|
|
1637
1637
|
}, z.core.$strict>>>;
|
|
1638
1638
|
}, z.core.$loose>;
|
|
1639
|
-
declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
1639
|
+
export declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
1640
1640
|
added: z.ZodArray<z.ZodObject<{
|
|
1641
1641
|
url: z.ZodString;
|
|
1642
1642
|
sitemap: z.ZodString;
|
|
@@ -1701,7 +1701,7 @@ declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
|
1701
1701
|
}, z.core.$strict>], "_tag">;
|
|
1702
1702
|
}, z.core.$strict>>>;
|
|
1703
1703
|
}, z.core.$loose>;
|
|
1704
|
-
declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1704
|
+
export declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1705
1705
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1706
1706
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
1707
1707
|
status: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1713,11 +1713,11 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1713
1713
|
search: z.ZodOptional<z.ZodString>;
|
|
1714
1714
|
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<false>]>>;
|
|
1715
1715
|
}, z.core.$strip>>;
|
|
1716
|
-
declare const indexingDiagnosticsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1716
|
+
export declare const indexingDiagnosticsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1717
1717
|
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1718
1718
|
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
1719
1719
|
}, z.core.$strip>>;
|
|
1720
|
-
declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
1720
|
+
export declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
1721
1721
|
trend: z.ZodArray<z.ZodObject<{
|
|
1722
1722
|
date: z.ZodString;
|
|
1723
1723
|
totalUrls: z.ZodNumber;
|
|
@@ -1785,7 +1785,7 @@ declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
|
1785
1785
|
rollupBuiltAt: z.ZodOptional<z.ZodNumber>;
|
|
1786
1786
|
}, z.core.$loose>;
|
|
1787
1787
|
}, z.core.$loose>;
|
|
1788
|
-
declare const gscdumpIndexingUrlsResponseSchema: z.ZodObject<{
|
|
1788
|
+
export declare const gscdumpIndexingUrlsResponseSchema: z.ZodObject<{
|
|
1789
1789
|
urls: z.ZodArray<z.ZodObject<{
|
|
1790
1790
|
url: z.ZodString;
|
|
1791
1791
|
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1827,7 +1827,7 @@ declare const gscdumpIndexingUrlsResponseSchema: z.ZodObject<{
|
|
|
1827
1827
|
issue: z.ZodNullable<z.ZodString>;
|
|
1828
1828
|
}, z.core.$loose>;
|
|
1829
1829
|
}, z.core.$loose>;
|
|
1830
|
-
declare const gscdumpIndexingDiagnosticsResponseSchema: z.ZodObject<{
|
|
1830
|
+
export declare const gscdumpIndexingDiagnosticsResponseSchema: z.ZodObject<{
|
|
1831
1831
|
summary: z.ZodObject<{
|
|
1832
1832
|
totalUrls: z.ZodNumber;
|
|
1833
1833
|
indexed: z.ZodNumber;
|
|
@@ -1878,16 +1878,16 @@ declare const gscdumpIndexingDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
1878
1878
|
siteUrl: z.ZodString;
|
|
1879
1879
|
}, z.core.$loose>;
|
|
1880
1880
|
}, z.core.$loose>;
|
|
1881
|
-
declare const gscdumpUserSettingsSchema: z.ZodObject<{
|
|
1881
|
+
export declare const gscdumpUserSettingsSchema: z.ZodObject<{
|
|
1882
1882
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
1883
1883
|
}, z.core.$loose>;
|
|
1884
|
-
declare const gscdumpPermissionRecoverySchema: z.ZodObject<{
|
|
1884
|
+
export declare const gscdumpPermissionRecoverySchema: z.ZodObject<{
|
|
1885
1885
|
success: z.ZodBoolean;
|
|
1886
1886
|
permissionLevel: z.ZodNullable<z.ZodString>;
|
|
1887
1887
|
jobsQueued: z.ZodNumber;
|
|
1888
1888
|
message: z.ZodString;
|
|
1889
1889
|
}, z.core.$loose>;
|
|
1890
|
-
declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
1890
|
+
export declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
1891
1891
|
id: z.ZodString;
|
|
1892
1892
|
name: z.ZodOptional<z.ZodString>;
|
|
1893
1893
|
email: z.ZodString;
|
|
@@ -1918,7 +1918,7 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
|
1918
1918
|
lastUsed: z.ZodNullable<z.ZodNumber>;
|
|
1919
1919
|
}, z.core.$strip>>;
|
|
1920
1920
|
}, z.core.$loose>;
|
|
1921
|
-
declare const gscdumpHealthResponseSchema: z.ZodObject<{
|
|
1921
|
+
export declare const gscdumpHealthResponseSchema: z.ZodObject<{
|
|
1922
1922
|
timestamp: z.ZodNumber;
|
|
1923
1923
|
jobs: z.ZodObject<{
|
|
1924
1924
|
byStatus: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
@@ -1941,7 +1941,7 @@ declare const gscdumpHealthResponseSchema: z.ZodObject<{
|
|
|
1941
1941
|
byPlan: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
1942
1942
|
}, z.core.$loose>;
|
|
1943
1943
|
}, z.core.$loose>;
|
|
1944
|
-
declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
1944
|
+
export declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
1945
1945
|
summary: z.ZodObject<{
|
|
1946
1946
|
total: z.ZodNumber;
|
|
1947
1947
|
inInitial: z.ZodNumber;
|
|
@@ -2022,7 +2022,7 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
2022
2022
|
}, z.core.$loose>;
|
|
2023
2023
|
hasD1Stats: z.ZodBoolean;
|
|
2024
2024
|
}, z.core.$loose>;
|
|
2025
|
-
declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
2025
|
+
export declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
2026
2026
|
jobs: z.ZodArray<z.ZodObject<{
|
|
2027
2027
|
id: z.ZodNumber;
|
|
2028
2028
|
userSiteId: z.ZodNullable<z.ZodString>;
|
|
@@ -2072,7 +2072,7 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
|
2072
2072
|
}, z.core.$loose>>;
|
|
2073
2073
|
}, z.core.$loose>>;
|
|
2074
2074
|
}, z.core.$loose>;
|
|
2075
|
-
declare const gscdumpSiteReportResponseSchema: z.ZodObject<{
|
|
2075
|
+
export declare const gscdumpSiteReportResponseSchema: z.ZodObject<{
|
|
2076
2076
|
status: z.ZodEnum<{
|
|
2077
2077
|
error: "error";
|
|
2078
2078
|
done: "done";
|
|
@@ -2081,7 +2081,7 @@ declare const gscdumpSiteReportResponseSchema: z.ZodObject<{
|
|
|
2081
2081
|
result: z.ZodOptional<z.ZodUnknown>;
|
|
2082
2082
|
error: z.ZodOptional<z.ZodString>;
|
|
2083
2083
|
}, z.core.$loose>;
|
|
2084
|
-
declare const gscdumpTopAssociationParamsSchema: z.ZodObject<{
|
|
2084
|
+
export declare const gscdumpTopAssociationParamsSchema: z.ZodObject<{
|
|
2085
2085
|
type: z.ZodEnum<{
|
|
2086
2086
|
topPage: "topPage";
|
|
2087
2087
|
topKeyword: "topKeyword";
|
|
@@ -2090,10 +2090,10 @@ declare const gscdumpTopAssociationParamsSchema: z.ZodObject<{
|
|
|
2090
2090
|
startDate: z.ZodString;
|
|
2091
2091
|
endDate: z.ZodString;
|
|
2092
2092
|
}, z.core.$strip>;
|
|
2093
|
-
declare const gscdumpTopAssociationResponseSchema: z.ZodObject<{
|
|
2093
|
+
export declare const gscdumpTopAssociationResponseSchema: z.ZodObject<{
|
|
2094
2094
|
value: z.ZodNullable<z.ZodString>;
|
|
2095
2095
|
}, z.core.$loose>;
|
|
2096
|
-
declare const gscdumpAnalysisSourcesResponseSchema: z.ZodObject<{
|
|
2096
|
+
export declare const gscdumpAnalysisSourcesResponseSchema: z.ZodObject<{
|
|
2097
2097
|
siteId: z.ZodString;
|
|
2098
2098
|
searchType: z.ZodEnum<{
|
|
2099
2099
|
readonly WEB: "web";
|
|
@@ -2153,14 +2153,14 @@ declare const gscdumpAnalysisSourcesResponseSchema: z.ZodObject<{
|
|
|
2153
2153
|
maxFiles: z.ZodNumber;
|
|
2154
2154
|
}, z.core.$strip>;
|
|
2155
2155
|
}, z.core.$loose>;
|
|
2156
|
-
declare const queryDimSourceResponseSchema: z.ZodObject<{
|
|
2156
|
+
export declare const queryDimSourceResponseSchema: z.ZodObject<{
|
|
2157
2157
|
file: z.ZodNullable<z.ZodObject<{
|
|
2158
2158
|
url: z.ZodString;
|
|
2159
2159
|
bytes: z.ZodNumber;
|
|
2160
2160
|
contentHash: z.ZodString;
|
|
2161
2161
|
}, z.core.$loose>>;
|
|
2162
2162
|
}, z.core.$loose>;
|
|
2163
|
-
declare const bulkFileResolutionResponseSchema: z.ZodObject<{
|
|
2163
|
+
export declare const bulkFileResolutionResponseSchema: z.ZodObject<{
|
|
2164
2164
|
generatedAt: z.ZodString;
|
|
2165
2165
|
siteCount: z.ZodNumber;
|
|
2166
2166
|
maxSites: z.ZodNumber;
|
|
@@ -2225,7 +2225,7 @@ declare const bulkFileResolutionResponseSchema: z.ZodObject<{
|
|
|
2225
2225
|
}, z.core.$strip>;
|
|
2226
2226
|
}, z.core.$loose>>;
|
|
2227
2227
|
}, z.core.$loose>;
|
|
2228
|
-
declare const gscdumpKeywordSparklinesParamsSchema: z.ZodObject<{
|
|
2228
|
+
export declare const gscdumpKeywordSparklinesParamsSchema: z.ZodObject<{
|
|
2229
2229
|
keywords: z.ZodArray<z.ZodString>;
|
|
2230
2230
|
startDate: z.ZodString;
|
|
2231
2231
|
endDate: z.ZodString;
|
|
@@ -2238,10 +2238,10 @@ declare const gscdumpKeywordSparklinesParamsSchema: z.ZodObject<{
|
|
|
2238
2238
|
readonly GOOGLE_NEWS: "googleNews";
|
|
2239
2239
|
}>>;
|
|
2240
2240
|
}, z.core.$strip>;
|
|
2241
|
-
declare const gscdumpKeywordSparklinesResponseSchema: z.ZodObject<{
|
|
2241
|
+
export declare const gscdumpKeywordSparklinesResponseSchema: z.ZodObject<{
|
|
2242
2242
|
sparklines: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodNumber>>;
|
|
2243
2243
|
}, z.core.$loose>;
|
|
2244
|
-
declare const gscdumpQueryTrendParamsSchema: z.ZodObject<{
|
|
2244
|
+
export declare const gscdumpQueryTrendParamsSchema: z.ZodObject<{
|
|
2245
2245
|
startDate: z.ZodString;
|
|
2246
2246
|
endDate: z.ZodString;
|
|
2247
2247
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2255,7 +2255,7 @@ declare const gscdumpQueryTrendParamsSchema: z.ZodObject<{
|
|
|
2255
2255
|
readonly GOOGLE_NEWS: "googleNews";
|
|
2256
2256
|
}>>;
|
|
2257
2257
|
}, z.core.$strip>;
|
|
2258
|
-
declare const gscdumpQueryTrendResponseSchema: z.ZodObject<{
|
|
2258
|
+
export declare const gscdumpQueryTrendResponseSchema: z.ZodObject<{
|
|
2259
2259
|
daily: z.ZodArray<z.ZodObject<{
|
|
2260
2260
|
date: z.ZodString;
|
|
2261
2261
|
queryCount: z.ZodNumber;
|
|
@@ -2267,7 +2267,7 @@ declare const gscdumpQueryTrendResponseSchema: z.ZodObject<{
|
|
|
2267
2267
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
2268
2268
|
}, z.core.$loose>;
|
|
2269
2269
|
}, z.core.$loose>;
|
|
2270
|
-
declare const gscdumpPageTrendParamsSchema: z.ZodObject<{
|
|
2270
|
+
export declare const gscdumpPageTrendParamsSchema: z.ZodObject<{
|
|
2271
2271
|
startDate: z.ZodString;
|
|
2272
2272
|
endDate: z.ZodString;
|
|
2273
2273
|
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
@@ -2281,7 +2281,7 @@ declare const gscdumpPageTrendParamsSchema: z.ZodObject<{
|
|
|
2281
2281
|
readonly GOOGLE_NEWS: "googleNews";
|
|
2282
2282
|
}>>;
|
|
2283
2283
|
}, z.core.$strip>;
|
|
2284
|
-
declare const gscdumpPageTrendResponseSchema: z.ZodObject<{
|
|
2284
|
+
export declare const gscdumpPageTrendResponseSchema: z.ZodObject<{
|
|
2285
2285
|
daily: z.ZodArray<z.ZodObject<{
|
|
2286
2286
|
date: z.ZodString;
|
|
2287
2287
|
pageCount: z.ZodNumber;
|
|
@@ -2293,12 +2293,12 @@ declare const gscdumpPageTrendResponseSchema: z.ZodObject<{
|
|
|
2293
2293
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
2294
2294
|
}, z.core.$loose>;
|
|
2295
2295
|
}, z.core.$loose>;
|
|
2296
|
-
declare const gscdumpIndexPercentParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
2296
|
+
export declare const gscdumpIndexPercentParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
2297
2297
|
invisibleLimit: z.ZodOptional<z.ZodNumber>;
|
|
2298
2298
|
invisibleOffset: z.ZodOptional<z.ZodNumber>;
|
|
2299
2299
|
orphanLimit: z.ZodOptional<z.ZodNumber>;
|
|
2300
2300
|
}, z.core.$strip>>;
|
|
2301
|
-
declare const gscdumpCanonicalMismatchesResponseSchema: z.ZodObject<{
|
|
2301
|
+
export declare const gscdumpCanonicalMismatchesResponseSchema: z.ZodObject<{
|
|
2302
2302
|
mismatches: z.ZodArray<z.ZodObject<{
|
|
2303
2303
|
url: z.ZodString;
|
|
2304
2304
|
userCanonical: z.ZodString;
|
|
@@ -2326,7 +2326,7 @@ declare const gscdumpCanonicalMismatchesResponseSchema: z.ZodObject<{
|
|
|
2326
2326
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
2327
2327
|
}, z.core.$loose>;
|
|
2328
2328
|
}, z.core.$loose>;
|
|
2329
|
-
declare const gscdumpIndexPercentResponseSchema: z.ZodObject<{
|
|
2329
|
+
export declare const gscdumpIndexPercentResponseSchema: z.ZodObject<{
|
|
2330
2330
|
trend: z.ZodArray<z.ZodObject<{
|
|
2331
2331
|
date: z.ZodString;
|
|
2332
2332
|
percent: z.ZodNumber;
|
|
@@ -2366,18 +2366,18 @@ declare const gscdumpIndexPercentResponseSchema: z.ZodObject<{
|
|
|
2366
2366
|
newestDateSynced: z.ZodNullable<z.ZodString>;
|
|
2367
2367
|
}, z.core.$loose>;
|
|
2368
2368
|
}, z.core.$loose>;
|
|
2369
|
-
declare const gscdumpDeletePartnerUserResponseSchema: z.ZodObject<{
|
|
2369
|
+
export declare const gscdumpDeletePartnerUserResponseSchema: z.ZodObject<{
|
|
2370
2370
|
ok: z.ZodLiteral<true>;
|
|
2371
2371
|
queued: z.ZodLiteral<true>;
|
|
2372
2372
|
userId: z.ZodNumber;
|
|
2373
2373
|
publicId: z.ZodString;
|
|
2374
2374
|
}, z.core.$loose>;
|
|
2375
|
-
declare const gscdumpTeamRoleSchema: z.ZodEnum<{
|
|
2375
|
+
export declare const gscdumpTeamRoleSchema: z.ZodEnum<{
|
|
2376
2376
|
admin: "admin";
|
|
2377
2377
|
editor: "editor";
|
|
2378
2378
|
viewer: "viewer";
|
|
2379
2379
|
}>;
|
|
2380
|
-
declare const gscdumpTeamRowSchema: z.ZodObject<{
|
|
2380
|
+
export declare const gscdumpTeamRowSchema: z.ZodObject<{
|
|
2381
2381
|
id: z.ZodString;
|
|
2382
2382
|
ownerId: z.ZodNumber;
|
|
2383
2383
|
name: z.ZodString;
|
|
@@ -2385,7 +2385,7 @@ declare const gscdumpTeamRowSchema: z.ZodObject<{
|
|
|
2385
2385
|
createdAt: z.ZodNumber;
|
|
2386
2386
|
updatedAt: z.ZodNumber;
|
|
2387
2387
|
}, z.core.$loose>;
|
|
2388
|
-
declare const gscdumpTeamMemberRowSchema: z.ZodObject<{
|
|
2388
|
+
export declare const gscdumpTeamMemberRowSchema: z.ZodObject<{
|
|
2389
2389
|
userId: z.ZodNumber;
|
|
2390
2390
|
publicId: z.ZodString;
|
|
2391
2391
|
name: z.ZodNullable<z.ZodString>;
|
|
@@ -2398,15 +2398,15 @@ declare const gscdumpTeamMemberRowSchema: z.ZodObject<{
|
|
|
2398
2398
|
}>;
|
|
2399
2399
|
joinedAt: z.ZodNumber;
|
|
2400
2400
|
}, z.core.$loose>;
|
|
2401
|
-
declare const createPartnerTeamSchema: z.ZodObject<{
|
|
2401
|
+
export declare const createPartnerTeamSchema: z.ZodObject<{
|
|
2402
2402
|
ownerUserId: z.ZodString;
|
|
2403
2403
|
name: z.ZodString;
|
|
2404
2404
|
personalTeam: z.ZodOptional<z.ZodBoolean>;
|
|
2405
2405
|
}, z.core.$strip>;
|
|
2406
|
-
declare const renamePartnerTeamSchema: z.ZodObject<{
|
|
2406
|
+
export declare const renamePartnerTeamSchema: z.ZodObject<{
|
|
2407
2407
|
name: z.ZodString;
|
|
2408
2408
|
}, z.core.$strip>;
|
|
2409
|
-
declare const addPartnerTeamMemberSchema: z.ZodObject<{
|
|
2409
|
+
export declare const addPartnerTeamMemberSchema: z.ZodObject<{
|
|
2410
2410
|
userId: z.ZodString;
|
|
2411
2411
|
role: z.ZodEnum<{
|
|
2412
2412
|
admin: "admin";
|
|
@@ -2414,10 +2414,10 @@ declare const addPartnerTeamMemberSchema: z.ZodObject<{
|
|
|
2414
2414
|
viewer: "viewer";
|
|
2415
2415
|
}>;
|
|
2416
2416
|
}, z.core.$strip>;
|
|
2417
|
-
declare const bindPartnerSiteTeamSchema: z.ZodObject<{
|
|
2417
|
+
export declare const bindPartnerSiteTeamSchema: z.ZodObject<{
|
|
2418
2418
|
teamId: z.ZodNullable<z.ZodString>;
|
|
2419
2419
|
}, z.core.$strip>;
|
|
2420
|
-
declare const partnerTeamCreatedResponseSchema: z.ZodObject<{
|
|
2420
|
+
export declare const partnerTeamCreatedResponseSchema: z.ZodObject<{
|
|
2421
2421
|
team: z.ZodObject<{
|
|
2422
2422
|
id: z.ZodString;
|
|
2423
2423
|
ownerId: z.ZodNumber;
|
|
@@ -2427,14 +2427,14 @@ declare const partnerTeamCreatedResponseSchema: z.ZodObject<{
|
|
|
2427
2427
|
updatedAt: z.ZodNumber;
|
|
2428
2428
|
}, z.core.$loose>;
|
|
2429
2429
|
}, z.core.$loose>;
|
|
2430
|
-
declare const partnerTeamRenamedResponseSchema: z.ZodObject<{
|
|
2430
|
+
export declare const partnerTeamRenamedResponseSchema: z.ZodObject<{
|
|
2431
2431
|
ok: z.ZodLiteral<true>;
|
|
2432
2432
|
name: z.ZodString;
|
|
2433
2433
|
}, z.core.$loose>;
|
|
2434
|
-
declare const partnerTeamDeletedResponseSchema: z.ZodObject<{
|
|
2434
|
+
export declare const partnerTeamDeletedResponseSchema: z.ZodObject<{
|
|
2435
2435
|
ok: z.ZodLiteral<true>;
|
|
2436
2436
|
}, z.core.$loose>;
|
|
2437
|
-
declare const partnerTeamMembersResponseSchema: z.ZodObject<{
|
|
2437
|
+
export declare const partnerTeamMembersResponseSchema: z.ZodObject<{
|
|
2438
2438
|
members: z.ZodArray<z.ZodObject<{
|
|
2439
2439
|
userId: z.ZodNumber;
|
|
2440
2440
|
publicId: z.ZodString;
|
|
@@ -2449,7 +2449,7 @@ declare const partnerTeamMembersResponseSchema: z.ZodObject<{
|
|
|
2449
2449
|
joinedAt: z.ZodNumber;
|
|
2450
2450
|
}, z.core.$loose>>;
|
|
2451
2451
|
}, z.core.$loose>;
|
|
2452
|
-
declare const partnerTeamMemberAddedResponseSchema: z.ZodObject<{
|
|
2452
|
+
export declare const partnerTeamMemberAddedResponseSchema: z.ZodObject<{
|
|
2453
2453
|
ok: z.ZodLiteral<true>;
|
|
2454
2454
|
role: z.ZodEnum<{
|
|
2455
2455
|
admin: "admin";
|
|
@@ -2458,7 +2458,7 @@ declare const partnerTeamMemberAddedResponseSchema: z.ZodObject<{
|
|
|
2458
2458
|
}>;
|
|
2459
2459
|
alreadyExisted: z.ZodOptional<z.ZodBoolean>;
|
|
2460
2460
|
}, z.core.$loose>;
|
|
2461
|
-
declare const partnerTeamMemberRoleResponseSchema: z.ZodObject<{
|
|
2461
|
+
export declare const partnerTeamMemberRoleResponseSchema: z.ZodObject<{
|
|
2462
2462
|
ok: z.ZodLiteral<true>;
|
|
2463
2463
|
role: z.ZodEnum<{
|
|
2464
2464
|
admin: "admin";
|
|
@@ -2466,14 +2466,14 @@ declare const partnerTeamMemberRoleResponseSchema: z.ZodObject<{
|
|
|
2466
2466
|
viewer: "viewer";
|
|
2467
2467
|
}>;
|
|
2468
2468
|
}, z.core.$loose>;
|
|
2469
|
-
declare const partnerTeamMemberRemovedResponseSchema: z.ZodObject<{
|
|
2469
|
+
export declare const partnerTeamMemberRemovedResponseSchema: z.ZodObject<{
|
|
2470
2470
|
ok: z.ZodLiteral<true>;
|
|
2471
2471
|
}, z.core.$loose>;
|
|
2472
|
-
declare const partnerSiteTeamBindingResponseSchema: z.ZodObject<{
|
|
2472
|
+
export declare const partnerSiteTeamBindingResponseSchema: z.ZodObject<{
|
|
2473
2473
|
ok: z.ZodLiteral<true>;
|
|
2474
2474
|
teamId: z.ZodNullable<z.ZodString>;
|
|
2475
2475
|
}, z.core.$loose>;
|
|
2476
|
-
declare const gscVerificationMethodSchema: z.ZodEnum<{
|
|
2476
|
+
export declare const gscVerificationMethodSchema: z.ZodEnum<{
|
|
2477
2477
|
META: "META";
|
|
2478
2478
|
FILE: "FILE";
|
|
2479
2479
|
DNS_TXT: "DNS_TXT";
|
|
@@ -2481,14 +2481,14 @@ declare const gscVerificationMethodSchema: z.ZodEnum<{
|
|
|
2481
2481
|
ANALYTICS: "ANALYTICS";
|
|
2482
2482
|
TAG_MANAGER: "TAG_MANAGER";
|
|
2483
2483
|
}>;
|
|
2484
|
-
declare const gscVerificationSiteSchema: z.ZodObject<{
|
|
2484
|
+
export declare const gscVerificationSiteSchema: z.ZodObject<{
|
|
2485
2485
|
type: z.ZodEnum<{
|
|
2486
2486
|
SITE: "SITE";
|
|
2487
2487
|
INET_DOMAIN: "INET_DOMAIN";
|
|
2488
2488
|
}>;
|
|
2489
2489
|
identifier: z.ZodString;
|
|
2490
2490
|
}, z.core.$strip>;
|
|
2491
|
-
declare const gscVerificationDnsRecordSchema: z.ZodObject<{
|
|
2491
|
+
export declare const gscVerificationDnsRecordSchema: z.ZodObject<{
|
|
2492
2492
|
type: z.ZodEnum<{
|
|
2493
2493
|
TXT: "TXT";
|
|
2494
2494
|
CNAME: "CNAME";
|
|
@@ -2496,7 +2496,7 @@ declare const gscVerificationDnsRecordSchema: z.ZodObject<{
|
|
|
2496
2496
|
host: z.ZodString;
|
|
2497
2497
|
value: z.ZodString;
|
|
2498
2498
|
}, z.core.$strip>;
|
|
2499
|
-
declare const gscVerificationRequestSchema: z.ZodObject<{
|
|
2499
|
+
export declare const gscVerificationRequestSchema: z.ZodObject<{
|
|
2500
2500
|
userId: z.ZodOptional<z.ZodString>;
|
|
2501
2501
|
siteUrl: z.ZodString;
|
|
2502
2502
|
method: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2508,7 +2508,7 @@ declare const gscVerificationRequestSchema: z.ZodObject<{
|
|
|
2508
2508
|
TAG_MANAGER: "TAG_MANAGER";
|
|
2509
2509
|
}>>;
|
|
2510
2510
|
}, z.core.$strip>;
|
|
2511
|
-
declare const gscVerificationTokenResponseSchema: z.ZodObject<{
|
|
2511
|
+
export declare const gscVerificationTokenResponseSchema: z.ZodObject<{
|
|
2512
2512
|
siteUrl: z.ZodString;
|
|
2513
2513
|
site: z.ZodObject<{
|
|
2514
2514
|
type: z.ZodEnum<{
|
|
@@ -2536,7 +2536,7 @@ declare const gscVerificationTokenResponseSchema: z.ZodObject<{
|
|
|
2536
2536
|
value: z.ZodString;
|
|
2537
2537
|
}, z.core.$strip>>;
|
|
2538
2538
|
}, z.core.$loose>;
|
|
2539
|
-
declare const gscAddAndVerifyResponseSchema: z.ZodObject<{
|
|
2539
|
+
export declare const gscAddAndVerifyResponseSchema: z.ZodObject<{
|
|
2540
2540
|
siteUrl: z.ZodString;
|
|
2541
2541
|
site: z.ZodObject<{
|
|
2542
2542
|
type: z.ZodEnum<{
|
|
@@ -2556,7 +2556,7 @@ declare const gscAddAndVerifyResponseSchema: z.ZodObject<{
|
|
|
2556
2556
|
verified: z.ZodLiteral<true>;
|
|
2557
2557
|
owners: z.ZodArray<z.ZodString>;
|
|
2558
2558
|
}, z.core.$loose>;
|
|
2559
|
-
declare const partnerRealtimeEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2559
|
+
export declare const partnerRealtimeEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2560
2560
|
event: z.ZodLiteral<"sync.progress">;
|
|
2561
2561
|
siteId: z.ZodString;
|
|
2562
2562
|
siteUrl: z.ZodString;
|
|
@@ -2667,7 +2667,7 @@ declare const partnerRealtimeEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2667
2667
|
indexedCount: z.ZodNumber;
|
|
2668
2668
|
timestamp: z.ZodNumber;
|
|
2669
2669
|
}, z.core.$loose>], "event">;
|
|
2670
|
-
declare const canonicalWebhookEventTypeSchema: z.ZodEnum<{
|
|
2670
|
+
export declare const canonicalWebhookEventTypeSchema: z.ZodEnum<{
|
|
2671
2671
|
"user.lifecycle.changed": "user.lifecycle.changed";
|
|
2672
2672
|
"site.lifecycle.changed": "site.lifecycle.changed";
|
|
2673
2673
|
"site.analytics.ready": "site.analytics.ready";
|
|
@@ -2675,8 +2675,8 @@ declare const canonicalWebhookEventTypeSchema: z.ZodEnum<{
|
|
|
2675
2675
|
"site.auth.failed": "site.auth.failed";
|
|
2676
2676
|
"job.failed": "job.failed";
|
|
2677
2677
|
}>;
|
|
2678
|
-
declare const partnerWebhookDataSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2679
|
-
declare const partnerWebhookEnvelopeSchema: z.ZodObject<{
|
|
2678
|
+
export declare const partnerWebhookDataSchema: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2679
|
+
export declare const partnerWebhookEnvelopeSchema: z.ZodObject<{
|
|
2680
2680
|
contractVersion: z.ZodLiteral<"2026-05-11">;
|
|
2681
2681
|
deliveryId: z.ZodString;
|
|
2682
2682
|
event: z.ZodEnum<{
|
|
@@ -2696,7 +2696,7 @@ declare const partnerWebhookEnvelopeSchema: z.ZodObject<{
|
|
|
2696
2696
|
occurredAt: z.ZodISODateTime;
|
|
2697
2697
|
data: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
2698
2698
|
}, z.core.$loose>;
|
|
2699
|
-
declare const analyticsEndpointSchemas: {
|
|
2699
|
+
export declare const analyticsEndpointSchemas: {
|
|
2700
2700
|
readonly analyticsWhoami: {
|
|
2701
2701
|
readonly response: z.ZodObject<{
|
|
2702
2702
|
userId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3162,7 +3162,7 @@ declare const analyticsEndpointSchemas: {
|
|
|
3162
3162
|
* `submit`/`delete` operate on a specific sitemap URL (feedpath required),
|
|
3163
3163
|
* `refresh` re-fetches the GSC sitemap index and records health.
|
|
3164
3164
|
*/
|
|
3165
|
-
declare const partnerSitemapActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3165
|
+
export declare const partnerSitemapActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3166
3166
|
action: z.ZodLiteral<"submit">;
|
|
3167
3167
|
sitemapUrl: z.ZodString;
|
|
3168
3168
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3173,7 +3173,7 @@ declare const partnerSitemapActionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3173
3173
|
}, z.core.$strip>, z.ZodObject<{
|
|
3174
3174
|
action: z.ZodLiteral<"auto-discover">;
|
|
3175
3175
|
}, z.core.$strip>], "action">;
|
|
3176
|
-
declare const partnerSitemapActionResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3176
|
+
export declare const partnerSitemapActionResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3177
3177
|
success: z.ZodBoolean;
|
|
3178
3178
|
action: z.ZodEnum<{
|
|
3179
3179
|
deleted: "deleted";
|
|
@@ -3193,11 +3193,11 @@ declare const partnerSitemapActionResponseSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3193
3193
|
submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3194
3194
|
sitemapCount: z.ZodNumber;
|
|
3195
3195
|
}, z.core.$loose>], "action">;
|
|
3196
|
-
declare const gscdumpSitemapMembershipParamsSchema: z.ZodObject<{
|
|
3196
|
+
export declare const gscdumpSitemapMembershipParamsSchema: z.ZodObject<{
|
|
3197
3197
|
urls: z.ZodArray<z.ZodString>;
|
|
3198
3198
|
generationId: z.ZodOptional<z.ZodString>;
|
|
3199
3199
|
}, z.core.$strict>;
|
|
3200
|
-
declare const gscdumpSitemapMembershipEvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3200
|
+
export declare const gscdumpSitemapMembershipEvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3201
3201
|
_tag: z.ZodLiteral<"present">;
|
|
3202
3202
|
url: z.ZodString;
|
|
3203
3203
|
feedpath: z.ZodString;
|
|
@@ -3219,7 +3219,7 @@ declare const gscdumpSitemapMembershipEvidenceSchema: z.ZodDiscriminatedUnion<[z
|
|
|
3219
3219
|
invalid_url: "invalid_url";
|
|
3220
3220
|
}>;
|
|
3221
3221
|
}, z.core.$strict>], "_tag">;
|
|
3222
|
-
declare const gscdumpSitemapMembershipResponseSchema: z.ZodObject<{
|
|
3222
|
+
export declare const gscdumpSitemapMembershipResponseSchema: z.ZodObject<{
|
|
3223
3223
|
generation: z.ZodNullable<z.ZodObject<{
|
|
3224
3224
|
id: z.ZodString;
|
|
3225
3225
|
observedAt: z.ZodNumber;
|
|
@@ -3265,13 +3265,13 @@ declare const gscdumpSitemapMembershipResponseSchema: z.ZodObject<{
|
|
|
3265
3265
|
matched: z.ZodNumber;
|
|
3266
3266
|
}, z.core.$strict>;
|
|
3267
3267
|
}, z.core.$strict>;
|
|
3268
|
-
declare const gscdumpSitemapUrlsQuerySchema: z.ZodObject<{
|
|
3268
|
+
export declare const gscdumpSitemapUrlsQuerySchema: z.ZodObject<{
|
|
3269
3269
|
generationId: z.ZodOptional<z.ZodString>;
|
|
3270
3270
|
feedpath: z.ZodOptional<z.ZodString>;
|
|
3271
3271
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3272
3272
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3273
3273
|
}, z.core.$strict>;
|
|
3274
|
-
declare const gscdumpSitemapUrlsResponseSchema: z.ZodObject<{
|
|
3274
|
+
export declare const gscdumpSitemapUrlsResponseSchema: z.ZodObject<{
|
|
3275
3275
|
generation: z.ZodObject<{
|
|
3276
3276
|
id: z.ZodString;
|
|
3277
3277
|
observedAt: z.ZodNumber;
|
|
@@ -3301,11 +3301,11 @@ declare const gscdumpSitemapUrlsResponseSchema: z.ZodObject<{
|
|
|
3301
3301
|
limit: z.ZodNumber;
|
|
3302
3302
|
}, z.core.$strict>;
|
|
3303
3303
|
}, z.core.$strict>;
|
|
3304
|
-
declare const gscdumpSitemapExportQuerySchema: z.ZodObject<{
|
|
3304
|
+
export declare const gscdumpSitemapExportQuerySchema: z.ZodObject<{
|
|
3305
3305
|
generationId: z.ZodOptional<z.ZodString>;
|
|
3306
3306
|
feedpath: z.ZodOptional<z.ZodString>;
|
|
3307
3307
|
}, z.core.$strict>;
|
|
3308
|
-
declare const gscdumpSitemapExportResponseSchema: z.ZodObject<{
|
|
3308
|
+
export declare const gscdumpSitemapExportResponseSchema: z.ZodObject<{
|
|
3309
3309
|
generation: z.ZodObject<{
|
|
3310
3310
|
id: z.ZodString;
|
|
3311
3311
|
observedAt: z.ZodNumber;
|
|
@@ -3340,7 +3340,7 @@ declare const gscdumpSitemapExportResponseSchema: z.ZodObject<{
|
|
|
3340
3340
|
}>;
|
|
3341
3341
|
}, z.core.$strict>], "_tag">;
|
|
3342
3342
|
}, z.core.$strict>;
|
|
3343
|
-
declare const partnerControlEndpointSchemas: {
|
|
3343
|
+
export declare const partnerControlEndpointSchemas: {
|
|
3344
3344
|
readonly appUser: {
|
|
3345
3345
|
readonly response: z.ZodObject<{
|
|
3346
3346
|
id: z.ZodString;
|
|
@@ -5039,7 +5039,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
5039
5039
|
}, z.core.$loose>;
|
|
5040
5040
|
};
|
|
5041
5041
|
};
|
|
5042
|
-
declare const partnerEndpointSchemas: {
|
|
5042
|
+
export declare const partnerEndpointSchemas: {
|
|
5043
5043
|
readonly appUser: {
|
|
5044
5044
|
readonly response: z.ZodObject<{
|
|
5045
5045
|
id: z.ZodString;
|
|
@@ -7196,5 +7196,4 @@ declare const partnerEndpointSchemas: {
|
|
|
7196
7196
|
identityAttrs: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
7197
7197
|
}, z.core.$loose>;
|
|
7198
7198
|
};
|
|
7199
|
-
};
|
|
7200
|
-
export { GSCDUMP_INDEXING_TRANSITION_FIELDS, SEARCH_TYPE_CAPABILITIES, addPartnerTeamMemberSchema, analyticsEndpointSchemas, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, bindPartnerTeamCatalogResponseSchema, bindPartnerTeamCatalogSchema, builderStateSchema, bulkFileResolutionResponseSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalDifferenceKindSchema, 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, gscdumpIndexingTransitionFieldSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapExportQuerySchema, gscdumpSitemapExportResponseSchema, gscdumpSitemapGenerationSchema, gscdumpSitemapMembershipEvidenceSchema, gscdumpSitemapMembershipParamsSchema, gscdumpSitemapMembershipResponseSchema, gscdumpSitemapUrlsQuerySchema, gscdumpSitemapUrlsResponseSchema, 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, 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, sitemapChangesCompletenessSchema, sitemapChangesResponseSchema, sitemapChangesTruncationReasonSchema, sourceInfoResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema, whoamiResponseSchema };
|
|
7199
|
+
};
|