patchrelay 0.73.0 → 0.73.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.73.0",
4
- "commit": "46cf80cc9eb7",
5
- "builtAt": "2026-05-24T02:06:29.741Z"
3
+ "version": "0.73.1",
4
+ "commit": "eb806b3f01c6",
5
+ "builtAt": "2026-05-24T23:26:25.110Z"
6
6
  }
@@ -266,6 +266,12 @@ export class CodexAppServerClient extends EventEmitter {
266
266
  ],
267
267
  });
268
268
  }
269
+ async interruptTurn(options) {
270
+ await this.sendRequest("turn/interrupt", {
271
+ threadId: options.threadId,
272
+ expectedTurnId: options.turnId,
273
+ });
274
+ }
269
275
  mapThreadGoal(goal) {
270
276
  return {
271
277
  threadId: String(goal.threadId),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.73.0",
3
+ "version": "0.73.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {