@walkeros/mcp 4.3.2 → 4.4.0-next-1785239495233

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/stdio.js CHANGED
@@ -722,7 +722,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
722
722
  var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
723
723
  var WALKEROS_JSON_PATH = "dist/walkerOS.json";
724
724
  var CACHE_TTL = 5 * 60 * 1e3;
725
- var CLIENT_HEADER = "walkeros-mcp/4.3.2";
725
+ var CLIENT_HEADER = "walkeros-mcp/4.4.0-next-1785239495233";
726
726
  function getPackageBaseUrl() {
727
727
  return process.env.WALKEROS_APP_URL || void 0;
728
728
  }
@@ -1466,7 +1466,7 @@ async function feedbackHandlerBody(client, input) {
1466
1466
  const isAnonymous = explicitAnonymous ?? anonymous ?? true;
1467
1467
  await client.submitFeedback(text, {
1468
1468
  anonymous: isAnonymous,
1469
- version: "4.3.2"
1469
+ version: "4.4.0-next-1785239495233"
1470
1470
  });
1471
1471
  return mcpResult8({ ok: true });
1472
1472
  } catch (error) {
@@ -1502,7 +1502,7 @@ var spec_default = {
1502
1502
  openapi: "3.1.0",
1503
1503
  info: {
1504
1504
  title: "walkerOS Tag Manager API",
1505
- version: "4.1.0",
1505
+ version: "4.2.0",
1506
1506
  description: "API for managing walkerOS flows, projects, and real-time event observation.",
1507
1507
  contact: {
1508
1508
  name: "elbwalker",
@@ -3998,6 +3998,13 @@ var spec_default = {
3998
3998
  type: "object",
3999
3999
  additionalProperties: {}
4000
4000
  }
4001
+ },
4002
+ unattributed: {
4003
+ type: "array",
4004
+ items: {
4005
+ type: "object",
4006
+ additionalProperties: {}
4007
+ }
4001
4008
  }
4002
4009
  },
4003
4010
  required: ["sessionId", "flowId", "assembledAt", "journeys", "gaps"]
@@ -6603,6 +6610,13 @@ var spec_default = {
6603
6610
  type: "object",
6604
6611
  additionalProperties: {}
6605
6612
  }
6613
+ },
6614
+ unattributed: {
6615
+ type: "array",
6616
+ items: {
6617
+ type: "object",
6618
+ additionalProperties: {}
6619
+ }
6606
6620
  }
6607
6621
  },
6608
6622
  required: ["sessionId", "flowId", "assembledAt", "journeys", "gaps"]
@@ -17209,7 +17223,10 @@ async function observeJourneysHandlerBody(client, input) {
17209
17223
  flowId: result.flowId,
17210
17224
  assembledAt: result.assembledAt,
17211
17225
  journeys: redactJourneyPayloads(result.journeys),
17212
- gaps: result.gaps
17226
+ gaps: result.gaps,
17227
+ ...result.unattributed !== void 0 && {
17228
+ unattributed: result.unattributed
17229
+ }
17213
17230
  };
17214
17231
  return mcpResult15(safe, {
17215
17232
  next: result.sessionId === null ? [
@@ -18346,7 +18363,7 @@ var HttpToolClient = class {
18346
18363
  };
18347
18364
 
18348
18365
  // src/stdio.ts
18349
- setClientContext({ type: "mcp", version: "4.3.2" });
18366
+ setClientContext({ type: "mcp", version: "4.4.0-next-1785239495233" });
18350
18367
  process.on("uncaughtException", (err) => {
18351
18368
  const emitter = getMcpEmitterSingleton();
18352
18369
  if (emitter) {
@@ -18366,7 +18383,7 @@ process.on("unhandledRejection", (reason) => {
18366
18383
  async function main() {
18367
18384
  const server = createWalkerOSMcpServer({
18368
18385
  client: new HttpToolClient(),
18369
- version: "4.3.2"
18386
+ version: "4.4.0-next-1785239495233"
18370
18387
  });
18371
18388
  const transport = new StdioServerTransport();
18372
18389
  await server.connect(transport);
@@ -18376,7 +18393,7 @@ main().catch(async (error) => {
18376
18393
  try {
18377
18394
  const emitter = await createMcpEmitter({
18378
18395
  clientInfo: void 0,
18379
- packageVersion: "4.3.2"
18396
+ packageVersion: "4.4.0-next-1785239495233"
18380
18397
  });
18381
18398
  await emitter.emitError("startup");
18382
18399
  } catch {