├── .gitignore ├── LICENSE ├── README.md ├── api ├── accountinfo.js ├── accountinfo.json ├── blobs.js ├── blobs.json ├── changepassword.js ├── changepassword.json ├── changepasswordauthenticated.js ├── changepasswordauthenticated.json ├── createaccount.js ├── createaccount.json ├── deletednotes.js ├── deletednotes.json ├── emailupdates.js ├── emailupdates.json ├── foldername.js ├── foldername.json ├── forgotpassword.js ├── forgotpassword.json ├── login.js ├── login.json ├── monitor.js ├── monitor.json ├── notes.js ├── notes.json ├── readme.md ├── sendoneverificationemail.js ├── sendoneverificationemail.json ├── sendverificationemails.js ├── sendverificationemails.json ├── stats.js ├── stats.json ├── storestats.js ├── storestats.json ├── tags.js ├── tags.json ├── verifyemail.js └── verifyemail.json ├── extensions └── readme.md ├── package.json ├── scheduler ├── readme.md └── storestatsindatabase.js ├── shared ├── q.js ├── readme.md ├── tests │ ├── test-deletednotes.js │ ├── test-forgotpassword.js │ ├── test-notes.js │ ├── test-q.js │ ├── test-tags.js │ ├── test-vesperblob.js │ ├── test-vespernotes.js │ ├── test-vespersql.js │ ├── test-vespersync.js │ ├── test-vespertags.js │ ├── test-vesperuser.js │ └── test-vesperverifyemail.js ├── vesperblob.js ├── vesperemail.js ├── vespernotes.js ├── vespersql.js ├── vesperstats.js ├── vespersync.js ├── vespertags.js ├── vesperuser.js └── vesperverifyemail.js └── table ├── accounts.delete.js ├── accounts.insert.js ├── accounts.json ├── accounts.read.js ├── accounts.update.js ├── deletednotes.delete.js ├── deletednotes.insert.js ├── deletednotes.json ├── deletednotes.read.js ├── deletednotes.update.js ├── notes.delete.js ├── notes.insert.js ├── notes.json ├── notes.read.js ├── notes.update.js ├── readme.md ├── stats.json ├── tags.delete.js ├── tags.insert.js ├── tags.json ├── tags.read.js └── tags.update.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/README.md -------------------------------------------------------------------------------- /api/accountinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/accountinfo.js -------------------------------------------------------------------------------- /api/accountinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/accountinfo.json -------------------------------------------------------------------------------- /api/blobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/blobs.js -------------------------------------------------------------------------------- /api/blobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/blobs.json -------------------------------------------------------------------------------- /api/changepassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/changepassword.js -------------------------------------------------------------------------------- /api/changepassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/changepassword.json -------------------------------------------------------------------------------- /api/changepasswordauthenticated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/changepasswordauthenticated.js -------------------------------------------------------------------------------- /api/changepasswordauthenticated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/changepasswordauthenticated.json -------------------------------------------------------------------------------- /api/createaccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/createaccount.js -------------------------------------------------------------------------------- /api/createaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/createaccount.json -------------------------------------------------------------------------------- /api/deletednotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/deletednotes.js -------------------------------------------------------------------------------- /api/deletednotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/deletednotes.json -------------------------------------------------------------------------------- /api/emailupdates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/emailupdates.js -------------------------------------------------------------------------------- /api/emailupdates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/emailupdates.json -------------------------------------------------------------------------------- /api/foldername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/foldername.js -------------------------------------------------------------------------------- /api/foldername.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/foldername.json -------------------------------------------------------------------------------- /api/forgotpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/forgotpassword.js -------------------------------------------------------------------------------- /api/forgotpassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/forgotpassword.json -------------------------------------------------------------------------------- /api/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/login.js -------------------------------------------------------------------------------- /api/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/login.json -------------------------------------------------------------------------------- /api/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/monitor.js -------------------------------------------------------------------------------- /api/monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/monitor.json -------------------------------------------------------------------------------- /api/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/notes.js -------------------------------------------------------------------------------- /api/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/notes.json -------------------------------------------------------------------------------- /api/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/readme.md -------------------------------------------------------------------------------- /api/sendoneverificationemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/sendoneverificationemail.js -------------------------------------------------------------------------------- /api/sendoneverificationemail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/sendoneverificationemail.json -------------------------------------------------------------------------------- /api/sendverificationemails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/sendverificationemails.js -------------------------------------------------------------------------------- /api/sendverificationemails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/sendverificationemails.json -------------------------------------------------------------------------------- /api/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/stats.js -------------------------------------------------------------------------------- /api/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/stats.json -------------------------------------------------------------------------------- /api/storestats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/storestats.js -------------------------------------------------------------------------------- /api/storestats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/storestats.json -------------------------------------------------------------------------------- /api/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/tags.js -------------------------------------------------------------------------------- /api/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/tags.json -------------------------------------------------------------------------------- /api/verifyemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/verifyemail.js -------------------------------------------------------------------------------- /api/verifyemail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/api/verifyemail.json -------------------------------------------------------------------------------- /extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/extensions/readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/package.json -------------------------------------------------------------------------------- /scheduler/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/scheduler/readme.md -------------------------------------------------------------------------------- /scheduler/storestatsindatabase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/scheduler/storestatsindatabase.js -------------------------------------------------------------------------------- /shared/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/q.js -------------------------------------------------------------------------------- /shared/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/readme.md -------------------------------------------------------------------------------- /shared/tests/test-deletednotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-deletednotes.js -------------------------------------------------------------------------------- /shared/tests/test-forgotpassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-forgotpassword.js -------------------------------------------------------------------------------- /shared/tests/test-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-notes.js -------------------------------------------------------------------------------- /shared/tests/test-q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-q.js -------------------------------------------------------------------------------- /shared/tests/test-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-tags.js -------------------------------------------------------------------------------- /shared/tests/test-vesperblob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vesperblob.js -------------------------------------------------------------------------------- /shared/tests/test-vespernotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vespernotes.js -------------------------------------------------------------------------------- /shared/tests/test-vespersql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vespersql.js -------------------------------------------------------------------------------- /shared/tests/test-vespersync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vespersync.js -------------------------------------------------------------------------------- /shared/tests/test-vespertags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vespertags.js -------------------------------------------------------------------------------- /shared/tests/test-vesperuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vesperuser.js -------------------------------------------------------------------------------- /shared/tests/test-vesperverifyemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/tests/test-vesperverifyemail.js -------------------------------------------------------------------------------- /shared/vesperblob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vesperblob.js -------------------------------------------------------------------------------- /shared/vesperemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vesperemail.js -------------------------------------------------------------------------------- /shared/vespernotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vespernotes.js -------------------------------------------------------------------------------- /shared/vespersql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vespersql.js -------------------------------------------------------------------------------- /shared/vesperstats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vesperstats.js -------------------------------------------------------------------------------- /shared/vespersync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vespersync.js -------------------------------------------------------------------------------- /shared/vespertags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vespertags.js -------------------------------------------------------------------------------- /shared/vesperuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vesperuser.js -------------------------------------------------------------------------------- /shared/vesperverifyemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/shared/vesperverifyemail.js -------------------------------------------------------------------------------- /table/accounts.delete.js: -------------------------------------------------------------------------------- 1 | function del(id, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/accounts.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/accounts.insert.js -------------------------------------------------------------------------------- /table/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/accounts.json -------------------------------------------------------------------------------- /table/accounts.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/accounts.read.js -------------------------------------------------------------------------------- /table/accounts.update.js: -------------------------------------------------------------------------------- 1 | function update(item, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/deletednotes.delete.js: -------------------------------------------------------------------------------- 1 | function del(id, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/deletednotes.insert.js: -------------------------------------------------------------------------------- 1 | function insert(item, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/deletednotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/deletednotes.json -------------------------------------------------------------------------------- /table/deletednotes.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/deletednotes.read.js -------------------------------------------------------------------------------- /table/deletednotes.update.js: -------------------------------------------------------------------------------- 1 | function update(item, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/notes.delete.js: -------------------------------------------------------------------------------- 1 | function del(id, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/notes.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/notes.insert.js -------------------------------------------------------------------------------- /table/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/notes.json -------------------------------------------------------------------------------- /table/notes.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/notes.read.js -------------------------------------------------------------------------------- /table/notes.update.js: -------------------------------------------------------------------------------- 1 | function update(item, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/readme.md -------------------------------------------------------------------------------- /table/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/stats.json -------------------------------------------------------------------------------- /table/tags.delete.js: -------------------------------------------------------------------------------- 1 | function del(id, user, request) { 2 | 3 | ; 4 | 5 | } -------------------------------------------------------------------------------- /table/tags.insert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/tags.insert.js -------------------------------------------------------------------------------- /table/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/tags.json -------------------------------------------------------------------------------- /table/tags.read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentsimmons/vesper-api/HEAD/table/tags.read.js -------------------------------------------------------------------------------- /table/tags.update.js: -------------------------------------------------------------------------------- 1 | function update(item, user, request) { 2 | 3 | ; 4 | 5 | } --------------------------------------------------------------------------------