@@ -18,7 +18,6 @@ import * as API from './resources/index';
18
18
import { APIPromise } from './core/api-promise' ;
19
19
import {
20
20
AgentProfileCreateParams ,
21
- AgentProfileDeleteResponse ,
22
21
AgentProfileListParams ,
23
22
AgentProfileListResponse ,
24
23
AgentProfileUpdateParams ,
@@ -27,7 +26,6 @@ import {
27
26
} from './resources/agent-profiles' ;
28
27
import {
29
28
BrowserProfileCreateParams ,
30
- BrowserProfileDeleteResponse ,
31
29
BrowserProfileListParams ,
32
30
BrowserProfileListResponse ,
33
31
BrowserProfileUpdateParams ,
@@ -41,10 +39,6 @@ import {
41
39
TaskListParams ,
42
40
TaskListResponse ,
43
41
TaskRetrieveLogsResponse ,
44
- TaskRetrieveOutputFileParams ,
45
- TaskRetrieveOutputFileResponse ,
46
- TaskRetrieveParams ,
47
- TaskRetrieveResponse ,
48
42
TaskStatus ,
49
43
TaskUpdateParams ,
50
44
TaskView ,
@@ -248,10 +242,6 @@ export class BrowserUse {
248
242
return ;
249
243
}
250
244
251
- protected async authHeaders ( opts : FinalRequestOptions ) : Promise < NullableHeaders | undefined > {
252
- return buildHeaders ( [ { 'X-Browser-Use-API-Key' : this . apiKey } ] ) ;
253
- }
254
-
255
245
/**
256
246
* Basic re-implementation of `qs.stringify` for primitive types.
257
247
*/
@@ -689,7 +679,6 @@ export class BrowserUse {
689
679
...( options . timeout ? { 'X-Stainless-Timeout' : String ( Math . trunc ( options . timeout / 1000 ) ) } : { } ) ,
690
680
...getPlatformHeaders ( ) ,
691
681
} ,
692
- await this . authHeaders ( options ) ,
693
682
this . _options . defaultHeaders ,
694
683
bodyHeaders ,
695
684
options . headers ,
@@ -773,15 +762,11 @@ export declare namespace BrowserUse {
773
762
type LlmModel as LlmModel ,
774
763
type TaskStatus as TaskStatus ,
775
764
type TaskView as TaskView ,
776
- type TaskRetrieveResponse as TaskRetrieveResponse ,
777
765
type TaskListResponse as TaskListResponse ,
778
766
type TaskRetrieveLogsResponse as TaskRetrieveLogsResponse ,
779
- type TaskRetrieveOutputFileResponse as TaskRetrieveOutputFileResponse ,
780
767
type TaskCreateParams as TaskCreateParams ,
781
- type TaskRetrieveParams as TaskRetrieveParams ,
782
768
type TaskUpdateParams as TaskUpdateParams ,
783
769
type TaskListParams as TaskListParams ,
784
- type TaskRetrieveOutputFileParams as TaskRetrieveOutputFileParams ,
785
770
} ;
786
771
787
772
export {
@@ -799,7 +784,6 @@ export declare namespace BrowserUse {
799
784
type BrowserProfileView as BrowserProfileView ,
800
785
type ProxyCountryCode as ProxyCountryCode ,
801
786
type BrowserProfileListResponse as BrowserProfileListResponse ,
802
- type BrowserProfileDeleteResponse as BrowserProfileDeleteResponse ,
803
787
type BrowserProfileCreateParams as BrowserProfileCreateParams ,
804
788
type BrowserProfileUpdateParams as BrowserProfileUpdateParams ,
805
789
type BrowserProfileListParams as BrowserProfileListParams ,
@@ -809,7 +793,6 @@ export declare namespace BrowserUse {
809
793
AgentProfiles as AgentProfiles ,
810
794
type AgentProfileView as AgentProfileView ,
811
795
type AgentProfileListResponse as AgentProfileListResponse ,
812
- type AgentProfileDeleteResponse as AgentProfileDeleteResponse ,
813
796
type AgentProfileCreateParams as AgentProfileCreateParams ,
814
797
type AgentProfileUpdateParams as AgentProfileUpdateParams ,
815
798
type AgentProfileListParams as AgentProfileListParams ,
0 commit comments