@opensaas/stack-storage 0.1.2 → 0.1.4

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @opensaas/stack-storage@0.1.2 build /home/runner/work/stack/stack/packages/storage
2
+ > @opensaas/stack-storage@0.1.4 build /home/runner/work/stack/stack/packages/storage
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @opensaas/stack-storage
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d013859]
8
+ - @opensaas/stack-core@0.1.4
9
+
10
+ ## 0.1.3
11
+
12
+ ### Patch Changes
13
+
14
+ - efe2357: fix getting started package imports
15
+ - @opensaas/stack-core@0.1.3
16
+
3
17
  ## 0.1.2
4
18
 
5
19
  ### 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.2",
3
+ "version": "0.1.4",
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.2"
30
+ "@opensaas/stack-core": "0.1.4"
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.2"
41
+ "@opensaas/stack-core": "0.1.4"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsc",