pos:create
pos:createDescription: Triggered when a new POS is created.
Payload Structure:
{
event: 'pos:create',
status: 'success' | 'error' | 'pending',
data: POS
}
pos:update
pos:updateDescription: Triggered when an existing POS is edited or updated.
Payload Structure:
{
event: 'pos:update',
status: 'success' | 'error' | 'pending',
data: POS
}
pos:delete
pos:deleteDescription: Triggered when a POS is deleted from the system.
Payload Structure:
{
event: 'pos:delete',
status: 'success' | 'error' | 'pending',
data: POS
}
