Add audit analytics and campaign metrics

This commit is contained in:
2026-06-05 21:43:43 +02:00
parent 70951789d2
commit df8ca1f049
12 changed files with 737 additions and 20 deletions

View File

@@ -13,7 +13,9 @@ import type * as auditGenerationAction from "../auditGenerationAction.js";
import type * as auditInputs from "../auditInputs.js";
import type * as audits from "../audits.js";
import type * as blacklist from "../blacklist.js";
import type * as campaignMetrics from "../campaignMetrics.js";
import type * as campaigns from "../campaigns.js";
import type * as crons from "../crons.js";
import type * as domain from "../domain.js";
import type * as http from "../http.js";
import type * as leadDiscovery from "../leadDiscovery.js";
@@ -23,6 +25,7 @@ import type * as outreachSendAction from "../outreachSendAction.js";
import type * as pageSpeed from "../pageSpeed.js";
import type * as pageSpeedAction from "../pageSpeedAction.js";
import type * as runs from "../runs.js";
import type * as scheduledJobs from "../scheduledJobs.js";
import type * as settings from "../settings.js";
import type * as storage from "../storage.js";
import type * as websiteEnrichment from "../websiteEnrichment.js";
@@ -40,7 +43,9 @@ declare const fullApi: ApiFromModules<{
auditInputs: typeof auditInputs;
audits: typeof audits;
blacklist: typeof blacklist;
campaignMetrics: typeof campaignMetrics;
campaigns: typeof campaigns;
crons: typeof crons;
domain: typeof domain;
http: typeof http;
leadDiscovery: typeof leadDiscovery;
@@ -50,6 +55,7 @@ declare const fullApi: ApiFromModules<{
pageSpeed: typeof pageSpeed;
pageSpeedAction: typeof pageSpeedAction;
runs: typeof runs;
scheduledJobs: typeof scheduledJobs;
settings: typeof settings;
storage: typeof storage;
websiteEnrichment: typeof websiteEnrichment;