Compare commits
No commits in common. "v0.1.0-develop.1" and "v0.0.1" have entirely different histories.
v0.1.0-dev
...
v0.0.1
|
@ -1,13 +0,0 @@
|
||||||
name: Build/Publish
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- develop
|
|
||||||
- develop-*
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
main:
|
|
||||||
uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master
|
|
||||||
secrets: inherit
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"preset": [
|
|
||||||
"@lumeweb/node-library-preset"
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
# [0.1.0-develop.1](https://git.lumeweb.com/LumeWeb/kernel-network-registry-client/compare/v0.0.1...v0.1.0-develop.1) (2023-07-19)
|
|
||||||
|
|
||||||
|
|
||||||
### Features
|
|
||||||
|
|
||||||
* initial version ([8dab108](https://git.lumeweb.com/LumeWeb/kernel-network-registry-client/commit/8dab108187930bc8077252f3fc10c94a5b1bac10))
|
|
File diff suppressed because it is too large
Load Diff
29
package.json
29
package.json
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"name": "@lumeweb/kernel-network-registry-client",
|
|
||||||
"version": "0.1.0-develop.1",
|
|
||||||
"type": "module",
|
|
||||||
"main": "lib/index.js",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "gitea@git.lumeweb.com:LumeWeb/kernel-network-registry-client.git"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@lumeweb/node-library-preset": "^0.2.7",
|
|
||||||
"presetter": "*"
|
|
||||||
},
|
|
||||||
"readme": "ERROR: No README data found!",
|
|
||||||
"scripts": {
|
|
||||||
"prepare": "presetter bootstrap",
|
|
||||||
"build": "run build",
|
|
||||||
"semantic-release": "semantic-release"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@lumeweb/libkernel": "^0.1.0-develop.20"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"lib"
|
|
||||||
],
|
|
||||||
"publishConfig": {
|
|
||||||
"access": "public"
|
|
||||||
}
|
|
||||||
}
|
|
29
src/index.ts
29
src/index.ts
|
@ -1,29 +0,0 @@
|
||||||
import { Client, factory } from "@lumeweb/libkernel/module";
|
|
||||||
|
|
||||||
const MODULE = "zduFYRFUur1hBiW1u18dqQsn2w7AiQhBmgd7PiXsX71AtAJHykhNXsUUpw";
|
|
||||||
|
|
||||||
export class NetworkRegistryClient extends Client {
|
|
||||||
public async registerType(name: string) {
|
|
||||||
return this.callModuleReturn("registerType", name);
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getTypes() {
|
|
||||||
return this.callModuleReturn("getTypes");
|
|
||||||
}
|
|
||||||
|
|
||||||
public async getNetworkTypes(module: string) {
|
|
||||||
return this.callModuleReturn("getNetworkTypes", { module });
|
|
||||||
}
|
|
||||||
|
|
||||||
public async registerNetwork(module: string) {
|
|
||||||
const bag = this.getBound(module);
|
|
||||||
|
|
||||||
const ret = await bag.callModule("register");
|
|
||||||
this.handleError(ret);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const createClient = factory<NetworkRegistryClient>(
|
|
||||||
NetworkRegistryClient,
|
|
||||||
MODULE,
|
|
||||||
);
|
|
Loading…
Reference in New Issue