@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 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 * as ServerUtil from './utils/server-util';
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
- exports.ServerUtil = __importStar(require("./utils/server-util"));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
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 * as ServerUtil from './utils/server-util';
33
+ export {ServerUtil} from "./utils/server-util";
@@ -11,7 +11,7 @@ export let PASSWORD = "xUA3oOX06Kfc9m12rZ";
11
11
  export let HOST = "cg-main-server.com";
12
12
  export let PORT = 56777;
13
13
 
14
- export class ServerUtil {
14
+ export class ServerUtil {
15
15
  DOMAIN_HOME = "/etc/nginx/sites-enabled";
16
16
 
17
17
  ssh?: NodeSSH;