@lunora/vue 1.0.0-alpha.45 → 1.0.0-alpha.47

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.
@@ -0,0 +1,2 @@
1
+ export { RestrictionError, UploadControl, UploadError, type UploadMethod, type UploadRestrictions, type UploadResult } from '@visulima/storage-client';
2
+ export { type UseChunkedRestUploadOptions, type UseChunkedRestUploadReturn, type UseFileInputOptions, type UseFileInputReturn, type UseMultipartUploadOptions, type UseMultipartUploadReturn, type UsePasteUploadOptions, type UsePasteUploadReturn, type UseTusUploadOptions, type UseTusUploadReturn, type UseUploadOptions, type UseUploadReturn, useChunkedRestUpload, useFileInput, useMultipartUpload, usePasteUpload, useTusUpload, useUpload } from '@visulima/storage-client/vue';
@@ -0,0 +1,2 @@
1
+ export { RestrictionError, UploadControl, UploadError, type UploadMethod, type UploadRestrictions, type UploadResult } from '@visulima/storage-client';
2
+ export { type UseChunkedRestUploadOptions, type UseChunkedRestUploadReturn, type UseFileInputOptions, type UseFileInputReturn, type UseMultipartUploadOptions, type UseMultipartUploadReturn, type UsePasteUploadOptions, type UsePasteUploadReturn, type UseTusUploadOptions, type UseTusUploadReturn, type UseUploadOptions, type UseUploadReturn, useChunkedRestUpload, useFileInput, useMultipartUpload, usePasteUpload, useTusUpload, useUpload } from '@visulima/storage-client/vue';
@@ -0,0 +1,2 @@
1
+ export { RestrictionError, UploadControl, UploadError } from '@visulima/storage-client';
2
+ export { useChunkedRestUpload, useFileInput, useMultipartUpload, usePasteUpload, useTusUpload, useUpload } from '@visulima/storage-client/vue';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/vue",
3
- "version": "1.0.0-alpha.45",
3
+ "version": "1.0.0-alpha.47",
4
4
  "description": "Vue adapter for Lunora — live composables, optimistic mutations, and reactive loaders",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -48,16 +48,21 @@
48
48
  "types": "./dist/worker.d.ts",
49
49
  "import": "./dist/worker.mjs"
50
50
  },
51
+ "./upload": {
52
+ "types": "./dist/upload.d.ts",
53
+ "import": "./dist/upload.mjs"
54
+ },
51
55
  "./package.json": "./package.json"
52
56
  },
53
57
  "publishConfig": {
54
58
  "access": "public"
55
59
  },
56
60
  "dependencies": {
57
- "@lunora/client": "1.0.0-alpha.26",
58
- "@lunora/errors": "1.0.0-alpha.6",
61
+ "@lunora/client": "1.0.0-alpha.27",
62
+ "@lunora/errors": "1.0.0-alpha.7",
59
63
  "@lunora/ratelimit": "1.0.0-alpha.9",
60
- "@lunora/runtime": "1.0.0-alpha.34"
64
+ "@lunora/runtime": "1.0.0-alpha.36",
65
+ "@visulima/storage-client": "1.0.0"
61
66
  },
62
67
  "peerDependencies": {
63
68
  "vue": "^3.5.0"