@budibase/types 3.10.1 → 3.10.3
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/dist/api/web/app/rows/search.d.ts +4 -4
- package/dist/api/web/auth.d.ts +0 -2
- package/dist/documents/global/user.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +4 -4
- package/dist/sdk/events/user.d.ts +0 -7
- package/dist/ui/common.d.ts +13 -0
- package/dist/ui/index.d.ts +4 -3
- package/dist/ui/permissions.d.ts +4 -0
- package/dist/ui/stores/grid/datasource.d.ts +4 -1
- package/package.json +2 -2
|
@@ -20,13 +20,6 @@ export interface UserDeletedEvent extends BaseEvent {
|
|
|
20
20
|
email: string;
|
|
21
21
|
};
|
|
22
22
|
}
|
|
23
|
-
export interface UserOnboardingEvent extends BaseEvent {
|
|
24
|
-
userId: string;
|
|
25
|
-
step?: string;
|
|
26
|
-
audited: {
|
|
27
|
-
email: string;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
23
|
export interface UserPermissionAssignedEvent extends BaseEvent {
|
|
31
24
|
userId: string;
|
|
32
25
|
audited: {
|
package/dist/ui/common.d.ts
CHANGED
|
@@ -3,3 +3,16 @@ export interface UIEvent extends Omit<Event, "target"> {
|
|
|
3
3
|
key?: string;
|
|
4
4
|
target?: any;
|
|
5
5
|
}
|
|
6
|
+
export interface UITableResource {
|
|
7
|
+
type: "table";
|
|
8
|
+
label: string;
|
|
9
|
+
tableId: string;
|
|
10
|
+
resourceId: string;
|
|
11
|
+
}
|
|
12
|
+
export interface UIViewResource {
|
|
13
|
+
type: "viewV2";
|
|
14
|
+
id: string;
|
|
15
|
+
label: string;
|
|
16
|
+
tableId: string;
|
|
17
|
+
resourceId: string;
|
|
18
|
+
}
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
export * from "./stores";
|
|
2
1
|
export * from "./bindings";
|
|
2
|
+
export * from "./BudibaseApp";
|
|
3
|
+
export * from "./common";
|
|
3
4
|
export * from "./components";
|
|
4
5
|
export * from "./dataFetch";
|
|
5
6
|
export * from "./datasource";
|
|
6
|
-
export * from "./common";
|
|
7
|
-
export * from "./BudibaseApp";
|
|
8
7
|
export * from "./fields";
|
|
8
|
+
export * from "./permissions";
|
|
9
|
+
export * from "./stores";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { UITable, UIView } from "@budibase/types";
|
|
1
|
+
import { Datasource, Table, UITable, UIView } from "@budibase/types";
|
|
2
2
|
export type UIDatasource = UITable | (Omit<UIView, "type"> & {
|
|
3
3
|
type: "viewV2";
|
|
4
4
|
});
|
|
@@ -8,3 +8,6 @@ export interface UIFieldMutation {
|
|
|
8
8
|
width?: number;
|
|
9
9
|
order?: number;
|
|
10
10
|
}
|
|
11
|
+
export interface UIInternalDatasource extends Omit<Datasource, "entities"> {
|
|
12
|
+
entities: Table[];
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.3",
|
|
4
4
|
"description": "Budibase types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"scim-patch": "^0.8.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "94264027da3376c3f544676c03c0241d88bd82b0"
|
|
31
31
|
}
|