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

@waiting/shared-types

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@waiting/shared-types - npm Package Compare versions

Comparing version 4.7.1 to 4.8.0

dist/lib/database/common.d.ts

12

CHANGELOG.md

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

# [4.8.0](https://github.com/waitingsong/shared-types/compare/v4.7.1...v4.8.0) (2020-07-14)
### Features
* **types:** add type JoinTableWithAlias ([b05e312](https://github.com/waitingsong/shared-types/commit/b05e312cf8afd3a389244fe14dfb9217c115a2cf))
* **types:** update type FormatIntersect deeply ([b24f097](https://github.com/waitingsong/shared-types/commit/b24f097d44ba0a195bc78a86f1851a1dc4d41499))
## [4.7.1](https://github.com/waitingsong/shared-types/compare/v4.7.0...v4.7.1) (2020-07-13)

@@ -8,0 +20,0 @@

2

dist/index.cjs.js

@@ -5,3 +5,3 @@ /**

*
* @version 4.7.0
* @version 4.7.1
* @author waiting

@@ -8,0 +8,0 @@ * @license MIT

@@ -87,3 +87,3 @@ /**

/**
* (Experimental) Rewrite members of intersect type into one type
* (Experimental) Rewrite members of intersect type into one type deeply
*

@@ -94,5 +94,5 @@ * @example ```ts

*/
export declare type FormatIntersect<T> = T extends Record<string | number, any> ? T extends any[] | Function ? T : {
[K in keyof T]: T[K];
export declare type FormatIntersect<T> = T extends Record<string | number, any> ? T extends any[] | Function | Date ? T : {
[K in keyof T]: FormatIntersect<T[K]>;
} : T;
export {};

@@ -7,2 +7,3 @@ export * from './alias';

export * from './tuple';
export * from './database';
export * from './database/common';
export * from './database/join';

@@ -7,2 +7,3 @@ export * from './alias';

export * from './tuple';
export * from './database';
export * from './database/common';
export * from './database/join';
{
"name": "@waiting/shared-types",
"author": "waiting",
"version": "4.7.1",
"version": "4.8.0",
"description": "shared typescript types",

@@ -74,3 +74,3 @@ "keywords": [

},
"gitHead": "cea9eed10e577ff0b3684421dcc48b417899aa9b"
"gitHead": "7976181f89893dde4fea10b54ddd48571d851c66"
}
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