ismx-nexo-node-app 0.3.45 → 0.3.46
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
|
@@ -57,9 +57,11 @@ export declare abstract class RepositoryDatabase extends _RepositoryDatabase {
|
|
|
57
57
|
import _RepositoryDatabasePostgres from "./repository/RepositoryDatabasePostgres";
|
|
58
58
|
export declare class RepositoryDatabasePostgres extends _RepositoryDatabasePostgres {
|
|
59
59
|
}
|
|
60
|
-
import _RepositoryRest from "./repository/RepositoryRest";
|
|
60
|
+
import _RepositoryRest, { RestOptions as _RestOptions } from "./repository/RepositoryRest";
|
|
61
61
|
export declare class RepositoryRest<B = any, R = any> extends _RepositoryRest<B, R> {
|
|
62
62
|
}
|
|
63
|
+
export interface RestOptions extends _RestOptions {
|
|
64
|
+
}
|
|
63
65
|
import _RepositoryRestFormal from "./repository/RepositoryRestFormal";
|
|
64
66
|
export declare class RepositoryRestFormal<B = any, R = any> extends _RepositoryRestFormal<B, R> {
|
|
65
67
|
}
|
package/package.json
CHANGED
package/src/main/node/index.ts
CHANGED
|
@@ -58,8 +58,9 @@ export abstract class RepositoryDatabase extends _RepositoryDatabase {}
|
|
|
58
58
|
import _RepositoryDatabasePostgres from "./repository/RepositoryDatabasePostgres";
|
|
59
59
|
export class RepositoryDatabasePostgres extends _RepositoryDatabasePostgres {}
|
|
60
60
|
|
|
61
|
-
import _RepositoryRest from "./repository/RepositoryRest";
|
|
61
|
+
import _RepositoryRest, { RestOptions as _RestOptions } from "./repository/RepositoryRest";
|
|
62
62
|
export class RepositoryRest<B=any,R=any> extends _RepositoryRest<B,R> {}
|
|
63
|
+
export interface RestOptions extends _RestOptions {}
|
|
63
64
|
|
|
64
65
|
import _RepositoryRestFormal from "./repository/RepositoryRestFormal";
|
|
65
66
|
export class RepositoryRestFormal<B=any,R=any> extends _RepositoryRestFormal<B,R> {}
|