@gscdump/contracts 1.5.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics.d.mts +2 -2
- package/dist/endpoints.d.mts +0 -216
- package/dist/endpoints.mjs +0 -7
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +2 -2
- package/dist/partner.d.mts +2 -2
- package/dist/routes.d.mts +0 -6
- package/dist/routes.mjs +0 -6
- package/dist/schemas.d.mts +214 -438
- package/dist/schemas.mjs +103 -53
- package/dist/types.d.mts +77 -44
- package/dist/v1/operations.d.mts +669 -42
- package/dist/v1/operations.mjs +169 -12
- package/package.json +1 -1
package/dist/schemas.d.mts
CHANGED
|
@@ -113,17 +113,6 @@ declare const siteListItemSchema: z.ZodObject<{
|
|
|
113
113
|
r2: "r2";
|
|
114
114
|
}>>;
|
|
115
115
|
}, z.core.$loose>;
|
|
116
|
-
declare const sitemapHistoryRecordSchema: z.ZodObject<{
|
|
117
|
-
path: z.ZodString;
|
|
118
|
-
capturedAt: z.ZodString;
|
|
119
|
-
}, z.core.$loose>;
|
|
120
|
-
declare const sitemapHistoryResponseSchema: z.ZodObject<{
|
|
121
|
-
path: z.ZodNullable<z.ZodString>;
|
|
122
|
-
snapshots: z.ZodArray<z.ZodObject<{
|
|
123
|
-
path: z.ZodString;
|
|
124
|
-
capturedAt: z.ZodString;
|
|
125
|
-
}, z.core.$loose>>;
|
|
126
|
-
}, z.core.$loose>;
|
|
127
116
|
/** Adaptive recheck schedule shape — must match `ScheduleState` in types.ts. */
|
|
128
117
|
declare const scheduleStateSchema: z.ZodObject<{
|
|
129
118
|
nextAt: z.ZodNumber;
|
|
@@ -223,13 +212,6 @@ declare const inspectionHistoryResponseSchema: z.ZodObject<{
|
|
|
223
212
|
}, z.core.$loose>>;
|
|
224
213
|
}, z.core.$loose>>;
|
|
225
214
|
}, z.core.$loose>;
|
|
226
|
-
declare const sitemapIndexSchema: z.ZodObject<{
|
|
227
|
-
version: z.ZodLiteral<1>;
|
|
228
|
-
records: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
229
|
-
path: z.ZodString;
|
|
230
|
-
capturedAt: z.ZodString;
|
|
231
|
-
}, z.core.$loose>>;
|
|
232
|
-
}, z.core.$loose>;
|
|
233
215
|
declare const inspectionIndexSchema: z.ZodObject<{
|
|
234
216
|
version: z.ZodLiteral<1>;
|
|
235
217
|
records: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -557,6 +539,8 @@ declare const sitemapChangesTruncationReasonSchema: z.ZodEnum<{
|
|
|
557
539
|
scan_limit: "scan_limit";
|
|
558
540
|
added_limit: "added_limit";
|
|
559
541
|
removed_limit: "removed_limit";
|
|
542
|
+
updated_limit: "updated_limit";
|
|
543
|
+
history_unavailable: "history_unavailable";
|
|
560
544
|
}>;
|
|
561
545
|
declare const sitemapChangesCompletenessSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
562
546
|
_tag: z.ZodLiteral<"complete">;
|
|
@@ -568,11 +552,15 @@ declare const sitemapChangesCompletenessSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
568
552
|
scan_limit: "scan_limit";
|
|
569
553
|
added_limit: "added_limit";
|
|
570
554
|
removed_limit: "removed_limit";
|
|
555
|
+
updated_limit: "updated_limit";
|
|
556
|
+
history_unavailable: "history_unavailable";
|
|
571
557
|
}>>;
|
|
558
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
572
559
|
limits: z.ZodObject<{
|
|
573
560
|
scannedUrls: z.ZodNumber;
|
|
574
561
|
added: z.ZodNumber;
|
|
575
562
|
removed: z.ZodNumber;
|
|
563
|
+
updated: z.ZodNumber;
|
|
576
564
|
}, z.core.$loose>;
|
|
577
565
|
}, z.core.$loose>], "_tag">;
|
|
578
566
|
declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
@@ -589,6 +577,7 @@ declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
|
589
577
|
summary: z.ZodObject<{
|
|
590
578
|
totalAdded: z.ZodNumber;
|
|
591
579
|
totalRemoved: z.ZodNumber;
|
|
580
|
+
totalUpdated: z.ZodNumber;
|
|
592
581
|
period: z.ZodObject<{
|
|
593
582
|
days: z.ZodNumber;
|
|
594
583
|
}, z.core.$strip>;
|
|
@@ -603,11 +592,15 @@ declare const sitemapChangesResponseSchema: z.ZodObject<{
|
|
|
603
592
|
scan_limit: "scan_limit";
|
|
604
593
|
added_limit: "added_limit";
|
|
605
594
|
removed_limit: "removed_limit";
|
|
595
|
+
updated_limit: "updated_limit";
|
|
596
|
+
history_unavailable: "history_unavailable";
|
|
606
597
|
}>>;
|
|
598
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
607
599
|
limits: z.ZodObject<{
|
|
608
600
|
scannedUrls: z.ZodNumber;
|
|
609
601
|
added: z.ZodNumber;
|
|
610
602
|
removed: z.ZodNumber;
|
|
603
|
+
updated: z.ZodNumber;
|
|
611
604
|
}, z.core.$loose>;
|
|
612
605
|
}, z.core.$loose>], "_tag">;
|
|
613
606
|
}, z.core.$loose>;
|
|
@@ -1578,6 +1571,23 @@ declare const gscdumpAnalysisBundleResponseSchema: z.ZodObject<{
|
|
|
1578
1571
|
presetDescription: z.ZodOptional<z.ZodString>;
|
|
1579
1572
|
}, z.core.$loose>;
|
|
1580
1573
|
}, z.core.$loose>;
|
|
1574
|
+
declare const gscdumpSitemapGenerationSchema: z.ZodObject<{
|
|
1575
|
+
id: z.ZodString;
|
|
1576
|
+
observedAt: z.ZodNumber;
|
|
1577
|
+
publishedAt: z.ZodNumber;
|
|
1578
|
+
completeness: z.ZodObject<{
|
|
1579
|
+
_tag: z.ZodLiteral<"complete">;
|
|
1580
|
+
}, z.core.$strict>;
|
|
1581
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
1582
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1583
|
+
_tag: z.ZodLiteral<"none">;
|
|
1584
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1585
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
1586
|
+
importedAt: z.ZodNumber;
|
|
1587
|
+
recordCount: z.ZodNumber;
|
|
1588
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
1589
|
+
}, z.core.$strict>], "_tag">;
|
|
1590
|
+
}, z.core.$strict>;
|
|
1581
1591
|
declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
1582
1592
|
sitemaps: z.ZodArray<z.ZodObject<{
|
|
1583
1593
|
path: z.ZodString;
|
|
@@ -1613,6 +1623,23 @@ declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
|
1613
1623
|
duplicateCount: z.ZodNumber;
|
|
1614
1624
|
}, z.core.$strip>;
|
|
1615
1625
|
}, z.core.$loose>;
|
|
1626
|
+
generation: z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
1627
|
+
id: z.ZodString;
|
|
1628
|
+
observedAt: z.ZodNumber;
|
|
1629
|
+
publishedAt: z.ZodNumber;
|
|
1630
|
+
completeness: z.ZodObject<{
|
|
1631
|
+
_tag: z.ZodLiteral<"complete">;
|
|
1632
|
+
}, z.core.$strict>;
|
|
1633
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
1634
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1635
|
+
_tag: z.ZodLiteral<"none">;
|
|
1636
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1637
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
1638
|
+
importedAt: z.ZodNumber;
|
|
1639
|
+
recordCount: z.ZodNumber;
|
|
1640
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
1641
|
+
}, z.core.$strict>], "_tag">;
|
|
1642
|
+
}, z.core.$strict>>>;
|
|
1616
1643
|
}, z.core.$loose>;
|
|
1617
1644
|
declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
1618
1645
|
added: z.ZodArray<z.ZodObject<{
|
|
@@ -1625,9 +1652,17 @@ declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
|
1625
1652
|
sitemap: z.ZodString;
|
|
1626
1653
|
removedAt: z.ZodNumber;
|
|
1627
1654
|
}, z.core.$loose>>;
|
|
1655
|
+
updated: z.ZodArray<z.ZodObject<{
|
|
1656
|
+
url: z.ZodString;
|
|
1657
|
+
sitemap: z.ZodString;
|
|
1658
|
+
previousLastmod: z.ZodNullable<z.ZodString>;
|
|
1659
|
+
lastmod: z.ZodNullable<z.ZodString>;
|
|
1660
|
+
observedAt: z.ZodNumber;
|
|
1661
|
+
}, z.core.$loose>>;
|
|
1628
1662
|
summary: z.ZodOptional<z.ZodObject<{
|
|
1629
1663
|
totalAdded: z.ZodNumber;
|
|
1630
1664
|
totalRemoved: z.ZodNumber;
|
|
1665
|
+
totalUpdated: z.ZodNumber;
|
|
1631
1666
|
period: z.ZodObject<{
|
|
1632
1667
|
days: z.ZodNumber;
|
|
1633
1668
|
}, z.core.$strip>;
|
|
@@ -1642,13 +1677,34 @@ declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
|
1642
1677
|
scan_limit: "scan_limit";
|
|
1643
1678
|
added_limit: "added_limit";
|
|
1644
1679
|
removed_limit: "removed_limit";
|
|
1680
|
+
updated_limit: "updated_limit";
|
|
1681
|
+
history_unavailable: "history_unavailable";
|
|
1645
1682
|
}>>;
|
|
1683
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
1646
1684
|
limits: z.ZodObject<{
|
|
1647
1685
|
scannedUrls: z.ZodNumber;
|
|
1648
1686
|
added: z.ZodNumber;
|
|
1649
1687
|
removed: z.ZodNumber;
|
|
1688
|
+
updated: z.ZodNumber;
|
|
1650
1689
|
}, z.core.$loose>;
|
|
1651
1690
|
}, z.core.$loose>], "_tag">;
|
|
1691
|
+
generation: z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
1692
|
+
id: z.ZodString;
|
|
1693
|
+
observedAt: z.ZodNumber;
|
|
1694
|
+
publishedAt: z.ZodNumber;
|
|
1695
|
+
completeness: z.ZodObject<{
|
|
1696
|
+
_tag: z.ZodLiteral<"complete">;
|
|
1697
|
+
}, z.core.$strict>;
|
|
1698
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
1699
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1700
|
+
_tag: z.ZodLiteral<"none">;
|
|
1701
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1702
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
1703
|
+
importedAt: z.ZodNumber;
|
|
1704
|
+
recordCount: z.ZodNumber;
|
|
1705
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
1706
|
+
}, z.core.$strict>], "_tag">;
|
|
1707
|
+
}, z.core.$strict>>>;
|
|
1652
1708
|
}, z.core.$loose>;
|
|
1653
1709
|
declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1654
1710
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2706,24 +2762,6 @@ declare const analyticsEndpointSchemas: {
|
|
|
2706
2762
|
}>;
|
|
2707
2763
|
}, z.core.$loose>;
|
|
2708
2764
|
};
|
|
2709
|
-
readonly analyticsSitemapHistory: {
|
|
2710
|
-
readonly response: z.ZodObject<{
|
|
2711
|
-
path: z.ZodNullable<z.ZodString>;
|
|
2712
|
-
snapshots: z.ZodArray<z.ZodObject<{
|
|
2713
|
-
path: z.ZodString;
|
|
2714
|
-
capturedAt: z.ZodString;
|
|
2715
|
-
}, z.core.$loose>>;
|
|
2716
|
-
}, z.core.$loose>;
|
|
2717
|
-
};
|
|
2718
|
-
readonly analyticsSitemaps: {
|
|
2719
|
-
readonly response: z.ZodObject<{
|
|
2720
|
-
version: z.ZodLiteral<1>;
|
|
2721
|
-
records: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2722
|
-
path: z.ZodString;
|
|
2723
|
-
capturedAt: z.ZodString;
|
|
2724
|
-
}, z.core.$loose>>;
|
|
2725
|
-
}, z.core.$loose>;
|
|
2726
|
-
};
|
|
2727
2765
|
readonly analyticsInspectionHistory: {
|
|
2728
2766
|
readonly response: z.ZodObject<{
|
|
2729
2767
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -2970,44 +3008,6 @@ declare const analyticsEndpointSchemas: {
|
|
|
2970
3008
|
retryAfterSeconds: z.ZodNumber;
|
|
2971
3009
|
}, z.core.$loose>]>;
|
|
2972
3010
|
};
|
|
2973
|
-
readonly analyticsSitemapChanges: {
|
|
2974
|
-
readonly response: z.ZodObject<{
|
|
2975
|
-
added: z.ZodArray<z.ZodObject<{
|
|
2976
|
-
url: z.ZodString;
|
|
2977
|
-
sitemap: z.ZodString;
|
|
2978
|
-
firstSeenAt: z.ZodNumber;
|
|
2979
|
-
}, z.core.$loose>>;
|
|
2980
|
-
removed: z.ZodArray<z.ZodObject<{
|
|
2981
|
-
url: z.ZodString;
|
|
2982
|
-
sitemap: z.ZodString;
|
|
2983
|
-
removedAt: z.ZodNumber;
|
|
2984
|
-
}, z.core.$loose>>;
|
|
2985
|
-
summary: z.ZodObject<{
|
|
2986
|
-
totalAdded: z.ZodNumber;
|
|
2987
|
-
totalRemoved: z.ZodNumber;
|
|
2988
|
-
period: z.ZodObject<{
|
|
2989
|
-
days: z.ZodNumber;
|
|
2990
|
-
}, z.core.$strip>;
|
|
2991
|
-
}, z.core.$loose>;
|
|
2992
|
-
completeness: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2993
|
-
_tag: z.ZodLiteral<"complete">;
|
|
2994
|
-
scannedUrls: z.ZodNumber;
|
|
2995
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
2996
|
-
_tag: z.ZodLiteral<"truncated">;
|
|
2997
|
-
scannedUrls: z.ZodNumber;
|
|
2998
|
-
reasons: z.ZodArray<z.ZodEnum<{
|
|
2999
|
-
scan_limit: "scan_limit";
|
|
3000
|
-
added_limit: "added_limit";
|
|
3001
|
-
removed_limit: "removed_limit";
|
|
3002
|
-
}>>;
|
|
3003
|
-
limits: z.ZodObject<{
|
|
3004
|
-
scannedUrls: z.ZodNumber;
|
|
3005
|
-
added: z.ZodNumber;
|
|
3006
|
-
removed: z.ZodNumber;
|
|
3007
|
-
}, z.core.$loose>;
|
|
3008
|
-
}, z.core.$loose>], "_tag">;
|
|
3009
|
-
}, z.core.$loose>;
|
|
3010
|
-
};
|
|
3011
3011
|
readonly analyticsAnalysisSources: {
|
|
3012
3012
|
readonly response: z.ZodObject<{
|
|
3013
3013
|
siteId: z.ZodString;
|
|
@@ -3163,7 +3163,7 @@ declare const analyticsEndpointSchemas: {
|
|
|
3163
3163
|
};
|
|
3164
3164
|
};
|
|
3165
3165
|
/**
|
|
3166
|
-
* Body for
|
|
3166
|
+
* Body for the public v1 sitemap action operation. One endpoint, four actions:
|
|
3167
3167
|
* `submit`/`delete` operate on a specific sitemap URL (feedpath required),
|
|
3168
3168
|
* `refresh` re-fetches the GSC sitemap index and records health.
|
|
3169
3169
|
*/
|
|
@@ -3200,41 +3200,151 @@ declare const partnerSitemapActionResponseSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3200
3200
|
}, z.core.$loose>], "action">;
|
|
3201
3201
|
declare const gscdumpSitemapMembershipParamsSchema: z.ZodObject<{
|
|
3202
3202
|
urls: z.ZodArray<z.ZodString>;
|
|
3203
|
-
|
|
3204
|
-
}, z.core.$
|
|
3205
|
-
declare const
|
|
3203
|
+
generationId: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
}, z.core.$strict>;
|
|
3205
|
+
declare const gscdumpSitemapMembershipEvidenceSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3206
|
+
_tag: z.ZodLiteral<"present">;
|
|
3206
3207
|
url: z.ZodString;
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
lastSeenAt: z.
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3208
|
+
feedpath: z.ZodString;
|
|
3209
|
+
lastmod: z.ZodNullable<z.ZodString>;
|
|
3210
|
+
firstSeenAt: z.ZodNumber;
|
|
3211
|
+
lastSeenAt: z.ZodNumber;
|
|
3212
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3213
|
+
_tag: z.ZodLiteral<"absent">;
|
|
3214
|
+
url: z.ZodString;
|
|
3215
|
+
observedAt: z.ZodNumber;
|
|
3216
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3217
|
+
_tag: z.ZodLiteral<"unknown">;
|
|
3218
|
+
url: z.ZodString;
|
|
3219
|
+
reason: z.ZodEnum<{
|
|
3220
|
+
no_generation: "no_generation";
|
|
3221
|
+
generation_not_found: "generation_not_found";
|
|
3222
|
+
generation_incomplete: "generation_incomplete";
|
|
3223
|
+
history_pruned: "history_pruned";
|
|
3224
|
+
invalid_url: "invalid_url";
|
|
3225
|
+
}>;
|
|
3226
|
+
}, z.core.$strict>], "_tag">;
|
|
3214
3227
|
declare const gscdumpSitemapMembershipResponseSchema: z.ZodObject<{
|
|
3215
|
-
|
|
3228
|
+
generation: z.ZodNullable<z.ZodObject<{
|
|
3229
|
+
id: z.ZodString;
|
|
3230
|
+
observedAt: z.ZodNumber;
|
|
3231
|
+
publishedAt: z.ZodNumber;
|
|
3232
|
+
completeness: z.ZodObject<{
|
|
3233
|
+
_tag: z.ZodLiteral<"complete">;
|
|
3234
|
+
}, z.core.$strict>;
|
|
3235
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
3236
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3237
|
+
_tag: z.ZodLiteral<"none">;
|
|
3238
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3239
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
3240
|
+
importedAt: z.ZodNumber;
|
|
3241
|
+
recordCount: z.ZodNumber;
|
|
3242
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
3243
|
+
}, z.core.$strict>], "_tag">;
|
|
3244
|
+
}, z.core.$strict>>;
|
|
3245
|
+
evidence: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3246
|
+
_tag: z.ZodLiteral<"present">;
|
|
3216
3247
|
url: z.ZodString;
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
lastSeenAt: z.
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3248
|
+
feedpath: z.ZodString;
|
|
3249
|
+
lastmod: z.ZodNullable<z.ZodString>;
|
|
3250
|
+
firstSeenAt: z.ZodNumber;
|
|
3251
|
+
lastSeenAt: z.ZodNumber;
|
|
3252
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3253
|
+
_tag: z.ZodLiteral<"absent">;
|
|
3254
|
+
url: z.ZodString;
|
|
3255
|
+
observedAt: z.ZodNumber;
|
|
3256
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3257
|
+
_tag: z.ZodLiteral<"unknown">;
|
|
3258
|
+
url: z.ZodString;
|
|
3259
|
+
reason: z.ZodEnum<{
|
|
3260
|
+
no_generation: "no_generation";
|
|
3261
|
+
generation_not_found: "generation_not_found";
|
|
3262
|
+
generation_incomplete: "generation_incomplete";
|
|
3263
|
+
history_pruned: "history_pruned";
|
|
3264
|
+
invalid_url: "invalid_url";
|
|
3265
|
+
}>;
|
|
3266
|
+
}, z.core.$strict>], "_tag">>;
|
|
3224
3267
|
meta: z.ZodObject<{
|
|
3225
|
-
available: z.ZodBoolean;
|
|
3226
|
-
reason: z.ZodNullable<z.ZodEnum<{
|
|
3227
|
-
empty: "empty";
|
|
3228
|
-
endpoint_unavailable: "endpoint_unavailable";
|
|
3229
|
-
site_url_cap_exceeded: "site_url_cap_exceeded";
|
|
3230
|
-
stale_sitemaps: "stale_sitemaps";
|
|
3231
|
-
}>>;
|
|
3232
3268
|
requested: z.ZodNumber;
|
|
3233
3269
|
checked: z.ZodNumber;
|
|
3234
3270
|
matched: z.ZodNumber;
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3271
|
+
}, z.core.$strict>;
|
|
3272
|
+
}, z.core.$strict>;
|
|
3273
|
+
declare const gscdumpSitemapUrlsQuerySchema: z.ZodObject<{
|
|
3274
|
+
generationId: z.ZodOptional<z.ZodString>;
|
|
3275
|
+
feedpath: z.ZodOptional<z.ZodString>;
|
|
3276
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
3277
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3278
|
+
}, z.core.$strict>;
|
|
3279
|
+
declare const gscdumpSitemapUrlsResponseSchema: z.ZodObject<{
|
|
3280
|
+
generation: z.ZodObject<{
|
|
3281
|
+
id: z.ZodString;
|
|
3282
|
+
observedAt: z.ZodNumber;
|
|
3283
|
+
publishedAt: z.ZodNumber;
|
|
3284
|
+
completeness: z.ZodObject<{
|
|
3285
|
+
_tag: z.ZodLiteral<"complete">;
|
|
3286
|
+
}, z.core.$strict>;
|
|
3287
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
3288
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3289
|
+
_tag: z.ZodLiteral<"none">;
|
|
3290
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3291
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
3292
|
+
importedAt: z.ZodNumber;
|
|
3293
|
+
recordCount: z.ZodNumber;
|
|
3294
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
3295
|
+
}, z.core.$strict>], "_tag">;
|
|
3296
|
+
}, z.core.$strict>;
|
|
3297
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3298
|
+
url: z.ZodString;
|
|
3299
|
+
feedpath: z.ZodString;
|
|
3300
|
+
lastmod: z.ZodNullable<z.ZodString>;
|
|
3301
|
+
firstSeenAt: z.ZodNumber;
|
|
3302
|
+
lastSeenAt: z.ZodNumber;
|
|
3303
|
+
}, z.core.$strict>>;
|
|
3304
|
+
page: z.ZodObject<{
|
|
3305
|
+
nextCursor: z.ZodNullable<z.ZodString>;
|
|
3306
|
+
limit: z.ZodNumber;
|
|
3307
|
+
}, z.core.$strict>;
|
|
3308
|
+
}, z.core.$strict>;
|
|
3309
|
+
declare const gscdumpSitemapExportQuerySchema: z.ZodObject<{
|
|
3310
|
+
generationId: z.ZodOptional<z.ZodString>;
|
|
3311
|
+
feedpath: z.ZodOptional<z.ZodString>;
|
|
3312
|
+
}, z.core.$strict>;
|
|
3313
|
+
declare const gscdumpSitemapExportResponseSchema: z.ZodObject<{
|
|
3314
|
+
generation: z.ZodObject<{
|
|
3315
|
+
id: z.ZodString;
|
|
3316
|
+
observedAt: z.ZodNumber;
|
|
3317
|
+
publishedAt: z.ZodNumber;
|
|
3318
|
+
completeness: z.ZodObject<{
|
|
3319
|
+
_tag: z.ZodLiteral<"complete">;
|
|
3320
|
+
}, z.core.$strict>;
|
|
3321
|
+
membershipHistoryAvailableFrom: z.ZodNullable<z.ZodNumber>;
|
|
3322
|
+
legacyImport: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3323
|
+
_tag: z.ZodLiteral<"none">;
|
|
3324
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3325
|
+
_tag: z.ZodLiteral<"metadata_only">;
|
|
3326
|
+
importedAt: z.ZodNumber;
|
|
3327
|
+
recordCount: z.ZodNumber;
|
|
3328
|
+
source: z.ZodLiteral<"gsc_sitemaps">;
|
|
3329
|
+
}, z.core.$strict>], "_tag">;
|
|
3330
|
+
}, z.core.$strict>;
|
|
3331
|
+
export: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3332
|
+
_tag: z.ZodLiteral<"url">;
|
|
3333
|
+
url: z.ZodURL;
|
|
3334
|
+
expiresAt: z.ZodNumber;
|
|
3335
|
+
contentType: z.ZodLiteral<"application/x-ndjson">;
|
|
3336
|
+
contentEncoding: z.ZodEnum<{
|
|
3337
|
+
identity: "identity";
|
|
3338
|
+
gzip: "gzip";
|
|
3339
|
+
}>;
|
|
3340
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3341
|
+
_tag: z.ZodLiteral<"unavailable">;
|
|
3342
|
+
reason: z.ZodEnum<{
|
|
3343
|
+
generation_not_found: "generation_not_found";
|
|
3344
|
+
export_unavailable: "export_unavailable";
|
|
3345
|
+
}>;
|
|
3346
|
+
}, z.core.$strict>], "_tag">;
|
|
3347
|
+
}, z.core.$strict>;
|
|
3238
3348
|
declare const partnerControlEndpointSchemas: {
|
|
3239
3349
|
readonly appUser: {
|
|
3240
3350
|
readonly response: z.ZodObject<{
|
|
@@ -4156,145 +4266,6 @@ declare const partnerControlEndpointSchemas: {
|
|
|
4156
4266
|
}, z.core.$loose>;
|
|
4157
4267
|
}, z.core.$strip>;
|
|
4158
4268
|
};
|
|
4159
|
-
readonly getSitemaps: {
|
|
4160
|
-
readonly response: z.ZodObject<{
|
|
4161
|
-
sitemaps: z.ZodArray<z.ZodObject<{
|
|
4162
|
-
path: z.ZodString;
|
|
4163
|
-
urlCount: z.ZodNumber;
|
|
4164
|
-
errors: z.ZodNumber;
|
|
4165
|
-
warnings: z.ZodNumber;
|
|
4166
|
-
isIndex: z.ZodOptional<z.ZodBoolean>;
|
|
4167
|
-
contentHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4168
|
-
lastDownloaded: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4169
|
-
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4170
|
-
isPending: z.ZodOptional<z.ZodBoolean>;
|
|
4171
|
-
fetchedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4172
|
-
}, z.core.$loose>>;
|
|
4173
|
-
history: z.ZodArray<z.ZodObject<{
|
|
4174
|
-
date: z.ZodString;
|
|
4175
|
-
errors: z.ZodNumber;
|
|
4176
|
-
warnings: z.ZodNumber;
|
|
4177
|
-
urlCount: z.ZodNumber;
|
|
4178
|
-
urlDelta: z.ZodNumber;
|
|
4179
|
-
}, z.core.$loose>>;
|
|
4180
|
-
perSitemapHistory: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4181
|
-
date: z.ZodString;
|
|
4182
|
-
urlCount: z.ZodNumber;
|
|
4183
|
-
changed: z.ZodBoolean;
|
|
4184
|
-
urlDelta: z.ZodNumber;
|
|
4185
|
-
}, z.core.$loose>>>;
|
|
4186
|
-
meta: z.ZodObject<{
|
|
4187
|
-
siteUrl: z.ZodString;
|
|
4188
|
-
gscPropertyUrl: z.ZodOptional<z.ZodString>;
|
|
4189
|
-
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4190
|
-
sitemapScope: z.ZodObject<{
|
|
4191
|
-
excludedCount: z.ZodNumber;
|
|
4192
|
-
duplicateCount: z.ZodNumber;
|
|
4193
|
-
}, z.core.$strip>;
|
|
4194
|
-
}, z.core.$loose>;
|
|
4195
|
-
}, z.core.$loose>;
|
|
4196
|
-
};
|
|
4197
|
-
readonly getSitemapChanges: {
|
|
4198
|
-
readonly response: z.ZodObject<{
|
|
4199
|
-
added: z.ZodArray<z.ZodObject<{
|
|
4200
|
-
url: z.ZodString;
|
|
4201
|
-
sitemap: z.ZodString;
|
|
4202
|
-
firstSeenAt: z.ZodNumber;
|
|
4203
|
-
}, z.core.$loose>>;
|
|
4204
|
-
removed: z.ZodArray<z.ZodObject<{
|
|
4205
|
-
url: z.ZodString;
|
|
4206
|
-
sitemap: z.ZodString;
|
|
4207
|
-
removedAt: z.ZodNumber;
|
|
4208
|
-
}, z.core.$loose>>;
|
|
4209
|
-
summary: z.ZodOptional<z.ZodObject<{
|
|
4210
|
-
totalAdded: z.ZodNumber;
|
|
4211
|
-
totalRemoved: z.ZodNumber;
|
|
4212
|
-
period: z.ZodObject<{
|
|
4213
|
-
days: z.ZodNumber;
|
|
4214
|
-
}, z.core.$strip>;
|
|
4215
|
-
}, z.core.$strip>>;
|
|
4216
|
-
completeness: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4217
|
-
_tag: z.ZodLiteral<"complete">;
|
|
4218
|
-
scannedUrls: z.ZodNumber;
|
|
4219
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
4220
|
-
_tag: z.ZodLiteral<"truncated">;
|
|
4221
|
-
scannedUrls: z.ZodNumber;
|
|
4222
|
-
reasons: z.ZodArray<z.ZodEnum<{
|
|
4223
|
-
scan_limit: "scan_limit";
|
|
4224
|
-
added_limit: "added_limit";
|
|
4225
|
-
removed_limit: "removed_limit";
|
|
4226
|
-
}>>;
|
|
4227
|
-
limits: z.ZodObject<{
|
|
4228
|
-
scannedUrls: z.ZodNumber;
|
|
4229
|
-
added: z.ZodNumber;
|
|
4230
|
-
removed: z.ZodNumber;
|
|
4231
|
-
}, z.core.$loose>;
|
|
4232
|
-
}, z.core.$loose>], "_tag">;
|
|
4233
|
-
}, z.core.$loose>;
|
|
4234
|
-
};
|
|
4235
|
-
readonly postSitemaps: {
|
|
4236
|
-
readonly body: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4237
|
-
action: z.ZodLiteral<"submit">;
|
|
4238
|
-
sitemapUrl: z.ZodString;
|
|
4239
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4240
|
-
action: z.ZodLiteral<"delete">;
|
|
4241
|
-
sitemapUrl: z.ZodString;
|
|
4242
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4243
|
-
action: z.ZodLiteral<"refresh">;
|
|
4244
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
4245
|
-
action: z.ZodLiteral<"auto-discover">;
|
|
4246
|
-
}, z.core.$strip>], "action">;
|
|
4247
|
-
readonly response: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4248
|
-
success: z.ZodBoolean;
|
|
4249
|
-
action: z.ZodEnum<{
|
|
4250
|
-
deleted: "deleted";
|
|
4251
|
-
submitted: "submitted";
|
|
4252
|
-
}>;
|
|
4253
|
-
sitemapUrl: z.ZodString;
|
|
4254
|
-
sitemapCount: z.ZodNumber;
|
|
4255
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
4256
|
-
success: z.ZodLiteral<true>;
|
|
4257
|
-
action: z.ZodLiteral<"refreshed">;
|
|
4258
|
-
sitemapCount: z.ZodNumber;
|
|
4259
|
-
changed: z.ZodBoolean;
|
|
4260
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
4261
|
-
success: z.ZodBoolean;
|
|
4262
|
-
action: z.ZodLiteral<"auto-discover">;
|
|
4263
|
-
discovered: z.ZodNullable<z.ZodString>;
|
|
4264
|
-
submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4265
|
-
sitemapCount: z.ZodNumber;
|
|
4266
|
-
}, z.core.$loose>], "action">;
|
|
4267
|
-
};
|
|
4268
|
-
readonly getSitemapMembership: {
|
|
4269
|
-
readonly body: z.ZodObject<{
|
|
4270
|
-
urls: z.ZodArray<z.ZodString>;
|
|
4271
|
-
maxAgeDays: z.ZodOptional<z.ZodNumber>;
|
|
4272
|
-
}, z.core.$strip>;
|
|
4273
|
-
readonly response: z.ZodObject<{
|
|
4274
|
-
urls: z.ZodArray<z.ZodObject<{
|
|
4275
|
-
url: z.ZodString;
|
|
4276
|
-
normalized: z.ZodString;
|
|
4277
|
-
inSitemap: z.ZodBoolean;
|
|
4278
|
-
sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4279
|
-
lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4280
|
-
lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4281
|
-
sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4282
|
-
}, z.core.$loose>>;
|
|
4283
|
-
meta: z.ZodObject<{
|
|
4284
|
-
available: z.ZodBoolean;
|
|
4285
|
-
reason: z.ZodNullable<z.ZodEnum<{
|
|
4286
|
-
empty: "empty";
|
|
4287
|
-
endpoint_unavailable: "endpoint_unavailable";
|
|
4288
|
-
site_url_cap_exceeded: "site_url_cap_exceeded";
|
|
4289
|
-
stale_sitemaps: "stale_sitemaps";
|
|
4290
|
-
}>>;
|
|
4291
|
-
requested: z.ZodNumber;
|
|
4292
|
-
checked: z.ZodNumber;
|
|
4293
|
-
matched: z.ZodNumber;
|
|
4294
|
-
newestFetchedAt: z.ZodNullable<z.ZodString>;
|
|
4295
|
-
}, z.core.$loose>;
|
|
4296
|
-
}, z.core.$loose>;
|
|
4297
|
-
};
|
|
4298
4269
|
readonly getIndexing: {
|
|
4299
4270
|
readonly response: z.ZodObject<{
|
|
4300
4271
|
trend: z.ZodArray<z.ZodObject<{
|
|
@@ -5994,145 +5965,6 @@ declare const partnerEndpointSchemas: {
|
|
|
5994
5965
|
}, z.core.$loose>;
|
|
5995
5966
|
}, z.core.$strip>;
|
|
5996
5967
|
};
|
|
5997
|
-
readonly getSitemaps: {
|
|
5998
|
-
readonly response: z.ZodObject<{
|
|
5999
|
-
sitemaps: z.ZodArray<z.ZodObject<{
|
|
6000
|
-
path: z.ZodString;
|
|
6001
|
-
urlCount: z.ZodNumber;
|
|
6002
|
-
errors: z.ZodNumber;
|
|
6003
|
-
warnings: z.ZodNumber;
|
|
6004
|
-
isIndex: z.ZodOptional<z.ZodBoolean>;
|
|
6005
|
-
contentHash: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6006
|
-
lastDownloaded: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6007
|
-
lastError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6008
|
-
isPending: z.ZodOptional<z.ZodBoolean>;
|
|
6009
|
-
fetchedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6010
|
-
}, z.core.$loose>>;
|
|
6011
|
-
history: z.ZodArray<z.ZodObject<{
|
|
6012
|
-
date: z.ZodString;
|
|
6013
|
-
errors: z.ZodNumber;
|
|
6014
|
-
warnings: z.ZodNumber;
|
|
6015
|
-
urlCount: z.ZodNumber;
|
|
6016
|
-
urlDelta: z.ZodNumber;
|
|
6017
|
-
}, z.core.$loose>>;
|
|
6018
|
-
perSitemapHistory: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
6019
|
-
date: z.ZodString;
|
|
6020
|
-
urlCount: z.ZodNumber;
|
|
6021
|
-
changed: z.ZodBoolean;
|
|
6022
|
-
urlDelta: z.ZodNumber;
|
|
6023
|
-
}, z.core.$loose>>>;
|
|
6024
|
-
meta: z.ZodObject<{
|
|
6025
|
-
siteUrl: z.ZodString;
|
|
6026
|
-
gscPropertyUrl: z.ZodOptional<z.ZodString>;
|
|
6027
|
-
syncStatus: z.ZodNullable<z.ZodString>;
|
|
6028
|
-
sitemapScope: z.ZodObject<{
|
|
6029
|
-
excludedCount: z.ZodNumber;
|
|
6030
|
-
duplicateCount: z.ZodNumber;
|
|
6031
|
-
}, z.core.$strip>;
|
|
6032
|
-
}, z.core.$loose>;
|
|
6033
|
-
}, z.core.$loose>;
|
|
6034
|
-
};
|
|
6035
|
-
readonly getSitemapChanges: {
|
|
6036
|
-
readonly response: z.ZodObject<{
|
|
6037
|
-
added: z.ZodArray<z.ZodObject<{
|
|
6038
|
-
url: z.ZodString;
|
|
6039
|
-
sitemap: z.ZodString;
|
|
6040
|
-
firstSeenAt: z.ZodNumber;
|
|
6041
|
-
}, z.core.$loose>>;
|
|
6042
|
-
removed: z.ZodArray<z.ZodObject<{
|
|
6043
|
-
url: z.ZodString;
|
|
6044
|
-
sitemap: z.ZodString;
|
|
6045
|
-
removedAt: z.ZodNumber;
|
|
6046
|
-
}, z.core.$loose>>;
|
|
6047
|
-
summary: z.ZodOptional<z.ZodObject<{
|
|
6048
|
-
totalAdded: z.ZodNumber;
|
|
6049
|
-
totalRemoved: z.ZodNumber;
|
|
6050
|
-
period: z.ZodObject<{
|
|
6051
|
-
days: z.ZodNumber;
|
|
6052
|
-
}, z.core.$strip>;
|
|
6053
|
-
}, z.core.$strip>>;
|
|
6054
|
-
completeness: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6055
|
-
_tag: z.ZodLiteral<"complete">;
|
|
6056
|
-
scannedUrls: z.ZodNumber;
|
|
6057
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
6058
|
-
_tag: z.ZodLiteral<"truncated">;
|
|
6059
|
-
scannedUrls: z.ZodNumber;
|
|
6060
|
-
reasons: z.ZodArray<z.ZodEnum<{
|
|
6061
|
-
scan_limit: "scan_limit";
|
|
6062
|
-
added_limit: "added_limit";
|
|
6063
|
-
removed_limit: "removed_limit";
|
|
6064
|
-
}>>;
|
|
6065
|
-
limits: z.ZodObject<{
|
|
6066
|
-
scannedUrls: z.ZodNumber;
|
|
6067
|
-
added: z.ZodNumber;
|
|
6068
|
-
removed: z.ZodNumber;
|
|
6069
|
-
}, z.core.$loose>;
|
|
6070
|
-
}, z.core.$loose>], "_tag">;
|
|
6071
|
-
}, z.core.$loose>;
|
|
6072
|
-
};
|
|
6073
|
-
readonly postSitemaps: {
|
|
6074
|
-
readonly body: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6075
|
-
action: z.ZodLiteral<"submit">;
|
|
6076
|
-
sitemapUrl: z.ZodString;
|
|
6077
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
6078
|
-
action: z.ZodLiteral<"delete">;
|
|
6079
|
-
sitemapUrl: z.ZodString;
|
|
6080
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
6081
|
-
action: z.ZodLiteral<"refresh">;
|
|
6082
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
6083
|
-
action: z.ZodLiteral<"auto-discover">;
|
|
6084
|
-
}, z.core.$strip>], "action">;
|
|
6085
|
-
readonly response: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6086
|
-
success: z.ZodBoolean;
|
|
6087
|
-
action: z.ZodEnum<{
|
|
6088
|
-
deleted: "deleted";
|
|
6089
|
-
submitted: "submitted";
|
|
6090
|
-
}>;
|
|
6091
|
-
sitemapUrl: z.ZodString;
|
|
6092
|
-
sitemapCount: z.ZodNumber;
|
|
6093
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
6094
|
-
success: z.ZodLiteral<true>;
|
|
6095
|
-
action: z.ZodLiteral<"refreshed">;
|
|
6096
|
-
sitemapCount: z.ZodNumber;
|
|
6097
|
-
changed: z.ZodBoolean;
|
|
6098
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
6099
|
-
success: z.ZodBoolean;
|
|
6100
|
-
action: z.ZodLiteral<"auto-discover">;
|
|
6101
|
-
discovered: z.ZodNullable<z.ZodString>;
|
|
6102
|
-
submitError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6103
|
-
sitemapCount: z.ZodNumber;
|
|
6104
|
-
}, z.core.$loose>], "action">;
|
|
6105
|
-
};
|
|
6106
|
-
readonly getSitemapMembership: {
|
|
6107
|
-
readonly body: z.ZodObject<{
|
|
6108
|
-
urls: z.ZodArray<z.ZodString>;
|
|
6109
|
-
maxAgeDays: z.ZodOptional<z.ZodNumber>;
|
|
6110
|
-
}, z.core.$strip>;
|
|
6111
|
-
readonly response: z.ZodObject<{
|
|
6112
|
-
urls: z.ZodArray<z.ZodObject<{
|
|
6113
|
-
url: z.ZodString;
|
|
6114
|
-
normalized: z.ZodString;
|
|
6115
|
-
inSitemap: z.ZodBoolean;
|
|
6116
|
-
sitemapUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6117
|
-
lastSeenAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6118
|
-
lastmod: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6119
|
-
sitemapFetchedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6120
|
-
}, z.core.$loose>>;
|
|
6121
|
-
meta: z.ZodObject<{
|
|
6122
|
-
available: z.ZodBoolean;
|
|
6123
|
-
reason: z.ZodNullable<z.ZodEnum<{
|
|
6124
|
-
empty: "empty";
|
|
6125
|
-
endpoint_unavailable: "endpoint_unavailable";
|
|
6126
|
-
site_url_cap_exceeded: "site_url_cap_exceeded";
|
|
6127
|
-
stale_sitemaps: "stale_sitemaps";
|
|
6128
|
-
}>>;
|
|
6129
|
-
requested: z.ZodNumber;
|
|
6130
|
-
checked: z.ZodNumber;
|
|
6131
|
-
matched: z.ZodNumber;
|
|
6132
|
-
newestFetchedAt: z.ZodNullable<z.ZodString>;
|
|
6133
|
-
}, z.core.$loose>;
|
|
6134
|
-
}, z.core.$loose>;
|
|
6135
|
-
};
|
|
6136
5968
|
readonly getIndexing: {
|
|
6137
5969
|
readonly response: z.ZodObject<{
|
|
6138
5970
|
trend: z.ZodArray<z.ZodObject<{
|
|
@@ -6970,24 +6802,6 @@ declare const partnerEndpointSchemas: {
|
|
|
6970
6802
|
}>;
|
|
6971
6803
|
}, z.core.$loose>;
|
|
6972
6804
|
};
|
|
6973
|
-
readonly analyticsSitemapHistory: {
|
|
6974
|
-
readonly response: z.ZodObject<{
|
|
6975
|
-
path: z.ZodNullable<z.ZodString>;
|
|
6976
|
-
snapshots: z.ZodArray<z.ZodObject<{
|
|
6977
|
-
path: z.ZodString;
|
|
6978
|
-
capturedAt: z.ZodString;
|
|
6979
|
-
}, z.core.$loose>>;
|
|
6980
|
-
}, z.core.$loose>;
|
|
6981
|
-
};
|
|
6982
|
-
readonly analyticsSitemaps: {
|
|
6983
|
-
readonly response: z.ZodObject<{
|
|
6984
|
-
version: z.ZodLiteral<1>;
|
|
6985
|
-
records: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6986
|
-
path: z.ZodString;
|
|
6987
|
-
capturedAt: z.ZodString;
|
|
6988
|
-
}, z.core.$loose>>;
|
|
6989
|
-
}, z.core.$loose>;
|
|
6990
|
-
};
|
|
6991
6805
|
readonly analyticsInspectionHistory: {
|
|
6992
6806
|
readonly response: z.ZodObject<{
|
|
6993
6807
|
url: z.ZodNullable<z.ZodString>;
|
|
@@ -7234,44 +7048,6 @@ declare const partnerEndpointSchemas: {
|
|
|
7234
7048
|
retryAfterSeconds: z.ZodNumber;
|
|
7235
7049
|
}, z.core.$loose>]>;
|
|
7236
7050
|
};
|
|
7237
|
-
readonly analyticsSitemapChanges: {
|
|
7238
|
-
readonly response: z.ZodObject<{
|
|
7239
|
-
added: z.ZodArray<z.ZodObject<{
|
|
7240
|
-
url: z.ZodString;
|
|
7241
|
-
sitemap: z.ZodString;
|
|
7242
|
-
firstSeenAt: z.ZodNumber;
|
|
7243
|
-
}, z.core.$loose>>;
|
|
7244
|
-
removed: z.ZodArray<z.ZodObject<{
|
|
7245
|
-
url: z.ZodString;
|
|
7246
|
-
sitemap: z.ZodString;
|
|
7247
|
-
removedAt: z.ZodNumber;
|
|
7248
|
-
}, z.core.$loose>>;
|
|
7249
|
-
summary: z.ZodObject<{
|
|
7250
|
-
totalAdded: z.ZodNumber;
|
|
7251
|
-
totalRemoved: z.ZodNumber;
|
|
7252
|
-
period: z.ZodObject<{
|
|
7253
|
-
days: z.ZodNumber;
|
|
7254
|
-
}, z.core.$strip>;
|
|
7255
|
-
}, z.core.$loose>;
|
|
7256
|
-
completeness: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7257
|
-
_tag: z.ZodLiteral<"complete">;
|
|
7258
|
-
scannedUrls: z.ZodNumber;
|
|
7259
|
-
}, z.core.$loose>, z.ZodObject<{
|
|
7260
|
-
_tag: z.ZodLiteral<"truncated">;
|
|
7261
|
-
scannedUrls: z.ZodNumber;
|
|
7262
|
-
reasons: z.ZodArray<z.ZodEnum<{
|
|
7263
|
-
scan_limit: "scan_limit";
|
|
7264
|
-
added_limit: "added_limit";
|
|
7265
|
-
removed_limit: "removed_limit";
|
|
7266
|
-
}>>;
|
|
7267
|
-
limits: z.ZodObject<{
|
|
7268
|
-
scannedUrls: z.ZodNumber;
|
|
7269
|
-
added: z.ZodNumber;
|
|
7270
|
-
removed: z.ZodNumber;
|
|
7271
|
-
}, z.core.$loose>;
|
|
7272
|
-
}, z.core.$loose>], "_tag">;
|
|
7273
|
-
}, z.core.$loose>;
|
|
7274
|
-
};
|
|
7275
7051
|
readonly analyticsAnalysisSources: {
|
|
7276
7052
|
readonly response: z.ZodObject<{
|
|
7277
7053
|
siteId: z.ZodString;
|
|
@@ -7426,4 +7202,4 @@ declare const partnerEndpointSchemas: {
|
|
|
7426
7202
|
}, z.core.$loose>;
|
|
7427
7203
|
};
|
|
7428
7204
|
};
|
|
7429
|
-
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, gscdumpSitemapMembershipParamsSchema, gscdumpSitemapMembershipResponseSchema,
|
|
7205
|
+
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 };
|