@aouda/client 0.1.1 → 0.1.3
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 +1 -1
- 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 +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/{client-B3XIGTr9.d.cts → client-B9a2zoUU.d.cts} +25 -1
- package/dist/{client-B3XIGTr9.d.ts → client-B9a2zoUU.d.ts} +25 -1
- package/dist/index.cjs +25 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +22 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3210,6 +3210,30 @@ declare class BranchesApi {
|
|
|
3210
3210
|
* Materialized query HTTP API (`/api/databases/{db}/materialized-queries`).
|
|
3211
3211
|
*/
|
|
3212
3212
|
|
|
3213
|
+
/**
|
|
3214
|
+
* Filter comparison operators used in Filter materialized query predicates.
|
|
3215
|
+
* These are the raw wire-protocol strings sent directly in the configJson.
|
|
3216
|
+
*/
|
|
3217
|
+
declare const FILTER_OPERATORS: readonly ["eq", "ne", "gt", "gte", "lt", "lte"];
|
|
3218
|
+
/** Comparison operator for a Filter materialized query predicate condition. */
|
|
3219
|
+
type FilterOperator = (typeof FILTER_OPERATORS)[number];
|
|
3220
|
+
/**
|
|
3221
|
+
* Aggregate functions supported by Aggregate materialized queries.
|
|
3222
|
+
* `first` and `last` require an `orderByColumn` to determine row ordering within each group.
|
|
3223
|
+
*/
|
|
3224
|
+
declare const AGGREGATE_FUNCTIONS: readonly ["count", "sum", "average", "min", "max", "first", "last"];
|
|
3225
|
+
/** Aggregate function name for an aggregate column in an Aggregate materialized query config. */
|
|
3226
|
+
type AggregateFunctionName = (typeof AGGREGATE_FUNCTIONS)[number];
|
|
3227
|
+
/**
|
|
3228
|
+
* Time-bucket truncation functions for group-by expressions in Aggregate materialized queries.
|
|
3229
|
+
* Applied to timestamp columns to roll rows up into fixed time intervals.
|
|
3230
|
+
*
|
|
3231
|
+
* Note: casing is camelCase per the wire protocol for aggregate config — distinct from
|
|
3232
|
+
* `PartitionFunction` (PascalCase) used for table-level column partitioning.
|
|
3233
|
+
*/
|
|
3234
|
+
declare const TIME_BUCKET_FUNCTIONS: readonly ["truncateToMinute", "truncateToHour", "truncateToDay", "truncateToWeek", "truncateToMonth", "truncateToYear"];
|
|
3235
|
+
/** Time-bucket truncation function for a group-by expression in an Aggregate materialized query. */
|
|
3236
|
+
type TimeBucketFunction = (typeof TIME_BUCKET_FUNCTIONS)[number];
|
|
3213
3237
|
/** Matches server `MaterializedQueryType` enum (numeric). */
|
|
3214
3238
|
declare const MaterializedQueryType: {
|
|
3215
3239
|
readonly LatestPerKey: 1;
|
|
@@ -3529,4 +3553,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3529
3553
|
*/
|
|
3530
3554
|
declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
|
|
3531
3555
|
|
|
3532
|
-
export { type
|
|
3556
|
+
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 };
|
|
@@ -3210,6 +3210,30 @@ declare class BranchesApi {
|
|
|
3210
3210
|
* Materialized query HTTP API (`/api/databases/{db}/materialized-queries`).
|
|
3211
3211
|
*/
|
|
3212
3212
|
|
|
3213
|
+
/**
|
|
3214
|
+
* Filter comparison operators used in Filter materialized query predicates.
|
|
3215
|
+
* These are the raw wire-protocol strings sent directly in the configJson.
|
|
3216
|
+
*/
|
|
3217
|
+
declare const FILTER_OPERATORS: readonly ["eq", "ne", "gt", "gte", "lt", "lte"];
|
|
3218
|
+
/** Comparison operator for a Filter materialized query predicate condition. */
|
|
3219
|
+
type FilterOperator = (typeof FILTER_OPERATORS)[number];
|
|
3220
|
+
/**
|
|
3221
|
+
* Aggregate functions supported by Aggregate materialized queries.
|
|
3222
|
+
* `first` and `last` require an `orderByColumn` to determine row ordering within each group.
|
|
3223
|
+
*/
|
|
3224
|
+
declare const AGGREGATE_FUNCTIONS: readonly ["count", "sum", "average", "min", "max", "first", "last"];
|
|
3225
|
+
/** Aggregate function name for an aggregate column in an Aggregate materialized query config. */
|
|
3226
|
+
type AggregateFunctionName = (typeof AGGREGATE_FUNCTIONS)[number];
|
|
3227
|
+
/**
|
|
3228
|
+
* Time-bucket truncation functions for group-by expressions in Aggregate materialized queries.
|
|
3229
|
+
* Applied to timestamp columns to roll rows up into fixed time intervals.
|
|
3230
|
+
*
|
|
3231
|
+
* Note: casing is camelCase per the wire protocol for aggregate config — distinct from
|
|
3232
|
+
* `PartitionFunction` (PascalCase) used for table-level column partitioning.
|
|
3233
|
+
*/
|
|
3234
|
+
declare const TIME_BUCKET_FUNCTIONS: readonly ["truncateToMinute", "truncateToHour", "truncateToDay", "truncateToWeek", "truncateToMonth", "truncateToYear"];
|
|
3235
|
+
/** Time-bucket truncation function for a group-by expression in an Aggregate materialized query. */
|
|
3236
|
+
type TimeBucketFunction = (typeof TIME_BUCKET_FUNCTIONS)[number];
|
|
3213
3237
|
/** Matches server `MaterializedQueryType` enum (numeric). */
|
|
3214
3238
|
declare const MaterializedQueryType: {
|
|
3215
3239
|
readonly LatestPerKey: 1;
|
|
@@ -3529,4 +3553,4 @@ declare class AoudaClient<S extends SchemaLike = DefaultSchema> {
|
|
|
3529
3553
|
*/
|
|
3530
3554
|
declare function createAoudaClient<S extends SchemaLike = DefaultSchema>(options: AoudaClientOptions): AoudaClient<S>;
|
|
3531
3555
|
|
|
3532
|
-
export { type
|
|
3556
|
+
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 };
|
package/dist/index.cjs
CHANGED
|
@@ -30,6 +30,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// src/index.ts
|
|
31
31
|
var index_exports = {};
|
|
32
32
|
__export(index_exports, {
|
|
33
|
+
AGGREGATE_FUNCTIONS: () => AGGREGATE_FUNCTIONS,
|
|
33
34
|
AOUDA_DATA_TYPES: () => AOUDA_DATA_TYPES,
|
|
34
35
|
AdminApi: () => AdminApi,
|
|
35
36
|
AoudaApiError: () => AoudaApiError,
|
|
@@ -53,6 +54,7 @@ __export(index_exports, {
|
|
|
53
54
|
ClusterAdminApi: () => ClusterAdminApi,
|
|
54
55
|
ConfigAdminApi: () => ConfigAdminApi,
|
|
55
56
|
DatabasesApi: () => DatabasesApi,
|
|
57
|
+
FILTER_OPERATORS: () => FILTER_OPERATORS,
|
|
56
58
|
HealthAdminApi: () => HealthAdminApi,
|
|
57
59
|
MaterializedQueriesApi: () => MaterializedQueriesApi,
|
|
58
60
|
MaterializedQueryState: () => MaterializedQueryState,
|
|
@@ -62,6 +64,7 @@ __export(index_exports, {
|
|
|
62
64
|
ReplicationAdminApi: () => ReplicationAdminApi,
|
|
63
65
|
RetryPolicy: () => RetryPolicy,
|
|
64
66
|
ServerAdminApi: () => ServerAdminApi,
|
|
67
|
+
TIME_BUCKET_FUNCTIONS: () => TIME_BUCKET_FUNCTIONS,
|
|
65
68
|
TableQuery: () => TableQuery,
|
|
66
69
|
TablesApi: () => TablesApi,
|
|
67
70
|
WhereGroupBuilder: () => WhereGroupBuilder,
|
|
@@ -79,7 +82,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
79
82
|
// package.json
|
|
80
83
|
var package_default = {
|
|
81
84
|
name: "@aouda/client",
|
|
82
|
-
version: "0.1.
|
|
85
|
+
version: "0.1.3",
|
|
83
86
|
description: "Official TypeScript/JavaScript client library for Aouda",
|
|
84
87
|
type: "module",
|
|
85
88
|
main: "./dist/index.cjs",
|
|
@@ -4361,6 +4364,24 @@ var AdminApi = class {
|
|
|
4361
4364
|
};
|
|
4362
4365
|
|
|
4363
4366
|
// src/materialized.ts
|
|
4367
|
+
var FILTER_OPERATORS = ["eq", "ne", "gt", "gte", "lt", "lte"];
|
|
4368
|
+
var AGGREGATE_FUNCTIONS = [
|
|
4369
|
+
"count",
|
|
4370
|
+
"sum",
|
|
4371
|
+
"average",
|
|
4372
|
+
"min",
|
|
4373
|
+
"max",
|
|
4374
|
+
"first",
|
|
4375
|
+
"last"
|
|
4376
|
+
];
|
|
4377
|
+
var TIME_BUCKET_FUNCTIONS = [
|
|
4378
|
+
"truncateToMinute",
|
|
4379
|
+
"truncateToHour",
|
|
4380
|
+
"truncateToDay",
|
|
4381
|
+
"truncateToWeek",
|
|
4382
|
+
"truncateToMonth",
|
|
4383
|
+
"truncateToYear"
|
|
4384
|
+
];
|
|
4364
4385
|
var MaterializedQueryType = {
|
|
4365
4386
|
LatestPerKey: 1,
|
|
4366
4387
|
FirstPerKey: 2,
|
|
@@ -5726,6 +5747,7 @@ function createAoudaClusterMcpToolSet(client) {
|
|
|
5726
5747
|
var version = package_default.version;
|
|
5727
5748
|
// Annotate the CommonJS export names for ESM import in node:
|
|
5728
5749
|
0 && (module.exports = {
|
|
5750
|
+
AGGREGATE_FUNCTIONS,
|
|
5729
5751
|
AOUDA_DATA_TYPES,
|
|
5730
5752
|
AdminApi,
|
|
5731
5753
|
AoudaApiError,
|
|
@@ -5749,6 +5771,7 @@ var version = package_default.version;
|
|
|
5749
5771
|
ClusterAdminApi,
|
|
5750
5772
|
ConfigAdminApi,
|
|
5751
5773
|
DatabasesApi,
|
|
5774
|
+
FILTER_OPERATORS,
|
|
5752
5775
|
HealthAdminApi,
|
|
5753
5776
|
MaterializedQueriesApi,
|
|
5754
5777
|
MaterializedQueryState,
|
|
@@ -5758,6 +5781,7 @@ var version = package_default.version;
|
|
|
5758
5781
|
ReplicationAdminApi,
|
|
5759
5782
|
RetryPolicy,
|
|
5760
5783
|
ServerAdminApi,
|
|
5784
|
+
TIME_BUCKET_FUNCTIONS,
|
|
5761
5785
|
TableQuery,
|
|
5762
5786
|
TablesApi,
|
|
5763
5787
|
WhereGroupBuilder,
|