@budibase/frontend-core 3.23.30 → 3.23.32
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 +2 -2
- package/src/api/datasources.ts +0 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/frontend-core",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.32",
|
|
4
4
|
"description": "Budibase frontend core libraries used in builder and client",
|
|
5
5
|
"author": "Budibase",
|
|
6
6
|
"license": "MPL-2.0",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"shortid": "2.2.15",
|
|
19
19
|
"socket.io-client": "^4.7.5"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "c4036828c6d04e94946d835c5fad5ec0620a93e1"
|
|
22
22
|
}
|
package/src/api/datasources.ts
CHANGED
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
FetchDatasourceInfoResponse,
|
|
10
10
|
FetchDatasourceViewInfoRequest,
|
|
11
11
|
FetchDatasourceViewInfoResponse,
|
|
12
|
-
FetchExternalSchemaResponse,
|
|
13
12
|
UpdateDatasourceRequest,
|
|
14
13
|
UpdateDatasourceResponse,
|
|
15
14
|
VerifyDatasourceRequest,
|
|
@@ -42,9 +41,6 @@ export interface DatasourceEndpoints {
|
|
|
42
41
|
fetchViewInfoForDatasource: (
|
|
43
42
|
datasource: Datasource
|
|
44
43
|
) => Promise<FetchDatasourceViewInfoResponse>
|
|
45
|
-
fetchExternalSchema: (
|
|
46
|
-
datasourceId: string
|
|
47
|
-
) => Promise<FetchExternalSchemaResponse>
|
|
48
44
|
}
|
|
49
45
|
|
|
50
46
|
export const buildDatasourceEndpoints = (
|
|
@@ -138,13 +134,4 @@ export const buildDatasourceEndpoints = (
|
|
|
138
134
|
body: { datasource },
|
|
139
135
|
})
|
|
140
136
|
},
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* Fetches the external schema of a datasource
|
|
144
|
-
*/
|
|
145
|
-
fetchExternalSchema: async (datasourceId: string) => {
|
|
146
|
-
return await API.get({
|
|
147
|
-
url: `/api/datasources/${datasourceId}/schema/external`,
|
|
148
|
-
})
|
|
149
|
-
},
|
|
150
137
|
})
|