Comparing version 0.7.4 to 0.7.6
@@ -5,2 +5,11 @@ # Changelog | ||
### [0.7.6](https://github.com/oftherivier/fictional/compare/v0.7.5...v0.7.6) (2022-10-25) | ||
### [0.7.5](https://github.com/oftherivier/fictional/compare/v0.7.4...v0.7.5) (2022-10-25) | ||
### Bug Fixes | ||
* JSonSerializable typedefs to properly include nested types ([5d6e204](https://github.com/oftherivier/fictional/commit/5d6e20474d2abeb9dbc44f09ea6bd77fcc60df1b)) | ||
### [0.7.4](https://github.com/oftherivier/fictional/compare/v0.7.3...v0.7.4) (2022-10-19) | ||
@@ -7,0 +16,0 @@ |
export type JSONPrimitive = null | number | string | boolean | ||
export type PlainNested<V> = V | { [s: string]: V } | Array<V> | ||
export type PlainNested<V> = | ||
| V | ||
| { [s: string]: PlainNested<V> } | ||
| Array<PlainNested<V>> | ||
@@ -215,5 +218,6 @@ export type JSONSerializable = PlainNested<JSONPrimitive> | ||
) => TupleReturnType<Makers> | ||
<Makers extends AnyMakers>(input: Input, makers: Makers): TupleReturnType< | ||
Makers | ||
> | ||
<Makers extends AnyMakers>( | ||
input: Input, | ||
makers: Makers | ||
): TupleReturnType<Makers> | ||
} | ||
@@ -220,0 +224,0 @@ |
{ | ||
"name": "fictional", | ||
"description": "Generate fake data deterministically from a given input", | ||
"version": "0.7.4", | ||
"version": "0.7.6", | ||
"type": "commonjs", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
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
405138
1910