@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
|
|
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
|
|
234
|
+
export interface DatabaseServiceType extends DatabaseServiceInterface {
|
|
235
235
|
/**
|
|
236
236
|
* @deprecated Use get() instead
|
|
237
237
|
*/
|
package/package.json
CHANGED