service/domain/workflow/project_updated
Api Code Documentation / Exports / service/domain/workflow/project_updated
Table of contents
Interfaces
Variables
Functions
Variables
modificationSchema
• Const modificationSchema: ObjectSchema<any>
Defined in
src/service/domain/workflow/project_updated.ts:29
schema
• Const schema: ObjectSchema<any>
Defined in
src/service/domain/workflow/project_updated.ts:48
Functions
createEvent
▸ createEvent(source, publisher, projectId, modification, time?, metadata?): Type<Event>
Parameters
| Name | Type |
|---|---|
source | string |
publisher | string |
projectId | string |
modification | Modification |
time | string |
metadata? | UserMetadata |
Returns
Defined in
src/service/domain/workflow/project_updated.ts:58
mutate
▸ mutate(project, event): Type<void>
Applies the event to the given project, or returns an error.
When an error is returned (or thrown), any already applied modifications are discarded.
This function is not expected to validate its changes; instead, the modified project
is automatically validated when obtained using
project_eventsourcing.ts:newProjectFromEvent.
Parameters
| Name | Type |
|---|---|
project | Project |
event | Event |
Returns
Type<void>
Defined in
src/service/domain/workflow/project_updated.ts:99
validate
▸ validate(input): Type<Event>
Parameters
| Name | Type |
|---|---|
input | any |