@friggframework/core 1.0.1-v1-alpha.4 → 1.0.1-v1-alpha.5
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/package.json +3 -3
- package/syncs/manager.js +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@friggframework/core",
|
|
3
3
|
"prettier": "@friggframework/prettier-config",
|
|
4
|
-
"version": "1.0.1-v1-alpha.
|
|
4
|
+
"version": "1.0.1-v1-alpha.5",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@hapi/boom": "^10.0.1",
|
|
7
7
|
"aws-sdk": "^2.1200.0",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"node-fetch": "^2.6.7"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@friggframework/devtools": "1.0.1-v1-alpha.
|
|
18
|
+
"@friggframework/devtools": "1.0.1-v1-alpha.5",
|
|
19
19
|
"@types/lodash": "^4.14.191",
|
|
20
20
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
|
21
21
|
"chai": "^4.3.6",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
},
|
|
48
48
|
"homepage": "https://github.com/friggframework/frigg#readme",
|
|
49
49
|
"description": "",
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "866cdecac7b599ec734f8772a5774112da1e8f7a"
|
|
51
51
|
}
|
package/syncs/manager.js
CHANGED
|
@@ -8,7 +8,6 @@ const { Sync } = require("./model");
|
|
|
8
8
|
|
|
9
9
|
class SyncManager {
|
|
10
10
|
constructor(params) {
|
|
11
|
-
super(params);
|
|
12
11
|
// TODO verify type????????
|
|
13
12
|
// this.primaryModule = getAndVerifyType(params, 'primary', ModuleManager);
|
|
14
13
|
// this.secondaryModule = getAndVerifyType(
|
|
@@ -36,7 +35,6 @@ class SyncManager {
|
|
|
36
35
|
|
|
37
36
|
this.integration = get(params, "integration", null); // TODO Change to type validation
|
|
38
37
|
|
|
39
|
-
Sync = new Sync();
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
// calls getAllSyncObjects() on the modules and then finds the difference between each. The Primary Module
|