@budibase/pro 2.8.31 → 2.8.32-alpha.0
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.
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Retrieve the version to store against a license.
|
|
3
3
|
* In local dev, a random id is used instead to facilitate easy license refreshing.
|
|
4
4
|
*/
|
|
5
|
-
export declare const getLicenseVersion: () =>
|
|
6
|
-
export declare const getProVersion: () =>
|
|
5
|
+
export declare const getLicenseVersion: () => string;
|
|
6
|
+
export declare const getProVersion: () => string;
|
|
@@ -12,7 +12,7 @@ export declare function get(params: GetParams): Promise<{
|
|
|
12
12
|
total: number;
|
|
13
13
|
}>;
|
|
14
14
|
export declare function find(id: string): Promise<User>;
|
|
15
|
-
export declare function create(user: User): Promise<
|
|
16
|
-
export declare function update(user: User): Promise<
|
|
17
|
-
export declare function remove(id: string): Promise<
|
|
15
|
+
export declare function create(user: User): Promise<User>;
|
|
16
|
+
export declare function update(user: User): Promise<User>;
|
|
17
|
+
export declare function remove(id: string): Promise<void>;
|
|
18
18
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { User } from "@budibase/types";
|
|
2
|
-
|
|
2
|
+
import { users } from "@budibase/backend-core";
|
|
3
|
+
export declare const db: typeof users.UserDB;
|
|
3
4
|
export declare const createActivity: (userId: string) => Promise<import("@budibase/types").PostAccountUserActivityResponse | undefined>;
|
|
4
5
|
export declare function addAppBuilder(user: User, appId: string): Promise<void>;
|
|
5
6
|
export declare function removeAppBuilder(user: User, appId: string): Promise<void>;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"dist"
|
|
5
5
|
],
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
|
-
"version": "2.8.
|
|
7
|
+
"version": "2.8.32-alpha.0",
|
|
8
8
|
"description": "Budibase Pro (Backend)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/src/index.d.ts",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"url": "https://github.com/Budibase/budibase-pro.git"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@budibase/backend-core": "2.8.
|
|
17
|
-
"@budibase/shared-core": "2.8.
|
|
18
|
-
"@budibase/string-templates": "2.8.
|
|
19
|
-
"@budibase/types": "2.8.
|
|
16
|
+
"@budibase/backend-core": "2.8.32-alpha.0",
|
|
17
|
+
"@budibase/shared-core": "2.8.32-alpha.0",
|
|
18
|
+
"@budibase/string-templates": "2.8.32-alpha.0",
|
|
19
|
+
"@budibase/types": "2.8.32-alpha.0",
|
|
20
20
|
"@koa/router": "8.0.8",
|
|
21
21
|
"bull": "4.10.1",
|
|
22
22
|
"joi": "17.6.0",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "d004c83e8892505e19d9a06b85167a9f79f127fe"
|
|
80
80
|
}
|