@budibase/frontend-core 3.4.21 → 3.4.23

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.4.21",
3
+ "version": "3.4.23",
4
4
  "description": "Budibase frontend core libraries used in builder and client",
5
5
  "author": "Budibase",
6
6
  "license": "MPL-2.0",
@@ -20,5 +20,5 @@
20
20
  "devDependencies": {
21
21
  "svelte-check": "^4.1.0"
22
22
  },
23
- "gitHead": "eeb6e4ece3f2a32b32db2bedea6eb36430e0b010"
23
+ "gitHead": "fb5453d9f7c6b72b1ba00564564ce966536a19de"
24
24
  }
package/src/constants.ts CHANGED
@@ -106,6 +106,7 @@ export const Roles = {
106
106
  PUBLIC: "PUBLIC",
107
107
  BUILDER: "BUILDER",
108
108
  CREATOR: "CREATOR",
109
+ GROUP: "GROUP",
109
110
  }
110
111
 
111
112
  export const EventPublishType = {
@@ -4,7 +4,7 @@ import { GroupUserDatasource, InternalTable } from "@budibase/types"
4
4
 
5
5
  interface GroupUserQuery {
6
6
  groupId: string
7
- emailSearch: string
7
+ emailSearch?: string
8
8
  }
9
9
 
10
10
  interface GroupUserDefinition {
@@ -9,8 +9,8 @@ import {
9
9
  } from "@budibase/types"
10
10
 
11
11
  interface UserFetchQuery {
12
- appId: string
13
- paginated: boolean
12
+ appId?: string
13
+ paginated?: boolean
14
14
  }
15
15
 
16
16
  interface UserDefinition {