vovk-hello-world 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.
- package/README.md +2 -2
- package/index.d.ts +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<!-- Generated by vovk-cli v0.0.1-beta.86 at 2026-01-15T06:
|
|
1
|
+
<!-- Generated by vovk-cli v0.0.1-beta.86 at 2026-01-15T06:50:52.902Z -->
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
# vovk-hello-world v0.0.
|
|
4
|
+
# vovk-hello-world v0.0.87 [](https://www.typescriptlang.org/) [](https://vovk.dev)
|
|
5
5
|
|
|
6
6
|
> A "Hello World!" app built with Next.js, Vovk.ts and Zod. For details, visit https://vovk.dev/hello-world
|
|
7
7
|
|
package/index.d.ts
CHANGED
|
@@ -882,7 +882,6 @@ type IsEmptyObject<T> = T extends object ? keyof T extends never ? true : T exte
|
|
|
882
882
|
type Prettify$1<T> = { [K in keyof T]: T[K] } & {};
|
|
883
883
|
type KnownAny = any;
|
|
884
884
|
type StaticClass = Function;
|
|
885
|
-
type IsAny$1<T> = 0 extends 1 & T ? true : false;
|
|
886
885
|
//#endregion
|
|
887
886
|
//#region node_modules/vovk/dist/types/json-schema.d.ts
|
|
888
887
|
/**
|
|
@@ -1478,7 +1477,7 @@ type VovkStreamAsyncIterable<T> = {
|
|
|
1478
1477
|
onIterate: (cb: (data: T, i: number) => void) => () => void;
|
|
1479
1478
|
abortController: AbortController;
|
|
1480
1479
|
};
|
|
1481
|
-
type IsNextJs = NextResponse extends Response ?
|
|
1480
|
+
type IsNextJs = NextResponse extends Response ? true : false;
|
|
1482
1481
|
type StaticMethodReturn<T extends ControllerStaticMethod> = IsNextJs extends true ? ReturnType<T> extends NextResponse<infer U> | Promise<NextResponse<infer U>> ? U : ReturnType<T> extends Response | Promise<Response> ? Awaited<ReturnType<T>> : ReturnType<T> : ReturnType<T> extends Response | Promise<Response> ? Awaited<ReturnType<T>> : ReturnType<T>;
|
|
1483
1482
|
type StaticMethodReturnPromise<T extends ControllerStaticMethod> = ToPromise<StaticMethodReturn<T>>;
|
|
1484
1483
|
type StaticMethodOptions<T extends (req: VovkRequest<KnownAny, KnownAny, KnownAny>, params: KnownAny) => void | object | JSONLinesResponder<TStreamIteration> | Promise<JSONLinesResponder<TStreamIteration>>, TFetcherOptions extends Record<string, KnownAny>, TStreamIteration, R, F extends VovkFetcherOptions<KnownAny>> = Partial<TFetcherOptions & {
|
package/package.json
CHANGED