junis 0.1.2 → 0.1.3

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/dist/cli/index.js CHANGED
@@ -117,7 +117,7 @@ var RelayClient = class {
117
117
  destroyed = false;
118
118
  async connect() {
119
119
  if (this.destroyed) return;
120
- const url = `${JUNIS_WS}/ws/devices/${this.config.device_key}?token=${this.config.token}`;
120
+ const url = `${JUNIS_WS}/api/ws/devices/${this.config.device_key}?token=${this.config.token}`;
121
121
  console.log(`\u{1F517} \uB9B4\uB808\uC774 \uC11C\uBC84 \uC5F0\uACB0 \uC911...`);
122
122
  this.ws = new import_ws.default(url);
123
123
  this.ws.on("open", () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "junis",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "One-line device control for AI agents",
5
5
  "bin": {
6
6
  "junis": "dist/cli/index.js"