@mastra/lance 0.0.0-fix-tool-call-history-20250731222019 → 0.0.0-fix-message-list-args-missing-20250807205055
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/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,50 @@
|
|
|
1
1
|
# @mastra/lance
|
|
2
2
|
|
|
3
|
-
## 0.0.0-fix-
|
|
3
|
+
## 0.0.0-fix-message-list-args-missing-20250807205055
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- Updated dependencies [
|
|
8
|
-
|
|
7
|
+
- Updated dependencies [903dfec]
|
|
8
|
+
- Updated dependencies [8388649]
|
|
9
|
+
- Updated dependencies [dd94a26]
|
|
10
|
+
- Updated dependencies [3ba6772]
|
|
11
|
+
- Updated dependencies [2fff911]
|
|
12
|
+
- Updated dependencies [63449d0]
|
|
13
|
+
- @mastra/core@0.0.0-fix-message-list-args-missing-20250807205055
|
|
14
|
+
|
|
15
|
+
## 0.2.4
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
20
|
+
- Updated dependencies [cb36de0]
|
|
21
|
+
- Updated dependencies [d0496e6]
|
|
22
|
+
- Updated dependencies [a82b851]
|
|
23
|
+
- Updated dependencies [ea0c5f2]
|
|
24
|
+
- Updated dependencies [41a0a0e]
|
|
25
|
+
- Updated dependencies [2871020]
|
|
26
|
+
- Updated dependencies [94f4812]
|
|
27
|
+
- Updated dependencies [e202b82]
|
|
28
|
+
- Updated dependencies [e00f6a0]
|
|
29
|
+
- Updated dependencies [4a406ec]
|
|
30
|
+
- Updated dependencies [b0e43c1]
|
|
31
|
+
- Updated dependencies [5d377e5]
|
|
32
|
+
- Updated dependencies [1fb812e]
|
|
33
|
+
- Updated dependencies [35c5798]
|
|
34
|
+
- @mastra/core@0.13.0
|
|
35
|
+
|
|
36
|
+
## 0.2.4-alpha.0
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
|
|
41
|
+
- Updated dependencies [cb36de0]
|
|
42
|
+
- Updated dependencies [a82b851]
|
|
43
|
+
- Updated dependencies [41a0a0e]
|
|
44
|
+
- Updated dependencies [2871020]
|
|
45
|
+
- Updated dependencies [4a406ec]
|
|
46
|
+
- Updated dependencies [5d377e5]
|
|
47
|
+
- @mastra/core@0.13.0-alpha.2
|
|
9
48
|
|
|
10
49
|
## 0.2.3
|
|
11
50
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './storage';
|
|
2
|
-
export * from './vector';
|
|
1
|
+
export * from './storage/index.js';
|
|
2
|
+
export * from './vector/index.js';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -3,7 +3,7 @@ import type { MastraMessageContentV2 } from '@mastra/core/agent';
|
|
|
3
3
|
import type { MastraMessageV1, MastraMessageV2, StorageThreadType } from '@mastra/core/memory';
|
|
4
4
|
import { MemoryStorage } from '@mastra/core/storage';
|
|
5
5
|
import type { PaginationInfo, StorageGetMessagesArg, StorageResourceType } from '@mastra/core/storage';
|
|
6
|
-
import type { StoreOperationsLance } from '../operations';
|
|
6
|
+
import type { StoreOperationsLance } from '../operations/index.js';
|
|
7
7
|
export declare class StoreMemoryLance extends MemoryStorage {
|
|
8
8
|
private client;
|
|
9
9
|
private operations;
|
|
@@ -3,7 +3,7 @@ import type { TraceType } from '@mastra/core/memory';
|
|
|
3
3
|
import { TracesStorage } from '@mastra/core/storage';
|
|
4
4
|
import type { PaginationInfo, StorageGetTracesPaginatedArg } from '@mastra/core/storage';
|
|
5
5
|
import type { Trace } from '@mastra/core/telemetry';
|
|
6
|
-
import type { StoreOperationsLance } from '../operations';
|
|
6
|
+
import type { StoreOperationsLance } from '../operations/index.js';
|
|
7
7
|
export declare class StoreTracesLance extends TracesStorage {
|
|
8
8
|
private client;
|
|
9
9
|
private operations;
|
package/dist/vector/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { ConnectionOptions, CreateTableOptions, Table, TableLike } from '@lancedb/lancedb';
|
|
2
2
|
import type { CreateIndexParams, DeleteIndexParams, DeleteVectorParams, DescribeIndexParams, IndexStats, QueryResult, QueryVectorParams, UpdateVectorParams, UpsertVectorParams } from '@mastra/core';
|
|
3
3
|
import { MastraVector } from '@mastra/core/vector';
|
|
4
|
-
import type { LanceVectorFilter } from './filter';
|
|
5
|
-
import type { IndexConfig } from './types';
|
|
4
|
+
import type { LanceVectorFilter } from './filter.js';
|
|
5
|
+
import type { IndexConfig } from './types.js';
|
|
6
6
|
interface LanceCreateIndexParams extends CreateIndexParams {
|
|
7
7
|
indexConfig?: LanceIndexConfig;
|
|
8
8
|
tableName?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/lance",
|
|
3
|
-
"version": "0.0.0-fix-
|
|
3
|
+
"version": "0.0.0-fix-message-list-args-missing-20250807205055",
|
|
4
4
|
"description": "Lance provider for Mastra - includes both vector and db storage capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"require": {
|
|
15
|
-
"types": "./dist/index.d.
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
16
|
"default": "./dist/index.cjs"
|
|
17
17
|
}
|
|
18
18
|
},
|
|
@@ -29,12 +29,13 @@
|
|
|
29
29
|
"tsup": "^8.5.0",
|
|
30
30
|
"typescript": "^5.8.3",
|
|
31
31
|
"vitest": "^3.2.4",
|
|
32
|
-
"@internal/lint": "0.0.0-fix-
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
32
|
+
"@internal/lint": "0.0.0-fix-message-list-args-missing-20250807205055",
|
|
33
|
+
"@internal/storage-test-utils": "0.0.24",
|
|
34
|
+
"@mastra/core": "0.0.0-fix-message-list-args-missing-20250807205055",
|
|
35
|
+
"@internal/types-builder": "0.0.0-fix-message-list-args-missing-20250807205055"
|
|
35
36
|
},
|
|
36
37
|
"peerDependencies": {
|
|
37
|
-
"@mastra/core": "0.0.0-fix-
|
|
38
|
+
"@mastra/core": "0.0.0-fix-message-list-args-missing-20250807205055"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
41
|
"build": "tsup --silent --config tsup.config.ts",
|
package/tsup.config.ts
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { promisify } from 'util';
|
|
1
|
+
import { generateTypes } from '@internal/types-builder';
|
|
3
2
|
import { defineConfig } from 'tsup';
|
|
4
3
|
|
|
5
|
-
const exec = promisify(spawn);
|
|
6
|
-
|
|
7
4
|
export default defineConfig({
|
|
8
5
|
entry: ['src/index.ts'],
|
|
9
6
|
format: ['esm', 'cjs'],
|
|
@@ -15,8 +12,6 @@ export default defineConfig({
|
|
|
15
12
|
},
|
|
16
13
|
sourcemap: true,
|
|
17
14
|
onSuccess: async () => {
|
|
18
|
-
await
|
|
19
|
-
stdio: 'inherit',
|
|
20
|
-
});
|
|
15
|
+
await generateTypes(process.cwd());
|
|
21
16
|
},
|
|
22
17
|
});
|