@getcatalystiq/agent-plane-ui 0.1.3 → 0.1.4
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.cjs +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -964,7 +964,7 @@ function RunDetailPage({ runId, initialData, initialTranscript }) {
|
|
|
964
964
|
);
|
|
965
965
|
const { data: transcript } = useApi(
|
|
966
966
|
run?.transcript_blob_url ? `transcript-${runId}` : null,
|
|
967
|
-
(client) => client.runs.
|
|
967
|
+
(client) => client.runs.transcriptArray(runId),
|
|
968
968
|
initialTranscript ? { fallbackData: initialTranscript } : void 0
|
|
969
969
|
);
|
|
970
970
|
if (error) {
|
package/dist/index.d.cts
CHANGED
|
@@ -41,6 +41,7 @@ interface AgentPlaneClient {
|
|
|
41
41
|
get(runId: string): Promise<unknown>;
|
|
42
42
|
cancel(runId: string): Promise<unknown>;
|
|
43
43
|
transcript(runId: string): Promise<unknown>;
|
|
44
|
+
transcriptArray(runId: string): Promise<unknown[]>;
|
|
44
45
|
};
|
|
45
46
|
sessions: {
|
|
46
47
|
list(params?: Record<string, unknown>): Promise<unknown>;
|
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ interface AgentPlaneClient {
|
|
|
41
41
|
get(runId: string): Promise<unknown>;
|
|
42
42
|
cancel(runId: string): Promise<unknown>;
|
|
43
43
|
transcript(runId: string): Promise<unknown>;
|
|
44
|
+
transcriptArray(runId: string): Promise<unknown[]>;
|
|
44
45
|
};
|
|
45
46
|
sessions: {
|
|
46
47
|
list(params?: Record<string, unknown>): Promise<unknown>;
|
package/dist/index.js
CHANGED
|
@@ -938,7 +938,7 @@ function RunDetailPage({ runId, initialData, initialTranscript }) {
|
|
|
938
938
|
);
|
|
939
939
|
const { data: transcript } = useApi(
|
|
940
940
|
run?.transcript_blob_url ? `transcript-${runId}` : null,
|
|
941
|
-
(client) => client.runs.
|
|
941
|
+
(client) => client.runs.transcriptArray(runId),
|
|
942
942
|
initialTranscript ? { fallbackData: initialTranscript } : void 0
|
|
943
943
|
);
|
|
944
944
|
if (error) {
|