@qiwi/substrate-types
Advanced tools
Comparing version 1.50.0 to 1.51.0
{ | ||
"git": { | ||
"commitId": "f227cc03e78e550f718beb6fc3bdb04b1de74158", | ||
"commitId": "d824c39e5f7f51fe51ffd437964afe03d4f6ce69", | ||
"repoUrl": "https://github.com/qiwi/substrate.git", | ||
"repoName": "qiwi/substrate" | ||
}, | ||
"date": "2021-03-31T13:02:16.943Z" | ||
"date": "2021-04-21T14:49:53.057Z" | ||
} |
@@ -0,1 +1,8 @@ | ||
# @qiwi/substrate-types [1.51.0](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.50.0...@qiwi/substrate-types@1.51.0) (2021-04-21) | ||
### Features | ||
* **types:** add INullable generic ([70585ce](https://github.com/qiwi/substrate/commit/70585ce0985e565f7fbaf6af87857273400aa39a)), closes [#422](https://github.com/qiwi/substrate/issues/422) | ||
# @qiwi/substrate-types [1.50.0](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.49.0...@qiwi/substrate-types@1.50.0) (2021-03-31) | ||
@@ -2,0 +9,0 @@ |
@@ -140,2 +140,4 @@ /** | ||
INullOrUndefined, | ||
INullable, | ||
INilable, | ||
} from "@qiwi/substrate-types/target/es5/INil"; | ||
@@ -268,2 +270,4 @@ | ||
INullOrUndefined as NullOrUndefined, | ||
INullable as Nullable, | ||
INilable as Nilable, | ||
} from "@qiwi/substrate-types/target/es5/INil"; | ||
@@ -935,2 +939,4 @@ | ||
declare export type INullOrUndefined = INil; | ||
declare export type INullable<T = any> = T | null; | ||
declare export type INilable<T = any> = T | INil; | ||
} | ||
@@ -937,0 +943,0 @@ |
{ | ||
"name": "@qiwi/substrate-types", | ||
"version": "1.50.0", | ||
"version": "1.51.0", | ||
"main": "target/es5/index.js", | ||
@@ -48,12 +48,12 @@ "source": "target/ts/index.ts", | ||
"@types/lodash": "4.14.168", | ||
"@types/node": "14.14.37", | ||
"@types/node": "14.14.41", | ||
"@types/parsimmon": "1.10.6", | ||
"@types/underscore": "1.11.0", | ||
"@types/underscore": "1.11.1", | ||
"axios": "0.21.1", | ||
"bluebird": "3.7.2", | ||
"conf": "9.0.2", | ||
"conf": "10.0.1", | ||
"config": "3.3.6", | ||
"lodash": "4.17.21", | ||
"underscore": "1.12.1", | ||
"cross-fetch": "3.1.2", | ||
"underscore": "1.13.1", | ||
"cross-fetch": "3.1.4", | ||
"reflect-metadata": "0.1.13" | ||
@@ -60,0 +60,0 @@ }, |
@@ -31,4 +31,4 @@ export { IStringMap as StringMap } from './IStringMap'; | ||
export { IExtra as Extra } from './IExtra'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined } from './INil'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined, INullable as Nullable, INilable as Nilable } from './INil'; | ||
export { IExecutionMode as ExecutionMode } from './IExecutionMode'; | ||
export { IDeviceInfo as DeviceInfo, IDeviceInfoStrict as DeviceInfoStrict } from './IDeviceInfo'; |
@@ -31,4 +31,4 @@ export { IStringMap } from './IStringMap'; | ||
export { IExtra } from './IExtra'; | ||
export { INil, INullOrUndefined } from './INil'; | ||
export { INil, INullOrUndefined, INullable, INilable } from './INil'; | ||
export { IExecutionMode } from './IExecutionMode'; | ||
export { IDeviceInfo, IDeviceInfoStrict } from './IDeviceInfo'; |
export declare type INil = null | undefined; | ||
export declare type INullOrUndefined = INil; | ||
export declare type INullable<T = any> = T | null; | ||
export declare type INilable<T = any> = T | INil; |
@@ -31,4 +31,4 @@ export { IStringMap as StringMap } from './IStringMap'; | ||
export { IExtra as Extra } from './IExtra'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined } from './INil'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined, INullable as Nullable, INilable as Nilable } from './INil'; | ||
export { IExecutionMode as ExecutionMode } from './IExecutionMode'; | ||
export { IDeviceInfo as DeviceInfo, IDeviceInfoStrict as DeviceInfoStrict } from './IDeviceInfo'; |
@@ -31,4 +31,4 @@ export { IStringMap } from './IStringMap'; | ||
export { IExtra } from './IExtra'; | ||
export { INil, INullOrUndefined } from './INil'; | ||
export { INil, INullOrUndefined, INullable, INilable } from './INil'; | ||
export { IExecutionMode } from './IExecutionMode'; | ||
export { IDeviceInfo, IDeviceInfoStrict } from './IDeviceInfo'; |
export declare type INil = null | undefined; | ||
export declare type INullOrUndefined = INil; | ||
export declare type INullable<T = any> = T | null; | ||
export declare type INilable<T = any> = T | INil; |
@@ -69,4 +69,4 @@ export { IStringMap as StringMap } from './IStringMap' | ||
export { IExtra as Extra } from './IExtra' | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined } from './INil' | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined, INullable as Nullable, INilable as Nilable } from './INil' | ||
export { IExecutionMode as ExecutionMode } from './IExecutionMode' | ||
export { IDeviceInfo as DeviceInfo, IDeviceInfoStrict as DeviceInfoStrict } from './IDeviceInfo' |
@@ -69,4 +69,4 @@ export { IStringMap } from './IStringMap' | ||
export { IExtra } from './IExtra' | ||
export { INil, INullOrUndefined } from './INil' | ||
export { INil, INullOrUndefined, INullable, INilable } from './INil' | ||
export { IExecutionMode } from './IExecutionMode' | ||
export { IDeviceInfo, IDeviceInfoStrict } from './IDeviceInfo' |
export type INil = null | undefined | ||
export type INullOrUndefined = INil | ||
export type INullable<T = any> = T | null | ||
export type INilable<T = any> = T | INil | ||
@@ -41,3 +41,3 @@ // Generated by dts-bundle v0.7.5 | ||
export { IExtra } from '@qiwi/substrate-types/target/es5/IExtra'; | ||
export { INil, INullOrUndefined } from '@qiwi/substrate-types/target/es5/INil'; | ||
export { INil, INullOrUndefined, INullable, INilable } from '@qiwi/substrate-types/target/es5/INil'; | ||
export { IExecutionMode } from '@qiwi/substrate-types/target/es5/IExecutionMode'; | ||
@@ -78,3 +78,3 @@ export { IDeviceInfo, IDeviceInfoStrict } from '@qiwi/substrate-types/target/es5/IDeviceInfo'; | ||
export { IExtra as Extra } from '@qiwi/substrate-types/target/es5/IExtra'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined } from '@qiwi/substrate-types/target/es5/INil'; | ||
export { INil as Nil, INullOrUndefined as NullOrUndefined, INullable as Nullable, INilable as Nilable } from '@qiwi/substrate-types/target/es5/INil'; | ||
export { IExecutionMode as ExecutionMode } from '@qiwi/substrate-types/target/es5/IExecutionMode'; | ||
@@ -524,2 +524,4 @@ export { IDeviceInfo as DeviceInfo, IDeviceInfoStrict as DeviceInfoStrict } from '@qiwi/substrate-types/target/es5/IDeviceInfo'; | ||
export type INullOrUndefined = INil; | ||
export type INullable<T = any> = T | null; | ||
export type INilable<T = any> = T | INil; | ||
} | ||
@@ -526,0 +528,0 @@ |
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
168132
3149