ismx-nexo-node-app 0.3.49 → 0.3.50
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/types/index.d.ts +3 -1
- package/package.json +1 -1
- package/src/main/node/index.ts +2 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -58,9 +58,11 @@ export declare abstract class StringUtils extends _StringUtils {
|
|
|
58
58
|
import BaseRepository from "./repository/Repository";
|
|
59
59
|
export declare class Repository extends BaseRepository {
|
|
60
60
|
}
|
|
61
|
-
import _RepositoryDatabase from "./repository/RepositoryDatabase";
|
|
61
|
+
import _RepositoryDatabase, { Pagination as _Pagination } from "./repository/RepositoryDatabase";
|
|
62
62
|
export declare abstract class RepositoryDatabase extends _RepositoryDatabase {
|
|
63
63
|
}
|
|
64
|
+
export interface Pagination<T = any> extends _Pagination<T> {
|
|
65
|
+
}
|
|
64
66
|
import _RepositoryDatabasePostgres from "./repository/RepositoryDatabasePostgres";
|
|
65
67
|
export declare class RepositoryDatabasePostgres extends _RepositoryDatabasePostgres {
|
|
66
68
|
}
|
package/package.json
CHANGED
package/src/main/node/index.ts
CHANGED
|
@@ -55,8 +55,9 @@ export abstract class StringUtils extends _StringUtils {}
|
|
|
55
55
|
import BaseRepository from "./repository/Repository";
|
|
56
56
|
export class Repository extends BaseRepository {}
|
|
57
57
|
|
|
58
|
-
import _RepositoryDatabase from "./repository/RepositoryDatabase";
|
|
58
|
+
import _RepositoryDatabase, { Pagination as _Pagination } from "./repository/RepositoryDatabase";
|
|
59
59
|
export abstract class RepositoryDatabase extends _RepositoryDatabase {}
|
|
60
|
+
export interface Pagination<T=any> extends _Pagination<T> {}
|
|
60
61
|
|
|
61
62
|
import _RepositoryDatabasePostgres from "./repository/RepositoryDatabasePostgres";
|
|
62
63
|
export class RepositoryDatabasePostgres extends _RepositoryDatabasePostgres {}
|