@walkeros/mcp 4.3.1-next-1784373088875 → 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/index.js CHANGED
@@ -1382,7 +1382,7 @@ async function feedbackHandlerBody(client, input) {
1382
1382
  const isAnonymous = explicitAnonymous ?? anonymous ?? true;
1383
1383
  await client.submitFeedback(text, {
1384
1384
  anonymous: isAnonymous,
1385
- version: "4.3.1-next-1784373088875"
1385
+ version: "4.3.1"
1386
1386
  });
1387
1387
  return mcpResult7({ ok: true });
1388
1388
  } catch (error) {
@@ -2120,7 +2120,7 @@ var NPM_SEARCH_URL = "https://registry.npmjs.org/-/v1/search";
2120
2120
  var JSDELIVR_BASE = "https://cdn.jsdelivr.net/npm";
2121
2121
  var WALKEROS_JSON_PATH = "dist/walkerOS.json";
2122
2122
  var CACHE_TTL = 5 * 60 * 1e3;
2123
- var CLIENT_HEADER = "walkeros-mcp/4.3.1-next-1784373088875";
2123
+ var CLIENT_HEADER = "walkeros-mcp/4.3.1";
2124
2124
  function getPackageBaseUrl() {
2125
2125
  return process.env.WALKEROS_APP_URL || void 0;
2126
2126
  }
@@ -2745,7 +2745,7 @@ var spec_default = {
2745
2745
  openapi: "3.1.0",
2746
2746
  info: {
2747
2747
  title: "walkerOS Tag Manager API",
2748
- version: "3.1.0",
2748
+ version: "4.0.0",
2749
2749
  description: "API for managing walkerOS flows, projects, and real-time event observation.",
2750
2750
  contact: {
2751
2751
  name: "elbwalker",
@@ -4935,13 +4935,6 @@ var spec_default = {
4935
4935
  projectId: {
4936
4936
  type: "string"
4937
4937
  },
4938
- token: {
4939
- type: "string",
4940
- minLength: 12,
4941
- maxLength: 12,
4942
- pattern: "^[a-z0-9]+$",
4943
- example: "k9x2m4p7abcd"
4944
- },
4945
4938
  bundleUrl: {
4946
4939
  type: "string",
4947
4940
  format: "uri"
@@ -4962,7 +4955,6 @@ var spec_default = {
4962
4955
  "flowId",
4963
4956
  "flowSettingsId",
4964
4957
  "projectId",
4965
- "token",
4966
4958
  "bundleUrl",
4967
4959
  "activationUrl",
4968
4960
  "createdBy",
@@ -5114,6 +5106,17 @@ var spec_default = {
5114
5106
  web: {
5115
5107
  $ref: "#/components/schemas/ObserveSessionWeb"
5116
5108
  },
5109
+ server: {
5110
+ $ref: "#/components/schemas/ObserveSessionServer"
5111
+ },
5112
+ expiresAt: {
5113
+ type: "string",
5114
+ format: "date-time"
5115
+ },
5116
+ recordsReceived: {
5117
+ type: "integer",
5118
+ minimum: 0
5119
+ },
5117
5120
  createdBy: {
5118
5121
  type: "string"
5119
5122
  },
@@ -5133,6 +5136,9 @@ var spec_default = {
5133
5136
  "serverFlowName",
5134
5137
  "serverEndpoint",
5135
5138
  "web",
5139
+ "server",
5140
+ "expiresAt",
5141
+ "recordsReceived",
5136
5142
  "createdBy",
5137
5143
  "createdAt"
5138
5144
  ]
@@ -5140,10 +5146,11 @@ var spec_default = {
5140
5146
  ObserveSessionWeb: {
5141
5147
  type: ["object", "null"],
5142
5148
  properties: {
5143
- previewId: {
5144
- type: "string"
5149
+ activationUrl: {
5150
+ type: ["string", "null"],
5151
+ format: "uri"
5145
5152
  },
5146
- token: {
5153
+ credential: {
5147
5154
  type: "string"
5148
5155
  },
5149
5156
  previewEnabled: {
@@ -5154,7 +5161,45 @@ var spec_default = {
5154
5161
  format: "uri"
5155
5162
  }
5156
5163
  },
5157
- required: ["previewId", "token", "previewEnabled", "bundleUrl"]
5164
+ required: [
5165
+ "activationUrl",
5166
+ "credential",
5167
+ "previewEnabled",
5168
+ "bundleUrl"
5169
+ ]
5170
+ },
5171
+ ObserveSessionServer: {
5172
+ type: ["object", "null"],
5173
+ properties: {
5174
+ endpoint: {
5175
+ type: ["string", "null"],
5176
+ format: "uri"
5177
+ },
5178
+ env: {
5179
+ $ref: "#/components/schemas/ObserveSessionServerEnv"
5180
+ }
5181
+ },
5182
+ required: ["endpoint", "env"]
5183
+ },
5184
+ ObserveSessionServerEnv: {
5185
+ type: "object",
5186
+ properties: {
5187
+ WALKEROS_OBSERVER_URL: {
5188
+ type: "string",
5189
+ format: "uri"
5190
+ },
5191
+ WALKEROS_DEPLOYMENT_ID: {
5192
+ type: "string"
5193
+ },
5194
+ WALKEROS_INGEST_TOKEN: {
5195
+ type: "string"
5196
+ }
5197
+ },
5198
+ required: [
5199
+ "WALKEROS_OBSERVER_URL",
5200
+ "WALKEROS_DEPLOYMENT_ID",
5201
+ "WALKEROS_INGEST_TOKEN"
5202
+ ]
5158
5203
  },
5159
5204
  ObserveSessionJourneysResponse: {
5160
5205
  type: "object",
@@ -5199,10 +5244,29 @@ var spec_default = {
5199
5244
  },
5200
5245
  force: {
5201
5246
  type: "boolean"
5247
+ },
5248
+ replace: {
5249
+ type: "boolean"
5250
+ },
5251
+ level: {
5252
+ $ref: "#/components/schemas/ObserveLevel"
5253
+ },
5254
+ origins: {
5255
+ type: "array",
5256
+ items: {
5257
+ type: "string",
5258
+ maxLength: 253,
5259
+ example: "https://shop.example.com"
5260
+ },
5261
+ maxItems: 20
5202
5262
  }
5203
5263
  },
5204
5264
  required: ["settingsName"]
5205
5265
  },
5266
+ ObserveLevel: {
5267
+ type: "string",
5268
+ enum: ["off", "standard", "trace"]
5269
+ },
5206
5270
  ObserveSessionHeartbeatResponse: {
5207
5271
  type: "object",
5208
5272
  properties: {