@meshmakers/octo-services 3.4.400 → 3.4.420

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/octo-services",
3
- "version": "3.4.400",
3
+ "version": "3.4.420",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0",
@@ -408,6 +408,8 @@ interface AdminPanelConfigurationDto {
408
408
  aiServices: string;
409
409
  /** Reporting service public base URL. See {@link AddInConfiguration.reportingServices}. */
410
410
  reportingServices: string;
411
+ /** MCP service public base URL. See {@link AddInConfiguration.mcpServices}. */
412
+ mcpServices?: string;
411
413
  grafanaUrl: string;
412
414
  crateDbAdminUrl: string;
413
415
  issuer: string;
@@ -52230,6 +52232,18 @@ interface AddInConfiguration {
52230
52232
  * tenant-scoped enable/disable REST endpoints for the reporting feature.
52231
52233
  */
52232
52234
  reportingServices: string;
52235
+ /**
52236
+ * MCP service (octo-mcp-service) public base URL. Optional because older
52237
+ * platform-services deployments do not serve the `mcpServices` field yet —
52238
+ * consumers must hide MCP-dependent UI when it is absent.
52239
+ */
52240
+ mcpServices?: string;
52241
+ /**
52242
+ * Platform service (octo-platform-services) public base URL. Not part of the
52243
+ * `_configuration` payload (the service does not describe itself there) —
52244
+ * apps populate it from their bootstrap config's `platformUri`.
52245
+ */
52246
+ platformServices?: string;
52233
52247
  crateDbAdminUrl: string;
52234
52248
  issuer: string;
52235
52249
  grafanaUrl: string;