You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support direct access config
test options
* add test
* fix test
* fix definitions
* improve docs
* Update .travis.yml
* Revert "Update .travis.yml"
This reverts commit 407f138.
Copy file name to clipboardExpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -245,6 +245,7 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
245
245
*`auth` - Used to configure support for [3rd party authentication](http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication).
246
246
*`facebookAppIds` - An array of valid Facebook application IDs that users may authenticate with.
247
247
*`mountPath` - Mount path for the server. Defaults to `/parse`.
248
+
*`directAccess` - Replace HTTP Interface when using JS SDK in current node runtime. Defaults to false. Caution, this is an experimental feature that may not be appropriate for production.
248
249
*`filesAdapter` - The default behavior (GridStore) can be changed by creating an adapter class (see [`FilesAdapter.js`](https://github.com/parse-community/parse-server/blob/master/src/Adapters/Files/FilesAdapter.js)).
249
250
*`maxUploadSize` - Max file size for uploads. Defaults to 20 MB.
250
251
*`loggerAdapter` - The default behavior/transport (File) can be changed by creating an adapter class (see [`LoggerAdapter.js`](https://github.com/parse-community/parse-server/blob/master/src/Adapters/Logger/LoggerAdapter.js)).
'Replace HTTP Interface when using JS SDK in current node runtime, defaults to false. Caution, this is an experimental feature that may not be appropriate for production.',
Copy file name to clipboardExpand all lines: src/Options/docs.js
+3-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,8 @@
28
28
* @property {String} webhookKey Key sent with outgoing webhook calls
29
29
* @property {String} fileKey Key for your files
30
30
* @property {Boolean} preserveFileName Enable (or disable) the addition of a unique hash to the file names
31
-
* @property {String[]} userSensitiveFields Personally identifiable information fields in the user table the should be removed for non-authorized users.
31
+
* @property {String[]} userSensitiveFields Personally identifiable information fields in the user table the should be removed for non-authorized users. Deprecated @see protectedFields
32
+
* @property {Any} protectedFields Protected fields that should be treated with extra security when fetching details.
* @property {Boolean} allowClientClassCreation Enable (or disable) client class creation, defaults to true
34
35
* @property {Any} auth Configuration for your authentication providers, as stringified JSON. See http://docs.parseplatform.org/parse-server/guide/#oauth-and-3rd-party-authentication
@@ -50,6 +51,7 @@
50
51
* @property {Number} schemaCacheTTL The TTL for caching the schema for optimizing read/write operations. You should put a long TTL when your DB is in production. default to 5000; set 0 to disable.
51
52
* @property {Number} cacheTTL Sets the TTL for the in memory cache (in ms), defaults to 5000 (5 seconds)
52
53
* @property {Number} cacheMaxSize Sets the maximum size for the in memory cache, defaults to 10000
54
+
* @property {Boolean} directAccess Replace HTTP Interface when using JS SDK in current node runtime, defaults to false. Caution, this is an experimental feature that may not be appropriate for production.
53
55
* @property {Boolean} enableSingleSchemaCache Use a single schema cache shared across requests. Reduces number of queries made to _SCHEMA, defaults to false, i.e. unique schema cache per request.
54
56
* @property {Boolean} enableExpressErrorHandler Enables the default express error handler for all errors
55
57
* @property {Number} objectIdSize Sets the number of characters in generated object id's, default 10
/* Sets the maximum size for the in memory cache, defaults to 10000
146
146
:DEFAULT: 10000 */
147
147
cacheMaxSize: ?number;
148
+
/* Replace HTTP Interface when using JS SDK in current node runtime, defaults to false. Caution, this is an experimental feature that may not be appropriate for production.
/* Use a single schema cache shared across requests. Reduces number of queries made to _SCHEMA, defaults to false, i.e. unique schema cache per request.
0 commit comments