parse-dashboard 7.2.0-alpha.8 → 7.2.0

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 CHANGED
@@ -126,25 +126,26 @@ Parse Dashboard is continuously tested with the most recent releases of Node.js
126
126
 
127
127
  ### Options
128
128
 
129
- | Parameter | Type | Optional | Default | Example | Description |
130
- |----------------------------------------|---------------------|----------|---------|--------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------|
131
- | `apps` | Array<Object> | no | - | `[{ ... }, { ... }]` | The apps that are configured for the dashboard. |
132
- | `apps.appId` | String | yes | - | `"myAppId"` | The Application ID for your Parse Server instance. |
133
- | `apps.masterKey` | String \| Function | yes | - | `"exampleMasterKey"`, `() => "exampleMasterKey"` | The master key for full access to Parse Server. It can be provided directly as a String or as a Function returning a String. |
134
- | `apps.masterKeyTtl` | Number | no | - | `3600` | Time-to-live (TTL) for the master key in seconds. This defines how long the master key is cached before the `masterKey` function is re-triggered. |
135
- | `apps.serverURL` | String | yes | - | `"http://localhost:1337/parse"` | The URL where your Parse Server is running. |
136
- | `apps.appName` | String | no | - | `"MyApp"` | The display name of the app in the dashboard. |
137
- | `infoPanel` | Array<Object> | yes | - | `[{ ... }, { ... }]` | The [info panel](#info-panel) configuration. |
138
- | `infoPanel[*].title` | String | no | - | `User Details` | The panel title. |
139
- | `infoPanel[*].classes` | Array<String> | no | - | `["_User"]` | The classes for which the info panel should be displayed. |
140
- | `infoPanel[*].cloudCodeFunction` | String | no | - | `getUserDetails` | The Cloud Code Function which received the selected object in the data browser and returns the response to be displayed in the info panel. |
141
- | `apps.scripts` | Array<Object> | yes | `[]` | `[{ ... }, { ... }]` | The scripts that can be executed for that app. |
142
- | `apps.scripts.title` | String | no | - | `'Delete User'` | The title that will be displayed in the data browser context menu and the script run confirmation dialog. |
143
- | `apps.scripts.classes` | Array<String> | no | - | `['_User']` | The classes of Parse Objects for which the scripts can be executed. |
144
- | `apps.scripts.cloudCodeFunction` | String | no | - | `'deleteUser'` | The name of the Parse Cloud Function to execute. |
145
- | `apps.scripts.showConfirmationDialog` | Bool | yes | `false` | `true` | Is `true` if a confirmation dialog should be displayed before the script is executed, `false` if the script should be executed immediately. |
146
- | `apps.scripts.confirmationDialogStyle` | String | yes | `info` | `critical` | The style of the confirmation dialog. Valid values: `info` (blue style), `critical` (red style). |
147
- | `apps.cloudConfigHistoryLimit` | Integer | yes | `100` | `100` | The number of historic values that should be saved in the Cloud Config change history. Valid values: `0`...`Number.MAX_SAFE_INTEGER`. |
129
+ | Parameter | Type | Optional | Default | Example | Description |
130
+ |----------------------------------------|---------------------|----------|---------|--------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
131
+ | `apps` | Array<Object> | no | - | `[{ ... }, { ... }]` | The apps that are configured for the dashboard. |
132
+ | `apps.appId` | String | yes | - | `"myAppId"` | The Application ID for your Parse Server instance. |
133
+ | `apps.masterKey` | String \| Function | yes | - | `"exampleMasterKey"`, `() => "exampleMasterKey"` | The master key for full access to Parse Server. It can be provided directly as a String or as a Function returning a String. |
134
+ | `apps.masterKeyTtl` | Number | no | - | `3600` | Time-to-live (TTL) for the master key in seconds. This defines how long the master key is cached before the `masterKey` function is re-triggered. |
135
+ | `apps.serverURL` | String | yes | - | `"http://localhost:1337/parse"` | The URL where your Parse Server is running. |
136
+ | `apps.appName` | String | no | - | `"MyApp"` | The display name of the app in the dashboard. |
137
+ | `infoPanel` | Array<Object> | yes | - | `[{ ... }, { ... }]` | The [info panel](#info-panel) configuration. |
138
+ | `infoPanel[*].title` | String | no | - | `User Details` | The panel title. |
139
+ | `infoPanel[*].classes` | Array<String> | no | - | `["_User"]` | The classes for which the info panel should be displayed. |
140
+ | `infoPanel[*].cloudCodeFunction` | String | no | - | `getUserDetails` | The Cloud Code Function which received the selected object in the data browser and returns the response to be displayed in the info panel. |
141
+ | `apps.scripts` | Array<Object> | yes | `[]` | `[{ ... }, { ... }]` | The scripts that can be executed for that app. |
142
+ | `apps.scripts.title` | String | no | - | `'Delete User'` | The title that will be displayed in the data browser context menu and the script run confirmation dialog. |
143
+ | `apps.scripts.classes` | Array<String> | no | - | `['_User']` | The classes of Parse Objects for which the scripts can be executed. |
144
+ | `apps.scripts.cloudCodeFunction` | String | no | - | `'deleteUser'` | The name of the Parse Cloud Function to execute. |
145
+ | `apps.scripts.executionBatchSize` | Integer | yes | `1` | `10` | The batch size with which a script should be executed on all selected objects. For example, with 50 objects selected, a batch size of 10 means the script will run on 10 objects in parallel, running a total of 5 batches in serial. |
146
+ | `apps.scripts.showConfirmationDialog` | Bool | yes | `false` | `true` | Is `true` if a confirmation dialog should be displayed before the script is executed, `false` if the script should be executed immediately. |
147
+ | `apps.scripts.confirmationDialogStyle` | String | yes | `info` | `critical` | The style of the confirmation dialog. Valid values: `info` (blue style), `critical` (red style). |
148
+ | `apps.cloudConfigHistoryLimit` | Integer | yes | `100` | `100` | The number of historic values that should be saved in the Cloud Config change history. Valid values: `0`...`Number.MAX_SAFE_INTEGER`. |
148
149
 
149
150
  ### File
150
151
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parse-dashboard",
3
- "version": "7.2.0-alpha.8",
3
+ "version": "7.2.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/parse-community/parse-dashboard"
@@ -35,8 +35,8 @@
35
35
  "LICENSE"
36
36
  ],
37
37
  "dependencies": {
38
- "@babel/runtime": "7.27.1",
39
- "@babel/runtime-corejs3": "7.27.1",
38
+ "@babel/runtime": "7.27.3",
39
+ "@babel/runtime-corejs3": "7.27.3",
40
40
  "bcryptjs": "3.0.2",
41
41
  "body-parser": "2.2.0",
42
42
  "commander": "13.1.0",
@@ -51,7 +51,7 @@
51
51
  "graphql": "16.11.0",
52
52
  "immutable": "5.1.2",
53
53
  "immutable-devtools": "0.1.5",
54
- "inquirer": "12.6.1",
54
+ "inquirer": "12.6.3",
55
55
  "js-beautify": "1.15.4",
56
56
  "otpauth": "8.0.3",
57
57
  "package-json": "7.0.0",
@@ -79,7 +79,7 @@
79
79
  "@babel/core": "7.27.1",
80
80
  "@babel/eslint-parser": "7.27.1",
81
81
  "@babel/plugin-proposal-decorators": "7.27.1",
82
- "@babel/plugin-transform-runtime": "7.27.1",
82
+ "@babel/plugin-transform-runtime": "7.27.3",
83
83
  "@babel/preset-env": "7.27.2",
84
84
  "@babel/preset-react": "7.27.1",
85
85
  "@eslint/compat": "1.2.9",
@@ -87,7 +87,7 @@
87
87
  "@semantic-release/changelog": "6.0.3",
88
88
  "@semantic-release/commit-analyzer": "13.0.1",
89
89
  "@semantic-release/git": "10.0.1",
90
- "@semantic-release/github": "11.0.2",
90
+ "@semantic-release/github": "11.0.3",
91
91
  "@semantic-release/npm": "12.0.1",
92
92
  "@semantic-release/release-notes-generator": "14.0.3",
93
93
  "@types/jest": "29.5.14",
@@ -95,7 +95,7 @@
95
95
  "babel-loader": "10.0.0",
96
96
  "css-loader": "6.7.3",
97
97
  "eslint": "9.24.0",
98
- "eslint-plugin-jest": "28.11.0",
98
+ "eslint-plugin-jest": "28.12.0",
99
99
  "eslint-plugin-react": "7.37.5",
100
100
  "globals": "16.1.0",
101
101
  "http-server": "14.1.1",
@@ -103,21 +103,21 @@
103
103
  "jest": "29.7.0",
104
104
  "jest-environment-jsdom": "29.7.0",
105
105
  "madge": "8.0.0",
106
- "marked": "15.0.11",
106
+ "marked": "15.0.12",
107
107
  "null-loader": "4.0.1",
108
108
  "prettier": "3.5.3",
109
109
  "puppeteer": "24.9.0",
110
110
  "react-test-renderer": "16.13.1",
111
111
  "request": "2.88.2",
112
112
  "request-promise": "4.2.5",
113
- "sass": "1.87.0",
113
+ "sass": "1.89.0",
114
114
  "sass-loader": "13.2.0",
115
115
  "semantic-release": "24.2.3",
116
- "semver": "7.5.2",
116
+ "semver": "7.7.2",
117
117
  "style-loader": "3.3.1",
118
118
  "svg-prep": "1.0.4",
119
119
  "typescript": "5.8.2",
120
- "webpack": "5.99.8",
120
+ "webpack": "5.99.9",
121
121
  "webpack-cli": "6.0.1",
122
122
  "yaml": "2.7.1"
123
123
  },