94 lines
2.9 KiB
TypeScript
94 lines
2.9 KiB
TypeScript
/* eslint-disable */
|
|
/**
|
|
* Generated `api` utility.
|
|
*
|
|
* THIS CODE IS AUTOMATICALLY GENERATED.
|
|
*
|
|
* To regenerate, run `npx convex dev`.
|
|
* @module
|
|
*/
|
|
|
|
import type * as auditGeneration from "../auditGeneration.js";
|
|
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";
|
|
import type * as leads from "../leads.js";
|
|
import type * as outreach from "../outreach.js";
|
|
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";
|
|
import type * as websiteEnrichmentAction from "../websiteEnrichmentAction.js";
|
|
|
|
import type {
|
|
ApiFromModules,
|
|
FilterApi,
|
|
FunctionReference,
|
|
} from "convex/server";
|
|
|
|
declare const fullApi: ApiFromModules<{
|
|
auditGeneration: typeof auditGeneration;
|
|
auditGenerationAction: typeof auditGenerationAction;
|
|
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;
|
|
leads: typeof leads;
|
|
outreach: typeof outreach;
|
|
outreachSendAction: typeof outreachSendAction;
|
|
pageSpeed: typeof pageSpeed;
|
|
pageSpeedAction: typeof pageSpeedAction;
|
|
runs: typeof runs;
|
|
scheduledJobs: typeof scheduledJobs;
|
|
settings: typeof settings;
|
|
storage: typeof storage;
|
|
websiteEnrichment: typeof websiteEnrichment;
|
|
websiteEnrichmentAction: typeof websiteEnrichmentAction;
|
|
}>;
|
|
|
|
/**
|
|
* A utility for referencing Convex functions in your app's public API.
|
|
*
|
|
* Usage:
|
|
* ```js
|
|
* const myFunctionReference = api.myModule.myFunction;
|
|
* ```
|
|
*/
|
|
export declare const api: FilterApi<
|
|
typeof fullApi,
|
|
FunctionReference<any, "public">
|
|
>;
|
|
|
|
/**
|
|
* A utility for referencing Convex functions in your app's internal API.
|
|
*
|
|
* Usage:
|
|
* ```js
|
|
* const myFunctionReference = internal.myModule.myFunction;
|
|
* ```
|
|
*/
|
|
export declare const internal: FilterApi<
|
|
typeof fullApi,
|
|
FunctionReference<any, "internal">
|
|
>;
|
|
|
|
export declare const components: {
|
|
betterAuth: import("../betterAuth/_generated/component.js").ComponentApi<"betterAuth">;
|
|
};
|