@letta-ai/letta-code 0.29.0 → 0.29.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/dist/app-server-client.js +10 -1
- package/dist/app-server-client.js.map +3 -3
- package/dist/types/app-server-client.d.ts +2 -1
- package/dist/types/app-server-client.d.ts.map +1 -1
- package/dist/types/types/app-server-info.d.ts +23 -0
- package/dist/types/types/app-server-info.d.ts.map +1 -0
- package/dist/types/types/app-server-protocol.d.ts +2 -0
- package/dist/types/types/app-server-protocol.d.ts.map +1 -1
- package/dist/types/types/conversation-fork-protocol.d.ts +9 -0
- package/dist/types/types/conversation-fork-protocol.d.ts.map +1 -0
- package/dist/types/types/protocol_v2.d.ts +4 -8
- package/dist/types/types/protocol_v2.d.ts.map +1 -1
- package/letta.js +74831 -81761
- package/package.json +5 -5
- package/scripts/source-file-size-baseline.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@letta-ai/letta-code",
|
|
3
|
-
"version": "0.29.
|
|
3
|
+
"version": "0.29.2",
|
|
4
4
|
"description": "Letta Code is a CLI tool for interacting with stateful Letta agents from the terminal.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "bun@1.3.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"exports": {
|
|
31
31
|
".": "./letta.js",
|
|
32
32
|
"./app-server-protocol": {
|
|
33
|
-
"types": "./dist/types/app-server-protocol.d.ts"
|
|
33
|
+
"types": "./dist/types/types/app-server-protocol.d.ts"
|
|
34
34
|
},
|
|
35
35
|
"./app-server-client": {
|
|
36
36
|
"types": "./dist/types/app-server-client.d.ts",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"import": "./dist/app-server-client.js"
|
|
39
39
|
},
|
|
40
40
|
"./protocol": {
|
|
41
|
-
"types": "./dist/types/protocol.d.ts"
|
|
41
|
+
"types": "./dist/types/types/protocol.d.ts"
|
|
42
42
|
},
|
|
43
43
|
"./agent-presets": {
|
|
44
44
|
"types": "./dist/types/agent-presets.d.ts",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"./dist/types/agent-presets.d.ts"
|
|
152
152
|
],
|
|
153
153
|
"app-server-protocol": [
|
|
154
|
-
"./dist/types/app-server-protocol.d.ts"
|
|
154
|
+
"./dist/types/types/app-server-protocol.d.ts"
|
|
155
155
|
],
|
|
156
156
|
"app-server-client": [
|
|
157
157
|
"./dist/types/app-server-client.d.ts"
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"./dist/types/channels-slack.d.ts"
|
|
164
164
|
],
|
|
165
165
|
"protocol": [
|
|
166
|
-
"./dist/types/protocol.d.ts"
|
|
166
|
+
"./dist/types/types/protocol.d.ts"
|
|
167
167
|
]
|
|
168
168
|
}
|
|
169
169
|
}
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"src/websocket/listener/commands/memory.ts": 1114,
|
|
48
48
|
"src/websocket/listener/file-commands.ts": 1030,
|
|
49
49
|
"src/websocket/listener/lifecycle.ts": 1779,
|
|
50
|
-
"src/websocket/listener/protocol-inbound.ts":
|
|
50
|
+
"src/websocket/listener/protocol-inbound.ts": 2290,
|
|
51
51
|
"src/websocket/listener/protocol-outbound.ts": 1128
|
|
52
52
|
}
|