@bprotsyk/aso-core 2.0.14 → 2.0.15
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/lib/index.d.ts +1 -1
- package/lib/index.js +2 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/utils/server-util.ts +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -23,4 +23,4 @@ export { IKeitaroStream } from "./keitaro/keitaro-stream";
|
|
|
23
23
|
export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } from "./general/cloudflare-domain";
|
|
24
24
|
export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain";
|
|
25
25
|
export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, NamecheapBuyResult } from "./general/namecheap-domain";
|
|
26
|
-
export
|
|
26
|
+
export { ServerUtil } from "./utils/server-util";
|
package/lib/index.js
CHANGED
|
@@ -64,4 +64,5 @@ Object.defineProperty(exports, "CONST_CLOUFLARE_STATUS_READY", { enumerable: tru
|
|
|
64
64
|
Object.defineProperty(exports, "getDomainTargetByIp", { enumerable: true, get: function () { return domain_1.getDomainTargetByIp; } });
|
|
65
65
|
var namecheap_domain_1 = require("./general/namecheap-domain");
|
|
66
66
|
Object.defineProperty(exports, "NamecheapBuyRequestSchema", { enumerable: true, get: function () { return namecheap_domain_1.NamecheapBuyRequestSchema; } });
|
|
67
|
-
|
|
67
|
+
var server_util_1 = require("./utils/server-util");
|
|
68
|
+
Object.defineProperty(exports, "ServerUtil", { enumerable: true, get: function () { return server_util_1.ServerUtil; } });
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -30,4 +30,4 @@ export { IKeitaroStream } from "./keitaro/keitaro-stream"
|
|
|
30
30
|
export { ICloudflareDomainStatus, ICloudflareDomainType, ICloudflareDomain } from "./general/cloudflare-domain"
|
|
31
31
|
export { IDomain, IDomainSetupResult, DomainStatus, DomainTarget, CONST_CLOUFLARE_STATUS_READY, IDomainsBuyRequestResponse, getDomainTargetByIp } from "./general/domain"
|
|
32
32
|
export { INamecheapDomain, INamecheapBuyRequest, INamecheapContactInfo, NamecheapBuyRequestSchema, INamecheapGetDomainsResult, NamecheapBuyResult } from "./general/namecheap-domain"
|
|
33
|
-
export
|
|
33
|
+
export {ServerUtil} from "./utils/server-util";
|
package/src/utils/server-util.ts
CHANGED