datacite-ts
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -5,2 +5,10 @@ # Changelog | ||
### [0.1.2](https://github.com/thewilkybarkid/datacite-ts/compare/v0.1.1...v0.1.2) (2022-12-05) | ||
### Features | ||
* add identifiers to Work ([2cb29e8](https://github.com/thewilkybarkid/datacite-ts/commit/2cb29e8d8072f00f2af4b089c67915225fb0639e)) | ||
* add publisher to Work ([94e3741](https://github.com/thewilkybarkid/datacite-ts/commit/94e37414b3a3e4f8a67f795bc0e85e20b6b02bbd)) | ||
### [0.1.1](https://github.com/thewilkybarkid/datacite-ts/compare/v0.1.0...v0.1.1) (2022-12-02) | ||
@@ -7,0 +15,0 @@ |
@@ -37,2 +37,7 @@ /** | ||
readonly doi: Doi; | ||
readonly identifiers: ReadonlyArray<{ | ||
identifier: string; | ||
identifierType: string; | ||
}>; | ||
readonly publisher: string; | ||
readonly types: { | ||
@@ -39,0 +44,0 @@ resourceType?: string; |
@@ -126,2 +126,7 @@ "use strict"; | ||
doi: DoiC, | ||
identifiers: ReadonlyArrayC(C.struct({ | ||
identifier: C.string, | ||
identifierType: C.string, | ||
})), | ||
publisher: C.string, | ||
titles: ReadonlyNonEmptyArrayC(C.struct({ | ||
@@ -128,0 +133,0 @@ title: C.string, |
{ | ||
"name": "datacite-ts", | ||
"description": "A DataCite API client for use with fp-ts.", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/thewilkybarkid/datacite-ts", |
14131
207