@aouda/client 0.1.8 → 0.1.10
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.
- package/dist/cli/index.cjs +239 -17
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +1 -1
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +239 -17
- package/dist/cli/index.js.map +1 -1
- package/dist/{client-TIOp5NUu.d.cts → client-Dgenr-cE.d.cts} +139 -2
- package/dist/{client-TIOp5NUu.d.ts → client-Dgenr-cE.d.ts} +139 -2
- package/dist/index.cjs +244 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +241 -16
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -305,6 +305,18 @@ interface AoudaClientOptions {
|
|
|
305
305
|
*/
|
|
306
306
|
longPollWaitMs?: number;
|
|
307
307
|
};
|
|
308
|
+
/**
|
|
309
|
+
* Invoked when a named query or named mutation result carries a deprecation warning.
|
|
310
|
+
* Defaults to `console.warn`. The call still succeeds (D-5).
|
|
311
|
+
*/
|
|
312
|
+
onNamedArtifactWarning?: (warning: NamedArtifactWarning) => void;
|
|
313
|
+
}
|
|
314
|
+
/** Deprecation (or similar) warning from a named query or named mutation. */
|
|
315
|
+
interface NamedArtifactWarning {
|
|
316
|
+
code: string;
|
|
317
|
+
hash?: string;
|
|
318
|
+
sunsetAt?: string;
|
|
319
|
+
message: string;
|
|
308
320
|
}
|
|
309
321
|
/**
|
|
310
322
|
* Health status response from the Aouda server.
|
|
@@ -430,6 +442,14 @@ interface QueryResult<T = Record<string, unknown>> {
|
|
|
430
442
|
rows: T[];
|
|
431
443
|
/** Query execution statistics. */
|
|
432
444
|
stats: QueryStats;
|
|
445
|
+
/** Additive warnings (e.g. named-query deprecation). */
|
|
446
|
+
warnings?: ResultWarning[];
|
|
447
|
+
}
|
|
448
|
+
/** Additive result warning from the server. */
|
|
449
|
+
interface ResultWarning {
|
|
450
|
+
code: string;
|
|
451
|
+
hash?: string;
|
|
452
|
+
sunsetAt?: string;
|
|
433
453
|
}
|
|
434
454
|
/**
|
|
435
455
|
* Wire protocol comparison operators.
|
|
@@ -505,6 +525,7 @@ interface ColumnarResponse {
|
|
|
505
525
|
data: unknown[][];
|
|
506
526
|
rowCount: number;
|
|
507
527
|
stats: QueryStats;
|
|
528
|
+
warnings?: ResultWarning[];
|
|
508
529
|
}
|
|
509
530
|
/**
|
|
510
531
|
* Summary of a table returned by list().
|
|
@@ -1210,6 +1231,21 @@ interface ServerMemoryResponse {
|
|
|
1210
1231
|
databaseCount: number;
|
|
1211
1232
|
perDatabaseUsage: Record<string, DatabaseMemoryUsage>;
|
|
1212
1233
|
timestamp: string;
|
|
1234
|
+
rssBytes?: number;
|
|
1235
|
+
reservedBytes?: number;
|
|
1236
|
+
governedBudgetBytes?: number;
|
|
1237
|
+
rssDriftBytes?: number;
|
|
1238
|
+
tighteningActive?: boolean;
|
|
1239
|
+
budgetTargetBytes?: number;
|
|
1240
|
+
budgetEffectiveBytes?: number;
|
|
1241
|
+
resizeStatus?: string;
|
|
1242
|
+
admissionDenials?: number;
|
|
1243
|
+
admissionThrottles?: number;
|
|
1244
|
+
walBytesOnDisk?: number;
|
|
1245
|
+
walBytesReclaimable?: number;
|
|
1246
|
+
walRecoveryPortions?: number;
|
|
1247
|
+
walRecoveryCursorWrites?: number;
|
|
1248
|
+
quarantinedDatabases?: number;
|
|
1213
1249
|
}
|
|
1214
1250
|
/** Per-database metrics DTO in server metrics response. */
|
|
1215
1251
|
interface DatabaseMetricsDto {
|
|
@@ -1443,8 +1479,29 @@ interface MemoryMetrics {
|
|
|
1443
1479
|
hotBytes: number;
|
|
1444
1480
|
cacheBytes: number;
|
|
1445
1481
|
evictions: number;
|
|
1482
|
+
rssBytes?: number;
|
|
1483
|
+
reservedBytes?: number;
|
|
1484
|
+
governedBudgetBytes?: number;
|
|
1485
|
+
rssDriftBytes?: number;
|
|
1486
|
+
tighteningActive?: boolean;
|
|
1487
|
+
budgetTargetBytes?: number;
|
|
1488
|
+
budgetEffectiveBytes?: number;
|
|
1489
|
+
resizeStatus?: string;
|
|
1490
|
+
admissionDenials?: number;
|
|
1491
|
+
admissionThrottles?: number;
|
|
1446
1492
|
perDatabase?: Record<string, DatabaseMemoryMetrics>;
|
|
1447
1493
|
}
|
|
1494
|
+
/** Bounded-WAL inventory (GET /api/admin/metrics/wal). */
|
|
1495
|
+
interface WalMetrics {
|
|
1496
|
+
bytesOnDisk: number;
|
|
1497
|
+
bytesReclaimable: number;
|
|
1498
|
+
recoveryPortions: number;
|
|
1499
|
+
recoveryCursorWrites: number;
|
|
1500
|
+
corruptFramesStopped: number;
|
|
1501
|
+
ladderThrottleTotal: number;
|
|
1502
|
+
ladderRefuseTotal: number;
|
|
1503
|
+
quarantinedTotal: number;
|
|
1504
|
+
}
|
|
1448
1505
|
/** I/O operation metrics. */
|
|
1449
1506
|
interface IoMetrics {
|
|
1450
1507
|
totalMs: number;
|
|
@@ -1492,6 +1549,7 @@ interface MetricsSnapshot {
|
|
|
1492
1549
|
bloomFilters: BloomFilterMetrics;
|
|
1493
1550
|
transactions: TransactionMetrics;
|
|
1494
1551
|
memory: MemoryMetrics;
|
|
1552
|
+
wal?: WalMetrics;
|
|
1495
1553
|
io: IoMetrics;
|
|
1496
1554
|
simd: SimdMetrics;
|
|
1497
1555
|
databases?: Record<string, PerDatabaseMetrics>;
|
|
@@ -1508,6 +1566,11 @@ interface MetricsSummary {
|
|
|
1508
1566
|
activeConnections: number;
|
|
1509
1567
|
activeMaterializedQueries: number;
|
|
1510
1568
|
databaseCount: number;
|
|
1569
|
+
rssBytes?: number;
|
|
1570
|
+
governedBudgetBytes?: number;
|
|
1571
|
+
admissionDenials?: number;
|
|
1572
|
+
walBytesReclaimable?: number;
|
|
1573
|
+
quarantinedDatabases?: number;
|
|
1511
1574
|
}
|
|
1512
1575
|
/** Historical metrics from GET /api/admin/metrics/history. */
|
|
1513
1576
|
interface MetricsHistory {
|
|
@@ -1840,6 +1903,11 @@ interface AdminMemoryConfig {
|
|
|
1840
1903
|
maxTotalRamBytes: number;
|
|
1841
1904
|
maxHotBytes: number;
|
|
1842
1905
|
maxPageCacheBytes: number;
|
|
1906
|
+
budgetTargetBytes?: number;
|
|
1907
|
+
budgetEffectiveBytes?: number;
|
|
1908
|
+
resizeStatus?: string;
|
|
1909
|
+
lastResizeError?: string | null;
|
|
1910
|
+
lastResizeCommittedBytes?: number | null;
|
|
1843
1911
|
}
|
|
1844
1912
|
interface AdminBackupConfig {
|
|
1845
1913
|
cronExpression?: string | null;
|
|
@@ -2406,6 +2474,18 @@ interface SnapshotMessage {
|
|
|
2406
2474
|
rows: unknown[];
|
|
2407
2475
|
version: number;
|
|
2408
2476
|
}
|
|
2477
|
+
interface SnapshotCompleteMessage {
|
|
2478
|
+
type: "snapshot_complete";
|
|
2479
|
+
id: string;
|
|
2480
|
+
version: number;
|
|
2481
|
+
row_count: number;
|
|
2482
|
+
}
|
|
2483
|
+
interface GapMessage {
|
|
2484
|
+
type: "gap";
|
|
2485
|
+
id: string;
|
|
2486
|
+
last_seq: number;
|
|
2487
|
+
discarded: number;
|
|
2488
|
+
}
|
|
2409
2489
|
interface ChangeMessage {
|
|
2410
2490
|
type: "change";
|
|
2411
2491
|
id: string;
|
|
@@ -2441,7 +2521,7 @@ interface ServerErrorMessage {
|
|
|
2441
2521
|
interface PongMessage {
|
|
2442
2522
|
type: "pong";
|
|
2443
2523
|
}
|
|
2444
|
-
type ServerMessage = AuthOkMessage | AuthErrorMessage | SnapshotMessage | ChangeMessage | StreamAckMessage | StreamReadyMessage | StreamClosedMessage | HeartbeatMessage | ServerErrorMessage | PongMessage;
|
|
2524
|
+
type ServerMessage = AuthOkMessage | AuthErrorMessage | SnapshotMessage | SnapshotCompleteMessage | GapMessage | ChangeMessage | StreamAckMessage | StreamReadyMessage | StreamClosedMessage | HeartbeatMessage | ServerErrorMessage | PongMessage;
|
|
2445
2525
|
|
|
2446
2526
|
type StreamingMessageHandler = (message: ServerMessage) => void;
|
|
2447
2527
|
interface StreamingTransport {
|
|
@@ -2567,6 +2647,13 @@ interface QueryBuilderState {
|
|
|
2567
2647
|
* All other types: passed through unchanged.
|
|
2568
2648
|
*/
|
|
2569
2649
|
declare function coerceColumnarValue(value: unknown, typeName: string): unknown;
|
|
2650
|
+
/**
|
|
2651
|
+
* Converts columnar response data to an array of row objects.
|
|
2652
|
+
* Uses `response.types` to apply type-aware coercions (e.g. Timestamp ticks → ISO string).
|
|
2653
|
+
* @param response - The columnar response from the server.
|
|
2654
|
+
* @returns Array of row objects.
|
|
2655
|
+
*/
|
|
2656
|
+
declare function columnarToRows<T>(response: ColumnarResponse): T[];
|
|
2570
2657
|
/**
|
|
2571
2658
|
* Fluent query builder for Aouda tables.
|
|
2572
2659
|
*
|
|
@@ -3505,6 +3592,46 @@ declare class MaterializedQueriesApi {
|
|
|
3505
3592
|
query(name: string, _options?: MaterializedQueryExecuteOptions): Promise<MaterializedQueryExecuteResult>;
|
|
3506
3593
|
}
|
|
3507
3594
|
|
|
3595
|
+
/**
|
|
3596
|
+
* Hash-only named-query / named-mutation client API (D-5, D-28).
|
|
3597
|
+
*/
|
|
3598
|
+
|
|
3599
|
+
interface NamedQueryExecuteOptions {
|
|
3600
|
+
signal?: AbortSignal;
|
|
3601
|
+
}
|
|
3602
|
+
interface NamedQueryBatchItem {
|
|
3603
|
+
hash: string;
|
|
3604
|
+
args?: Record<string, unknown>;
|
|
3605
|
+
}
|
|
3606
|
+
interface NamedQueryBatchSlotResult<T = Record<string, unknown>> {
|
|
3607
|
+
isError: boolean;
|
|
3608
|
+
code?: string;
|
|
3609
|
+
error?: string;
|
|
3610
|
+
result?: QueryResult<T>;
|
|
3611
|
+
}
|
|
3612
|
+
interface NamedMutationResult {
|
|
3613
|
+
op: string;
|
|
3614
|
+
rowsAffected: number;
|
|
3615
|
+
returning?: QueryResult<Record<string, unknown>>;
|
|
3616
|
+
warnings?: ResultWarning[];
|
|
3617
|
+
}
|
|
3618
|
+
type NamedArtifactWarningSink = (warning: NamedArtifactWarning) => void;
|
|
3619
|
+
declare class NamedQueriesApi {
|
|
3620
|
+
private readonly transport;
|
|
3621
|
+
private readonly database;
|
|
3622
|
+
private readonly onWarning;
|
|
3623
|
+
constructor(transport: Transport, database: string, onWarning: NamedArtifactWarningSink);
|
|
3624
|
+
execute<T = Record<string, unknown>>(hash: string, args?: Record<string, unknown>, options?: NamedQueryExecuteOptions): Promise<QueryResult<T>>;
|
|
3625
|
+
batch<T = Record<string, unknown>>(items: NamedQueryBatchItem[], options?: NamedQueryExecuteOptions): Promise<NamedQueryBatchSlotResult<T>[]>;
|
|
3626
|
+
}
|
|
3627
|
+
declare class NamedMutationsApi {
|
|
3628
|
+
private readonly transport;
|
|
3629
|
+
private readonly database;
|
|
3630
|
+
private readonly onWarning;
|
|
3631
|
+
constructor(transport: Transport, database: string, onWarning: NamedArtifactWarningSink);
|
|
3632
|
+
execute(hash: string, args?: Record<string, unknown>): Promise<NamedMutationResult>;
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3508
3635
|
/**
|
|
3509
3636
|
* @aouda/client — AoudaClient implementation.
|
|
3510
3637
|
*/
|
|
@@ -3540,6 +3667,8 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3540
3667
|
private readonly _branches;
|
|
3541
3668
|
private readonly _admin;
|
|
3542
3669
|
private readonly _materializedQueries;
|
|
3670
|
+
private readonly _namedQueries;
|
|
3671
|
+
private readonly _namedMutations;
|
|
3543
3672
|
private readonly _auth;
|
|
3544
3673
|
private readonly _authHandler;
|
|
3545
3674
|
private readonly _streamingEnableCompression;
|
|
@@ -3647,6 +3776,14 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3647
3776
|
* Materialized query lifecycle (list, create, drop, status, query).
|
|
3648
3777
|
*/
|
|
3649
3778
|
get materializedQueries(): MaterializedQueriesApi;
|
|
3779
|
+
/**
|
|
3780
|
+
* Hash-only named-query execute and batch. Names are codegen aliases (D-5).
|
|
3781
|
+
*/
|
|
3782
|
+
get namedQueries(): NamedQueriesApi;
|
|
3783
|
+
/**
|
|
3784
|
+
* Hash-only named-mutation execute. No batch.
|
|
3785
|
+
*/
|
|
3786
|
+
get namedMutations(): NamedMutationsApi;
|
|
3650
3787
|
/**
|
|
3651
3788
|
* Access auth operations (signUp, signIn, signOut, refresh, me, changePassword).
|
|
3652
3789
|
* @returns The auth API.
|
|
@@ -3747,4 +3884,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3747
3884
|
*/
|
|
3748
3885
|
declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
|
|
3749
3886
|
|
|
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
|
|
3887
|
+
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 SubscriptionInfo 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, NodeAdminApi as b9, type ReplicationMetrics as bA, type ResidencyConfig as bB, type ResultWarning as bC, RetryPolicy as bD, type RlsResolver as bE, type RlsResolverRule as bF, type RlsResolverRuleInput as bG, type RlsResolversListResponse as bH, type SchemaChange as bI, type SchemaChangeType as bJ, type SchemaDiffResult as bK, type SchemaRelationshipsResponse as bL, type SeedApplyResult as bM, type SeedTableApplyResult as bN, ServerAdminApi as bO, type ServerAuthOptions as bP, type ServerMemoryResponse as bQ, type ServerMetricsResponse as bR, type ServiceInfo as bS, type SimdMetrics as bT, type SingleDatabaseMetricsResponse as bU, type SortDirection as bV, type StorageMetrics as bW, type SubscribeOptions as bX, type Subscription as bY, type SubscriptionChangeEvent as bZ, type SubscriptionEvent as b_, type NodeLogEntry as ba, type NodeLogLevel as bb, type NodeLogStreamOptions as bc, type NodeLogsQuery as bd, type NodeLogsResponse as be, type OpenWriteStreamOptions as bf, type PageCacheMetrics as bg, type PartitionFunction as bh, type PartitionGrant as bi, type PartitionGrantsListResponse as bj, type PartitioningMetrics as bk, type PendingJobListResponse as bl, type PendingJobResponse as bm, type PerDatabaseLagEntry as bn, type PerDatabaseMetrics as bo, type PerDatabaseStatusEntry as bp, type QueryMetrics as bq, type QueryResult as br, type QueryStats as bs, type ReferenceInfo as bt, type RelationshipEndpoint as bu, type RelationshipInfo as bv, type RenameColumnRequest as bw, type RenameTableRequest as bx, type ReorderColumnsRequest as by, ReplicationAdminApi as bz, type ReadinessResponse as c, type SubscriptionSnapshotEvent as c0, TIME_BUCKET_FUNCTIONS as c1, type TableCoverageEntry as c2, type TableNameFromSchema as c3, type TablePolicy as c4, TableQuery as c5, type TableSchema as c6, type TableSchemaResponse as c7, type TableSummary as c8, type TableSummaryForErd as c9, TablesApi as ca, type TimeBucketFunction as cb, type TimeSeriesMetrics as cc, type TransactionMetrics as cd, type TypeGenerationOptions as ce, type UpdateOptions as cf, type UpdateRlsResolverRequest as cg, type UpdateTableOptionsRequest as ch, type UpdateTablePolicyRequest as ci, type UserProfile as cj, type WalMetrics as ck, WhereGroupBuilder as cl, type WhereOperator as cm, type WriteStream as cn, coerceColumnarValue as co, columnarToRows as cp, createAoudaClient as cq, 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 };
|
|
@@ -305,6 +305,18 @@ interface AoudaClientOptions {
|
|
|
305
305
|
*/
|
|
306
306
|
longPollWaitMs?: number;
|
|
307
307
|
};
|
|
308
|
+
/**
|
|
309
|
+
* Invoked when a named query or named mutation result carries a deprecation warning.
|
|
310
|
+
* Defaults to `console.warn`. The call still succeeds (D-5).
|
|
311
|
+
*/
|
|
312
|
+
onNamedArtifactWarning?: (warning: NamedArtifactWarning) => void;
|
|
313
|
+
}
|
|
314
|
+
/** Deprecation (or similar) warning from a named query or named mutation. */
|
|
315
|
+
interface NamedArtifactWarning {
|
|
316
|
+
code: string;
|
|
317
|
+
hash?: string;
|
|
318
|
+
sunsetAt?: string;
|
|
319
|
+
message: string;
|
|
308
320
|
}
|
|
309
321
|
/**
|
|
310
322
|
* Health status response from the Aouda server.
|
|
@@ -430,6 +442,14 @@ interface QueryResult<T = Record<string, unknown>> {
|
|
|
430
442
|
rows: T[];
|
|
431
443
|
/** Query execution statistics. */
|
|
432
444
|
stats: QueryStats;
|
|
445
|
+
/** Additive warnings (e.g. named-query deprecation). */
|
|
446
|
+
warnings?: ResultWarning[];
|
|
447
|
+
}
|
|
448
|
+
/** Additive result warning from the server. */
|
|
449
|
+
interface ResultWarning {
|
|
450
|
+
code: string;
|
|
451
|
+
hash?: string;
|
|
452
|
+
sunsetAt?: string;
|
|
433
453
|
}
|
|
434
454
|
/**
|
|
435
455
|
* Wire protocol comparison operators.
|
|
@@ -505,6 +525,7 @@ interface ColumnarResponse {
|
|
|
505
525
|
data: unknown[][];
|
|
506
526
|
rowCount: number;
|
|
507
527
|
stats: QueryStats;
|
|
528
|
+
warnings?: ResultWarning[];
|
|
508
529
|
}
|
|
509
530
|
/**
|
|
510
531
|
* Summary of a table returned by list().
|
|
@@ -1210,6 +1231,21 @@ interface ServerMemoryResponse {
|
|
|
1210
1231
|
databaseCount: number;
|
|
1211
1232
|
perDatabaseUsage: Record<string, DatabaseMemoryUsage>;
|
|
1212
1233
|
timestamp: string;
|
|
1234
|
+
rssBytes?: number;
|
|
1235
|
+
reservedBytes?: number;
|
|
1236
|
+
governedBudgetBytes?: number;
|
|
1237
|
+
rssDriftBytes?: number;
|
|
1238
|
+
tighteningActive?: boolean;
|
|
1239
|
+
budgetTargetBytes?: number;
|
|
1240
|
+
budgetEffectiveBytes?: number;
|
|
1241
|
+
resizeStatus?: string;
|
|
1242
|
+
admissionDenials?: number;
|
|
1243
|
+
admissionThrottles?: number;
|
|
1244
|
+
walBytesOnDisk?: number;
|
|
1245
|
+
walBytesReclaimable?: number;
|
|
1246
|
+
walRecoveryPortions?: number;
|
|
1247
|
+
walRecoveryCursorWrites?: number;
|
|
1248
|
+
quarantinedDatabases?: number;
|
|
1213
1249
|
}
|
|
1214
1250
|
/** Per-database metrics DTO in server metrics response. */
|
|
1215
1251
|
interface DatabaseMetricsDto {
|
|
@@ -1443,8 +1479,29 @@ interface MemoryMetrics {
|
|
|
1443
1479
|
hotBytes: number;
|
|
1444
1480
|
cacheBytes: number;
|
|
1445
1481
|
evictions: number;
|
|
1482
|
+
rssBytes?: number;
|
|
1483
|
+
reservedBytes?: number;
|
|
1484
|
+
governedBudgetBytes?: number;
|
|
1485
|
+
rssDriftBytes?: number;
|
|
1486
|
+
tighteningActive?: boolean;
|
|
1487
|
+
budgetTargetBytes?: number;
|
|
1488
|
+
budgetEffectiveBytes?: number;
|
|
1489
|
+
resizeStatus?: string;
|
|
1490
|
+
admissionDenials?: number;
|
|
1491
|
+
admissionThrottles?: number;
|
|
1446
1492
|
perDatabase?: Record<string, DatabaseMemoryMetrics>;
|
|
1447
1493
|
}
|
|
1494
|
+
/** Bounded-WAL inventory (GET /api/admin/metrics/wal). */
|
|
1495
|
+
interface WalMetrics {
|
|
1496
|
+
bytesOnDisk: number;
|
|
1497
|
+
bytesReclaimable: number;
|
|
1498
|
+
recoveryPortions: number;
|
|
1499
|
+
recoveryCursorWrites: number;
|
|
1500
|
+
corruptFramesStopped: number;
|
|
1501
|
+
ladderThrottleTotal: number;
|
|
1502
|
+
ladderRefuseTotal: number;
|
|
1503
|
+
quarantinedTotal: number;
|
|
1504
|
+
}
|
|
1448
1505
|
/** I/O operation metrics. */
|
|
1449
1506
|
interface IoMetrics {
|
|
1450
1507
|
totalMs: number;
|
|
@@ -1492,6 +1549,7 @@ interface MetricsSnapshot {
|
|
|
1492
1549
|
bloomFilters: BloomFilterMetrics;
|
|
1493
1550
|
transactions: TransactionMetrics;
|
|
1494
1551
|
memory: MemoryMetrics;
|
|
1552
|
+
wal?: WalMetrics;
|
|
1495
1553
|
io: IoMetrics;
|
|
1496
1554
|
simd: SimdMetrics;
|
|
1497
1555
|
databases?: Record<string, PerDatabaseMetrics>;
|
|
@@ -1508,6 +1566,11 @@ interface MetricsSummary {
|
|
|
1508
1566
|
activeConnections: number;
|
|
1509
1567
|
activeMaterializedQueries: number;
|
|
1510
1568
|
databaseCount: number;
|
|
1569
|
+
rssBytes?: number;
|
|
1570
|
+
governedBudgetBytes?: number;
|
|
1571
|
+
admissionDenials?: number;
|
|
1572
|
+
walBytesReclaimable?: number;
|
|
1573
|
+
quarantinedDatabases?: number;
|
|
1511
1574
|
}
|
|
1512
1575
|
/** Historical metrics from GET /api/admin/metrics/history. */
|
|
1513
1576
|
interface MetricsHistory {
|
|
@@ -1840,6 +1903,11 @@ interface AdminMemoryConfig {
|
|
|
1840
1903
|
maxTotalRamBytes: number;
|
|
1841
1904
|
maxHotBytes: number;
|
|
1842
1905
|
maxPageCacheBytes: number;
|
|
1906
|
+
budgetTargetBytes?: number;
|
|
1907
|
+
budgetEffectiveBytes?: number;
|
|
1908
|
+
resizeStatus?: string;
|
|
1909
|
+
lastResizeError?: string | null;
|
|
1910
|
+
lastResizeCommittedBytes?: number | null;
|
|
1843
1911
|
}
|
|
1844
1912
|
interface AdminBackupConfig {
|
|
1845
1913
|
cronExpression?: string | null;
|
|
@@ -2406,6 +2474,18 @@ interface SnapshotMessage {
|
|
|
2406
2474
|
rows: unknown[];
|
|
2407
2475
|
version: number;
|
|
2408
2476
|
}
|
|
2477
|
+
interface SnapshotCompleteMessage {
|
|
2478
|
+
type: "snapshot_complete";
|
|
2479
|
+
id: string;
|
|
2480
|
+
version: number;
|
|
2481
|
+
row_count: number;
|
|
2482
|
+
}
|
|
2483
|
+
interface GapMessage {
|
|
2484
|
+
type: "gap";
|
|
2485
|
+
id: string;
|
|
2486
|
+
last_seq: number;
|
|
2487
|
+
discarded: number;
|
|
2488
|
+
}
|
|
2409
2489
|
interface ChangeMessage {
|
|
2410
2490
|
type: "change";
|
|
2411
2491
|
id: string;
|
|
@@ -2441,7 +2521,7 @@ interface ServerErrorMessage {
|
|
|
2441
2521
|
interface PongMessage {
|
|
2442
2522
|
type: "pong";
|
|
2443
2523
|
}
|
|
2444
|
-
type ServerMessage = AuthOkMessage | AuthErrorMessage | SnapshotMessage | ChangeMessage | StreamAckMessage | StreamReadyMessage | StreamClosedMessage | HeartbeatMessage | ServerErrorMessage | PongMessage;
|
|
2524
|
+
type ServerMessage = AuthOkMessage | AuthErrorMessage | SnapshotMessage | SnapshotCompleteMessage | GapMessage | ChangeMessage | StreamAckMessage | StreamReadyMessage | StreamClosedMessage | HeartbeatMessage | ServerErrorMessage | PongMessage;
|
|
2445
2525
|
|
|
2446
2526
|
type StreamingMessageHandler = (message: ServerMessage) => void;
|
|
2447
2527
|
interface StreamingTransport {
|
|
@@ -2567,6 +2647,13 @@ interface QueryBuilderState {
|
|
|
2567
2647
|
* All other types: passed through unchanged.
|
|
2568
2648
|
*/
|
|
2569
2649
|
declare function coerceColumnarValue(value: unknown, typeName: string): unknown;
|
|
2650
|
+
/**
|
|
2651
|
+
* Converts columnar response data to an array of row objects.
|
|
2652
|
+
* Uses `response.types` to apply type-aware coercions (e.g. Timestamp ticks → ISO string).
|
|
2653
|
+
* @param response - The columnar response from the server.
|
|
2654
|
+
* @returns Array of row objects.
|
|
2655
|
+
*/
|
|
2656
|
+
declare function columnarToRows<T>(response: ColumnarResponse): T[];
|
|
2570
2657
|
/**
|
|
2571
2658
|
* Fluent query builder for Aouda tables.
|
|
2572
2659
|
*
|
|
@@ -3505,6 +3592,46 @@ declare class MaterializedQueriesApi {
|
|
|
3505
3592
|
query(name: string, _options?: MaterializedQueryExecuteOptions): Promise<MaterializedQueryExecuteResult>;
|
|
3506
3593
|
}
|
|
3507
3594
|
|
|
3595
|
+
/**
|
|
3596
|
+
* Hash-only named-query / named-mutation client API (D-5, D-28).
|
|
3597
|
+
*/
|
|
3598
|
+
|
|
3599
|
+
interface NamedQueryExecuteOptions {
|
|
3600
|
+
signal?: AbortSignal;
|
|
3601
|
+
}
|
|
3602
|
+
interface NamedQueryBatchItem {
|
|
3603
|
+
hash: string;
|
|
3604
|
+
args?: Record<string, unknown>;
|
|
3605
|
+
}
|
|
3606
|
+
interface NamedQueryBatchSlotResult<T = Record<string, unknown>> {
|
|
3607
|
+
isError: boolean;
|
|
3608
|
+
code?: string;
|
|
3609
|
+
error?: string;
|
|
3610
|
+
result?: QueryResult<T>;
|
|
3611
|
+
}
|
|
3612
|
+
interface NamedMutationResult {
|
|
3613
|
+
op: string;
|
|
3614
|
+
rowsAffected: number;
|
|
3615
|
+
returning?: QueryResult<Record<string, unknown>>;
|
|
3616
|
+
warnings?: ResultWarning[];
|
|
3617
|
+
}
|
|
3618
|
+
type NamedArtifactWarningSink = (warning: NamedArtifactWarning) => void;
|
|
3619
|
+
declare class NamedQueriesApi {
|
|
3620
|
+
private readonly transport;
|
|
3621
|
+
private readonly database;
|
|
3622
|
+
private readonly onWarning;
|
|
3623
|
+
constructor(transport: Transport, database: string, onWarning: NamedArtifactWarningSink);
|
|
3624
|
+
execute<T = Record<string, unknown>>(hash: string, args?: Record<string, unknown>, options?: NamedQueryExecuteOptions): Promise<QueryResult<T>>;
|
|
3625
|
+
batch<T = Record<string, unknown>>(items: NamedQueryBatchItem[], options?: NamedQueryExecuteOptions): Promise<NamedQueryBatchSlotResult<T>[]>;
|
|
3626
|
+
}
|
|
3627
|
+
declare class NamedMutationsApi {
|
|
3628
|
+
private readonly transport;
|
|
3629
|
+
private readonly database;
|
|
3630
|
+
private readonly onWarning;
|
|
3631
|
+
constructor(transport: Transport, database: string, onWarning: NamedArtifactWarningSink);
|
|
3632
|
+
execute(hash: string, args?: Record<string, unknown>): Promise<NamedMutationResult>;
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3508
3635
|
/**
|
|
3509
3636
|
* @aouda/client — AoudaClient implementation.
|
|
3510
3637
|
*/
|
|
@@ -3540,6 +3667,8 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3540
3667
|
private readonly _branches;
|
|
3541
3668
|
private readonly _admin;
|
|
3542
3669
|
private readonly _materializedQueries;
|
|
3670
|
+
private readonly _namedQueries;
|
|
3671
|
+
private readonly _namedMutations;
|
|
3543
3672
|
private readonly _auth;
|
|
3544
3673
|
private readonly _authHandler;
|
|
3545
3674
|
private readonly _streamingEnableCompression;
|
|
@@ -3647,6 +3776,14 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3647
3776
|
* Materialized query lifecycle (list, create, drop, status, query).
|
|
3648
3777
|
*/
|
|
3649
3778
|
get materializedQueries(): MaterializedQueriesApi;
|
|
3779
|
+
/**
|
|
3780
|
+
* Hash-only named-query execute and batch. Names are codegen aliases (D-5).
|
|
3781
|
+
*/
|
|
3782
|
+
get namedQueries(): NamedQueriesApi;
|
|
3783
|
+
/**
|
|
3784
|
+
* Hash-only named-mutation execute. No batch.
|
|
3785
|
+
*/
|
|
3786
|
+
get namedMutations(): NamedMutationsApi;
|
|
3650
3787
|
/**
|
|
3651
3788
|
* Access auth operations (signUp, signIn, signOut, refresh, me, changePassword).
|
|
3652
3789
|
* @returns The auth API.
|
|
@@ -3747,4 +3884,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3747
3884
|
*/
|
|
3748
3885
|
declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
|
|
3749
3886
|
|
|
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
|
|
3887
|
+
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 SubscriptionInfo 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, NodeAdminApi as b9, type ReplicationMetrics as bA, type ResidencyConfig as bB, type ResultWarning as bC, RetryPolicy as bD, type RlsResolver as bE, type RlsResolverRule as bF, type RlsResolverRuleInput as bG, type RlsResolversListResponse as bH, type SchemaChange as bI, type SchemaChangeType as bJ, type SchemaDiffResult as bK, type SchemaRelationshipsResponse as bL, type SeedApplyResult as bM, type SeedTableApplyResult as bN, ServerAdminApi as bO, type ServerAuthOptions as bP, type ServerMemoryResponse as bQ, type ServerMetricsResponse as bR, type ServiceInfo as bS, type SimdMetrics as bT, type SingleDatabaseMetricsResponse as bU, type SortDirection as bV, type StorageMetrics as bW, type SubscribeOptions as bX, type Subscription as bY, type SubscriptionChangeEvent as bZ, type SubscriptionEvent as b_, type NodeLogEntry as ba, type NodeLogLevel as bb, type NodeLogStreamOptions as bc, type NodeLogsQuery as bd, type NodeLogsResponse as be, type OpenWriteStreamOptions as bf, type PageCacheMetrics as bg, type PartitionFunction as bh, type PartitionGrant as bi, type PartitionGrantsListResponse as bj, type PartitioningMetrics as bk, type PendingJobListResponse as bl, type PendingJobResponse as bm, type PerDatabaseLagEntry as bn, type PerDatabaseMetrics as bo, type PerDatabaseStatusEntry as bp, type QueryMetrics as bq, type QueryResult as br, type QueryStats as bs, type ReferenceInfo as bt, type RelationshipEndpoint as bu, type RelationshipInfo as bv, type RenameColumnRequest as bw, type RenameTableRequest as bx, type ReorderColumnsRequest as by, ReplicationAdminApi as bz, type ReadinessResponse as c, type SubscriptionSnapshotEvent as c0, TIME_BUCKET_FUNCTIONS as c1, type TableCoverageEntry as c2, type TableNameFromSchema as c3, type TablePolicy as c4, TableQuery as c5, type TableSchema as c6, type TableSchemaResponse as c7, type TableSummary as c8, type TableSummaryForErd as c9, TablesApi as ca, type TimeBucketFunction as cb, type TimeSeriesMetrics as cc, type TransactionMetrics as cd, type TypeGenerationOptions as ce, type UpdateOptions as cf, type UpdateRlsResolverRequest as cg, type UpdateTableOptionsRequest as ch, type UpdateTablePolicyRequest as ci, type UserProfile as cj, type WalMetrics as ck, WhereGroupBuilder as cl, type WhereOperator as cm, type WriteStream as cn, coerceColumnarValue as co, columnarToRows as cp, createAoudaClient as cq, 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 };
|