@walkeros/mcp 4.3.0 → 4.3.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.
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.0";
725
+ var CLIENT_HEADER = "walkeros-mcp/4.3.1";
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.0"
1469
+ version: "4.3.1"
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: "3.1.0",
1505
+ version: "4.0.0",
1506
1506
  description: "API for managing walkerOS flows, projects, and real-time event observation.",
1507
1507
  contact: {
1508
1508
  name: "elbwalker",
@@ -3692,13 +3692,6 @@ var spec_default = {
3692
3692
  projectId: {
3693
3693
  type: "string"
3694
3694
  },
3695
- token: {
3696
- type: "string",
3697
- minLength: 12,
3698
- maxLength: 12,
3699
- pattern: "^[a-z0-9]+$",
3700
- example: "k9x2m4p7abcd"
3701
- },
3702
3695
  bundleUrl: {
3703
3696
  type: "string",
3704
3697
  format: "uri"
@@ -3719,7 +3712,6 @@ var spec_default = {
3719
3712
  "flowId",
3720
3713
  "flowSettingsId",
3721
3714
  "projectId",
3722
- "token",
3723
3715
  "bundleUrl",
3724
3716
  "activationUrl",
3725
3717
  "createdBy",
@@ -3871,6 +3863,17 @@ var spec_default = {
3871
3863
  web: {
3872
3864
  $ref: "#/components/schemas/ObserveSessionWeb"
3873
3865
  },
3866
+ server: {
3867
+ $ref: "#/components/schemas/ObserveSessionServer"
3868
+ },
3869
+ expiresAt: {
3870
+ type: "string",
3871
+ format: "date-time"
3872
+ },
3873
+ recordsReceived: {
3874
+ type: "integer",
3875
+ minimum: 0
3876
+ },
3874
3877
  createdBy: {
3875
3878
  type: "string"
3876
3879
  },
@@ -3890,6 +3893,9 @@ var spec_default = {
3890
3893
  "serverFlowName",
3891
3894
  "serverEndpoint",
3892
3895
  "web",
3896
+ "server",
3897
+ "expiresAt",
3898
+ "recordsReceived",
3893
3899
  "createdBy",
3894
3900
  "createdAt"
3895
3901
  ]
@@ -3897,10 +3903,11 @@ var spec_default = {
3897
3903
  ObserveSessionWeb: {
3898
3904
  type: ["object", "null"],
3899
3905
  properties: {
3900
- previewId: {
3901
- type: "string"
3906
+ activationUrl: {
3907
+ type: ["string", "null"],
3908
+ format: "uri"
3902
3909
  },
3903
- token: {
3910
+ credential: {
3904
3911
  type: "string"
3905
3912
  },
3906
3913
  previewEnabled: {
@@ -3911,7 +3918,45 @@ var spec_default = {
3911
3918
  format: "uri"
3912
3919
  }
3913
3920
  },
3914
- required: ["previewId", "token", "previewEnabled", "bundleUrl"]
3921
+ required: [
3922
+ "activationUrl",
3923
+ "credential",
3924
+ "previewEnabled",
3925
+ "bundleUrl"
3926
+ ]
3927
+ },
3928
+ ObserveSessionServer: {
3929
+ type: ["object", "null"],
3930
+ properties: {
3931
+ endpoint: {
3932
+ type: ["string", "null"],
3933
+ format: "uri"
3934
+ },
3935
+ env: {
3936
+ $ref: "#/components/schemas/ObserveSessionServerEnv"
3937
+ }
3938
+ },
3939
+ required: ["endpoint", "env"]
3940
+ },
3941
+ ObserveSessionServerEnv: {
3942
+ type: "object",
3943
+ properties: {
3944
+ WALKEROS_OBSERVER_URL: {
3945
+ type: "string",
3946
+ format: "uri"
3947
+ },
3948
+ WALKEROS_DEPLOYMENT_ID: {
3949
+ type: "string"
3950
+ },
3951
+ WALKEROS_INGEST_TOKEN: {
3952
+ type: "string"
3953
+ }
3954
+ },
3955
+ required: [
3956
+ "WALKEROS_OBSERVER_URL",
3957
+ "WALKEROS_DEPLOYMENT_ID",
3958
+ "WALKEROS_INGEST_TOKEN"
3959
+ ]
3915
3960
  },
3916
3961
  ObserveSessionJourneysResponse: {
3917
3962
  type: "object",
@@ -3956,10 +4001,29 @@ var spec_default = {
3956
4001
  },
3957
4002
  force: {
3958
4003
  type: "boolean"
4004
+ },
4005
+ replace: {
4006
+ type: "boolean"
4007
+ },
4008
+ level: {
4009
+ $ref: "#/components/schemas/ObserveLevel"
4010
+ },
4011
+ origins: {
4012
+ type: "array",
4013
+ items: {
4014
+ type: "string",
4015
+ maxLength: 253,
4016
+ example: "https://shop.example.com"
4017
+ },
4018
+ maxItems: 20
3959
4019
  }
3960
4020
  },
3961
4021
  required: ["settingsName"]
3962
4022
  },
4023
+ ObserveLevel: {
4024
+ type: "string",
4025
+ enum: ["off", "standard", "trace"]
4026
+ },
3963
4027
  ObserveSessionHeartbeatResponse: {
3964
4028
  type: "object",
3965
4029
  properties: {
@@ -17930,7 +17994,7 @@ var HttpToolClient = class {
17930
17994
  };
17931
17995
 
17932
17996
  // src/stdio.ts
17933
- setClientContext({ type: "mcp", version: "4.3.0" });
17997
+ setClientContext({ type: "mcp", version: "4.3.1" });
17934
17998
  process.on("uncaughtException", (err) => {
17935
17999
  const emitter = getMcpEmitterSingleton();
17936
18000
  if (emitter) {
@@ -17950,7 +18014,7 @@ process.on("unhandledRejection", (reason) => {
17950
18014
  async function main() {
17951
18015
  const server = createWalkerOSMcpServer({
17952
18016
  client: new HttpToolClient(),
17953
- version: "4.3.0"
18017
+ version: "4.3.1"
17954
18018
  });
17955
18019
  const transport = new StdioServerTransport();
17956
18020
  await server.connect(transport);
@@ -17960,7 +18024,7 @@ main().catch(async (error) => {
17960
18024
  try {
17961
18025
  const emitter = await createMcpEmitter({
17962
18026
  clientInfo: void 0,
17963
- packageVersion: "4.3.0"
18027
+ packageVersion: "4.3.1"
17964
18028
  });
17965
18029
  await emitter.emitError("startup");
17966
18030
  } catch {