electrodb
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -50,4 +50,4 @@ # Changelog | ||
### Added | ||
- New Attribute types `map`, `list`, `set` [[read more]](./README.md#expanded-syntax) | ||
- New Query Options, and support for, `ReturnValues` as requested in Issue#71 [[read more]](./README.md#query-options) | ||
- New Attribute types `map`, `list`, `set`. [[read more]](./README.md#expanded-syntax) | ||
- New Query Options, and support for, `ReturnValues` as requested in Issue#71. [[read more]](./README.md#query-options) | ||
- New type definitions for recently released update methods `append`, `add`, `subtract`, `data`, `remove`, and `delete`. [[read more]](./README.md#exported-types) | ||
@@ -64,2 +64,4 @@ | ||
### [1.3.1] - 2021-08-09 | ||
### Added | ||
- New entity method `parse()` to expose ElectroDB formatting for values retrieved outside of ElectroDB. [[read more]](./README.md#parse) |
{ | ||
"name": "electrodb", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A library to more easily create and interact with multiple entities and heretical relationships in dynamodb", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -257,3 +257,3 @@ const { Entity } = require("./entity"); | ||
// pager=false because we don't want the entity trying to parse the lastEvaluatedKey | ||
let items = this.collectionSchema[collection].entities[entityAlias].formatResponse(index, {Item: record}, {...config, pager: false}); | ||
let items = this.collectionSchema[collection].entities[entityAlias].formatResponse({Item: record}, index, {...config, pager: false}); | ||
results[entityAlias].push(items); | ||
@@ -260,0 +260,0 @@ } |
@@ -175,2 +175,4 @@ const KeyTypes = { | ||
const TableIndex = ""; | ||
module.exports = { | ||
@@ -183,2 +185,3 @@ Pager, | ||
ValueTypes, | ||
TableIndex, | ||
MethodTypes, | ||
@@ -185,0 +188,0 @@ Comparisons, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
613483
10783
4994