@sellable/mcp 0.1.41 → 0.1.42
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/tools/auth.js
CHANGED
|
@@ -138,8 +138,8 @@ export async function getAuthStatus() {
|
|
|
138
138
|
"5) Call `mcp__sellable__wait_for_cli_login({ sessionId })` using the sessionId returned by start_cli_login. " +
|
|
139
139
|
"6) If the result is `error.type === 'tool_timeout_guard'`, IMMEDIATELY re-call wait_for_cli_login with the SAME sessionId — do not narrate, do not call start_cli_login again. Loop until you get a different result. " +
|
|
140
140
|
"7) On `ok: true`, the user is signed in and `~/.sellable/config.json` has been written. Branch on `isReturningUser`: " +
|
|
141
|
-
"if true, say `You're in — {activeWorkspaceName} workspace, ready to roll.\\n\\nNow — paste the LinkedIn profile URL of the person you'll be sending
|
|
142
|
-
"if false, say `You're set up — your {activeWorkspaceName} workspace is ready.\\n\\nNow — paste the LinkedIn profile URL of the person you'll be sending
|
|
141
|
+
"if true, say `You're in — {activeWorkspaceName} workspace, ready to roll.\\n\\nNow — paste the LinkedIn profile URL of the person you'll be sending this campaign from. Usually that's you. If someone else will send this campaign, paste their profile instead.\\n\\ne.g. https://www.linkedin.com/in/your-handle`; " +
|
|
142
|
+
"if false, say `You're set up — your {activeWorkspaceName} workspace is ready.\\n\\nNow — paste the LinkedIn profile URL of the person you'll be sending this campaign from. Usually that's you. If someone else will send this campaign, paste their profile instead.\\n\\ne.g. https://www.linkedin.com/in/your-handle`";
|
|
143
143
|
if (error instanceof SellableApiError && error.isAuthError) {
|
|
144
144
|
return {
|
|
145
145
|
...base,
|
package/package.json
CHANGED
|
@@ -410,7 +410,7 @@ updates.
|
|
|
410
410
|
```text
|
|
411
411
|
You're in — {activeWorkspaceName} workspace, ready to roll.
|
|
412
412
|
|
|
413
|
-
Now — paste the LinkedIn profile URL of the person you'll be sending
|
|
413
|
+
Now — paste the LinkedIn profile URL of the person you'll be sending this campaign from. Usually that's you. If someone else will send this campaign, paste their profile instead.
|
|
414
414
|
|
|
415
415
|
e.g. https://www.linkedin.com/in/your-handle
|
|
416
416
|
```
|
|
@@ -421,7 +421,7 @@ updates.
|
|
|
421
421
|
```text
|
|
422
422
|
You're set up — your {activeWorkspaceName} workspace is ready.
|
|
423
423
|
|
|
424
|
-
Now — paste the LinkedIn profile URL of the person you'll be sending
|
|
424
|
+
Now — paste the LinkedIn profile URL of the person you'll be sending this campaign from. Usually that's you. If someone else will send this campaign, paste their profile instead.
|
|
425
425
|
|
|
426
426
|
e.g. https://www.linkedin.com/in/your-handle
|
|
427
427
|
```
|