@budibase/types 3.12.0 → 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.
|
@@ -68,12 +68,6 @@ export interface ImportToUpdateAppRequest {
|
|
|
68
68
|
export interface ImportToUpdateAppResponse {
|
|
69
69
|
message: string;
|
|
70
70
|
}
|
|
71
|
-
export interface SetRevertableAppVersionRequest {
|
|
72
|
-
revertableVersion: string;
|
|
73
|
-
}
|
|
74
|
-
export interface SetRevertableAppVersionResponse {
|
|
75
|
-
message: string;
|
|
76
|
-
}
|
|
77
71
|
export interface ExportAppDumpRequest {
|
|
78
72
|
excludeRows: boolean;
|
|
79
73
|
encryptPassword?: string;
|
|
@@ -10,7 +10,7 @@ export interface InsertWorkspaceAppRequest {
|
|
|
10
10
|
name: string;
|
|
11
11
|
urlPrefix: string;
|
|
12
12
|
icon: string;
|
|
13
|
-
iconColor
|
|
13
|
+
iconColor?: string;
|
|
14
14
|
}
|
|
15
15
|
export interface InsertWorkspaceAppResponse {
|
|
16
16
|
workspaceApp: WorkspaceAppResponse;
|
|
@@ -21,7 +21,7 @@ export interface UpdateWorkspaceAppRequest {
|
|
|
21
21
|
name: string;
|
|
22
22
|
urlPrefix: string;
|
|
23
23
|
icon: string;
|
|
24
|
-
iconColor
|
|
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:
|
|
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?:
|
|
49
|
+
textAlign?: "Left" | "Center" | "Right";
|
|
50
50
|
}
|
|
51
51
|
export interface AppNavigationLink {
|
|
52
52
|
text: string;
|
package/dist/ui/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/types",
|
|
3
|
-
"version": "3.12.
|
|
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": "
|
|
30
|
+
"gitHead": "d3c6f03610ea1c975989145b29f32930d70c7253"
|
|
31
31
|
}
|