Compare commits

..

No commits in common. "d2735c547040fda3cde56d9d39440d515c3cba7d" and "a0800a0feb1bb4488b3daba5f6206ff7c8a7f8ad" have entirely different histories.

5 changed files with 1 additions and 20 deletions

6
dist/index.d.ts vendored
View File

@ -1,15 +1,9 @@
import { Client } from "@lumeweb/libkernel-universal";
import { ResolverOptions } from "@lumeweb/libresolver";
export declare class DnsClient extends Client {
register(): Promise<void>;
clear(): Promise<void>;
getResolvers(): Promise<string[]>;
ready(): Promise<void>;
resolve(
domain: string,
options?: ResolverOptions,
bypassCache?: boolean
): Promise<void>;
}
export declare const createClient: (...args: any) => DnsClient;
//# sourceMappingURL=index.d.ts.map

2
dist/index.d.ts.map vendored
View File

@ -1 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAW,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAmB,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAIxE,qBAAa,SAAU,SAAQ,MAAM;IACtB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAGzB,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAGtB,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAGjC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAGtB,OAAO,CAClB,MAAM,EAAE,MAAM,EACd,OAAO,GAAE,eAAmD,EAC5D,WAAW,GAAE,OAAe,GAC3B,OAAO,CAAC,IAAI,CAAC;CAGjB;AAED,eAAO,MAAM,YAAY,6BAAwC,CAAC"}
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAW,MAAM,8BAA8B,CAAC;AAI/D,qBAAa,SAAU,SAAQ,MAAM;IACtB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC;IAGzB,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;IAGtB,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC;IAGjC,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;CAGpC;AAED,eAAO,MAAM,YAAY,6BAAwC,CAAC"}

4
dist/index.js vendored
View File

@ -1,5 +1,4 @@
import { Client, factory } from "@lumeweb/libkernel-universal";
import { DNS_RECORD_TYPE } from "@lumeweb/libresolver";
const MODULE = "PACYNuYbp_5hgCjMK16EGcytB9QCxDLe4_uitahwePdeaA";
export class DnsClient extends Client {
async register() {
@ -14,8 +13,5 @@ export class DnsClient extends Client {
async ready() {
return this.callModuleReturn("ready");
}
async resolve(domain, options = { type: DNS_RECORD_TYPE.CONTENT }, bypassCache = false) {
return this.callModuleReturn("ready");
}
}
export const createClient = factory(DnsClient, MODULE);

View File

@ -5,7 +5,6 @@
"main": "dist/index.js",
"dependencies": {
"@lumeweb/libkernel-universal": "git+https://git.lumeweb.com/LumeWeb/libkernel-universal.git",
"@lumeweb/libresolver": "git+https://git.lumeweb.com/LumeWeb/libresolver.git",
"libkernel": "^0.1.43",
"libkmodule": "^0.2.44",
"libskynet": "^0.0.62"

View File

@ -1,5 +1,4 @@
import { Client, factory } from "@lumeweb/libkernel-universal";
import { DNS_RECORD_TYPE, ResolverOptions } from "@lumeweb/libresolver";
const MODULE = "PACYNuYbp_5hgCjMK16EGcytB9QCxDLe4_uitahwePdeaA";
@ -16,13 +15,6 @@ export class DnsClient extends Client {
public async ready(): Promise<void> {
return this.callModuleReturn("ready");
}
public async resolve(
domain: string,
options: ResolverOptions = { type: DNS_RECORD_TYPE.CONTENT },
bypassCache: boolean = false
): Promise<void> {
return this.callModuleReturn("ready");
}
}
export const createClient = factory<DnsClient>(DnsClient, MODULE);