Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ts-rest/core

Package Overview
Dependencies
Maintainers
1
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ts-rest/core - npm Package Compare versions

Comparing version 3.18.0 to 3.18.1

2

package.json
{
"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>>;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc