@things-factory/operato-dataset 6.1.82 → 6.1.84

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.
package/client/route.ts DELETED
@@ -1,6 +0,0 @@
1
- export default function route(page: string) {
2
- switch (page) {
3
- case '':
4
- return '/todo-list'
5
- }
6
- }
File without changes
package/server/index.ts DELETED
@@ -1,2 +0,0 @@
1
- import './controllers'
2
- import './routes'
package/server/routes.ts DELETED
@@ -1,28 +0,0 @@
1
- const debug = require('debug')('things-factory:operato-dataset:routes')
2
-
3
- process.on('bootstrap-module-global-public-route' as any, (app, globalPublicRouter) => {
4
- /*
5
- * can add global public routes to application (auth not required, tenancy not required)
6
- *
7
- * ex) routes.get('/path', async(context, next) => {})
8
- * ex) routes.post('/path', async(context, next) => {})
9
- */
10
- })
11
-
12
- process.on('bootstrap-module-global-private-route' as any, (app, globalPrivateRouter) => {
13
- /*
14
- * can add global private routes to application (auth required, tenancy not required)
15
- */
16
- })
17
-
18
- process.on('bootstrap-module-domain-public-route' as any, (app, domainPublicRouter) => {
19
- /*
20
- * can add domain public routes to application (auth not required, tenancy required)
21
- */
22
- })
23
-
24
- process.on('bootstrap-module-domain-private-route' as any, (app, domainPrivateRouter) => {
25
- /*
26
- * can add domain private routes to application (auth required, tenancy required)
27
- */
28
- })
@@ -1,13 +0,0 @@
1
- /* EXPORT ENTITY TYPES */
2
-
3
- /* IMPORT ENTITIES AND RESOLVERS */
4
-
5
- export const entities = [
6
- /* ENTITIES */
7
- ]
8
-
9
- export const schema = {
10
- resolverClasses: [
11
- /* RESOLVER CLASSES */
12
- ]
13
- }
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "../../tsconfig-base.json",
3
- "compilerOptions": {
4
- "outDir": "../dist-server",
5
- "baseUrl": "./"
6
- },
7
- "include": ["./**/*"],
8
- "exclude": ["**/*.spec.ts"]
9
- }
File without changes
File without changes
File without changes
File without changes