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
- Adds #1245
- Add a replacer function to all `JSON.stringify` to filter out
blacklisted path
- Add the following paths to blacklist: `api`, `client`,
`dashboardData.defaultLayout.connection`, `layoutStorage`, `storage`
* Then if the object is seen again, it must be a circular ref since that object could not be stringified safely
20
60
*
21
61
* @param obj Object to make safe to stringify
62
+
* @param blacklist List of JSON paths to blacklist. A JSON path is a list representing the path to that value (e.g. client.data would be `['client', 'data']`)
* @param fileNamePrefix The zip file name without the .zip extension. Ex: test will be saved as test.zip
132
+
* @param metadata Additional metadata to include in the metadata.json file
133
+
* @param blacklist List of JSON paths to blacklist. A JSON path is a list representing the path to that value (e.g. client.data would be `['client', 'data']`)
134
+
* @returns A promise that resolves successfully if the log archive is created and downloaded successfully, rejected if there's an error
0 commit comments