@bobfrankston/miscinfo 1.0.4 → 1.0.5

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.4",
3
+ "version": "1.0.5",
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
@@ -40,6 +40,8 @@ export declare const ports: {
40
40
  rmfAlpha2: number;
41
41
  carder: number;
42
42
  cardaid: number;
43
+ oauth: number;
44
+ alerter: number;
43
45
  };
44
46
  /** MQTT broker configuration */
45
47
  export declare const mqtt: {
package/ports.js CHANGED
@@ -40,7 +40,9 @@ export const ports = {
40
40
  psyncer: 9324, // Used for the powershell version ??
41
41
  rmfAlpha2: 9325, // So we can try alternative clients.
42
42
  carder: 9329,
43
- cardaid: 9330
43
+ cardaid: 9330,
44
+ oauth: 9331,
45
+ alerter: 9332
44
46
  };
45
47
  const mqttHost = "pi4c";
46
48
  const mqttPort = 1883;