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

@rest-hooks/endpoint

Package Overview
Dependencies
Maintainers
2
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rest-hooks/endpoint - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

### [1.0.1](https://github.com/coinbase/rest-hooks/compare/@rest-hooks/endpoint@1.0.0...@rest-hooks/endpoint@1.0.1) (2021-01-24)
**Note:** Version bump only for package @rest-hooks/endpoint
## 1.0.0 (2021-01-19)

@@ -8,0 +16,0 @@

6

package.json
{
"name": "@rest-hooks/endpoint",
"version": "1.0.0",
"version": "1.0.1",
"description": "Declarative Network Interface Definitions",

@@ -55,5 +55,5 @@ "sideEffects": false,

"@babel/runtime": "^7.12.0",
"@rest-hooks/normalizr": "^6.0.0"
"@rest-hooks/normalizr": "^6.0.1"
},
"gitHead": "987d81d74abe240bbc5fcc08d4d9fd18a85b12fd"
"gitHead": "a031da2ace9ba826dd1acc50b50cec4d42cc6a85"
}

@@ -7,7 +7,5 @@ import { Schema } from '@rest-hooks/normalizr';

/** What the function's promise resolves to */
export type ResolveType<E extends (...args: any) => any> = ReturnType<
E
> extends Promise<infer R>
? R
: never;
export type ResolveType<
E extends (...args: any) => any
> = ReturnType<E> extends Promise<infer R> ? R : never;

@@ -14,0 +12,0 @@ /** Fallback to schema if fetch function isn't defined */

Sorry, the diff of this file is not supported yet

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