@sx3/ultra 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/ultra.d.mts +1 -1
  2. package/package.json +1 -1
package/dist/ultra.d.mts CHANGED
@@ -21,7 +21,7 @@ interface ServerEventMap<SD> {
21
21
  }
22
22
  type ServerEventListener<SD, K extends keyof ServerEventMap<SD>> = (...args: ServerEventMap<SD>[K]) => any;
23
23
  type StartOptions<SD> = Partial<Bun.Serve.Options<SD>>;
24
- type InputFactory<C> = <I>(schema?: StandardSchemaV1<I>) => Procedure<I, unknown, C>;
24
+ type InputFactory<C> = <I>(schema?: StandardSchemaV1<unknown, I>) => Procedure<I, unknown, C>;
25
25
  type ProcedureMapInitializer<R extends ProceduresMap, C> = (input: InputFactory<C>) => R;
26
26
  interface UltraOptions {
27
27
  http?: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sx3/ultra",
3
3
  "type": "module",
4
- "version": "0.1.3",
4
+ "version": "0.1.4",
5
5
  "private": false,
6
6
  "description": "Type-safe RPC over HTTP/WebSocket for Bun",
7
7
  "author": "SX3",