@plyaz/types 1.13.9 → 1.13.10

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.
@@ -156,7 +156,7 @@ export interface DatabaseResult<T> {
156
156
  /** Whether the operation was successful */
157
157
  success: boolean;
158
158
  /** The result value if successful */
159
- value?: T;
159
+ value?: T | null;
160
160
  /** The error if unsuccessful */
161
- error?: Error;
161
+ error?: Error | null;
162
162
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.13.9",
3
+ "version": "1.13.10",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",