@mastra/lance 0.0.0-fix-message-list-merge-20250718043058 → 0.0.0-fix-tool-call-history-20250730195323

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.
@@ -2,6 +2,7 @@ import { ArrayOperator } from '@mastra/core/vector/filter';
2
2
  import { BaseFilterTranslator } from '@mastra/core/vector/filter';
3
3
  import { BasicOperator } from '@mastra/core/vector/filter';
4
4
  import type { BlacklistedRootOperators } from '@mastra/core/vector/filter';
5
+ import type { Connection } from '@lancedb/lancedb';
5
6
  import type { ConnectionOptions } from '@lancedb/lancedb';
6
7
  import type { CreateIndexParams } from '@mastra/core';
7
8
  import type { CreateTableOptions } from '@lancedb/lancedb';
@@ -10,6 +11,7 @@ import type { DeleteVectorParams } from '@mastra/core';
10
11
  import type { DescribeIndexParams } from '@mastra/core';
11
12
  import type { EvalRow } from '@mastra/core/storage';
12
13
  import type { IndexStats } from '@mastra/core';
14
+ import { LegacyEvalsStorage } from '@mastra/core/storage';
13
15
  import { LogicalOperator } from '@mastra/core/vector/filter';
14
16
  import type { LogicalOperatorValueMap } from '@mastra/core/vector/filter';
15
17
  import type { MastraMessageContentV2 } from '@mastra/core/agent';
@@ -17,6 +19,7 @@ import type { MastraMessageV1 } from '@mastra/core/memory';
17
19
  import type { MastraMessageV2 } from '@mastra/core/memory';
18
20
  import { MastraStorage } from '@mastra/core/storage';
19
21
  import { MastraVector } from '@mastra/core/vector';
22
+ import { MemoryStorage } from '@mastra/core/storage';
20
23
  import { NumericOperator } from '@mastra/core/vector/filter';
21
24
  import type { OperatorValueMap } from '@mastra/core/vector/filter';
22
25
  import type { PaginationInfo } from '@mastra/core/storage';
@@ -24,20 +27,37 @@ import type { QueryResult } from '@mastra/core';
24
27
  import type { QueryVectorParams } from '@mastra/core';
25
28
  import { RegexOperator } from '@mastra/core/vector/filter';
26
29
  import type { SchemaLike } from '@lancedb/lancedb';
30
+ import type { ScoreRowData } from '@mastra/core/scores';
31
+ import { ScoresStorage } from '@mastra/core/storage';
27
32
  import type { StorageColumn } from '@mastra/core/storage';
33
+ import type { StorageDomains } from '@mastra/core/storage';
28
34
  import type { StorageGetMessagesArg } from '@mastra/core/storage';
29
- import type { StorageGetTracesArg } from '@mastra/core/storage';
35
+ import type { StorageGetTracesPaginatedArg } from '@mastra/core/storage';
36
+ import type { StoragePagination } from '@mastra/core/storage';
37
+ import type { StorageResourceType } from '@mastra/core/storage';
30
38
  import type { StorageThreadType } from '@mastra/core/memory';
39
+ import { StoreOperations } from '@mastra/core/storage';
31
40
  import type { Table } from '@lancedb/lancedb';
32
41
  import type { TABLE_NAMES } from '@mastra/core/storage';
33
42
  import type { TableLike } from '@lancedb/lancedb';
34
43
  import type { Trace } from '@mastra/core/telemetry';
44
+ import { TracesStorage } from '@mastra/core/storage';
35
45
  import type { TraceType } from '@mastra/core/memory';
36
46
  import type { UpdateVectorParams } from '@mastra/core';
37
47
  import type { UpsertVectorParams } from '@mastra/core';
38
48
  import type { VectorFilter } from '@mastra/core/vector/filter';
39
49
  import type { WorkflowRuns } from '@mastra/core/storage';
50
+ import type { WorkflowRuns as WorkflowRuns_2 } from '@mastra/core';
40
51
  import type { WorkflowRunState } from '@mastra/core/workflows';
52
+ import type { WorkflowRunState as WorkflowRunState_2 } from '@mastra/core';
53
+ import { WorkflowsStorage } from '@mastra/core/storage';
54
+
55
+ export declare function getPrimaryKeys(tableName: TABLE_NAMES): string[];
56
+
57
+ export declare function getTableSchema({ tableName, client, }: {
58
+ tableName: TABLE_NAMES;
59
+ client: Connection;
60
+ }): Promise<SchemaLike>;
41
61
 
42
62
  declare interface HNSWConfig {
43
63
  m?: number;
@@ -112,6 +132,7 @@ declare interface LanceQueryVectorParams extends QueryVectorParams<LanceVectorFi
112
132
  }
113
133
 
114
134
  declare class LanceStorage extends MastraStorage {
135
+ stores: StorageDomains;
115
136
  private lanceClient;
116
137
  /**
117
138
  * Creates a new instance of LanceStorage
@@ -136,7 +157,6 @@ declare class LanceStorage extends MastraStorage {
136
157
  * ```
137
158
  */
138
159
  static create(name: string, uri: string, options?: ConnectionOptions): Promise<LanceStorage>;
139
- private getPrimaryKeys;
140
160
  /**
141
161
  * @internal
142
162
  * Private constructor to enforce using the create factory method
@@ -146,76 +166,29 @@ declare class LanceStorage extends MastraStorage {
146
166
  tableName: TABLE_NAMES;
147
167
  schema: Record<string, StorageColumn>;
148
168
  }): Promise<void>;
149
- private translateSchema;
150
- /**
151
- * Drop a table if it exists
152
- * @param tableName Name of the table to drop
153
- */
154
- dropTable(tableName: TABLE_NAMES): Promise<void>;
155
- /**
156
- * Get table schema
157
- * @param tableName Name of the table
158
- * @returns Table schema
159
- */
160
- getTableSchema(tableName: TABLE_NAMES): Promise<SchemaLike>;
161
- protected getDefaultValue(type: StorageColumn['type']): string;
162
- /**
163
- * Alters table schema to add columns if they don't exist
164
- * @param tableName Name of the table
165
- * @param schema Schema of the table
166
- * @param ifNotExists Array of column names to add if they don't exist
167
- */
169
+ dropTable({ tableName }: {
170
+ tableName: TABLE_NAMES;
171
+ }): Promise<void>;
168
172
  alterTable({ tableName, schema, ifNotExists, }: {
169
- tableName: string;
173
+ tableName: TABLE_NAMES;
170
174
  schema: Record<string, StorageColumn>;
171
175
  ifNotExists: string[];
172
176
  }): Promise<void>;
173
177
  clearTable({ tableName }: {
174
178
  tableName: TABLE_NAMES;
175
179
  }): Promise<void>;
176
- /**
177
- * Insert a single record into a table. This function overwrites the existing record if it exists. Use this function for inserting records into tables with custom schemas.
178
- * @param tableName The name of the table to insert into.
179
- * @param record The record to insert.
180
- */
181
180
  insert({ tableName, record }: {
182
- tableName: string;
181
+ tableName: TABLE_NAMES;
183
182
  record: Record<string, any>;
184
183
  }): Promise<void>;
185
- /**
186
- * Insert multiple records into a table. This function overwrites the existing records if they exist. Use this function for inserting records into tables with custom schemas.
187
- * @param tableName The name of the table to insert into.
188
- * @param records The records to insert.
189
- */
190
184
  batchInsert({ tableName, records }: {
191
- tableName: string;
185
+ tableName: TABLE_NAMES;
192
186
  records: Record<string, any>[];
193
187
  }): Promise<void>;
194
- /**
195
- * Load a record from the database by its key(s)
196
- * @param tableName The name of the table to query
197
- * @param keys Record of key-value pairs to use for lookup
198
- * @throws Error if invalid types are provided for keys
199
- * @returns The loaded record with proper type conversions, or null if not found
200
- */
201
188
  load({ tableName, keys }: {
202
189
  tableName: TABLE_NAMES;
203
190
  keys: Record<string, any>;
204
191
  }): Promise<any>;
205
- /**
206
- * Validates that key types match the schema definition
207
- * @param keys The keys to validate
208
- * @param tableSchema The table schema to validate against
209
- * @throws Error if a key has an incompatible type
210
- */
211
- private validateKeyTypes;
212
- /**
213
- * Process a database result with appropriate type conversions based on the table schema
214
- * @param rawResult The raw result object from the database
215
- * @param tableSchema The schema of the table containing type information
216
- * @returns Processed result with correct data types
217
- */
218
- private processResultWithTypeConversion;
219
192
  getThreadById({ threadId }: {
220
193
  threadId: string;
221
194
  }): Promise<StorageThreadType | null>;
@@ -238,6 +211,24 @@ declare class LanceStorage extends MastraStorage {
238
211
  deleteThread({ threadId }: {
239
212
  threadId: string;
240
213
  }): Promise<void>;
214
+ get supports(): {
215
+ selectByIncludeResourceScope: boolean;
216
+ resourceWorkingMemory: boolean;
217
+ hasColumn: boolean;
218
+ createTable: boolean;
219
+ deleteMessages: boolean;
220
+ };
221
+ getResourceById({ resourceId }: {
222
+ resourceId: string;
223
+ }): Promise<StorageResourceType | null>;
224
+ saveResource({ resource }: {
225
+ resource: StorageResourceType;
226
+ }): Promise<StorageResourceType>;
227
+ updateResource({ resourceId, workingMemory, metadata, }: {
228
+ resourceId: string;
229
+ workingMemory?: string;
230
+ metadata?: Record<string, unknown>;
231
+ }): Promise<StorageResourceType>;
241
232
  /**
242
233
  * Processes messages to include context messages based on withPreviousMessages and withNextMessages
243
234
  * @param records - The sorted array of records to process
@@ -259,24 +250,55 @@ declare class LanceStorage extends MastraStorage {
259
250
  messages: MastraMessageV2[];
260
251
  format: 'v2';
261
252
  }): Promise<MastraMessageV2[]>;
262
- saveTrace({ trace }: {
263
- trace: TraceType;
264
- }): Promise<TraceType>;
265
- getTraceById({ traceId }: {
253
+ getThreadsByResourceIdPaginated(args: {
254
+ resourceId: string;
255
+ page: number;
256
+ perPage: number;
257
+ }): Promise<PaginationInfo & {
258
+ threads: StorageThreadType[];
259
+ }>;
260
+ getMessagesPaginated(args: StorageGetMessagesArg & {
261
+ format?: 'v1' | 'v2';
262
+ }): Promise<PaginationInfo & {
263
+ messages: MastraMessageV1[] | MastraMessageV2[];
264
+ }>;
265
+ updateMessages(_args: {
266
+ messages: Partial<Omit<MastraMessageV2, 'createdAt'>> & {
267
+ id: string;
268
+ content?: {
269
+ metadata?: MastraMessageContentV2['metadata'];
270
+ content?: MastraMessageContentV2['content'];
271
+ };
272
+ }[];
273
+ }): Promise<MastraMessageV2[]>;
274
+ getTraceById(args: {
266
275
  traceId: string;
267
276
  }): Promise<TraceType>;
268
- getTraces({ name, scope, page, perPage, attributes, }: {
277
+ getTraces(args: {
269
278
  name?: string;
270
279
  scope?: string;
271
280
  page: number;
272
281
  perPage: number;
273
282
  attributes?: Record<string, string>;
274
- }): Promise<TraceType[]>;
275
- saveEvals({ evals }: {
276
- evals: EvalRow[];
277
- }): Promise<EvalRow[]>;
283
+ }): Promise<Trace[]>;
284
+ getTracesPaginated(args: StorageGetTracesPaginatedArg): Promise<PaginationInfo & {
285
+ traces: Trace[];
286
+ }>;
278
287
  getEvalsByAgentName(agentName: string, type?: 'test' | 'live'): Promise<EvalRow[]>;
279
- private parseWorkflowRun;
288
+ getEvals(options: {
289
+ agentName?: string;
290
+ type?: 'test' | 'live';
291
+ page?: number;
292
+ perPage?: number;
293
+ fromDate?: Date;
294
+ toDate?: Date;
295
+ dateRange?: {
296
+ start?: Date;
297
+ end?: Date;
298
+ };
299
+ }): Promise<PaginationInfo & {
300
+ evals: EvalRow[];
301
+ }>;
280
302
  getWorkflowRuns(args?: {
281
303
  namespace?: string;
282
304
  workflowName?: string;
@@ -285,11 +307,6 @@ declare class LanceStorage extends MastraStorage {
285
307
  limit?: number;
286
308
  offset?: number;
287
309
  }): Promise<WorkflowRuns>;
288
- /**
289
- * Retrieve a single workflow run by its runId.
290
- * @param args The ID of the workflow run to retrieve
291
- * @returns The workflow run object or null if not found
292
- */
293
310
  getWorkflowRunById(args: {
294
311
  runId: string;
295
312
  workflowName?: string;
@@ -309,28 +326,34 @@ declare class LanceStorage extends MastraStorage {
309
326
  workflowName: string;
310
327
  runId: string;
311
328
  }): Promise<WorkflowRunState | null>;
312
- getTracesPaginated(_args: StorageGetTracesArg): Promise<PaginationInfo & {
313
- traces: Trace[];
329
+ getScoreById({ id: _id }: {
330
+ id: string;
331
+ }): Promise<ScoreRowData | null>;
332
+ getScoresByScorerId({ scorerId, pagination, }: {
333
+ scorerId: string;
334
+ pagination: StoragePagination;
335
+ }): Promise<{
336
+ pagination: PaginationInfo;
337
+ scores: ScoreRowData[];
314
338
  }>;
315
- getThreadsByResourceIdPaginated(_args: {
316
- resourceId: string;
317
- page?: number;
318
- perPage?: number;
319
- }): Promise<PaginationInfo & {
320
- threads: StorageThreadType[];
339
+ saveScore(_score: ScoreRowData): Promise<{
340
+ score: ScoreRowData;
321
341
  }>;
322
- getMessagesPaginated(_args: StorageGetMessagesArg): Promise<PaginationInfo & {
323
- messages: MastraMessageV1[] | MastraMessageV2[];
342
+ getScoresByRunId({ runId, pagination, }: {
343
+ runId: string;
344
+ pagination: StoragePagination;
345
+ }): Promise<{
346
+ pagination: PaginationInfo;
347
+ scores: ScoreRowData[];
348
+ }>;
349
+ getScoresByEntityId({ entityId, entityType, pagination, }: {
350
+ pagination: StoragePagination;
351
+ entityId: string;
352
+ entityType: string;
353
+ }): Promise<{
354
+ pagination: PaginationInfo;
355
+ scores: ScoreRowData[];
324
356
  }>;
325
- updateMessages(_args: {
326
- messages: Partial<Omit<MastraMessageV2, 'createdAt'>> & {
327
- id: string;
328
- content?: {
329
- metadata?: MastraMessageContentV2['metadata'];
330
- content?: MastraMessageContentV2['content'];
331
- };
332
- }[];
333
- }): Promise<MastraMessageV2[]>;
334
357
  }
335
358
  export { LanceStorage }
336
359
  export { LanceStorage as LanceStorage_alias_1 }
@@ -406,4 +429,253 @@ declare class LanceVectorStore extends MastraVector<LanceVectorFilter> {
406
429
  export { LanceVectorStore }
407
430
  export { LanceVectorStore as LanceVectorStore_alias_1 }
408
431
 
432
+ export declare function processResultWithTypeConversion(rawResult: Record<string, any> | Record<string, any>[], tableSchema: SchemaLike): Record<string, any> | Record<string, any>[];
433
+
434
+ export declare class StoreLegacyEvalsLance extends LegacyEvalsStorage {
435
+ private client;
436
+ constructor({ client }: {
437
+ client: Connection;
438
+ });
439
+ getEvalsByAgentName(agentName: string, type?: 'test' | 'live'): Promise<EvalRow[]>;
440
+ getEvals(options: {
441
+ agentName?: string;
442
+ type?: 'test' | 'live';
443
+ page?: number;
444
+ perPage?: number;
445
+ fromDate?: Date;
446
+ toDate?: Date;
447
+ dateRange?: {
448
+ start?: Date;
449
+ end?: Date;
450
+ };
451
+ }): Promise<PaginationInfo & {
452
+ evals: EvalRow[];
453
+ }>;
454
+ }
455
+
456
+ export declare class StoreMemoryLance extends MemoryStorage {
457
+ private client;
458
+ private operations;
459
+ constructor({ client, operations }: {
460
+ client: Connection;
461
+ operations: StoreOperationsLance;
462
+ });
463
+ getThreadById({ threadId }: {
464
+ threadId: string;
465
+ }): Promise<StorageThreadType | null>;
466
+ getThreadsByResourceId({ resourceId }: {
467
+ resourceId: string;
468
+ }): Promise<StorageThreadType[]>;
469
+ /**
470
+ * Saves a thread to the database. This function doesn't overwrite existing threads.
471
+ * @param thread - The thread to save
472
+ * @returns The saved thread
473
+ */
474
+ saveThread({ thread }: {
475
+ thread: StorageThreadType;
476
+ }): Promise<StorageThreadType>;
477
+ updateThread({ id, title, metadata, }: {
478
+ id: string;
479
+ title: string;
480
+ metadata: Record<string, unknown>;
481
+ }): Promise<StorageThreadType>;
482
+ deleteThread({ threadId }: {
483
+ threadId: string;
484
+ }): Promise<void>;
485
+ getMessages(args: StorageGetMessagesArg & {
486
+ format?: 'v1';
487
+ }): Promise<MastraMessageV1[]>;
488
+ getMessages(args: StorageGetMessagesArg & {
489
+ format: 'v2';
490
+ }): Promise<MastraMessageV2[]>;
491
+ saveMessages(args: {
492
+ messages: MastraMessageV1[];
493
+ format?: undefined | 'v1';
494
+ }): Promise<MastraMessageV1[]>;
495
+ saveMessages(args: {
496
+ messages: MastraMessageV2[];
497
+ format: 'v2';
498
+ }): Promise<MastraMessageV2[]>;
499
+ getThreadsByResourceIdPaginated(args: {
500
+ resourceId: string;
501
+ page?: number;
502
+ perPage?: number;
503
+ }): Promise<PaginationInfo & {
504
+ threads: StorageThreadType[];
505
+ }>;
506
+ /**
507
+ * Processes messages to include context messages based on withPreviousMessages and withNextMessages
508
+ * @param records - The sorted array of records to process
509
+ * @param include - The array of include specifications with context parameters
510
+ * @returns The processed array with context messages included
511
+ */
512
+ private processMessagesWithContext;
513
+ getMessagesPaginated(args: StorageGetMessagesArg & {
514
+ format?: 'v1' | 'v2';
515
+ }): Promise<PaginationInfo & {
516
+ messages: MastraMessageV1[] | MastraMessageV2[];
517
+ }>;
518
+ /**
519
+ * Parse message data from LanceDB record format to MastraMessageV2 format
520
+ */
521
+ private parseMessageData;
522
+ updateMessages(args: {
523
+ messages: Partial<Omit<MastraMessageV2, 'createdAt'>> & {
524
+ id: string;
525
+ content?: {
526
+ metadata?: MastraMessageContentV2['metadata'];
527
+ content?: MastraMessageContentV2['content'];
528
+ };
529
+ }[];
530
+ }): Promise<MastraMessageV2[]>;
531
+ getResourceById({ resourceId }: {
532
+ resourceId: string;
533
+ }): Promise<StorageResourceType | null>;
534
+ saveResource({ resource }: {
535
+ resource: StorageResourceType;
536
+ }): Promise<StorageResourceType>;
537
+ updateResource({ resourceId, workingMemory, metadata, }: {
538
+ resourceId: string;
539
+ workingMemory?: string;
540
+ metadata?: Record<string, unknown>;
541
+ }): Promise<StorageResourceType>;
542
+ }
543
+
544
+ export declare class StoreOperationsLance extends StoreOperations {
545
+ client: Connection;
546
+ constructor({ client }: {
547
+ client: Connection;
548
+ });
549
+ protected getDefaultValue(type: StorageColumn['type']): string;
550
+ hasColumn(tableName: TABLE_NAMES, columnName: string): Promise<boolean>;
551
+ private translateSchema;
552
+ createTable({ tableName, schema, }: {
553
+ tableName: TABLE_NAMES;
554
+ schema: Record<string, StorageColumn>;
555
+ }): Promise<void>;
556
+ dropTable({ tableName }: {
557
+ tableName: TABLE_NAMES;
558
+ }): Promise<void>;
559
+ alterTable({ tableName, schema, ifNotExists, }: {
560
+ tableName: string;
561
+ schema: Record<string, StorageColumn>;
562
+ ifNotExists: string[];
563
+ }): Promise<void>;
564
+ clearTable({ tableName }: {
565
+ tableName: TABLE_NAMES;
566
+ }): Promise<void>;
567
+ insert({ tableName, record }: {
568
+ tableName: string;
569
+ record: Record<string, any>;
570
+ }): Promise<void>;
571
+ batchInsert({ tableName, records }: {
572
+ tableName: string;
573
+ records: Record<string, any>[];
574
+ }): Promise<void>;
575
+ load({ tableName, keys }: {
576
+ tableName: TABLE_NAMES;
577
+ keys: Record<string, any>;
578
+ }): Promise<any>;
579
+ }
580
+
581
+ export declare class StoreScoresLance extends ScoresStorage {
582
+ private client;
583
+ constructor({ client }: {
584
+ client: Connection;
585
+ });
586
+ saveScore(score: ScoreRowData): Promise<{
587
+ score: ScoreRowData;
588
+ }>;
589
+ getScoreById({ id }: {
590
+ id: string;
591
+ }): Promise<ScoreRowData | null>;
592
+ getScoresByScorerId({ scorerId, pagination, }: {
593
+ scorerId: string;
594
+ pagination: StoragePagination;
595
+ }): Promise<{
596
+ pagination: PaginationInfo;
597
+ scores: ScoreRowData[];
598
+ }>;
599
+ getScoresByRunId({ runId, pagination, }: {
600
+ runId: string;
601
+ pagination: StoragePagination;
602
+ }): Promise<{
603
+ pagination: PaginationInfo;
604
+ scores: ScoreRowData[];
605
+ }>;
606
+ getScoresByEntityId({ entityId, entityType, pagination, }: {
607
+ pagination: StoragePagination;
608
+ entityId: string;
609
+ entityType: string;
610
+ }): Promise<{
611
+ pagination: PaginationInfo;
612
+ scores: ScoreRowData[];
613
+ }>;
614
+ }
615
+
616
+ export declare class StoreTracesLance extends TracesStorage {
617
+ private client;
618
+ private operations;
619
+ constructor({ client, operations }: {
620
+ client: Connection;
621
+ operations: StoreOperationsLance;
622
+ });
623
+ saveTrace({ trace }: {
624
+ trace: TraceType;
625
+ }): Promise<TraceType>;
626
+ getTraceById({ traceId }: {
627
+ traceId: string;
628
+ }): Promise<TraceType>;
629
+ getTraces({ name, scope, page, perPage, attributes, }: {
630
+ name?: string;
631
+ scope?: string;
632
+ page: number;
633
+ perPage: number;
634
+ attributes?: Record<string, string>;
635
+ }): Promise<Trace[]>;
636
+ getTracesPaginated(args: StorageGetTracesPaginatedArg): Promise<PaginationInfo & {
637
+ traces: Trace[];
638
+ }>;
639
+ batchTraceInsert({ records }: {
640
+ records: Record<string, any>[];
641
+ }): Promise<void>;
642
+ }
643
+
644
+ export declare class StoreWorkflowsLance extends WorkflowsStorage {
645
+ client: Connection;
646
+ constructor({ client }: {
647
+ client: Connection;
648
+ });
649
+ persistWorkflowSnapshot({ workflowName, runId, snapshot, }: {
650
+ workflowName: string;
651
+ runId: string;
652
+ snapshot: WorkflowRunState_2;
653
+ }): Promise<void>;
654
+ loadWorkflowSnapshot({ workflowName, runId, }: {
655
+ workflowName: string;
656
+ runId: string;
657
+ }): Promise<WorkflowRunState_2 | null>;
658
+ getWorkflowRunById(args: {
659
+ runId: string;
660
+ workflowName?: string;
661
+ }): Promise<{
662
+ workflowName: string;
663
+ runId: string;
664
+ snapshot: any;
665
+ createdAt: Date;
666
+ updatedAt: Date;
667
+ } | null>;
668
+ getWorkflowRuns(args?: {
669
+ namespace?: string;
670
+ resourceId?: string;
671
+ workflowName?: string;
672
+ fromDate?: Date;
673
+ toDate?: Date;
674
+ limit?: number;
675
+ offset?: number;
676
+ }): Promise<WorkflowRuns_2>;
677
+ }
678
+
679
+ export declare function validateKeyTypes(keys: Record<string, any>, tableSchema: SchemaLike): void;
680
+
409
681
  export { }