mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-23 18:17:44 +02:00
* Revert "test(onboarding): cover official source reporting controls (#4782)" This reverts commitfc88c7720f. * Revert "fix(self-host): restore official source report endpoint (#4781)" This reverts commitad1afdd48d. * Revert "feat(self-host): collect anonymous source channels mul-3878 (#4741)" This reverts commit26142d74aa.
24 lines
525 B
TypeScript
24 lines
525 B
TypeScript
export type {
|
|
OnboardingStep,
|
|
OnboardingCompletionPath,
|
|
QuestionnaireAnswers,
|
|
Source,
|
|
Role,
|
|
UseCase,
|
|
} from "./types";
|
|
export {
|
|
saveQuestionnaire,
|
|
completeOnboarding,
|
|
joinCloudWaitlist,
|
|
} from "./store";
|
|
export { ONBOARDING_STEP_ORDER } from "./step-order";
|
|
export {
|
|
needsSourceBackfill,
|
|
SOURCE_BACKFILL_MAX_DISMISSALS,
|
|
} from "./needs-backfill";
|
|
export { recommendTemplate, type AgentTemplateId } from "./recommend-template";
|
|
export {
|
|
useWelcomeStore,
|
|
type WelcomeSignal,
|
|
} from "./welcome-store";
|