@gscdump/contracts 0.25.1 → 0.25.3
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/index.d.mts +148 -14
- package/dist/index.mjs +57 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -789,6 +789,11 @@ interface GscdumpIndexingResponse {
|
|
|
789
789
|
};
|
|
790
790
|
}
|
|
791
791
|
type GscdumpIndexingUrlStatus = 'indexed' | 'not_indexed' | 'pending';
|
|
792
|
+
type GscdumpIndexingIssueSeverity = 'error' | 'warning' | 'info';
|
|
793
|
+
interface GscdumpRichResultItem {
|
|
794
|
+
richResultType: string;
|
|
795
|
+
items?: unknown[];
|
|
796
|
+
}
|
|
792
797
|
interface GscdumpIndexingUrl {
|
|
793
798
|
url: string;
|
|
794
799
|
verdict: string | null;
|
|
@@ -803,9 +808,9 @@ interface GscdumpIndexingUrl {
|
|
|
803
808
|
sitemaps?: string[] | null;
|
|
804
809
|
referringUrls?: string[] | null;
|
|
805
810
|
mobileVerdict?: string | null;
|
|
806
|
-
mobileIssues?:
|
|
811
|
+
mobileIssues?: string[] | null;
|
|
807
812
|
richResultsVerdict?: string | null;
|
|
808
|
-
richResultsItems?:
|
|
813
|
+
richResultsItems?: GscdumpRichResultItem[] | null;
|
|
809
814
|
inspectionResultLink?: string | null;
|
|
810
815
|
firstCheckedAt: string;
|
|
811
816
|
lastCheckedAt: string;
|
|
@@ -834,7 +839,7 @@ interface GscdumpIndexingDiagnosticsResponse {
|
|
|
834
839
|
issues: {
|
|
835
840
|
type: string;
|
|
836
841
|
label: string;
|
|
837
|
-
severity:
|
|
842
|
+
severity: GscdumpIndexingIssueSeverity;
|
|
838
843
|
count: number;
|
|
839
844
|
}[];
|
|
840
845
|
meta: {
|
|
@@ -1022,6 +1027,25 @@ interface GscdumpQueryTrendResponse {
|
|
|
1022
1027
|
syncStatus: string | null;
|
|
1023
1028
|
};
|
|
1024
1029
|
}
|
|
1030
|
+
interface GscdumpPageTrendParams {
|
|
1031
|
+
startDate: string;
|
|
1032
|
+
endDate: string;
|
|
1033
|
+
prevStartDate?: string;
|
|
1034
|
+
prevEndDate?: string;
|
|
1035
|
+
searchType?: GscSearchType;
|
|
1036
|
+
}
|
|
1037
|
+
interface GscdumpPageTrendResponse {
|
|
1038
|
+
daily: Array<{
|
|
1039
|
+
date: string;
|
|
1040
|
+
pageCount: number;
|
|
1041
|
+
}>;
|
|
1042
|
+
total: number;
|
|
1043
|
+
previousTotal?: number;
|
|
1044
|
+
meta: {
|
|
1045
|
+
siteUrl: string;
|
|
1046
|
+
syncStatus: string | null;
|
|
1047
|
+
};
|
|
1048
|
+
}
|
|
1025
1049
|
interface GscdumpDateRangeParams {
|
|
1026
1050
|
startDate: string;
|
|
1027
1051
|
endDate: string;
|
|
@@ -1330,6 +1354,7 @@ interface PartnerClient {
|
|
|
1330
1354
|
getTopAssociation: (siteId: string, params: GscdumpTopAssociationParams) => Promise<GscdumpTopAssociationResponse>;
|
|
1331
1355
|
getKeywordSparklines: (siteId: string, params: GscdumpKeywordSparklinesParams) => Promise<GscdumpKeywordSparklinesResponse>;
|
|
1332
1356
|
getQueryTrend: (siteId: string, params: GscdumpQueryTrendParams) => Promise<GscdumpQueryTrendResponse>;
|
|
1357
|
+
getPageTrend: (siteId: string, params: GscdumpPageTrendParams) => Promise<GscdumpPageTrendResponse>;
|
|
1333
1358
|
getCanonicalMismatches: (siteId: string) => Promise<GscdumpCanonicalMismatchesResponse>;
|
|
1334
1359
|
getContentVelocity: <T = unknown>(siteId: string, days?: number) => Promise<T>;
|
|
1335
1360
|
getCtrCurve: <T = unknown>(siteId: string, params: GscdumpDateRangeParams) => Promise<T>;
|
|
@@ -1674,6 +1699,7 @@ declare const partnerRoutes: {
|
|
|
1674
1699
|
readonly topAssociation: (siteId: string) => string;
|
|
1675
1700
|
readonly keywordSparklines: (siteId: string) => string;
|
|
1676
1701
|
readonly queryTrend: (siteId: string) => string;
|
|
1702
|
+
readonly pageTrend: (siteId: string) => string;
|
|
1677
1703
|
readonly contentVelocity: (siteId: string) => string;
|
|
1678
1704
|
readonly ctrCurve: (siteId: string) => string;
|
|
1679
1705
|
readonly darkTraffic: (siteId: string) => string;
|
|
@@ -2948,17 +2974,44 @@ declare const gscdumpAnalysisResponseSchema: z.ZodObject<{
|
|
|
2948
2974
|
}, z.core.$loose>;
|
|
2949
2975
|
}, z.core.$loose>;
|
|
2950
2976
|
declare const gscdumpSitemapsResponseSchema: z.ZodObject<{
|
|
2951
|
-
sitemaps: z.ZodArray<z.
|
|
2952
|
-
|
|
2953
|
-
|
|
2977
|
+
sitemaps: z.ZodArray<z.ZodObject<{
|
|
2978
|
+
path: z.ZodString;
|
|
2979
|
+
urlCount: z.ZodNumber;
|
|
2980
|
+
errors: z.ZodNumber;
|
|
2981
|
+
warnings: z.ZodNumber;
|
|
2982
|
+
isIndex: z.ZodOptional<z.ZodBoolean>;
|
|
2983
|
+
lastSubmitted: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2984
|
+
lastDownloaded: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2985
|
+
}, z.core.$loose>>;
|
|
2986
|
+
history: z.ZodArray<z.ZodObject<{
|
|
2987
|
+
date: z.ZodString;
|
|
2988
|
+
errors: z.ZodNumber;
|
|
2989
|
+
warnings: z.ZodNumber;
|
|
2990
|
+
urlCount: z.ZodNumber;
|
|
2991
|
+
urlDelta: z.ZodNumber;
|
|
2992
|
+
}, z.core.$loose>>;
|
|
2993
|
+
perSitemapHistory: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
2994
|
+
date: z.ZodString;
|
|
2995
|
+
urlCount: z.ZodNumber;
|
|
2996
|
+
changed: z.ZodBoolean;
|
|
2997
|
+
urlDelta: z.ZodNumber;
|
|
2998
|
+
}, z.core.$loose>>>;
|
|
2954
2999
|
meta: z.ZodObject<{
|
|
2955
3000
|
siteUrl: z.ZodString;
|
|
2956
3001
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
2957
3002
|
}, z.core.$loose>;
|
|
2958
3003
|
}, z.core.$loose>;
|
|
2959
3004
|
declare const gscdumpSitemapChangesResponseSchema: z.ZodObject<{
|
|
2960
|
-
added: z.ZodArray<z.
|
|
2961
|
-
|
|
3005
|
+
added: z.ZodArray<z.ZodObject<{
|
|
3006
|
+
url: z.ZodString;
|
|
3007
|
+
sitemap: z.ZodString;
|
|
3008
|
+
firstSeenAt: z.ZodNumber;
|
|
3009
|
+
}, z.core.$loose>>;
|
|
3010
|
+
removed: z.ZodArray<z.ZodObject<{
|
|
3011
|
+
url: z.ZodString;
|
|
3012
|
+
sitemap: z.ZodString;
|
|
3013
|
+
removedAt: z.ZodNumber;
|
|
3014
|
+
}, z.core.$loose>>;
|
|
2962
3015
|
summary: z.ZodOptional<z.ZodObject<{
|
|
2963
3016
|
totalAdded: z.ZodNumber;
|
|
2964
3017
|
totalRemoved: z.ZodNumber;
|
|
@@ -3333,6 +3386,32 @@ declare const gscdumpQueryTrendResponseSchema: z.ZodObject<{
|
|
|
3333
3386
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
3334
3387
|
}, z.core.$loose>;
|
|
3335
3388
|
}, z.core.$loose>;
|
|
3389
|
+
declare const gscdumpPageTrendParamsSchema: z.ZodObject<{
|
|
3390
|
+
startDate: z.ZodString;
|
|
3391
|
+
endDate: z.ZodString;
|
|
3392
|
+
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
3393
|
+
prevEndDate: z.ZodOptional<z.ZodString>;
|
|
3394
|
+
searchType: z.ZodOptional<z.ZodEnum<{
|
|
3395
|
+
web: "web";
|
|
3396
|
+
image: "image";
|
|
3397
|
+
video: "video";
|
|
3398
|
+
news: "news";
|
|
3399
|
+
discover: "discover";
|
|
3400
|
+
googleNews: "googleNews";
|
|
3401
|
+
}>>;
|
|
3402
|
+
}, z.core.$strip>;
|
|
3403
|
+
declare const gscdumpPageTrendResponseSchema: z.ZodObject<{
|
|
3404
|
+
daily: z.ZodArray<z.ZodObject<{
|
|
3405
|
+
date: z.ZodString;
|
|
3406
|
+
pageCount: z.ZodNumber;
|
|
3407
|
+
}, z.core.$loose>>;
|
|
3408
|
+
total: z.ZodNumber;
|
|
3409
|
+
previousTotal: z.ZodOptional<z.ZodNumber>;
|
|
3410
|
+
meta: z.ZodObject<{
|
|
3411
|
+
siteUrl: z.ZodString;
|
|
3412
|
+
syncStatus: z.ZodNullable<z.ZodString>;
|
|
3413
|
+
}, z.core.$loose>;
|
|
3414
|
+
}, z.core.$loose>;
|
|
3336
3415
|
declare const gscdumpDateRangeParamsSchema: z.ZodObject<{
|
|
3337
3416
|
startDate: z.ZodString;
|
|
3338
3417
|
endDate: z.ZodString;
|
|
@@ -4697,9 +4776,28 @@ declare const partnerEndpointSchemas: {
|
|
|
4697
4776
|
};
|
|
4698
4777
|
readonly getSitemaps: {
|
|
4699
4778
|
readonly response: z.ZodObject<{
|
|
4700
|
-
sitemaps: z.ZodArray<z.
|
|
4701
|
-
|
|
4702
|
-
|
|
4779
|
+
sitemaps: z.ZodArray<z.ZodObject<{
|
|
4780
|
+
path: z.ZodString;
|
|
4781
|
+
urlCount: z.ZodNumber;
|
|
4782
|
+
errors: z.ZodNumber;
|
|
4783
|
+
warnings: z.ZodNumber;
|
|
4784
|
+
isIndex: z.ZodOptional<z.ZodBoolean>;
|
|
4785
|
+
lastSubmitted: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4786
|
+
lastDownloaded: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4787
|
+
}, z.core.$loose>>;
|
|
4788
|
+
history: z.ZodArray<z.ZodObject<{
|
|
4789
|
+
date: z.ZodString;
|
|
4790
|
+
errors: z.ZodNumber;
|
|
4791
|
+
warnings: z.ZodNumber;
|
|
4792
|
+
urlCount: z.ZodNumber;
|
|
4793
|
+
urlDelta: z.ZodNumber;
|
|
4794
|
+
}, z.core.$loose>>;
|
|
4795
|
+
perSitemapHistory: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
4796
|
+
date: z.ZodString;
|
|
4797
|
+
urlCount: z.ZodNumber;
|
|
4798
|
+
changed: z.ZodBoolean;
|
|
4799
|
+
urlDelta: z.ZodNumber;
|
|
4800
|
+
}, z.core.$loose>>>;
|
|
4703
4801
|
meta: z.ZodObject<{
|
|
4704
4802
|
siteUrl: z.ZodString;
|
|
4705
4803
|
syncStatus: z.ZodNullable<z.ZodString>;
|
|
@@ -4708,8 +4806,16 @@ declare const partnerEndpointSchemas: {
|
|
|
4708
4806
|
};
|
|
4709
4807
|
readonly getSitemapChanges: {
|
|
4710
4808
|
readonly response: z.ZodObject<{
|
|
4711
|
-
added: z.ZodArray<z.
|
|
4712
|
-
|
|
4809
|
+
added: z.ZodArray<z.ZodObject<{
|
|
4810
|
+
url: z.ZodString;
|
|
4811
|
+
sitemap: z.ZodString;
|
|
4812
|
+
firstSeenAt: z.ZodNumber;
|
|
4813
|
+
}, z.core.$loose>>;
|
|
4814
|
+
removed: z.ZodArray<z.ZodObject<{
|
|
4815
|
+
url: z.ZodString;
|
|
4816
|
+
sitemap: z.ZodString;
|
|
4817
|
+
removedAt: z.ZodNumber;
|
|
4818
|
+
}, z.core.$loose>>;
|
|
4713
4819
|
summary: z.ZodOptional<z.ZodObject<{
|
|
4714
4820
|
totalAdded: z.ZodNumber;
|
|
4715
4821
|
totalRemoved: z.ZodNumber;
|
|
@@ -4959,6 +5065,34 @@ declare const partnerEndpointSchemas: {
|
|
|
4959
5065
|
}, z.core.$loose>;
|
|
4960
5066
|
}, z.core.$loose>;
|
|
4961
5067
|
};
|
|
5068
|
+
readonly getPageTrend: {
|
|
5069
|
+
readonly query: z.ZodObject<{
|
|
5070
|
+
startDate: z.ZodString;
|
|
5071
|
+
endDate: z.ZodString;
|
|
5072
|
+
prevStartDate: z.ZodOptional<z.ZodString>;
|
|
5073
|
+
prevEndDate: z.ZodOptional<z.ZodString>;
|
|
5074
|
+
searchType: z.ZodOptional<z.ZodEnum<{
|
|
5075
|
+
web: "web";
|
|
5076
|
+
image: "image";
|
|
5077
|
+
video: "video";
|
|
5078
|
+
news: "news";
|
|
5079
|
+
discover: "discover";
|
|
5080
|
+
googleNews: "googleNews";
|
|
5081
|
+
}>>;
|
|
5082
|
+
}, z.core.$strip>;
|
|
5083
|
+
readonly response: z.ZodObject<{
|
|
5084
|
+
daily: z.ZodArray<z.ZodObject<{
|
|
5085
|
+
date: z.ZodString;
|
|
5086
|
+
pageCount: z.ZodNumber;
|
|
5087
|
+
}, z.core.$loose>>;
|
|
5088
|
+
total: z.ZodNumber;
|
|
5089
|
+
previousTotal: z.ZodOptional<z.ZodNumber>;
|
|
5090
|
+
meta: z.ZodObject<{
|
|
5091
|
+
siteUrl: z.ZodString;
|
|
5092
|
+
syncStatus: z.ZodNullable<z.ZodString>;
|
|
5093
|
+
}, z.core.$loose>;
|
|
5094
|
+
}, z.core.$loose>;
|
|
5095
|
+
};
|
|
4962
5096
|
readonly getDateRangeInsight: {
|
|
4963
5097
|
readonly query: z.ZodObject<{
|
|
4964
5098
|
startDate: z.ZodString;
|
|
@@ -5217,4 +5351,4 @@ declare const WEBHOOK_CONTRACT_VERSION_HEADER = "X-GSCDump-Contract-Version";
|
|
|
5217
5351
|
declare const WEBHOOK_TIMESTAMP_HEADER = "X-GSCDump-Timestamp";
|
|
5218
5352
|
declare const CANONICAL_WEBHOOK_EVENTS: readonly ["user.lifecycle.changed", "site.lifecycle.changed", "site.analytics.ready", "site.indexing.ready", "site.auth.failed", "job.failed"];
|
|
5219
5353
|
declare const VALID_WEBHOOK_EVENTS: readonly ["user.lifecycle.changed", "site.lifecycle.changed", "site.analytics.ready", "site.indexing.ready", "site.auth.failed", "job.failed"];
|
|
5220
|
-
export { AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type FileResolutionRequest, type FileResolutionResponse, type FileResolutionTable, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type ResolvedParquetFile, type ResolvedTable, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type ServerTailDirective, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsNextActions, analyticsRoutes, analyticsStatuses, 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, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
|
5354
|
+
export { AccountNextAction, AccountStatus, type AddPartnerTeamMemberParams, type AnalysisSourcesOptions, type AnalysisSourcesResponse, type AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, type BackfillRange, type BackfillResponse, type BindPartnerSiteTeamParams, type BuilderState, type BulkRegisterPartnerSiteResult, type BulkRegisterPartnerSitesParams, type BulkRegisterPartnerSitesResponse, CANONICAL_WEBHOOK_EVENTS, type CanonicalWebhookEventType, type ColumnDef, type ColumnType, type CountriesResponse, type CountryRow, type CreatePartnerTeamParams, type CreateWebhookEnvelopeOptions, type DataDetailOptions, type DataQueryOptions, type DeletePartnerUserResponse, type Dimension, type FileResolutionRequest, type FileResolutionResponse, type FileResolutionTable, type Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, type Grain, type GscApiRange, type GscComparisonFilter, type GscRowQueryMeta, type GscRowQueryResponse, type GscSearchType, type GscdumpAnalysisParams, type GscdumpAnalysisPreset, type GscdumpAnalysisResponse, type GscdumpAnalysisSourcesResponse, type GscdumpAvailableSite, type GscdumpCanonicalMismatchRow, type GscdumpCanonicalMismatchesResponse, type GscdumpDataDetailResponse, type GscdumpDataResponse, type GscdumpDataRow, type GscdumpDateRangeParams, type GscdumpHealthResponse, type GscdumpIndexPercentResponse, type GscdumpIndexPercentSitemap, type GscdumpIndexPercentTrendPoint, type GscdumpIndexingDiagnosticsResponse, type GscdumpIndexingInspectRateLimited, type GscdumpIndexingInspectRequest, type GscdumpIndexingInspectResponse, type GscdumpIndexingInspectResult, type GscdumpIndexingIssueSeverity, type GscdumpIndexingResponse, type GscdumpIndexingTrendPoint, type GscdumpIndexingUrl, type GscdumpIndexingUrlStatus, type GscdumpIndexingUrlsResponse, type GscdumpInvisibleUrlRow, type GscdumpKeywordSparklinesParams, type GscdumpKeywordSparklinesResponse, type GscdumpMeta, type GscdumpOrphanPageRow, type GscdumpPageTrendParams, type GscdumpPageTrendResponse, type GscdumpPerSitemapHistoryEntry, type GscdumpPermissionRecovery, type GscdumpQueryTrendParams, type GscdumpQueryTrendResponse, type GscdumpRichResultItem, type GscdumpSiteRegistration, type GscdumpSiteReportResponse, type GscdumpSitemap, type GscdumpSitemapChangesResponse, type GscdumpSitemapHistory, type GscdumpSitemapsResponse, type GscdumpSyncJobItem, type GscdumpSyncJobStatus, type GscdumpSyncJobsQueueCounts, type GscdumpSyncJobsResponse, type GscdumpSyncProgressDateStatus, type GscdumpSyncProgressPhaseCounts, type GscdumpSyncProgressResponse, type GscdumpSyncProgressSite, type GscdumpSyncStatusResponse, type GscdumpTeamMemberRow, type GscdumpTeamRow, type GscdumpTopAssociationParams, type GscdumpTopAssociationResponse, type GscdumpTotals, type GscdumpUserMeResponse, type GscdumpUserRegistration, type GscdumpUserSettings, type GscdumpUserSite, type GscdumpUserStatus, type GscdumpUserTokenUpdate, type IndexingDiagnostics, type IndexingInspectRateLimit, type IndexingInspectRateLimited, type IndexingInspectRequest, type IndexingInspectResponse, type IndexingInspectResult, type IndexingIssue, type IndexingIssueSeverity, IndexingNextAction, IndexingStatus, type IndexingUrlRow, type IndexingUrlStatus, type IndexingUrlsParams, type IndexingUrlsResponse, type InspectionHistoryRecord, type InspectionHistoryResponse, type InspectionIndex, type InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, type Metric, type PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, type PartnerRealtimeEvent, type PartnerRealtimeEventType, type PartnerRealtimeMessage, type PartnerWebhookData, type PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, type RealtimeAuthFailedEvent, type RealtimeAuthRequiredMessage, type RealtimeConnectedMessage, type RealtimeEnrichmentCompleteEvent, type RealtimeErrorMessage, type RealtimeJobFailedEvent, type RealtimeNeedsReauthEvent, type RealtimePongMessage, type RealtimeSiteAddedEvent, type RealtimeSiteRemovedEvent, type RealtimeSubscribedMessage, type RealtimeSyncCompleteEvent, type RealtimeSyncFailedEvent, type RealtimeSyncJobCompleteEvent, type RealtimeSyncProgressEvent, type RealtimeSyncSiteCompleteEvent, type RegisterPartnerSiteParams, type RegisterPartnerUserParams, type ResolvedParquetFile, type ResolvedTable, type RollupEnvelope, type Row, type ScheduleState, type SearchAppearanceResponse, type SearchAppearanceRow, type SearchTypeOptions, type ServerTailDirective, type SiteListItem, type SitemapAddedRow, type SitemapChangesResponse, type SitemapHistoryRecord, type SitemapHistoryResponse, type SitemapIndex, SitemapNextAction, type SitemapRemovedRow, SitemapStatus, type SourceInfoOptions, type SourceInfoResponse, type TableName, type TableSchema, type TenantCtx, type UpdatePartnerUserTokensParams, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, type WebhookEnvelope, type WebhookEventType, type WhoamiResponse, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsNextActions, analyticsRoutes, analyticsStatuses, 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, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -163,6 +163,7 @@ const partnerRoutes = {
|
|
|
163
163
|
topAssociation: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/top-association`,
|
|
164
164
|
keywordSparklines: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/keyword-sparklines`,
|
|
165
165
|
queryTrend: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/query-trend`,
|
|
166
|
+
pageTrend: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/page-trend`,
|
|
166
167
|
contentVelocity: (siteId) => `/sites/${encodeURIComponent(siteId)}/content-velocity`,
|
|
167
168
|
ctrCurve: (siteId) => `/sites/${encodeURIComponent(siteId)}/ctr-curve`,
|
|
168
169
|
darkTraffic: (siteId) => `/sites/${encodeURIComponent(siteId)}/dark-traffic`,
|
|
@@ -781,17 +782,44 @@ const gscdumpAnalysisResponseSchema = z.object({
|
|
|
781
782
|
meta: gscdumpMetaSchema
|
|
782
783
|
}).loose();
|
|
783
784
|
const gscdumpSitemapsResponseSchema = z.object({
|
|
784
|
-
sitemaps: z.array(
|
|
785
|
-
|
|
786
|
-
|
|
785
|
+
sitemaps: z.array(z.object({
|
|
786
|
+
path: z.string(),
|
|
787
|
+
urlCount: z.number(),
|
|
788
|
+
errors: z.number(),
|
|
789
|
+
warnings: z.number(),
|
|
790
|
+
isIndex: z.boolean().optional(),
|
|
791
|
+
lastSubmitted: z.string().nullable().optional(),
|
|
792
|
+
lastDownloaded: z.string().nullable().optional()
|
|
793
|
+
}).loose()),
|
|
794
|
+
history: z.array(z.object({
|
|
795
|
+
date: z.string(),
|
|
796
|
+
errors: z.number(),
|
|
797
|
+
warnings: z.number(),
|
|
798
|
+
urlCount: z.number(),
|
|
799
|
+
urlDelta: z.number()
|
|
800
|
+
}).loose()),
|
|
801
|
+
perSitemapHistory: z.record(z.string(), z.array(z.object({
|
|
802
|
+
date: z.string(),
|
|
803
|
+
urlCount: z.number(),
|
|
804
|
+
changed: z.boolean(),
|
|
805
|
+
urlDelta: z.number()
|
|
806
|
+
}).loose())),
|
|
787
807
|
meta: z.object({
|
|
788
808
|
siteUrl: z.string(),
|
|
789
809
|
syncStatus: z.string().nullable()
|
|
790
810
|
}).loose()
|
|
791
811
|
}).loose();
|
|
792
812
|
const gscdumpSitemapChangesResponseSchema = z.object({
|
|
793
|
-
added: z.array(
|
|
794
|
-
|
|
813
|
+
added: z.array(z.object({
|
|
814
|
+
url: z.string(),
|
|
815
|
+
sitemap: z.string(),
|
|
816
|
+
firstSeenAt: z.number()
|
|
817
|
+
}).loose()),
|
|
818
|
+
removed: z.array(z.object({
|
|
819
|
+
url: z.string(),
|
|
820
|
+
sitemap: z.string(),
|
|
821
|
+
removedAt: z.number()
|
|
822
|
+
}).loose()),
|
|
795
823
|
summary: z.object({
|
|
796
824
|
totalAdded: z.number(),
|
|
797
825
|
totalRemoved: z.number(),
|
|
@@ -1103,6 +1131,25 @@ const gscdumpQueryTrendResponseSchema = z.object({
|
|
|
1103
1131
|
syncStatus: z.string().nullable()
|
|
1104
1132
|
}).loose()
|
|
1105
1133
|
}).loose();
|
|
1134
|
+
const gscdumpPageTrendParamsSchema = z.object({
|
|
1135
|
+
startDate: z.string(),
|
|
1136
|
+
endDate: z.string(),
|
|
1137
|
+
prevStartDate: z.string().optional(),
|
|
1138
|
+
prevEndDate: z.string().optional(),
|
|
1139
|
+
searchType: searchTypeSchema.optional()
|
|
1140
|
+
});
|
|
1141
|
+
const gscdumpPageTrendResponseSchema = z.object({
|
|
1142
|
+
daily: z.array(z.object({
|
|
1143
|
+
date: z.string(),
|
|
1144
|
+
pageCount: z.number()
|
|
1145
|
+
}).loose()),
|
|
1146
|
+
total: z.number(),
|
|
1147
|
+
previousTotal: z.number().optional(),
|
|
1148
|
+
meta: z.object({
|
|
1149
|
+
siteUrl: z.string(),
|
|
1150
|
+
syncStatus: z.string().nullable()
|
|
1151
|
+
}).loose()
|
|
1152
|
+
}).loose();
|
|
1106
1153
|
const gscdumpDateRangeParamsSchema = z.object({
|
|
1107
1154
|
startDate: z.string(),
|
|
1108
1155
|
endDate: z.string()
|
|
@@ -1429,6 +1476,10 @@ const partnerEndpointSchemas = {
|
|
|
1429
1476
|
query: gscdumpQueryTrendParamsSchema,
|
|
1430
1477
|
response: gscdumpQueryTrendResponseSchema
|
|
1431
1478
|
},
|
|
1479
|
+
getPageTrend: {
|
|
1480
|
+
query: gscdumpPageTrendParamsSchema,
|
|
1481
|
+
response: gscdumpPageTrendResponseSchema
|
|
1482
|
+
},
|
|
1432
1483
|
getDateRangeInsight: {
|
|
1433
1484
|
query: gscdumpDateRangeParamsSchema,
|
|
1434
1485
|
response: unknownRecord
|
|
@@ -1458,4 +1509,4 @@ const partnerEndpointSchemas = {
|
|
|
1458
1509
|
realtimeEvent: { message: partnerRealtimeEventSchema },
|
|
1459
1510
|
webhook: { message: partnerWebhookEnvelopeSchema }
|
|
1460
1511
|
};
|
|
1461
|
-
export { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsNextActions, analyticsRoutes, analyticsStatuses, 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, gscdumpPermissionRecoverySchema, gscdumpQueryTrendParamsSchema, gscdumpQueryTrendResponseSchema, gscdumpSiteRegistrationSchema, gscdumpSiteReportResponseSchema, gscdumpSitemapChangesResponseSchema, gscdumpSitemapsResponseSchema, gscdumpSyncJobsResponseSchema, gscdumpSyncProgressResponseSchema, gscdumpTeamMemberRowSchema, gscdumpTeamRoleSchema, gscdumpTeamRowSchema, gscdumpTopAssociationParamsSchema, gscdumpTopAssociationResponseSchema, gscdumpTotalsSchema, gscdumpUserMeResponseSchema, gscdumpUserRegistrationSchema, gscdumpUserSettingsSchema, gscdumpUserSiteSchema, gscdumpUserStatusSchema, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
|
1512
|
+
export { CANONICAL_WEBHOOK_EVENTS, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, accountNextActions, accountStatuses, addPartnerTeamMemberSchema, analyticsNextActions, analyticsRoutes, analyticsStatuses, 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, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|