refactor(base): rename baseId to pageId across WS, processors, tasks, formula, events

Renames baseId → pageId in:
- Domain event types (BaseEventBase) and all derived event types
- WS Zod schemas (wire-protocol field names now emit pageId)
- BaseWsService, BaseWsConsumers, BasePresenceService
- FormulaLockService, FormulaService
- BullMQ job interfaces (IBaseTypeConversionJob, IBaseCellGcJob, IBaseFormulaRecomputeJob)
- BaseQueueProcessor and all task functions
- Service emit-payload keys in base.service, base-property.service,
  base-row.service, base-view.service, base-csv-export.service
- Formula spec test fixtures
This commit is contained in:
Philipinho
2026-04-27 01:38:11 +01:00
parent 78d450a238
commit 25dfb44774
17 changed files with 145 additions and 145 deletions
@@ -115,7 +115,7 @@ export interface IApprovalRejectedNotificationJob {
}
export interface IBaseTypeConversionJob {
baseId: string;
pageId: string;
propertyId: string;
workspaceId: string;
fromType: string;
@@ -133,13 +133,13 @@ export interface IBaseTypeConversionJob {
}
export interface IBaseCellGcJob {
baseId: string;
pageId: string;
propertyId: string;
workspaceId: string;
}
export interface IBaseFormulaRecomputeJob {
baseId: string;
pageId: string;
workspaceId: string;
propertyIds: string[]; // formula properties to recompute
reason: