@@ -15,7 +15,13 @@ import { stringifyQuery } from './internal/utils/query';
1515import { VERSION } from './version' ;
1616import * as Errors from './core/error' ;
1717import * as Pagination from './core/pagination' ;
18- import { AbstractPage , type OffsetPaginationParams , OffsetPaginationResponse } from './core/pagination' ;
18+ import {
19+ AbstractPage ,
20+ type OffsetPaginationParams ,
21+ OffsetPaginationResponse ,
22+ type PageTokenPaginationParams ,
23+ PageTokenPaginationResponse ,
24+ } from './core/pagination' ;
1925import * as Uploads from './core/uploads' ;
2026import * as API from './resources/index' ;
2127import { APIPromise } from './core/api-promise' ;
@@ -36,6 +42,12 @@ import {
3642 browserRoutingSubresourcesFromEnv ,
3743 createRoutingFetch ,
3844} from './lib/browser-routing' ;
45+ import {
46+ AuditLogEntriesPageTokenPagination ,
47+ AuditLogEntry ,
48+ AuditLogListParams ,
49+ AuditLogs ,
50+ } from './resources/audit-logs' ;
3951import {
4052 BrowserPool ,
4153 BrowserPoolAcquireParams ,
@@ -1005,6 +1017,10 @@ export class Kernel {
10051017 */
10061018 projects : API . Projects = new API . Projects ( this ) ;
10071019 organization : API . Organization = new API . Organization ( this ) ;
1020+ /**
1021+ * Read audit log records for the authenticated organization.
1022+ */
1023+ auditLogs : API . AuditLogs = new API . AuditLogs ( this ) ;
10081024 /**
10091025 * Create and manage API keys for organization and project-scoped access.
10101026 */
@@ -1027,12 +1043,19 @@ Kernel.BrowserPools = BrowserPools;
10271043Kernel . Credentials = Credentials ;
10281044Kernel . Projects = Projects ;
10291045Kernel . Organization = Organization ;
1046+ Kernel . AuditLogs = AuditLogs ;
10301047Kernel . APIKeys = APIKeys ;
10311048Kernel . CredentialProviders = CredentialProviders ;
10321049
10331050export declare namespace Kernel {
10341051 export type RequestOptions = Opts . RequestOptions ;
10351052
1053+ export import PageTokenPagination = Pagination . PageTokenPagination ;
1054+ export {
1055+ type PageTokenPaginationParams as PageTokenPaginationParams ,
1056+ type PageTokenPaginationResponse as PageTokenPaginationResponse ,
1057+ } ;
1058+
10361059 export import OffsetPagination = Pagination . OffsetPagination ;
10371060 export {
10381061 type OffsetPaginationParams as OffsetPaginationParams ,
@@ -1164,6 +1187,13 @@ export declare namespace Kernel {
11641187
11651188 export { Organization as Organization } ;
11661189
1190+ export {
1191+ AuditLogs as AuditLogs ,
1192+ type AuditLogEntry as AuditLogEntry ,
1193+ type AuditLogEntriesPageTokenPagination as AuditLogEntriesPageTokenPagination ,
1194+ type AuditLogListParams as AuditLogListParams ,
1195+ } ;
1196+
11671197 export {
11681198 APIKeys as APIKeys ,
11691199 type APIKey as APIKey ,
0 commit comments