@jaypie/dynamodb 0.4.2 → 0.4.3
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.
- package/dist/cjs/types.d.ts +4 -0
- package/dist/esm/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/cjs/types.d.ts
CHANGED
|
@@ -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/dist/esm/types.d.ts
CHANGED
|
@@ -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
|
}
|