@bobfrankston/miscinfo 1.0.21 → 1.0.22

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 +1 -0
  3. package/ports.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/miscinfo",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
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
@@ -56,6 +56,7 @@ export declare const ports: {
56
56
  vidserve: number;
57
57
  quickserve: number;
58
58
  bambucam: number;
59
+ claudeTest: number;
59
60
  };
60
61
  /** MQTT broker configuration */
61
62
  export declare const mqtt: {
package/ports.js CHANGED
@@ -58,6 +58,7 @@ export const ports = {
58
58
  vidserve: 9335,
59
59
  quickserve: 9336, // Currently implemented using y:\x\bin\serve.ps1
60
60
  bambucam: 9337, // Bambue camera relay
61
+ claudeTest: 9338
61
62
  };
62
63
  const mqttHost = "mqtt";
63
64
  const mqttPort = 1883;