vovk 3.0.0-draft.31 → 3.0.0-draft.33
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 +1 -1
- package/types.d.ts +12 -12
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -3,18 +3,6 @@ import type { _StreamJSONResponse as StreamJSONResponse } from './StreamJSONResp
|
|
|
3
3
|
import { _StreamAsyncIterator as StreamAsyncIterator } from './client/types';
|
|
4
4
|
export type _KnownAny = any;
|
|
5
5
|
export type _StaticClass = Function;
|
|
6
|
-
export type _VovkSchema = {
|
|
7
|
-
emitSchema: boolean;
|
|
8
|
-
segmentName: string;
|
|
9
|
-
workers: Record<string, _VovkWorkerSchema>;
|
|
10
|
-
controllers: Record<string, _VovkControllerSchema>;
|
|
11
|
-
};
|
|
12
|
-
export type _VovkErrorResponse = {
|
|
13
|
-
cause?: unknown;
|
|
14
|
-
statusCode: _HttpStatus;
|
|
15
|
-
message: string;
|
|
16
|
-
isError: true;
|
|
17
|
-
};
|
|
18
6
|
export type _HandlerSchema = {
|
|
19
7
|
path: string;
|
|
20
8
|
httpMethod: _HttpMethod;
|
|
@@ -37,6 +25,18 @@ export type _VovkWorkerSchema = {
|
|
|
37
25
|
isGenerator?: true;
|
|
38
26
|
}>;
|
|
39
27
|
};
|
|
28
|
+
export type _VovkSchema = {
|
|
29
|
+
emitSchema: boolean;
|
|
30
|
+
segmentName: string;
|
|
31
|
+
workers: Record<string, _VovkWorkerSchema>;
|
|
32
|
+
controllers: Record<string, _VovkControllerSchema>;
|
|
33
|
+
};
|
|
34
|
+
export type _VovkErrorResponse = {
|
|
35
|
+
cause?: unknown;
|
|
36
|
+
statusCode: _HttpStatus;
|
|
37
|
+
message: string;
|
|
38
|
+
isError: true;
|
|
39
|
+
};
|
|
40
40
|
export type _VovkControllerInternal = {
|
|
41
41
|
_controllerName?: _VovkControllerSchema['controllerName'];
|
|
42
42
|
_prefix?: _VovkControllerSchema['prefix'];
|