@xylex-group/athena 1.7.0 → 2.0.0
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/README.md +63 -53
- package/dist/cli/index.cjs +1224 -102
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.d.cts +2 -2
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +1224 -102
- package/dist/cli/index.js.map +1 -1
- package/dist/index.cjs +1832 -1138
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +63 -293
- package/dist/index.d.ts +63 -293
- package/dist/index.js +1829 -1139
- package/dist/index.js.map +1 -1
- package/dist/model-form-CVOtC8jq.d.ts +1284 -0
- package/dist/model-form-hXkvHS_3.d.cts +1284 -0
- package/dist/pipeline-C-cN0ACi.d.cts +164 -0
- package/dist/pipeline-CQgV-Yfo.d.ts +164 -0
- package/dist/react.cjs +157 -0
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +38 -4
- package/dist/react.d.ts +38 -4
- package/dist/react.js +154 -1
- package/dist/react.js.map +1 -1
- package/dist/types-BnzoaNRC.d.cts +380 -0
- package/dist/types-BnzoaNRC.d.ts +380 -0
- package/package.json +3 -3
- package/dist/errors-BJGgjHcI.d.cts +0 -31
- package/dist/errors-Bcf5Sftv.d.ts +0 -31
- package/dist/pipeline-BsKuBqmE.d.cts +0 -343
- package/dist/pipeline-xQSjGbqF.d.ts +0 -343
- package/dist/types-wPA1Z4vQ.d.cts +0 -195
- package/dist/types-wPA1Z4vQ.d.ts +0 -195
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* athena gateway types
|
|
3
|
+
*
|
|
4
|
+
* type definitions for the athena gateway api client and react hook
|
|
5
|
+
*/
|
|
6
|
+
type AthenaGatewayMethod = 'GET' | 'POST' | 'PUT' | 'DELETE';
|
|
7
|
+
type AthenaGatewayEndpointPath = '/gateway/fetch' | '/gateway/insert' | '/gateway/update' | '/gateway/delete' | '/gateway/rpc' | '/gateway/query' | `/rpc/${string}`;
|
|
8
|
+
type AthenaCountOption = 'exact' | 'planned' | 'estimated';
|
|
9
|
+
type AthenaJsonPrimitive = string | number | boolean | null;
|
|
10
|
+
type AthenaJsonValue = AthenaJsonPrimitive | AthenaJsonObject | AthenaJsonArray;
|
|
11
|
+
interface AthenaJsonObject {
|
|
12
|
+
[key: string]: AthenaJsonValue;
|
|
13
|
+
}
|
|
14
|
+
type AthenaJsonArray = AthenaJsonValue[];
|
|
15
|
+
type AthenaConditionValue = AthenaJsonPrimitive;
|
|
16
|
+
type AthenaConditionArrayValue = Array<AthenaConditionValue>;
|
|
17
|
+
type AthenaConditionCastType = string;
|
|
18
|
+
type AthenaConditionOperator = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'like' | 'ilike' | 'is' | 'in' | 'contains' | 'containedBy' | 'not' | 'or';
|
|
19
|
+
interface AthenaGatewayCondition {
|
|
20
|
+
column?: string;
|
|
21
|
+
operator: AthenaConditionOperator;
|
|
22
|
+
value?: AthenaConditionValue | AthenaConditionArrayValue | string;
|
|
23
|
+
/**
|
|
24
|
+
* Optional explicit cast for `value` (for example `"uuid"`).
|
|
25
|
+
* Older gateways ignore unknown fields; newer gateways may use this hint.
|
|
26
|
+
*/
|
|
27
|
+
value_cast?: AthenaConditionCastType;
|
|
28
|
+
/**
|
|
29
|
+
* Optional explicit cast for `column` (for example `"text"`).
|
|
30
|
+
* Used by SDK SQL fallback for typed comparisons.
|
|
31
|
+
*/
|
|
32
|
+
column_cast?: AthenaConditionCastType;
|
|
33
|
+
/** Back-compat shape expected by older gateway implementations */
|
|
34
|
+
eq_column?: string;
|
|
35
|
+
eq_value?: AthenaConditionValue | AthenaConditionArrayValue | string;
|
|
36
|
+
/** Optional cast hint aligned with legacy eq_* fields */
|
|
37
|
+
eq_value_cast?: AthenaConditionCastType;
|
|
38
|
+
/** Optional cast hint aligned with legacy eq_* fields */
|
|
39
|
+
eq_column_cast?: AthenaConditionCastType;
|
|
40
|
+
}
|
|
41
|
+
type AthenaSortDirection = 'ascending' | 'descending';
|
|
42
|
+
interface AthenaSortBy {
|
|
43
|
+
field: string;
|
|
44
|
+
direction: AthenaSortDirection;
|
|
45
|
+
}
|
|
46
|
+
interface AthenaFetchPayload {
|
|
47
|
+
view_name?: string;
|
|
48
|
+
table_name?: string;
|
|
49
|
+
columns?: string[] | string;
|
|
50
|
+
conditions?: AthenaGatewayCondition[];
|
|
51
|
+
limit?: number;
|
|
52
|
+
offset?: number;
|
|
53
|
+
current_page?: number;
|
|
54
|
+
page_size?: number;
|
|
55
|
+
total_pages?: number;
|
|
56
|
+
strip_nulls?: boolean;
|
|
57
|
+
group_by?: string;
|
|
58
|
+
time_granularity?: 'day' | 'hour' | 'minute';
|
|
59
|
+
aggregation_column?: string;
|
|
60
|
+
aggregation_strategy?: 'cumulative_sum';
|
|
61
|
+
aggregation_dedup?: boolean;
|
|
62
|
+
sort_by?: AthenaSortBy;
|
|
63
|
+
}
|
|
64
|
+
interface AthenaInsertPayload<TInsertBody = AthenaJsonObject, TUpdateBody = AthenaJsonObject> {
|
|
65
|
+
table_name: string;
|
|
66
|
+
insert_body: TInsertBody | TInsertBody[];
|
|
67
|
+
update_body?: TUpdateBody;
|
|
68
|
+
columns?: string[] | string;
|
|
69
|
+
count?: AthenaCountOption;
|
|
70
|
+
head?: boolean;
|
|
71
|
+
default_to_null?: boolean;
|
|
72
|
+
on_conflict?: string | string[];
|
|
73
|
+
}
|
|
74
|
+
interface AthenaDeletePayload {
|
|
75
|
+
table_name: string;
|
|
76
|
+
resource_id?: string;
|
|
77
|
+
columns?: string[] | string;
|
|
78
|
+
conditions?: AthenaGatewayCondition[];
|
|
79
|
+
sort_by?: AthenaSortBy;
|
|
80
|
+
current_page?: number;
|
|
81
|
+
page_size?: number;
|
|
82
|
+
total_pages?: number;
|
|
83
|
+
}
|
|
84
|
+
interface AthenaUpdatePayload<TUpdateBody = AthenaJsonObject> extends AthenaFetchPayload {
|
|
85
|
+
set?: TUpdateBody;
|
|
86
|
+
data?: TUpdateBody;
|
|
87
|
+
}
|
|
88
|
+
type AthenaRpcFilterOperator = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'like' | 'ilike' | 'is' | 'in';
|
|
89
|
+
interface AthenaRpcFilter {
|
|
90
|
+
column: string;
|
|
91
|
+
operator: AthenaRpcFilterOperator;
|
|
92
|
+
value?: AthenaConditionValue | AthenaConditionArrayValue | string;
|
|
93
|
+
}
|
|
94
|
+
interface AthenaRpcOrder {
|
|
95
|
+
column: string;
|
|
96
|
+
ascending?: boolean;
|
|
97
|
+
}
|
|
98
|
+
interface AthenaRpcPayload<TArgs = AthenaJsonObject> {
|
|
99
|
+
function: string;
|
|
100
|
+
function_name?: string;
|
|
101
|
+
schema?: string;
|
|
102
|
+
args?: TArgs;
|
|
103
|
+
select?: string;
|
|
104
|
+
filters?: AthenaRpcFilter[];
|
|
105
|
+
count?: AthenaCountOption;
|
|
106
|
+
head?: boolean;
|
|
107
|
+
limit?: number;
|
|
108
|
+
offset?: number;
|
|
109
|
+
order?: AthenaRpcOrder;
|
|
110
|
+
}
|
|
111
|
+
/** Backend type for Athena client (aligns with athena-rs) */
|
|
112
|
+
type BackendType = 'athena' | 'postgrest' | 'postgresql' | 'scylladb';
|
|
113
|
+
/** Backend config: type from SDK + backend-scoped options */
|
|
114
|
+
interface BackendConfig {
|
|
115
|
+
type: BackendType;
|
|
116
|
+
options?: AthenaJsonObject;
|
|
117
|
+
}
|
|
118
|
+
/** Pre-defined backends for lean usage: backend: Backend.Athena */
|
|
119
|
+
declare const Backend: {
|
|
120
|
+
readonly Athena: {
|
|
121
|
+
readonly type: "athena";
|
|
122
|
+
};
|
|
123
|
+
readonly Postgrest: {
|
|
124
|
+
readonly type: "postgrest";
|
|
125
|
+
};
|
|
126
|
+
readonly PostgreSQL: {
|
|
127
|
+
readonly type: "postgresql";
|
|
128
|
+
};
|
|
129
|
+
readonly ScyllaDB: {
|
|
130
|
+
readonly type: "scylladb";
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
type BackendOption = BackendConfig | BackendType;
|
|
134
|
+
interface AthenaGatewayBaseOptions {
|
|
135
|
+
baseUrl?: string;
|
|
136
|
+
apiKey?: string;
|
|
137
|
+
client?: string;
|
|
138
|
+
backend?: BackendOption;
|
|
139
|
+
publishEvent?: string;
|
|
140
|
+
headers?: Record<string, string>;
|
|
141
|
+
userId?: string | null;
|
|
142
|
+
organizationId?: string | null;
|
|
143
|
+
}
|
|
144
|
+
type AthenaGatewayHookConfig = AthenaGatewayBaseOptions;
|
|
145
|
+
interface AthenaGatewayCallOptions extends AthenaGatewayBaseOptions {
|
|
146
|
+
schema?: string;
|
|
147
|
+
count?: AthenaCountOption;
|
|
148
|
+
head?: boolean;
|
|
149
|
+
defaultToNull?: boolean;
|
|
150
|
+
stripNulls?: boolean;
|
|
151
|
+
onConflict?: string | string[];
|
|
152
|
+
updateBody?: AthenaJsonObject;
|
|
153
|
+
}
|
|
154
|
+
interface AthenaRpcCallOptions extends AthenaGatewayCallOptions {
|
|
155
|
+
count?: AthenaCountOption;
|
|
156
|
+
get?: boolean;
|
|
157
|
+
}
|
|
158
|
+
interface AthenaGatewayResponse<T = unknown> {
|
|
159
|
+
ok: boolean;
|
|
160
|
+
status: number;
|
|
161
|
+
data: T | null;
|
|
162
|
+
count?: number | null;
|
|
163
|
+
error?: string;
|
|
164
|
+
errorDetails?: AthenaGatewayErrorDetails | null;
|
|
165
|
+
raw: unknown;
|
|
166
|
+
}
|
|
167
|
+
type AthenaGatewayErrorCode = 'NETWORK_ERROR' | 'HTTP_ERROR' | 'INVALID_JSON' | 'UNKNOWN_ERROR';
|
|
168
|
+
interface AthenaGatewayErrorDetails {
|
|
169
|
+
code: AthenaGatewayErrorCode;
|
|
170
|
+
message: string;
|
|
171
|
+
status: number;
|
|
172
|
+
endpoint?: AthenaGatewayEndpointPath;
|
|
173
|
+
method?: AthenaGatewayMethod;
|
|
174
|
+
requestId?: string;
|
|
175
|
+
hint?: string;
|
|
176
|
+
cause?: string;
|
|
177
|
+
}
|
|
178
|
+
interface AthenaGatewayResponseLog extends AthenaGatewayResponse {
|
|
179
|
+
timestamp: string;
|
|
180
|
+
}
|
|
181
|
+
interface AthenaGatewayCallLog {
|
|
182
|
+
endpoint: AthenaGatewayEndpointPath;
|
|
183
|
+
method: AthenaGatewayMethod;
|
|
184
|
+
payload: unknown;
|
|
185
|
+
headers: Record<string, string>;
|
|
186
|
+
timestamp: string;
|
|
187
|
+
}
|
|
188
|
+
interface AthenaGatewayHookResult {
|
|
189
|
+
fetchGateway: <T = unknown>(payload: AthenaFetchPayload, options?: AthenaGatewayCallOptions) => Promise<AthenaGatewayResponse<T>>;
|
|
190
|
+
insertGateway: <T = unknown>(payload: AthenaInsertPayload, options?: AthenaGatewayCallOptions) => Promise<AthenaGatewayResponse<T>>;
|
|
191
|
+
updateGateway: <T = unknown>(payload: AthenaUpdatePayload, options?: AthenaGatewayCallOptions) => Promise<AthenaGatewayResponse<T>>;
|
|
192
|
+
deleteGateway: <T = unknown>(payload: AthenaDeletePayload, options?: AthenaGatewayCallOptions) => Promise<AthenaGatewayResponse<T>>;
|
|
193
|
+
rpcGateway: <T = unknown>(payload: AthenaRpcPayload, options?: AthenaRpcCallOptions) => Promise<AthenaGatewayResponse<T>>;
|
|
194
|
+
isLoading: boolean;
|
|
195
|
+
error: string | null;
|
|
196
|
+
lastRequest: AthenaGatewayCallLog | null;
|
|
197
|
+
lastResponse: AthenaGatewayResponseLog | null;
|
|
198
|
+
baseUrl: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
type ModelKey = string;
|
|
202
|
+
type ColumnKey = string;
|
|
203
|
+
/**
|
|
204
|
+
* Runtime values that can safely be serialized into tenant-scoped headers.
|
|
205
|
+
*/
|
|
206
|
+
type TenantContextValue = string | number | boolean | null | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* Compile-time map of tenant context keys to outbound header names.
|
|
209
|
+
*/
|
|
210
|
+
type TenantKeyMap = Record<string, string>;
|
|
211
|
+
/**
|
|
212
|
+
* Partial tenant context keyed by `TenantKeyMap`.
|
|
213
|
+
*/
|
|
214
|
+
type TenantContext<TMap extends TenantKeyMap> = Partial<Record<keyof TMap, TenantContextValue>>;
|
|
215
|
+
/**
|
|
216
|
+
* Supported relationship cardinalities for model metadata and introspection snapshots.
|
|
217
|
+
*/
|
|
218
|
+
type ModelRelationKind = 'one-to-one' | 'one-to-many' | 'many-to-one' | 'many-to-many';
|
|
219
|
+
/**
|
|
220
|
+
* Base metadata shape shared by typed model definitions and introspection snapshots.
|
|
221
|
+
* This type is intentionally row-agnostic so it can be used for generic registries.
|
|
222
|
+
*/
|
|
223
|
+
interface ModelMetadataBase {
|
|
224
|
+
database?: string;
|
|
225
|
+
schema?: string;
|
|
226
|
+
model?: string;
|
|
227
|
+
tableName?: string;
|
|
228
|
+
primaryKey: string[];
|
|
229
|
+
nullable?: Partial<Record<string, boolean>>;
|
|
230
|
+
relations?: Record<string, ModelRelationMetadata>;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Strongly-typed model metadata linked to a row shape.
|
|
234
|
+
*/
|
|
235
|
+
type ModelMetadata<Row> = Omit<ModelMetadataBase, 'primaryKey' | 'nullable'> & {
|
|
236
|
+
primaryKey: Array<Extract<keyof Row, string>>;
|
|
237
|
+
nullable?: Partial<Record<Extract<keyof Row, string>, boolean>>;
|
|
238
|
+
};
|
|
239
|
+
/**
|
|
240
|
+
* Relation metadata for model contracts and introspection snapshots.
|
|
241
|
+
*/
|
|
242
|
+
interface ModelRelationMetadata {
|
|
243
|
+
kind: ModelRelationKind;
|
|
244
|
+
sourceColumns: ColumnKey[];
|
|
245
|
+
targetSchema: string;
|
|
246
|
+
targetModel: ModelKey;
|
|
247
|
+
targetColumns: ColumnKey[];
|
|
248
|
+
targetDatabase?: string;
|
|
249
|
+
through?: {
|
|
250
|
+
schema: string;
|
|
251
|
+
model: string;
|
|
252
|
+
sourceColumns: ColumnKey[];
|
|
253
|
+
targetColumns: ColumnKey[];
|
|
254
|
+
};
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Core model definition contract used by typed registries.
|
|
258
|
+
*/
|
|
259
|
+
interface ModelDef<Row, Insert = Partial<Row>, Update = Partial<Insert>, Meta extends ModelMetadataBase = ModelMetadata<Row>> {
|
|
260
|
+
readonly meta: Meta;
|
|
261
|
+
readonly __types?: {
|
|
262
|
+
row: Row;
|
|
263
|
+
insert: Insert;
|
|
264
|
+
update: Update;
|
|
265
|
+
};
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Row-agnostic model definition used as a generic constraint.
|
|
269
|
+
*/
|
|
270
|
+
type AnyModelDef = ModelDef<unknown, unknown, unknown, ModelMetadataBase>;
|
|
271
|
+
/**
|
|
272
|
+
* Schema-level model registry.
|
|
273
|
+
*/
|
|
274
|
+
interface SchemaDef<Models extends Record<ModelKey, AnyModelDef>> {
|
|
275
|
+
readonly models: Models;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Database-level schema registry.
|
|
279
|
+
*/
|
|
280
|
+
interface DatabaseDef<Schemas extends Record<string, SchemaDef<Record<ModelKey, AnyModelDef>>>> {
|
|
281
|
+
readonly schemas: Schemas;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Top-level registry keyed by logical database names.
|
|
285
|
+
*/
|
|
286
|
+
type RegistryDef<Databases extends Record<string, DatabaseDef<Record<string, SchemaDef<Record<ModelKey, AnyModelDef>>>>>> = Databases;
|
|
287
|
+
/**
|
|
288
|
+
* Extracts row type from a model definition.
|
|
289
|
+
*/
|
|
290
|
+
type RowOf<TModel extends AnyModelDef> = TModel extends ModelDef<infer TRow, unknown, unknown, ModelMetadataBase> ? TRow : never;
|
|
291
|
+
/**
|
|
292
|
+
* Extracts insert type from a model definition.
|
|
293
|
+
*/
|
|
294
|
+
type InsertOf<TModel extends AnyModelDef> = TModel extends ModelDef<unknown, infer TInsert, unknown, ModelMetadataBase> ? TInsert : never;
|
|
295
|
+
/**
|
|
296
|
+
* Extracts update type from a model definition.
|
|
297
|
+
*/
|
|
298
|
+
type UpdateOf<TModel extends AnyModelDef> = TModel extends ModelDef<unknown, unknown, infer TUpdate, ModelMetadataBase> ? TUpdate : never;
|
|
299
|
+
/**
|
|
300
|
+
* Resolves a model definition from a registry path.
|
|
301
|
+
*/
|
|
302
|
+
type ModelAt<TRegistry extends RegistryDef<Record<string, DatabaseDef<Record<string, SchemaDef<Record<ModelKey, AnyModelDef>>>>>>, TDatabase extends keyof TRegistry & string, TSchema extends keyof TRegistry[TDatabase]['schemas'] & string, TModel extends keyof TRegistry[TDatabase]['schemas'][TSchema]['models'] & string> = TRegistry[TDatabase]['schemas'][TSchema]['models'][TModel];
|
|
303
|
+
/**
|
|
304
|
+
* Introspection-level column type families.
|
|
305
|
+
*/
|
|
306
|
+
type IntrospectionTypeKind = 'scalar' | 'enum' | 'domain' | 'range' | 'multirange' | 'composite';
|
|
307
|
+
/**
|
|
308
|
+
* Introspected column metadata.
|
|
309
|
+
*/
|
|
310
|
+
interface IntrospectionColumn {
|
|
311
|
+
name: string;
|
|
312
|
+
dataType: string;
|
|
313
|
+
udtName: string;
|
|
314
|
+
typeKind: IntrospectionTypeKind;
|
|
315
|
+
isNullable: boolean;
|
|
316
|
+
isPrimaryKey: boolean;
|
|
317
|
+
hasDefault: boolean;
|
|
318
|
+
isGenerated: boolean;
|
|
319
|
+
arrayDimensions: number;
|
|
320
|
+
enumValues?: string[];
|
|
321
|
+
}
|
|
322
|
+
/**
|
|
323
|
+
* Introspected relationship metadata.
|
|
324
|
+
*/
|
|
325
|
+
interface IntrospectionRelation {
|
|
326
|
+
name: string;
|
|
327
|
+
kind: ModelRelationKind;
|
|
328
|
+
sourceColumns: string[];
|
|
329
|
+
targetSchema: string;
|
|
330
|
+
targetModel: string;
|
|
331
|
+
targetColumns: string[];
|
|
332
|
+
targetDatabase?: string;
|
|
333
|
+
through?: {
|
|
334
|
+
schema: string;
|
|
335
|
+
model: string;
|
|
336
|
+
sourceColumns: string[];
|
|
337
|
+
targetColumns: string[];
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* Introspected table metadata.
|
|
342
|
+
*/
|
|
343
|
+
interface IntrospectionTable {
|
|
344
|
+
schema: string;
|
|
345
|
+
name: string;
|
|
346
|
+
columns: Record<string, IntrospectionColumn>;
|
|
347
|
+
primaryKey: string[];
|
|
348
|
+
relations: Record<string, IntrospectionRelation>;
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* Introspected schema metadata.
|
|
352
|
+
*/
|
|
353
|
+
interface IntrospectionSchema {
|
|
354
|
+
name: string;
|
|
355
|
+
tables: Record<string, IntrospectionTable>;
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* Normalized output of a schema introspection pass.
|
|
359
|
+
*/
|
|
360
|
+
interface IntrospectionSnapshot {
|
|
361
|
+
backend: BackendType;
|
|
362
|
+
database: string;
|
|
363
|
+
generatedAt: string;
|
|
364
|
+
schemas: Record<string, IntrospectionSchema>;
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* Options accepted by introspection providers.
|
|
368
|
+
*/
|
|
369
|
+
interface IntrospectionInspectOptions {
|
|
370
|
+
schemas?: string[];
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* Provider contract implemented by backend-specific introspection adapters.
|
|
374
|
+
*/
|
|
375
|
+
interface SchemaIntrospectionProvider {
|
|
376
|
+
readonly backend: BackendType;
|
|
377
|
+
inspect(options?: IntrospectionInspectOptions): Promise<IntrospectionSnapshot>;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export { type AthenaJsonValue as A, type BackendConfig as B, type IntrospectionRelation as C, type DatabaseDef as D, type IntrospectionSchema as E, type IntrospectionTable as F, type IntrospectionTypeKind as G, type ModelRelationKind as H, type InsertOf as I, type ModelRelationMetadata as J, type TenantContextValue as K, type AthenaGatewayHookConfig as L, type ModelMetadata as M, type AthenaGatewayHookResult as N, type AthenaDeletePayload as O, type AthenaFetchPayload as P, type AthenaGatewayResponse as Q, type RegistryDef as R, type SchemaDef as S, type TenantKeyMap as T, type UpdateOf as U, type AthenaInsertPayload as V, type AthenaUpdatePayload as W, type AthenaGatewayEndpointPath as X, type AthenaGatewayMethod as Y, type BackendType as a, type AthenaConditionValue as b, type AthenaConditionCastType as c, type AthenaConditionArrayValue as d, type AthenaConditionOperator as e, type AthenaGatewayCallOptions as f, type AthenaGatewayErrorDetails as g, type AthenaJsonObject as h, type AthenaRpcCallOptions as i, type AnyModelDef as j, type ModelDef as k, type TenantContext as l, type RowOf as m, type ModelAt as n, type SchemaIntrospectionProvider as o, type IntrospectionSnapshot as p, type IntrospectionColumn as q, type AthenaGatewayErrorCode as r, type AthenaJsonArray as s, type AthenaJsonPrimitive as t, type AthenaRpcFilter as u, type AthenaRpcFilterOperator as v, type AthenaRpcOrder as w, type AthenaRpcPayload as x, Backend as y, type IntrospectionInspectOptions as z };
|