@hestia-earth/api 0.9.28-2 → 0.9.29-0
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/models.d.ts +1 -0
- package/dist/models.js +1 -0
- package/dist/reconciliations/model/model.d.ts +5 -0
- package/dist/reconciliations/model/model.js +25 -0
- package/package.json +12 -12
- package/dev.ts +0 -3
package/dist/models.d.ts
CHANGED
package/dist/models.js
CHANGED
|
@@ -15,4 +15,5 @@ __exportStar(require("./earth-engine/model/model"), exports);
|
|
|
15
15
|
__exportStar(require("./files/model/model"), exports);
|
|
16
16
|
__exportStar(require("./migrations/model/model"), exports);
|
|
17
17
|
__exportStar(require("./nodes/model/model"), exports);
|
|
18
|
+
__exportStar(require("./reconciliations/model/model"), exports);
|
|
18
19
|
__exportStar(require("./users/model/model"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __extends = (this && this.__extends) || (function () {
|
|
3
|
+
var extendStatics = function (d, b) {
|
|
4
|
+
extendStatics = Object.setPrototypeOf ||
|
|
5
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
7
|
+
return extendStatics(d, b);
|
|
8
|
+
};
|
|
9
|
+
return function (d, b) {
|
|
10
|
+
extendStatics(d, b);
|
|
11
|
+
function __() { this.constructor = d; }
|
|
12
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
13
|
+
};
|
|
14
|
+
})();
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.Reconciliation = void 0;
|
|
17
|
+
var model_base_1 = require("../../db/model.base");
|
|
18
|
+
var Reconciliation = (function (_super) {
|
|
19
|
+
__extends(Reconciliation, _super);
|
|
20
|
+
function Reconciliation() {
|
|
21
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
22
|
+
}
|
|
23
|
+
return Reconciliation;
|
|
24
|
+
}(model_base_1.BaseModel));
|
|
25
|
+
exports.Reconciliation = Reconciliation;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/api",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29-0",
|
|
4
4
|
"description": "Hestia API definitions",
|
|
5
5
|
"main": "dist/models.js",
|
|
6
6
|
"typings": "dist/models.d.ts",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"@hestia-earth/schema-validation": "^7.0.0",
|
|
41
41
|
"@hestia-earth/utils": "^0.10.4",
|
|
42
42
|
"@mendeley/api": "^10.0.2",
|
|
43
|
-
"@sentry/node": "^6.
|
|
44
|
-
"@sentry/tracing": "^6.
|
|
45
|
-
"@slack/web-api": "^6.
|
|
43
|
+
"@sentry/node": "^6.18.2",
|
|
44
|
+
"@sentry/tracing": "^6.18.2",
|
|
45
|
+
"@slack/web-api": "^6.7.0",
|
|
46
46
|
"@sokratis/passport-linkedin-oauth2": "^2.1.0",
|
|
47
47
|
"@types/chai": "^4.3.0",
|
|
48
48
|
"@types/compression": "^1.7.2",
|
|
@@ -56,16 +56,16 @@
|
|
|
56
56
|
"@types/mongoose": "^5.11.97",
|
|
57
57
|
"@types/morgan": "^1.9.3",
|
|
58
58
|
"@types/multer": "^1.4.7",
|
|
59
|
-
"@types/node": "^14.18.
|
|
59
|
+
"@types/node": "^14.18.12",
|
|
60
60
|
"@types/orientjs": "^3.0.12",
|
|
61
61
|
"@types/request": "^2.48.8",
|
|
62
62
|
"@types/request-promise-native": "^1.0.18",
|
|
63
63
|
"@types/winston": "^2.4.4",
|
|
64
64
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
65
65
|
"@typescript-eslint/parser": "^4.33.0",
|
|
66
|
-
"aws-sdk": "^2.
|
|
66
|
+
"aws-sdk": "^2.1092.0",
|
|
67
67
|
"axios": "^0.21.4",
|
|
68
|
-
"body-parser": "^1.19.
|
|
68
|
+
"body-parser": "^1.19.2",
|
|
69
69
|
"capitalize": "^2.0.4",
|
|
70
70
|
"chai": "^4.3.6",
|
|
71
71
|
"compression": "^1.7.4",
|
|
@@ -73,9 +73,9 @@
|
|
|
73
73
|
"dotenv": "^6.0.0",
|
|
74
74
|
"eslint": "^7.32.0",
|
|
75
75
|
"eslint-plugin-jsdoc": "^25.4.3",
|
|
76
|
-
"express": "^4.17.
|
|
76
|
+
"express": "^4.17.3",
|
|
77
77
|
"express-async-errors": "^3.1.1",
|
|
78
|
-
"express-recaptcha": "^5.0
|
|
78
|
+
"express-recaptcha": "^5.1.0",
|
|
79
79
|
"express-redis-cache": "^1.1.3",
|
|
80
80
|
"express-session": "^1.17.2",
|
|
81
81
|
"husky": "^4.3.8",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"lodash.get": "^4.4.2",
|
|
84
84
|
"lodash.orderby": "^4.6.0",
|
|
85
85
|
"lodash.pick": "^4.4.0",
|
|
86
|
-
"mocha": "^9.2.
|
|
86
|
+
"mocha": "^9.2.2",
|
|
87
87
|
"mocha-prepare": "^0.1.0",
|
|
88
88
|
"mongoose": "^5.13.14",
|
|
89
89
|
"mongoose-bcrypt": "^1.9.0",
|
|
@@ -105,13 +105,13 @@
|
|
|
105
105
|
"standard-version": "^9.3.2",
|
|
106
106
|
"supertest": "^3.4.2",
|
|
107
107
|
"swagger-jsdoc": "^4.3.2",
|
|
108
|
-
"swagger-ui-dist": "^4.
|
|
108
|
+
"swagger-ui-dist": "^4.6.2",
|
|
109
109
|
"swagger-ui-express": "^4.3.0",
|
|
110
110
|
"ts-node": "^8.10.2",
|
|
111
111
|
"ts-node-dev": "^1.1.8",
|
|
112
112
|
"typescript": "^3.9.10",
|
|
113
113
|
"uid-generator": "^2.0.0",
|
|
114
|
-
"winston": "^3.
|
|
114
|
+
"winston": "^3.6.0"
|
|
115
115
|
},
|
|
116
116
|
"husky": {
|
|
117
117
|
"hooks": {
|
package/dev.ts
DELETED