@jaypie/dynamodb 0.4.2 → 0.4.4

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.
@@ -137,4 +137,8 @@ export interface StorableEntity extends Omit<FabricModel, "archivedAt" | "create
137
137
  archivedAt?: string;
138
138
  /** Soft-delete timestamp */
139
139
  deletedAt?: string;
140
+ /** Application-specific state flags */
141
+ state?: Record<string, unknown>;
142
+ /** Allow additional properties for downstream entity extensions */
143
+ [key: string]: unknown;
140
144
  }
@@ -137,4 +137,8 @@ export interface StorableEntity extends Omit<FabricModel, "archivedAt" | "create
137
137
  archivedAt?: string;
138
138
  /** Soft-delete timestamp */
139
139
  deletedAt?: string;
140
+ /** Application-specific state flags */
141
+ state?: Record<string, unknown>;
142
+ /** Allow additional properties for downstream entity extensions */
143
+ [key: string]: unknown;
140
144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/dynamodb",
3
- "version": "0.4.2",
3
+ "version": "0.4.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/finlaysonstudio/jaypie.git"