@letta-ai/letta-code 0.12.9-next.1 → 0.12.9-next.2
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/letta.js +4 -4
- package/package.json +1 -1
package/letta.js
CHANGED
|
@@ -3291,7 +3291,7 @@ var package_default;
|
|
|
3291
3291
|
var init_package = __esm(() => {
|
|
3292
3292
|
package_default = {
|
|
3293
3293
|
name: "@letta-ai/letta-code",
|
|
3294
|
-
version: "0.12.9-next.
|
|
3294
|
+
version: "0.12.9-next.2",
|
|
3295
3295
|
description: "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
|
|
3296
3296
|
type: "module",
|
|
3297
3297
|
bin: {
|
|
@@ -75022,7 +75022,7 @@ ${newState.originalPrompt}`
|
|
|
75022
75022
|
try {
|
|
75023
75023
|
const client = await getClient2();
|
|
75024
75024
|
const agent = await client.agents.retrieve(agentId);
|
|
75025
|
-
const { pendingApprovals: existingApprovals } = await getResumeData2(client, agent);
|
|
75025
|
+
const { pendingApprovals: existingApprovals } = await getResumeData2(client, agent, conversationIdRef.current);
|
|
75026
75026
|
if (!existingApprovals || existingApprovals.length === 0) {
|
|
75027
75027
|
return { blocked: false };
|
|
75028
75028
|
}
|
|
@@ -76486,7 +76486,7 @@ DO NOT respond to these messages or otherwise consider them in your response unl
|
|
|
76486
76486
|
try {
|
|
76487
76487
|
const client = await getClient2();
|
|
76488
76488
|
const agent = await client.agents.retrieve(agentId);
|
|
76489
|
-
const { pendingApprovals: existingApprovals } = await getResumeData2(client, agent);
|
|
76489
|
+
const { pendingApprovals: existingApprovals } = await getResumeData2(client, agent, conversationIdRef.current);
|
|
76490
76490
|
if (userCancelledRef.current || abortControllerRef.current?.signal.aborted) {
|
|
76491
76491
|
buffersRef.current.byId.delete(userId);
|
|
76492
76492
|
const orderIndex = buffersRef.current.order.indexOf(userId);
|
|
@@ -82017,4 +82017,4 @@ Error during initialization: ${message}`);
|
|
|
82017
82017
|
}
|
|
82018
82018
|
main();
|
|
82019
82019
|
|
|
82020
|
-
//# debugId=
|
|
82020
|
+
//# debugId=5852A7F4B6CAE61064756E2164756E21
|