namirasoft-node 1.0.15 → 1.0.16
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/index.d.ts +5 -2
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
export * from "./AnomalyDetector";
|
|
2
2
|
export * from "./BaseApplication";
|
|
3
|
+
export * from "./BaseApplicationLink";
|
|
3
4
|
export * from "./BaseController";
|
|
4
5
|
export * from "./BaseDatabase";
|
|
5
|
-
export * from "./BaseSequelizeModel";
|
|
6
6
|
export * from "./BaseMySqlDatabase";
|
|
7
|
-
export * from "./BaseSequelizeTable";
|
|
8
7
|
export * from "./BaseSequelizeDatabase";
|
|
8
|
+
export * from "./BaseSequelizeModel";
|
|
9
|
+
export * from "./BaseSequelizeTable";
|
|
9
10
|
export * from "./BaseTable";
|
|
10
11
|
export * from "./EmailService";
|
|
11
12
|
export * from "./EnvService";
|
|
12
13
|
export * from "./IPOperation";
|
|
14
|
+
export * from "./Meta";
|
|
15
|
+
export * from "./OTPOperation";
|
|
13
16
|
export * from "./RequestHeaderService";
|
|
14
17
|
export * from "./ServerToServerOperation";
|
package/dist/index.js
CHANGED
|
@@ -16,16 +16,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./AnomalyDetector"), exports);
|
|
18
18
|
__exportStar(require("./BaseApplication"), exports);
|
|
19
|
+
__exportStar(require("./BaseApplicationLink"), exports);
|
|
19
20
|
__exportStar(require("./BaseController"), exports);
|
|
20
21
|
__exportStar(require("./BaseDatabase"), exports);
|
|
21
|
-
__exportStar(require("./BaseSequelizeModel"), exports);
|
|
22
22
|
__exportStar(require("./BaseMySqlDatabase"), exports);
|
|
23
|
-
__exportStar(require("./BaseSequelizeTable"), exports);
|
|
24
23
|
__exportStar(require("./BaseSequelizeDatabase"), exports);
|
|
24
|
+
__exportStar(require("./BaseSequelizeModel"), exports);
|
|
25
|
+
__exportStar(require("./BaseSequelizeTable"), exports);
|
|
25
26
|
__exportStar(require("./BaseTable"), exports);
|
|
26
27
|
__exportStar(require("./EmailService"), exports);
|
|
27
28
|
__exportStar(require("./EnvService"), exports);
|
|
28
29
|
__exportStar(require("./IPOperation"), exports);
|
|
30
|
+
__exportStar(require("./Meta"), exports);
|
|
31
|
+
__exportStar(require("./OTPOperation"), exports);
|
|
29
32
|
__exportStar(require("./RequestHeaderService"), exports);
|
|
30
33
|
__exportStar(require("./ServerToServerOperation"), exports);
|
|
31
34
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,oDAAkC;AAClC,mDAAiC;AACjC,iDAA+B;AAC/B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,oDAAkC;AAClC,wDAAsC;AACtC,mDAAiC;AACjC,iDAA+B;AAC/B,sDAAoC;AACpC,0DAAwC;AACxC,uDAAqC;AACrC,uDAAqC;AACrC,8CAA4B;AAC5B,iDAA+B;AAC/B,+CAA6B;AAC7B,gDAA8B;AAC9B,yCAAuB;AACvB,iDAA+B;AAC/B,yDAAuC;AACvC,4DAA0C"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
export * from "./AnomalyDetector";
|
|
2
2
|
export * from "./BaseApplication";
|
|
3
|
+
export * from "./BaseApplicationLink";
|
|
3
4
|
export * from "./BaseController";
|
|
4
5
|
export * from "./BaseDatabase";
|
|
5
|
-
export * from "./BaseSequelizeModel";
|
|
6
6
|
export * from "./BaseMySqlDatabase";
|
|
7
|
-
export * from "./BaseSequelizeTable";
|
|
8
7
|
export * from "./BaseSequelizeDatabase";
|
|
8
|
+
export * from "./BaseSequelizeModel";
|
|
9
|
+
export * from "./BaseSequelizeTable";
|
|
9
10
|
export * from "./BaseTable";
|
|
10
11
|
export * from "./EmailService";
|
|
11
12
|
export * from "./EnvService";
|
|
12
13
|
export * from "./IPOperation";
|
|
14
|
+
export * from "./Meta";
|
|
15
|
+
export * from "./OTPOperation";
|
|
13
16
|
export * from "./RequestHeaderService";
|
|
14
17
|
export * from "./ServerToServerOperation";
|