@gscdump/contracts 0.39.0 → 0.40.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/README.md +2 -2
- package/dist/_chunks/endpoints.d.mts +165 -29
- package/dist/_chunks/endpoints.mjs +2 -1
- package/dist/_chunks/routes.mjs +87 -0
- package/dist/_chunks/schemas.d.mts +612 -120
- package/dist/_chunks/schemas.mjs +193 -99
- package/dist/_chunks/types.d.mts +38 -159
- package/dist/analytics.d.mts +2 -2
- package/dist/analytics.mjs +2 -1
- package/dist/archetypes.d.mts +61 -1
- package/dist/archetypes.mjs +120 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +4 -4
- package/dist/partner.d.mts +2 -2
- package/dist/partner.mjs +2 -2
- package/dist/v1/index.d.mts +4988 -410
- package/dist/v1/index.mjs +1319 -138
- package/package.json +1 -1
- package/dist/_chunks/onboarding.mjs +0 -130
package/dist/_chunks/schemas.mjs
CHANGED
|
@@ -1,91 +1,133 @@
|
|
|
1
|
-
import { GSCDUMP_ONBOARDING_CONTRACT_VERSION, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, indexingNextActions, indexingStatuses, lifecycleErrorCodes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses } from "./onboarding.mjs";
|
|
2
1
|
import { z } from "zod";
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
2
|
+
const GSCDUMP_ONBOARDING_CONTRACT_VERSION = "2026-05-11";
|
|
3
|
+
const GSCDUMP_REQUIRED_ANALYTICS_SCOPE = "https://www.googleapis.com/auth/webmasters.readonly";
|
|
4
|
+
const GSCDUMP_WRITE_ANALYTICS_SCOPE = "https://www.googleapis.com/auth/webmasters";
|
|
5
|
+
const GSCDUMP_OPTIONAL_INDEXING_SCOPE = "https://www.googleapis.com/auth/indexing";
|
|
6
|
+
const accountStatuses = [
|
|
7
|
+
"disconnected",
|
|
8
|
+
"oauth_received",
|
|
9
|
+
"scope_missing",
|
|
10
|
+
"refresh_missing",
|
|
11
|
+
"db_provisioning",
|
|
12
|
+
"ready",
|
|
13
|
+
"reauth_required"
|
|
14
|
+
];
|
|
15
|
+
const accountNextActions = [
|
|
16
|
+
"connect_google",
|
|
17
|
+
"reconnect_google",
|
|
18
|
+
"wait_for_provisioning",
|
|
19
|
+
"none"
|
|
20
|
+
];
|
|
21
|
+
const propertyStatuses = [
|
|
22
|
+
"no_local_site",
|
|
23
|
+
"no_gsc_property",
|
|
24
|
+
"unverified_property",
|
|
25
|
+
"verified_candidate",
|
|
26
|
+
"registered",
|
|
27
|
+
"linked"
|
|
28
|
+
];
|
|
29
|
+
const propertyNextActions = [
|
|
30
|
+
"create_site",
|
|
31
|
+
"verify_gsc_property",
|
|
32
|
+
"choose_property",
|
|
33
|
+
"register_site",
|
|
34
|
+
"none"
|
|
35
|
+
];
|
|
36
|
+
const analyticsStatuses = [
|
|
37
|
+
"not_registered",
|
|
38
|
+
"queued",
|
|
39
|
+
"preparing",
|
|
40
|
+
"syncing",
|
|
41
|
+
"queryable_live",
|
|
42
|
+
"queryable_partial",
|
|
43
|
+
"ready",
|
|
44
|
+
"failed"
|
|
45
|
+
];
|
|
46
|
+
const analyticsNextActions = [
|
|
47
|
+
"wait_for_sync",
|
|
48
|
+
"retry_sync",
|
|
49
|
+
"none"
|
|
50
|
+
];
|
|
51
|
+
const querySourceModes = [
|
|
52
|
+
"none",
|
|
53
|
+
"live",
|
|
54
|
+
"d1",
|
|
55
|
+
"r2",
|
|
56
|
+
"mixed"
|
|
57
|
+
];
|
|
58
|
+
const sitemapStatuses = [
|
|
59
|
+
"unknown",
|
|
60
|
+
"discovering",
|
|
61
|
+
"none_found",
|
|
62
|
+
"auto_submitted",
|
|
63
|
+
"syncing",
|
|
64
|
+
"ready",
|
|
65
|
+
"failed"
|
|
66
|
+
];
|
|
67
|
+
const sitemapNextActions = [
|
|
68
|
+
"submit_sitemap",
|
|
69
|
+
"wait_for_sitemaps",
|
|
70
|
+
"retry_sitemaps",
|
|
71
|
+
"none"
|
|
72
|
+
];
|
|
73
|
+
const indexingStatuses = [
|
|
74
|
+
"not_requested",
|
|
75
|
+
"missing_scope",
|
|
76
|
+
"insufficient_permission",
|
|
77
|
+
"waiting_for_sitemaps",
|
|
78
|
+
"discovering",
|
|
79
|
+
"checking",
|
|
80
|
+
"ready",
|
|
81
|
+
"budget_exhausted",
|
|
82
|
+
"no_urls",
|
|
83
|
+
"failed"
|
|
84
|
+
];
|
|
85
|
+
const indexingNextActions = [
|
|
86
|
+
"reconnect_google",
|
|
87
|
+
"fix_gsc_permission",
|
|
88
|
+
"wait_for_sitemaps",
|
|
89
|
+
"wait_for_indexing",
|
|
90
|
+
"retry_indexing",
|
|
91
|
+
"none"
|
|
92
|
+
];
|
|
93
|
+
const lifecycleWebhookEvents = [
|
|
94
|
+
"user.lifecycle.changed",
|
|
95
|
+
"site.lifecycle.changed",
|
|
96
|
+
"site.analytics.ready",
|
|
97
|
+
"site.indexing.ready",
|
|
98
|
+
"site.auth.failed",
|
|
99
|
+
"job.failed"
|
|
100
|
+
];
|
|
101
|
+
const lifecycleErrorCodes = [
|
|
102
|
+
"missing_refresh_token",
|
|
103
|
+
"missing_analytics_scope",
|
|
104
|
+
"missing_indexing_scope",
|
|
105
|
+
"token_refresh_failed",
|
|
106
|
+
"permission_lost",
|
|
107
|
+
"insufficient_gsc_permission",
|
|
108
|
+
"gsc_property_not_found",
|
|
109
|
+
"gsc_property_unverified",
|
|
110
|
+
"user_database_not_provisioned",
|
|
111
|
+
"sync_failed",
|
|
112
|
+
"sitemap_sync_failed",
|
|
113
|
+
"indexing_failed"
|
|
114
|
+
];
|
|
115
|
+
function parseGrantedScopes(scopes) {
|
|
116
|
+
if (!scopes) return [];
|
|
117
|
+
if (typeof scopes === "string") return scopes.split(/\s+/).map((scope) => scope.trim()).filter(Boolean);
|
|
118
|
+
return scopes.map((scope) => scope.trim()).filter(Boolean);
|
|
119
|
+
}
|
|
120
|
+
function hasGoogleScope(scopes, scope) {
|
|
121
|
+
const granted = parseGrantedScopes(scopes);
|
|
122
|
+
const suffix = scope.replace("https://www.googleapis.com/auth/", "");
|
|
123
|
+
return granted.includes(scope) || granted.includes(suffix);
|
|
124
|
+
}
|
|
125
|
+
function hasRequiredAnalyticsScope(scopes) {
|
|
126
|
+
return hasGoogleScope(scopes, "https://www.googleapis.com/auth/webmasters.readonly") || hasGoogleScope(scopes, "https://www.googleapis.com/auth/webmasters");
|
|
127
|
+
}
|
|
128
|
+
function hasOptionalIndexingScope(scopes) {
|
|
129
|
+
return hasGoogleScope(scopes, GSCDUMP_OPTIONAL_INDEXING_SCOPE);
|
|
130
|
+
}
|
|
89
131
|
const WEBHOOK_CONTRACT_VERSION = "2026-05-11";
|
|
90
132
|
const WEBHOOK_SIGNATURE_HEADER = "X-GSCDump-Signature";
|
|
91
133
|
const WEBHOOK_EVENT_HEADER = "X-GSCDump-Event";
|
|
@@ -383,7 +425,7 @@ const gscdumpMetaSchema = z.object({
|
|
|
383
425
|
syncStatus: z.string(),
|
|
384
426
|
newestDateSynced: z.string().nullable(),
|
|
385
427
|
oldestDateSynced: z.string().nullable(),
|
|
386
|
-
dataDelay: z.string(),
|
|
428
|
+
dataDelay: z.string().optional(),
|
|
387
429
|
dataEndDate: z.string().nullable().optional(),
|
|
388
430
|
warnings: z.array(z.string()).optional(),
|
|
389
431
|
enrichment: z.object({
|
|
@@ -415,6 +457,13 @@ const gscdumpDataDetailResponseSchema = z.object({
|
|
|
415
457
|
ctr: z.number(),
|
|
416
458
|
position: z.number()
|
|
417
459
|
}).loose()),
|
|
460
|
+
previousDaily: z.array(z.object({
|
|
461
|
+
date: z.string(),
|
|
462
|
+
clicks: z.number(),
|
|
463
|
+
impressions: z.number(),
|
|
464
|
+
ctr: z.number(),
|
|
465
|
+
position: z.number()
|
|
466
|
+
}).loose()).optional(),
|
|
418
467
|
totals: gscdumpTotalsSchema,
|
|
419
468
|
previousTotals: gscdumpTotalsSchema.optional(),
|
|
420
469
|
meta: gscdumpMetaSchema
|
|
@@ -567,9 +616,14 @@ const gscdumpSiteRegistrationSchema = z.object({
|
|
|
567
616
|
message: z.string().optional(),
|
|
568
617
|
existing: z.boolean().optional(),
|
|
569
618
|
indexingEligible: z.boolean().optional(),
|
|
570
|
-
indexingIneligibleReason: z.enum([
|
|
619
|
+
indexingIneligibleReason: z.enum([
|
|
620
|
+
"free_plan",
|
|
621
|
+
"missing_indexing_scope",
|
|
622
|
+
"insufficient_gsc_permission"
|
|
623
|
+
]).optional(),
|
|
571
624
|
indexingPermissionLevel: z.string().nullable().optional(),
|
|
572
|
-
grantedScopes: z.array(z.string()).optional()
|
|
625
|
+
grantedScopes: z.array(z.string()).optional(),
|
|
626
|
+
site: partnerLifecycleSiteSchema.nullable().optional()
|
|
573
627
|
}).loose();
|
|
574
628
|
const registerPartnerSiteSchema = z.object({
|
|
575
629
|
userId: z.string(),
|
|
@@ -611,7 +665,11 @@ const bulkRegisterPartnerSitesResponseSchema = z.object({
|
|
|
611
665
|
error: z.string().optional(),
|
|
612
666
|
site: unknownRecord.nullable().optional(),
|
|
613
667
|
indexingEligible: z.boolean().optional(),
|
|
614
|
-
indexingIneligibleReason: z.enum([
|
|
668
|
+
indexingIneligibleReason: z.enum([
|
|
669
|
+
"free_plan",
|
|
670
|
+
"missing_indexing_scope",
|
|
671
|
+
"insufficient_gsc_permission"
|
|
672
|
+
]).optional(),
|
|
615
673
|
indexingPermissionLevel: z.string().nullable().optional(),
|
|
616
674
|
grantedScopes: z.array(z.string()).optional()
|
|
617
675
|
}).loose()),
|
|
@@ -652,8 +710,7 @@ const gscdumpAnalysisPresetSchema = z.enum([
|
|
|
652
710
|
"movers-rising",
|
|
653
711
|
"movers-declining"
|
|
654
712
|
]);
|
|
655
|
-
const
|
|
656
|
-
preset: gscdumpAnalysisPresetSchema,
|
|
713
|
+
const gscdumpAnalysisBaseParamsSchema = z.object({
|
|
657
714
|
startDate: z.string(),
|
|
658
715
|
endDate: z.string(),
|
|
659
716
|
prevStartDate: z.string().optional(),
|
|
@@ -667,19 +724,52 @@ const gscdumpAnalysisParamsSchema = z.object({
|
|
|
667
724
|
maxPosition: z.number().optional(),
|
|
668
725
|
maxCtr: z.number().optional(),
|
|
669
726
|
searchType: searchTypeSchema.optional()
|
|
670
|
-
})
|
|
727
|
+
});
|
|
728
|
+
const gscdumpAnalysisParamsSchema = gscdumpAnalysisBaseParamsSchema.extend({ preset: gscdumpAnalysisPresetSchema }).superRefine((value, ctx) => {
|
|
671
729
|
if ((value.preset === "brand-only" || value.preset === "non-brand") && !value.brandTerms?.trim()) ctx.addIssue({
|
|
672
730
|
code: "custom",
|
|
673
731
|
path: ["brandTerms"],
|
|
674
732
|
message: "brandTerms is required for brand/non-brand presets"
|
|
675
733
|
});
|
|
676
734
|
});
|
|
735
|
+
const gscdumpAnalysisBundleParamsSchema = gscdumpAnalysisBaseParamsSchema.extend({ presets: z.array(gscdumpAnalysisPresetSchema).min(1).max(8) }).superRefine((value, ctx) => {
|
|
736
|
+
if (value.presets.some((preset) => preset === "brand-only" || preset === "non-brand") && !value.brandTerms?.trim()) ctx.addIssue({
|
|
737
|
+
code: "custom",
|
|
738
|
+
path: ["brandTerms"],
|
|
739
|
+
message: "brandTerms is required for brand/non-brand presets"
|
|
740
|
+
});
|
|
741
|
+
if (value.presets.some((preset) => preset === "movers-rising" || preset === "movers-declining" || preset === "decay") && (!value.prevStartDate || !value.prevEndDate)) ctx.addIssue({
|
|
742
|
+
code: "custom",
|
|
743
|
+
path: ["prevStartDate"],
|
|
744
|
+
message: "prevStartDate and prevEndDate are required for comparison presets"
|
|
745
|
+
});
|
|
746
|
+
});
|
|
747
|
+
const gscdumpAnalysisMetaSchema = z.object({
|
|
748
|
+
siteUrl: z.string(),
|
|
749
|
+
params: z.object({
|
|
750
|
+
brandTerms: z.array(z.string()).optional(),
|
|
751
|
+
startDate: z.string().optional(),
|
|
752
|
+
endDate: z.string().optional(),
|
|
753
|
+
prevStartDate: z.string().optional(),
|
|
754
|
+
prevEndDate: z.string().optional()
|
|
755
|
+
}),
|
|
756
|
+
presetDescription: z.string().optional()
|
|
757
|
+
}).loose();
|
|
677
758
|
const gscdumpAnalysisResponseSchema = z.object({
|
|
678
759
|
preset: gscdumpAnalysisPresetSchema,
|
|
679
760
|
keywords: z.array(unknownRecord),
|
|
680
761
|
totalCount: z.number(),
|
|
681
|
-
summary: unknownRecord.optional(),
|
|
682
|
-
meta:
|
|
762
|
+
summary: unknownRecord.nullable().optional(),
|
|
763
|
+
meta: gscdumpAnalysisMetaSchema
|
|
764
|
+
}).loose();
|
|
765
|
+
const gscdumpAnalysisBundleResponseSchema = z.object({
|
|
766
|
+
bundle: z.record(z.string(), z.object({
|
|
767
|
+
keywords: z.array(unknownRecord),
|
|
768
|
+
totalCount: z.number(),
|
|
769
|
+
summary: unknownRecord.nullable().optional(),
|
|
770
|
+
presetDescription: z.string()
|
|
771
|
+
})),
|
|
772
|
+
meta: gscdumpAnalysisMetaSchema
|
|
683
773
|
}).loose();
|
|
684
774
|
const gscdumpSitemapsResponseSchema = z.object({
|
|
685
775
|
sitemaps: z.array(z.object({
|
|
@@ -688,8 +778,11 @@ const gscdumpSitemapsResponseSchema = z.object({
|
|
|
688
778
|
errors: z.number(),
|
|
689
779
|
warnings: z.number(),
|
|
690
780
|
isIndex: z.boolean().optional(),
|
|
691
|
-
|
|
692
|
-
lastDownloaded: z.string().nullable().optional()
|
|
781
|
+
contentHash: z.string().nullable().optional(),
|
|
782
|
+
lastDownloaded: z.string().nullable().optional(),
|
|
783
|
+
lastError: z.string().nullable().optional(),
|
|
784
|
+
isPending: z.boolean().optional(),
|
|
785
|
+
fetchedAt: z.number().nullable().optional()
|
|
693
786
|
}).loose()),
|
|
694
787
|
history: z.array(z.object({
|
|
695
788
|
date: z.string(),
|
|
@@ -706,6 +799,7 @@ const gscdumpSitemapsResponseSchema = z.object({
|
|
|
706
799
|
}).loose())),
|
|
707
800
|
meta: z.object({
|
|
708
801
|
siteUrl: z.string(),
|
|
802
|
+
gscPropertyUrl: z.string(),
|
|
709
803
|
syncStatus: z.string().nullable()
|
|
710
804
|
}).loose()
|
|
711
805
|
}).loose();
|
|
@@ -1504,4 +1598,4 @@ const partnerEndpointSchemas = {
|
|
|
1504
1598
|
...analyticsEndpointSchemas,
|
|
1505
1599
|
...partnerControlEndpointSchemas
|
|
1506
1600
|
};
|
|
1507
|
-
export { CANONICAL_WEBHOOK_EVENTS, VALID_WEBHOOK_EVENTS, WEBHOOK_CONTRACT_VERSION, WEBHOOK_CONTRACT_VERSION_HEADER, WEBHOOK_DELIVERY_HEADER, WEBHOOK_EVENT_HEADER, WEBHOOK_SIGNATURE_HEADER, WEBHOOK_TIMESTAMP_HEADER, addPartnerTeamMemberSchema, analyticsEndpointSchemas,
|
|
1601
|
+
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, analyticsEndpointSchemas, analyticsNextActions, analyticsStatuses, backfillRangeSchema, backfillResponseSchema, bindPartnerSiteTeamSchema, builderStateSchema, bulkRegisterPartnerSitesResponseSchema, bulkRegisterPartnerSitesSchema, canonicalWebhookEventTypeSchema, countriesResponseSchema, countryRowSchema, createPartnerTeamSchema, dataDetailOptionsSchema, dataQueryOptionsSchema, gscApiRangeSchema, gscComparisonFilterSchema, gscRowQueryMetaSchema, gscRowQueryResponseSchema, gscdumpAnalysisBaseParamsSchema, gscdumpAnalysisBundleParamsSchema, gscdumpAnalysisBundleResponseSchema, gscdumpAnalysisMetaSchema, 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, indexingDiagnosticsParamsSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingNextActions, indexingStatuses, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorCodes, lifecycleErrorSchema, lifecycleProgressSchema, lifecycleWebhookEvents, parseGrantedScopes, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, propertyNextActions, propertyStatuses, querySourceModes, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sitemapNextActions, sitemapStatuses, sourceInfoResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
|
package/dist/_chunks/types.d.mts
CHANGED
|
@@ -657,7 +657,7 @@ interface GscdumpMeta {
|
|
|
657
657
|
syncStatus: string;
|
|
658
658
|
newestDateSynced: string | null;
|
|
659
659
|
oldestDateSynced: string | null;
|
|
660
|
-
dataDelay
|
|
660
|
+
dataDelay?: string;
|
|
661
661
|
dataEndDate?: string | null;
|
|
662
662
|
warnings?: string[];
|
|
663
663
|
enrichment?: {
|
|
@@ -689,6 +689,13 @@ interface GscdumpDataDetailResponse {
|
|
|
689
689
|
ctr: number;
|
|
690
690
|
position: number;
|
|
691
691
|
}>;
|
|
692
|
+
previousDaily?: Array<{
|
|
693
|
+
date: string;
|
|
694
|
+
clicks: number;
|
|
695
|
+
impressions: number;
|
|
696
|
+
ctr: number;
|
|
697
|
+
position: number;
|
|
698
|
+
}>;
|
|
692
699
|
totals: GscdumpTotals;
|
|
693
700
|
previousTotals?: GscdumpTotals;
|
|
694
701
|
meta: GscdumpMeta;
|
|
@@ -722,7 +729,7 @@ interface GscdumpAvailableSite {
|
|
|
722
729
|
siteId?: string;
|
|
723
730
|
/** Integer alias (`user_sites.int_id`) — the int JOIN key partners denormalize into their own catalog namespaces. Present on registered sites. */
|
|
724
731
|
intId?: number | null;
|
|
725
|
-
syncStatus?: 'pending' | 'syncing' | 'synced' | 'error';
|
|
732
|
+
syncStatus?: 'pending' | 'syncing' | 'synced' | 'error' | null;
|
|
726
733
|
syncProgress?: {
|
|
727
734
|
completed: number;
|
|
728
735
|
failed?: number;
|
|
@@ -743,9 +750,10 @@ interface GscdumpSiteRegistration {
|
|
|
743
750
|
message?: string;
|
|
744
751
|
existing?: boolean;
|
|
745
752
|
indexingEligible?: boolean;
|
|
746
|
-
indexingIneligibleReason?: 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
753
|
+
indexingIneligibleReason?: 'free_plan' | 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
747
754
|
indexingPermissionLevel?: string | null;
|
|
748
755
|
grantedScopes?: string[];
|
|
756
|
+
site?: PartnerLifecycleSite | null;
|
|
749
757
|
}
|
|
750
758
|
interface GscdumpUserSite {
|
|
751
759
|
siteId: string;
|
|
@@ -765,7 +773,7 @@ interface GscdumpUserSite {
|
|
|
765
773
|
percent: number;
|
|
766
774
|
};
|
|
767
775
|
indexingEligible?: boolean;
|
|
768
|
-
indexingIneligibleReason?: 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
776
|
+
indexingIneligibleReason?: 'free_plan' | 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
769
777
|
indexingPermissionLevel?: string | null;
|
|
770
778
|
grantedScopes?: string[];
|
|
771
779
|
indexingStatus?: 'not_started' | 'indexing' | 'complete';
|
|
@@ -1033,8 +1041,30 @@ interface GscdumpAnalysisResponse {
|
|
|
1033
1041
|
preset: GscdumpAnalysisPreset;
|
|
1034
1042
|
keywords: Array<Record<string, unknown>>;
|
|
1035
1043
|
totalCount: number;
|
|
1036
|
-
summary?: Record<string, unknown
|
|
1037
|
-
meta:
|
|
1044
|
+
summary?: Record<string, unknown> | null;
|
|
1045
|
+
meta: {
|
|
1046
|
+
siteUrl: string;
|
|
1047
|
+
params: {
|
|
1048
|
+
brandTerms?: string[];
|
|
1049
|
+
startDate?: string;
|
|
1050
|
+
endDate?: string;
|
|
1051
|
+
prevStartDate?: string;
|
|
1052
|
+
prevEndDate?: string;
|
|
1053
|
+
};
|
|
1054
|
+
presetDescription?: string;
|
|
1055
|
+
};
|
|
1056
|
+
}
|
|
1057
|
+
interface GscdumpAnalysisBundleParams extends Omit<GscdumpAnalysisParams, 'preset'> {
|
|
1058
|
+
presets: GscdumpAnalysisPreset[];
|
|
1059
|
+
}
|
|
1060
|
+
interface GscdumpAnalysisBundleResponse {
|
|
1061
|
+
bundle: Record<string, {
|
|
1062
|
+
keywords: Array<Record<string, unknown>>;
|
|
1063
|
+
totalCount: number;
|
|
1064
|
+
summary?: Record<string, unknown> | null;
|
|
1065
|
+
presetDescription: string;
|
|
1066
|
+
}>;
|
|
1067
|
+
meta: GscdumpAnalysisResponse['meta'];
|
|
1038
1068
|
}
|
|
1039
1069
|
interface RegisterPartnerUserParams {
|
|
1040
1070
|
userGoogleId: string;
|
|
@@ -1083,7 +1113,7 @@ interface BulkRegisterPartnerSiteResult {
|
|
|
1083
1113
|
error?: string;
|
|
1084
1114
|
site?: PartnerLifecycleSite | null;
|
|
1085
1115
|
indexingEligible?: boolean;
|
|
1086
|
-
indexingIneligibleReason?: 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
1116
|
+
indexingIneligibleReason?: 'free_plan' | 'missing_indexing_scope' | 'insufficient_gsc_permission';
|
|
1087
1117
|
indexingPermissionLevel?: string | null;
|
|
1088
1118
|
grantedScopes?: string[];
|
|
1089
1119
|
}
|
|
@@ -1568,157 +1598,6 @@ interface PartnerClient {
|
|
|
1568
1598
|
teamId: string | null;
|
|
1569
1599
|
}>;
|
|
1570
1600
|
}
|
|
1571
|
-
type PartnerRealtimeEventType = 'sync.progress' | 'sync.complete' | 'sync.job_complete' | 'sync.site_complete' | 'sync.failed' | 'job.failed' | 'auth.failed' | 'auth.needs_reauth' | 'site.added' | 'site.removed' | 'enrichment.complete' | 'sitemap.progress' | 'sitemap.complete' | 'indexing.progress' | 'indexing.complete';
|
|
1572
|
-
interface RealtimeSyncProgressEvent {
|
|
1573
|
-
event: 'sync.progress';
|
|
1574
|
-
siteId: string;
|
|
1575
|
-
siteUrl: string;
|
|
1576
|
-
table: string;
|
|
1577
|
-
date: string;
|
|
1578
|
-
progress: number;
|
|
1579
|
-
}
|
|
1580
|
-
interface RealtimeSyncCompleteEvent {
|
|
1581
|
-
event: 'sync.complete';
|
|
1582
|
-
userId: number;
|
|
1583
|
-
siteId: string;
|
|
1584
|
-
siteUrl: string;
|
|
1585
|
-
table: string;
|
|
1586
|
-
date: string;
|
|
1587
|
-
rowsFetched: number;
|
|
1588
|
-
rowsInserted: number;
|
|
1589
|
-
timestamp: number;
|
|
1590
|
-
}
|
|
1591
|
-
interface RealtimeSyncJobCompleteEvent {
|
|
1592
|
-
event: 'sync.job_complete';
|
|
1593
|
-
userId: number;
|
|
1594
|
-
siteId: string;
|
|
1595
|
-
siteUrl: string;
|
|
1596
|
-
table: string;
|
|
1597
|
-
date: string;
|
|
1598
|
-
rowsFetched: number;
|
|
1599
|
-
rowsInserted: number;
|
|
1600
|
-
syncStatus: string;
|
|
1601
|
-
timestamp: number;
|
|
1602
|
-
}
|
|
1603
|
-
interface RealtimeSyncSiteCompleteEvent {
|
|
1604
|
-
event: 'sync.site_complete';
|
|
1605
|
-
userId: number;
|
|
1606
|
-
siteId: string;
|
|
1607
|
-
siteUrl: string;
|
|
1608
|
-
syncStatus: string;
|
|
1609
|
-
timestamp: number;
|
|
1610
|
-
}
|
|
1611
|
-
interface RealtimeSyncFailedEvent {
|
|
1612
|
-
event: 'sync.failed';
|
|
1613
|
-
userId: number;
|
|
1614
|
-
siteId: string;
|
|
1615
|
-
siteUrl: string;
|
|
1616
|
-
table: string;
|
|
1617
|
-
date: string;
|
|
1618
|
-
error: string;
|
|
1619
|
-
timestamp: number;
|
|
1620
|
-
}
|
|
1621
|
-
interface RealtimeJobFailedEvent {
|
|
1622
|
-
event: 'job.failed';
|
|
1623
|
-
siteId: string;
|
|
1624
|
-
siteUrl: string;
|
|
1625
|
-
table: string;
|
|
1626
|
-
date: string;
|
|
1627
|
-
error: string;
|
|
1628
|
-
timestamp: number;
|
|
1629
|
-
}
|
|
1630
|
-
interface RealtimeSiteAddedEvent {
|
|
1631
|
-
event: 'site.added';
|
|
1632
|
-
userId: number;
|
|
1633
|
-
siteId: string;
|
|
1634
|
-
siteUrl: string;
|
|
1635
|
-
}
|
|
1636
|
-
interface RealtimeSiteRemovedEvent {
|
|
1637
|
-
event: 'site.removed';
|
|
1638
|
-
userId: number;
|
|
1639
|
-
siteId: string;
|
|
1640
|
-
siteUrl: string;
|
|
1641
|
-
}
|
|
1642
|
-
interface RealtimeAuthFailedEvent {
|
|
1643
|
-
event: 'auth.failed';
|
|
1644
|
-
userId: number;
|
|
1645
|
-
siteId: string;
|
|
1646
|
-
siteUrl: string;
|
|
1647
|
-
error: string;
|
|
1648
|
-
timestamp: number;
|
|
1649
|
-
}
|
|
1650
|
-
interface RealtimeNeedsReauthEvent {
|
|
1651
|
-
event: 'auth.needs_reauth';
|
|
1652
|
-
userId: number;
|
|
1653
|
-
failureCount: number;
|
|
1654
|
-
timestamp: number;
|
|
1655
|
-
}
|
|
1656
|
-
interface RealtimeEnrichmentCompleteEvent {
|
|
1657
|
-
event: 'enrichment.complete';
|
|
1658
|
-
siteId: string;
|
|
1659
|
-
userId: number;
|
|
1660
|
-
timestamp: number;
|
|
1661
|
-
}
|
|
1662
|
-
interface RealtimeSitemapProgressEvent {
|
|
1663
|
-
event: 'sitemap.progress';
|
|
1664
|
-
userId: number;
|
|
1665
|
-
siteId: string;
|
|
1666
|
-
siteUrl: string;
|
|
1667
|
-
discovered: number;
|
|
1668
|
-
total: number;
|
|
1669
|
-
progress: number;
|
|
1670
|
-
}
|
|
1671
|
-
interface RealtimeSitemapCompleteEvent {
|
|
1672
|
-
event: 'sitemap.complete';
|
|
1673
|
-
userId: number;
|
|
1674
|
-
siteId: string;
|
|
1675
|
-
siteUrl: string;
|
|
1676
|
-
discoveredCount: number;
|
|
1677
|
-
timestamp: number;
|
|
1678
|
-
}
|
|
1679
|
-
interface RealtimeIndexingProgressEvent {
|
|
1680
|
-
event: 'indexing.progress';
|
|
1681
|
-
userId: number;
|
|
1682
|
-
siteId: string;
|
|
1683
|
-
siteUrl: string;
|
|
1684
|
-
checked: number;
|
|
1685
|
-
total: number;
|
|
1686
|
-
progress: number;
|
|
1687
|
-
}
|
|
1688
|
-
interface RealtimeIndexingCompleteEvent {
|
|
1689
|
-
event: 'indexing.complete';
|
|
1690
|
-
userId: number;
|
|
1691
|
-
siteId: string;
|
|
1692
|
-
siteUrl: string;
|
|
1693
|
-
totalUrls: number;
|
|
1694
|
-
indexedCount: number;
|
|
1695
|
-
timestamp: number;
|
|
1696
|
-
}
|
|
1697
|
-
type PartnerRealtimeEvent = RealtimeSyncProgressEvent | RealtimeSyncCompleteEvent | RealtimeSyncJobCompleteEvent | RealtimeSyncSiteCompleteEvent | RealtimeSyncFailedEvent | RealtimeJobFailedEvent | RealtimeSiteAddedEvent | RealtimeSiteRemovedEvent | RealtimeAuthFailedEvent | RealtimeNeedsReauthEvent | RealtimeEnrichmentCompleteEvent | RealtimeSitemapProgressEvent | RealtimeSitemapCompleteEvent | RealtimeIndexingProgressEvent | RealtimeIndexingCompleteEvent;
|
|
1698
|
-
interface RealtimeAuthRequiredMessage {
|
|
1699
|
-
event: 'auth.required';
|
|
1700
|
-
message: string;
|
|
1701
|
-
}
|
|
1702
|
-
interface RealtimeConnectedMessage {
|
|
1703
|
-
event: 'connected';
|
|
1704
|
-
partnerId?: string;
|
|
1705
|
-
userId?: number;
|
|
1706
|
-
message: string;
|
|
1707
|
-
}
|
|
1708
|
-
interface RealtimeSubscribedMessage {
|
|
1709
|
-
type: 'subscribed';
|
|
1710
|
-
siteIds?: string[];
|
|
1711
|
-
partnerIds?: string[];
|
|
1712
|
-
}
|
|
1713
|
-
interface RealtimePongMessage {
|
|
1714
|
-
type: 'pong';
|
|
1715
|
-
timestamp: number;
|
|
1716
|
-
}
|
|
1717
|
-
interface RealtimeErrorMessage {
|
|
1718
|
-
type: 'error';
|
|
1719
|
-
message: string;
|
|
1720
|
-
}
|
|
1721
|
-
type PartnerRealtimeMessage = PartnerRealtimeEvent | RealtimeAuthRequiredMessage | RealtimeConnectedMessage | RealtimeSubscribedMessage | RealtimePongMessage | RealtimeErrorMessage;
|
|
1722
1601
|
type CanonicalWebhookEventType = 'user.lifecycle.changed' | 'site.lifecycle.changed' | 'site.analytics.ready' | 'site.indexing.ready' | 'site.auth.failed' | 'job.failed';
|
|
1723
1602
|
type WebhookEventType = CanonicalWebhookEventType;
|
|
1724
1603
|
interface WebhookEnvelope<TData extends Record<string, unknown> = Record<string, unknown>> {
|
|
@@ -1755,4 +1634,4 @@ interface PartnerWebhookHeaders {
|
|
|
1755
1634
|
timestamp?: string | null;
|
|
1756
1635
|
signature?: string | null;
|
|
1757
1636
|
}
|
|
1758
|
-
export { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, FileResolutionRequest, FileResolutionResponse, FileResolutionTable, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingDiagnosticsParams, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite,
|
|
1637
|
+
export { AccountNextAction, AccountStatus, AddPartnerTeamMemberParams, AnalysisSourcesOptions, AnalysisSourcesResponse, AnalyticsClient, AnalyticsNextAction, AnalyticsStatus, BackfillRange, BackfillResponse, BindPartnerSiteTeamParams, BuilderState, BulkRegisterPartnerSiteResult, BulkRegisterPartnerSitesParams, BulkRegisterPartnerSitesResponse, CanonicalWebhookEventType, ColumnDef, ColumnType, CountriesResponse, CountryRow, CreatePartnerTeamParams, CreateWebhookEnvelopeOptions, DataDetailOptions, DataQueryOptions, DeletePartnerUserResponse, Dimension, FileResolutionRequest, FileResolutionResponse, FileResolutionTable, Filter, GSCDUMP_ONBOARDING_CONTRACT_VERSION, GSCDUMP_OPTIONAL_INDEXING_SCOPE, GSCDUMP_REQUIRED_ANALYTICS_SCOPE, GSCDUMP_WRITE_ANALYTICS_SCOPE, Grain, GscApiRange, GscComparisonFilter, GscRowQueryMeta, GscRowQueryResponse, GscSearchType, GscdumpAnalysisBundleParams, GscdumpAnalysisBundleResponse, GscdumpAnalysisParams, GscdumpAnalysisPreset, GscdumpAnalysisResponse, GscdumpAnalysisSourcesResponse, GscdumpAvailableSite, GscdumpCanonicalMismatchRow, GscdumpCanonicalMismatchesResponse, GscdumpDataDetailResponse, GscdumpDataResponse, GscdumpDataRow, GscdumpDateRangeParams, GscdumpHealthResponse, GscdumpIndexPercentResponse, GscdumpIndexPercentSitemap, GscdumpIndexPercentTrendPoint, GscdumpIndexingDiagnosticsResponse, GscdumpIndexingInspectRateLimited, GscdumpIndexingInspectRequest, GscdumpIndexingInspectResponse, GscdumpIndexingInspectResult, GscdumpIndexingIssueSeverity, GscdumpIndexingResponse, GscdumpIndexingTrendPoint, GscdumpIndexingUrl, GscdumpIndexingUrlStatus, GscdumpIndexingUrlsResponse, GscdumpInvisibleUrlRow, GscdumpKeywordSparklinesParams, GscdumpKeywordSparklinesResponse, GscdumpMeta, GscdumpOrphanPageRow, GscdumpPageTrendParams, GscdumpPageTrendResponse, GscdumpPerSitemapHistoryEntry, GscdumpPermissionRecovery, GscdumpQueryTrendParams, GscdumpQueryTrendResponse, GscdumpRichResultItem, GscdumpSiteRegistration, GscdumpSiteReportResponse, GscdumpSitemap, GscdumpSitemapChangesResponse, GscdumpSitemapHistory, GscdumpSitemapsResponse, GscdumpSyncJobItem, GscdumpSyncJobStatus, GscdumpSyncJobsQueueCounts, GscdumpSyncJobsResponse, GscdumpSyncProgressDateStatus, GscdumpSyncProgressPhaseCounts, GscdumpSyncProgressResponse, GscdumpSyncProgressSite, GscdumpSyncStatusResponse, GscdumpTeamMemberRow, GscdumpTeamRow, GscdumpTopAssociationParams, GscdumpTopAssociationResponse, GscdumpTotals, GscdumpUserMeResponse, GscdumpUserRegistration, GscdumpUserSettings, GscdumpUserSite, GscdumpUserStatus, GscdumpUserTokenUpdate, IndexingDiagnostics, IndexingDiagnosticsParams, IndexingInspectRateLimit, IndexingInspectRateLimited, IndexingInspectRequest, IndexingInspectResponse, IndexingInspectResult, IndexingIssue, IndexingIssueSeverity, IndexingNextAction, IndexingStatus, IndexingUrlRow, IndexingUrlStatus, IndexingUrlsParams, IndexingUrlsResponse, InspectionHistoryRecord, InspectionHistoryResponse, InspectionIndex, InspectionRecordRaw, LifecycleError, LifecycleErrorCode, LifecycleProgress, LifecycleWebhookEnvelope, LifecycleWebhookEvent, Metric, PartnerClient, PartnerLifecycleAccount, PartnerLifecycleResponse, PartnerLifecycleSite, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RegisterPartnerSiteParams, RegisterPartnerUserParams, ResolvedParquetFile, ResolvedTable, RollupEnvelope, Row, ScheduleState, SearchAppearanceResponse, SearchAppearanceRow, SearchTypeOptions, ServerTailDirective, SiteListItem, SitemapAddedRow, SitemapChangesResponse, SitemapHistoryRecord, SitemapHistoryResponse, SitemapIndex, SitemapNextAction, SitemapRemovedRow, SitemapStatus, SourceInfoOptions, SourceInfoResponse, TableName, TableSchema, TenantCtx, UpdatePartnerUserTokensParams, WebhookEnvelope, WebhookEventType, WhoamiResponse, accountNextActions, accountStatuses, analyticsNextActions, analyticsStatuses, hasOptionalIndexingScope, hasRequiredAnalyticsScope, indexingNextActions, indexingStatuses, lifecycleErrorCodes, lifecycleWebhookEvents, parseGrantedScopes, propertyNextActions, propertyStatuses, querySourceModes, sitemapNextActions, sitemapStatuses };
|