@@ -136,6 +136,29 @@ import {
136136 ProxyUpdateParams ,
137137 ProxyUpdateResponse ,
138138} from './resources/proxies' ;
139+ import {
140+ Analysis ,
141+ AnalysisSummariesOffsetPagination ,
142+ AnalysisSummary ,
143+ Browser ,
144+ Evidence ,
145+ LookupRequest ,
146+ LookupResponse ,
147+ NoRecommendation ,
148+ Proxy ,
149+ Recommendation ,
150+ RecommendationResult ,
151+ RecommendationSummariesOffsetPagination ,
152+ RecommendationSummary ,
153+ ResolveRequest ,
154+ SiteConfigListParams ,
155+ SiteConfigListRecommendationsParams ,
156+ SiteConfigLookupParams ,
157+ SiteConfigResolveParams ,
158+ SiteConfigResponse ,
159+ SiteConfigs ,
160+ Target ,
161+ } from './resources/site-configs' ;
139162import {
140163 AuditLogEntriesPageTokenPagination ,
141164 AuditLogEntry ,
@@ -1012,6 +1035,10 @@ export class Kernel {
10121035 * Invoke actions and stream or query invocation status and events.
10131036 */
10141037 invocations : API . Invocations = new API . Invocations ( this ) ;
1038+ /**
1039+ * Resolve browser and proxy recommendations for bot-protected sites.
1040+ */
1041+ siteConfigs : API . SiteConfigs = new API . SiteConfigs ( this ) ;
10151042 /**
10161043 * Create and manage browser sessions.
10171044 */
@@ -1063,6 +1090,7 @@ export class Kernel {
10631090Kernel . Deployments = Deployments ;
10641091Kernel . Apps = Apps ;
10651092Kernel . Invocations = Invocations ;
1093+ Kernel . SiteConfigs = SiteConfigs ;
10661094Kernel . Browsers = Browsers ;
10671095Kernel . Profiles = Profiles ;
10681096Kernel . Auth = Auth ;
@@ -1128,6 +1156,30 @@ export declare namespace Kernel {
11281156 type InvocationFollowParams as InvocationFollowParams ,
11291157 } ;
11301158
1159+ export {
1160+ SiteConfigs as SiteConfigs ,
1161+ type Analysis as Analysis ,
1162+ type AnalysisSummary as AnalysisSummary ,
1163+ type Browser as Browser ,
1164+ type Evidence as Evidence ,
1165+ type LookupRequest as LookupRequest ,
1166+ type LookupResponse as LookupResponse ,
1167+ type NoRecommendation as NoRecommendation ,
1168+ type Proxy as Proxy ,
1169+ type Recommendation as Recommendation ,
1170+ type RecommendationResult as RecommendationResult ,
1171+ type RecommendationSummary as RecommendationSummary ,
1172+ type ResolveRequest as ResolveRequest ,
1173+ type SiteConfigResponse as SiteConfigResponse ,
1174+ type Target as Target ,
1175+ type AnalysisSummariesOffsetPagination as AnalysisSummariesOffsetPagination ,
1176+ type RecommendationSummariesOffsetPagination as RecommendationSummariesOffsetPagination ,
1177+ type SiteConfigListParams as SiteConfigListParams ,
1178+ type SiteConfigListRecommendationsParams as SiteConfigListRecommendationsParams ,
1179+ type SiteConfigLookupParams as SiteConfigLookupParams ,
1180+ type SiteConfigResolveParams as SiteConfigResolveParams ,
1181+ } ;
1182+
11311183 export {
11321184 Browsers as Browsers ,
11331185 type BrowserMemory as BrowserMemory ,
0 commit comments