2018-11-16 11:04:53 +01:00
|
|
|
/*!
|
2018-04-15 12:18:10 +02:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
2018-11-16 11:04:53 +01:00
|
|
|
|
2018-04-15 12:18:10 +02:00
|
|
|
|
2018-04-20 21:50:20 +02:00
|
|
|
var runtime;
|
2018-12-01 00:01:09 +01:00
|
|
|
|
2018-04-15 12:18:10 +02:00
|
|
|
var api = module.exports = {
|
2018-08-04 23:23:06 +02:00
|
|
|
init: function(_runtime) {
|
2018-04-20 21:50:20 +02:00
|
|
|
runtime = _runtime;
|
2018-04-23 12:21:02 +02:00
|
|
|
api.comms.init(runtime);
|
2018-04-15 12:18:10 +02:00
|
|
|
api.flows.init(runtime);
|
|
|
|
api.nodes.init(runtime);
|
|
|
|
api.settings.init(runtime);
|
2018-04-18 18:09:31 +02:00
|
|
|
api.library.init(runtime);
|
2018-04-20 21:50:20 +02:00
|
|
|
api.projects.init(runtime);
|
2018-07-30 00:47:19 +02:00
|
|
|
api.context.init(runtime);
|
2020-12-10 17:01:55 +01:00
|
|
|
api.plugins.init(runtime);
|
2018-04-15 12:18:10 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
comms: require("./comms"),
|
|
|
|
flows: require("./flows"),
|
|
|
|
library: require("./library"),
|
|
|
|
nodes: require("./nodes"),
|
2018-04-20 21:50:20 +02:00
|
|
|
settings: require("./settings"),
|
|
|
|
projects: require("./projects"),
|
2018-07-30 00:47:19 +02:00
|
|
|
context: require("./context"),
|
2020-12-10 17:01:55 +01:00
|
|
|
plugins: require("./plugins"),
|
2018-04-20 21:50:20 +02:00
|
|
|
|
2020-11-30 17:58:05 +01:00
|
|
|
isStarted: async function(opts) {
|
|
|
|
return runtime.isStarted();
|
2018-04-23 12:21:02 +02:00
|
|
|
},
|
2020-11-30 17:58:05 +01:00
|
|
|
version: async function(opts) {
|
|
|
|
return runtime.version();
|
2018-04-20 21:50:20 +02:00
|
|
|
}
|
2018-04-15 12:18:10 +02:00
|
|
|
}
|