sicksync
Version:
Don’t accept the available as the preferable. Go extra mile with extra speed.
37 lines (36 loc) • 949 B
JavaScript
module.exports = {
FS: {
LOCAL: {
CHANGE: 'file-change',
LARGE: 'large-change'
},
REMOTE: {
ADD_FILE: 'add-file',
ADD_FILE_ERROR: 'add-file-error',
ADD_DIR: 'add-dir',
ADD_DIR_ERROR: 'add-dir-error',
DELETE: 'delete',
DELETE_ERROR: 'delete-error'
}
},
REMOTE: {
READY: 'ready',
MESSAGE: 'message',
NOT_FOUND: 'not-found'
},
WS: {
LOCAL: {
DISCONNECTED: 'disconnected',
RECONNECTING: 'reconnecting',
REMOTE_MESSAGE: 'remote-message',
REMOTE_ERROR: 'remote-error',
REMOTE_NOT_FOUND: 'remote-not-found',
READY: 'ready'
},
REMOTE: {
UNAUTHORIZED: 'unauthorized',
FILE_CHANGE: 'file-change',
CONNECTION_CLOSED: 'connection-closed'
}
}
};