@sentry/junior-dashboard 0.73.0 → 0.74.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/app.js
CHANGED
|
@@ -1562,6 +1562,7 @@ function createMockConversationReporting(reporting) {
|
|
|
1562
1562
|
getRuntimeInfo: reporting.getRuntimeInfo,
|
|
1563
1563
|
getPlugins: reporting.getPlugins,
|
|
1564
1564
|
getSkills: reporting.getSkills,
|
|
1565
|
+
listRecentConversations: reporting.listRecentConversations,
|
|
1565
1566
|
async getSessions() {
|
|
1566
1567
|
const mockFeed = mockSessionFeed(Date.now());
|
|
1567
1568
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Conversation } from "../types";
|
|
2
|
-
/** Render compact conversation
|
|
2
|
+
/** Render compact conversation details aligned to row context. */
|
|
3
3
|
export declare function ConversationRowStats(props: {
|
|
4
4
|
conversation: Conversation;
|
|
5
5
|
timeLabel: string;
|
package/dist/handler.js
CHANGED
|
@@ -1565,6 +1565,7 @@ function createMockConversationReporting(reporting) {
|
|
|
1565
1565
|
getRuntimeInfo: reporting.getRuntimeInfo,
|
|
1566
1566
|
getPlugins: reporting.getPlugins,
|
|
1567
1567
|
getSkills: reporting.getSkills,
|
|
1568
|
+
listRecentConversations: reporting.listRecentConversations,
|
|
1568
1569
|
async getSessions() {
|
|
1569
1570
|
const mockFeed = mockSessionFeed(Date.now());
|
|
1570
1571
|
try {
|
package/dist/index.js
CHANGED
|
@@ -1576,6 +1576,7 @@ function createMockConversationReporting(reporting) {
|
|
|
1576
1576
|
getRuntimeInfo: reporting.getRuntimeInfo,
|
|
1577
1577
|
getPlugins: reporting.getPlugins,
|
|
1578
1578
|
getSkills: reporting.getSkills,
|
|
1579
|
+
listRecentConversations: reporting.listRecentConversations,
|
|
1579
1580
|
async getSessions() {
|
|
1580
1581
|
const mockFeed = mockSessionFeed(Date.now());
|
|
1581
1582
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/junior-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -37,18 +37,19 @@
|
|
|
37
37
|
"nitro": "3.0.260522-beta",
|
|
38
38
|
"react": "^19.2.6",
|
|
39
39
|
"react-dom": "^19.2.6",
|
|
40
|
+
"react-is": "^19.2.6",
|
|
40
41
|
"react-router": "^7.16.0",
|
|
41
42
|
"recharts": "^3.8.1",
|
|
42
43
|
"shiki": "4.1.0",
|
|
43
|
-
"@sentry/junior": "0.
|
|
44
|
-
"@sentry/junior-plugin-api": "0.
|
|
44
|
+
"@sentry/junior": "0.74.1",
|
|
45
|
+
"@sentry/junior-plugin-api": "0.74.1"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@tailwindcss/cli": "^4.3.0",
|
|
48
49
|
"@types/node": "^25.9.1",
|
|
49
50
|
"@types/react": "^19.2.15",
|
|
50
51
|
"@types/react-dom": "^19.2.3",
|
|
51
|
-
"@vitest/coverage-v8": "
|
|
52
|
+
"@vitest/coverage-v8": "4.1.7",
|
|
52
53
|
"tailwindcss": "^4.3.0",
|
|
53
54
|
"tsup": "^8.5.1",
|
|
54
55
|
"typescript": "^6.0.3",
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
} from "../format";
|
|
6
6
|
import type { Conversation } from "../types";
|
|
7
7
|
|
|
8
|
-
/** Render compact conversation
|
|
8
|
+
/** Render compact conversation details aligned to row context. */
|
|
9
9
|
export function ConversationRowStats(props: {
|
|
10
10
|
conversation: Conversation;
|
|
11
11
|
timeLabel: string;
|
|
@@ -974,6 +974,7 @@ export function createMockConversationReporting(
|
|
|
974
974
|
getRuntimeInfo: reporting.getRuntimeInfo,
|
|
975
975
|
getPlugins: reporting.getPlugins,
|
|
976
976
|
getSkills: reporting.getSkills,
|
|
977
|
+
listRecentConversations: reporting.listRecentConversations,
|
|
977
978
|
async getSessions() {
|
|
978
979
|
const mockFeed = mockSessionFeed(Date.now());
|
|
979
980
|
try {
|