@gscdump/contracts 2.0.0 → 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 +34 -26
- package/dist/v1/operations.mjs +3 -1
- 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>>>;
|
|
@@ -2235,10 +2235,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2235
2235
|
updated_limit: "updated_limit";
|
|
2236
2236
|
history_unavailable: "history_unavailable";
|
|
2237
2237
|
}>>;
|
|
2238
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
2238
2239
|
limits: z.ZodObject<{
|
|
2239
2240
|
scannedUrls: z.ZodNumber;
|
|
2240
2241
|
added: z.ZodNumber;
|
|
2241
2242
|
removed: z.ZodNumber;
|
|
2243
|
+
updated: z.ZodNumber;
|
|
2242
2244
|
}, z.core.$strict>;
|
|
2243
2245
|
}, z.core.$strict>], "_tag">;
|
|
2244
2246
|
readonly added: z.ZodArray<z.ZodObject<{
|
|
@@ -2299,6 +2301,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2299
2301
|
scannedUrls: z.ZodNumber;
|
|
2300
2302
|
added: z.ZodNumber;
|
|
2301
2303
|
removed: z.ZodNumber;
|
|
2304
|
+
updated: z.ZodNumber;
|
|
2302
2305
|
}, z.core.$loose>;
|
|
2303
2306
|
_tag: z.ZodLiteral<"truncated">;
|
|
2304
2307
|
scannedUrls: z.ZodNumber;
|
|
@@ -2309,6 +2312,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
2309
2312
|
updated_limit: "updated_limit";
|
|
2310
2313
|
history_unavailable: "history_unavailable";
|
|
2311
2314
|
}>>;
|
|
2315
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
2312
2316
|
}, z.core.$loose>], "_tag">;
|
|
2313
2317
|
readonly added: z.ZodArray<z.ZodObject<{
|
|
2314
2318
|
url: z.ZodString;
|
|
@@ -3604,6 +3608,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3604
3608
|
requestedUrl: z.ZodOptional<z.ZodString>;
|
|
3605
3609
|
gscPropertyUrl: z.ZodOptional<z.ZodString>;
|
|
3606
3610
|
siteUrl: z.ZodString;
|
|
3611
|
+
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3607
3612
|
externalSiteUrl: z.ZodOptional<z.ZodString>;
|
|
3608
3613
|
webhookUrl: z.ZodOptional<z.ZodURL>;
|
|
3609
3614
|
webhookEvents: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -3622,7 +3627,6 @@ declare function createGscdumpV1Protocol(): {
|
|
|
3622
3627
|
discover: "discover";
|
|
3623
3628
|
googleNews: "googleNews";
|
|
3624
3629
|
}>>>;
|
|
3625
|
-
catalogSiteId: z.ZodOptional<z.ZodNumber>;
|
|
3626
3630
|
}, z.core.$strict>;
|
|
3627
3631
|
};
|
|
3628
3632
|
readonly responses: {
|
|
@@ -4425,9 +4429,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4425
4429
|
siteUrl: z.ZodString;
|
|
4426
4430
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4427
4431
|
indexingStatus: z.ZodEnum<{
|
|
4432
|
+
complete: "complete";
|
|
4428
4433
|
pending: "pending";
|
|
4429
4434
|
partial: "partial";
|
|
4430
|
-
complete: "complete";
|
|
4431
4435
|
}>;
|
|
4432
4436
|
indexingProgress: z.ZodNumber;
|
|
4433
4437
|
sitemapTotal: z.ZodNumber;
|
|
@@ -4499,9 +4503,9 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4499
4503
|
siteUrl: z.ZodString;
|
|
4500
4504
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
4501
4505
|
indexingStatus: z.ZodEnum<{
|
|
4506
|
+
complete: "complete";
|
|
4502
4507
|
pending: "pending";
|
|
4503
4508
|
partial: "partial";
|
|
4504
|
-
complete: "complete";
|
|
4505
4509
|
}>;
|
|
4506
4510
|
indexingProgress: z.ZodNumber;
|
|
4507
4511
|
sitemapTotal: z.ZodNumber;
|
|
@@ -4650,8 +4654,8 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4650
4654
|
limit: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
4651
4655
|
offset: z.ZodOptional<z.ZodType<string | number, unknown, z.core.$ZodTypeInternals<string | number, unknown>>>;
|
|
4652
4656
|
status: z.ZodOptional<z.ZodEnum<{
|
|
4653
|
-
pending: "pending";
|
|
4654
4657
|
indexed: "indexed";
|
|
4658
|
+
pending: "pending";
|
|
4655
4659
|
not_indexed: "not_indexed";
|
|
4656
4660
|
}>>;
|
|
4657
4661
|
issue: z.ZodOptional<z.ZodString>;
|
|
@@ -4877,12 +4881,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4877
4881
|
startDate: z.ZodOptional<z.ZodString>;
|
|
4878
4882
|
endDate: z.ZodOptional<z.ZodString>;
|
|
4879
4883
|
field: z.ZodOptional<z.ZodEnum<{
|
|
4884
|
+
indexStatus: "indexStatus";
|
|
4885
|
+
googleCanonical: "googleCanonical";
|
|
4880
4886
|
coverageState: "coverageState";
|
|
4881
|
-
indexingState: "indexingState";
|
|
4882
4887
|
robotsTxtState: "robotsTxtState";
|
|
4888
|
+
indexingState: "indexingState";
|
|
4883
4889
|
pageFetchState: "pageFetchState";
|
|
4884
|
-
googleCanonical: "googleCanonical";
|
|
4885
|
-
indexStatus: "indexStatus";
|
|
4886
4890
|
}>>;
|
|
4887
4891
|
fromValue: z.ZodOptional<z.ZodString>;
|
|
4888
4892
|
toValue: z.ZodOptional<z.ZodString>;
|
|
@@ -4900,12 +4904,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4900
4904
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
4901
4905
|
readonly url: z.ZodString;
|
|
4902
4906
|
readonly field: z.ZodEnum<{
|
|
4907
|
+
indexStatus: "indexStatus";
|
|
4908
|
+
googleCanonical: "googleCanonical";
|
|
4903
4909
|
coverageState: "coverageState";
|
|
4904
|
-
indexingState: "indexingState";
|
|
4905
4910
|
robotsTxtState: "robotsTxtState";
|
|
4911
|
+
indexingState: "indexingState";
|
|
4906
4912
|
pageFetchState: "pageFetchState";
|
|
4907
|
-
googleCanonical: "googleCanonical";
|
|
4908
|
-
indexStatus: "indexStatus";
|
|
4909
4913
|
}>;
|
|
4910
4914
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
4911
4915
|
readonly toValue: z.ZodNullable<z.ZodString>;
|
|
@@ -4947,12 +4951,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
4947
4951
|
readonly transitions: z.ZodArray<z.ZodObject<{
|
|
4948
4952
|
readonly url: z.ZodString;
|
|
4949
4953
|
readonly field: z.ZodEnum<{
|
|
4954
|
+
indexStatus: "indexStatus";
|
|
4955
|
+
googleCanonical: "googleCanonical";
|
|
4950
4956
|
coverageState: "coverageState";
|
|
4951
|
-
indexingState: "indexingState";
|
|
4952
4957
|
robotsTxtState: "robotsTxtState";
|
|
4958
|
+
indexingState: "indexingState";
|
|
4953
4959
|
pageFetchState: "pageFetchState";
|
|
4954
|
-
googleCanonical: "googleCanonical";
|
|
4955
|
-
indexStatus: "indexStatus";
|
|
4956
4960
|
}>;
|
|
4957
4961
|
readonly fromValue: z.ZodNullable<z.ZodString>;
|
|
4958
4962
|
readonly toValue: z.ZodNullable<z.ZodString>;
|
|
@@ -5601,10 +5605,12 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5601
5605
|
updated_limit: "updated_limit";
|
|
5602
5606
|
history_unavailable: "history_unavailable";
|
|
5603
5607
|
}>>;
|
|
5608
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
5604
5609
|
limits: z.ZodObject<{
|
|
5605
5610
|
scannedUrls: z.ZodNumber;
|
|
5606
5611
|
added: z.ZodNumber;
|
|
5607
5612
|
removed: z.ZodNumber;
|
|
5613
|
+
updated: z.ZodNumber;
|
|
5608
5614
|
}, z.core.$strict>;
|
|
5609
5615
|
}, z.core.$strict>], "_tag">;
|
|
5610
5616
|
readonly added: z.ZodArray<z.ZodObject<{
|
|
@@ -5665,6 +5671,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5665
5671
|
scannedUrls: z.ZodNumber;
|
|
5666
5672
|
added: z.ZodNumber;
|
|
5667
5673
|
removed: z.ZodNumber;
|
|
5674
|
+
updated: z.ZodNumber;
|
|
5668
5675
|
}, z.core.$loose>;
|
|
5669
5676
|
_tag: z.ZodLiteral<"truncated">;
|
|
5670
5677
|
scannedUrls: z.ZodNumber;
|
|
@@ -5675,6 +5682,7 @@ declare function createGscdumpV1Protocol(): {
|
|
|
5675
5682
|
updated_limit: "updated_limit";
|
|
5676
5683
|
history_unavailable: "history_unavailable";
|
|
5677
5684
|
}>>;
|
|
5685
|
+
historyAvailableFrom: z.ZodOptional<z.ZodNumber>;
|
|
5678
5686
|
}, z.core.$loose>], "_tag">;
|
|
5679
5687
|
readonly added: z.ZodArray<z.ZodObject<{
|
|
5680
5688
|
url: z.ZodString;
|
package/dist/v1/operations.mjs
CHANGED
|
@@ -242,10 +242,12 @@ function createGscdumpV1Protocol() {
|
|
|
242
242
|
_tag: z.literal("truncated"),
|
|
243
243
|
scannedUrls: z.number().int().nonnegative(),
|
|
244
244
|
reasons: z.array(sitemapChangesTruncationReasonSchema).min(1),
|
|
245
|
+
historyAvailableFrom: z.number().int().nonnegative().optional(),
|
|
245
246
|
limits: z.strictObject({
|
|
246
247
|
scannedUrls: z.number().int().positive(),
|
|
247
248
|
added: z.number().int().positive(),
|
|
248
|
-
removed: z.number().int().positive()
|
|
249
|
+
removed: z.number().int().positive(),
|
|
250
|
+
updated: z.number().int().positive()
|
|
249
251
|
})
|
|
250
252
|
};
|
|
251
253
|
const sitemapChangesResponse = defineSuccessResponse(defineResponseObject({
|