@budibase/frontend-core 3.13.25 → 3.13.26

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/frontend-core",
3
- "version": "3.13.25",
3
+ "version": "3.13.26",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -17,5 +17,5 @@
17
17
  "shortid": "2.2.15",
18
18
  "socket.io-client": "^4.7.5"
19
19
  },
20
- "gitHead": "b0c1421ade63bdeae3d10d2eb6ada7a97b5e02fe"
20
+ "gitHead": "9a55f2f9e6b196e6779a01425bb17a00b3643431"
21
21
  }
@@ -1,6 +1,5 @@
1
1
  import {
2
2
  FetchWorkspaceAppResponse,
3
- FindWorkspaceAppResponse,
4
3
  InsertWorkspaceAppRequest,
5
4
  InsertWorkspaceAppResponse,
6
5
  UpdateWorkspaceAppRequest,
@@ -9,7 +8,6 @@ import {
9
8
  import { BaseAPIClient } from "./types"
10
9
 
11
10
  export interface WorkspaceAppEndpoints {
12
- find: (id: string) => Promise<FindWorkspaceAppResponse>
13
11
  fetch: () => Promise<FetchWorkspaceAppResponse>
14
12
  create: (
15
13
  workspaceApp: InsertWorkspaceAppRequest
@@ -23,11 +21,6 @@ export interface WorkspaceAppEndpoints {
23
21
  export const buildWorkspaceAppEndpoints = (
24
22
  API: BaseAPIClient
25
23
  ): WorkspaceAppEndpoints => ({
26
- find: async id => {
27
- return await API.get({
28
- url: `/api/workspaceApp/${id}`,
29
- })
30
- },
31
24
  fetch: async () => {
32
25
  return await API.get({
33
26
  url: "/api/workspaceApp",