@gscdump/contracts 0.32.12 → 0.33.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/_chunks/schemas.d.mts +340 -85
- package/dist/_chunks/schemas.mjs +18 -5
- package/dist/_chunks/types.d.mts +21 -3
- package/dist/analytics.d.mts +2 -2
- package/dist/index.d.mts +3 -3
- 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
|
}>;
|
|
@@ -1173,8 +1198,8 @@ declare const bulkRegisterPartnerSitesResponseSchema: z.ZodObject<{
|
|
|
1173
1198
|
siteUrl: z.ZodString;
|
|
1174
1199
|
siteId: z.ZodOptional<z.ZodString>;
|
|
1175
1200
|
status: z.ZodEnum<{
|
|
1176
|
-
error: "error";
|
|
1177
1201
|
registered: "registered";
|
|
1202
|
+
error: "error";
|
|
1178
1203
|
already_exists: "already_exists";
|
|
1179
1204
|
not_found: "not_found";
|
|
1180
1205
|
}>;
|
|
@@ -1373,6 +1398,10 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1373
1398
|
issue: z.ZodOptional<z.ZodString>;
|
|
1374
1399
|
search: z.ZodOptional<z.ZodString>;
|
|
1375
1400
|
}, z.core.$strip>>;
|
|
1401
|
+
declare const indexingDiagnosticsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1402
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1403
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
1404
|
+
}, z.core.$strip>>;
|
|
1376
1405
|
declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
1377
1406
|
trend: z.ZodArray<z.ZodObject<{
|
|
1378
1407
|
date: z.ZodString;
|
|
@@ -1442,7 +1471,29 @@ declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
|
1442
1471
|
}, z.core.$loose>;
|
|
1443
1472
|
}, z.core.$loose>;
|
|
1444
1473
|
declare const gscdumpIndexingUrlsResponseSchema: z.ZodObject<{
|
|
1445
|
-
urls: z.ZodArray<z.
|
|
1474
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
1475
|
+
url: z.ZodString;
|
|
1476
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1477
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
1478
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
1479
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
1480
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
1481
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
1482
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
1483
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
1484
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
1485
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
1486
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1487
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1488
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
1489
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1490
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
1491
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1492
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
1493
|
+
firstCheckedAt: z.ZodString;
|
|
1494
|
+
lastCheckedAt: z.ZodString;
|
|
1495
|
+
checkCount: z.ZodNumber;
|
|
1496
|
+
}, z.core.$loose>>;
|
|
1446
1497
|
pagination: z.ZodObject<{
|
|
1447
1498
|
total: z.ZodNumber;
|
|
1448
1499
|
limit: z.ZodNumber;
|
|
@@ -1461,7 +1512,39 @@ declare const gscdumpIndexingDiagnosticsResponseSchema: z.ZodObject<{
|
|
|
1461
1512
|
indexed: z.ZodNumber;
|
|
1462
1513
|
indexedPercent: z.ZodNumber;
|
|
1463
1514
|
}, z.core.$loose>;
|
|
1464
|
-
issues: z.ZodArray<z.
|
|
1515
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
1516
|
+
type: z.ZodString;
|
|
1517
|
+
label: z.ZodString;
|
|
1518
|
+
severity: z.ZodEnum<{
|
|
1519
|
+
error: "error";
|
|
1520
|
+
warning: "warning";
|
|
1521
|
+
info: "info";
|
|
1522
|
+
}>;
|
|
1523
|
+
count: z.ZodNumber;
|
|
1524
|
+
}, z.core.$loose>>;
|
|
1525
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1526
|
+
url: z.ZodString;
|
|
1527
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1528
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
1529
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
1530
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
1531
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
1532
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
1533
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
1534
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
1535
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
1536
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
1537
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1538
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1539
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
1540
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1541
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
1542
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
1543
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
1544
|
+
firstCheckedAt: z.ZodString;
|
|
1545
|
+
lastCheckedAt: z.ZodString;
|
|
1546
|
+
checkCount: z.ZodNumber;
|
|
1547
|
+
}, z.core.$loose>>>>;
|
|
1465
1548
|
meta: z.ZodObject<{
|
|
1466
1549
|
siteUrl: z.ZodString;
|
|
1467
1550
|
}, z.core.$loose>;
|
|
@@ -1484,19 +1567,19 @@ declare const gscdumpUserMeResponseSchema: z.ZodObject<{
|
|
|
1484
1567
|
databaseReady: z.ZodBoolean;
|
|
1485
1568
|
plan: z.ZodString;
|
|
1486
1569
|
accountStatus: z.ZodEnum<{
|
|
1487
|
-
ready: "ready";
|
|
1488
|
-
reauth_required: "reauth_required";
|
|
1489
1570
|
disconnected: "disconnected";
|
|
1490
1571
|
oauth_received: "oauth_received";
|
|
1491
1572
|
scope_missing: "scope_missing";
|
|
1492
1573
|
refresh_missing: "refresh_missing";
|
|
1493
1574
|
db_provisioning: "db_provisioning";
|
|
1575
|
+
ready: "ready";
|
|
1576
|
+
reauth_required: "reauth_required";
|
|
1494
1577
|
}>;
|
|
1495
1578
|
accountNextAction: z.ZodEnum<{
|
|
1496
|
-
reconnect_google: "reconnect_google";
|
|
1497
|
-
none: "none";
|
|
1498
1579
|
connect_google: "connect_google";
|
|
1580
|
+
reconnect_google: "reconnect_google";
|
|
1499
1581
|
wait_for_provisioning: "wait_for_provisioning";
|
|
1582
|
+
none: "none";
|
|
1500
1583
|
}>;
|
|
1501
1584
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
1502
1585
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -1596,8 +1679,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
1596
1679
|
date: z.ZodString;
|
|
1597
1680
|
status: z.ZodEnum<{
|
|
1598
1681
|
queued: "queued";
|
|
1599
|
-
completed: "completed";
|
|
1600
1682
|
failed: "failed";
|
|
1683
|
+
completed: "completed";
|
|
1601
1684
|
processing: "processing";
|
|
1602
1685
|
}>;
|
|
1603
1686
|
}, z.core.$loose>>;
|
|
@@ -1620,8 +1703,8 @@ declare const gscdumpSyncJobsResponseSchema: z.ZodObject<{
|
|
|
1620
1703
|
priority: z.ZodOptional<z.ZodString>;
|
|
1621
1704
|
status: z.ZodEnum<{
|
|
1622
1705
|
queued: "queued";
|
|
1623
|
-
completed: "completed";
|
|
1624
1706
|
failed: "failed";
|
|
1707
|
+
completed: "completed";
|
|
1625
1708
|
processing: "processing";
|
|
1626
1709
|
scheduled: "scheduled";
|
|
1627
1710
|
}>;
|
|
@@ -2223,6 +2306,7 @@ declare const analyticsEndpointSchemas: {
|
|
|
2223
2306
|
readonly response: z.ZodObject<{
|
|
2224
2307
|
urls: z.ZodArray<z.ZodObject<{
|
|
2225
2308
|
url: z.ZodString;
|
|
2309
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2226
2310
|
verdict: z.ZodNullable<z.ZodString>;
|
|
2227
2311
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
2228
2312
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -2258,6 +2342,10 @@ declare const analyticsEndpointSchemas: {
|
|
|
2258
2342
|
}, z.core.$loose>;
|
|
2259
2343
|
};
|
|
2260
2344
|
readonly analyticsIndexingDiagnostics: {
|
|
2345
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
2346
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2347
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
2348
|
+
}, z.core.$strip>>;
|
|
2261
2349
|
readonly response: z.ZodObject<{
|
|
2262
2350
|
summary: z.ZodObject<{
|
|
2263
2351
|
totalUrls: z.ZodNumber;
|
|
@@ -2274,6 +2362,29 @@ declare const analyticsEndpointSchemas: {
|
|
|
2274
2362
|
}>;
|
|
2275
2363
|
count: z.ZodNumber;
|
|
2276
2364
|
}, z.core.$loose>>;
|
|
2365
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
2366
|
+
url: z.ZodString;
|
|
2367
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2368
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
2369
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
2370
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
2371
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
2372
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
2373
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
2374
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
2375
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
2376
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
2377
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2378
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
2379
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
2380
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
2381
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
2382
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
2383
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
2384
|
+
firstCheckedAt: z.ZodString;
|
|
2385
|
+
lastCheckedAt: z.ZodString;
|
|
2386
|
+
checkCount: z.ZodNumber;
|
|
2387
|
+
}, z.core.$loose>>>>;
|
|
2277
2388
|
meta: z.ZodObject<{
|
|
2278
2389
|
siteUrl: z.ZodString;
|
|
2279
2390
|
}, z.core.$loose>;
|
|
@@ -2383,19 +2494,19 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2383
2494
|
databaseReady: z.ZodBoolean;
|
|
2384
2495
|
plan: z.ZodString;
|
|
2385
2496
|
accountStatus: z.ZodEnum<{
|
|
2386
|
-
ready: "ready";
|
|
2387
|
-
reauth_required: "reauth_required";
|
|
2388
2497
|
disconnected: "disconnected";
|
|
2389
2498
|
oauth_received: "oauth_received";
|
|
2390
2499
|
scope_missing: "scope_missing";
|
|
2391
2500
|
refresh_missing: "refresh_missing";
|
|
2392
2501
|
db_provisioning: "db_provisioning";
|
|
2502
|
+
ready: "ready";
|
|
2503
|
+
reauth_required: "reauth_required";
|
|
2393
2504
|
}>;
|
|
2394
2505
|
accountNextAction: z.ZodEnum<{
|
|
2395
|
-
reconnect_google: "reconnect_google";
|
|
2396
|
-
none: "none";
|
|
2397
2506
|
connect_google: "connect_google";
|
|
2507
|
+
reconnect_google: "reconnect_google";
|
|
2398
2508
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2509
|
+
none: "none";
|
|
2399
2510
|
}>;
|
|
2400
2511
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2401
2512
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -2499,8 +2610,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2499
2610
|
date: z.ZodString;
|
|
2500
2611
|
status: z.ZodEnum<{
|
|
2501
2612
|
queued: "queued";
|
|
2502
|
-
completed: "completed";
|
|
2503
2613
|
failed: "failed";
|
|
2614
|
+
completed: "completed";
|
|
2504
2615
|
processing: "processing";
|
|
2505
2616
|
}>;
|
|
2506
2617
|
}, z.core.$loose>>;
|
|
@@ -2525,8 +2636,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2525
2636
|
priority: z.ZodOptional<z.ZodString>;
|
|
2526
2637
|
status: z.ZodEnum<{
|
|
2527
2638
|
queued: "queued";
|
|
2528
|
-
completed: "completed";
|
|
2529
2639
|
failed: "failed";
|
|
2640
|
+
completed: "completed";
|
|
2530
2641
|
processing: "processing";
|
|
2531
2642
|
scheduled: "scheduled";
|
|
2532
2643
|
}>;
|
|
@@ -2580,8 +2691,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2580
2691
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2581
2692
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
2582
2693
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2583
|
-
provisioning: "provisioning";
|
|
2584
2694
|
ready: "ready";
|
|
2695
|
+
provisioning: "provisioning";
|
|
2585
2696
|
}>>;
|
|
2586
2697
|
}, z.core.$loose>;
|
|
2587
2698
|
};
|
|
@@ -2600,9 +2711,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2600
2711
|
registered: z.ZodBoolean;
|
|
2601
2712
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2602
2713
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2714
|
+
syncing: "syncing";
|
|
2603
2715
|
pending: "pending";
|
|
2604
2716
|
error: "error";
|
|
2605
|
-
syncing: "syncing";
|
|
2606
2717
|
synced: "synced";
|
|
2607
2718
|
}>>>;
|
|
2608
2719
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2621,9 +2732,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2621
2732
|
readonly response: z.ZodObject<{
|
|
2622
2733
|
userId: z.ZodString;
|
|
2623
2734
|
status: z.ZodEnum<{
|
|
2624
|
-
provisioning: "provisioning";
|
|
2625
2735
|
ready: "ready";
|
|
2626
2736
|
reauth_required: "reauth_required";
|
|
2737
|
+
provisioning: "provisioning";
|
|
2627
2738
|
}>;
|
|
2628
2739
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
2629
2740
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2644,21 +2755,21 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2644
2755
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
2645
2756
|
account: z.ZodObject<{
|
|
2646
2757
|
status: z.ZodEnum<{
|
|
2647
|
-
ready: "ready";
|
|
2648
|
-
reauth_required: "reauth_required";
|
|
2649
2758
|
disconnected: "disconnected";
|
|
2650
2759
|
oauth_received: "oauth_received";
|
|
2651
2760
|
scope_missing: "scope_missing";
|
|
2652
2761
|
refresh_missing: "refresh_missing";
|
|
2653
2762
|
db_provisioning: "db_provisioning";
|
|
2763
|
+
ready: "ready";
|
|
2764
|
+
reauth_required: "reauth_required";
|
|
2654
2765
|
}>;
|
|
2655
2766
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
2656
2767
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
2657
2768
|
nextAction: z.ZodEnum<{
|
|
2658
|
-
reconnect_google: "reconnect_google";
|
|
2659
|
-
none: "none";
|
|
2660
2769
|
connect_google: "connect_google";
|
|
2770
|
+
reconnect_google: "reconnect_google";
|
|
2661
2771
|
wait_for_provisioning: "wait_for_provisioning";
|
|
2772
|
+
none: "none";
|
|
2662
2773
|
}>;
|
|
2663
2774
|
}, z.core.$loose>;
|
|
2664
2775
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -2686,14 +2797,14 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2686
2797
|
}, z.core.$loose>;
|
|
2687
2798
|
analytics: z.ZodObject<{
|
|
2688
2799
|
status: z.ZodEnum<{
|
|
2689
|
-
queued: "queued";
|
|
2690
2800
|
ready: "ready";
|
|
2691
|
-
failed: "failed";
|
|
2692
2801
|
not_registered: "not_registered";
|
|
2802
|
+
queued: "queued";
|
|
2693
2803
|
preparing: "preparing";
|
|
2694
2804
|
syncing: "syncing";
|
|
2695
2805
|
queryable_live: "queryable_live";
|
|
2696
2806
|
queryable_partial: "queryable_partial";
|
|
2807
|
+
failed: "failed";
|
|
2697
2808
|
}>;
|
|
2698
2809
|
progress: z.ZodObject<{
|
|
2699
2810
|
completed: z.ZodNumber;
|
|
@@ -2703,10 +2814,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2703
2814
|
}, z.core.$strip>;
|
|
2704
2815
|
queryable: z.ZodBoolean;
|
|
2705
2816
|
sourceMode: z.ZodEnum<{
|
|
2706
|
-
d1: "d1";
|
|
2707
|
-
r2: "r2";
|
|
2708
2817
|
none: "none";
|
|
2709
2818
|
live: "live";
|
|
2819
|
+
d1: "d1";
|
|
2820
|
+
r2: "r2";
|
|
2710
2821
|
mixed: "mixed";
|
|
2711
2822
|
}>;
|
|
2712
2823
|
syncedRange: z.ZodObject<{
|
|
@@ -2721,10 +2832,10 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2721
2832
|
}, z.core.$loose>;
|
|
2722
2833
|
sitemaps: z.ZodObject<{
|
|
2723
2834
|
status: z.ZodEnum<{
|
|
2724
|
-
unknown: "unknown";
|
|
2725
2835
|
ready: "ready";
|
|
2726
|
-
failed: "failed";
|
|
2727
2836
|
syncing: "syncing";
|
|
2837
|
+
failed: "failed";
|
|
2838
|
+
unknown: "unknown";
|
|
2728
2839
|
discovering: "discovering";
|
|
2729
2840
|
none_found: "none_found";
|
|
2730
2841
|
auto_submitted: "auto_submitted";
|
|
@@ -2796,9 +2907,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2796
2907
|
siteId: z.ZodString;
|
|
2797
2908
|
siteUrl: z.ZodString;
|
|
2798
2909
|
syncStatus: z.ZodEnum<{
|
|
2910
|
+
syncing: "syncing";
|
|
2799
2911
|
pending: "pending";
|
|
2800
2912
|
error: "error";
|
|
2801
|
-
syncing: "syncing";
|
|
2802
2913
|
synced: "synced";
|
|
2803
2914
|
idle: "idle";
|
|
2804
2915
|
}>;
|
|
@@ -2816,9 +2927,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2816
2927
|
registered: z.ZodBoolean;
|
|
2817
2928
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2818
2929
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2930
|
+
syncing: "syncing";
|
|
2819
2931
|
pending: "pending";
|
|
2820
2932
|
error: "error";
|
|
2821
|
-
syncing: "syncing";
|
|
2822
2933
|
synced: "synced";
|
|
2823
2934
|
}>>>;
|
|
2824
2935
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -2863,9 +2974,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2863
2974
|
readonly response: z.ZodObject<{
|
|
2864
2975
|
siteId: z.ZodString;
|
|
2865
2976
|
status: z.ZodEnum<{
|
|
2977
|
+
syncing: "syncing";
|
|
2866
2978
|
pending: "pending";
|
|
2867
2979
|
error: "error";
|
|
2868
|
-
syncing: "syncing";
|
|
2869
2980
|
synced: "synced";
|
|
2870
2981
|
idle: "idle";
|
|
2871
2982
|
}>;
|
|
@@ -2906,8 +3017,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
2906
3017
|
siteUrl: z.ZodString;
|
|
2907
3018
|
siteId: z.ZodOptional<z.ZodString>;
|
|
2908
3019
|
status: z.ZodEnum<{
|
|
2909
|
-
error: "error";
|
|
2910
3020
|
registered: "registered";
|
|
3021
|
+
error: "error";
|
|
2911
3022
|
already_exists: "already_exists";
|
|
2912
3023
|
not_found: "not_found";
|
|
2913
3024
|
}>;
|
|
@@ -3284,7 +3395,29 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3284
3395
|
search: z.ZodOptional<z.ZodString>;
|
|
3285
3396
|
}, z.core.$strip>>;
|
|
3286
3397
|
readonly response: z.ZodObject<{
|
|
3287
|
-
urls: z.ZodArray<z.
|
|
3398
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
3399
|
+
url: z.ZodString;
|
|
3400
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3401
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
3402
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
3403
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
3404
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
3405
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
3406
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
3407
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
3408
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
3409
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
3410
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3411
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3412
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
3413
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3414
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
3415
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3416
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
3417
|
+
firstCheckedAt: z.ZodString;
|
|
3418
|
+
lastCheckedAt: z.ZodString;
|
|
3419
|
+
checkCount: z.ZodNumber;
|
|
3420
|
+
}, z.core.$loose>>;
|
|
3288
3421
|
pagination: z.ZodObject<{
|
|
3289
3422
|
total: z.ZodNumber;
|
|
3290
3423
|
limit: z.ZodNumber;
|
|
@@ -3299,13 +3432,49 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3299
3432
|
}, z.core.$loose>;
|
|
3300
3433
|
};
|
|
3301
3434
|
readonly getIndexingDiagnostics: {
|
|
3435
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
3436
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3437
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
3438
|
+
}, z.core.$strip>>;
|
|
3302
3439
|
readonly response: z.ZodObject<{
|
|
3303
3440
|
summary: z.ZodObject<{
|
|
3304
3441
|
totalUrls: z.ZodNumber;
|
|
3305
3442
|
indexed: z.ZodNumber;
|
|
3306
3443
|
indexedPercent: z.ZodNumber;
|
|
3307
3444
|
}, z.core.$loose>;
|
|
3308
|
-
issues: z.ZodArray<z.
|
|
3445
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
3446
|
+
type: z.ZodString;
|
|
3447
|
+
label: z.ZodString;
|
|
3448
|
+
severity: z.ZodEnum<{
|
|
3449
|
+
error: "error";
|
|
3450
|
+
warning: "warning";
|
|
3451
|
+
info: "info";
|
|
3452
|
+
}>;
|
|
3453
|
+
count: z.ZodNumber;
|
|
3454
|
+
}, z.core.$loose>>;
|
|
3455
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
3456
|
+
url: z.ZodString;
|
|
3457
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3458
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
3459
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
3460
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
3461
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
3462
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
3463
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
3464
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
3465
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
3466
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
3467
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3468
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
3469
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
3470
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3471
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
3472
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
3473
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
3474
|
+
firstCheckedAt: z.ZodString;
|
|
3475
|
+
lastCheckedAt: z.ZodString;
|
|
3476
|
+
checkCount: z.ZodNumber;
|
|
3477
|
+
}, z.core.$loose>>>>;
|
|
3309
3478
|
meta: z.ZodObject<{
|
|
3310
3479
|
siteUrl: z.ZodString;
|
|
3311
3480
|
}, z.core.$loose>;
|
|
@@ -3761,19 +3930,19 @@ declare const partnerEndpointSchemas: {
|
|
|
3761
3930
|
databaseReady: z.ZodBoolean;
|
|
3762
3931
|
plan: z.ZodString;
|
|
3763
3932
|
accountStatus: z.ZodEnum<{
|
|
3764
|
-
ready: "ready";
|
|
3765
|
-
reauth_required: "reauth_required";
|
|
3766
3933
|
disconnected: "disconnected";
|
|
3767
3934
|
oauth_received: "oauth_received";
|
|
3768
3935
|
scope_missing: "scope_missing";
|
|
3769
3936
|
refresh_missing: "refresh_missing";
|
|
3770
3937
|
db_provisioning: "db_provisioning";
|
|
3938
|
+
ready: "ready";
|
|
3939
|
+
reauth_required: "reauth_required";
|
|
3771
3940
|
}>;
|
|
3772
3941
|
accountNextAction: z.ZodEnum<{
|
|
3773
|
-
reconnect_google: "reconnect_google";
|
|
3774
|
-
none: "none";
|
|
3775
3942
|
connect_google: "connect_google";
|
|
3943
|
+
reconnect_google: "reconnect_google";
|
|
3776
3944
|
wait_for_provisioning: "wait_for_provisioning";
|
|
3945
|
+
none: "none";
|
|
3777
3946
|
}>;
|
|
3778
3947
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
3779
3948
|
browserAnalyzerEnabled: z.ZodBoolean;
|
|
@@ -3877,8 +4046,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3877
4046
|
date: z.ZodString;
|
|
3878
4047
|
status: z.ZodEnum<{
|
|
3879
4048
|
queued: "queued";
|
|
3880
|
-
completed: "completed";
|
|
3881
4049
|
failed: "failed";
|
|
4050
|
+
completed: "completed";
|
|
3882
4051
|
processing: "processing";
|
|
3883
4052
|
}>;
|
|
3884
4053
|
}, z.core.$loose>>;
|
|
@@ -3903,8 +4072,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3903
4072
|
priority: z.ZodOptional<z.ZodString>;
|
|
3904
4073
|
status: z.ZodEnum<{
|
|
3905
4074
|
queued: "queued";
|
|
3906
|
-
completed: "completed";
|
|
3907
4075
|
failed: "failed";
|
|
4076
|
+
completed: "completed";
|
|
3908
4077
|
processing: "processing";
|
|
3909
4078
|
scheduled: "scheduled";
|
|
3910
4079
|
}>;
|
|
@@ -3958,8 +4127,8 @@ declare const partnerEndpointSchemas: {
|
|
|
3958
4127
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3959
4128
|
isNew: z.ZodOptional<z.ZodBoolean>;
|
|
3960
4129
|
status: z.ZodOptional<z.ZodEnum<{
|
|
3961
|
-
provisioning: "provisioning";
|
|
3962
4130
|
ready: "ready";
|
|
4131
|
+
provisioning: "provisioning";
|
|
3963
4132
|
}>>;
|
|
3964
4133
|
}, z.core.$loose>;
|
|
3965
4134
|
};
|
|
@@ -3978,9 +4147,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3978
4147
|
registered: z.ZodBoolean;
|
|
3979
4148
|
siteId: z.ZodOptional<z.ZodString>;
|
|
3980
4149
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4150
|
+
syncing: "syncing";
|
|
3981
4151
|
pending: "pending";
|
|
3982
4152
|
error: "error";
|
|
3983
|
-
syncing: "syncing";
|
|
3984
4153
|
synced: "synced";
|
|
3985
4154
|
}>>>;
|
|
3986
4155
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -3999,9 +4168,9 @@ declare const partnerEndpointSchemas: {
|
|
|
3999
4168
|
readonly response: z.ZodObject<{
|
|
4000
4169
|
userId: z.ZodString;
|
|
4001
4170
|
status: z.ZodEnum<{
|
|
4002
|
-
provisioning: "provisioning";
|
|
4003
4171
|
ready: "ready";
|
|
4004
4172
|
reauth_required: "reauth_required";
|
|
4173
|
+
provisioning: "provisioning";
|
|
4005
4174
|
}>;
|
|
4006
4175
|
databaseReady: z.ZodOptional<z.ZodBoolean>;
|
|
4007
4176
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4022,21 +4191,21 @@ declare const partnerEndpointSchemas: {
|
|
|
4022
4191
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
4023
4192
|
account: z.ZodObject<{
|
|
4024
4193
|
status: z.ZodEnum<{
|
|
4025
|
-
ready: "ready";
|
|
4026
|
-
reauth_required: "reauth_required";
|
|
4027
4194
|
disconnected: "disconnected";
|
|
4028
4195
|
oauth_received: "oauth_received";
|
|
4029
4196
|
scope_missing: "scope_missing";
|
|
4030
4197
|
refresh_missing: "refresh_missing";
|
|
4031
4198
|
db_provisioning: "db_provisioning";
|
|
4199
|
+
ready: "ready";
|
|
4200
|
+
reauth_required: "reauth_required";
|
|
4032
4201
|
}>;
|
|
4033
4202
|
grantedScopes: z.ZodArray<z.ZodString>;
|
|
4034
4203
|
missingScopes: z.ZodArray<z.ZodString>;
|
|
4035
4204
|
nextAction: z.ZodEnum<{
|
|
4036
|
-
reconnect_google: "reconnect_google";
|
|
4037
|
-
none: "none";
|
|
4038
4205
|
connect_google: "connect_google";
|
|
4206
|
+
reconnect_google: "reconnect_google";
|
|
4039
4207
|
wait_for_provisioning: "wait_for_provisioning";
|
|
4208
|
+
none: "none";
|
|
4040
4209
|
}>;
|
|
4041
4210
|
}, z.core.$loose>;
|
|
4042
4211
|
sites: z.ZodArray<z.ZodObject<{
|
|
@@ -4064,14 +4233,14 @@ declare const partnerEndpointSchemas: {
|
|
|
4064
4233
|
}, z.core.$loose>;
|
|
4065
4234
|
analytics: z.ZodObject<{
|
|
4066
4235
|
status: z.ZodEnum<{
|
|
4067
|
-
queued: "queued";
|
|
4068
4236
|
ready: "ready";
|
|
4069
|
-
failed: "failed";
|
|
4070
4237
|
not_registered: "not_registered";
|
|
4238
|
+
queued: "queued";
|
|
4071
4239
|
preparing: "preparing";
|
|
4072
4240
|
syncing: "syncing";
|
|
4073
4241
|
queryable_live: "queryable_live";
|
|
4074
4242
|
queryable_partial: "queryable_partial";
|
|
4243
|
+
failed: "failed";
|
|
4075
4244
|
}>;
|
|
4076
4245
|
progress: z.ZodObject<{
|
|
4077
4246
|
completed: z.ZodNumber;
|
|
@@ -4081,10 +4250,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4081
4250
|
}, z.core.$strip>;
|
|
4082
4251
|
queryable: z.ZodBoolean;
|
|
4083
4252
|
sourceMode: z.ZodEnum<{
|
|
4084
|
-
d1: "d1";
|
|
4085
|
-
r2: "r2";
|
|
4086
4253
|
none: "none";
|
|
4087
4254
|
live: "live";
|
|
4255
|
+
d1: "d1";
|
|
4256
|
+
r2: "r2";
|
|
4088
4257
|
mixed: "mixed";
|
|
4089
4258
|
}>;
|
|
4090
4259
|
syncedRange: z.ZodObject<{
|
|
@@ -4099,10 +4268,10 @@ declare const partnerEndpointSchemas: {
|
|
|
4099
4268
|
}, z.core.$loose>;
|
|
4100
4269
|
sitemaps: z.ZodObject<{
|
|
4101
4270
|
status: z.ZodEnum<{
|
|
4102
|
-
unknown: "unknown";
|
|
4103
4271
|
ready: "ready";
|
|
4104
|
-
failed: "failed";
|
|
4105
4272
|
syncing: "syncing";
|
|
4273
|
+
failed: "failed";
|
|
4274
|
+
unknown: "unknown";
|
|
4106
4275
|
discovering: "discovering";
|
|
4107
4276
|
none_found: "none_found";
|
|
4108
4277
|
auto_submitted: "auto_submitted";
|
|
@@ -4174,9 +4343,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4174
4343
|
siteId: z.ZodString;
|
|
4175
4344
|
siteUrl: z.ZodString;
|
|
4176
4345
|
syncStatus: z.ZodEnum<{
|
|
4346
|
+
syncing: "syncing";
|
|
4177
4347
|
pending: "pending";
|
|
4178
4348
|
error: "error";
|
|
4179
|
-
syncing: "syncing";
|
|
4180
4349
|
synced: "synced";
|
|
4181
4350
|
idle: "idle";
|
|
4182
4351
|
}>;
|
|
@@ -4194,9 +4363,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4194
4363
|
registered: z.ZodBoolean;
|
|
4195
4364
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4196
4365
|
syncStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
4366
|
+
syncing: "syncing";
|
|
4197
4367
|
pending: "pending";
|
|
4198
4368
|
error: "error";
|
|
4199
|
-
syncing: "syncing";
|
|
4200
4369
|
synced: "synced";
|
|
4201
4370
|
}>>>;
|
|
4202
4371
|
syncProgress: z.ZodOptional<z.ZodObject<{
|
|
@@ -4241,9 +4410,9 @@ declare const partnerEndpointSchemas: {
|
|
|
4241
4410
|
readonly response: z.ZodObject<{
|
|
4242
4411
|
siteId: z.ZodString;
|
|
4243
4412
|
status: z.ZodEnum<{
|
|
4413
|
+
syncing: "syncing";
|
|
4244
4414
|
pending: "pending";
|
|
4245
4415
|
error: "error";
|
|
4246
|
-
syncing: "syncing";
|
|
4247
4416
|
synced: "synced";
|
|
4248
4417
|
idle: "idle";
|
|
4249
4418
|
}>;
|
|
@@ -4284,8 +4453,8 @@ declare const partnerEndpointSchemas: {
|
|
|
4284
4453
|
siteUrl: z.ZodString;
|
|
4285
4454
|
siteId: z.ZodOptional<z.ZodString>;
|
|
4286
4455
|
status: z.ZodEnum<{
|
|
4287
|
-
error: "error";
|
|
4288
4456
|
registered: "registered";
|
|
4457
|
+
error: "error";
|
|
4289
4458
|
already_exists: "already_exists";
|
|
4290
4459
|
not_found: "not_found";
|
|
4291
4460
|
}>;
|
|
@@ -4662,7 +4831,29 @@ declare const partnerEndpointSchemas: {
|
|
|
4662
4831
|
search: z.ZodOptional<z.ZodString>;
|
|
4663
4832
|
}, z.core.$strip>>;
|
|
4664
4833
|
readonly response: z.ZodObject<{
|
|
4665
|
-
urls: z.ZodArray<z.
|
|
4834
|
+
urls: z.ZodArray<z.ZodObject<{
|
|
4835
|
+
url: z.ZodString;
|
|
4836
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4837
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
4838
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
4839
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
4840
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
4841
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
4842
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
4843
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
4844
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
4845
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
4846
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4847
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4848
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
4849
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
4850
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
4851
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
4852
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
4853
|
+
firstCheckedAt: z.ZodString;
|
|
4854
|
+
lastCheckedAt: z.ZodString;
|
|
4855
|
+
checkCount: z.ZodNumber;
|
|
4856
|
+
}, z.core.$loose>>;
|
|
4666
4857
|
pagination: z.ZodObject<{
|
|
4667
4858
|
total: z.ZodNumber;
|
|
4668
4859
|
limit: z.ZodNumber;
|
|
@@ -4677,13 +4868,49 @@ declare const partnerEndpointSchemas: {
|
|
|
4677
4868
|
}, z.core.$loose>;
|
|
4678
4869
|
};
|
|
4679
4870
|
readonly getIndexingDiagnostics: {
|
|
4871
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
4872
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
4873
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
4874
|
+
}, z.core.$strip>>;
|
|
4680
4875
|
readonly response: z.ZodObject<{
|
|
4681
4876
|
summary: z.ZodObject<{
|
|
4682
4877
|
totalUrls: z.ZodNumber;
|
|
4683
4878
|
indexed: z.ZodNumber;
|
|
4684
4879
|
indexedPercent: z.ZodNumber;
|
|
4685
4880
|
}, z.core.$loose>;
|
|
4686
|
-
issues: z.ZodArray<z.
|
|
4881
|
+
issues: z.ZodArray<z.ZodObject<{
|
|
4882
|
+
type: z.ZodString;
|
|
4883
|
+
label: z.ZodString;
|
|
4884
|
+
severity: z.ZodEnum<{
|
|
4885
|
+
error: "error";
|
|
4886
|
+
warning: "warning";
|
|
4887
|
+
info: "info";
|
|
4888
|
+
}>;
|
|
4889
|
+
count: z.ZodNumber;
|
|
4890
|
+
}, z.core.$loose>>;
|
|
4891
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4892
|
+
url: z.ZodString;
|
|
4893
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4894
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
4895
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
4896
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
4897
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
4898
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
4899
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
4900
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
4901
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
4902
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
4903
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4904
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
4905
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
4906
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
4907
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
4908
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
4909
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
4910
|
+
firstCheckedAt: z.ZodString;
|
|
4911
|
+
lastCheckedAt: z.ZodString;
|
|
4912
|
+
checkCount: z.ZodNumber;
|
|
4913
|
+
}, z.core.$loose>>>>;
|
|
4687
4914
|
meta: z.ZodObject<{
|
|
4688
4915
|
siteUrl: z.ZodString;
|
|
4689
4916
|
}, z.core.$loose>;
|
|
@@ -5317,6 +5544,7 @@ declare const partnerEndpointSchemas: {
|
|
|
5317
5544
|
readonly response: z.ZodObject<{
|
|
5318
5545
|
urls: z.ZodArray<z.ZodObject<{
|
|
5319
5546
|
url: z.ZodString;
|
|
5547
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5320
5548
|
verdict: z.ZodNullable<z.ZodString>;
|
|
5321
5549
|
coverageState: z.ZodNullable<z.ZodString>;
|
|
5322
5550
|
indexingState: z.ZodNullable<z.ZodString>;
|
|
@@ -5352,6 +5580,10 @@ declare const partnerEndpointSchemas: {
|
|
|
5352
5580
|
}, z.core.$loose>;
|
|
5353
5581
|
};
|
|
5354
5582
|
readonly analyticsIndexingDiagnostics: {
|
|
5583
|
+
readonly query: z.ZodOptional<z.ZodObject<{
|
|
5584
|
+
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5585
|
+
sampleLimit: z.ZodOptional<z.ZodNumber>;
|
|
5586
|
+
}, z.core.$strip>>;
|
|
5355
5587
|
readonly response: z.ZodObject<{
|
|
5356
5588
|
summary: z.ZodObject<{
|
|
5357
5589
|
totalUrls: z.ZodNumber;
|
|
@@ -5368,6 +5600,29 @@ declare const partnerEndpointSchemas: {
|
|
|
5368
5600
|
}>;
|
|
5369
5601
|
count: z.ZodNumber;
|
|
5370
5602
|
}, z.core.$loose>>;
|
|
5603
|
+
samples: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
5604
|
+
url: z.ZodString;
|
|
5605
|
+
issueType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5606
|
+
verdict: z.ZodNullable<z.ZodString>;
|
|
5607
|
+
coverageState: z.ZodNullable<z.ZodString>;
|
|
5608
|
+
indexingState: z.ZodNullable<z.ZodString>;
|
|
5609
|
+
robotsTxtState: z.ZodNullable<z.ZodString>;
|
|
5610
|
+
pageFetchState: z.ZodNullable<z.ZodString>;
|
|
5611
|
+
lastCrawlTime: z.ZodNullable<z.ZodString>;
|
|
5612
|
+
crawlingUserAgent: z.ZodNullable<z.ZodString>;
|
|
5613
|
+
userCanonical: z.ZodNullable<z.ZodString>;
|
|
5614
|
+
googleCanonical: z.ZodNullable<z.ZodString>;
|
|
5615
|
+
sitemaps: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5616
|
+
referringUrls: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
5617
|
+
mobileVerdict: z.ZodNullable<z.ZodString>;
|
|
5618
|
+
mobileIssues: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5619
|
+
richResultsVerdict: z.ZodNullable<z.ZodString>;
|
|
5620
|
+
richResultsItems: z.ZodNullable<z.ZodArray<z.ZodUnknown>>;
|
|
5621
|
+
inspectionResultLink: z.ZodNullable<z.ZodString>;
|
|
5622
|
+
firstCheckedAt: z.ZodString;
|
|
5623
|
+
lastCheckedAt: z.ZodString;
|
|
5624
|
+
checkCount: z.ZodNumber;
|
|
5625
|
+
}, z.core.$loose>>>>;
|
|
5371
5626
|
meta: z.ZodObject<{
|
|
5372
5627
|
siteUrl: z.ZodString;
|
|
5373
5628
|
}, z.core.$loose>;
|
|
@@ -5466,4 +5721,4 @@ declare const partnerEndpointSchemas: {
|
|
|
5466
5721
|
}, z.core.$loose>;
|
|
5467
5722
|
};
|
|
5468
5723
|
};
|
|
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 };
|
|
5724
|
+
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 };
|