hazo_files 2.1.1 → 3.0.0
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/CHANGE_LOG.md +20 -0
- package/config/hazo_files_config.ini.sample +11 -0
- package/dist/background-upload/index.js +4 -2
- package/dist/background-upload/index.mjs +4 -2
- package/dist/background-upload/react/index.js +6 -2
- package/dist/background-upload/react/index.mjs +6 -2
- package/dist/index.d.mts +17 -18
- package/dist/index.d.ts +17 -18
- package/dist/index.js +15016 -489
- package/dist/index.mjs +15030 -489
- package/dist/server/index.d.mts +20 -21
- package/dist/server/index.d.ts +20 -21
- package/dist/server/index.js +15062 -522
- package/dist/server/index.mjs +15081 -526
- package/package.json +21 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_files",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "File management including integration to cloud files",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -102,8 +102,9 @@
|
|
|
102
102
|
"@types/react": "^18.3.3",
|
|
103
103
|
"@types/react-dom": "^18.3.0",
|
|
104
104
|
"dropbox": "^10.34.0",
|
|
105
|
-
"
|
|
106
|
-
"
|
|
105
|
+
"hazo_core": "^1.0.0",
|
|
106
|
+
"hazo_jobs": "^0.12.0",
|
|
107
|
+
"hazo_llm_api": "^2.0.0",
|
|
107
108
|
"jsdom": "^28.1.0",
|
|
108
109
|
"react": "^18.2.0",
|
|
109
110
|
"react-dom": "^18.2.0",
|
|
@@ -115,20 +116,22 @@
|
|
|
115
116
|
},
|
|
116
117
|
"peerDependencies": {
|
|
117
118
|
"@dnd-kit/core": "^6.0.0",
|
|
118
|
-
"@dnd-kit/sortable": "
|
|
119
|
+
"@dnd-kit/sortable": "^8.0.0",
|
|
119
120
|
"@dnd-kit/utilities": "^3.0.0",
|
|
120
121
|
"dropbox": "^10.0.0",
|
|
121
122
|
"googleapis": "^140.0.0",
|
|
122
|
-
"hazo_connect": "^
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
123
|
+
"hazo_connect": "^3.0.0",
|
|
124
|
+
"hazo_core": "^1.0.0",
|
|
125
|
+
"hazo_debug": "^3.1.0",
|
|
126
|
+
"hazo_jobs": "^0.12.0",
|
|
127
|
+
"hazo_llm_api": "^2.0.0",
|
|
128
|
+
"hazo_logs": "^2.0.0",
|
|
129
|
+
"hazo_secure": "^1.0.1",
|
|
130
|
+
"hazo_ui": "^3.0.1",
|
|
128
131
|
"react": "^18.0.0",
|
|
129
132
|
"react-dom": "^18.0.0",
|
|
130
|
-
"server-only": "
|
|
131
|
-
"sonner": "
|
|
133
|
+
"server-only": "^0.0.1",
|
|
134
|
+
"sonner": "^2.0.7",
|
|
132
135
|
"xxhash-wasm": "^1.0.0"
|
|
133
136
|
},
|
|
134
137
|
"peerDependenciesMeta": {
|
|
@@ -150,6 +153,9 @@
|
|
|
150
153
|
"hazo_connect": {
|
|
151
154
|
"optional": true
|
|
152
155
|
},
|
|
156
|
+
"hazo_core": {
|
|
157
|
+
"optional": true
|
|
158
|
+
},
|
|
153
159
|
"hazo_debug": {
|
|
154
160
|
"optional": true
|
|
155
161
|
},
|
|
@@ -159,6 +165,9 @@
|
|
|
159
165
|
"hazo_llm_api": {
|
|
160
166
|
"optional": true
|
|
161
167
|
},
|
|
168
|
+
"hazo_ui": {
|
|
169
|
+
"optional": true
|
|
170
|
+
},
|
|
162
171
|
"server-only": {
|
|
163
172
|
"optional": true
|
|
164
173
|
},
|