@budibase/pro 3.35.2 → 3.35.10
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/index.js +36 -36
- package/dist/mappers/users.d.ts +1 -1
- package/dist/sdk/scim/users.d.ts +2 -1
- package/package.json +3 -3
package/dist/mappers/users.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ScimCreateUserRequest, ScimUserResponse, User } from "@budibase/types";
|
|
2
2
|
import { GetUsersFilters } from "../sdk/scim/users";
|
|
3
3
|
export declare const toScimUserResponse: (user: User) => ScimUserResponse;
|
|
4
|
-
export declare const fromScimUser: (scimUser: ScimUserResponse | ScimCreateUserRequest) => User;
|
|
4
|
+
export declare const fromScimUser: (scimUser: ScimUserResponse | ScimCreateUserRequest, roles?: User["roles"]) => User;
|
|
5
5
|
export declare const userFilters: (filter: string) => GetUsersFilters;
|
package/dist/sdk/scim/users.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { User } from "@budibase/types";
|
|
1
|
+
import { SCIMDisableAction, User } from "@budibase/types";
|
|
2
2
|
export interface GetUsersFilters {
|
|
3
3
|
equal?: Record<string, any>;
|
|
4
4
|
}
|
|
@@ -17,4 +17,5 @@ export declare function update(user: User, opts?: {
|
|
|
17
17
|
allowChangingEmail?: boolean;
|
|
18
18
|
}): Promise<User>;
|
|
19
19
|
export declare function remove(id: string): Promise<void>;
|
|
20
|
+
export declare function handleDisable(action: SCIMDisableAction): Promise<void>;
|
|
20
21
|
export {};
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"dist"
|
|
5
5
|
],
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
|
-
"version": "3.35.
|
|
7
|
+
"version": "3.35.10",
|
|
8
8
|
"description": "Budibase Pro (Backend)",
|
|
9
9
|
"main": "dist/index.js",
|
|
10
10
|
"types": "dist/index.d.ts",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"prebuild": "rimraf dist",
|
|
43
43
|
"build": "node ../../scripts/build.js && yarn build:types",
|
|
44
44
|
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --paths null",
|
|
45
|
-
"check:types": "tsc -p tsconfig.build.json --noEmit --paths null",
|
|
45
|
+
"check:types": "tsc -p tsconfig.build.json --noEmit --incremental --paths null",
|
|
46
46
|
"test": "jest --runInBand",
|
|
47
47
|
"test:watch": "jest --watch --runInBand",
|
|
48
48
|
"license:update": "node scripts/licenses/updateLicense.js",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "e2fa586beb21f730b22350e561d21ec1e2c5c2f0"
|
|
69
69
|
}
|