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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-server",
3
- "version": "8.5.0-alpha.4",
3
+ "version": "8.5.0-alpha.6",
4
4
  "description": "An express module providing a Parse-compatible API server",
5
5
  "main": "lib/index.js",
6
6
  "repository": {
@@ -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;