codex-relay 1.4.10 → 1.4.11

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.
Files changed (2) hide show
  1. package/dist/src.js +5 -2
  2. package/package.json +1 -1
package/dist/src.js CHANGED
@@ -192,7 +192,6 @@ var CodexAppServerClient = class {
192
192
  do {
193
193
  const response = await this.request("thread/list", {
194
194
  archived: false,
195
- cursor,
196
195
  limit,
197
196
  sortDirection: "desc",
198
197
  sortKey: "recency_at",
@@ -201,7 +200,11 @@ var CodexAppServerClient = class {
201
200
  "vscode",
202
201
  "exec",
203
202
  "appServer"
204
- ]
203
+ ],
204
+ ...cursor ? {
205
+ cursor,
206
+ useStateDbOnly: true
207
+ } : {}
205
208
  });
206
209
  threads.push(...response.data);
207
210
  const nextCursor = response.nextCursor ?? void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-relay",
3
- "version": "1.4.10",
3
+ "version": "1.4.11",
4
4
  "description": "Local Codex Relay CLI bridge for the Codex Relay mobile app.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {