Browse Source

ignore: regen sdk

Aiden Cline 2 months ago
parent
commit
85974e9acd
1 changed files with 6 additions and 2 deletions
  1. 6 2
      packages/sdk/js/src/gen/types.gen.ts

+ 6 - 2
packages/sdk/js/src/gen/types.gen.ts

@@ -1317,6 +1317,10 @@ export type Config = {
      * Enable the batch tool
      */
     batch_tool?: boolean
+    /**
+     * Enable OpenTelemetry spans for AI SDK calls (using the 'experimental_telemetry' flag)
+     */
+    openTelemetry?: boolean
     /**
      * Tools that should only be available to primary agents.
      */
@@ -1816,9 +1820,9 @@ export type PtyConnectData = {
 
 export type PtyConnectErrors = {
   /**
-   * Session not found
+   * Not found
    */
-  404: boolean
+  404: NotFoundError
 }
 
 export type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]