@opensaas/stack-storage 0.1.1 → 0.1.3
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +13 -0
- package/README.md +1 -1
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @opensaas/stack-storage
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- efe2357: fix getting started package imports
|
|
8
|
+
- @opensaas/stack-core@0.1.3
|
|
9
|
+
|
|
10
|
+
## 0.1.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- @opensaas/stack-core@0.1.2
|
|
15
|
+
|
|
3
16
|
## 0.1.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ export default config({
|
|
|
92
92
|
|
|
93
93
|
```typescript
|
|
94
94
|
// app/api/upload/route.ts
|
|
95
|
-
import { NextRequest, NextResponse } from 'next/server'
|
|
95
|
+
import { NextRequest, NextResponse } from 'next/server.js'
|
|
96
96
|
import config from '@/opensaas.config'
|
|
97
97
|
import { uploadFile, uploadImage, parseFileFromFormData } from '@opensaas/stack-storage/runtime'
|
|
98
98
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensaas/stack-storage",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "File and image upload field types with pluggable storage providers for OpenSaas Stack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"mime-types": "^3.0.1",
|
|
28
28
|
"sharp": "^0.34.4",
|
|
29
29
|
"zod": "^4.1.12",
|
|
30
|
-
"@opensaas/stack-core": "0.1.
|
|
30
|
+
"@opensaas/stack-core": "0.1.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/mime-types": "^3.0.1",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"vitest": "^4.0.5"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@opensaas/stack-core": "0.1.
|
|
41
|
+
"@opensaas/stack-core": "0.1.3"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc",
|