parse-server 9.8.0-alpha.1 → 9.8.0-alpha.11
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/README.md +1 -1
- package/lib/Adapters/Storage/Postgres/PostgresStorageAdapter.js +3 -3
- package/lib/Config.js +40 -2
- package/lib/Controllers/DatabaseController.js +5 -2
- package/lib/LiveQuery/ParseLiveQueryServer.js +29 -3
- package/lib/Options/Definitions.js +34 -1
- package/lib/Options/docs.js +10 -1
- package/lib/Options/index.js +1 -1
- package/lib/ParseServer.js +2 -2
- package/lib/Routers/FilesRouter.js +61 -34
- package/lib/Routers/FunctionsRouter.js +109 -4
- package/lib/Routers/SessionsRouter.js +59 -25
- package/lib/Routers/UsersRouter.js +62 -7
- package/lib/cloud-code/Parse.Cloud.js +4 -2
- package/lib/middlewares.js +5 -1
- package/lib/password.js +8 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -392,7 +392,7 @@ The following table lists all route groups covered by `routeAllowList` with exam
|
|
|
392
392
|
| Purchase validation | `validate_purchase` | `validate_purchase` |
|
|
393
393
|
|
|
394
394
|
> [!NOTE]
|
|
395
|
-
> File
|
|
395
|
+
> File routes are not covered by `routeAllowList`. File upload access is controlled via the `fileUpload` option. File download and metadata access is controlled via the `fileDownload` option.
|
|
396
396
|
|
|
397
397
|
## Email Verification and Password Reset
|
|
398
398
|
|