Skip to content

Commit 5c2f2dc

Browse files
committed
fix: 1.6.3: fix missing error imports
1 parent 10366b1 commit 5c2f2dc

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dabbu-files-api-server",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"description": "An implementation of the Dabbu Files API that enables you to access your files, folders and emails stored with multiple providers as simple files and folders, all in one place!",
55
"main": "src/server.js",
66
"directories": {

src/routes/data.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ const multer = require('multer')
2525
// Path library
2626
const path = require('path')
2727

28+
// Custom errors we throw
29+
const { ProviderNotEnabledError } = require('../errors.js')
2830
// Logging methods and utils
2931
const { info, error, json } = require('../utils.js')
3032

src/routes/internal.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
// Express JS, the library used to run the server and respond to HTTP requests
2121
const express = require('express')
2222

23+
// Custom errors we throw
24+
const { BadRequestError } = require('../errors.js')
2325
// Logging methods and utils
2426
const { info, json } = require('../utils.js')
2527

0 commit comments

Comments
 (0)