@4xeoz/re-entry 0.2.8 → 0.2.9

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/README.md CHANGED
@@ -67,8 +67,7 @@ npx --yes --package=@4xeoz/re-entry re-entry install \
67
67
  ```text
68
68
  choose Desktop, the current folder, or another Codex workspace
69
69
  -> check Node + find Codex + validate the selected directory
70
- -> show the Re-entry account URL and wait for the user to press Enter
71
- -> open Re-entry in the default browser
70
+ -> open the dedicated Re-entry user account page in the default browser
72
71
  -> sign in or create a user account
73
72
  -> click Pair this Mac in the dashboard
74
73
  -> enter the short pairing code in the CLI
@@ -251,8 +250,8 @@ npm start -- \
251
250
  --codex-cd "$HOME/Code/my-host-project"
252
251
  ```
253
252
 
254
- On the first run, the Connector checks the Mac, opens the Re-entry account page, waits for you to
255
- create or sign in to an account and click Pair this Mac, then asks for the
253
+ On the first run, the Connector checks the Mac, opens the dedicated Re-entry user account page,
254
+ waits for you to create or sign in to an account and click Pair this Mac, then asks for the
256
255
  dashboard code and stores the credential. On later runs it reuses the saved credential and skips
257
256
  pairing:
258
257
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4xeoz/re-entry",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "type": "module",
5
5
  "description": "Outbound Local Connector process for the Re-entry Core local preview.",
6
6
  "publishConfig": {
package/src/main.mjs CHANGED
@@ -307,7 +307,7 @@ async function connect(flags, ui, options = {}) {
307
307
  baseUrl: receiver,
308
308
  requestTimeoutMs: DEFAULT_PAIRING_REQUEST_TIMEOUT_MS,
309
309
  });
310
- const portalUrl = `${receiver}/register?flow=pair&next=${encodeURIComponent("/dashboard")}`;
310
+ const portalUrl = `${receiver}/user-register?next=${encodeURIComponent("/dashboard")}`;
311
311
  if (ui.interactive) {
312
312
  ui.stopWait("Secure link", "ready");
313
313
  ui.info("Re-entry", portalUrl);