fal-endpoint-types 1.3.6 → 1.3.7

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": "fal-endpoint-types",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "TypeScript types for Fal AI endpoints generated from the OpenAPI schemas.",
5
5
  "homepage": "https://github.com/rawpixel-vincent/fal-endpoint-types#readme",
6
6
  "bugs": {
@@ -14,7 +14,7 @@ declare global {
14
14
  export type EndpointsOutputsCombined<
15
15
  E extends fal.Endpoint,
16
16
  T extends readonly fal.Endpoint[] = readonly [E, ...(readonly [E])],
17
- O extends Record<string, any> = Record<string, any>,
17
+ O extends Record<string, never> = Record<string, never>,
18
18
  > =
19
19
  T extends readonly [infer M, ...infer R extends readonly fal.Endpoint[]] ?
20
20
  R extends never ?