topsyde-utils 1.0.190 → 1.0.191
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/dist/client/rxjs/useRxjs.js +1 -1
- package/dist/server/bun/index.js +1 -1
- package/dist/server/bun/router/controller-discovery.js +1 -1
- package/dist/server/bun/router/router.internal.js +1 -1
- package/dist/server/bun/websocket/Channel.js +1 -1
- package/dist/server/bun/websocket/Client.js +1 -1
- package/dist/server/bun/websocket/Websocket.js +1 -1
- package/dist/server/controller.js +1 -1
- package/dist/server/service.js +1 -1
- package/dist/throwable.js +1 -1
- package/package.json +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
import { onBeforeUnmount, onMounted, ref } from "vue";
|
2
|
-
import { Guards, Lib } from "../../utils.js";
|
2
|
+
import { Guards, Lib } from "../../utils/index.js";
|
3
3
|
import { Rxjs } from "../../utils/Rxjs.js";
|
4
4
|
export const useRxjs = (_namespace, actions, options) => {
|
5
5
|
const subs = ref(new Map());
|
package/dist/server/bun/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { join } from 'path';
|
2
2
|
import { readdirSync, statSync } from 'fs';
|
3
|
-
import { Lib } from '../../../utils.js';
|
3
|
+
import { Lib } from '../../../utils/index.js';
|
4
4
|
const fallbackRoutes = {};
|
5
5
|
/**
|
6
6
|
* Dynamically discovers and loads controllers from the components directory
|
package/dist/server/service.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ERROR_CODE } from "../errors.js";
|
2
2
|
import Initializable from "../initializable.js";
|
3
|
-
import { Guards } from "../utils.js";
|
3
|
+
import { Guards } from "../utils/index.js";
|
4
4
|
export default class Service extends Initializable {
|
5
5
|
async validateRequestBody(request, keys) {
|
6
6
|
return await Service.validateRequestBody(request, keys);
|
package/dist/throwable.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "topsyde-utils",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.191",
|
4
4
|
"description": "A bundle of TypeScript utility classes and functions",
|
5
5
|
"type": "module",
|
6
6
|
"main": "dist/index.js",
|
@@ -19,7 +19,7 @@
|
|
19
19
|
"build:types": "tsc --emitDeclarationOnly --declaration --outDir ./dist",
|
20
20
|
"build:prepare": "bun run clean && bun run generate-indexes && bun run format:generated",
|
21
21
|
"build": "bun run build:prepare && bun run build:ts && bun run build:types && bun run build:fix-imports",
|
22
|
-
"build:fix-imports": "bun scripts/fix-
|
22
|
+
"build:fix-imports": "bun scripts/generate-indexes.ts --fix-imports",
|
23
23
|
"test": "bun test",
|
24
24
|
"release": "./scripts/release.sh",
|
25
25
|
"deploy": "./scripts/release.sh",
|