@ahanapediatrics/ahana-fp
Advanced tools
Comparing version
@@ -5,2 +5,9 @@ # Changelog | ||
## [2.6.0](https://github.com/ohana-pediatrics/ahana-fp/compare/v2.5.1...v2.6.0) (2020-12-18) | ||
### Features | ||
* 🎸 add `loadedSingle` and make `loaded` take readonly ([61e5541](https://github.com/ohana-pediatrics/ahana-fp/commit/61e55415620924aa1428d2146e4b23d09d0c62d7)) | ||
### [2.5.1](https://github.com/ohana-pediatrics/ahana-fp/compare/v2.5.0...v2.5.1) (2020-10-28) | ||
@@ -7,0 +14,0 @@ |
@@ -30,2 +30,8 @@ import { Optional } from '.'; | ||
/** | ||
* Create an instance of this type that indicates that a single value has been returned. | ||
* | ||
* @param data | ||
*/ | ||
static loadedSingle<LD, LE = {}>(data: LD): AsyncData<LD, LE>; | ||
/** | ||
* Create an instance of this type that indicates that some data has been returned by the request. | ||
@@ -38,3 +44,3 @@ * | ||
*/ | ||
static loaded<LD, LE = {}>(data: LD[]): AsyncData<LD, LE>; | ||
static loaded<LD, LE = {}>(data: readonly LD[]): AsyncData<LD, LE>; | ||
/** | ||
@@ -41,0 +47,0 @@ * Create an instance of this type that indicates that the requests has errored. |
@@ -52,2 +52,13 @@ "use strict"; | ||
/** | ||
* Create an instance of this type that indicates that a single value has been returned. | ||
* | ||
* @param data | ||
*/ | ||
static loadedSingle(data) { | ||
return new AsyncData({ | ||
status: RemoteDataStatus.Success, | ||
data: Object.freeze([data]), | ||
}); | ||
} | ||
/** | ||
* Create an instance of this type that indicates that some data has been returned by the request. | ||
@@ -54,0 +65,0 @@ * |
{ | ||
"name": "@ahanapediatrics/ahana-fp", | ||
"version": "2.5.1", | ||
"version": "2.6.0", | ||
"description": "FP-friendly classes for Typescript", | ||
@@ -44,3 +44,3 @@ "main": "lib/index.js", | ||
"eslint": "^7.12.0", | ||
"eslint-config-prettier": "^6.14.0", | ||
"eslint-config-prettier": "^7.0.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
@@ -47,0 +47,0 @@ "git-cz": "^4.7.1", |
52852
1.51%1192
1.45%