Variable PayloadContextServiceConst

PayloadContextService: new () => { context: IPayloadContext } & Omit<
    new (context: IPayloadContext) => { context: IPayloadContext },
    "prototype",
> & di_scoped.IScopedClassRun<[context: IPayloadContext<object>]>

A scoped service class that encapsulates a payload context for dependency injection. Provides a way to access execution metadata and payload data within a specific scope. Scoped using di-scoped to ensure instance isolation per scope.