dyna-record 0.0.17 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,7 +42,7 @@ yarn add dyna-record
42
42
 
43
43
  ## Defining Entities
44
44
 
45
- Entities in Dyna-Record represent your DynamoDB table structures and relationships. Each entity corresponds to a DynamoDB table.
45
+ Entities in Dyna-Record represent your DynamoDB table structure and relationships. Think of each entity as a table in a relational database, even though they will be represented on a single table.
46
46
 
47
47
  ### Table
48
48
 
@@ -128,9 +128,8 @@ class Student extends MyTable {
128
128
 
129
129
  @Entity
130
130
  class Course extends MyTable {
131
- ...
131
+ /// ...
132
132
  }
133
-
134
133
  ```
135
134
 
136
135
  ### Attributes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dyna-record",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "description": "Typescript Object Relational Mapper (ORM) for Dynamo",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",