@nestia/benchmark 11.0.0-dev.20260312 → 11.0.0-dev.20260313-2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/benchmark",
3
- "version": "11.0.0-dev.20260312",
3
+ "version": "11.0.0-dev.20260313-2",
4
4
  "description": "NestJS Performance Benchmark Program",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "tgrid": "^1.1.0",
32
32
  "tstl": "^3.0.0",
33
- "@nestia/fetcher": "^11.0.0-dev.20260312"
33
+ "@nestia/fetcher": "^11.0.0-dev.20260313-2"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^25.3.3",
@@ -49,8 +49,7 @@
49
49
  },
50
50
  "scripts": {
51
51
  "build": "rimraf lib && tsc",
52
- "dev": "rimraf lib && tsc --watch",
53
- "test": "node bin/test"
52
+ "dev": "rimraf lib && tsc --watch"
54
53
  },
55
54
  "types": "lib/index.d.ts"
56
55
  }
@@ -1,10 +1,10 @@
1
- import { IFetchRoute } from "@nestia/fetcher";
2
-
3
- export interface IBenchmarkEvent {
4
- metadata: IFetchRoute<any>;
5
- status: number | null;
6
- started_at: string;
7
- respond_at: string | null;
8
- completed_at: string;
9
- success: boolean;
10
- }
1
+ import { IFetchRoute } from "@nestia/fetcher";
2
+
3
+ export interface IBenchmarkEvent {
4
+ metadata: IFetchRoute<any>;
5
+ status: number | null;
6
+ started_at: string;
7
+ respond_at: string | null;
8
+ completed_at: string;
9
+ success: boolean;
10
+ }
package/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./DynamicBenchmarker";
2
- export * from "./IBenchmarkEvent";
1
+ export * from "./DynamicBenchmarker";
2
+ export * from "./IBenchmarkEvent";
@@ -1,4 +1,4 @@
1
- export interface IBenchmarkMaster {
2
- filter: (name: string) => boolean;
3
- progress: (current: number) => void;
4
- }
1
+ export interface IBenchmarkMaster {
2
+ filter: (name: string) => boolean;
3
+ progress: (current: number) => void;
4
+ }
@@ -1,8 +1,8 @@
1
- import { IBenchmarkEvent } from "../IBenchmarkEvent";
2
-
3
- export interface IBenchmarkServant {
4
- execute(props: {
5
- count: number;
6
- simultaneous: number;
7
- }): Promise<IBenchmarkEvent[]>;
8
- }
1
+ import { IBenchmarkEvent } from "../IBenchmarkEvent";
2
+
3
+ export interface IBenchmarkServant {
4
+ execute(props: {
5
+ count: number;
6
+ simultaneous: number;
7
+ }): Promise<IBenchmarkEvent[]>;
8
+ }