@@ -30,9 +30,20 @@ import {
3030 DeploymentCreateResponse ,
3131 DeploymentFollowResponse ,
3232 DeploymentRetrieveResponse ,
33+ DeploymentStateEvent ,
3334 Deployments ,
3435} from './resources/deployments' ;
3536import { KernelApp } from './core/app-framework' ;
37+ import {
38+ InvocationCreateParams ,
39+ InvocationCreateResponse ,
40+ InvocationFollowResponse ,
41+ InvocationRetrieveResponse ,
42+ InvocationStateEvent ,
43+ InvocationUpdateParams ,
44+ InvocationUpdateResponse ,
45+ Invocations ,
46+ } from './resources/invocations' ;
3647import { AppListParams , AppListResponse , Apps } from './resources/apps/apps' ;
3748import { type Fetch } from './internal/builtin-types' ;
3849import { HeadersLike , NullableHeaders , buildHeaders } from './internal/headers' ;
@@ -761,16 +772,19 @@ export class Kernel {
761772
762773 deployments : API . Deployments = new API . Deployments ( this ) ;
763774 apps : API . Apps = new API . Apps ( this ) ;
775+ invocations : API . Invocations = new API . Invocations ( this ) ;
764776 browsers : API . Browsers = new API . Browsers ( this ) ;
765777}
766778Kernel . Deployments = Deployments ;
767779Kernel . Apps = Apps ;
780+ Kernel . Invocations = Invocations ;
768781Kernel . Browsers = Browsers ;
769782export declare namespace Kernel {
770783 export type RequestOptions = Opts . RequestOptions ;
771784
772785 export {
773786 Deployments as Deployments ,
787+ type DeploymentStateEvent as DeploymentStateEvent ,
774788 type DeploymentCreateResponse as DeploymentCreateResponse ,
775789 type DeploymentRetrieveResponse as DeploymentRetrieveResponse ,
776790 type DeploymentFollowResponse as DeploymentFollowResponse ,
@@ -779,6 +793,17 @@ export declare namespace Kernel {
779793
780794 export { Apps as Apps , type AppListResponse as AppListResponse , type AppListParams as AppListParams } ;
781795
796+ export {
797+ Invocations as Invocations ,
798+ type InvocationStateEvent as InvocationStateEvent ,
799+ type InvocationCreateResponse as InvocationCreateResponse ,
800+ type InvocationRetrieveResponse as InvocationRetrieveResponse ,
801+ type InvocationUpdateResponse as InvocationUpdateResponse ,
802+ type InvocationFollowResponse as InvocationFollowResponse ,
803+ type InvocationCreateParams as InvocationCreateParams ,
804+ type InvocationUpdateParams as InvocationUpdateParams ,
805+ } ;
806+
782807 export {
783808 Browsers as Browsers ,
784809 type BrowserPersistence as BrowserPersistence ,
@@ -788,4 +813,7 @@ export declare namespace Kernel {
788813 type BrowserCreateParams as BrowserCreateParams ,
789814 type BrowserDeleteParams as BrowserDeleteParams ,
790815 } ;
816+
817+ export type ErrorDetail = API . ErrorDetail ;
818+ export type LogEvent = API . LogEvent ;
791819}
0 commit comments