@aouda/client 0.1.6 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -566,6 +566,8 @@ interface ColumnSchema {
566
566
  clusterOrder?: number;
567
567
  /** Reference to another table's column (for relationship navigation). */
568
568
  reference?: ReferenceInfo;
569
+ /** Preferred encoder name when non-default (e.g. String_Dict). */
570
+ encoder?: string;
569
571
  }
570
572
  /**
571
573
  * Storage policy for a table.
@@ -756,6 +758,16 @@ interface BatchMutationResult {
756
758
  /** Server-side execution time in milliseconds. */
757
759
  executionMs: number;
758
760
  }
761
+ /**
762
+ * Options for {@link TableQuery.insert} / {@link TableQuery.insertMany}.
763
+ */
764
+ interface InsertOptions {
765
+ /**
766
+ * When true, store explicit autoIncrement values as-is (including 0).
767
+ * Equivalent to Bond `isAutoIncrementDisabled: true`.
768
+ */
769
+ identityInsert?: boolean;
770
+ }
759
771
  /**
760
772
  * Literal (constant) value node.
761
773
  * @internal
@@ -914,11 +926,55 @@ interface AddColumnRequest {
914
926
  type: string;
915
927
  }
916
928
  /**
917
- * Request body for renaming a column (PATCH /api/databases/{db}/tables/{name}/columns/{columnName}).
929
+ * Request body for altering a column
930
+ * (PATCH /api/databases/{db}/tables/{name}/columns/{columnName}).
931
+ * Omit a property to leave it unchanged. For `references`, omit to leave unchanged;
932
+ * pass `""` or `null` to clear.
918
933
  */
919
- interface RenameColumnRequest {
934
+ interface AlterColumnRequest {
935
+ database?: string;
936
+ newName?: string;
937
+ type?: string;
938
+ nullable?: boolean;
939
+ encoder?: string;
940
+ autoIncrement?: boolean;
941
+ references?: string | null;
942
+ }
943
+ /**
944
+ * @deprecated Use {@link AlterColumnRequest} with `newName`. Kept for rename-only callers.
945
+ */
946
+ type RenameColumnRequest = Pick<AlterColumnRequest, "database" | "newName"> & {
920
947
  database: string;
921
948
  newName: string;
949
+ };
950
+ /**
951
+ * Request body for reordering columns
952
+ * (PUT /api/databases/{db}/tables/{name}/columns:order).
953
+ */
954
+ interface ReorderColumnsRequest {
955
+ database?: string;
956
+ columns: string[];
957
+ }
958
+ /**
959
+ * Single pending-job projection (GET /api/databases/{db}/jobs).
960
+ */
961
+ interface PendingJobResponse {
962
+ id: string;
963
+ type: string;
964
+ state: string;
965
+ createdAt: string;
966
+ startedAt?: string | null;
967
+ completedAt?: string | null;
968
+ error?: string | null;
969
+ /** Parsed params object when ParamsJson is JSON; otherwise a string. */
970
+ params?: unknown;
971
+ }
972
+ /**
973
+ * List response for GET /api/databases/{db}/jobs.
974
+ */
975
+ interface PendingJobListResponse {
976
+ database: string;
977
+ jobs: PendingJobResponse[];
922
978
  }
923
979
  /**
924
980
  * Request body for updating a table's storage policy (PUT /api/databases/{db}/tables/{name}/policy).
@@ -997,6 +1053,12 @@ interface BulkLoadOptions {
997
1053
  onProgress?: (progress: BulkLoadProgress) => void;
998
1054
  /** AbortSignal for cancellation. Issues :abort on the server before throwing. */
999
1055
  signal?: AbortSignal;
1056
+ /**
1057
+ * When true, treat this bulk-load as identity-insert (Bond `isAutoIncrementDisabled: true`):
1058
+ * every autoIncrement column must be present/non-null on every row; values (including `0`)
1059
+ * are stored as-is; after successful commit the server advances the counter to max(inserted).
1060
+ */
1061
+ identityInsert?: boolean;
1000
1062
  }
1001
1063
  interface BulkLoadProgress {
1002
1064
  ivfAssignmentsCompleted: number;
@@ -1911,8 +1973,11 @@ declare class NodeAdminApi {
1911
1973
  type NotificationProviderSource = "db" | "env" | "none";
1912
1974
  /** Information about one configured notification provider (email or SMS). */
1913
1975
  interface NotificationProviderInfo {
1914
- /** Provider identifier, e.g. "sendgrid", "gatewayapi", "console", "none". */
1915
- provider: string;
1976
+ /**
1977
+ * Provider identifier, e.g. "sendgrid", "gatewayapi", "capture", "console",
1978
+ * or null when no provider is active.
1979
+ */
1980
+ provider: string | null;
1916
1981
  /**
1917
1982
  * Where the provider config was loaded from.
1918
1983
  * "db" = persisted in _settings DB; "env" = appsettings/env var; "none" = no provider.
@@ -1952,6 +2017,11 @@ interface PutEmailProviderRequest {
1952
2017
  fromName?: string | null;
1953
2018
  inviteUrl?: string | null;
1954
2019
  passwordResetUrl?: string | null;
2020
+ /**
2021
+ * Required when provider is "capture" and the server is Production.
2022
+ * Confirms OTPs will be visible to server admins via the outbox.
2023
+ */
2024
+ acknowledgeDevCapture?: boolean;
1955
2025
  }
1956
2026
  /** Request body for PUT /admin/notifications/sms. */
1957
2027
  interface PutSmsProviderRequest {
@@ -1960,6 +2030,11 @@ interface PutSmsProviderRequest {
1960
2030
  apiKey?: string | null;
1961
2031
  sender?: string | null;
1962
2032
  baseUrl?: string | null;
2033
+ /**
2034
+ * Required when provider is "capture" and the server is Production.
2035
+ * Confirms OTPs will be visible to server admins via the outbox.
2036
+ */
2037
+ acknowledgeDevCapture?: boolean;
1963
2038
  }
1964
2039
  /** Request body for POST /admin/notifications/email/test. */
1965
2040
  interface TestEmailRequest {
@@ -1977,6 +2052,30 @@ interface TestSendResult {
1977
2052
  /** Error message if success is false. */
1978
2053
  error?: string | null;
1979
2054
  }
2055
+ /** Channel for a captured notification. */
2056
+ type NotificationOutboxChannel = "email" | "sms";
2057
+ /** Kind of captured auth notification. */
2058
+ type NotificationOutboxKind = "password_reset" | "invite" | "mfa_otp" | "test";
2059
+ /** One captured outbound auth notification from GET /admin/notifications/outbox. */
2060
+ interface NotificationOutboxEntry {
2061
+ id: string;
2062
+ channel: NotificationOutboxChannel | string;
2063
+ kind: NotificationOutboxKind | string;
2064
+ to: string;
2065
+ subject: string | null;
2066
+ body: string;
2067
+ otp: string;
2068
+ createdAtUtc: string;
2069
+ }
2070
+ /** Response from GET /admin/notifications/outbox. */
2071
+ interface NotificationOutboxResponse {
2072
+ entries: NotificationOutboxEntry[];
2073
+ }
2074
+ /** Query options for GET /admin/notifications/outbox. */
2075
+ interface NotificationOutboxQuery {
2076
+ channel?: NotificationOutboxChannel | string;
2077
+ limit?: number;
2078
+ }
1980
2079
 
1981
2080
  /**
1982
2081
  * Admin notification provider settings API.
@@ -2021,6 +2120,17 @@ declare class NotificationsAdminApi {
2021
2120
  * POST /admin/notifications/sms/test
2022
2121
  */
2023
2122
  testSms(request: TestSmsRequest): Promise<TestSendResult>;
2123
+ /**
2124
+ * Get recent captured auth notifications (newest first).
2125
+ * GET /admin/notifications/outbox?channel=&limit=
2126
+ */
2127
+ getOutbox(options?: NotificationOutboxQuery): Promise<NotificationOutboxResponse>;
2128
+ /**
2129
+ * Clear the in-memory notification outbox.
2130
+ * DELETE /admin/notifications/outbox
2131
+ */
2132
+ clearOutbox(): Promise<NotificationOutboxResponse>;
2133
+ private buildOutboxPath;
2024
2134
  }
2025
2135
 
2026
2136
  /**
@@ -2761,6 +2871,8 @@ declare class TableQuery<T = Record<string, unknown>> {
2761
2871
  * a Promise. It does not use query builder state (where, orderBy, etc.).
2762
2872
  *
2763
2873
  * @param row - The row data to insert. Keys are column names.
2874
+ * @param row - The row object to insert. Keys are column names.
2875
+ * @param options - Optional insert options (e.g. `identityInsert`).
2764
2876
  * @returns The insert result with row count, execution time, and optional generated values.
2765
2877
  * @throws Error if `row` is null or undefined.
2766
2878
  *
@@ -2771,9 +2883,12 @@ declare class TableQuery<T = Record<string, unknown>> {
2771
2883
  *
2772
2884
  * console.log(result.rowsInserted); // 1
2773
2885
  * console.log(result.generatedValues); // { "0": { id: 42 } }
2886
+ *
2887
+ * // Identity-insert (Bond isAutoIncrementDisabled: true): store explicit IDs including 0
2888
+ * await client.table('orders').insert({ id: 1000, status: 'seeded' }, { identityInsert: true });
2774
2889
  * ```
2775
2890
  */
2776
- insert(row: Partial<T>): Promise<InsertResult>;
2891
+ insert(row: Partial<T>, options?: InsertOptions): Promise<InsertResult>;
2777
2892
  /**
2778
2893
  * Inserts multiple rows into the table in a single request.
2779
2894
  *
@@ -2781,6 +2896,7 @@ declare class TableQuery<T = Record<string, unknown>> {
2781
2896
  * a Promise. It does not use query builder state (where, orderBy, etc.).
2782
2897
  *
2783
2898
  * @param rows - Array of row objects to insert. Must contain at least one row.
2899
+ * @param options - Optional insert options (e.g. `identityInsert`).
2784
2900
  * @returns The insert result with total row count, execution time, and optional generated values.
2785
2901
  * @throws Error if `rows` is empty.
2786
2902
  *
@@ -2793,9 +2909,14 @@ declare class TableQuery<T = Record<string, unknown>> {
2793
2909
  * ]);
2794
2910
  *
2795
2911
  * console.log(result.rowsInserted); // 2
2912
+ *
2913
+ * await client.table('orders').insertMany(
2914
+ * [{ id: 10 }, { id: 20 }],
2915
+ * { identityInsert: true },
2916
+ * );
2796
2917
  * ```
2797
2918
  */
2798
- insertMany(rows: Partial<T>[]): Promise<InsertResult>;
2919
+ insertMany(rows: Partial<T>[], options?: InsertOptions): Promise<InsertResult>;
2799
2920
  /**
2800
2921
  * Updates rows matching the current where predicates.
2801
2922
  *
@@ -2946,14 +3067,31 @@ declare class TablesApi {
2946
3067
  */
2947
3068
  addColumn(tableName: string, body: AddColumnRequest): Promise<ColumnSchema | undefined>;
2948
3069
  /**
2949
- * Renames a column.
3070
+ * Alters a column (type, nullable, encoder, autoIncrement, references, and/or rename).
3071
+ * PATCH /api/databases/{db}/tables/{t}/columns/{c}.
3072
+ * Omit a property to leave it unchanged. For `references`, omit unchanged; `""` or `null` clears.
2950
3073
  * @param tableName - Table name.
2951
3074
  * @param columnName - Current column name.
2952
- * @param body - Request body (database, newName).
3075
+ * @param body - Fields to change. `database` is injected from the client scope when omitted.
3076
+ * @returns Updated column detail.
3077
+ */
3078
+ alterColumn(tableName: string, columnName: string, body: AlterColumnRequest): Promise<ColumnSchema | undefined>;
3079
+ /**
3080
+ * Renames a column (convenience wrapper over {@link alterColumn}).
3081
+ * @param tableName - Table name.
3082
+ * @param columnName - Current column name.
3083
+ * @param body - Request body with newName (database optional; injected when omitted).
2953
3084
  * @returns 200 response body (column detail).
2954
3085
  * @throws AoudaNotFoundError if table or column does not exist; AoudaApiError for WRITE_NOT_ALLOWED, etc.
2955
3086
  */
2956
- renameColumn(tableName: string, columnName: string, body: RenameColumnRequest): Promise<ColumnSchema | undefined>;
3087
+ renameColumn(tableName: string, columnName: string, body: RenameColumnRequest | AlterColumnRequest): Promise<ColumnSchema | undefined>;
3088
+ /**
3089
+ * Reorders columns in a table.
3090
+ * PUT /api/databases/{db}/tables/{t}/columns:order (204 No Content).
3091
+ * @param tableName - Table name.
3092
+ * @param columnsOrBody - Ordered column names, or a request body with `columns`.
3093
+ */
3094
+ reorderColumns(tableName: string, columnsOrBody: string[] | ReorderColumnsRequest): Promise<void>;
2957
3095
  /**
2958
3096
  * Drops a column from a table.
2959
3097
  * @param tableName - Table name.
@@ -3038,6 +3176,11 @@ declare class DatabasesApi {
3038
3176
  * Uses server endpoints under /api/databases/{db}/schema.
3039
3177
  */
3040
3178
 
3179
+ /**
3180
+ * Schema change classification (matches server `SchemaChangeType` enum names).
3181
+ * Unknown future values may appear as plain strings at runtime.
3182
+ */
3183
+ type SchemaChangeType = "CreateTable" | "DropTable" | "AddColumn" | "DropColumn" | "UpdatePolicy" | "UpdateDurability" | "UpdatePartitionLevelSecurity" | "UpdateAuthorizationOptions" | "UpdateTableCulture" | "UpdateSettings" | "UpdateColumnAutoIncrement" | "UpdateColumnType" | "UpdateColumnNullable" | "UpdateColumnEncoder" | "RenameColumn" | "ReorderColumns" | "UpdateColumnReferences" | "UpdateColumnDefault" | "UpdateColumnDescription" | "UpdateTablePrimaryKey";
3041
3184
  /** Server diff result (matches SchemaDiffResult). */
3042
3185
  interface SchemaDiffResult {
3043
3186
  changes: SchemaChange[];
@@ -3045,7 +3188,7 @@ interface SchemaDiffResult {
3045
3188
  warnings?: SchemaChangeWarning[];
3046
3189
  }
3047
3190
  interface SchemaChange {
3048
- type: string;
3191
+ type: SchemaChangeType | (string & {});
3049
3192
  tableName?: string | null;
3050
3193
  columnName?: string | null;
3051
3194
  isDestructive: boolean;
@@ -3080,7 +3223,7 @@ interface SchemaApplyResult {
3080
3223
  summary: ApplyResultSummary;
3081
3224
  }
3082
3225
  interface ApplyResultEntry {
3083
- changeType: string;
3226
+ changeType: SchemaChangeType | (string & {});
3084
3227
  tableName?: string | null;
3085
3228
  columnName?: string | null;
3086
3229
  status: string;
@@ -3226,6 +3369,31 @@ declare class BranchesApi {
3226
3369
  delete(name: string): Promise<void>;
3227
3370
  }
3228
3371
 
3372
+ /**
3373
+ * Pending / background jobs API for @aouda/client.
3374
+ * Projects GET /api/databases/{db}/jobs from the server.
3375
+ */
3376
+
3377
+ /**
3378
+ * API for listing and inspecting server background jobs (e.g. ColumnRewrite).
3379
+ * Access via `client.jobs`.
3380
+ */
3381
+ declare class JobsApi {
3382
+ private readonly transport;
3383
+ private readonly database;
3384
+ constructor(transport: Transport, database: string);
3385
+ private get prefix();
3386
+ /**
3387
+ * Lists jobs whose params target this database.
3388
+ */
3389
+ list(): Promise<PendingJobListResponse>;
3390
+ /**
3391
+ * Gets a single job by id when it belongs to this database.
3392
+ * @param jobId - Job GUID string.
3393
+ */
3394
+ get(jobId: string): Promise<PendingJobResponse>;
3395
+ }
3396
+
3229
3397
  /**
3230
3398
  * Materialized query HTTP API (`/api/databases/{db}/materialized-queries`).
3231
3399
  */
@@ -3366,6 +3534,7 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3366
3534
  private readonly database;
3367
3535
  private connected;
3368
3536
  private readonly _tables;
3537
+ private readonly _jobs;
3369
3538
  private readonly _databases;
3370
3539
  private readonly _schema;
3371
3540
  private readonly _branches;
@@ -3449,6 +3618,11 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3449
3618
  * @returns The tables API.
3450
3619
  */
3451
3620
  get tables(): TablesApi;
3621
+ /**
3622
+ * Access pending/background jobs for the current database (e.g. ColumnRewrite).
3623
+ * @returns The jobs API.
3624
+ */
3625
+ get jobs(): JobsApi;
3452
3626
  /**
3453
3627
  * Access server-level database operations (list, create, get, drop).
3454
3628
  * @returns The databases API.
@@ -3573,4 +3747,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3573
3747
  */
3574
3748
  declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
3575
3749
 
3576
- export { type BranchInfo as $, AoudaClient as A, type BulkLoadOptions as B, type CoverageResponse as C, type DetailedHealthResponse as D, type AggregateFunctionName as E, type FailoverClusterResponse as F, type AoudaClientOptions as G, type HealthStatus as H, type AoudaDataType as I, type JoinClusterRequest as J, type AppAuthOptions as K, type ListBackupsResponse as L, AuthClient as M, type NodeInfoResponse as N, type AuthResult as O, type PromoteClusterResponse as P, type AuthUserInfo as Q, type ReplicationStatusResponse as R, type SchemaLike as S, type Transport as T, type AuthorizationMode as U, BackupAdminApi as V, type BackupMetrics as W, type BackupSummary as X, type BatchMutationResult as Y, type BatchOperationInput as Z, type BloomFilterMetrics as _, type BulkLoadJobHandle as a, NodeAdminApi as a$, BranchesApi as a0, type BulkLoadForceAbortRequest as a1, type BulkLoadForceAbortResponse as a2, type BulkLoadListResponse as a3, type BulkLoadProgress as a4, type BulkLoadReplicaProgress as a5, type BulkLoadReplicaProgressDto as a6, type BulkLoadStatusResponse as a7, CircuitBreakerPolicy as a8, ClusterAdminApi as a9, type IndexInfo as aA, type InsertResult as aB, type IoMetrics as aC, type LatencyPercentiles as aD, MaterializedQueriesApi as aE, type MaterializedQueryDefinition as aF, type MaterializedQueryExecuteOptions as aG, type MaterializedQueryExecuteResult as aH, type MaterializedQueryMetrics as aI, type MaterializedQueryRefreshOptions as aJ, MaterializedQueryState as aK, type MaterializedQueryStateNumber as aL, type MaterializedQueryStatus as aM, MaterializedQueryType as aN, type MaterializedQueryTypeNumber as aO, type MemberInfo as aP, type MemoryMetrics as aQ, type MergeBranchOptions as aR, type MergeConflict as aS, type MergeExecutionResult as aT, type MergeResult as aU, MetricsAdminApi as aV, type MetricsHistory as aW, type MetricsHistoryOptions as aX, type MetricsSnapshot as aY, type MetricsSummary as aZ, type MutationResult as a_, type ClusterMemberEntry as aa, type ClusterThisNodeEntry as ab, type ColumnSchema as ac, type ColumnSummaryForErd as ad, type ColumnarResponse as ae, type ComponentHealthEntry as af, type ComputedColumnDef as ag, ConfigAdminApi as ah, type CreateBranchRequest as ai, type CreateColumnRequest as aj, type CreateDatabaseOptions as ak, type CreatePartitionGrantRequest as al, type CreateRlsResolverRequest as am, type CreateTableRequest as an, type DatabaseCoverageEntry as ao, type DatabaseInfo as ap, type DatabaseMemoryMetrics as aq, type DatabaseMemoryUsage as ar, type DatabaseMetricsDto as as, type DatabaseOptionsInfo as at, DatabasesApi as au, type DeleteOptions as av, type DiffSummary as aw, FILTER_OPERATORS as ax, type FilterOperator as ay, HealthAdminApi as az, type TopologyResponse as b, type TypeGenerationOptions as b$, type NodeLogEntry as b0, type NodeLogLevel as b1, type NodeLogStreamOptions as b2, type NodeLogsQuery as b3, type NodeLogsResponse as b4, type OpenWriteStreamOptions as b5, type PageCacheMetrics as b6, type PartitionFunction as b7, type PartitionGrant as b8, type PartitionGrantsListResponse as b9, type ServerAuthOptions as bA, type ServerMemoryResponse as bB, type ServerMetricsResponse as bC, type ServiceInfo as bD, type SimdMetrics as bE, type SingleDatabaseMetricsResponse as bF, type SortDirection as bG, type StorageMetrics as bH, type SubscribeOptions as bI, type Subscription as bJ, type SubscriptionChangeEvent as bK, type SubscriptionEvent as bL, type SubscriptionInfo as bM, type SubscriptionSnapshotEvent as bN, TIME_BUCKET_FUNCTIONS as bO, type TableCoverageEntry as bP, type TableNameFromSchema as bQ, type TablePolicy as bR, TableQuery as bS, type TableSchema as bT, type TableSchemaResponse as bU, type TableSummary as bV, type TableSummaryForErd as bW, TablesApi as bX, type TimeBucketFunction as bY, type TimeSeriesMetrics as bZ, type TransactionMetrics as b_, type PartitioningMetrics as ba, type PerDatabaseLagEntry as bb, type PerDatabaseMetrics as bc, type PerDatabaseStatusEntry as bd, type QueryMetrics as be, type QueryResult as bf, type QueryStats as bg, type ReferenceInfo as bh, type RelationshipEndpoint as bi, type RelationshipInfo as bj, type RenameColumnRequest as bk, type RenameTableRequest as bl, ReplicationAdminApi as bm, type ReplicationMetrics as bn, type ResidencyConfig as bo, RetryPolicy as bp, type RlsResolver as bq, type RlsResolverRule as br, type RlsResolverRuleInput as bs, type RlsResolversListResponse as bt, type SchemaChange as bu, type SchemaDiffResult as bv, type SchemaRelationshipsResponse as bw, type SeedApplyResult as bx, type SeedTableApplyResult as by, ServerAdminApi as bz, type ReadinessResponse as c, type UpdateOptions as c0, type UpdateRlsResolverRequest as c1, type UpdateTableOptionsRequest as c2, type UpdateTablePolicyRequest as c3, type UserProfile as c4, WhereGroupBuilder as c5, type WhereOperator as c6, type WriteStream as c7, coerceColumnarValue as c8, createAoudaClient as c9, type TriggerBackupRequest as d, type TriggerBackupResponse as e, type RestoreBackupResponse as f, type BackupSchedule as g, type JoinClusterResponse as h, type LeaveClusterResponse as i, type DrainClusterResponse as j, type ClusterConfigResponse as k, type ClusterConfigPatchRequest as l, type DefaultSchema as m, AGGREGATE_FUNCTIONS as n, AOUDA_DATA_TYPES as o, type AddColumnRequest as p, AdminApi as q, type AdminBackupConfig as r, type AdminBackupPatch as s, type AdminConfigPatchRequest as t, type AdminConfigResponse as u, type AdminConfigSchemaResponse as v, type AdminLoggingConfig as w, type AdminLoggingPatch as x, type AdminMemoryConfig as y, type AdminMemoryPatch as z };
3750
+ export { type BloomFilterMetrics as $, AoudaClient as A, type BulkLoadOptions as B, type CoverageResponse as C, type DetailedHealthResponse as D, type AggregateFunctionName as E, type FailoverClusterResponse as F, type AlterColumnRequest as G, type HealthStatus as H, type AoudaClientOptions as I, type JoinClusterRequest as J, type AoudaDataType as K, type ListBackupsResponse as L, type AppAuthOptions as M, type NodeInfoResponse as N, AuthClient as O, type PromoteClusterResponse as P, type AuthResult as Q, type ReplicationStatusResponse as R, type SchemaLike as S, type Transport as T, type AuthUserInfo as U, type AuthorizationMode as V, BackupAdminApi as W, type BackupMetrics as X, type BackupSummary as Y, type BatchMutationResult as Z, type BatchOperationInput as _, type BulkLoadJobHandle as a, type MetricsSnapshot as a$, type BranchInfo as a0, BranchesApi as a1, type BulkLoadForceAbortRequest as a2, type BulkLoadForceAbortResponse as a3, type BulkLoadListResponse as a4, type BulkLoadProgress as a5, type BulkLoadReplicaProgress as a6, type BulkLoadReplicaProgressDto as a7, type BulkLoadStatusResponse as a8, CircuitBreakerPolicy as a9, HealthAdminApi as aA, type IndexInfo as aB, type InsertOptions as aC, type InsertResult as aD, type IoMetrics as aE, JobsApi as aF, type LatencyPercentiles as aG, MaterializedQueriesApi as aH, type MaterializedQueryDefinition as aI, type MaterializedQueryExecuteOptions as aJ, type MaterializedQueryExecuteResult as aK, type MaterializedQueryMetrics as aL, type MaterializedQueryRefreshOptions as aM, MaterializedQueryState as aN, type MaterializedQueryStateNumber as aO, type MaterializedQueryStatus as aP, MaterializedQueryType as aQ, type MaterializedQueryTypeNumber as aR, type MemberInfo as aS, type MemoryMetrics as aT, type MergeBranchOptions as aU, type MergeConflict as aV, type MergeExecutionResult as aW, type MergeResult as aX, MetricsAdminApi as aY, type MetricsHistory as aZ, type MetricsHistoryOptions as a_, ClusterAdminApi as aa, type ClusterMemberEntry as ab, type ClusterThisNodeEntry as ac, type ColumnSchema as ad, type ColumnSummaryForErd as ae, type ColumnarResponse as af, type ComponentHealthEntry as ag, type ComputedColumnDef as ah, ConfigAdminApi as ai, type CreateBranchRequest as aj, type CreateColumnRequest as ak, type CreateDatabaseOptions as al, type CreatePartitionGrantRequest as am, type CreateRlsResolverRequest as an, type CreateTableRequest as ao, type DatabaseCoverageEntry as ap, type DatabaseInfo as aq, type DatabaseMemoryMetrics as ar, type DatabaseMemoryUsage as as, type DatabaseMetricsDto as at, type DatabaseOptionsInfo as au, DatabasesApi as av, type DeleteOptions as aw, type DiffSummary as ax, FILTER_OPERATORS as ay, type FilterOperator as az, type TopologyResponse as b, type TableSchemaResponse as b$, type MetricsSummary as b0, type MutationResult as b1, NodeAdminApi as b2, type NodeLogEntry as b3, type NodeLogLevel as b4, type NodeLogStreamOptions as b5, type NodeLogsQuery as b6, type NodeLogsResponse as b7, type OpenWriteStreamOptions as b8, type PageCacheMetrics as b9, type SchemaChange as bA, type SchemaChangeType as bB, type SchemaDiffResult as bC, type SchemaRelationshipsResponse as bD, type SeedApplyResult as bE, type SeedTableApplyResult as bF, ServerAdminApi as bG, type ServerAuthOptions as bH, type ServerMemoryResponse as bI, type ServerMetricsResponse as bJ, type ServiceInfo as bK, type SimdMetrics as bL, type SingleDatabaseMetricsResponse as bM, type SortDirection as bN, type StorageMetrics as bO, type SubscribeOptions as bP, type Subscription as bQ, type SubscriptionChangeEvent as bR, type SubscriptionEvent as bS, type SubscriptionInfo as bT, type SubscriptionSnapshotEvent as bU, TIME_BUCKET_FUNCTIONS as bV, type TableCoverageEntry as bW, type TableNameFromSchema as bX, type TablePolicy as bY, TableQuery as bZ, type TableSchema as b_, type PartitionFunction as ba, type PartitionGrant as bb, type PartitionGrantsListResponse as bc, type PartitioningMetrics as bd, type PendingJobListResponse as be, type PendingJobResponse as bf, type PerDatabaseLagEntry as bg, type PerDatabaseMetrics as bh, type PerDatabaseStatusEntry as bi, type QueryMetrics as bj, type QueryResult as bk, type QueryStats as bl, type ReferenceInfo as bm, type RelationshipEndpoint as bn, type RelationshipInfo as bo, type RenameColumnRequest as bp, type RenameTableRequest as bq, type ReorderColumnsRequest as br, ReplicationAdminApi as bs, type ReplicationMetrics as bt, type ResidencyConfig as bu, RetryPolicy as bv, type RlsResolver as bw, type RlsResolverRule as bx, type RlsResolverRuleInput as by, type RlsResolversListResponse as bz, type ReadinessResponse as c, type TableSummary as c0, type TableSummaryForErd as c1, TablesApi as c2, type TimeBucketFunction as c3, type TimeSeriesMetrics as c4, type TransactionMetrics as c5, type TypeGenerationOptions as c6, type UpdateOptions as c7, type UpdateRlsResolverRequest as c8, type UpdateTableOptionsRequest as c9, type UpdateTablePolicyRequest as ca, type UserProfile as cb, WhereGroupBuilder as cc, type WhereOperator as cd, type WriteStream as ce, coerceColumnarValue as cf, createAoudaClient as cg, type TriggerBackupRequest as d, type TriggerBackupResponse as e, type RestoreBackupResponse as f, type BackupSchedule as g, type JoinClusterResponse as h, type LeaveClusterResponse as i, type DrainClusterResponse as j, type ClusterConfigResponse as k, type ClusterConfigPatchRequest as l, type DefaultSchema as m, AGGREGATE_FUNCTIONS as n, AOUDA_DATA_TYPES as o, type AddColumnRequest as p, AdminApi as q, type AdminBackupConfig as r, type AdminBackupPatch as s, type AdminConfigPatchRequest as t, type AdminConfigResponse as u, type AdminConfigSchemaResponse as v, type AdminLoggingConfig as w, type AdminLoggingPatch as x, type AdminMemoryConfig as y, type AdminMemoryPatch as z };