@mastra/convex 1.4.0 → 1.5.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/CHANGELOG.md +50 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +2 -136
- package/dist/index.cjs +2653 -3043
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2607 -2898
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +358 -130
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +328 -2
- package/dist/schema.js.map +1 -1
- package/dist/server/index.cjs +37 -141
- package/dist/server/index.js +3 -4
- package/dist/server-13j_f22k.cjs +1882 -0
- package/dist/server-13j_f22k.cjs.map +1 -0
- package/dist/server-DJt7jjL-.js +1853 -0
- package/dist/server-DJt7jjL-.js.map +1 -0
- package/dist/storage/domains/memory/index.d.ts.map +1 -1
- package/dist/storage/types.d.ts.map +1 -1
- package/package.json +10 -9
- package/dist/chunk-2KILIA33.cjs +0 -1776
- package/dist/chunk-2KILIA33.cjs.map +0 -1
- package/dist/chunk-MC2EQATP.js +0 -1770
- package/dist/chunk-MC2EQATP.js.map +0 -1
- package/dist/chunk-QWWFHN52.js +0 -234
- package/dist/chunk-QWWFHN52.js.map +0 -1
- package/dist/chunk-ZCCKLZQH.cjs +0 -295
- package/dist/chunk-ZCCKLZQH.cjs.map +0 -1
- package/dist/server/index.cjs.map +0 -1
- package/dist/server/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @mastra/convex
|
|
2
2
|
|
|
3
|
+
## 1.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added exact metadata filtering to message history queries across Memory APIs and supported storage providers. ([#19991](https://github.com/mastra-ai/mastra/pull/19991))
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const messages = await memory.recall({
|
|
11
|
+
threadId: 'thread-1',
|
|
12
|
+
filter: {
|
|
13
|
+
metadata: {
|
|
14
|
+
status: 'done',
|
|
15
|
+
priority: 'high',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
});
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Multiple fields use AND semantics. Supported values are strings, finite numbers, booleans, and `null`.
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [[`ce93a3c`](https://github.com/mastra-ai/mastra/commit/ce93a3c114ea1cbfbd576f3db41d7c26c9844f5b), [`5718a22`](https://github.com/mastra-ai/mastra/commit/5718a229281dcfd36bcd1f42a242e3717e510a33), [`a211d09`](https://github.com/mastra-ai/mastra/commit/a211d09185dc65a746534914cf38b67f21ee9bac), [`0dca9d0`](https://github.com/mastra-ai/mastra/commit/0dca9d0b1356024a53b72ea6f040db528b126caa), [`6218217`](https://github.com/mastra-ai/mastra/commit/62182171b6cfca0b099f1c6a77a2e65e7639ab86), [`5807d3a`](https://github.com/mastra-ai/mastra/commit/5807d3ae1d259b8b7d6df7e5bf2b485c694af9c8), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`05db566`](https://github.com/mastra-ai/mastra/commit/05db566fcbdcbf33d0bffca0c72ec30129e2e3ca), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`5718a22`](https://github.com/mastra-ai/mastra/commit/5718a229281dcfd36bcd1f42a242e3717e510a33), [`57661af`](https://github.com/mastra-ai/mastra/commit/57661afeca52ff9af4e72675ede2134fa503d5a5), [`d1b7e3a`](https://github.com/mastra-ai/mastra/commit/d1b7e3a978a309a5653eeaa490d2d6c7c53bd093), [`29c584a`](https://github.com/mastra-ai/mastra/commit/29c584a13a88831e5ed1fdeb0ff8e82eae180433), [`c093146`](https://github.com/mastra-ai/mastra/commit/c0931466404d3c521308ea119cb165bb7e695155), [`8124754`](https://github.com/mastra-ai/mastra/commit/8124754ae89fbc69f8136d1df4a91904d0f84c4e), [`d12b2e4`](https://github.com/mastra-ai/mastra/commit/d12b2e4023fd9e3d3e93a9169f5088bcee2a849c)]:
|
|
26
|
+
- @mastra/core@1.54.0
|
|
27
|
+
|
|
28
|
+
## 1.5.0-alpha.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- Added exact metadata filtering to message history queries across Memory APIs and supported storage providers. ([#19991](https://github.com/mastra-ai/mastra/pull/19991))
|
|
33
|
+
|
|
34
|
+
```ts
|
|
35
|
+
const messages = await memory.recall({
|
|
36
|
+
threadId: 'thread-1',
|
|
37
|
+
filter: {
|
|
38
|
+
metadata: {
|
|
39
|
+
status: 'done',
|
|
40
|
+
priority: 'high',
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
});
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Multiple fields use AND semantics. Supported values are strings, finite numbers, booleans, and `null`.
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- Updated dependencies [[`0dca9d0`](https://github.com/mastra-ai/mastra/commit/0dca9d0b1356024a53b72ea6f040db528b126caa)]:
|
|
51
|
+
- @mastra/core@1.54.0-alpha.0
|
|
52
|
+
|
|
3
53
|
## 1.4.0
|
|
4
54
|
|
|
5
55
|
### Minor Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -1,140 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.5.0",
|
|
3
3
|
"package": "@mastra/convex",
|
|
4
|
-
"exports": {
|
|
5
|
-
"mastraCache": {
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"implementation": "dist/chunk-MC2EQATP.js"
|
|
8
|
-
},
|
|
9
|
-
"mastraNativeVectorAction": {
|
|
10
|
-
"types": "dist/index.d.ts",
|
|
11
|
-
"implementation": "dist/chunk-MC2EQATP.js"
|
|
12
|
-
},
|
|
13
|
-
"mastraNativeVectorMutation": {
|
|
14
|
-
"types": "dist/index.d.ts",
|
|
15
|
-
"implementation": "dist/chunk-MC2EQATP.js"
|
|
16
|
-
},
|
|
17
|
-
"mastraNativeVectorQuery": {
|
|
18
|
-
"types": "dist/index.d.ts",
|
|
19
|
-
"implementation": "dist/chunk-MC2EQATP.js"
|
|
20
|
-
},
|
|
21
|
-
"mastraStorage": {
|
|
22
|
-
"types": "dist/index.d.ts",
|
|
23
|
-
"implementation": "dist/chunk-MC2EQATP.js"
|
|
24
|
-
},
|
|
25
|
-
"TABLE_BACKGROUND_TASKS": {
|
|
26
|
-
"types": "dist/index.d.ts",
|
|
27
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
28
|
-
},
|
|
29
|
-
"TABLE_CHANNEL_CONFIG": {
|
|
30
|
-
"types": "dist/index.d.ts",
|
|
31
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
32
|
-
},
|
|
33
|
-
"TABLE_CHANNEL_INSTALLATIONS": {
|
|
34
|
-
"types": "dist/index.d.ts",
|
|
35
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
36
|
-
},
|
|
37
|
-
"TABLE_MESSAGES": {
|
|
38
|
-
"types": "dist/index.d.ts",
|
|
39
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
40
|
-
},
|
|
41
|
-
"TABLE_OBSERVATIONAL_MEMORY": {
|
|
42
|
-
"types": "dist/index.d.ts",
|
|
43
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
44
|
-
},
|
|
45
|
-
"TABLE_RESOURCES": {
|
|
46
|
-
"types": "dist/index.d.ts",
|
|
47
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
48
|
-
},
|
|
49
|
-
"TABLE_SCHEDULES": {
|
|
50
|
-
"types": "dist/index.d.ts",
|
|
51
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
52
|
-
},
|
|
53
|
-
"TABLE_SCHEDULE_TRIGGERS": {
|
|
54
|
-
"types": "dist/index.d.ts",
|
|
55
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
56
|
-
},
|
|
57
|
-
"TABLE_SCORERS": {
|
|
58
|
-
"types": "dist/index.d.ts",
|
|
59
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
60
|
-
},
|
|
61
|
-
"TABLE_THREADS": {
|
|
62
|
-
"types": "dist/index.d.ts",
|
|
63
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
64
|
-
},
|
|
65
|
-
"TABLE_WORKFLOW_SNAPSHOT": {
|
|
66
|
-
"types": "dist/index.d.ts",
|
|
67
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
68
|
-
},
|
|
69
|
-
"defineMastraNativeVectorTable": {
|
|
70
|
-
"types": "dist/index.d.ts",
|
|
71
|
-
"implementation": "dist/chunk-QWWFHN52.js",
|
|
72
|
-
"line": 183
|
|
73
|
-
},
|
|
74
|
-
"mastraBackgroundTasksTable": {
|
|
75
|
-
"types": "dist/index.d.ts",
|
|
76
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
77
|
-
},
|
|
78
|
-
"mastraCacheListItemsTable": {
|
|
79
|
-
"types": "dist/index.d.ts",
|
|
80
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
81
|
-
},
|
|
82
|
-
"mastraCacheTable": {
|
|
83
|
-
"types": "dist/index.d.ts",
|
|
84
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
85
|
-
},
|
|
86
|
-
"mastraChannelConfigTable": {
|
|
87
|
-
"types": "dist/index.d.ts",
|
|
88
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
89
|
-
},
|
|
90
|
-
"mastraChannelInstallationsTable": {
|
|
91
|
-
"types": "dist/index.d.ts",
|
|
92
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
93
|
-
},
|
|
94
|
-
"mastraDocumentsTable": {
|
|
95
|
-
"types": "dist/index.d.ts",
|
|
96
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
97
|
-
},
|
|
98
|
-
"mastraMessagesTable": {
|
|
99
|
-
"types": "dist/index.d.ts",
|
|
100
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
101
|
-
},
|
|
102
|
-
"mastraObservationalMemoryTable": {
|
|
103
|
-
"types": "dist/index.d.ts",
|
|
104
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
105
|
-
},
|
|
106
|
-
"mastraResourcesTable": {
|
|
107
|
-
"types": "dist/index.d.ts",
|
|
108
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
109
|
-
},
|
|
110
|
-
"mastraScheduleTriggersTable": {
|
|
111
|
-
"types": "dist/index.d.ts",
|
|
112
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
113
|
-
},
|
|
114
|
-
"mastraSchedulesTable": {
|
|
115
|
-
"types": "dist/index.d.ts",
|
|
116
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
117
|
-
},
|
|
118
|
-
"mastraScoresTable": {
|
|
119
|
-
"types": "dist/index.d.ts",
|
|
120
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
121
|
-
},
|
|
122
|
-
"mastraThreadsTable": {
|
|
123
|
-
"types": "dist/index.d.ts",
|
|
124
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
125
|
-
},
|
|
126
|
-
"mastraVectorIndexesTable": {
|
|
127
|
-
"types": "dist/index.d.ts",
|
|
128
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
129
|
-
},
|
|
130
|
-
"mastraVectorsTable": {
|
|
131
|
-
"types": "dist/index.d.ts",
|
|
132
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
133
|
-
},
|
|
134
|
-
"mastraWorkflowSnapshotsTable": {
|
|
135
|
-
"types": "dist/index.d.ts",
|
|
136
|
-
"implementation": "dist/chunk-QWWFHN52.js"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
4
|
+
"exports": {},
|
|
139
5
|
"modules": {}
|
|
140
6
|
}
|