@mastra/upstash 1.0.0-beta.8 → 1.0.0-beta.9
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 +40 -0
- package/dist/index.cjs +3 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -15
- package/dist/index.js.map +1 -1
- package/dist/storage/domains/scores/index.d.ts.map +1 -1
- package/dist/storage/index.d.ts +6 -2
- package/dist/storage/index.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MemoryStorage, TABLE_THREADS, TABLE_MESSAGES, TABLE_RESOURCES, ensureDate, createStorageErrorId, normalizePerPage, calculatePagination, ScoresStorage, TABLE_SCORERS, WorkflowsStorage, TABLE_WORKFLOW_SNAPSHOT, MastraStorage, createVectorErrorId, serializeDate, transformScoreRow as transformScoreRow$1 } from '@mastra/core/storage';
|
|
2
2
|
import { Redis } from '@upstash/redis';
|
|
3
3
|
import { MessageList } from '@mastra/core/agent';
|
|
4
4
|
import { MastraError, ErrorCategory, ErrorDomain } from '@mastra/core/error';
|
|
@@ -1623,19 +1623,6 @@ var UpstashStore = class extends MastraStorage {
|
|
|
1623
1623
|
memory
|
|
1624
1624
|
};
|
|
1625
1625
|
}
|
|
1626
|
-
get supports() {
|
|
1627
|
-
return {
|
|
1628
|
-
selectByIncludeResourceScope: true,
|
|
1629
|
-
resourceWorkingMemory: true,
|
|
1630
|
-
hasColumn: false,
|
|
1631
|
-
createTable: false,
|
|
1632
|
-
deleteMessages: true,
|
|
1633
|
-
observability: false,
|
|
1634
|
-
indexManagement: false,
|
|
1635
|
-
listScoresBySpan: true,
|
|
1636
|
-
agents: false
|
|
1637
|
-
};
|
|
1638
|
-
}
|
|
1639
1626
|
async close() {
|
|
1640
1627
|
}
|
|
1641
1628
|
};
|
|
@@ -2330,6 +2317,6 @@ Example Complex Query:
|
|
|
2330
2317
|
]
|
|
2331
2318
|
}`;
|
|
2332
2319
|
|
|
2333
|
-
export { UPSTASH_PROMPT, UpstashStore, UpstashVector };
|
|
2320
|
+
export { ScoresUpstash, StoreMemoryUpstash, UPSTASH_PROMPT, UpstashStore, UpstashVector, WorkflowsUpstash };
|
|
2334
2321
|
//# sourceMappingURL=index.js.map
|
|
2335
2322
|
//# sourceMappingURL=index.js.map
|