@fileverse/api 0.0.10 → 0.0.12
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/dist/cli/index.js +3 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cloudflare.js +54 -33
- package/dist/cloudflare.js.map +1 -1
- package/dist/commands/index.js +71 -6
- package/dist/commands/index.js.map +1 -1
- package/dist/index.js +54 -33
- package/dist/index.js.map +1 -1
- package/dist/worker.js +29 -58
- package/dist/worker.js.map +1 -1
- package/package.json +2 -2
- package/public/llm.txt +204 -478
package/dist/cli/index.js
CHANGED
|
@@ -1106,7 +1106,9 @@ CREATE TABLE IF NOT EXISTS files (
|
|
|
1106
1106
|
commentKey TEXT,
|
|
1107
1107
|
linkKey TEXT,
|
|
1108
1108
|
linkKeyNonce TEXT,
|
|
1109
|
-
link TEXT
|
|
1109
|
+
link TEXT,
|
|
1110
|
+
derivedKey TEXT,
|
|
1111
|
+
secretKey TEXT
|
|
1110
1112
|
);
|
|
1111
1113
|
CREATE INDEX IF NOT EXISTS idx_files_createdAt ON files(createdAt);
|
|
1112
1114
|
CREATE INDEX IF NOT EXISTS idx_files_syncStatus ON files(syncStatus);
|