@gscdump/contracts 0.33.4 → 0.33.6
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.
|
@@ -1405,6 +1405,7 @@ declare const indexingUrlsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
|
1405
1405
|
}>>;
|
|
1406
1406
|
issue: z.ZodOptional<z.ZodString>;
|
|
1407
1407
|
search: z.ZodOptional<z.ZodString>;
|
|
1408
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<false>]>>;
|
|
1408
1409
|
}, z.core.$strip>>;
|
|
1409
1410
|
declare const indexingDiagnosticsParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
1410
1411
|
sampleIssues: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
@@ -3571,6 +3572,7 @@ declare const partnerControlEndpointSchemas: {
|
|
|
3571
3572
|
}>>;
|
|
3572
3573
|
issue: z.ZodOptional<z.ZodString>;
|
|
3573
3574
|
search: z.ZodOptional<z.ZodString>;
|
|
3575
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<false>]>>;
|
|
3574
3576
|
}, z.core.$strip>>;
|
|
3575
3577
|
readonly response: z.ZodObject<{
|
|
3576
3578
|
urls: z.ZodArray<z.ZodObject<{
|
|
@@ -5069,6 +5071,7 @@ declare const partnerEndpointSchemas: {
|
|
|
5069
5071
|
}>>;
|
|
5070
5072
|
issue: z.ZodOptional<z.ZodString>;
|
|
5071
5073
|
search: z.ZodOptional<z.ZodString>;
|
|
5074
|
+
count: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<false>]>>;
|
|
5072
5075
|
}, z.core.$strip>>;
|
|
5073
5076
|
readonly response: z.ZodObject<{
|
|
5074
5077
|
urls: z.ZodArray<z.ZodObject<{
|
package/dist/_chunks/schemas.mjs
CHANGED
|
@@ -839,7 +839,8 @@ const indexingUrlsParamsSchema = z.object({
|
|
|
839
839
|
"pending"
|
|
840
840
|
]).optional(),
|
|
841
841
|
issue: z.string().optional(),
|
|
842
|
-
search: z.string().optional()
|
|
842
|
+
search: z.string().optional(),
|
|
843
|
+
count: z.union([z.literal(0), z.literal(false)]).optional()
|
|
843
844
|
}).optional();
|
|
844
845
|
const indexingDiagnosticsParamsSchema = z.object({
|
|
845
846
|
sampleIssues: z.union([z.string(), z.array(z.string())]).optional(),
|
package/dist/_chunks/types.d.mts
CHANGED
|
@@ -1111,6 +1111,13 @@ interface IndexingUrlsParams {
|
|
|
1111
1111
|
status?: GscdumpIndexingUrlStatus;
|
|
1112
1112
|
issue?: string;
|
|
1113
1113
|
search?: string;
|
|
1114
|
+
/**
|
|
1115
|
+
* Pass `0`/`false` to skip the total COUNT(*) — a second full scan of the
|
|
1116
|
+
* joined url_indexing_status/sitemap_urls set. Sample callers that read only
|
|
1117
|
+
* `urls` (e.g. the assess page-issue collector) should opt out; paginated UI
|
|
1118
|
+
* reads that show an exact total leave it unset.
|
|
1119
|
+
*/
|
|
1120
|
+
count?: 0 | false;
|
|
1114
1121
|
}
|
|
1115
1122
|
interface GscdumpUserSettings {
|
|
1116
1123
|
browserAnalyzerEnabled: boolean;
|