@parall/cli 1.14.0 → 1.14.1

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.
@@ -41,7 +41,7 @@ export function resolveCredentials() {
41
41
  process.exit(1);
42
42
  }
43
43
  return {
44
- client: new ParallClient({ baseUrl: url, token: apiKey }),
44
+ client: new ParallClient({ baseUrl: url, token: apiKey, swimlaneName: process.env.PRLL_SWIMLANE_NAME }),
45
45
  orgId: orgId,
46
46
  };
47
47
  }
package/dist/lib/wiki.js CHANGED
@@ -608,6 +608,9 @@ async function wikiServiceFetch(url, token, options = {}) {
608
608
  'Authorization': `Bearer ${token}`,
609
609
  'Content-Type': 'application/json',
610
610
  };
611
+ if (process.env.PRLL_SWIMLANE_NAME) {
612
+ headers['X-Prll-Swimlane'] = process.env.PRLL_SWIMLANE_NAME;
613
+ }
611
614
  const response = await fetch(url, {
612
615
  method,
613
616
  headers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parall/cli",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "CLI client for Parall — universal agent & human access to Parall API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  "@modelcontextprotocol/sdk": "1.27.1",
31
31
  "commander": "^13.0.0",
32
32
  "zod": "^4.3.6",
33
- "@parall/sdk": "1.14.0"
33
+ "@parall/sdk": "1.14.1"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^22.0.0",