@bobfrankston/miscassists 1.0.50 → 1.0.51

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.
Files changed (3) hide show
  1. package/index.d.ts +3 -3
  2. package/index.js +6 -3
  3. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
2
- import { ports, mqtt } from '@bobfrankston/miscinfo';
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 };
4
+ export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, makerPayload, endsWithFQDN };
5
5
  export declare const values: {
6
6
  exitRunit: number;
7
7
  };
@@ -40,7 +40,6 @@ declare const _default: {
40
40
  backts: number;
41
41
  backserve: number;
42
42
  syncer: number;
43
- lifxer: number;
44
43
  itemw: number;
45
44
  pinst: number;
46
45
  stephanie: number;
@@ -69,5 +68,6 @@ declare const _default: {
69
68
  values: {
70
69
  exitRunit: number;
71
70
  };
71
+ endsWithFQDN: typeof endsWithFQDN;
72
72
  };
73
73
  export default _default;
package/index.js CHANGED
@@ -1,7 +1,9 @@
1
1
  import { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn } from './dnsassist.js';
2
- import { ports, mqtt } from '@bobfrankston/miscinfo';
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 };
4
+ export { resolve4, resolveLocal4, isLocalIP, isThisMachine, default_fqdn, ports, mqtt, endsWithFQDN
5
+ // , jSubSiteInfo, jpriv, jprivs
6
+ };
5
7
  export const values = {
6
8
  exitRunit: 99,
7
9
  };
@@ -14,6 +16,7 @@ export default {
14
16
  ports,
15
17
  mqtt,
16
18
  // jprivs,
17
- values
19
+ values,
20
+ endsWithFQDN
18
21
  };
19
22
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/miscassists",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Miscelleanous assists for various tasks including defining port numbers",
5
5
  "main": "index.js",
6
6
  "module": "main.js",
@@ -17,7 +17,7 @@
17
17
  "license": "ISC",
18
18
  "type": "module",
19
19
  "dependencies": {
20
- "@bobfrankston/miscinfo": "^1.0.2",
20
+ "@bobfrankston/miscinfo": "^1.0.4",
21
21
  "esm": "^3.2.25"
22
22
  },
23
23
  "devDependencies": {