mirror of
https://github.com/docmost/docmost.git
synced 2026-07-10 21:04:30 +10:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user