This repository was archived by the owner on Aug 6, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ import {
2727} from "@posthog/core/auth/identifiers" ;
2828import { canvasCoreModule } from "@posthog/core/canvas/canvas.module" ;
2929import { taskThreadCoreModule } from "@posthog/core/canvas/taskThread.module" ;
30- import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task" ;
3130import { cloudTaskModule } from "@posthog/core/cloud-task/cloud-task.module" ;
31+ import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine" ;
3232import {
3333 CLOUD_TASK_AUTH ,
3434 CLOUD_TASK_SERVICE ,
File renamed without changes.
Original file line number Diff line number Diff line change 11import { ContainerModule } from "inversify" ;
2- import { CloudTaskService } from "./cloud-task" ;
2+ import { CloudTaskService } from "./cloud-task-engine " ;
33import { CLOUD_TASK_SERVICE } from "./identifiers" ;
44
55export const cloudTaskModule = new ContainerModule ( ( { bind } ) => {
Original file line number Diff line number Diff 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
2727const mockAuthService = {
2828 authenticatedFetch : vi . fn ( ) ,
Original file line number Diff line number Diff line change 55 TypedEventEmitter ,
66} from "@posthog/shared" ;
77import { inject , injectable } from "inversify" ;
8- import type { CloudTaskService } from "../cloud-task/cloud-task" ;
8+ import type { CloudTaskService } from "../cloud-task/cloud-task-engine " ;
99import { CLOUD_TASK_SERVICE } from "../cloud-task/identifiers" ;
1010import { HandoffSaga , type HandoffSagaDeps } from "./handoff-saga" ;
1111import {
Original file line number Diff line number Diff line change 1- import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task" ;
1+ import type { CloudTaskService } from "@posthog/core/cloud-task/cloud-task-engine " ;
22import { CLOUD_TASK_SERVICE } from "@posthog/core/cloud-task/identifiers" ;
33import {
44 CloudTaskEvent ,
You can’t perform that action at this time.
0 commit comments