New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ahanapediatrics/ahana-fp

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ahanapediatrics/ahana-fp - npm Package Compare versions

Comparing version

to
2.6.0

7

CHANGELOG.md

@@ -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 @@

8

lib/AsyncData.d.ts

@@ -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 @@ *

4

package.json
{
"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",