@bobfrankston/miscassists 1.0.54 → 1.0.55
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/index.d.ts +3 -2
- package/index.js +4 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
|
|
1
|
+
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, getLocalSuffix } from './dnsassist.js';
|
|
2
2
|
import { ports, mqtt, endsWithFQDN } from '@bobfrankston/miscinfo';
|
|
3
3
|
import { makerPayload } from './maker.js';
|
|
4
|
-
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, makerPayload, endsWithFQDN };
|
|
4
|
+
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, makerPayload, endsWithFQDN, getLocalSuffix };
|
|
5
5
|
export declare const values: {
|
|
6
6
|
exitRunit: number;
|
|
7
7
|
};
|
|
@@ -73,5 +73,6 @@ declare const _default: {
|
|
|
73
73
|
exitRunit: number;
|
|
74
74
|
};
|
|
75
75
|
endsWithFQDN: typeof endsWithFQDN;
|
|
76
|
+
getLocalSuffix: typeof getLocalSuffix;
|
|
76
77
|
};
|
|
77
78
|
export default _default;
|
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
|
|
1
|
+
import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, getLocalSuffix } from './dnsassist.js';
|
|
2
2
|
import { ports, mqtt, endsWithFQDN } from '@bobfrankston/miscinfo';
|
|
3
3
|
// import { jSubSiteInfo, jpriv, jprivs } from './jserve.js';
|
|
4
|
-
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, endsWithFQDN
|
|
4
|
+
export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, endsWithFQDN, getLocalSuffix
|
|
5
5
|
// , jSubSiteInfo, jpriv, jprivs
|
|
6
6
|
};
|
|
7
7
|
export const values = {
|
|
@@ -17,6 +17,7 @@ export default {
|
|
|
17
17
|
mqtt,
|
|
18
18
|
// jprivs,
|
|
19
19
|
values,
|
|
20
|
-
endsWithFQDN
|
|
20
|
+
endsWithFQDN,
|
|
21
|
+
getLocalSuffix
|
|
21
22
|
};
|
|
22
23
|
//# sourceMappingURL=index.js.map
|