fixed some imports
This commit is contained in:
Generated
+3
-3
@@ -4863,9 +4863,9 @@
|
||||
}
|
||||
},
|
||||
"rpclibrary": {
|
||||
"version": "1.3.4",
|
||||
"resolved": "https://registry.npmjs.org/rpclibrary/-/rpclibrary-1.3.4.tgz",
|
||||
"integrity": "sha512-wrAAJ6cknpsoH7xrcbzheps0NgnlGrCzHPfTVHB+VgM2QAeEJfbbleDRVkFyf8bZmCJqxlEk0P1DH3xhTB2TMA==",
|
||||
"version": "1.3.17",
|
||||
"resolved": "https://registry.npmjs.org/rpclibrary/-/rpclibrary-1.3.17.tgz",
|
||||
"integrity": "sha512-ZdhZ1TSDO+bcz5kCJ7Ol+YAAyYpwg7YI/hETS4vv3RYerUEQVZSZjcm22J5a91RnQVN2SRiXzdoXbbFb/Renog==",
|
||||
"requires": {
|
||||
"bsock": "^0.1.9",
|
||||
"http": "0.0.0",
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@
|
||||
"node-fetch": "^2.6.0",
|
||||
"path": "^0.12.7",
|
||||
"rimraf": "^3.0.0",
|
||||
"rpclibrary": "^1.3.4",
|
||||
"rpclibrary": "^1.3.17",
|
||||
"simple-git": "^1.124.0",
|
||||
"spawn-sync": "^2.0.0",
|
||||
"sqlite3": "^4.1.0",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { getLogger } from 'frontblock-generic/Types';
|
||||
import { promises as fs, mkdirSync } from "fs"
|
||||
import { RPCServer } from 'rpclibrary/js/src/Backend'
|
||||
import { RPCServer } from 'rpclibrary'
|
||||
import { AdminConf, TableDefiniton } from './Types';
|
||||
import { RPCConfigLoader } from './RPCConfigLoader';
|
||||
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
import { RPCExporter } from "rpclibrary/js/src/Interfaces";
|
||||
import { SubscriptionResponse, ErrorResponse } from "rpclibrary/js/src/Types";
|
||||
import { makeSubResponse } from "rpclibrary/js/src/Utils";
|
||||
import { RPCExporter, SubscriptionResponse, ErrorResponse, makeSubResponse } from "rpclibrary";
|
||||
import { FrontworkAdmin } from "./Admin";
|
||||
import { TableDefinitionExporter } from "./Interfaces";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Plugin } from "frontblock-generic/Plugin"
|
||||
import { Plugin } from "./Plugin"
|
||||
import { getLogger } from "frontblock-generic/Types"
|
||||
import { FrontworkAdmin } from "./Admin";
|
||||
var exec = require('child-process-promise').exec;
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { FrontworkAdmin } from "./Admin"
|
||||
import { RPC } from "rpclibrary/js/src/Types"
|
||||
import { RPC, RPCExporter } from "rpclibrary"
|
||||
import { TableDefiniton } from "./Types"
|
||||
import { RPCExporter } from "rpclibrary/js/src/Interfaces"
|
||||
import { TableDefinitionExporter } from "./Interfaces"
|
||||
import { ConfigExporter } from "loadson"
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RPCExporter } from "rpclibrary/js/src/Interfaces";
|
||||
import { RPCExporter } from "rpclibrary";
|
||||
import { Git } from "upgiter"
|
||||
import { FolderStatus } from "upgiter/js/src/Types";
|
||||
import { Plugin } from "./Plugin";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { ConfigLoader } from 'loadson'
|
||||
import { RPCExporter } from 'rpclibrary/js/src/Interfaces'
|
||||
import { RPCExporter } from 'rpclibrary'
|
||||
|
||||
export type ConfigLoaderIfc<ConfT> = {
|
||||
Config : {
|
||||
|
||||
Reference in New Issue
Block a user