@iblai/mcp 1.12.11 → 1.12.13
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-utils.d.ts","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;
|
|
1
|
+
{"version":3,"file":"web-utils.d.ts","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;CA8ZpB,CAAC"}
|
|
@@ -392,6 +392,12 @@ open, refuses clicks on them, withholds their content, and redirects a watcher
|
|
|
392
392
|
who deep-links into a restricted tab (or the Overview landing page) to the first
|
|
393
393
|
tab they may open.
|
|
394
394
|
|
|
395
|
+
The profile **Management** panel (\`Admin\`) applies it too: a pure watcher gets
|
|
396
|
+
the **Users** tab and nothing else — no Groups, Roles, Policies, Teams, Alerts,
|
|
397
|
+
Applications or Onboarding — and gets Users even without
|
|
398
|
+
\`/platforms/{tenant}/#can_manage_users\`, since \`UsersTab\` serves them the users
|
|
399
|
+
they may watch rather than the tenant roster.
|
|
400
|
+
|
|
395
401
|
\`WATCHER_HIDDEN_REPORTS\` lists the Data Reports cards a watcher must not see
|
|
396
402
|
(currently \`User Group Metrics\`); \`AnalyticsReports\` filters them alongside the
|
|
397
403
|
tenant's own \`disabledReports\`.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-utils.js","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,GAAG,EAAE,0BAA0B;IAC/B,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,eAAe;IACzB,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"web-utils.js","sourceRoot":"","sources":["../../src/resources/web-utils.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,QAAQ,GAAG;IACtB,GAAG,EAAE,0BAA0B;IAC/B,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,8CAA8C;IAC3D,QAAQ,EAAE,eAAe;IACzB,OAAO,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwZV;CACA,CAAC"}
|
|
@@ -1474,7 +1474,7 @@ endpoints (30d default) and \`llm-usage\` (\`today\` default) can never disagree
|
|
|
1474
1474
|
**File Location**: \`packages/web-containers/src/components/analytics/analytics-global-filters-context.tsx\``,
|
|
1475
1475
|
AnalyticsLlmUsageStats: `# AnalyticsLlmUsageStats Component
|
|
1476
1476
|
|
|
1477
|
-
The Langfuse side of the Cost
|
|
1477
|
+
The Langfuse side of the Cost tab (the "Usage & latency" sub-tab):
|
|
1478
1478
|
token/call/latency KPIs, spend over time stacked by service, spend by model,
|
|
1479
1479
|
and latency percentiles (p50/p95) per model. Rendered by
|
|
1480
1480
|
\`AnalyticsFinancialStats\` — hosts rarely mount it directly.
|
|
@@ -1499,7 +1499,7 @@ sub-tab.
|
|
|
1499
1499
|
**File Location**: \`packages/web-containers/src/components/analytics/analytics-llm-usage-stats.tsx\``,
|
|
1500
1500
|
AnalyticsTraces: `# AnalyticsTraces Component
|
|
1501
1501
|
|
|
1502
|
-
Trace explorer for the Cost
|
|
1502
|
+
Trace explorer for the Cost tab: paginated trace list (filter by
|
|
1503
1503
|
service and user, plus session) into one trace into its observations as a waterfall
|
|
1504
1504
|
with per-span model, tokens and cost. Rendered by \`AnalyticsFinancialStats\`
|
|
1505
1505
|
as the "Traces" sub-tab.
|
|
@@ -1701,7 +1701,7 @@ const { data: status } = useGetMemsearchStatusQuery({ org: tenantKey, userId: us
|
|
|
1701
1701
|
- The **Memories by Category** breakdown only renders on the agent scope — it is the one scope with an unpaginated source to aggregate the full filtered set from. See \`useMemory\`.
|
|
1702
1702
|
- The category filter is likewise agent-scope only: categories belong to a single agent and no other endpoint accepts the param.
|
|
1703
1703
|
- The content search commits on Enter/blur, not per keystroke.
|
|
1704
|
-
- The user filter (\`UserFilterSelect\`, shared with the transcripts filter row and the Cost
|
|
1704
|
+
- The user filter (\`UserFilterSelect\`, shared with the transcripts filter row and the Cost **Traces** sub-tab) lists tenant users from \`GET /api/core/platform/users/\` for admins, and from \`GET /api/core/users/accessible/\` with \`required_action=Ibl.Mentor/Memory/list\` for pure watchers (\`isPureWatcher\`), whom the platform endpoint 403s — that call returns only the users whose memories they may list. The accessible endpoint filters per field rather than with one search param, so a typed term containing \`@\` is sent as \`email\` and anything else as \`username\`.
|
|
1705
1705
|
- \`UserFilterSelect\` leads the list with a "You" entry that clears the filter back to the caller (and drops the caller from the list below it), which is what an empty value means to the memory endpoints. Surfaces where an empty value means "every user" — transcripts and traces — pass \`showSelfOption={false}\`: the trigger then reads "All users" and the caller stays in the list like anyone else.
|
|
1706
1706
|
- Users viewing their own memories should pass \`myMemory\`, which bypasses the RBAC scope check server-side.
|
|
1707
1707
|
|