@bobfrankston/miscinfo 1.0.10 → 1.0.12

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/package.json +1 -1
  2. package/ports.d.ts +2 -0
  3. package/ports.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/miscinfo",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "description": "Browser-compatible shared constants including port definitions and MQTT configuration",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/ports.d.ts CHANGED
@@ -44,6 +44,8 @@ export declare const ports: {
44
44
  oauth: number;
45
45
  alerter: number;
46
46
  mailx: number;
47
+ rmfmail: number;
48
+ rmfmaildbg: number;
47
49
  };
48
50
  /** MQTT broker configuration */
49
51
  export declare const mqtt: {
package/ports.js CHANGED
@@ -44,7 +44,9 @@ export const ports = {
44
44
  cardaid: 9330,
45
45
  oauth: 9331,
46
46
  alerter: 9332,
47
- mailx: 9333
47
+ mailx: 9333,
48
+ rmfmail: 9333,
49
+ rmfmaildbg: 9334
48
50
  };
49
51
  const mqttHost = "pi4c";
50
52
  const mqttPort = 1883;