@budibase/frontend-core 2.8.12-alpha.4 → 2.8.12-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 +4 -4
- package/src/api/app.js +9 -0
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "2.8.12-alpha.
|
|
3
|
+
"version": "2.8.12-alpha.6",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
7
7
|
"svelte": "src/index.js",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@budibase/bbui": "2.8.12-alpha.
|
|
10
|
-
"@budibase/shared-core": "2.8.12-alpha.
|
|
9
|
+
"@budibase/bbui": "2.8.12-alpha.6",
|
|
10
|
+
"@budibase/shared-core": "2.8.12-alpha.6",
|
|
11
11
|
"dayjs": "^1.11.7",
|
|
12
12
|
"lodash": "^4.17.21",
|
|
13
13
|
"socket.io-client": "^4.6.1",
|
|
14
14
|
"svelte": "^3.46.2"
|
|
15
15
|
},
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "edbac0e1676a38963a8393d22ee76abbc48b0045"
|
|
17
17
|
}
|
package/src/api/app.js
CHANGED
|
@@ -123,6 +123,15 @@ export const buildAppEndpoints = API => ({
|
|
|
123
123
|
})
|
|
124
124
|
},
|
|
125
125
|
|
|
126
|
+
/**
|
|
127
|
+
* Gets budibase platform debug information.
|
|
128
|
+
*/
|
|
129
|
+
fetchSystemDebugInfo: async () => {
|
|
130
|
+
return await API.get({
|
|
131
|
+
url: `/api/debug/diagnostics`,
|
|
132
|
+
})
|
|
133
|
+
},
|
|
134
|
+
|
|
126
135
|
/**
|
|
127
136
|
* Syncs an app with the production database.
|
|
128
137
|
* @param appId the ID of the app to sync
|