@plyaz/types 1.13.2 → 1.13.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.
@@ -89,7 +89,7 @@ export interface ServiceStatus {
89
89
  * });
90
90
  * ```
91
91
  */
92
- export interface DatabaseService {
92
+ export interface DatabaseServiceInterface {
93
93
  /**
94
94
  * Get a single record by ID
95
95
  * @param table - Table name
@@ -231,7 +231,7 @@ export interface DatabaseService {
231
231
  * Legacy interface for backward compatibility
232
232
  * @deprecated Use DatabaseService instead
233
233
  */
234
- export interface DatabaseServiceType extends DatabaseService {
234
+ export interface DatabaseServiceType extends DatabaseServiceInterface {
235
235
  /**
236
236
  * @deprecated Use get() instead
237
237
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.13.2",
3
+ "version": "1.13.3",
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.",