@gscdump/contracts 0.32.12 → 0.33.3
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/_chunks/schemas.d.mts +644 -95
- package/dist/_chunks/schemas.mjs +63 -8
- package/dist/_chunks/types.d.mts +145 -15
- package/dist/analytics.d.mts +2 -2
- package/dist/index.d.mts +3 -124
- package/dist/index.mjs +2 -2
- package/dist/partner.d.mts +2 -2
- package/package.json +1 -1
|
@@ -366,6 +366,7 @@ declare const indexingUrlStatusSchema: z.ZodEnum<{
|
|
|
366
366
|
}>;
|
|
367
367
|
declare const indexingUrlRowSchema: z.ZodObject<{
|
|
368
368
|
url: z.ZodString;
|
|
369
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
369
370
|
verdict: z.ZodNullable<z.ZodString>;
|
|
370
371
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
371
372
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -389,6 +390,7 @@ declare const indexingUrlRowSchema: z.ZodObject<{
|
|
|
389
390
|
declare const indexingUrlsResponseSchema: z.ZodObject<{
|
|
390
391
|
urls: z.ZodArray<z.ZodObject<{
|
|
391
392
|
url: z.ZodString;
|
|
393
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
392
394
|
verdict: z.ZodNullable<z.ZodString>;
|
|
393
395
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
394
396
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -448,6 +450,29 @@ declare const indexingDiagnosticsSchema: z.ZodObject<{
|
|
|
448
450
|
}>;
|
|
449
451
|
count: z.ZodNumber;
|
|
450
452
|
}, z.core.$loose>>;
|
|
453
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
454
|
+
url: z.ZodString;
|
|
455
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
456
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
457
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
458
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
459
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
460
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
461
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
462
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
463
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
464
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
465
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
466
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
467
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
468
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
469
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
470
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
471
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
472
|
+
firstCheckedAt: z.ZodString;
|
|
473
|
+
lastCheckedAt: z.ZodString;
|
|
474
|
+
checkCount: z.ZodNumber;
|
|
475
|
+
}, z.core.$loose>>>>;
|
|
451
476
|
meta: z.ZodObject<{
|
|
452
477
|
siteUrl: z.ZodString;
|
|
453
478
|
}, z.core.$loose>;
|
|
@@ -725,16 +750,16 @@ declare const gscdumpUserRegistrationSchema: z.ZodObject<{
|
|
|
725
750
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
726
751
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
727
752
|
status: z.ZodOptional<z.ZodEnum<{
|
|
728
|
-
provisioning: "provisioning";
|
|
729
753
|
ready: "ready";
|
|
754
|
+
provisioning: "provisioning";
|
|
730
755
|
}>>;
|
|
731
756
|
}, z.core.$loose>;
|
|
732
757
|
declare const gscdumpUserStatusSchema: z.ZodObject<{
|
|
733
758
|
userId: z.ZodString;
|
|
734
759
|
status: z.ZodEnum<{
|
|
735
|
-
provisioning: "provisioning";
|
|
736
760
|
ready: "ready";
|
|
737
761
|
reauth_required: "reauth_required";
|
|
762
|
+
provisioning: "provisioning";
|
|
738
763
|
}>;
|
|
739
764
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
740
765
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -773,21 +798,21 @@ declare const lifecycleErrorSchema: z.ZodObject<{
|
|
|
773
798
|
}, z.core.$strip>;
|
|
774
799
|
declare const partnerLifecycleAccountSchema: z.ZodObject<{
|
|
775
800
|
status: z.ZodEnum<{
|
|
776
|
-
ready: "ready";
|
|
777
|
-
reauth_required: "reauth_required";
|
|
778
801
|
disconnected: "disconnected";
|
|
779
802
|
oauth_received: "oauth_received";
|
|
780
803
|
scope_missing: "scope_missing";
|
|
781
804
|
refresh_missing: "refresh_missing";
|
|
782
805
|
db_provisioning: "db_provisioning";
|
|
806
|
+
ready: "ready";
|
|
807
|
+
reauth_required: "reauth_required";
|
|
783
808
|
}>;
|
|
784
809
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
785
810
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
786
811
|
nextAction: z.ZodEnum<{
|
|
787
|
-
reconnect_google: "reconnect_google";
|
|
788
|
-
none: "none";
|
|
789
812
|
connect_google: "connect_google";
|
|
813
|
+
reconnect_google: "reconnect_google";
|
|
790
814
|
wait_for_provisioning: "wait_for_provisioning";
|
|
815
|
+
none: "none";
|
|
791
816
|
}>;
|
|
792
817
|
}, z.core.$loose>;
|
|
793
818
|
declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
@@ -815,14 +840,14 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
815
840
|
}, z.core.$loose>;
|
|
816
841
|
analytics: z.ZodObject<{
|
|
817
842
|
status: z.ZodEnum<{
|
|
818
|
-
queued: "queued";
|
|
819
843
|
ready: "ready";
|
|
820
|
-
failed: "failed";
|
|
821
844
|
not_registered: "not_registered";
|
|
845
|
+
queued: "queued";
|
|
822
846
|
preparing: "preparing";
|
|
823
847
|
syncing: "syncing";
|
|
824
848
|
queryable_live: "queryable_live";
|
|
825
849
|
queryable_partial: "queryable_partial";
|
|
850
|
+
failed: "failed";
|
|
826
851
|
}>;
|
|
827
852
|
progress: z.ZodObject<{
|
|
828
853
|
completed: z.ZodNumber;
|
|
@@ -832,10 +857,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
832
857
|
}, z.core.$strip>;
|
|
833
858
|
queryable: z.ZodBoolean;
|
|
834
859
|
sourceMode: z.ZodEnum<{
|
|
835
|
-
d1: "d1";
|
|
836
|
-
r2: "r2";
|
|
837
860
|
none: "none";
|
|
838
861
|
live: "live";
|
|
862
|
+
d1: "d1";
|
|
863
|
+
r2: "r2";
|
|
839
864
|
mixed: "mixed";
|
|
840
865
|
}>;
|
|
841
866
|
syncedRange: z.ZodObject<{
|
|
@@ -850,10 +875,10 @@ declare const partnerLifecycleSiteSchema: z.ZodObject<{
|
|
|
850
875
|
}, z.core.$loose>;
|
|
851
876
|
sitemaps: z.ZodObject<{
|
|
852
877
|
status: z.ZodEnum<{
|
|
853
|
-
unknown: "unknown";
|
|
854
878
|
ready: "ready";
|
|
855
|
-
failed: "failed";
|
|
856
879
|
syncing: "syncing";
|
|
880
|
+
failed: "failed";
|
|
881
|
+
unknown: "unknown";
|
|
857
882
|
discovering: "discovering";
|
|
858
883
|
none_found: "none_found";
|
|
859
884
|
auto_submitted: "auto_submitted";
|
|
@@ -923,21 +948,21 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
923
948
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
924
949
|
account: z.ZodObject<{
|
|
925
950
|
status: z.ZodEnum<{
|
|
926
|
-
ready: "ready";
|
|
927
|
-
reauth_required: "reauth_required";
|
|
928
951
|
disconnected: "disconnected";
|
|
929
952
|
oauth_received: "oauth_received";
|
|
930
953
|
scope_missing: "scope_missing";
|
|
931
954
|
refresh_missing: "refresh_missing";
|
|
932
955
|
db_provisioning: "db_provisioning";
|
|
956
|
+
ready: "ready";
|
|
957
|
+
reauth_required: "reauth_required";
|
|
933
958
|
}>;
|
|
934
959
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
935
960
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
936
961
|
nextAction: z.ZodEnum<{
|
|
937
|
-
reconnect_google: "reconnect_google";
|
|
938
|
-
none: "none";
|
|
939
962
|
connect_google: "connect_google";
|
|
963
|
+
reconnect_google: "reconnect_google";
|
|
940
964
|
wait_for_provisioning: "wait_for_provisioning";
|
|
965
|
+
none: "none";
|
|
941
966
|
}>;
|
|
942
967
|
}, z.core.$loose>;
|
|
943
968
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -965,14 +990,14 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
965
990
|
}, z.core.$loose>;
|
|
966
991
|
analytics: z.ZodObject<{
|
|
967
992
|
status: z.ZodEnum<{
|
|
968
|
-
queued: "queued";
|
|
969
993
|
ready: "ready";
|
|
970
|
-
failed: "failed";
|
|
971
994
|
not_registered: "not_registered";
|
|
995
|
+
queued: "queued";
|
|
972
996
|
preparing: "preparing";
|
|
973
997
|
syncing: "syncing";
|
|
974
998
|
queryable_live: "queryable_live";
|
|
975
999
|
queryable_partial: "queryable_partial";
|
|
1000
|
+
failed: "failed";
|
|
976
1001
|
}>;
|
|
977
1002
|
progress: z.ZodObject<{
|
|
978
1003
|
completed: z.ZodNumber;
|
|
@@ -982,10 +1007,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
982
1007
|
}, z.core.$strip>;
|
|
983
1008
|
queryable: z.ZodBoolean;
|
|
984
1009
|
sourceMode: z.ZodEnum<{
|
|
985
|
-
d1: "d1";
|
|
986
|
-
r2: "r2";
|
|
987
1010
|
none: "none";
|
|
988
1011
|
live: "live";
|
|
1012
|
+
d1: "d1";
|
|
1013
|
+
r2: "r2";
|
|
989
1014
|
mixed: "mixed";
|
|
990
1015
|
}>;
|
|
991
1016
|
syncedRange: z.ZodObject<{
|
|
@@ -1000,10 +1025,10 @@ declare const partnerLifecycleResponseSchema: z.ZodObject<{
|
|
|
1000
1025
|
}, z.core.$loose>;
|
|
1001
1026
|
sitemaps: z.ZodObject<{
|
|
1002
1027
|
status: z.ZodEnum<{
|
|
1003
|
-
unknown: "unknown";
|
|
1004
1028
|
ready: "ready";
|
|
1005
|
-
failed: "failed";
|
|
1006
1029
|
syncing: "syncing";
|
|
1030
|
+
failed: "failed";
|
|
1031
|
+
unknown: "unknown";
|
|
1007
1032
|
discovering: "discovering";
|
|
1008
1033
|
none_found: "none_found";
|
|
1009
1034
|
auto_submitted: "auto_submitted";
|
|
@@ -1074,9 +1099,9 @@ declare const gscdumpAvailableSiteSchema: z.ZodObject<{
|
|
|
1074
1099
|
registered: z.ZodBoolean;
|
|
1075
1100
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1076
1101
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1102
|
+
syncing: "syncing";
|
|
1077
1103
|
pending: "pending";
|
|
1078
1104
|
error: "error";
|
|
1079
|
-
syncing: "syncing";
|
|
1080
1105
|
synced: "synced";
|
|
1081
1106
|
}>>>;
|
|
1082
1107
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -1093,9 +1118,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1093
1118
|
siteId: z.ZodString;
|
|
1094
1119
|
siteUrl: z.ZodString;
|
|
1095
1120
|
syncStatus: z.ZodEnum<{
|
|
1121
|
+
syncing: "syncing";
|
|
1096
1122
|
pending: "pending";
|
|
1097
1123
|
error: "error";
|
|
1098
|
-
syncing: "syncing";
|
|
1099
1124
|
synced: "synced";
|
|
1100
1125
|
idle: "idle";
|
|
1101
1126
|
}>;
|
|
@@ -1106,9 +1131,9 @@ declare const gscdumpUserSiteSchema: z.ZodObject<{
|
|
|
1106
1131
|
declare const gscdumpSiteRegistrationSchema: z.ZodObject<{
|
|
1107
1132
|
siteId: z.ZodString;
|
|
1108
1133
|
status: z.ZodEnum<{
|
|
1134
|
+
syncing: "syncing";
|
|
1109
1135
|
pending: "pending";
|
|
1110
1136
|
error: "error";
|
|
1111
|
-
syncing: "syncing";
|
|
1112
1137
|
synced: "synced";
|
|
1113
1138
|
idle: "idle";
|
|
1114
1139
|
}>;
|
|
@@ -1166,6 +1191,14 @@ declare const bulkRegisterPartnerSitesSchema: z.ZodObject<{
|
|
|
1166
1191
|
"site.auth.failed": "site.auth.failed";
|
|
1167
1192
|
"job.failed": "job.failed";
|
|
1168
1193
|
}>>>;
|
|
1194
|
+
enabledSearchTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1195
|
+
web: "web";
|
|
1196
|
+
image: "image";
|
|
1197
|
+
video: "video";
|
|
1198
|
+
news: "news";
|
|
1199
|
+
discover: "discover";
|
|
1200
|
+
googleNews: "googleNews";
|
|
1201
|
+
}>>>;
|
|
1169
1202
|
}, z.core.$loose>>>;
|
|
1170
1203
|
}, z.core.$strip>;
|
|
1171
1204
|
declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
@@ -1173,8 +1206,8 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1173
1206
|
siteUrl: z.ZodString;
|
|
1174
1207
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1175
1208
|
status: z.ZodEnum<{
|
|
1176
|
-
error: "error";
|
|
1177
1209
|
registered: "registered";
|
|
1210
|
+
error: "error";
|
|
1178
1211
|
already_exists: "already_exists";
|
|
1179
1212
|
not_found: "not_found";
|
|
1180
1213
|
}>;
|
|
@@ -1373,6 +1406,10 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1373
1406
|
issue: z.ZodOptional<z.ZodString>;
|
|
1374
1407
|
search: z.ZodOptional<z.ZodString>;
|
|
1375
1408
|
}, z.core.$strip>>;
|
|
1409
|
+
declare const indexingDiagnosticsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1410
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1411
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
1412
|
+
}, z.core.$strip>>;
|
|
1376
1413
|
declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
1377
1414
|
trend: z.ZodArray<z.ZodObject<{
|
|
1378
1415
|
date: z.ZodString;
|
|
@@ -1442,7 +1479,29 @@ declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
|
1442
1479
|
}, z.core.$loose>;
|
|
1443
1480
|
}, z.core.$loose>;
|
|
1444
1481
|
declare const gscdumpIndexingUrlsResponseSchema: z.ZodObject<{
|
|
1445
|
-
urls: z.ZodArray<z.
|
|
1482
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
1483
|
+
url: z.ZodString;
|
|
1484
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1485
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
1486
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
1487
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
1488
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
1489
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
1490
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
1491
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
1492
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
1493
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
1494
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1495
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1496
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
1497
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1498
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
1499
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1500
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
1501
|
+
firstCheckedAt: z.ZodString;
|
|
1502
|
+
lastCheckedAt: z.ZodString;
|
|
1503
|
+
checkCount: z.ZodNumber;
|
|
1504
|
+
}, z.core.$loose>>;
|
|
1446
1505
|
pagination: z.ZodObject<{
|
|
1447
1506
|
total: z.ZodNumber;
|
|
1448
1507
|
limit: z.ZodNumber;
|
|
@@ -1461,7 +1520,39 @@ declare const gscdumpIndexingDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
1461
1520
|
indexed: z.ZodNumber;
|
|
1462
1521
|
indexedPercent: z.ZodNumber;
|
|
1463
1522
|
}, z.core.$loose>;
|
|
1464
|
-
issues: z.ZodArray<z.
|
|
1523
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
1524
|
+
type: z.ZodString;
|
|
1525
|
+
label: z.ZodString;
|
|
1526
|
+
severity: z.ZodEnum<{
|
|
1527
|
+
error: "error";
|
|
1528
|
+
warning: "warning";
|
|
1529
|
+
info: "info";
|
|
1530
|
+
}>;
|
|
1531
|
+
count: z.ZodNumber;
|
|
1532
|
+
}, z.core.$loose>>;
|
|
1533
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1534
|
+
url: z.ZodString;
|
|
1535
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1536
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
1537
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
1538
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
1539
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
1540
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
1541
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
1542
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
1543
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
1544
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
1545
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1546
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1547
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
1548
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1549
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
1550
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1551
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
1552
|
+
firstCheckedAt: z.ZodString;
|
|
1553
|
+
lastCheckedAt: z.ZodString;
|
|
1554
|
+
checkCount: z.ZodNumber;
|
|
1555
|
+
}, z.core.$loose>>>>;
|
|
1465
1556
|
meta: z.ZodObject<{
|
|
1466
1557
|
siteUrl: z.ZodString;
|
|
1467
1558
|
}, z.core.$loose>;
|
|
@@ -1484,19 +1575,19 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
|
1484
1575
|
databaseReady: z.ZodBoolean;
|
|
1485
1576
|
plan: z.ZodString;
|
|
1486
1577
|
accountStatus: z.ZodEnum<{
|
|
1487
|
-
ready: "ready";
|
|
1488
|
-
reauth_required: "reauth_required";
|
|
1489
1578
|
disconnected: "disconnected";
|
|
1490
1579
|
oauth_received: "oauth_received";
|
|
1491
1580
|
scope_missing: "scope_missing";
|
|
1492
1581
|
refresh_missing: "refresh_missing";
|
|
1493
1582
|
db_provisioning: "db_provisioning";
|
|
1583
|
+
ready: "ready";
|
|
1584
|
+
reauth_required: "reauth_required";
|
|
1494
1585
|
}>;
|
|
1495
1586
|
accountNextAction: z.ZodEnum<{
|
|
1496
|
-
reconnect_google: "reconnect_google";
|
|
1497
|
-
none: "none";
|
|
1498
1587
|
connect_google: "connect_google";
|
|
1588
|
+
reconnect_google: "reconnect_google";
|
|
1499
1589
|
wait_for_provisioning: "wait_for_provisioning";
|
|
1590
|
+
none: "none";
|
|
1500
1591
|
}>;
|
|
1501
1592
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
1502
1593
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -1596,8 +1687,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
1596
1687
|
date: z.ZodString;
|
|
1597
1688
|
status: z.ZodEnum<{
|
|
1598
1689
|
queued: "queued";
|
|
1599
|
-
completed: "completed";
|
|
1600
1690
|
failed: "failed";
|
|
1691
|
+
completed: "completed";
|
|
1601
1692
|
processing: "processing";
|
|
1602
1693
|
}>;
|
|
1603
1694
|
}, z.core.$loose>>;
|
|
@@ -1620,8 +1711,8 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
|
1620
1711
|
priority: z.ZodOptional<z.ZodString>;
|
|
1621
1712
|
status: z.ZodEnum<{
|
|
1622
1713
|
queued: "queued";
|
|
1623
|
-
completed: "completed";
|
|
1624
1714
|
failed: "failed";
|
|
1715
|
+
completed: "completed";
|
|
1625
1716
|
processing: "processing";
|
|
1626
1717
|
scheduled: "scheduled";
|
|
1627
1718
|
}>;
|
|
@@ -1682,9 +1773,63 @@ declare const gscdumpTopAssociationResponseSchema: z.ZodObject<{
|
|
|
1682
1773
|
value: z.ZodNullable<z.ZodString>;
|
|
1683
1774
|
}, z.core.$loose>;
|
|
1684
1775
|
declare const gscdumpAnalysisSourcesResponseSchema: z.ZodObject<{
|
|
1685
|
-
|
|
1776
|
+
siteId: z.ZodString;
|
|
1777
|
+
searchType: z.ZodEnum<{
|
|
1778
|
+
web: "web";
|
|
1779
|
+
image: "image";
|
|
1780
|
+
video: "video";
|
|
1781
|
+
news: "news";
|
|
1782
|
+
discover: "discover";
|
|
1783
|
+
googleNews: "googleNews";
|
|
1784
|
+
}>;
|
|
1785
|
+
range: z.ZodObject<{
|
|
1786
|
+
start: z.ZodString;
|
|
1787
|
+
end: z.ZodString;
|
|
1788
|
+
}, z.core.$strip>;
|
|
1789
|
+
snapshotVersion: z.ZodString;
|
|
1686
1790
|
generatedAt: z.ZodString;
|
|
1687
|
-
|
|
1791
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
1792
|
+
table: z.ZodEnum<{
|
|
1793
|
+
pages: "pages";
|
|
1794
|
+
queries: "queries";
|
|
1795
|
+
countries: "countries";
|
|
1796
|
+
page_queries: "page_queries";
|
|
1797
|
+
dates: "dates";
|
|
1798
|
+
search_appearance: "search_appearance";
|
|
1799
|
+
search_appearance_pages: "search_appearance_pages";
|
|
1800
|
+
search_appearance_queries: "search_appearance_queries";
|
|
1801
|
+
search_appearance_page_queries: "search_appearance_page_queries";
|
|
1802
|
+
}>;
|
|
1803
|
+
mode: z.ZodEnum<{
|
|
1804
|
+
browser: "browser";
|
|
1805
|
+
server: "server";
|
|
1806
|
+
}>;
|
|
1807
|
+
files: z.ZodArray<z.ZodObject<{
|
|
1808
|
+
url: z.ZodString;
|
|
1809
|
+
bytes: z.ZodNumber;
|
|
1810
|
+
contentHash: z.ZodString;
|
|
1811
|
+
rowCount: z.ZodNumber;
|
|
1812
|
+
}, z.core.$loose>>;
|
|
1813
|
+
overlay: z.ZodOptional<z.ZodObject<{
|
|
1814
|
+
url: z.ZodString;
|
|
1815
|
+
bytes: z.ZodNumber;
|
|
1816
|
+
contentHash: z.ZodString;
|
|
1817
|
+
rowCount: z.ZodNumber;
|
|
1818
|
+
}, z.core.$loose>>;
|
|
1819
|
+
totalBytes: z.ZodNumber;
|
|
1820
|
+
totalRows: z.ZodNumber;
|
|
1821
|
+
}, z.core.$loose>>;
|
|
1822
|
+
serverTail: z.ZodOptional<z.ZodObject<{
|
|
1823
|
+
engine: z.ZodEnum<{
|
|
1824
|
+
"r2-sql": "r2-sql";
|
|
1825
|
+
duckdb: "duckdb";
|
|
1826
|
+
}>;
|
|
1827
|
+
endpoint: z.ZodString;
|
|
1828
|
+
}, z.core.$strip>>;
|
|
1829
|
+
eligibilityCeiling: z.ZodObject<{
|
|
1830
|
+
maxBytes: z.ZodNumber;
|
|
1831
|
+
maxRows: z.ZodNumber;
|
|
1832
|
+
}, z.core.$strip>;
|
|
1688
1833
|
}, z.core.$loose>;
|
|
1689
1834
|
declare const gscdumpKeywordSparklinesParamsSchema: z.ZodObject<{
|
|
1690
1835
|
keywords: z.ZodArray<z.ZodString>;
|
|
@@ -2223,6 +2368,7 @@ declare const analyticsEndpointSchemas: {
|
|
|
2223
2368
|
readonly response: z.ZodObject<{
|
|
2224
2369
|
urls: z.ZodArray<z.ZodObject<{
|
|
2225
2370
|
url: z.ZodString;
|
|
2371
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2226
2372
|
verdict: z.ZodNullable<z.ZodString>;
|
|
2227
2373
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
2228
2374
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -2258,6 +2404,10 @@ declare const analyticsEndpointSchemas: {
|
|
|
2258
2404
|
}, z.core.$loose>;
|
|
2259
2405
|
};
|
|
2260
2406
|
readonly analyticsIndexingDiagnostics: {
|
|
2407
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
2408
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2409
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
2410
|
+
}, z.core.$strip>>;
|
|
2261
2411
|
readonly response: z.ZodObject<{
|
|
2262
2412
|
summary: z.ZodObject<{
|
|
2263
2413
|
totalUrls: z.ZodNumber;
|
|
@@ -2274,6 +2424,29 @@ declare const analyticsEndpointSchemas: {
|
|
|
2274
2424
|
}>;
|
|
2275
2425
|
count: z.ZodNumber;
|
|
2276
2426
|
}, z.core.$loose>>;
|
|
2427
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
2428
|
+
url: z.ZodString;
|
|
2429
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2430
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
2431
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
2432
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
2433
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
2434
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
2435
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
2436
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
2437
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
2438
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
2439
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2440
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2441
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
2442
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
2443
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
2444
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
2445
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
2446
|
+
firstCheckedAt: z.ZodString;
|
|
2447
|
+
lastCheckedAt: z.ZodString;
|
|
2448
|
+
checkCount: z.ZodNumber;
|
|
2449
|
+
}, z.core.$loose>>>>;
|
|
2277
2450
|
meta: z.ZodObject<{
|
|
2278
2451
|
siteUrl: z.ZodString;
|
|
2279
2452
|
}, z.core.$loose>;
|
|
@@ -2351,9 +2524,63 @@ declare const analyticsEndpointSchemas: {
|
|
|
2351
2524
|
};
|
|
2352
2525
|
readonly analyticsAnalysisSources: {
|
|
2353
2526
|
readonly response: z.ZodObject<{
|
|
2354
|
-
|
|
2527
|
+
siteId: z.ZodString;
|
|
2528
|
+
searchType: z.ZodEnum<{
|
|
2529
|
+
web: "web";
|
|
2530
|
+
image: "image";
|
|
2531
|
+
video: "video";
|
|
2532
|
+
news: "news";
|
|
2533
|
+
discover: "discover";
|
|
2534
|
+
googleNews: "googleNews";
|
|
2535
|
+
}>;
|
|
2536
|
+
range: z.ZodObject<{
|
|
2537
|
+
start: z.ZodString;
|
|
2538
|
+
end: z.ZodString;
|
|
2539
|
+
}, z.core.$strip>;
|
|
2540
|
+
snapshotVersion: z.ZodString;
|
|
2355
2541
|
generatedAt: z.ZodString;
|
|
2356
|
-
|
|
2542
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
2543
|
+
table: z.ZodEnum<{
|
|
2544
|
+
pages: "pages";
|
|
2545
|
+
queries: "queries";
|
|
2546
|
+
countries: "countries";
|
|
2547
|
+
page_queries: "page_queries";
|
|
2548
|
+
dates: "dates";
|
|
2549
|
+
search_appearance: "search_appearance";
|
|
2550
|
+
search_appearance_pages: "search_appearance_pages";
|
|
2551
|
+
search_appearance_queries: "search_appearance_queries";
|
|
2552
|
+
search_appearance_page_queries: "search_appearance_page_queries";
|
|
2553
|
+
}>;
|
|
2554
|
+
mode: z.ZodEnum<{
|
|
2555
|
+
browser: "browser";
|
|
2556
|
+
server: "server";
|
|
2557
|
+
}>;
|
|
2558
|
+
files: z.ZodArray<z.ZodObject<{
|
|
2559
|
+
url: z.ZodString;
|
|
2560
|
+
bytes: z.ZodNumber;
|
|
2561
|
+
contentHash: z.ZodString;
|
|
2562
|
+
rowCount: z.ZodNumber;
|
|
2563
|
+
}, z.core.$loose>>;
|
|
2564
|
+
overlay: z.ZodOptional<z.ZodObject<{
|
|
2565
|
+
url: z.ZodString;
|
|
2566
|
+
bytes: z.ZodNumber;
|
|
2567
|
+
contentHash: z.ZodString;
|
|
2568
|
+
rowCount: z.ZodNumber;
|
|
2569
|
+
}, z.core.$loose>>;
|
|
2570
|
+
totalBytes: z.ZodNumber;
|
|
2571
|
+
totalRows: z.ZodNumber;
|
|
2572
|
+
}, z.core.$loose>>;
|
|
2573
|
+
serverTail: z.ZodOptional<z.ZodObject<{
|
|
2574
|
+
engine: z.ZodEnum<{
|
|
2575
|
+
"r2-sql": "r2-sql";
|
|
2576
|
+
duckdb: "duckdb";
|
|
2577
|
+
}>;
|
|
2578
|
+
endpoint: z.ZodString;
|
|
2579
|
+
}, z.core.$strip>>;
|
|
2580
|
+
eligibilityCeiling: z.ZodObject<{
|
|
2581
|
+
maxBytes: z.ZodNumber;
|
|
2582
|
+
maxRows: z.ZodNumber;
|
|
2583
|
+
}, z.core.$strip>;
|
|
2357
2584
|
}, z.core.$loose>;
|
|
2358
2585
|
};
|
|
2359
2586
|
readonly analyticsSourceInfo: {
|
|
@@ -2383,19 +2610,19 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2383
2610
|
databaseReady: z.ZodBoolean;
|
|
2384
2611
|
plan: z.ZodString;
|
|
2385
2612
|
accountStatus: z.ZodEnum<{
|
|
2386
|
-
ready: "ready";
|
|
2387
|
-
reauth_required: "reauth_required";
|
|
2388
2613
|
disconnected: "disconnected";
|
|
2389
2614
|
oauth_received: "oauth_received";
|
|
2390
2615
|
scope_missing: "scope_missing";
|
|
2391
2616
|
refresh_missing: "refresh_missing";
|
|
2392
2617
|
db_provisioning: "db_provisioning";
|
|
2618
|
+
ready: "ready";
|
|
2619
|
+
reauth_required: "reauth_required";
|
|
2393
2620
|
}>;
|
|
2394
2621
|
accountNextAction: z.ZodEnum<{
|
|
2395
|
-
reconnect_google: "reconnect_google";
|
|
2396
|
-
none: "none";
|
|
2397
2622
|
connect_google: "connect_google";
|
|
2623
|
+
reconnect_google: "reconnect_google";
|
|
2398
2624
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2625
|
+
none: "none";
|
|
2399
2626
|
}>;
|
|
2400
2627
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2401
2628
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -2499,8 +2726,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2499
2726
|
date: z.ZodString;
|
|
2500
2727
|
status: z.ZodEnum<{
|
|
2501
2728
|
queued: "queued";
|
|
2502
|
-
completed: "completed";
|
|
2503
2729
|
failed: "failed";
|
|
2730
|
+
completed: "completed";
|
|
2504
2731
|
processing: "processing";
|
|
2505
2732
|
}>;
|
|
2506
2733
|
}, z.core.$loose>>;
|
|
@@ -2525,8 +2752,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2525
2752
|
priority: z.ZodOptional<z.ZodString>;
|
|
2526
2753
|
status: z.ZodEnum<{
|
|
2527
2754
|
queued: "queued";
|
|
2528
|
-
completed: "completed";
|
|
2529
2755
|
failed: "failed";
|
|
2756
|
+
completed: "completed";
|
|
2530
2757
|
processing: "processing";
|
|
2531
2758
|
scheduled: "scheduled";
|
|
2532
2759
|
}>;
|
|
@@ -2580,8 +2807,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2580
2807
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2581
2808
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
2582
2809
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2583
|
-
provisioning: "provisioning";
|
|
2584
2810
|
ready: "ready";
|
|
2811
|
+
provisioning: "provisioning";
|
|
2585
2812
|
}>>;
|
|
2586
2813
|
}, z.core.$loose>;
|
|
2587
2814
|
};
|
|
@@ -2600,9 +2827,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2600
2827
|
registered: z.ZodBoolean;
|
|
2601
2828
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2602
2829
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2830
|
+
syncing: "syncing";
|
|
2603
2831
|
pending: "pending";
|
|
2604
2832
|
error: "error";
|
|
2605
|
-
syncing: "syncing";
|
|
2606
2833
|
synced: "synced";
|
|
2607
2834
|
}>>>;
|
|
2608
2835
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2621,9 +2848,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2621
2848
|
readonly response: z.ZodObject<{
|
|
2622
2849
|
userId: z.ZodString;
|
|
2623
2850
|
status: z.ZodEnum<{
|
|
2624
|
-
provisioning: "provisioning";
|
|
2625
2851
|
ready: "ready";
|
|
2626
2852
|
reauth_required: "reauth_required";
|
|
2853
|
+
provisioning: "provisioning";
|
|
2627
2854
|
}>;
|
|
2628
2855
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
2629
2856
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2644,21 +2871,21 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2644
2871
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
2645
2872
|
account: z.ZodObject<{
|
|
2646
2873
|
status: z.ZodEnum<{
|
|
2647
|
-
ready: "ready";
|
|
2648
|
-
reauth_required: "reauth_required";
|
|
2649
2874
|
disconnected: "disconnected";
|
|
2650
2875
|
oauth_received: "oauth_received";
|
|
2651
2876
|
scope_missing: "scope_missing";
|
|
2652
2877
|
refresh_missing: "refresh_missing";
|
|
2653
2878
|
db_provisioning: "db_provisioning";
|
|
2879
|
+
ready: "ready";
|
|
2880
|
+
reauth_required: "reauth_required";
|
|
2654
2881
|
}>;
|
|
2655
2882
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
2656
2883
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2657
2884
|
nextAction: z.ZodEnum<{
|
|
2658
|
-
reconnect_google: "reconnect_google";
|
|
2659
|
-
none: "none";
|
|
2660
2885
|
connect_google: "connect_google";
|
|
2886
|
+
reconnect_google: "reconnect_google";
|
|
2661
2887
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2888
|
+
none: "none";
|
|
2662
2889
|
}>;
|
|
2663
2890
|
}, z.core.$loose>;
|
|
2664
2891
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -2686,14 +2913,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2686
2913
|
}, z.core.$loose>;
|
|
2687
2914
|
analytics: z.ZodObject<{
|
|
2688
2915
|
status: z.ZodEnum<{
|
|
2689
|
-
queued: "queued";
|
|
2690
2916
|
ready: "ready";
|
|
2691
|
-
failed: "failed";
|
|
2692
2917
|
not_registered: "not_registered";
|
|
2918
|
+
queued: "queued";
|
|
2693
2919
|
preparing: "preparing";
|
|
2694
2920
|
syncing: "syncing";
|
|
2695
2921
|
queryable_live: "queryable_live";
|
|
2696
2922
|
queryable_partial: "queryable_partial";
|
|
2923
|
+
failed: "failed";
|
|
2697
2924
|
}>;
|
|
2698
2925
|
progress: z.ZodObject<{
|
|
2699
2926
|
completed: z.ZodNumber;
|
|
@@ -2703,10 +2930,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2703
2930
|
}, z.core.$strip>;
|
|
2704
2931
|
queryable: z.ZodBoolean;
|
|
2705
2932
|
sourceMode: z.ZodEnum<{
|
|
2706
|
-
d1: "d1";
|
|
2707
|
-
r2: "r2";
|
|
2708
2933
|
none: "none";
|
|
2709
2934
|
live: "live";
|
|
2935
|
+
d1: "d1";
|
|
2936
|
+
r2: "r2";
|
|
2710
2937
|
mixed: "mixed";
|
|
2711
2938
|
}>;
|
|
2712
2939
|
syncedRange: z.ZodObject<{
|
|
@@ -2721,10 +2948,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2721
2948
|
}, z.core.$loose>;
|
|
2722
2949
|
sitemaps: z.ZodObject<{
|
|
2723
2950
|
status: z.ZodEnum<{
|
|
2724
|
-
unknown: "unknown";
|
|
2725
2951
|
ready: "ready";
|
|
2726
|
-
failed: "failed";
|
|
2727
2952
|
syncing: "syncing";
|
|
2953
|
+
failed: "failed";
|
|
2954
|
+
unknown: "unknown";
|
|
2728
2955
|
discovering: "discovering";
|
|
2729
2956
|
none_found: "none_found";
|
|
2730
2957
|
auto_submitted: "auto_submitted";
|
|
@@ -2796,9 +3023,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2796
3023
|
siteId: z.ZodString;
|
|
2797
3024
|
siteUrl: z.ZodString;
|
|
2798
3025
|
syncStatus: z.ZodEnum<{
|
|
3026
|
+
syncing: "syncing";
|
|
2799
3027
|
pending: "pending";
|
|
2800
3028
|
error: "error";
|
|
2801
|
-
syncing: "syncing";
|
|
2802
3029
|
synced: "synced";
|
|
2803
3030
|
idle: "idle";
|
|
2804
3031
|
}>;
|
|
@@ -2816,9 +3043,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2816
3043
|
registered: z.ZodBoolean;
|
|
2817
3044
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2818
3045
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
3046
|
+
syncing: "syncing";
|
|
2819
3047
|
pending: "pending";
|
|
2820
3048
|
error: "error";
|
|
2821
|
-
syncing: "syncing";
|
|
2822
3049
|
synced: "synced";
|
|
2823
3050
|
}>>>;
|
|
2824
3051
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2863,9 +3090,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2863
3090
|
readonly response: z.ZodObject<{
|
|
2864
3091
|
siteId: z.ZodString;
|
|
2865
3092
|
status: z.ZodEnum<{
|
|
3093
|
+
syncing: "syncing";
|
|
2866
3094
|
pending: "pending";
|
|
2867
3095
|
error: "error";
|
|
2868
|
-
syncing: "syncing";
|
|
2869
3096
|
synced: "synced";
|
|
2870
3097
|
idle: "idle";
|
|
2871
3098
|
}>;
|
|
@@ -2899,6 +3126,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2899
3126
|
"site.auth.failed": "site.auth.failed";
|
|
2900
3127
|
"job.failed": "job.failed";
|
|
2901
3128
|
}>>>;
|
|
3129
|
+
enabledSearchTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3130
|
+
web: "web";
|
|
3131
|
+
image: "image";
|
|
3132
|
+
video: "video";
|
|
3133
|
+
news: "news";
|
|
3134
|
+
discover: "discover";
|
|
3135
|
+
googleNews: "googleNews";
|
|
3136
|
+
}>>>;
|
|
2902
3137
|
}, z.core.$loose>>>;
|
|
2903
3138
|
}, z.core.$strip>;
|
|
2904
3139
|
readonly response: z.ZodObject<{
|
|
@@ -2906,8 +3141,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2906
3141
|
siteUrl: z.ZodString;
|
|
2907
3142
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2908
3143
|
status: z.ZodEnum<{
|
|
2909
|
-
error: "error";
|
|
2910
3144
|
registered: "registered";
|
|
3145
|
+
error: "error";
|
|
2911
3146
|
already_exists: "already_exists";
|
|
2912
3147
|
not_found: "not_found";
|
|
2913
3148
|
}>;
|
|
@@ -2939,9 +3174,63 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2939
3174
|
};
|
|
2940
3175
|
readonly getAnalysisSources: {
|
|
2941
3176
|
readonly response: z.ZodObject<{
|
|
2942
|
-
|
|
3177
|
+
siteId: z.ZodString;
|
|
3178
|
+
searchType: z.ZodEnum<{
|
|
3179
|
+
web: "web";
|
|
3180
|
+
image: "image";
|
|
3181
|
+
video: "video";
|
|
3182
|
+
news: "news";
|
|
3183
|
+
discover: "discover";
|
|
3184
|
+
googleNews: "googleNews";
|
|
3185
|
+
}>;
|
|
3186
|
+
range: z.ZodObject<{
|
|
3187
|
+
start: z.ZodString;
|
|
3188
|
+
end: z.ZodString;
|
|
3189
|
+
}, z.core.$strip>;
|
|
3190
|
+
snapshotVersion: z.ZodString;
|
|
2943
3191
|
generatedAt: z.ZodString;
|
|
2944
|
-
|
|
3192
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
3193
|
+
table: z.ZodEnum<{
|
|
3194
|
+
pages: "pages";
|
|
3195
|
+
queries: "queries";
|
|
3196
|
+
countries: "countries";
|
|
3197
|
+
page_queries: "page_queries";
|
|
3198
|
+
dates: "dates";
|
|
3199
|
+
search_appearance: "search_appearance";
|
|
3200
|
+
search_appearance_pages: "search_appearance_pages";
|
|
3201
|
+
search_appearance_queries: "search_appearance_queries";
|
|
3202
|
+
search_appearance_page_queries: "search_appearance_page_queries";
|
|
3203
|
+
}>;
|
|
3204
|
+
mode: z.ZodEnum<{
|
|
3205
|
+
browser: "browser";
|
|
3206
|
+
server: "server";
|
|
3207
|
+
}>;
|
|
3208
|
+
files: z.ZodArray<z.ZodObject<{
|
|
3209
|
+
url: z.ZodString;
|
|
3210
|
+
bytes: z.ZodNumber;
|
|
3211
|
+
contentHash: z.ZodString;
|
|
3212
|
+
rowCount: z.ZodNumber;
|
|
3213
|
+
}, z.core.$loose>>;
|
|
3214
|
+
overlay: z.ZodOptional<z.ZodObject<{
|
|
3215
|
+
url: z.ZodString;
|
|
3216
|
+
bytes: z.ZodNumber;
|
|
3217
|
+
contentHash: z.ZodString;
|
|
3218
|
+
rowCount: z.ZodNumber;
|
|
3219
|
+
}, z.core.$loose>>;
|
|
3220
|
+
totalBytes: z.ZodNumber;
|
|
3221
|
+
totalRows: z.ZodNumber;
|
|
3222
|
+
}, z.core.$loose>>;
|
|
3223
|
+
serverTail: z.ZodOptional<z.ZodObject<{
|
|
3224
|
+
engine: z.ZodEnum<{
|
|
3225
|
+
"r2-sql": "r2-sql";
|
|
3226
|
+
duckdb: "duckdb";
|
|
3227
|
+
}>;
|
|
3228
|
+
endpoint: z.ZodString;
|
|
3229
|
+
}, z.core.$strip>>;
|
|
3230
|
+
eligibilityCeiling: z.ZodObject<{
|
|
3231
|
+
maxBytes: z.ZodNumber;
|
|
3232
|
+
maxRows: z.ZodNumber;
|
|
3233
|
+
}, z.core.$strip>;
|
|
2945
3234
|
}, z.core.$loose>;
|
|
2946
3235
|
};
|
|
2947
3236
|
readonly getData: {
|
|
@@ -3284,7 +3573,29 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3284
3573
|
search: z.ZodOptional<z.ZodString>;
|
|
3285
3574
|
}, z.core.$strip>>;
|
|
3286
3575
|
readonly response: z.ZodObject<{
|
|
3287
|
-
urls: z.ZodArray<z.
|
|
3576
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
3577
|
+
url: z.ZodString;
|
|
3578
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3579
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
3580
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
3581
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
3582
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
3583
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
3584
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
3585
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
3586
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
3587
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
3588
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3589
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3590
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
3591
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3592
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
3593
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3594
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
3595
|
+
firstCheckedAt: z.ZodString;
|
|
3596
|
+
lastCheckedAt: z.ZodString;
|
|
3597
|
+
checkCount: z.ZodNumber;
|
|
3598
|
+
}, z.core.$loose>>;
|
|
3288
3599
|
pagination: z.ZodObject<{
|
|
3289
3600
|
total: z.ZodNumber;
|
|
3290
3601
|
limit: z.ZodNumber;
|
|
@@ -3299,13 +3610,49 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3299
3610
|
}, z.core.$loose>;
|
|
3300
3611
|
};
|
|
3301
3612
|
readonly getIndexingDiagnostics: {
|
|
3613
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
3614
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3615
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
3616
|
+
}, z.core.$strip>>;
|
|
3302
3617
|
readonly response: z.ZodObject<{
|
|
3303
3618
|
summary: z.ZodObject<{
|
|
3304
3619
|
totalUrls: z.ZodNumber;
|
|
3305
3620
|
indexed: z.ZodNumber;
|
|
3306
3621
|
indexedPercent: z.ZodNumber;
|
|
3307
3622
|
}, z.core.$loose>;
|
|
3308
|
-
issues: z.ZodArray<z.
|
|
3623
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
3624
|
+
type: z.ZodString;
|
|
3625
|
+
label: z.ZodString;
|
|
3626
|
+
severity: z.ZodEnum<{
|
|
3627
|
+
error: "error";
|
|
3628
|
+
warning: "warning";
|
|
3629
|
+
info: "info";
|
|
3630
|
+
}>;
|
|
3631
|
+
count: z.ZodNumber;
|
|
3632
|
+
}, z.core.$loose>>;
|
|
3633
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
3634
|
+
url: z.ZodString;
|
|
3635
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3636
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
3637
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
3638
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
3639
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
3640
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
3641
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
3642
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
3643
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
3644
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
3645
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3646
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3647
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
3648
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3649
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
3650
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3651
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
3652
|
+
firstCheckedAt: z.ZodString;
|
|
3653
|
+
lastCheckedAt: z.ZodString;
|
|
3654
|
+
checkCount: z.ZodNumber;
|
|
3655
|
+
}, z.core.$loose>>>>;
|
|
3309
3656
|
meta: z.ZodObject<{
|
|
3310
3657
|
siteUrl: z.ZodString;
|
|
3311
3658
|
}, z.core.$loose>;
|
|
@@ -3761,19 +4108,19 @@ declare const partnerEndpointSchemas: {
|
|
|
3761
4108
|
databaseReady: z.ZodBoolean;
|
|
3762
4109
|
plan: z.ZodString;
|
|
3763
4110
|
accountStatus: z.ZodEnum<{
|
|
3764
|
-
ready: "ready";
|
|
3765
|
-
reauth_required: "reauth_required";
|
|
3766
4111
|
disconnected: "disconnected";
|
|
3767
4112
|
oauth_received: "oauth_received";
|
|
3768
4113
|
scope_missing: "scope_missing";
|
|
3769
4114
|
refresh_missing: "refresh_missing";
|
|
3770
4115
|
db_provisioning: "db_provisioning";
|
|
4116
|
+
ready: "ready";
|
|
4117
|
+
reauth_required: "reauth_required";
|
|
3771
4118
|
}>;
|
|
3772
4119
|
accountNextAction: z.ZodEnum<{
|
|
3773
|
-
reconnect_google: "reconnect_google";
|
|
3774
|
-
none: "none";
|
|
3775
4120
|
connect_google: "connect_google";
|
|
4121
|
+
reconnect_google: "reconnect_google";
|
|
3776
4122
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4123
|
+
none: "none";
|
|
3777
4124
|
}>;
|
|
3778
4125
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
3779
4126
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -3877,8 +4224,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3877
4224
|
date: z.ZodString;
|
|
3878
4225
|
status: z.ZodEnum<{
|
|
3879
4226
|
queued: "queued";
|
|
3880
|
-
completed: "completed";
|
|
3881
4227
|
failed: "failed";
|
|
4228
|
+
completed: "completed";
|
|
3882
4229
|
processing: "processing";
|
|
3883
4230
|
}>;
|
|
3884
4231
|
}, z.core.$loose>>;
|
|
@@ -3903,8 +4250,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3903
4250
|
priority: z.ZodOptional<z.ZodString>;
|
|
3904
4251
|
status: z.ZodEnum<{
|
|
3905
4252
|
queued: "queued";
|
|
3906
|
-
completed: "completed";
|
|
3907
4253
|
failed: "failed";
|
|
4254
|
+
completed: "completed";
|
|
3908
4255
|
processing: "processing";
|
|
3909
4256
|
scheduled: "scheduled";
|
|
3910
4257
|
}>;
|
|
@@ -3958,8 +4305,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3958
4305
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3959
4306
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
3960
4307
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3961
|
-
provisioning: "provisioning";
|
|
3962
4308
|
ready: "ready";
|
|
4309
|
+
provisioning: "provisioning";
|
|
3963
4310
|
}>>;
|
|
3964
4311
|
}, z.core.$loose>;
|
|
3965
4312
|
};
|
|
@@ -3978,9 +4325,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3978
4325
|
registered: z.ZodBoolean;
|
|
3979
4326
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3980
4327
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4328
|
+
syncing: "syncing";
|
|
3981
4329
|
pending: "pending";
|
|
3982
4330
|
error: "error";
|
|
3983
|
-
syncing: "syncing";
|
|
3984
4331
|
synced: "synced";
|
|
3985
4332
|
}>>>;
|
|
3986
4333
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3999,9 +4346,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3999
4346
|
readonly response: z.ZodObject<{
|
|
4000
4347
|
userId: z.ZodString;
|
|
4001
4348
|
status: z.ZodEnum<{
|
|
4002
|
-
provisioning: "provisioning";
|
|
4003
4349
|
ready: "ready";
|
|
4004
4350
|
reauth_required: "reauth_required";
|
|
4351
|
+
provisioning: "provisioning";
|
|
4005
4352
|
}>;
|
|
4006
4353
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
4007
4354
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4022,21 +4369,21 @@ declare const partnerEndpointSchemas: {
|
|
|
4022
4369
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
4023
4370
|
account: z.ZodObject<{
|
|
4024
4371
|
status: z.ZodEnum<{
|
|
4025
|
-
ready: "ready";
|
|
4026
|
-
reauth_required: "reauth_required";
|
|
4027
4372
|
disconnected: "disconnected";
|
|
4028
4373
|
oauth_received: "oauth_received";
|
|
4029
4374
|
scope_missing: "scope_missing";
|
|
4030
4375
|
refresh_missing: "refresh_missing";
|
|
4031
4376
|
db_provisioning: "db_provisioning";
|
|
4377
|
+
ready: "ready";
|
|
4378
|
+
reauth_required: "reauth_required";
|
|
4032
4379
|
}>;
|
|
4033
4380
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
4034
4381
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
4035
4382
|
nextAction: z.ZodEnum<{
|
|
4036
|
-
reconnect_google: "reconnect_google";
|
|
4037
|
-
none: "none";
|
|
4038
4383
|
connect_google: "connect_google";
|
|
4384
|
+
reconnect_google: "reconnect_google";
|
|
4039
4385
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4386
|
+
none: "none";
|
|
4040
4387
|
}>;
|
|
4041
4388
|
}, z.core.$loose>;
|
|
4042
4389
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -4064,14 +4411,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4064
4411
|
}, z.core.$loose>;
|
|
4065
4412
|
analytics: z.ZodObject<{
|
|
4066
4413
|
status: z.ZodEnum<{
|
|
4067
|
-
queued: "queued";
|
|
4068
4414
|
ready: "ready";
|
|
4069
|
-
failed: "failed";
|
|
4070
4415
|
not_registered: "not_registered";
|
|
4416
|
+
queued: "queued";
|
|
4071
4417
|
preparing: "preparing";
|
|
4072
4418
|
syncing: "syncing";
|
|
4073
4419
|
queryable_live: "queryable_live";
|
|
4074
4420
|
queryable_partial: "queryable_partial";
|
|
4421
|
+
failed: "failed";
|
|
4075
4422
|
}>;
|
|
4076
4423
|
progress: z.ZodObject<{
|
|
4077
4424
|
completed: z.ZodNumber;
|
|
@@ -4081,10 +4428,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4081
4428
|
}, z.core.$strip>;
|
|
4082
4429
|
queryable: z.ZodBoolean;
|
|
4083
4430
|
sourceMode: z.ZodEnum<{
|
|
4084
|
-
d1: "d1";
|
|
4085
|
-
r2: "r2";
|
|
4086
4431
|
none: "none";
|
|
4087
4432
|
live: "live";
|
|
4433
|
+
d1: "d1";
|
|
4434
|
+
r2: "r2";
|
|
4088
4435
|
mixed: "mixed";
|
|
4089
4436
|
}>;
|
|
4090
4437
|
syncedRange: z.ZodObject<{
|
|
@@ -4099,10 +4446,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4099
4446
|
}, z.core.$loose>;
|
|
4100
4447
|
sitemaps: z.ZodObject<{
|
|
4101
4448
|
status: z.ZodEnum<{
|
|
4102
|
-
unknown: "unknown";
|
|
4103
4449
|
ready: "ready";
|
|
4104
|
-
failed: "failed";
|
|
4105
4450
|
syncing: "syncing";
|
|
4451
|
+
failed: "failed";
|
|
4452
|
+
unknown: "unknown";
|
|
4106
4453
|
discovering: "discovering";
|
|
4107
4454
|
none_found: "none_found";
|
|
4108
4455
|
auto_submitted: "auto_submitted";
|
|
@@ -4174,9 +4521,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4174
4521
|
siteId: z.ZodString;
|
|
4175
4522
|
siteUrl: z.ZodString;
|
|
4176
4523
|
syncStatus: z.ZodEnum<{
|
|
4524
|
+
syncing: "syncing";
|
|
4177
4525
|
pending: "pending";
|
|
4178
4526
|
error: "error";
|
|
4179
|
-
syncing: "syncing";
|
|
4180
4527
|
synced: "synced";
|
|
4181
4528
|
idle: "idle";
|
|
4182
4529
|
}>;
|
|
@@ -4194,9 +4541,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4194
4541
|
registered: z.ZodBoolean;
|
|
4195
4542
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4196
4543
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4544
|
+
syncing: "syncing";
|
|
4197
4545
|
pending: "pending";
|
|
4198
4546
|
error: "error";
|
|
4199
|
-
syncing: "syncing";
|
|
4200
4547
|
synced: "synced";
|
|
4201
4548
|
}>>>;
|
|
4202
4549
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4241,9 +4588,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4241
4588
|
readonly response: z.ZodObject<{
|
|
4242
4589
|
siteId: z.ZodString;
|
|
4243
4590
|
status: z.ZodEnum<{
|
|
4591
|
+
syncing: "syncing";
|
|
4244
4592
|
pending: "pending";
|
|
4245
4593
|
error: "error";
|
|
4246
|
-
syncing: "syncing";
|
|
4247
4594
|
synced: "synced";
|
|
4248
4595
|
idle: "idle";
|
|
4249
4596
|
}>;
|
|
@@ -4277,6 +4624,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4277
4624
|
"site.auth.failed": "site.auth.failed";
|
|
4278
4625
|
"job.failed": "job.failed";
|
|
4279
4626
|
}>>>;
|
|
4627
|
+
enabledSearchTypes: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4628
|
+
web: "web";
|
|
4629
|
+
image: "image";
|
|
4630
|
+
video: "video";
|
|
4631
|
+
news: "news";
|
|
4632
|
+
discover: "discover";
|
|
4633
|
+
googleNews: "googleNews";
|
|
4634
|
+
}>>>;
|
|
4280
4635
|
}, z.core.$loose>>>;
|
|
4281
4636
|
}, z.core.$strip>;
|
|
4282
4637
|
readonly response: z.ZodObject<{
|
|
@@ -4284,8 +4639,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4284
4639
|
siteUrl: z.ZodString;
|
|
4285
4640
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4286
4641
|
status: z.ZodEnum<{
|
|
4287
|
-
error: "error";
|
|
4288
4642
|
registered: "registered";
|
|
4643
|
+
error: "error";
|
|
4289
4644
|
already_exists: "already_exists";
|
|
4290
4645
|
not_found: "not_found";
|
|
4291
4646
|
}>;
|
|
@@ -4317,9 +4672,63 @@ declare const partnerEndpointSchemas: {
|
|
|
4317
4672
|
};
|
|
4318
4673
|
readonly getAnalysisSources: {
|
|
4319
4674
|
readonly response: z.ZodObject<{
|
|
4320
|
-
|
|
4675
|
+
siteId: z.ZodString;
|
|
4676
|
+
searchType: z.ZodEnum<{
|
|
4677
|
+
web: "web";
|
|
4678
|
+
image: "image";
|
|
4679
|
+
video: "video";
|
|
4680
|
+
news: "news";
|
|
4681
|
+
discover: "discover";
|
|
4682
|
+
googleNews: "googleNews";
|
|
4683
|
+
}>;
|
|
4684
|
+
range: z.ZodObject<{
|
|
4685
|
+
start: z.ZodString;
|
|
4686
|
+
end: z.ZodString;
|
|
4687
|
+
}, z.core.$strip>;
|
|
4688
|
+
snapshotVersion: z.ZodString;
|
|
4321
4689
|
generatedAt: z.ZodString;
|
|
4322
|
-
|
|
4690
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
4691
|
+
table: z.ZodEnum<{
|
|
4692
|
+
pages: "pages";
|
|
4693
|
+
queries: "queries";
|
|
4694
|
+
countries: "countries";
|
|
4695
|
+
page_queries: "page_queries";
|
|
4696
|
+
dates: "dates";
|
|
4697
|
+
search_appearance: "search_appearance";
|
|
4698
|
+
search_appearance_pages: "search_appearance_pages";
|
|
4699
|
+
search_appearance_queries: "search_appearance_queries";
|
|
4700
|
+
search_appearance_page_queries: "search_appearance_page_queries";
|
|
4701
|
+
}>;
|
|
4702
|
+
mode: z.ZodEnum<{
|
|
4703
|
+
browser: "browser";
|
|
4704
|
+
server: "server";
|
|
4705
|
+
}>;
|
|
4706
|
+
files: z.ZodArray<z.ZodObject<{
|
|
4707
|
+
url: z.ZodString;
|
|
4708
|
+
bytes: z.ZodNumber;
|
|
4709
|
+
contentHash: z.ZodString;
|
|
4710
|
+
rowCount: z.ZodNumber;
|
|
4711
|
+
}, z.core.$loose>>;
|
|
4712
|
+
overlay: z.ZodOptional<z.ZodObject<{
|
|
4713
|
+
url: z.ZodString;
|
|
4714
|
+
bytes: z.ZodNumber;
|
|
4715
|
+
contentHash: z.ZodString;
|
|
4716
|
+
rowCount: z.ZodNumber;
|
|
4717
|
+
}, z.core.$loose>>;
|
|
4718
|
+
totalBytes: z.ZodNumber;
|
|
4719
|
+
totalRows: z.ZodNumber;
|
|
4720
|
+
}, z.core.$loose>>;
|
|
4721
|
+
serverTail: z.ZodOptional<z.ZodObject<{
|
|
4722
|
+
engine: z.ZodEnum<{
|
|
4723
|
+
"r2-sql": "r2-sql";
|
|
4724
|
+
duckdb: "duckdb";
|
|
4725
|
+
}>;
|
|
4726
|
+
endpoint: z.ZodString;
|
|
4727
|
+
}, z.core.$strip>>;
|
|
4728
|
+
eligibilityCeiling: z.ZodObject<{
|
|
4729
|
+
maxBytes: z.ZodNumber;
|
|
4730
|
+
maxRows: z.ZodNumber;
|
|
4731
|
+
}, z.core.$strip>;
|
|
4323
4732
|
}, z.core.$loose>;
|
|
4324
4733
|
};
|
|
4325
4734
|
readonly getData: {
|
|
@@ -4662,7 +5071,29 @@ declare const partnerEndpointSchemas: {
|
|
|
4662
5071
|
search: z.ZodOptional<z.ZodString>;
|
|
4663
5072
|
}, z.core.$strip>>;
|
|
4664
5073
|
readonly response: z.ZodObject<{
|
|
4665
|
-
urls: z.ZodArray<z.
|
|
5074
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
5075
|
+
url: z.ZodString;
|
|
5076
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5077
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
5078
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
5079
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
5080
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
5081
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
5082
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
5083
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
5084
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
5085
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
5086
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5087
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5088
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
5089
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5090
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
5091
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5092
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
5093
|
+
firstCheckedAt: z.ZodString;
|
|
5094
|
+
lastCheckedAt: z.ZodString;
|
|
5095
|
+
checkCount: z.ZodNumber;
|
|
5096
|
+
}, z.core.$loose>>;
|
|
4666
5097
|
pagination: z.ZodObject<{
|
|
4667
5098
|
total: z.ZodNumber;
|
|
4668
5099
|
limit: z.ZodNumber;
|
|
@@ -4677,13 +5108,49 @@ declare const partnerEndpointSchemas: {
|
|
|
4677
5108
|
}, z.core.$loose>;
|
|
4678
5109
|
};
|
|
4679
5110
|
readonly getIndexingDiagnostics: {
|
|
5111
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
5112
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5113
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
5114
|
+
}, z.core.$strip>>;
|
|
4680
5115
|
readonly response: z.ZodObject<{
|
|
4681
5116
|
summary: z.ZodObject<{
|
|
4682
5117
|
totalUrls: z.ZodNumber;
|
|
4683
5118
|
indexed: z.ZodNumber;
|
|
4684
5119
|
indexedPercent: z.ZodNumber;
|
|
4685
5120
|
}, z.core.$loose>;
|
|
4686
|
-
issues: z.ZodArray<z.
|
|
5121
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
5122
|
+
type: z.ZodString;
|
|
5123
|
+
label: z.ZodString;
|
|
5124
|
+
severity: z.ZodEnum<{
|
|
5125
|
+
error: "error";
|
|
5126
|
+
warning: "warning";
|
|
5127
|
+
info: "info";
|
|
5128
|
+
}>;
|
|
5129
|
+
count: z.ZodNumber;
|
|
5130
|
+
}, z.core.$loose>>;
|
|
5131
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5132
|
+
url: z.ZodString;
|
|
5133
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5134
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
5135
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
5136
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
5137
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
5138
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
5139
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
5140
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
5141
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
5142
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
5143
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5144
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5145
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
5146
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5147
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
5148
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5149
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
5150
|
+
firstCheckedAt: z.ZodString;
|
|
5151
|
+
lastCheckedAt: z.ZodString;
|
|
5152
|
+
checkCount: z.ZodNumber;
|
|
5153
|
+
}, z.core.$loose>>>>;
|
|
4687
5154
|
meta: z.ZodObject<{
|
|
4688
5155
|
siteUrl: z.ZodString;
|
|
4689
5156
|
}, z.core.$loose>;
|
|
@@ -5317,6 +5784,7 @@ declare const partnerEndpointSchemas: {
|
|
|
5317
5784
|
readonly response: z.ZodObject<{
|
|
5318
5785
|
urls: z.ZodArray<z.ZodObject<{
|
|
5319
5786
|
url: z.ZodString;
|
|
5787
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5320
5788
|
verdict: z.ZodNullable<z.ZodString>;
|
|
5321
5789
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
5322
5790
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -5352,6 +5820,10 @@ declare const partnerEndpointSchemas: {
|
|
|
5352
5820
|
}, z.core.$loose>;
|
|
5353
5821
|
};
|
|
5354
5822
|
readonly analyticsIndexingDiagnostics: {
|
|
5823
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
5824
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5825
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
5826
|
+
}, z.core.$strip>>;
|
|
5355
5827
|
readonly response: z.ZodObject<{
|
|
5356
5828
|
summary: z.ZodObject<{
|
|
5357
5829
|
totalUrls: z.ZodNumber;
|
|
@@ -5368,6 +5840,29 @@ declare const partnerEndpointSchemas: {
|
|
|
5368
5840
|
}>;
|
|
5369
5841
|
count: z.ZodNumber;
|
|
5370
5842
|
}, z.core.$loose>>;
|
|
5843
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5844
|
+
url: z.ZodString;
|
|
5845
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5846
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
5847
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
5848
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
5849
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
5850
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
5851
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
5852
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
5853
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
5854
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
5855
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5856
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5857
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
5858
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5859
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
5860
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5861
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
5862
|
+
firstCheckedAt: z.ZodString;
|
|
5863
|
+
lastCheckedAt: z.ZodString;
|
|
5864
|
+
checkCount: z.ZodNumber;
|
|
5865
|
+
}, z.core.$loose>>>>;
|
|
5371
5866
|
meta: z.ZodObject<{
|
|
5372
5867
|
siteUrl: z.ZodString;
|
|
5373
5868
|
}, z.core.$loose>;
|
|
@@ -5445,9 +5940,63 @@ declare const partnerEndpointSchemas: {
|
|
|
5445
5940
|
};
|
|
5446
5941
|
readonly analyticsAnalysisSources: {
|
|
5447
5942
|
readonly response: z.ZodObject<{
|
|
5448
|
-
|
|
5943
|
+
siteId: z.ZodString;
|
|
5944
|
+
searchType: z.ZodEnum<{
|
|
5945
|
+
web: "web";
|
|
5946
|
+
image: "image";
|
|
5947
|
+
video: "video";
|
|
5948
|
+
news: "news";
|
|
5949
|
+
discover: "discover";
|
|
5950
|
+
googleNews: "googleNews";
|
|
5951
|
+
}>;
|
|
5952
|
+
range: z.ZodObject<{
|
|
5953
|
+
start: z.ZodString;
|
|
5954
|
+
end: z.ZodString;
|
|
5955
|
+
}, z.core.$strip>;
|
|
5956
|
+
snapshotVersion: z.ZodString;
|
|
5449
5957
|
generatedAt: z.ZodString;
|
|
5450
|
-
|
|
5958
|
+
tables: z.ZodArray<z.ZodObject<{
|
|
5959
|
+
table: z.ZodEnum<{
|
|
5960
|
+
pages: "pages";
|
|
5961
|
+
queries: "queries";
|
|
5962
|
+
countries: "countries";
|
|
5963
|
+
page_queries: "page_queries";
|
|
5964
|
+
dates: "dates";
|
|
5965
|
+
search_appearance: "search_appearance";
|
|
5966
|
+
search_appearance_pages: "search_appearance_pages";
|
|
5967
|
+
search_appearance_queries: "search_appearance_queries";
|
|
5968
|
+
search_appearance_page_queries: "search_appearance_page_queries";
|
|
5969
|
+
}>;
|
|
5970
|
+
mode: z.ZodEnum<{
|
|
5971
|
+
browser: "browser";
|
|
5972
|
+
server: "server";
|
|
5973
|
+
}>;
|
|
5974
|
+
files: z.ZodArray<z.ZodObject<{
|
|
5975
|
+
url: z.ZodString;
|
|
5976
|
+
bytes: z.ZodNumber;
|
|
5977
|
+
contentHash: z.ZodString;
|
|
5978
|
+
rowCount: z.ZodNumber;
|
|
5979
|
+
}, z.core.$loose>>;
|
|
5980
|
+
overlay: z.ZodOptional<z.ZodObject<{
|
|
5981
|
+
url: z.ZodString;
|
|
5982
|
+
bytes: z.ZodNumber;
|
|
5983
|
+
contentHash: z.ZodString;
|
|
5984
|
+
rowCount: z.ZodNumber;
|
|
5985
|
+
}, z.core.$loose>>;
|
|
5986
|
+
totalBytes: z.ZodNumber;
|
|
5987
|
+
totalRows: z.ZodNumber;
|
|
5988
|
+
}, z.core.$loose>>;
|
|
5989
|
+
serverTail: z.ZodOptional<z.ZodObject<{
|
|
5990
|
+
engine: z.ZodEnum<{
|
|
5991
|
+
"r2-sql": "r2-sql";
|
|
5992
|
+
duckdb: "duckdb";
|
|
5993
|
+
}>;
|
|
5994
|
+
endpoint: z.ZodString;
|
|
5995
|
+
}, z.core.$strip>>;
|
|
5996
|
+
eligibilityCeiling: z.ZodObject<{
|
|
5997
|
+
maxBytes: z.ZodNumber;
|
|
5998
|
+
maxRows: z.ZodNumber;
|
|
5999
|
+
}, z.core.$strip>;
|
|
5451
6000
|
}, z.core.$loose>;
|
|
5452
6001
|
};
|
|
5453
6002
|
readonly analyticsSourceInfo: {
|
|
@@ -5466,4 +6015,4 @@ declare const partnerEndpointSchemas: {
|
|
|
5466
6015
|
}, z.core.$loose>;
|
|
5467
6016
|
};
|
|
5468
6017
|
};
|
|
5469
|
-
export { addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsRoutes, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
|
6018
|
+
export { addPartnerTeamMemberSchema, analyticsEndpointSchemas, analyticsRoutes, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisParamsSchema, gscdumpAnalysisPresetSchema, gscdumpAnalysisResponseSchema, gscdumpAnalysisSourcesResponseSchema, gscdumpAvailableSiteSchema, gscdumpCanonicalMismatchesResponseSchema, gscdumpDataDetailResponseSchema, gscdumpDataResponseSchema, gscdumpDataRowSchema, gscdumpDateRangeParamsSchema, gscdumpDeletePartnerUserResponseSchema, gscdumpHealthResponseSchema, gscdumpIndexPercentParamsSchema, gscdumpIndexPercentResponseSchema, gscdumpIndexingDiagnosticsResponseSchema, gscdumpIndexingResponseSchema, gscdumpIndexingUrlsResponseSchema, gscdumpKeywordSparklinesParamsSchema, gscdumpKeywordSparklinesResponseSchema, gscdumpMetaSchema, gscdumpPageTrendParamsSchema, gscdumpPageTrendResponseSchema, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, indexingDiagnosticsParamsSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|