15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
export enum CabinetEventType {
|
|
PURCHASED = 'purchased',
|
|
CONSUMED = 'consumed',
|
|
ADJUSTED = 'adjusted',
|
|
DISCARDED = 'discarded',
|
|
RESTORED = 'restored',
|
|
DELETED = 'deleted',
|
|
}
|
|
|
|
export enum CabinetEventSourceType {
|
|
MANUAL = 'manual',
|
|
ORGANIZER_FILL = 'organizer_fill',
|
|
ORGANIZER_UNDO = 'organizer_undo',
|
|
REFILL_LIST = 'refill_list',
|
|
}
|