@mastra/upstash 0.0.0-vnextWorkflows-20250422142014 → 0.0.0-workflow-deno-20250616115451

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.
@@ -3,13 +3,13 @@ services:
3
3
  redis:
4
4
  image: redis:7-alpine
5
5
  ports:
6
- - "6379:6379"
6
+ - '6379:6379'
7
7
  command: redis-server --requirepass redis_password
8
8
  serverless-redis-http:
9
9
  image: hiett/serverless-redis-http:latest
10
10
  ports:
11
- - "8079:80"
11
+ - '8079:80'
12
12
  environment:
13
13
  SRH_MODE: env
14
14
  SRH_TOKEN: test_token
15
- SRH_CONNECTION_STRING: "redis://:redis_password@redis:6379"
15
+ SRH_CONNECTION_STRING: 'redis://:redis_password@redis:6379'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/upstash",
3
- "version": "0.0.0-vnextWorkflows-20250422142014",
3
+ "version": "0.0.0-workflow-deno-20250616115451",
4
4
  "description": "Upstash provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,19 +20,23 @@
20
20
  },
21
21
  "license": "MIT",
22
22
  "dependencies": {
23
- "@upstash/redis": "^1.34.5",
24
- "@upstash/vector": "^1.2.1",
25
- "@mastra/core": "0.0.0-vnextWorkflows-20250422142014"
23
+ "@upstash/redis": "^1.35.0",
24
+ "@upstash/vector": "^1.2.1"
26
25
  },
27
26
  "devDependencies": {
28
- "@microsoft/api-extractor": "^7.52.1",
29
- "@types/node": "^20.17.27",
30
- "dotenv": "^16.4.7",
31
- "eslint": "^9.23.0",
32
- "tsup": "^8.4.0",
33
- "typescript": "^5.8.2",
34
- "vitest": "^3.0.9",
35
- "@internal/lint": "0.0.2"
27
+ "@microsoft/api-extractor": "^7.52.8",
28
+ "@types/node": "^20.19.0",
29
+ "dotenv": "^16.5.0",
30
+ "eslint": "^9.28.0",
31
+ "tsup": "^8.5.0",
32
+ "typescript": "^5.8.3",
33
+ "vitest": "^3.2.3",
34
+ "@internal/lint": "0.0.0-workflow-deno-20250616115451",
35
+ "@mastra/core": "0.0.0-workflow-deno-20250616115451",
36
+ "@internal/storage-test-utils": "0.0.0-workflow-deno-20250616115451"
37
+ },
38
+ "peerDependencies": {
39
+ "@mastra/core": ">=0.10.4-0 <0.11.0"
36
40
  },
37
41
  "scripts": {
38
42
  "pretest": "docker compose up -d",
package/src/index.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from './storage';
2
2
  export * from './vector';
3
+ export { UPSTASH_PROMPT } from './vector/prompt';