@lunora/solid 1.0.0-alpha.27 → 1.0.0-alpha.29

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 CreateChunkedRestUploadOptions, type CreateChunkedRestUploadReturn, type CreateFileInputOptions, type CreateFileInputReturn, type CreateMultipartUploadOptions, type CreateMultipartUploadReturn, type CreatePasteUploadOptions, type CreatePasteUploadReturn, type CreateTusUploadOptions, type CreateTusUploadReturn, type CreateUploadOptions, type CreateUploadReturn, createChunkedRestUpload, createFileInput, createMultipartUpload, createPasteUpload, createTusUpload, createUpload } from '@visulima/storage-client/solid';
@@ -0,0 +1,2 @@
1
+ export { RestrictionError, UploadControl, UploadError, type UploadMethod, type UploadRestrictions, type UploadResult } from '@visulima/storage-client';
2
+ export { type CreateChunkedRestUploadOptions, type CreateChunkedRestUploadReturn, type CreateFileInputOptions, type CreateFileInputReturn, type CreateMultipartUploadOptions, type CreateMultipartUploadReturn, type CreatePasteUploadOptions, type CreatePasteUploadReturn, type CreateTusUploadOptions, type CreateTusUploadReturn, type CreateUploadOptions, type CreateUploadReturn, createChunkedRestUpload, createFileInput, createMultipartUpload, createPasteUpload, createTusUpload, createUpload } from '@visulima/storage-client/solid';
@@ -0,0 +1,2 @@
1
+ export { RestrictionError, UploadControl, UploadError } from '@visulima/storage-client';
2
+ export { createChunkedRestUpload, createFileInput, createMultipartUpload, createPasteUpload, createTusUpload, createUpload } from '@visulima/storage-client/solid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunora/solid",
3
- "version": "1.0.0-alpha.27",
3
+ "version": "1.0.0-alpha.29",
4
4
  "description": "SolidJS adapter for Lunora — live queries, optimistic mutations, and reactive loaders",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -44,15 +44,20 @@
44
44
  "types": "./dist/server.d.ts",
45
45
  "import": "./dist/server.mjs"
46
46
  },
47
+ "./upload": {
48
+ "types": "./dist/upload.d.ts",
49
+ "import": "./dist/upload.mjs"
50
+ },
47
51
  "./package.json": "./package.json"
48
52
  },
49
53
  "publishConfig": {
50
54
  "access": "public"
51
55
  },
52
56
  "dependencies": {
53
- "@lunora/client": "1.0.0-alpha.25",
54
- "@lunora/errors": "1.0.0-alpha.6",
55
- "@lunora/ratelimit": "1.0.0-alpha.9"
57
+ "@lunora/client": "1.0.0-alpha.27",
58
+ "@lunora/errors": "1.0.0-alpha.7",
59
+ "@lunora/ratelimit": "1.0.0-alpha.9",
60
+ "@visulima/storage-client": "1.0.0"
56
61
  },
57
62
  "peerDependencies": {
58
63
  "solid-js": "^1.9.0"