@tthr/vue 0.0.86 → 0.0.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Executes local custom functions or proxies generic CRUD to Tether API
|
|
4
4
|
*/
|
|
5
5
|
import { defineEventHandler, readBody, createError, setResponseStatus } from 'h3';
|
|
6
|
-
import { getConfig, lookupFunction, createDatabaseProxy, buildAuthContext, proxyToTetherApi, log, } from './utils/handler';
|
|
6
|
+
import { getConfig, lookupFunction, createDatabaseProxy, buildAuthContext, proxyToTetherApi, log, } from './utils/handler.js';
|
|
7
7
|
export default defineEventHandler(async (event) => {
|
|
8
8
|
const config = getConfig();
|
|
9
9
|
const body = await readBody(event);
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Executes local custom functions or proxies generic CRUD to Tether API
|
|
4
4
|
*/
|
|
5
5
|
import { defineEventHandler, readBody, createError } from 'h3';
|
|
6
|
-
import { getConfig, lookupFunction, createDatabaseProxy, buildAuthContext, proxyToTetherApi, log, } from './utils/handler';
|
|
6
|
+
import { getConfig, lookupFunction, createDatabaseProxy, buildAuthContext, proxyToTetherApi, log, } from './utils/handler.js';
|
|
7
7
|
export default defineEventHandler(async (event) => {
|
|
8
8
|
const config = getConfig();
|
|
9
9
|
const body = await readBody(event);
|