parse-server 8.5.0-alpha.4 → 8.5.0-alpha.6
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/lib/Adapters/Files/GridFSBucketAdapter.js +5 -4
- package/lib/Adapters/Storage/Mongo/MongoStorageAdapter.js +12 -9
- package/lib/Config.js +6 -1
- package/lib/Deprecator/Deprecations.js +4 -1
- package/lib/Options/Definitions.js +7 -1
- package/lib/Options/docs.js +2 -1
- package/lib/Options/index.js +1 -1
- package/lib/Security/CheckGroups/CheckGroupServerConfig.js +10 -1
- package/lib/defaults.js +6 -2
- package/lib/rest.js +7 -1
- package/package.json +1 -1
- package/types/Options/index.d.ts +13 -2
package/package.json
CHANGED
package/types/Options/index.d.ts
CHANGED
|
@@ -228,9 +228,21 @@ export interface FileUploadOptions {
|
|
|
228
228
|
}
|
|
229
229
|
export interface DatabaseOptions {
|
|
230
230
|
// Parse Server custom options
|
|
231
|
+
allowPublicExplain?: boolean;
|
|
232
|
+
createIndexRoleName?: boolean;
|
|
233
|
+
createIndexUserEmail?: boolean;
|
|
234
|
+
createIndexUserEmailCaseInsensitive?: boolean;
|
|
235
|
+
createIndexUserEmailVerifyToken?: boolean;
|
|
236
|
+
createIndexUserPasswordResetToken?: boolean;
|
|
237
|
+
createIndexUserUsername?: boolean;
|
|
238
|
+
createIndexUserUsernameCaseInsensitive?: boolean;
|
|
239
|
+
disableIndexFieldValidation?: boolean;
|
|
231
240
|
enableSchemaHooks?: boolean;
|
|
241
|
+
logClientEvents?: any[];
|
|
242
|
+
// maxTimeMS is a MongoDB option but Parse Server applies it per-operation, not as a global client option
|
|
243
|
+
maxTimeMS?: number;
|
|
232
244
|
schemaCacheTtl?: number;
|
|
233
|
-
|
|
245
|
+
|
|
234
246
|
// MongoDB driver options
|
|
235
247
|
appName?: string;
|
|
236
248
|
authMechanism?: string;
|
|
@@ -249,7 +261,6 @@ export interface DatabaseOptions {
|
|
|
249
261
|
maxIdleTimeMS?: number;
|
|
250
262
|
maxPoolSize?: number;
|
|
251
263
|
maxStalenessSeconds?: number;
|
|
252
|
-
maxTimeMS?: number;
|
|
253
264
|
minPoolSize?: number;
|
|
254
265
|
proxyHost?: string;
|
|
255
266
|
proxyPassword?: string;
|