@budibase/types 3.12.1 → 3.12.2

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.
@@ -21,7 +21,7 @@ export interface UpdateWorkspaceAppRequest {
21
21
  name: string;
22
22
  urlPrefix: string;
23
23
  icon: string;
24
- iconColor: string;
24
+ iconColor?: string;
25
25
  }
26
26
  export interface UpdateWorkspaceAppResponse {
27
27
  workspaceApp: WorkspaceAppResponse;
@@ -36,7 +36,7 @@ export interface AppInstance {
36
36
  _id: string;
37
37
  }
38
38
  export interface AppNavigation {
39
- navigation: string;
39
+ navigation: "Top" | "Left";
40
40
  title?: string;
41
41
  navWidth?: string;
42
42
  sticky?: boolean;
@@ -46,7 +46,7 @@ export interface AppNavigation {
46
46
  navBackground?: string;
47
47
  navTextColor?: string;
48
48
  links?: AppNavigationLink[];
49
- textAlign?: string;
49
+ textAlign?: "Left" | "Center" | "Right";
50
50
  }
51
51
  export interface AppNavigationLink {
52
52
  text: string;
@@ -6,4 +6,5 @@ export * from "./dataFetch";
6
6
  export * from "./datasource";
7
7
  export * from "./fields";
8
8
  export * from "./permissions";
9
+ export * from "./workspaceApps";
9
10
  export * from "./stores";
@@ -0,0 +1,4 @@
1
+ import { WorkspaceApp, Screen } from "../documents";
2
+ export interface UIWorkspaceApp extends WorkspaceApp {
3
+ screens: Screen[];
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/types",
3
- "version": "3.12.1",
3
+ "version": "3.12.2",
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": "ddbf7f3d2ba1a57923aff162a8bfb737f37eec20"
30
+ "gitHead": "d3c6f03610ea1c975989145b29f32930d70c7253"
31
31
  }