소스 검색

ignore: regen sdk

Aiden Cline 9 달 전
부모
커밋
85974e9acd
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  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]