@@ -43,6 +43,13 @@ import {
4343 Invocations ,
4444} from './resources/invocations' ;
4545import { ProfileCreateParams , ProfileListResponse , Profiles } from './resources/profiles' ;
46+ import {
47+ Proxies ,
48+ ProxyCreateParams ,
49+ ProxyCreateResponse ,
50+ ProxyListResponse ,
51+ ProxyRetrieveResponse ,
52+ } from './resources/proxies' ;
4653import {
4754 BrowserCreateParams ,
4855 BrowserCreateResponse ,
@@ -820,13 +827,15 @@ export class Kernel {
820827 invocations : API . Invocations = new API . Invocations ( this ) ;
821828 browsers : API . Browsers = new API . Browsers ( this ) ;
822829 profiles : API . Profiles = new API . Profiles ( this ) ;
830+ proxies : API . Proxies = new API . Proxies ( this ) ;
823831}
824832
825833Kernel . Deployments = Deployments ;
826834Kernel . Apps = Apps ;
827835Kernel . Invocations = Invocations ;
828836Kernel . Browsers = Browsers ;
829837Kernel . Profiles = Profiles ;
838+ Kernel . Proxies = Proxies ;
830839
831840export declare namespace Kernel {
832841 export type RequestOptions = Opts . RequestOptions ;
@@ -880,6 +889,14 @@ export declare namespace Kernel {
880889 type ProfileCreateParams as ProfileCreateParams ,
881890 } ;
882891
892+ export {
893+ Proxies as Proxies ,
894+ type ProxyCreateResponse as ProxyCreateResponse ,
895+ type ProxyRetrieveResponse as ProxyRetrieveResponse ,
896+ type ProxyListResponse as ProxyListResponse ,
897+ type ProxyCreateParams as ProxyCreateParams ,
898+ } ;
899+
883900 export type AppAction = API . AppAction ;
884901 export type ErrorDetail = API . ErrorDetail ;
885902 export type ErrorEvent = API . ErrorEvent ;
0 commit comments