@gscdump/contracts 2.0.1 → 2.0.2
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/endpoints.d.mts +4 -4
- package/dist/schemas.d.mts +19 -19
- package/dist/v1/operations.d.mts +26 -26
- package/package.json +1 -1
package/dist/endpoints.d.mts
CHANGED
|
@@ -1082,8 +1082,8 @@ declare const partnerEndpoints: {
|
|
|
1082
1082
|
siteUrl: import("zod").ZodString;
|
|
1083
1083
|
site: import("zod").ZodObject<{
|
|
1084
1084
|
type: import("zod").ZodEnum<{
|
|
1085
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
1086
1085
|
SITE: "SITE";
|
|
1086
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
1087
1087
|
}>;
|
|
1088
1088
|
identifier: import("zod").ZodString;
|
|
1089
1089
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1127,8 +1127,8 @@ declare const partnerEndpoints: {
|
|
|
1127
1127
|
siteUrl: import("zod").ZodString;
|
|
1128
1128
|
site: import("zod").ZodObject<{
|
|
1129
1129
|
type: import("zod").ZodEnum<{
|
|
1130
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
1131
1130
|
SITE: "SITE";
|
|
1131
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
1132
1132
|
}>;
|
|
1133
1133
|
identifier: import("zod").ZodString;
|
|
1134
1134
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1437,9 +1437,9 @@ declare const partnerEndpoints: {
|
|
|
1437
1437
|
siteUrl: import("zod").ZodString;
|
|
1438
1438
|
syncStatus: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1439
1439
|
indexingStatus: import("zod").ZodEnum<{
|
|
1440
|
+
complete: "complete";
|
|
1440
1441
|
pending: "pending";
|
|
1441
1442
|
partial: "partial";
|
|
1442
|
-
complete: "complete";
|
|
1443
1443
|
}>;
|
|
1444
1444
|
indexingProgress: import("zod").ZodNumber;
|
|
1445
1445
|
sitemapTotal: import("zod").ZodNumber;
|
|
@@ -1458,8 +1458,8 @@ declare const partnerEndpoints: {
|
|
|
1458
1458
|
limit: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1459
1459
|
offset: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1460
1460
|
status: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1461
|
-
pending: "pending";
|
|
1462
1461
|
indexed: "indexed";
|
|
1462
|
+
pending: "pending";
|
|
1463
1463
|
not_indexed: "not_indexed";
|
|
1464
1464
|
}>>;
|
|
1465
1465
|
issue: import("zod").ZodOptional<import("zod").ZodString>;
|
package/dist/schemas.d.mts
CHANGED
|
@@ -354,12 +354,12 @@ declare const indexingUrlsResponseSchema: z.ZodObject<{
|
|
|
354
354
|
}, z.core.$loose>;
|
|
355
355
|
declare const GSCDUMP_INDEXING_TRANSITION_FIELDS: readonly ["indexStatus", "coverageState", "robotsTxtState", "indexingState", "pageFetchState", "googleCanonical"];
|
|
356
356
|
declare const gscdumpIndexingTransitionFieldSchema: z.ZodEnum<{
|
|
357
|
+
indexStatus: "indexStatus";
|
|
358
|
+
googleCanonical: "googleCanonical";
|
|
357
359
|
coverageState: "coverageState";
|
|
358
|
-
indexingState: "indexingState";
|
|
359
360
|
robotsTxtState: "robotsTxtState";
|
|
361
|
+
indexingState: "indexingState";
|
|
360
362
|
pageFetchState: "pageFetchState";
|
|
361
|
-
googleCanonical: "googleCanonical";
|
|
362
|
-
indexStatus: "indexStatus";
|
|
363
363
|
}>;
|
|
364
364
|
declare const indexingIssueSchema: z.ZodObject<{
|
|
365
365
|
type: z.ZodString;
|
|
@@ -1710,8 +1710,8 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1710
1710
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
1711
1711
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
1712
1712
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1713
|
-
pending: "pending";
|
|
1714
1713
|
indexed: "indexed";
|
|
1714
|
+
pending: "pending";
|
|
1715
1715
|
not_indexed: "not_indexed";
|
|
1716
1716
|
}>>;
|
|
1717
1717
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -1778,9 +1778,9 @@ declare const gscdumpIndexingResponseSchema: z.ZodObject<{
|
|
|
1778
1778
|
siteUrl: z.ZodString;
|
|
1779
1779
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
1780
1780
|
indexingStatus: z.ZodEnum<{
|
|
1781
|
+
complete: "complete";
|
|
1781
1782
|
pending: "pending";
|
|
1782
1783
|
partial: "partial";
|
|
1783
|
-
complete: "complete";
|
|
1784
1784
|
}>;
|
|
1785
1785
|
indexingProgress: z.ZodNumber;
|
|
1786
1786
|
sitemapTotal: z.ZodNumber;
|
|
@@ -1974,8 +1974,8 @@ declare const gscdumpSyncProgressResponseSchema: z.ZodObject<{
|
|
|
1974
1974
|
needsReauth: z.ZodBoolean;
|
|
1975
1975
|
authFailureCount: z.ZodNumber;
|
|
1976
1976
|
currentPhase: z.ZodEnum<{
|
|
1977
|
-
backfill: "backfill";
|
|
1978
1977
|
complete: "complete";
|
|
1978
|
+
backfill: "backfill";
|
|
1979
1979
|
initial: "initial";
|
|
1980
1980
|
}>;
|
|
1981
1981
|
isStalled: z.ZodBoolean;
|
|
@@ -2488,8 +2488,8 @@ declare const gscVerificationMethodSchema: z.ZodEnum<{
|
|
|
2488
2488
|
}>;
|
|
2489
2489
|
declare const gscVerificationSiteSchema: z.ZodObject<{
|
|
2490
2490
|
type: z.ZodEnum<{
|
|
2491
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
2492
2491
|
SITE: "SITE";
|
|
2492
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
2493
2493
|
}>;
|
|
2494
2494
|
identifier: z.ZodString;
|
|
2495
2495
|
}, z.core.$strip>;
|
|
@@ -2517,8 +2517,8 @@ declare const gscVerificationTokenResponseSchema: z.ZodObject<{
|
|
|
2517
2517
|
siteUrl: z.ZodString;
|
|
2518
2518
|
site: z.ZodObject<{
|
|
2519
2519
|
type: z.ZodEnum<{
|
|
2520
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
2521
2520
|
SITE: "SITE";
|
|
2521
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
2522
2522
|
}>;
|
|
2523
2523
|
identifier: z.ZodString;
|
|
2524
2524
|
}, z.core.$strip>;
|
|
@@ -2545,8 +2545,8 @@ declare const gscAddAndVerifyResponseSchema: z.ZodObject<{
|
|
|
2545
2545
|
siteUrl: z.ZodString;
|
|
2546
2546
|
site: z.ZodObject<{
|
|
2547
2547
|
type: z.ZodEnum<{
|
|
2548
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
2549
2548
|
SITE: "SITE";
|
|
2549
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
2550
2550
|
}>;
|
|
2551
2551
|
identifier: z.ZodString;
|
|
2552
2552
|
}, z.core.$strip>;
|
|
@@ -3433,8 +3433,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3433
3433
|
needsReauth: z.ZodBoolean;
|
|
3434
3434
|
authFailureCount: z.ZodNumber;
|
|
3435
3435
|
currentPhase: z.ZodEnum<{
|
|
3436
|
-
backfill: "backfill";
|
|
3437
3436
|
complete: "complete";
|
|
3437
|
+
backfill: "backfill";
|
|
3438
3438
|
initial: "initial";
|
|
3439
3439
|
}>;
|
|
3440
3440
|
isStalled: z.ZodBoolean;
|
|
@@ -4323,9 +4323,9 @@ declare const partnerControlEndpointSchemas: {
|
|
|
4323
4323
|
siteUrl: z.ZodString;
|
|
4324
4324
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4325
4325
|
indexingStatus: z.ZodEnum<{
|
|
4326
|
+
complete: "complete";
|
|
4326
4327
|
pending: "pending";
|
|
4327
4328
|
partial: "partial";
|
|
4328
|
-
complete: "complete";
|
|
4329
4329
|
}>;
|
|
4330
4330
|
indexingProgress: z.ZodNumber;
|
|
4331
4331
|
sitemapTotal: z.ZodNumber;
|
|
@@ -4341,8 +4341,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
4341
4341
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
4342
4342
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
4343
4343
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4344
|
-
pending: "pending";
|
|
4345
4344
|
indexed: "indexed";
|
|
4345
|
+
pending: "pending";
|
|
4346
4346
|
not_indexed: "not_indexed";
|
|
4347
4347
|
}>>;
|
|
4348
4348
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -4849,8 +4849,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
4849
4849
|
siteUrl: z.ZodString;
|
|
4850
4850
|
site: z.ZodObject<{
|
|
4851
4851
|
type: z.ZodEnum<{
|
|
4852
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
4853
4852
|
SITE: "SITE";
|
|
4853
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
4854
4854
|
}>;
|
|
4855
4855
|
identifier: z.ZodString;
|
|
4856
4856
|
}, z.core.$strip>;
|
|
@@ -4891,8 +4891,8 @@ declare const partnerControlEndpointSchemas: {
|
|
|
4891
4891
|
siteUrl: z.ZodString;
|
|
4892
4892
|
site: z.ZodObject<{
|
|
4893
4893
|
type: z.ZodEnum<{
|
|
4894
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
4895
4894
|
SITE: "SITE";
|
|
4895
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
4896
4896
|
}>;
|
|
4897
4897
|
identifier: z.ZodString;
|
|
4898
4898
|
}, z.core.$strip>;
|
|
@@ -5132,8 +5132,8 @@ declare const partnerEndpointSchemas: {
|
|
|
5132
5132
|
needsReauth: z.ZodBoolean;
|
|
5133
5133
|
authFailureCount: z.ZodNumber;
|
|
5134
5134
|
currentPhase: z.ZodEnum<{
|
|
5135
|
-
backfill: "backfill";
|
|
5136
5135
|
complete: "complete";
|
|
5136
|
+
backfill: "backfill";
|
|
5137
5137
|
initial: "initial";
|
|
5138
5138
|
}>;
|
|
5139
5139
|
isStalled: z.ZodBoolean;
|
|
@@ -6022,9 +6022,9 @@ declare const partnerEndpointSchemas: {
|
|
|
6022
6022
|
siteUrl: z.ZodString;
|
|
6023
6023
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
6024
6024
|
indexingStatus: z.ZodEnum<{
|
|
6025
|
+
complete: "complete";
|
|
6025
6026
|
pending: "pending";
|
|
6026
6027
|
partial: "partial";
|
|
6027
|
-
complete: "complete";
|
|
6028
6028
|
}>;
|
|
6029
6029
|
indexingProgress: z.ZodNumber;
|
|
6030
6030
|
sitemapTotal: z.ZodNumber;
|
|
@@ -6040,8 +6040,8 @@ declare const partnerEndpointSchemas: {
|
|
|
6040
6040
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
6041
6041
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
6042
6042
|
status: z.ZodOptional<z.ZodEnum<{
|
|
6043
|
-
pending: "pending";
|
|
6044
6043
|
indexed: "indexed";
|
|
6044
|
+
pending: "pending";
|
|
6045
6045
|
not_indexed: "not_indexed";
|
|
6046
6046
|
}>>;
|
|
6047
6047
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -6548,8 +6548,8 @@ declare const partnerEndpointSchemas: {
|
|
|
6548
6548
|
siteUrl: z.ZodString;
|
|
6549
6549
|
site: z.ZodObject<{
|
|
6550
6550
|
type: z.ZodEnum<{
|
|
6551
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
6552
6551
|
SITE: "SITE";
|
|
6552
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
6553
6553
|
}>;
|
|
6554
6554
|
identifier: z.ZodString;
|
|
6555
6555
|
}, z.core.$strip>;
|
|
@@ -6590,8 +6590,8 @@ declare const partnerEndpointSchemas: {
|
|
|
6590
6590
|
siteUrl: z.ZodString;
|
|
6591
6591
|
site: z.ZodObject<{
|
|
6592
6592
|
type: z.ZodEnum<{
|
|
6593
|
-
INET_DOMAIN: "INET_DOMAIN";
|
|
6594
6593
|
SITE: "SITE";
|
|
6594
|
+
INET_DOMAIN: "INET_DOMAIN";
|
|
6595
6595
|
}>;
|
|
6596
6596
|
identifier: z.ZodString;
|
|
6597
6597
|
}, z.core.$strip>;
|
package/dist/v1/operations.d.mts
CHANGED
|
@@ -1527,9 +1527,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1527
1527
|
siteUrl: z.ZodString;
|
|
1528
1528
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
1529
1529
|
indexingStatus: z.ZodEnum<{
|
|
1530
|
+
complete: "complete";
|
|
1530
1531
|
pending: "pending";
|
|
1531
1532
|
partial: "partial";
|
|
1532
|
-
complete: "complete";
|
|
1533
1533
|
}>;
|
|
1534
1534
|
indexingProgress: z.ZodNumber;
|
|
1535
1535
|
sitemapTotal: z.ZodNumber;
|
|
@@ -1601,9 +1601,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1601
1601
|
siteUrl: z.ZodString;
|
|
1602
1602
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
1603
1603
|
indexingStatus: z.ZodEnum<{
|
|
1604
|
+
complete: "complete";
|
|
1604
1605
|
pending: "pending";
|
|
1605
1606
|
partial: "partial";
|
|
1606
|
-
complete: "complete";
|
|
1607
1607
|
}>;
|
|
1608
1608
|
indexingProgress: z.ZodNumber;
|
|
1609
1609
|
sitemapTotal: z.ZodNumber;
|
|
@@ -1623,12 +1623,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1623
1623
|
startDate: z.ZodOptional<z.ZodString>;
|
|
1624
1624
|
endDate: z.ZodOptional<z.ZodString>;
|
|
1625
1625
|
field: z.ZodOptional<z.ZodEnum<{
|
|
1626
|
+
indexStatus: "indexStatus";
|
|
1627
|
+
googleCanonical: "googleCanonical";
|
|
1626
1628
|
coverageState: "coverageState";
|
|
1627
|
-
indexingState: "indexingState";
|
|
1628
1629
|
robotsTxtState: "robotsTxtState";
|
|
1630
|
+
indexingState: "indexingState";
|
|
1629
1631
|
pageFetchState: "pageFetchState";
|
|
1630
|
-
googleCanonical: "googleCanonical";
|
|
1631
|
-
indexStatus: "indexStatus";
|
|
1632
1632
|
}>>;
|
|
1633
1633
|
fromValue: z.ZodOptional<z.ZodString>;
|
|
1634
1634
|
toValue: z.ZodOptional<z.ZodString>;
|
|
@@ -1640,12 +1640,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1640
1640
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
1641
1641
|
readonly url: z.ZodString;
|
|
1642
1642
|
readonly field: z.ZodEnum<{
|
|
1643
|
+
indexStatus: "indexStatus";
|
|
1644
|
+
googleCanonical: "googleCanonical";
|
|
1643
1645
|
coverageState: "coverageState";
|
|
1644
|
-
indexingState: "indexingState";
|
|
1645
1646
|
robotsTxtState: "robotsTxtState";
|
|
1647
|
+
indexingState: "indexingState";
|
|
1646
1648
|
pageFetchState: "pageFetchState";
|
|
1647
|
-
googleCanonical: "googleCanonical";
|
|
1648
|
-
indexStatus: "indexStatus";
|
|
1649
1649
|
}>;
|
|
1650
1650
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
1651
1651
|
readonly toValue: z.ZodNullable<z.ZodString>;
|
|
@@ -1687,12 +1687,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1687
1687
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
1688
1688
|
readonly url: z.ZodString;
|
|
1689
1689
|
readonly field: z.ZodEnum<{
|
|
1690
|
+
indexStatus: "indexStatus";
|
|
1691
|
+
googleCanonical: "googleCanonical";
|
|
1690
1692
|
coverageState: "coverageState";
|
|
1691
|
-
indexingState: "indexingState";
|
|
1692
1693
|
robotsTxtState: "robotsTxtState";
|
|
1694
|
+
indexingState: "indexingState";
|
|
1693
1695
|
pageFetchState: "pageFetchState";
|
|
1694
|
-
googleCanonical: "googleCanonical";
|
|
1695
|
-
indexStatus: "indexStatus";
|
|
1696
1696
|
}>;
|
|
1697
1697
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
1698
1698
|
readonly toValue: z.ZodNullable<z.ZodString>;
|
|
@@ -1734,8 +1734,8 @@ declare function createGscdumpV1Protocol(): {
|
|
|
1734
1734
|
limit: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
1735
1735
|
offset: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
1736
1736
|
status: z.ZodOptional<z.ZodEnum<{
|
|
1737
|
-
pending: "pending";
|
|
1738
1737
|
indexed: "indexed";
|
|
1738
|
+
pending: "pending";
|
|
1739
1739
|
not_indexed: "not_indexed";
|
|
1740
1740
|
}>>;
|
|
1741
1741
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -2189,6 +2189,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2189
2189
|
requestedUrl: z.ZodOptional<z.ZodString>;
|
|
2190
2190
|
gscPropertyUrl: z.ZodOptional<z.ZodString>;
|
|
2191
2191
|
siteUrl: z.ZodString;
|
|
2192
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
2192
2193
|
externalSiteUrl: z.ZodOptional<z.ZodString>;
|
|
2193
2194
|
webhookUrl: z.ZodOptional<z.ZodURL>;
|
|
2194
2195
|
webhookEvents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -2207,7 +2208,6 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2207
2208
|
discover: "discover";
|
|
2208
2209
|
googleNews: "googleNews";
|
|
2209
2210
|
}>>>;
|
|
2210
|
-
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
2211
2211
|
}, z.core.$strict>;
|
|
2212
2212
|
sitemapChangesQuery: z.ZodObject<{
|
|
2213
2213
|
days: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
@@ -3608,6 +3608,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3608
3608
|
requestedUrl: z.ZodOptional<z.ZodString>;
|
|
3609
3609
|
gscPropertyUrl: z.ZodOptional<z.ZodString>;
|
|
3610
3610
|
siteUrl: z.ZodString;
|
|
3611
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3611
3612
|
externalSiteUrl: z.ZodOptional<z.ZodString>;
|
|
3612
3613
|
webhookUrl: z.ZodOptional<z.ZodURL>;
|
|
3613
3614
|
webhookEvents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -3626,7 +3627,6 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3626
3627
|
discover: "discover";
|
|
3627
3628
|
googleNews: "googleNews";
|
|
3628
3629
|
}>>>;
|
|
3629
|
-
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3630
3630
|
}, z.core.$strict>;
|
|
3631
3631
|
};
|
|
3632
3632
|
readonly responses: {
|
|
@@ -4429,9 +4429,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4429
4429
|
siteUrl: z.ZodString;
|
|
4430
4430
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4431
4431
|
indexingStatus: z.ZodEnum<{
|
|
4432
|
+
complete: "complete";
|
|
4432
4433
|
pending: "pending";
|
|
4433
4434
|
partial: "partial";
|
|
4434
|
-
complete: "complete";
|
|
4435
4435
|
}>;
|
|
4436
4436
|
indexingProgress: z.ZodNumber;
|
|
4437
4437
|
sitemapTotal: z.ZodNumber;
|
|
@@ -4503,9 +4503,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4503
4503
|
siteUrl: z.ZodString;
|
|
4504
4504
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4505
4505
|
indexingStatus: z.ZodEnum<{
|
|
4506
|
+
complete: "complete";
|
|
4506
4507
|
pending: "pending";
|
|
4507
4508
|
partial: "partial";
|
|
4508
|
-
complete: "complete";
|
|
4509
4509
|
}>;
|
|
4510
4510
|
indexingProgress: z.ZodNumber;
|
|
4511
4511
|
sitemapTotal: z.ZodNumber;
|
|
@@ -4654,8 +4654,8 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4654
4654
|
limit: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
4655
4655
|
offset: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
4656
4656
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4657
|
-
pending: "pending";
|
|
4658
4657
|
indexed: "indexed";
|
|
4658
|
+
pending: "pending";
|
|
4659
4659
|
not_indexed: "not_indexed";
|
|
4660
4660
|
}>>;
|
|
4661
4661
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -4881,12 +4881,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4881
4881
|
startDate: z.ZodOptional<z.ZodString>;
|
|
4882
4882
|
endDate: z.ZodOptional<z.ZodString>;
|
|
4883
4883
|
field: z.ZodOptional<z.ZodEnum<{
|
|
4884
|
+
indexStatus: "indexStatus";
|
|
4885
|
+
googleCanonical: "googleCanonical";
|
|
4884
4886
|
coverageState: "coverageState";
|
|
4885
|
-
indexingState: "indexingState";
|
|
4886
4887
|
robotsTxtState: "robotsTxtState";
|
|
4888
|
+
indexingState: "indexingState";
|
|
4887
4889
|
pageFetchState: "pageFetchState";
|
|
4888
|
-
googleCanonical: "googleCanonical";
|
|
4889
|
-
indexStatus: "indexStatus";
|
|
4890
4890
|
}>>;
|
|
4891
4891
|
fromValue: z.ZodOptional<z.ZodString>;
|
|
4892
4892
|
toValue: z.ZodOptional<z.ZodString>;
|
|
@@ -4904,12 +4904,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4904
4904
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
4905
4905
|
readonly url: z.ZodString;
|
|
4906
4906
|
readonly field: z.ZodEnum<{
|
|
4907
|
+
indexStatus: "indexStatus";
|
|
4908
|
+
googleCanonical: "googleCanonical";
|
|
4907
4909
|
coverageState: "coverageState";
|
|
4908
|
-
indexingState: "indexingState";
|
|
4909
4910
|
robotsTxtState: "robotsTxtState";
|
|
4911
|
+
indexingState: "indexingState";
|
|
4910
4912
|
pageFetchState: "pageFetchState";
|
|
4911
|
-
googleCanonical: "googleCanonical";
|
|
4912
|
-
indexStatus: "indexStatus";
|
|
4913
4913
|
}>;
|
|
4914
4914
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
4915
4915
|
readonly toValue: z.ZodNullable<z.ZodString>;
|
|
@@ -4951,12 +4951,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4951
4951
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
4952
4952
|
readonly url: z.ZodString;
|
|
4953
4953
|
readonly field: z.ZodEnum<{
|
|
4954
|
+
indexStatus: "indexStatus";
|
|
4955
|
+
googleCanonical: "googleCanonical";
|
|
4954
4956
|
coverageState: "coverageState";
|
|
4955
|
-
indexingState: "indexingState";
|
|
4956
4957
|
robotsTxtState: "robotsTxtState";
|
|
4958
|
+
indexingState: "indexingState";
|
|
4957
4959
|
pageFetchState: "pageFetchState";
|
|
4958
|
-
googleCanonical: "googleCanonical";
|
|
4959
|
-
indexStatus: "indexStatus";
|
|
4960
4960
|
}>;
|
|
4961
4961
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
4962
4962
|
readonly toValue: z.ZodNullable<z.ZodString>;
|