@aouda/client 0.1.12 → 0.1.14

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.
@@ -432,6 +432,8 @@ interface QueryStats {
432
432
  segmentsAccessed: number;
433
433
  /** Query execution time in milliseconds. */
434
434
  executionMs: number;
435
+ /** True when DISTINCT was served from the partition directory. Omitted when false. */
436
+ distinctServedFromPartitionMetadata?: boolean;
435
437
  }
436
438
  /**
437
439
  * Result of a query execution.
@@ -444,6 +446,8 @@ interface QueryResult<T = Record<string, unknown>> {
444
446
  stats: QueryStats;
445
447
  /** Additive warnings (e.g. named-query deprecation). */
446
448
  warnings?: ResultWarning[];
449
+ /** Total matching rows when the named query declared `count`. */
450
+ totalMatches?: number;
447
451
  }
448
452
  /** Additive result warning from the server. */
449
453
  interface ResultWarning {
@@ -464,6 +468,8 @@ interface WherePredicate {
464
468
  column: string;
465
469
  op: WireOperator;
466
470
  value: unknown;
471
+ /** When true, bind skips this condition unless the named param is present (D-34). */
472
+ whenParamPresent?: boolean;
467
473
  }
468
474
  /**
469
475
  * Where clause structure for the wire protocol.
@@ -526,6 +532,8 @@ interface ColumnarResponse {
526
532
  rowCount: number;
527
533
  stats: QueryStats;
528
534
  warnings?: ResultWarning[];
535
+ /** Total matching rows when the named query declared `count`. */
536
+ totalMatches?: number;
529
537
  }
530
538
  /**
531
539
  * Summary of a table returned by list().
@@ -566,6 +574,8 @@ interface TableSchema {
566
574
  rlsResolverName?: string;
567
575
  /** IETF culture tag for locale-aware date/number parsing (e.g. "en-US", "en-GB"). Null = ISO defaults. */
568
576
  culture?: string | null;
577
+ /** When true, browser-tier credentials on the data-plane listener may touch this table. Omit/false = fail-closed. */
578
+ dataPlaneAccess?: boolean;
569
579
  }
570
580
  /**
571
581
  * Schema definition for a single column.
@@ -647,6 +657,8 @@ interface TableSchemaResponse {
647
657
  rlsResolverName?: string;
648
658
  /** IETF culture tag for locale-aware date/number parsing (e.g. "en-US", "en-GB"). Null = ISO defaults. */
649
659
  culture?: string | null;
660
+ /** When true, browser-tier credentials on the data-plane listener may touch this table. Omit/false = fail-closed. */
661
+ dataPlaneAccess?: boolean;
650
662
  }
651
663
  /**
652
664
  * Index information (placeholder for future index management).
@@ -931,6 +943,8 @@ interface CreateTableRequest {
931
943
  rlsResolverName?: string;
932
944
  /** IETF culture tag for locale-aware date/number parsing (e.g. "en-US", "en-GB"). Null/omit = ISO defaults. */
933
945
  culture?: string | null;
946
+ /** When true, browser-tier credentials on the data-plane listener may touch this table. Omit/false = fail-closed. */
947
+ dataPlaneAccess?: boolean;
934
948
  }
935
949
  /**
936
950
  * Request body for updating table options (PUT /api/databases/{db}/tables/{name}/options).
@@ -947,6 +961,8 @@ interface UpdateTableOptionsRequest {
947
961
  rlsResolverName?: string | null;
948
962
  /** IETF culture tag. Null to clear. */
949
963
  culture?: string | null;
964
+ /** When true, browser-tier credentials on the data-plane listener may touch this table. Null/omit = unchanged. */
965
+ dataPlaneAccess?: boolean | null;
950
966
  }
951
967
  /**
952
968
  * Request body for renaming a table (PATCH /api/databases/{db}/tables/{name}).
@@ -1097,6 +1113,22 @@ interface BulkLoadOptions {
1097
1113
  * are stored as-is; after successful commit the server advances the counter to max(inserted).
1098
1114
  */
1099
1115
  identityInsert?: boolean;
1116
+ /**
1117
+ * When true, expand the lock set to the transform-graph closure and land rows via the
1118
+ * bulk-load coordinator. Mutually exclusive with {@link BulkLoadOptions.preTransformed}.
1119
+ * Compute-bearing tables require exactly one of `applyTransforms` or `preTransformed`.
1120
+ * Both true → server `BULK_LOAD_TRANSFORM_INTENT_CONFLICT`; neither →
1121
+ * `BULK_LOAD_TRANSFORM_INTENT_REQUIRED`. The client does not throw locally when both
1122
+ * are set; the server is the source of truth.
1123
+ */
1124
+ applyTransforms?: boolean;
1125
+ /**
1126
+ * When true, write named tables as-is (no pipeline). Mutually exclusive with
1127
+ * {@link BulkLoadOptions.applyTransforms}. Compute-bearing tables require exactly one
1128
+ * of `applyTransforms` or `preTransformed`. The client does not throw locally when both
1129
+ * are set; the server is the source of truth.
1130
+ */
1131
+ preTransformed?: boolean;
1100
1132
  }
1101
1133
  interface BulkLoadProgress {
1102
1134
  ivfAssignmentsCompleted: number;
@@ -2448,6 +2480,8 @@ interface AuthMessage {
2448
2480
  interface ConflateOptions {
2449
2481
  key?: string[];
2450
2482
  interval_ms: number;
2483
+ /** When true, matching inserts are held latest-wins per key (D-32). Default omitted/false. */
2484
+ collapse_inserts?: boolean;
2451
2485
  }
2452
2486
  interface SubscribeMessage {
2453
2487
  type: "subscribe";
@@ -2458,6 +2492,7 @@ interface SubscribeMessage {
2458
2492
  hash?: string;
2459
2493
  args?: Record<string, unknown>;
2460
2494
  conflate?: ConflateOptions;
2495
+ orderByIndex?: number;
2461
2496
  }
2462
2497
  interface ReAuthMessage {
2463
2498
  type: "re_auth";
@@ -2509,6 +2544,7 @@ interface SnapshotCompleteMessage {
2509
2544
  id: string;
2510
2545
  version: number;
2511
2546
  row_count: number;
2547
+ total_matches?: number;
2512
2548
  warnings?: Array<{
2513
2549
  code: string;
2514
2550
  hash?: string;
@@ -2575,6 +2611,7 @@ interface SubscriptionSnapshotEvent<T = Record<string, unknown>> {
2575
2611
  type: "snapshot";
2576
2612
  rows: T[];
2577
2613
  version: number;
2614
+ totalMatches?: number;
2578
2615
  }
2579
2616
  interface SubscriptionChangeEvent<T = Record<string, unknown>> {
2580
2617
  type: "change";
@@ -2587,7 +2624,7 @@ interface SubscriptionChangeEvent<T = Record<string, unknown>> {
2587
2624
  }
2588
2625
  type SubscriptionEvent<T = Record<string, unknown>> = SubscriptionSnapshotEvent<T> | SubscriptionChangeEvent<T>;
2589
2626
  interface SubscribeOptions<T = Record<string, unknown>> {
2590
- onSnapshot?: (rows: T[], version: number) => void;
2627
+ onSnapshot?: (rows: T[], version: number, totalMatches?: number) => void;
2591
2628
  onChange?: (event: SubscriptionChangeEvent<T>) => void;
2592
2629
  onError?: (error: Error) => void;
2593
2630
  filter?: Record<string, unknown>;
@@ -3296,6 +3333,187 @@ declare class DatabasesApi {
3296
3333
  drop(databaseName: string): Promise<void>;
3297
3334
  }
3298
3335
 
3336
+ /**
3337
+ * Schema-file types for `aouda.schema.json` (engine `Aouda.Engine.Schema.Models`).
3338
+ * Property names match the file JSON, not HTTP GET table (`isNullable` / `primaryKeyOrder`).
3339
+ */
3340
+
3341
+ /** One partition-key entry: column name and optional partition function. */
3342
+ interface SchemaPartitionKeyEntry {
3343
+ column: string;
3344
+ function?: string;
3345
+ }
3346
+ /** Per-table policy in the schema file. */
3347
+ interface SchemaTablePolicy {
3348
+ storageTemperature?: string;
3349
+ }
3350
+ /** Per-table durability overrides in the schema file. */
3351
+ interface SchemaTableDurability {
3352
+ walEnabled?: boolean;
3353
+ replicationFactor?: number;
3354
+ }
3355
+ /** Database-level durability in schema settings. */
3356
+ interface SchemaSettingsDurability {
3357
+ walEnabled?: boolean;
3358
+ replicationFactor?: number;
3359
+ }
3360
+ /** Database-level settings in the schema file. */
3361
+ interface SchemaSettings {
3362
+ durability?: SchemaSettingsDurability;
3363
+ allowTruncatingTimestampToDate?: boolean;
3364
+ }
3365
+ /**
3366
+ * Column definition in the schema file. Keys are column names; values are these objects.
3367
+ * Uses schema-file names (`nullable`, `primaryKey`), not HTTP `ColumnSchema`.
3368
+ */
3369
+ interface SchemaColumnDefinition {
3370
+ type: string;
3371
+ primaryKey?: number;
3372
+ autoIncrement?: boolean;
3373
+ nullable?: boolean;
3374
+ references?: string;
3375
+ partitionFunction?: string;
3376
+ encoder?: string;
3377
+ default?: string;
3378
+ description?: string;
3379
+ /** Write-time derived expression (stored, not virtual). */
3380
+ derived?: ScalarExprNode;
3381
+ unique?: boolean;
3382
+ }
3383
+ /** A single insert-time `route` or `tee` transform. */
3384
+ interface SchemaTableTransform {
3385
+ name: string;
3386
+ kind: "route" | "tee" | (string & {});
3387
+ when: WhereClause;
3388
+ to: string;
3389
+ }
3390
+ /** Table definition in the schema file. Keys are table names; values are these objects. */
3391
+ interface SchemaTableDefinition {
3392
+ columns?: Record<string, SchemaColumnDefinition>;
3393
+ partitionKey?: SchemaPartitionKeyEntry[];
3394
+ clusterColumns?: string[];
3395
+ policy?: SchemaTablePolicy;
3396
+ durability?: SchemaTableDurability;
3397
+ partitionLevelSecurity?: boolean;
3398
+ authMode?: string;
3399
+ permissionDimension?: string;
3400
+ rlsResolverName?: string;
3401
+ culture?: string;
3402
+ checks?: Record<string, WhereClause>;
3403
+ transforms?: SchemaTableTransform[];
3404
+ dataPlaneAccess?: boolean;
3405
+ }
3406
+ /** Optional declared constraints on a named-query or named-mutation parameter. */
3407
+ interface NamedQueryParamConstraint {
3408
+ required?: boolean;
3409
+ min?: number;
3410
+ max?: number;
3411
+ enum?: unknown[];
3412
+ maxLength?: number;
3413
+ maxItems?: number;
3414
+ }
3415
+ /**
3416
+ * Named-query template in `namedQueries`. Identity is the content hash of the body;
3417
+ * export JSON has no `hash` field.
3418
+ */
3419
+ interface NamedQueryDefinition {
3420
+ table: string;
3421
+ where?: WhereClause;
3422
+ select?: string[];
3423
+ selectExpr?: ComputedColumnDef[];
3424
+ joins?: JoinClause[];
3425
+ orderBy?: OrderByClause[];
3426
+ orderByChoices?: OrderByClause[][];
3427
+ distinct?: boolean;
3428
+ count?: boolean;
3429
+ limit?: number;
3430
+ offset?: number;
3431
+ limitParam?: string;
3432
+ offsetParam?: string;
3433
+ params?: Record<string, NamedQueryParamConstraint>;
3434
+ version?: string;
3435
+ deprecatedAt?: string;
3436
+ sunsetAt?: string;
3437
+ }
3438
+ /**
3439
+ * Named-mutation template in `namedMutations`. No definer / `runAs`.
3440
+ */
3441
+ interface NamedMutationDefinition {
3442
+ op: string;
3443
+ table: string;
3444
+ where?: WhereClause;
3445
+ set?: Record<string, unknown>;
3446
+ setExpr?: Record<string, ScalarExprNode>;
3447
+ values?: Record<string, unknown>;
3448
+ returning?: string[];
3449
+ limit?: number;
3450
+ orderBy?: OrderByClause[];
3451
+ limitParam?: string;
3452
+ params?: Record<string, NamedQueryParamConstraint>;
3453
+ version?: string;
3454
+ deprecatedAt?: string;
3455
+ sunsetAt?: string;
3456
+ }
3457
+ /** Group-by term object form. JSON also accepts a bare column-name string. */
3458
+ interface SchemaGroupByTerm {
3459
+ column: string;
3460
+ function?: string;
3461
+ outputName?: string;
3462
+ }
3463
+ /** One aggregate computation in an aggregate materialized query. */
3464
+ interface SchemaAggregateColumn {
3465
+ function: string;
3466
+ outputName: string;
3467
+ sourceColumn?: string;
3468
+ orderByColumn?: string;
3469
+ descending?: boolean;
3470
+ }
3471
+ /** A single filter comparison. */
3472
+ interface SchemaFilterCondition {
3473
+ column: string;
3474
+ op: string;
3475
+ value?: unknown;
3476
+ }
3477
+ /** Filter predicate (`condition` / `and` / `or`), matching HTTP filter config. */
3478
+ interface SchemaFilterPredicate {
3479
+ condition?: SchemaFilterCondition;
3480
+ and?: SchemaFilterCondition[];
3481
+ or?: SchemaFilterCondition[];
3482
+ }
3483
+ /** Optional storage options for a materialized query result. */
3484
+ interface SchemaMaterializedStorage {
3485
+ storageTemperature?: string;
3486
+ }
3487
+ /**
3488
+ * Materialized-query declaration in `materializedQueries`.
3489
+ * `groupBy` items are a column-name string or `{ column, function?, outputName? }`.
3490
+ */
3491
+ interface SchemaMaterializedQuery {
3492
+ type: string;
3493
+ sourceTable: string;
3494
+ groupBy?: Array<string | SchemaGroupByTerm>;
3495
+ orderBy?: string;
3496
+ descending?: boolean;
3497
+ select?: string[];
3498
+ aggregates?: SchemaAggregateColumn[];
3499
+ predicate?: SchemaFilterPredicate;
3500
+ updateMode?: string;
3501
+ storage?: SchemaMaterializedStorage;
3502
+ }
3503
+ /** Root type for `aouda.schema.json`. */
3504
+ interface SchemaDocument {
3505
+ $schema?: string;
3506
+ database?: string;
3507
+ tables?: Record<string, SchemaTableDefinition>;
3508
+ settings?: SchemaSettings;
3509
+ extends?: string;
3510
+ namedQueries?: Record<string, NamedQueryDefinition>;
3511
+ dropNamedQueries?: string[];
3512
+ namedMutations?: Record<string, NamedMutationDefinition>;
3513
+ dropNamedMutations?: string[];
3514
+ materializedQueries?: Record<string, SchemaMaterializedQuery>;
3515
+ }
3516
+
3299
3517
  /**
3300
3518
  * Schema management API: diff, apply, export, history.
3301
3519
  * Uses server endpoints under /api/databases/{db}/schema.
@@ -3305,7 +3523,7 @@ declare class DatabasesApi {
3305
3523
  * Schema change classification (matches server `SchemaChangeType` enum names).
3306
3524
  * Unknown future values may appear as plain strings at runtime.
3307
3525
  */
3308
- type SchemaChangeType = "CreateTable" | "DropTable" | "AddColumn" | "DropColumn" | "UpdatePolicy" | "UpdateDurability" | "UpdatePartitionLevelSecurity" | "UpdateAuthorizationOptions" | "UpdateTableCulture" | "UpdateSettings" | "UpdateColumnAutoIncrement" | "UpdateColumnType" | "UpdateColumnNullable" | "UpdateColumnEncoder" | "RenameColumn" | "ReorderColumns" | "UpdateColumnReferences" | "UpdateColumnDefault" | "UpdateColumnDescription" | "UpdateTablePrimaryKey";
3526
+ type SchemaChangeType = "CreateTable" | "DropTable" | "AddColumn" | "DropColumn" | "UpdatePolicy" | "UpdateDurability" | "UpdatePartitionLevelSecurity" | "UpdateAuthorizationOptions" | "UpdateTableCulture" | "UpdateSettings" | "UpdateColumnAutoIncrement" | "UpdateColumnType" | "UpdateColumnNullable" | "UpdateColumnEncoder" | "RenameColumn" | "ReorderColumns" | "UpdateColumnReferences" | "UpdateColumnDefault" | "UpdateColumnDescription" | "UpdateTablePrimaryKey" | "UpdateDataPlaneAccess" | "UpdateColumnDerived" | "UpdateColumnUnique" | "UpdateTableChecks" | "UpdateTableTransforms" | "CreateNamedQuery" | "RetargetNamedQueryAlias" | "DeprecateNamedQuery" | "RemoveNamedQuery" | "CreateNamedMutation" | "RetargetNamedMutationAlias" | "DeprecateNamedMutation" | "RemoveNamedMutation" | "CreateMaterializedQuery" | "ReplaceMaterializedQuery" | "DropMaterializedQuery";
3309
3527
  /** Server diff result (matches SchemaDiffResult). */
3310
3528
  interface SchemaDiffResult {
3311
3529
  changes: SchemaChange[];
@@ -3398,18 +3616,18 @@ declare class SchemaApi {
3398
3616
  * @param desired - Schema document (merged from file + overlay).
3399
3617
  * @param format - "json" (default) or "markdown".
3400
3618
  */
3401
- diff(desired: Record<string, unknown>, format?: "json" | "markdown"): Promise<SchemaDiffResult | string>;
3619
+ diff(desired: SchemaDocument | Record<string, unknown>, format?: "json" | "markdown"): Promise<SchemaDiffResult | string>;
3402
3620
  /**
3403
3621
  * Apply desired schema to the database.
3404
3622
  */
3405
- apply(desired: Record<string, unknown>, options?: {
3623
+ apply(desired: SchemaDocument | Record<string, unknown>, options?: {
3406
3624
  allowDestructive?: boolean;
3407
3625
  dryRun?: boolean;
3408
3626
  }): Promise<SchemaApplyResponse>;
3409
3627
  /**
3410
3628
  * Export current database schema as JSON (aouda.schema.json format).
3411
3629
  */
3412
- export(): Promise<Record<string, unknown>>;
3630
+ export(): Promise<SchemaDocument>;
3413
3631
  /**
3414
3632
  * Get paginated migration history (newest first).
3415
3633
  */
@@ -3636,16 +3854,21 @@ declare class MaterializedQueriesApi {
3636
3854
 
3637
3855
  interface NamedQueryExecuteOptions {
3638
3856
  signal?: AbortSignal;
3857
+ /** 0-based index into the definition's `orderByChoices`. Sibling of `args`, not a named-query param. */
3858
+ orderByIndex?: number;
3639
3859
  }
3640
3860
  interface NamedQuerySubscribeOptions<T = Record<string, unknown>> {
3641
- onSnapshot?: (rows: T[], version: number) => void;
3861
+ onSnapshot?: (rows: T[], version: number, totalMatches?: number) => void;
3642
3862
  onChange?: (event: SubscriptionChangeEvent<T>) => void;
3643
3863
  onError?: (error: Error) => void;
3644
3864
  conflate?: ConflateOptions;
3865
+ /** 0-based index into the definition's `orderByChoices`. */
3866
+ orderByIndex?: number;
3645
3867
  }
3646
3868
  interface NamedQueryBatchItem {
3647
3869
  hash: string;
3648
3870
  args?: Record<string, unknown>;
3871
+ orderByIndex?: number;
3649
3872
  }
3650
3873
  interface NamedQueryBatchSlotResult<T = Record<string, unknown>> {
3651
3874
  isError: boolean;
@@ -3678,6 +3901,77 @@ declare class NamedMutationsApi {
3678
3901
  execute(hash: string, args?: Record<string, unknown>): Promise<NamedMutationResult>;
3679
3902
  }
3680
3903
 
3904
+ /**
3905
+ * Policy inspect API: POST /api/databases/{db}/policy/inspect.
3906
+ * Admin-gated; the existing client bearer is sufficient. Does not validate identities locally.
3907
+ */
3908
+
3909
+ /** One partition grant on a user identity (`aouda.identities.json`). */
3910
+ interface TestIdentityGrant {
3911
+ dimension: string;
3912
+ partitionKey: string;
3913
+ accessLevel?: string;
3914
+ }
3915
+ /** One named synthetic principal. */
3916
+ interface TestIdentity {
3917
+ kind?: string;
3918
+ userId?: string;
3919
+ email?: string;
3920
+ roles?: string[];
3921
+ claims?: Record<string, string>;
3922
+ grants?: TestIdentityGrant[];
3923
+ }
3924
+ /** Root of `aouda.identities.json`. Sibling of the schema — never applied, never persisted. */
3925
+ interface TestIdentityDocument {
3926
+ $schema?: string;
3927
+ identities: Record<string, TestIdentity>;
3928
+ }
3929
+ interface PolicyInspectVectorProbe {
3930
+ table: string;
3931
+ column: string;
3932
+ embedding: number[];
3933
+ }
3934
+ interface PolicyInspectTraverseStart {
3935
+ table: string;
3936
+ startNodeId: number;
3937
+ hops?: number;
3938
+ }
3939
+ /** Body for `POST /api/databases/{db}/policy/inspect`. */
3940
+ interface PolicyInspectRequest {
3941
+ identity?: TestIdentity;
3942
+ document?: TestIdentityDocument;
3943
+ identityName?: string;
3944
+ tables?: string[];
3945
+ includeSample?: boolean;
3946
+ sampleLimit?: number;
3947
+ vectorProbe?: PolicyInspectVectorProbe;
3948
+ traverseStart?: PolicyInspectTraverseStart;
3949
+ }
3950
+ interface PolicyInspectTableResult {
3951
+ table: string;
3952
+ visibility: "full" | "filtered" | "none" | (string & {});
3953
+ pls?: WhereClause;
3954
+ rls?: WhereClause;
3955
+ effective?: WhereClause;
3956
+ effectiveHash?: string;
3957
+ message?: string;
3958
+ /** Tabular samples are row-object arrays; vector/edge/MQ differ. */
3959
+ sample?: unknown;
3960
+ sampleReason?: "probe_required" | "sample_failed" | (string & {});
3961
+ }
3962
+ interface PolicyInspectResponse {
3963
+ identityName?: string;
3964
+ tables: PolicyInspectTableResult[];
3965
+ }
3966
+ declare class PolicyApi {
3967
+ private readonly transport;
3968
+ private readonly database;
3969
+ constructor(transport: Transport, database: string);
3970
+ inspect(body: PolicyInspectRequest, options?: {
3971
+ signal?: AbortSignal;
3972
+ }): Promise<PolicyInspectResponse>;
3973
+ }
3974
+
3681
3975
  /**
3682
3976
  * @aouda/client — AoudaClient implementation.
3683
3977
  */
@@ -3715,6 +4009,7 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3715
4009
  private readonly _materializedQueries;
3716
4010
  private readonly _namedQueries;
3717
4011
  private readonly _namedMutations;
4012
+ private readonly _policy;
3718
4013
  private readonly _auth;
3719
4014
  private readonly _authHandler;
3720
4015
  private readonly _streamingEnableCompression;
@@ -3830,6 +4125,10 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3830
4125
  * Hash-only named-mutation execute. No batch.
3831
4126
  */
3832
4127
  get namedMutations(): NamedMutationsApi;
4128
+ /**
4129
+ * Policy inspect (`POST …/policy/inspect`). Admin on the data DB.
4130
+ */
4131
+ get policy(): PolicyApi;
3833
4132
  /**
3834
4133
  * Access auth operations (signUp, signIn, signOut, refresh, me, changePassword).
3835
4134
  * @returns The auth API.
@@ -3930,4 +4229,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
3930
4229
  */
3931
4230
  declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
3932
4231
 
3933
- 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 SubscriptionEvent as b$, type MetricsSummary as b0, type MutationResult as b1, type NamedArtifactWarning as b2, type NamedMutationResult as b3, NamedMutationsApi as b4, NamedQueriesApi as b5, type NamedQueryBatchItem as b6, type NamedQueryBatchSlotResult as b7, type NamedQueryExecuteOptions as b8, type NamedQuerySubscribeOptions as b9, ReplicationAdminApi as bA, type ReplicationMetrics as bB, type ResidencyConfig as bC, type ResultWarning as bD, RetryPolicy as bE, type RlsResolver as bF, type RlsResolverRule as bG, type RlsResolverRuleInput as bH, type RlsResolversListResponse as bI, type SchemaChange as bJ, type SchemaChangeType as bK, type SchemaDiffResult as bL, type SchemaRelationshipsResponse as bM, type SeedApplyResult as bN, type SeedTableApplyResult as bO, ServerAdminApi as bP, type ServerAuthOptions as bQ, type ServerMemoryResponse as bR, type ServerMetricsResponse as bS, type ServiceInfo as bT, type SimdMetrics as bU, type SingleDatabaseMetricsResponse as bV, type SortDirection as bW, type StorageMetrics as bX, type SubscribeOptions as bY, type Subscription as bZ, type SubscriptionChangeEvent as b_, NodeAdminApi as ba, type NodeLogEntry as bb, type NodeLogLevel as bc, type NodeLogStreamOptions as bd, type NodeLogsQuery as be, type NodeLogsResponse as bf, type OpenWriteStreamOptions as bg, type PageCacheMetrics as bh, type PartitionFunction as bi, type PartitionGrant as bj, type PartitionGrantsListResponse as bk, type PartitioningMetrics as bl, type PendingJobListResponse as bm, type PendingJobResponse as bn, type PerDatabaseLagEntry as bo, type PerDatabaseMetrics as bp, type PerDatabaseStatusEntry as bq, type QueryMetrics as br, type QueryResult as bs, type QueryStats as bt, type ReferenceInfo as bu, type RelationshipEndpoint as bv, type RelationshipInfo as bw, type RenameColumnRequest as bx, type RenameTableRequest as by, type ReorderColumnsRequest as bz, type ReadinessResponse as c, type SubscriptionInfo as c0, type SubscriptionSnapshotEvent as c1, TIME_BUCKET_FUNCTIONS as c2, type TableCoverageEntry as c3, type TableNameFromSchema as c4, type TablePolicy as c5, TableQuery as c6, type TableSchema as c7, type TableSchemaResponse as c8, type TableSummary as c9, type TableSummaryForErd as ca, TablesApi as cb, type TimeBucketFunction as cc, type TimeSeriesMetrics as cd, type TransactionMetrics as ce, type TypeGenerationOptions as cf, type UpdateOptions as cg, type UpdateRlsResolverRequest as ch, type UpdateTableOptionsRequest as ci, type UpdateTablePolicyRequest as cj, type UserProfile as ck, type WalMetrics as cl, WhereGroupBuilder as cm, type WhereOperator as cn, type WriteStream as co, coerceColumnarValue as cp, columnarToRows as cq, createAoudaClient as cr, 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 };
4232
+ 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 SchemaMaterializedQuery as b$, type MetricsSummary as b0, type MutationResult as b1, type NamedArtifactWarning as b2, type NamedMutationDefinition as b3, type NamedMutationResult as b4, NamedMutationsApi as b5, NamedQueriesApi as b6, type NamedQueryBatchItem as b7, type NamedQueryBatchSlotResult as b8, type NamedQueryDefinition as b9, type QueryMetrics as bA, type QueryResult as bB, type QueryStats as bC, type ReferenceInfo as bD, type RelationshipEndpoint as bE, type RelationshipInfo as bF, type RenameColumnRequest as bG, type RenameTableRequest as bH, type ReorderColumnsRequest as bI, ReplicationAdminApi as bJ, type ReplicationMetrics as bK, type ResidencyConfig as bL, type ResultWarning as bM, RetryPolicy as bN, type RlsResolver as bO, type RlsResolverRule as bP, type RlsResolverRuleInput as bQ, type RlsResolversListResponse as bR, type SchemaAggregateColumn as bS, type SchemaChange as bT, type SchemaChangeType as bU, type SchemaColumnDefinition as bV, type SchemaDiffResult as bW, type SchemaDocument as bX, type SchemaFilterCondition as bY, type SchemaFilterPredicate as bZ, type SchemaGroupByTerm as b_, type NamedQueryExecuteOptions as ba, type NamedQueryParamConstraint as bb, type NamedQuerySubscribeOptions as bc, NodeAdminApi as bd, type NodeLogEntry as be, type NodeLogLevel as bf, type NodeLogStreamOptions as bg, type NodeLogsQuery as bh, type NodeLogsResponse as bi, type OpenWriteStreamOptions as bj, type PageCacheMetrics as bk, type PartitionFunction as bl, type PartitionGrant as bm, type PartitionGrantsListResponse as bn, type PartitioningMetrics as bo, type PendingJobListResponse as bp, type PendingJobResponse as bq, type PerDatabaseLagEntry as br, type PerDatabaseMetrics as bs, type PerDatabaseStatusEntry as bt, PolicyApi as bu, type PolicyInspectRequest as bv, type PolicyInspectResponse as bw, type PolicyInspectTableResult as bx, type PolicyInspectTraverseStart as by, type PolicyInspectVectorProbe as bz, type ReadinessResponse as c, type SchemaMaterializedStorage as c0, type SchemaPartitionKeyEntry as c1, type SchemaRelationshipsResponse as c2, type SchemaSettings as c3, type SchemaSettingsDurability as c4, type SchemaTableDefinition as c5, type SchemaTableDurability as c6, type SchemaTablePolicy as c7, type SchemaTableTransform as c8, type SeedApplyResult as c9, type TestIdentity as cA, type TestIdentityDocument as cB, type TestIdentityGrant as cC, type TimeBucketFunction as cD, type TimeSeriesMetrics as cE, type TransactionMetrics as cF, type TypeGenerationOptions as cG, type UpdateOptions as cH, type UpdateRlsResolverRequest as cI, type UpdateTableOptionsRequest as cJ, type UpdateTablePolicyRequest as cK, type UserProfile as cL, type WalMetrics as cM, WhereGroupBuilder as cN, type WhereOperator as cO, type WriteStream as cP, coerceColumnarValue as cQ, columnarToRows as cR, createAoudaClient as cS, type SeedTableApplyResult as ca, ServerAdminApi as cb, type ServerAuthOptions as cc, type ServerMemoryResponse as cd, type ServerMetricsResponse as ce, type ServiceInfo as cf, type SimdMetrics as cg, type SingleDatabaseMetricsResponse as ch, type SortDirection as ci, type StorageMetrics as cj, type SubscribeOptions as ck, type Subscription as cl, type SubscriptionChangeEvent as cm, type SubscriptionEvent as cn, type SubscriptionInfo as co, type SubscriptionSnapshotEvent as cp, TIME_BUCKET_FUNCTIONS as cq, type TableCoverageEntry as cr, type TableNameFromSchema as cs, type TablePolicy as ct, TableQuery as cu, type TableSchema as cv, type TableSchemaResponse as cw, type TableSummary as cx, type TableSummaryForErd as cy, TablesApi as cz, 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 };