Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.

Commit 059b248

Browse files
refactor(core): rename cloud task service as engine
Generated-By: PostHog Code Task-Id: c1bbe3cf-742b-4b24-bf96-d11a18b4cf22
1 parent 3a25e72 commit 059b248

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/web/src/web-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import {
2727
} from "@posthog/core/auth/identifiers";
2828
import { canvasCoreModule } from "@posthog/core/canvas/canvas.module";
2929
import { taskThreadCoreModule } from "@posthog/core/canvas/taskThread.module";
30-
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task";
3130
import { cloudTaskModule } from "@posthog/core/cloud-task/cloud-task.module";
31+
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine";
3232
import {
3333
CLOUD_TASK_AUTH,
3434
CLOUD_TASK_SERVICE,
File renamed without changes.

packages/core/src/cloud-task/cloud-task.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ContainerModule } from "inversify";
2-
import { CloudTaskService } from "./cloud-task";
2+
import { CloudTaskService } from "./cloud-task-engine";
33
import { CLOUD_TASK_SERVICE } from "./identifiers";
44

55
export const cloudTaskModule = new ContainerModule(({ bind }) => {

packages/core/src/cloud-task/cloud-task.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const fetchRouter = vi.hoisted(() =>
2222
}),
2323
);
2424

25-
import { CloudTaskService } from "./cloud-task";
25+
import { CloudTaskService } from "./cloud-task-engine";
2626

2727
const mockAuthService = {
2828
authenticatedFetch: vi.fn(),

packages/core/src/handoff/handoff.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
TypedEventEmitter,
66
} from "@posthog/shared";
77
import { inject, injectable } from "inversify";
8-
import type { CloudTaskService } from "../cloud-task/cloud-task";
8+
import type { CloudTaskService } from "../cloud-task/cloud-task-engine";
99
import { CLOUD_TASK_SERVICE } from "../cloud-task/identifiers";
1010
import { HandoffSaga, type HandoffSagaDeps } from "./handoff-saga";
1111
import {

packages/host-router/src/routers/cloud-task.router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task";
1+
import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine";
22
import { CLOUD_TASK_SERVICE } from "@posthog/core/cloud-task/identifiers";
33
import {
44
CloudTaskEvent,

0 commit comments

Comments
 (0)