@gscdump/contracts 0.39.0 → 0.40.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.
@@ -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 partnerRoutes = {
4
- partner: {
5
- users: {
6
- byId: (userId) => `/partner/users/${encodeURIComponent(userId)}`,
7
- lifecycle: (userId) => `/partner/users/${encodeURIComponent(userId)}/lifecycle`,
8
- siteTeam: (userId, siteId) => `/partner/users/${encodeURIComponent(userId)}/sites/${encodeURIComponent(siteId)}`
9
- },
10
- sites: {
11
- register: "/partner/sites/register",
12
- bulkRegister: "/partner/sites/bulk-register"
13
- }
14
- },
15
- users: {
16
- register: "/users/register",
17
- tokens: (userId) => `/users/${encodeURIComponent(userId)}/tokens`,
18
- status: (userId) => `/users/${encodeURIComponent(userId)}/status`,
19
- lifecycle: (userId) => `/users/${encodeURIComponent(userId)}/lifecycle`,
20
- sites: (userId) => `/users/${encodeURIComponent(userId)}/sites`,
21
- availableSites: (userId) => `/users/${encodeURIComponent(userId)}/available-sites`,
22
- siteTeam: (userId, siteId) => `/partner/users/${encodeURIComponent(userId)}/sites/${encodeURIComponent(siteId)}`
23
- },
24
- sites: {
25
- register: "/sites/register",
26
- bulkRegister: "/sites/bulk-register",
27
- byId: (siteId) => `/sites/${encodeURIComponent(siteId)}`,
28
- analysisSources: (siteId) => `/sites/${encodeURIComponent(siteId)}/analysis-sources`,
29
- syncStatus: (siteId) => `/sites/${encodeURIComponent(siteId)}/sync-status`,
30
- data: (siteId) => `/sites/${encodeURIComponent(siteId)}/data`,
31
- dataDetail: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/detail`,
32
- analysis: (siteId) => `/sites/${encodeURIComponent(siteId)}/analysis`,
33
- sitemaps: (siteId) => `/sites/${encodeURIComponent(siteId)}/sitemaps`,
34
- sitemapChanges: (siteId) => `/sites/${encodeURIComponent(siteId)}/sitemaps/changes`,
35
- indexing: (siteId) => `/sites/${encodeURIComponent(siteId)}/indexing`,
36
- indexingUrls: (siteId) => `/sites/${encodeURIComponent(siteId)}/indexing/urls`,
37
- indexingDiagnostics: (siteId) => `/sites/${encodeURIComponent(siteId)}/indexing/diagnostics`,
38
- indexingInspect: (siteId) => `/sites/${encodeURIComponent(siteId)}/indexing/inspect`,
39
- recoverPermission: (siteId) => `/sites/${encodeURIComponent(siteId)}/recover-permission`,
40
- canonicalMismatches: (siteId) => `/sites/${encodeURIComponent(siteId)}/canonical-mismatches`,
41
- topAssociation: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/top-association`,
42
- keywordSparklines: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/keyword-sparklines`,
43
- queryTrend: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/query-trend`,
44
- pageTrend: (siteId) => `/sites/${encodeURIComponent(siteId)}/data/page-trend`,
45
- contentVelocity: (siteId) => `/sites/${encodeURIComponent(siteId)}/content-velocity`,
46
- ctrCurve: (siteId) => `/sites/${encodeURIComponent(siteId)}/ctr-curve`,
47
- darkTraffic: (siteId) => `/sites/${encodeURIComponent(siteId)}/dark-traffic`,
48
- deviceGap: (siteId) => `/sites/${encodeURIComponent(siteId)}/device-gap`,
49
- indexPercent: (siteId) => `/sites/${encodeURIComponent(siteId)}/index-percent`,
50
- keywordBreadth: (siteId) => `/sites/${encodeURIComponent(siteId)}/keyword-breadth`,
51
- positionDistribution: (siteId) => `/sites/${encodeURIComponent(siteId)}/position-distribution`
52
- },
53
- settings: { user: "/user/settings" },
54
- teams: {
55
- create: "/partner/teams",
56
- byId: (teamId) => `/partner/teams/${encodeURIComponent(teamId)}`,
57
- members: (teamId) => `/partner/teams/${encodeURIComponent(teamId)}/members`,
58
- member: (teamId, userId) => `/partner/teams/${encodeURIComponent(teamId)}/members/${encodeURIComponent(userId)}`
59
- },
60
- realtime: {
61
- partner: "/ws/partner",
62
- user: "/ws/user"
63
- }
64
- };
65
- const analyticsRoutes = {
66
- whoami: "/api/__gsc/whoami",
67
- sites: "/api/__gsc/sites",
68
- site: {
69
- sourceInfo: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/source-info`,
70
- analysisSources: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/analysis-sources`,
71
- analyze: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/analyze`,
72
- rows: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/rows`,
73
- rollup: (siteId, rollupId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/rollup/${encodeURIComponent(rollupId)}`,
74
- backfill: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/backfill`,
75
- sitemaps: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/sitemaps`,
76
- sitemapHistory: (siteId, hash) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/sitemaps/${encodeURIComponent(hash)}`,
77
- sitemapChanges: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/sitemaps/changes`,
78
- inspections: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/inspections`,
79
- inspectionHistory: (siteId, hash) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/inspections/${encodeURIComponent(hash)}`,
80
- indexingUrls: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/indexing/urls`,
81
- indexingDiagnostics: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/indexing/diagnostics`,
82
- indexingInspect: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/indexing/inspect`,
83
- countries: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/countries`,
84
- searchAppearance: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/search-appearance`,
85
- topAssociation: (siteId) => `/api/__gsc/sites/${encodeURIComponent(siteId)}/data/top-association`
86
- },
87
- syncProgress: "/api/sync-progress"
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(["missing_indexing_scope", "insufficient_gsc_permission"]).optional(),
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(["missing_indexing_scope", "insufficient_gsc_permission"]).optional(),
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 gscdumpAnalysisParamsSchema = z.object({
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
- }).superRefine((value, ctx) => {
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: gscdumpMetaSchema
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
- lastSubmitted: z.string().nullable().optional(),
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, analyticsRoutes, 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, indexingDiagnosticsParamsSchema, indexingDiagnosticsSchema, indexingInspectAnyResponseSchema, indexingInspectRateLimitedSchema, indexingInspectRequestSchema, indexingInspectResponseSchema, indexingInspectResultSchema, indexingIssueSchema, indexingUrlRowSchema, indexingUrlStatusSchema, indexingUrlsParamsSchema, indexingUrlsResponseSchema, inspectionHistoryRecordSchema, inspectionHistoryResponseSchema, inspectionIndexSchema, inspectionRecordRawSchema, jobFailedWebhookPayloadSchema, lifecycleErrorSchema, lifecycleProgressSchema, partnerControlEndpointSchemas, partnerEndpointSchemas, partnerLifecycleAccountSchema, partnerLifecycleResponseSchema, partnerLifecycleSiteSchema, partnerRealtimeEventSchema, partnerRoutes, partnerWebhookDataSchema, partnerWebhookEnvelopeSchema, registerPartnerSiteSchema, registerPartnerUserSchema, rollupEnvelopeSchema, scheduleStateSchema, searchAppearanceResponseSchema, searchAppearanceRowSchema, searchTypeSchema, siteListItemSchema, sitemapChangesResponseSchema, sitemapHistoryRecordSchema, sitemapHistoryResponseSchema, sitemapIndexSchema, sourceInfoResponseSchema, teamCatalogRefSchema, updatePartnerUserTokensSchema, webhookEventTypeSchema, whoamiResponseSchema };
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 };
@@ -657,7 +657,7 @@ interface GscdumpMeta {
657
657
  syncStatus: string;
658
658
  newestDateSynced: string | null;
659
659
  oldestDateSynced: string | null;
660
- dataDelay: string;
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: GscdumpMeta;
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, PartnerRealtimeEvent, PartnerRealtimeEventType, PartnerRealtimeMessage, PartnerWebhookData, PartnerWebhookHeaders, PropertyNextAction, PropertyStatus, QuerySourceMode, RealtimeAuthFailedEvent, RealtimeAuthRequiredMessage, RealtimeConnectedMessage, RealtimeEnrichmentCompleteEvent, RealtimeErrorMessage, RealtimeIndexingCompleteEvent, RealtimeIndexingProgressEvent, RealtimeJobFailedEvent, RealtimeNeedsReauthEvent, RealtimePongMessage, RealtimeSiteAddedEvent, RealtimeSiteRemovedEvent, RealtimeSitemapCompleteEvent, RealtimeSitemapProgressEvent, RealtimeSubscribedMessage, RealtimeSyncCompleteEvent, RealtimeSyncFailedEvent, RealtimeSyncJobCompleteEvent, RealtimeSyncProgressEvent, RealtimeSyncSiteCompleteEvent, 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 };
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 };