@@ -886,16 +886,46 @@ export class Kernel {
886886
887887 static toFile = Uploads . toFile ;
888888
889+ /**
890+ * Create and manage app deployments and stream deployment events.
891+ */
889892 deployments : API . Deployments = new API . Deployments ( this ) ;
893+ /**
894+ * List applications and versions.
895+ */
890896 apps : API . Apps = new API . Apps ( this ) ;
897+ /**
898+ * Invoke actions and stream or query invocation status and events.
899+ */
891900 invocations : API . Invocations = new API . Invocations ( this ) ;
901+ /**
902+ * Create and manage browser sessions.
903+ */
892904 browsers : API . Browsers = new API . Browsers ( this ) ;
905+ /**
906+ * Create, list, retrieve, and delete browser profiles.
907+ */
893908 profiles : API . Profiles = new API . Profiles ( this ) ;
894909 auth : API . Auth = new API . Auth ( this ) ;
910+ /**
911+ * Create and manage proxy configurations for routing browser traffic.
912+ */
895913 proxies : API . Proxies = new API . Proxies ( this ) ;
914+ /**
915+ * Create, list, retrieve, and delete browser extensions.
916+ */
896917 extensions : API . Extensions = new API . Extensions ( this ) ;
918+ /**
919+ * Create and manage browser pools for acquiring and releasing browsers.
920+ */
897921 browserPools : API . BrowserPools = new API . BrowserPools ( this ) ;
922+ /**
923+ * Create and manage credentials for authentication.
924+ */
898925 credentials : API . Credentials = new API . Credentials ( this ) ;
926+ /**
927+ * Configure external credential providers like 1Password.
928+ */
899929 credentialProviders : API . CredentialProviders = new API . CredentialProviders ( this ) ;
900930}
901931
0 commit comments