@ts-rest/core
Advanced tools
Comparing version 3.18.0 to 3.18.1
{ | ||
"name": "@ts-rest/core", | ||
"version": "3.18.0", | ||
"version": "3.18.1", | ||
"description": "RPC-like experience over a regular REST API, with type safe server implementations 🪄", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -7,6 +7,6 @@ import { z } from 'zod'; | ||
type ExcludeKeysWithTypeOf<T, V> = { | ||
[K in keyof T]: Exclude<T[K], undefined> extends V ? never : K; | ||
[K in keyof T]-?: Exclude<T[K], undefined> extends V ? never : K; | ||
}[keyof T]; | ||
type ExcludeKeysWithoutTypeOf<T, V> = { | ||
[K in keyof T]: Exclude<T[K], undefined> extends V ? K : never; | ||
[K in keyof T]-?: Exclude<T[K], undefined> extends V ? K : never; | ||
}[keyof T]; | ||
@@ -13,0 +13,0 @@ export type Without<T, V> = Pick<T, ExcludeKeysWithTypeOf<T, V>>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39733