@gscdump/contracts 2.0.0 → 2.0.1
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/v1/operations.d.mts
CHANGED
|
@@ -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;
|
|
@@ -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({
|